Skip to content

Instantly share code, notes, and snippets.

@anisotropi4
Last active April 4, 2021 18:16
Show Gist options
  • Save anisotropi4/54c29e6e6192cf758e12279e1981e889 to your computer and use it in GitHub Desktop.
Save anisotropi4/54c29e6e6192cf758e12279e1981e889 to your computer and use it in GitHub Desktop.
Railway Stations in Great Britain
Released license:MIT
height:780
border:no
Railway station locations in Great Britain
Source: National Department for Tranport national public transport access nodes dataset licensed under the Open Government Licence v.3.0.
Source: National Rail Enquiries station codes

Railway Stations in Great Britain

This UK Department for Transport publich the national public transport access nodes (NaPTAN) dataset with a unique identifier and location of every public transport access point in the UK. These scripts download this data and extract railway station locations in Great Britain.

Station CRS codes cross-referenced against National Rail Enquiries station code list are used to create the CRS-mismatch-report.tsv containing mismatched locations.

Creating the datafiles and associate geojson format report

Once the dependencies are met to create the report run:

$ ./prepublish

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

Dependencies

These are environment and project dependencies.

python dependencies

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

$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements.txt

If missing install the python virtualenv package

$ sudo apt install virtualenv

Data License

Uses National Public Transport Access Node (NaPTAN) data under the Open Government Licence Open Street Map data is used under the Open Street Map license

#!/usr/bin/env python3
import json
import geopandas as gp
import pandas as pd
from shapely.geometry import Point
pd.set_option('display.max_columns', None)
DATA = []
def get_point(this_json):
return Point([float(this_json['Place']['Location']['Translation'][k])
for k in ['Longitude', 'Latitude']])
ATCOS = {}
ATCOT = {}
with open('work/StopPoint.jsonl') as fin:
for i in fin:
this_json = json.loads(i)
this_code = this_json['AtcoCode']
ATCO = this_code[:4]
nptg = this_json['Place']['NptgLocalityRef']
if ATCO in ['9200', '9300']:
continue
if ATCO not in ['9100', '9400']:
if nptg not in ATCOS:
ATCOS[nptg] = set()
ATCOS[nptg].add(ATCO)
if 'MainNptgLocalities' in this_json['Place']:
j = this_json['Place']['MainNptgLocalities']['NptgLocalityRef']
for k in j if isinstance(j, list) else [j]:
v = k['value']
if v in ATCOS and ATCO in ATCOS[v]:
continue
if v not in ATCOT:
ATCOT[v] = set()
ATCOT[v].add(ATCO)
else:
output_json = {}
output_json['Name'] = this_json['Descriptor']['CommonName']
output_json['Status'] = this_json['Status']
output_json['Type'] = this_json['StopClassification']['StopType']
output_json['Station_Name'] = output_json['Name']
if 'OffStreet' in this_json['StopClassification']:
output_json['TIPLOC'] = this_json['StopClassification']['OffStreet']['Rail']['AnnotatedRailRef']['TiplocRef']
output_json['CRS'] = this_json['StopClassification']['OffStreet']['Rail']['AnnotatedRailRef']['CrsRef']
output_json['Station_Name'] = this_json['StopClassification']['OffStreet']['Rail']['AnnotatedRailRef']['StationName']
if 'xml:lang' in output_json['Station_Name']:
output_json['Station_Name'] = output_json['Station_Name']['value']
if 'StopAreas' in this_json:
output_json['StopAreaCode'] = this_json['StopAreas']['StopAreaRef']['value']
output_json['AdministrativeAreaRef'] = this_json['AdministrativeAreaRef']
output_json['code'] = this_code
output_json['NPTG'] = nptg
p = get_point(this_json)
output_json['geometry'] = p
DATA.append(output_json)
CRSDATA = pd.read_csv('station_codes.csv')
CRS = pd.DataFrame(columns=['Station_Name', 'CRS_code'])
for i in range(0, CRSDATA.shape[1], 2):
DF1 = CRSDATA.iloc[:, i:(i+2)]
DF1.columns = ['Station_Name', 'CRS_code']
CRS = CRS.append(DF1).dropna()
CRS = CRS.rename(columns={'Station Name': 'Station_Name', 'CRS Code': 'CRS_code'})
CRS['Rail_Station'] = CRS['Station_Name'] + ' Rail Station'
CRS = CRS.set_index('Rail_Station').drop('Station_Name', axis=1)
STATIONS = gp.GeoDataFrame(DATA)
def get_ATCO(k):
if k in ATCOS and ATCOS[k]:
return list(ATCOS[k])[0][:3]
if k in ATCOT and ATCOT[k]:
return list(ATCOT[k])[0][:3]
return None
STATIONS['ATCO'] = STATIONS['NPTG'].apply(get_ATCO)
STATIONS = STATIONS[STATIONS['Type'].isin(['RLY', 'MET'])]
for k in [' Railway)', ' Rly)', '(RHDR)', '(KESR)', '(Isle of Wight Steam Railway', '(Welsh Highland Rly-Caernarfon)', '(W&LLR)', '(Peak Rail)', '(Battfield Line)']:
n = len(k)
IDX = (STATIONS['Name'].str[-n:] == k)
STATIONS.loc[IDX, 'Type'] = 'HRT'
STATIONS = STATIONS.join(CRS, on='Name').fillna('-')
STATIONS.to_file('shp/Stations.shp', crs='EPSG:4326')
CRS_CODES = set(CRS['CRS_code'])
STATION_CODES = set(STATIONS['CRS'])
MISMATCH = list(CRS_CODES - STATION_CODES)
CRS[CRS['CRS_code'].isin(MISMATCH)].to_csv('CRS-mismatch-report.tsv', sep='\t')
STATIONS.to_file('output-stations.json', crs='EPSG:4326', driver='GeoJSON')
<!DOCTYPE html>
<html>
<head>
<title>Railway Stations in GB</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-control" content="No-Cache">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico"/>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.6.0/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.6.0/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
<script src="http://d3js.org/d3.v5.min.js"></script>
<div id="map" style="width: 1340px; height: 780px"></div>
</head>
<body>
<div id='map'></div>
<script type="text/javascript">
var radius = 3;
var weight = 1;
var linewidth = 2;
var log2 = Math.log(2.0);
var minZoom = 3;
var maxZoom = 18;
var map = L.map('map').setView([54.533, -2.53], 6);
L.tileLayer("http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", {
maxZoom: maxZoom,
minZoom: minZoom,
attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, ' + '<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' + 'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
id: 'osm.standard'
}).addTo(map);
d3.json("output-stations.json").then(function(d) {
function get_colour(p) {
var fail = "#ff00ff";
if (p.Type == 'HRT')
return "#0de7d9"
if (p.Type == 'MET')
return "#1ab8e3"
if (p.Status == 'active')
return "#0000ff"
if (p.Status == 'inactive')
return "#00ccff"
return fail;
}
function onEachFeature(feature, layer) {
var this_feature = feature.properties;
var popupContent;
if (this_feature.Name)
popupContent = this_feature.Name;
var lookup = {
"AdministrativeAreaRef": "Admin Area",
"CRS": "CRS",
"Station_Name": "Station Name",
"Status": "Status",
"StopAreaCode": "Area Code",
"TIPLOC": "TIPLOC",
"code": "Atco Code"
}
var k = Object.keys(this_feature).filter(i=>(i != "Name" && i != "geometry" && i != "Type" && i != "is_in" && i != "z_order" && i != "CRS_code"))
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);
}
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,
opacity: 0.8,
fillOpacity: 0.4
};
default:
return {
colour: c,
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.
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Name": "Aberdare Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aberdare Rail Station", "TIPLOC": "ABDARE", "CRS": "ABA", "StopAreaCode": "910GABDARE", "AdministrativeAreaRef": "110", "code": "9100ABDARE", "NPTG": "E0054662", "ATCO": "552", "CRS_code": "ABA" }, "geometry": { "type": "Point", "coordinates": [ -3.44308344608, 51.715057906079998 ] } },
{ "type": "Feature", "properties": { "Name": "Aberdour Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aberdour Rail Station", "TIPLOC": "ABDO", "CRS": "AUR", "StopAreaCode": "910GABDO", "AdministrativeAreaRef": "110", "code": "9100ABDO", "NPTG": "ES000016", "ATCO": "650", "CRS_code": "AUR" }, "geometry": { "type": "Point", "coordinates": [ -3.30056001734, 56.05459191149 ] } },
{ "type": "Feature", "properties": { "Name": "Aberdovey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aberdovey Rail Station", "TIPLOC": "ABDVY", "CRS": "AVY", "StopAreaCode": "910GABDVY", "AdministrativeAreaRef": "110", "code": "9100ABDVY", "NPTG": "E0054262", "ATCO": "540", "CRS_code": "AVY" }, "geometry": { "type": "Point", "coordinates": [ -4.05706706793, 52.543956599570002 ] } },
{ "type": "Feature", "properties": { "Name": "Aber Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aber Rail Station", "TIPLOC": "ABER", "CRS": "ABE", "StopAreaCode": "910GABER", "AdministrativeAreaRef": "110", "code": "9100ABER", "NPTG": "E0035679", "ATCO": "554", "CRS_code": "ABE" }, "geometry": { "type": "Point", "coordinates": [ -3.22982847743, 51.574965535399997 ] } },
{ "type": "Feature", "properties": { "Name": "Abergele & Pensarn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Abergele & Pensarn Rail Station", "TIPLOC": "ABGLELE", "CRS": "AGL", "StopAreaCode": "910GABGLELE", "AdministrativeAreaRef": "110", "code": "9100ABGLELE", "NPTG": "E0054152", "ATCO": "513", "CRS_code": "AGL" }, "geometry": { "type": "Point", "coordinates": [ -3.58262198838, 53.29457303057 ] } },
{ "type": "Feature", "properties": { "Name": "Abercynon North Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Abercynon North Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GABRCYNN", "AdministrativeAreaRef": "110", "code": "9100ABRCYNN", "NPTG": "E0054661", "ATCO": "552", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.32680325647, 51.645313206110004 ] } },
{ "type": "Feature", "properties": { "Name": "Abercynon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Abercynon Rail Station", "TIPLOC": "ABRCYNS", "CRS": "ACY", "StopAreaCode": "910GABRCYNS", "AdministrativeAreaRef": "110", "code": "9100ABRCYNS", "NPTG": "E0054661", "ATCO": "552", "CRS_code": "ACY" }, "geometry": { "type": "Point", "coordinates": [ -3.32856986148, 51.643449909 ] } },
{ "type": "Feature", "properties": { "Name": "Aberdeen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aberdeen Rail Station", "TIPLOC": "ABRDEEN", "CRS": "ABD", "StopAreaCode": "910GABRDEEN", "AdministrativeAreaRef": "110", "code": "9100ABRDEEN", "NPTG": "ES000011", "ATCO": "639", "CRS_code": "ABD" }, "geometry": { "type": "Point", "coordinates": [ -2.0986851221, 57.143704023159998 ] } },
{ "type": "Feature", "properties": { "Name": "Abererch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Abererch Rail Station", "TIPLOC": "ABRE", "CRS": "ABH", "StopAreaCode": "910GABRE", "AdministrativeAreaRef": "110", "code": "9100ABRE", "NPTG": "E0037427", "ATCO": "512", "CRS_code": "ABH" }, "geometry": { "type": "Point", "coordinates": [ -4.37417543673, 52.898583066240001 ] } },
{ "type": "Feature", "properties": { "Name": "Abergavenny Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Abergavenny Rail Station", "TIPLOC": "ABRGVNY", "CRS": "AGV", "StopAreaCode": "910GABRGVNY", "AdministrativeAreaRef": "110", "code": "9100ABRGVNY", "NPTG": "E0054376", "ATCO": "533", "CRS_code": "AGV" }, "geometry": { "type": "Point", "coordinates": [ -3.0096467989, 51.816689822329998 ] } },
{ "type": "Feature", "properties": { "Name": "Aberystwyth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aberystwyth Rail Station", "TIPLOC": "ABRYSTH", "CRS": "AYW", "StopAreaCode": "910GABRYSTH", "AdministrativeAreaRef": "110", "code": "9100ABRYSTH", "NPTG": "E0054103", "ATCO": "523", "CRS_code": "AYW" }, "geometry": { "type": "Point", "coordinates": [ -4.08189352291, 52.414044948430004 ] } },
{ "type": "Feature", "properties": { "Name": "Abbey Wood (London) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Abbey Wood (London) Rail Station", "TIPLOC": "ABWD", "CRS": "ABW", "StopAreaCode": "910GABWD", "AdministrativeAreaRef": "110", "code": "9100ABWD", "NPTG": "E0034321", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.12139411536, 51.491062468270002 ] } },
{ "type": "Feature", "properties": { "Name": "Acton Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Acton Bridge Rail Station", "TIPLOC": "ACBG", "CRS": "ACB", "StopAreaCode": "910GACBG", "AdministrativeAreaRef": "110", "code": "9100ACBG", "NPTG": "E0044401", "ATCO": "061", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.6031265241, 53.266507195529996 ] } },
{ "type": "Feature", "properties": { "Name": "Achanalt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Achanalt Rail Station", "TIPLOC": "ACHANLT", "CRS": "AAT", "StopAreaCode": "910GACHANLT", "AdministrativeAreaRef": "110", "code": "9100ACHANLT", "NPTG": "N0078047", "ATCO": "670", "CRS_code": "AAT" }, "geometry": { "type": "Point", "coordinates": [ -4.91385125753, 57.609595836430003 ] } },
{ "type": "Feature", "properties": { "Name": "Achnashellach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Achnashellach Rail Station", "TIPLOC": "ACHHSHL", "CRS": "ACH", "StopAreaCode": "910GACHHSHL", "AdministrativeAreaRef": "110", "code": "9100ACHHSHL", "NPTG": "N0067796", "ATCO": "670", "CRS_code": "ACH" }, "geometry": { "type": "Point", "coordinates": [ -5.33305525596, 57.482074265500003 ] } },
{ "type": "Feature", "properties": { "Name": "Auchinleck Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Auchinleck Rail Station", "TIPLOC": "ACHILCK", "CRS": "AUK", "StopAreaCode": "910GACHILCK", "AdministrativeAreaRef": "110", "code": "9100ACHILCK", "NPTG": "ES000169", "ATCO": "618", "CRS_code": "AUK" }, "geometry": { "type": "Point", "coordinates": [ -4.29534918715, 55.47027326493 ] } },
{ "type": "Feature", "properties": { "Name": "Achnasheen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Achnasheen Rail Station", "TIPLOC": "ACHNSHN", "CRS": "ACN", "StopAreaCode": "910GACHNSHN", "AdministrativeAreaRef": "110", "code": "9100ACHNSHN", "NPTG": "N0067674", "ATCO": "670", "CRS_code": "ACN" }, "geometry": { "type": "Point", "coordinates": [ -5.07233213915, 57.579289654210001 ] } },
{ "type": "Feature", "properties": { "Name": "Acklington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Acklington Rail Station", "TIPLOC": "ACKLNGT", "CRS": "ACK", "StopAreaCode": "910GACKLNGT", "AdministrativeAreaRef": "110", "code": "9100ACKLNGT", "NPTG": "N0070215", "ATCO": "310", "CRS_code": "ACK" }, "geometry": { "type": "Point", "coordinates": [ -1.65183461346, 55.307098241399999 ] } },
{ "type": "Feature", "properties": { "Name": "Acle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Acle Rail Station", "TIPLOC": "ACLE", "CRS": "ACL", "StopAreaCode": "910GACLE", "AdministrativeAreaRef": "110", "code": "9100ACLE", "NPTG": "E0048437", "ATCO": "290", "CRS_code": "ACL" }, "geometry": { "type": "Point", "coordinates": [ 1.54391527585, 52.634682017309999 ] } },
{ "type": "Feature", "properties": { "Name": "Acocks Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Acocks Green Rail Station", "TIPLOC": "ACOCKSG", "CRS": "ACG", "StopAreaCode": "910GACOCKSG", "AdministrativeAreaRef": "110", "code": "9100ACOCKSG", "NPTG": "E0031296", "ATCO": "430", "CRS_code": "ACG" }, "geometry": { "type": "Point", "coordinates": [ -1.81897541144, 52.449322776739997 ] } },
{ "type": "Feature", "properties": { "Name": "Accrington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Accrington Rail Station", "TIPLOC": "ACRNGTN", "CRS": "ACR", "StopAreaCode": "910GACRNGTN", "AdministrativeAreaRef": "110", "code": "9100ACRNGTN", "NPTG": "E0015874", "ATCO": "250", "CRS_code": "ACR" }, "geometry": { "type": "Point", "coordinates": [ -2.36954777807, 53.752971180759999 ] } },
{ "type": "Feature", "properties": { "Name": "Acton Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Acton Central Rail Station", "TIPLOC": "ACTNCTL", "CRS": "ACC", "StopAreaCode": "910GACTNCTL", "AdministrativeAreaRef": "110", "code": "9100ACTNCTL", "NPTG": "E0034247", "ATCO": "490", "CRS_code": "ACC" }, "geometry": { "type": "Point", "coordinates": [ -0.26297061476, 51.508716278180003 ] } },
{ "type": "Feature", "properties": { "Name": "Acton Main Line Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Acton Main Line Rail Station", "TIPLOC": "ACTONML", "CRS": "AML", "StopAreaCode": "910GACTONML", "AdministrativeAreaRef": "110", "code": "9100ACTONML", "NPTG": "E0034247", "ATCO": "490", "CRS_code": "AML" }, "geometry": { "type": "Point", "coordinates": [ -0.26675636171, 51.517180145579999 ] } },
{ "type": "Feature", "properties": { "Name": "Adderley Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Adderley Park Rail Station", "TIPLOC": "ADERLYP", "CRS": "ADD", "StopAreaCode": "910GADERLYP", "AdministrativeAreaRef": "110", "code": "9100ADERLYP", "NPTG": "N0072527", "ATCO": "430", "CRS_code": "ADD" }, "geometry": { "type": "Point", "coordinates": [ -1.85594442017, 52.483085942499997 ] } },
{ "type": "Feature", "properties": { "Name": "Addiewell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Addiewell Rail Station", "TIPLOC": "ADIEWEL", "CRS": "ADW", "StopAreaCode": "910GADIEWEL", "AdministrativeAreaRef": "110", "code": "9100ADIEWEL", "NPTG": "N0067186", "ATCO": "629", "CRS_code": "ADW" }, "geometry": { "type": "Point", "coordinates": [ -3.60652641249, 55.8434089458 ] } },
{ "type": "Feature", "properties": { "Name": "Adisham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Adisham Rail Station", "TIPLOC": "ADISHAM", "CRS": "ADM", "StopAreaCode": "910GADISHAM", "AdministrativeAreaRef": "110", "code": "9100ADISHAM", "NPTG": "E0047118", "ATCO": "240", "CRS_code": "ADM" }, "geometry": { "type": "Point", "coordinates": [ 1.19908926763, 51.24120153594 ] } },
{ "type": "Feature", "properties": { "Name": "Adlington (Cheshire) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Adlington (Cheshire) Rail Station", "TIPLOC": "ADLC", "CRS": "ADC", "StopAreaCode": "910GADLC", "AdministrativeAreaRef": "110", "code": "9100ADLC", "NPTG": "E0044350", "ATCO": "060", "CRS_code": "ADC" }, "geometry": { "type": "Point", "coordinates": [ -2.13356247282, 53.319553978649999 ] } },
{ "type": "Feature", "properties": { "Name": "Addlestone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Addlestone Rail Station", "TIPLOC": "ADLESTN", "CRS": "ASN", "StopAreaCode": "910GADLESTN", "AdministrativeAreaRef": "110", "code": "9100ADLESTN", "NPTG": "E0025584", "ATCO": "400", "CRS_code": "ASN" }, "geometry": { "type": "Point", "coordinates": [ -0.48445671716, 51.373045663719999 ] } },
{ "type": "Feature", "properties": { "Name": "Adlington (Lancs) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Adlington (Lancs) Rail Station", "TIPLOC": "ADNL", "CRS": "ADL", "StopAreaCode": "910GADNL", "AdministrativeAreaRef": "110", "code": "9100ADNL", "NPTG": "E0047385", "ATCO": "250", "CRS_code": "ADL" }, "geometry": { "type": "Point", "coordinates": [ -2.60307081313, 53.613244280590003 ] } },
{ "type": "Feature", "properties": { "Name": "Adwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Adwick Rail Station", "TIPLOC": "ADWICK", "CRS": "AWK", "StopAreaCode": "910GADWICK", "AdministrativeAreaRef": "110", "code": "9100ADWICK", "NPTG": "E0029962", "ATCO": "370", "CRS_code": "AWK" }, "geometry": { "type": "Point", "coordinates": [ -1.18035620719, 53.572320718589999 ] } },
{ "type": "Feature", "properties": { "Name": "Aughton Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aughton Park Rail Station", "TIPLOC": "AGHTNPH", "CRS": "AUG", "StopAreaCode": "910GAGHTNPH", "AdministrativeAreaRef": "110", "code": "9100AGHTNPH", "NPTG": "N0078849", "ATCO": "250", "CRS_code": "AUG" }, "geometry": { "type": "Point", "coordinates": [ -2.89522081448, 53.554247416259997 ] } },
{ "type": "Feature", "properties": { "Name": "Aigburth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aigburth Rail Station", "TIPLOC": "AIGBURT", "CRS": "AIG", "StopAreaCode": "910GAIGBURT", "AdministrativeAreaRef": "110", "code": "9100AIGBURT", "NPTG": "E0029595", "ATCO": "280", "CRS_code": "AIG" }, "geometry": { "type": "Point", "coordinates": [ -2.92715492547, 53.364564920630002 ] } },
{ "type": "Feature", "properties": { "Name": "Ainsdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ainsdale Rail Station", "TIPLOC": "AINSDAL", "CRS": "ANS", "StopAreaCode": "910GAINSDAL", "AdministrativeAreaRef": "110", "code": "9100AINSDAL", "NPTG": "E0029597", "ATCO": "280", "CRS_code": "ANS" }, "geometry": { "type": "Point", "coordinates": [ -3.04265200904, 53.602032256340003 ] } },
{ "type": "Feature", "properties": { "Name": "Aintree Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aintree Rail Station", "TIPLOC": "AINTREE", "CRS": "AIN", "StopAreaCode": "910GAINTREE", "AdministrativeAreaRef": "110", "code": "9100AINTREE", "NPTG": "E0052685", "ATCO": "280", "CRS_code": "AIN" }, "geometry": { "type": "Point", "coordinates": [ -2.9562803142, 53.473909624320001 ] } },
{ "type": "Feature", "properties": { "Name": "Airbles Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Airbles Rail Station", "TIPLOC": "AIRBLES", "CRS": "AIR", "StopAreaCode": "910GAIRBLES", "AdministrativeAreaRef": "110", "code": "9100AIRBLES", "NPTG": "ES002695", "ATCO": "616", "CRS_code": "AIR" }, "geometry": { "type": "Point", "coordinates": [ -3.994192441, 55.782833104010003 ] } },
{ "type": "Feature", "properties": { "Name": "Airdrie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Airdrie Rail Station", "TIPLOC": "AIRDRIE", "CRS": "ADR", "StopAreaCode": "910GAIRDRIE", "AdministrativeAreaRef": "110", "code": "9100AIRDRIE", "NPTG": "ES000054", "ATCO": "616", "CRS_code": "ADR" }, "geometry": { "type": "Point", "coordinates": [ -3.98291206378, 55.863978797759998 ] } },
{ "type": "Feature", "properties": { "Name": "Newcastle Airport Metro Station", "Status": "active", "Type": "RLY", "Station_Name": "Newcastle Airport Metro", "TIPLOC": "AIRP", "CRS": "APN", "StopAreaCode": "910GAIRP", "AdministrativeAreaRef": "110", "code": "9100AIRP", "NPTG": "N0078208", "ATCO": "410", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.71104650989, 55.035949065739999 ] } },
{ "type": "Feature", "properties": { "Name": "Albany Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Albany Park Rail Station", "TIPLOC": "ALBNYPK", "CRS": "AYP", "StopAreaCode": "910GALBNYPK", "AdministrativeAreaRef": "110", "code": "9100ALBNYPK", "NPTG": "E0034030", "ATCO": "490", "CRS_code": "AYP" }, "geometry": { "type": "Point", "coordinates": [ 0.12573715609, 51.435452654960002 ] } },
{ "type": "Feature", "properties": { "Name": "Albrighton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Albrighton Rail Station", "TIPLOC": "ALBRGHT", "CRS": "ALB", "StopAreaCode": "910GALBRGHT", "AdministrativeAreaRef": "110", "code": "9100ALBRGHT", "NPTG": "E0050568", "ATCO": "350", "CRS_code": "ALB" }, "geometry": { "type": "Point", "coordinates": [ -2.26889994437, 52.637942246240002 ] } },
{ "type": "Feature", "properties": { "Name": "Alderley Edge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alderley Edge Rail Station", "TIPLOC": "ALDEDGE", "CRS": "ALD", "StopAreaCode": "910GALDEDGE", "AdministrativeAreaRef": "110", "code": "9100ALDEDGE", "NPTG": "E0044352", "ATCO": "060", "CRS_code": "ALD" }, "geometry": { "type": "Point", "coordinates": [ -2.23679906922, 53.303780127570001 ] } },
{ "type": "Feature", "properties": { "Name": "Aldermaston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aldermaston Rail Station", "TIPLOC": "ALDMSTN", "CRS": "AMT", "StopAreaCode": "910GALDMSTN", "AdministrativeAreaRef": "110", "code": "9100ALDMSTN", "NPTG": "E0053816", "ATCO": "030", "CRS_code": "AMT" }, "geometry": { "type": "Point", "coordinates": [ -1.1374238096, 51.401961698229997 ] } },
{ "type": "Feature", "properties": { "Name": "Aldershot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aldershot Rail Station", "TIPLOC": "ALDRSHT", "CRS": "AHT", "StopAreaCode": "910GALDRSHT", "AdministrativeAreaRef": "110", "code": "9100ALDRSHT", "NPTG": "E0013319", "ATCO": "190", "CRS_code": "AHT" }, "geometry": { "type": "Point", "coordinates": [ -0.75985979888, 51.246418377109997 ] } },
{ "type": "Feature", "properties": { "Name": "Aldrington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aldrington Rail Station", "TIPLOC": "ALDTON", "CRS": "AGT", "StopAreaCode": "910GALDTON", "AdministrativeAreaRef": "110", "code": "9100ALDTON", "NPTG": "E0057156", "ATCO": "149", "CRS_code": "AGT" }, "geometry": { "type": "Point", "coordinates": [ -0.18382143408, 50.836383838689997 ] } },
{ "type": "Feature", "properties": { "Name": "Liverpool South Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liverpool South Parkway Rail Station", "TIPLOC": "ALERTN", "CRS": "LPY", "StopAreaCode": "910GALERTN", "AdministrativeAreaRef": "110", "code": "9100ALERTN", "NPTG": "E0029706", "ATCO": "280", "CRS_code": "LPY" }, "geometry": { "type": "Point", "coordinates": [ -2.88912776514, 53.357744090700002 ] } },
{ "type": "Feature", "properties": { "Name": "Alexandra Palace Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alexandra Palace Rail Station", "TIPLOC": "ALEXNDP", "CRS": "AAP", "StopAreaCode": "910GALEXNDP", "AdministrativeAreaRef": "110", "code": "9100ALEXNDP", "NPTG": "N0077741", "ATCO": "490", "CRS_code": "AAP" }, "geometry": { "type": "Point", "coordinates": [ -0.12023513932, 51.597923995949998 ] } },
{ "type": "Feature", "properties": { "Name": "Alfreton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alfreton Rail Station", "TIPLOC": "ALFRETN", "CRS": "ALF", "StopAreaCode": "910GALFRETN", "AdministrativeAreaRef": "110", "code": "9100ALFRETN", "NPTG": "E0044946", "ATCO": "100", "CRS_code": "ALF" }, "geometry": { "type": "Point", "coordinates": [ -1.36969607227, 53.10043172212 ] } },
{ "type": "Feature", "properties": { "Name": "Allens West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Allens West Rail Station", "TIPLOC": "ALLENSW", "CRS": "ALW", "StopAreaCode": "910GALLENSW", "AdministrativeAreaRef": "110", "code": "9100ALLENSW", "NPTG": "E0042063", "ATCO": "077", "CRS_code": "ALW" }, "geometry": { "type": "Point", "coordinates": [ -1.36111669221, 54.524622762180002 ] } },
{ "type": "Feature", "properties": { "Name": "Alloa Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alloa Rail Station", "TIPLOC": "ALLOA", "CRS": "ALO", "StopAreaCode": "910GALLOA", "AdministrativeAreaRef": "110", "code": "9100ALLOA", "NPTG": "ES000069", "ATCO": "668", "CRS_code": "ALO" }, "geometry": { "type": "Point", "coordinates": [ -3.79005562154, 56.117789191859998 ] } },
{ "type": "Feature", "properties": { "Name": "Alness Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alness Rail Station", "TIPLOC": "ALNESS", "CRS": "ASS", "StopAreaCode": "910GALNESS", "AdministrativeAreaRef": "110", "code": "9100ALNESS", "NPTG": "ES000077", "ATCO": "670", "CRS_code": "ASS" }, "geometry": { "type": "Point", "coordinates": [ -4.24971628511, 57.694394116909997 ] } },
{ "type": "Feature", "properties": { "Name": "Alnmouth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alnmouth Rail Station", "TIPLOC": "ALNMOTH", "CRS": "ALM", "StopAreaCode": "910GALNMOTH", "AdministrativeAreaRef": "110", "code": "9100ALNMOTH", "NPTG": "E0049880", "ATCO": "310", "CRS_code": "ALM" }, "geometry": { "type": "Point", "coordinates": [ -1.63663765884, 55.392777578059999 ] } },
{ "type": "Feature", "properties": { "Name": "Alresford (Essex) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alresford (Essex) Rail Station", "TIPLOC": "ALRESFD", "CRS": "ALR", "StopAreaCode": "910GALRESFD", "AdministrativeAreaRef": "110", "code": "9100ALRESFD", "NPTG": "E0046350", "ATCO": "150", "CRS_code": "ALR" }, "geometry": { "type": "Point", "coordinates": [ 0.9974365883, 51.854000789860002 ] } },
{ "type": "Feature", "properties": { "Name": "Alsager Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alsager Rail Station", "TIPLOC": "ALSAGER", "CRS": "ASG", "StopAreaCode": "910GALSAGER", "AdministrativeAreaRef": "110", "code": "9100ALSAGER", "NPTG": "E0044257", "ATCO": "060", "CRS_code": "ASG" }, "geometry": { "type": "Point", "coordinates": [ -2.29905753309, 53.093003336179997 ] } },
{ "type": "Feature", "properties": { "Name": "Aylesham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aylesham Rail Station", "TIPLOC": "ALSHAM", "CRS": "AYH", "StopAreaCode": "910GALSHAM", "AdministrativeAreaRef": "110", "code": "9100ALSHAM", "NPTG": "E0047154", "ATCO": "240", "CRS_code": "AYH" }, "geometry": { "type": "Point", "coordinates": [ 1.2094529054, 51.227254296479998 ] } },
{ "type": "Feature", "properties": { "Name": "Althorne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Althorne Rail Station", "TIPLOC": "ALTHORN", "CRS": "ALN", "StopAreaCode": "910GALTHORN", "AdministrativeAreaRef": "110", "code": "9100ALTHORN", "NPTG": "E0046303", "ATCO": "150", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.7524835631, 51.647870474800001 ] } },
{ "type": "Feature", "properties": { "Name": "Altnabreac Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Altnabreac Rail Station", "TIPLOC": "ALTNBRC", "CRS": "ABC", "StopAreaCode": "910GALTNBRC", "AdministrativeAreaRef": "110", "code": "9100ALTNBRC", "NPTG": "N0067845", "ATCO": "670", "CRS_code": "ABC" }, "geometry": { "type": "Point", "coordinates": [ -3.70628021863, 58.388148276149998 ] } },
{ "type": "Feature", "properties": { "Name": "Alton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alton Rail Station", "TIPLOC": "ALTON", "CRS": "AON", "StopAreaCode": "910GALTON", "AdministrativeAreaRef": "110", "code": "9100ALTON", "NPTG": "E0046747", "ATCO": "190", "CRS_code": "AON" }, "geometry": { "type": "Point", "coordinates": [ -0.96691319996, 51.151968791119998 ] } },
{ "type": "Feature", "properties": { "Name": "Althorpe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Althorpe Rail Station", "TIPLOC": "ALTPE", "CRS": "ALP", "StopAreaCode": "910GALTPE", "AdministrativeAreaRef": "110", "code": "9100ALTPE", "NPTG": "N0060037", "ATCO": "227", "CRS_code": "ALP" }, "geometry": { "type": "Point", "coordinates": [ -0.73318220149, 53.58550078559 ] } },
{ "type": "Feature", "properties": { "Name": "Altrincham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Altrincham Rail Station", "TIPLOC": "ALTRNHM", "CRS": "ALT", "StopAreaCode": "910GALTRNHM", "AdministrativeAreaRef": "110", "code": "9100ALTRNHM", "NPTG": "E0028261", "ATCO": "180", "CRS_code": "ALT" }, "geometry": { "type": "Point", "coordinates": [ -2.34688878555, 53.387716565689999 ] } },
{ "type": "Feature", "properties": { "Name": "Alvechurch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alvechurch Rail Station", "TIPLOC": "ALVCHRC", "CRS": "ALV", "StopAreaCode": "910GALVCHRC", "AdministrativeAreaRef": "110", "code": "9100ALVCHRC", "NPTG": "E0056895", "ATCO": "200", "CRS_code": "ALV" }, "geometry": { "type": "Point", "coordinates": [ -1.96766049449, 52.346070585920003 ] } },
{ "type": "Feature", "properties": { "Name": "Alexandria Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alexandria Rail Station", "TIPLOC": "ALXANDR", "CRS": "ALX", "StopAreaCode": "910GALXANDR", "AdministrativeAreaRef": "110", "code": "9100ALXANDR", "NPTG": "ES000063", "ATCO": "608", "CRS_code": "ALX" }, "geometry": { "type": "Point", "coordinates": [ -4.57748423627, 55.985083149639998 ] } },
{ "type": "Feature", "properties": { "Name": "Alexandra Parade Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Alexandra Parade Rail Station", "TIPLOC": "ALXPD", "CRS": "AXP", "StopAreaCode": "910GALXPD", "AdministrativeAreaRef": "110", "code": "9100ALXPD", "NPTG": "ES001021", "ATCO": "609", "CRS_code": "AXP" }, "geometry": { "type": "Point", "coordinates": [ -4.21064800754, 55.863170915189997 ] } },
{ "type": "Feature", "properties": { "Name": "Ambergate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ambergate Rail Station", "TIPLOC": "AMBERGT", "CRS": "AMB", "StopAreaCode": "910GAMBERGT", "AdministrativeAreaRef": "110", "code": "9100AMBERGT", "NPTG": "E0006492", "ATCO": "100", "CRS_code": "AMB" }, "geometry": { "type": "Point", "coordinates": [ -1.4806974242, 53.060516328219997 ] } },
{ "type": "Feature", "properties": { "Name": "Amersham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Amersham Rail Station", "TIPLOC": "AMERSHM", "CRS": "AMR", "StopAreaCode": "910GAMERSHM", "AdministrativeAreaRef": "110", "code": "9100AMERSHM", "NPTG": "E0044054", "ATCO": "040", "CRS_code": "AMR" }, "geometry": { "type": "Point", "coordinates": [ -0.60759605596, 51.674205798880003 ] } },
{ "type": "Feature", "properties": { "Name": "Amberley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Amberley Rail Station", "TIPLOC": "AMLY", "CRS": "AMY", "StopAreaCode": "910GAMLY", "AdministrativeAreaRef": "110", "code": "9100AMLY", "NPTG": "E0052152", "ATCO": "440", "CRS_code": "AMY" }, "geometry": { "type": "Point", "coordinates": [ -0.54199232704, 50.896680022120002 ] } },
{ "type": "Feature", "properties": { "Name": "Ammanford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ammanford Rail Station", "TIPLOC": "AMMANFD", "CRS": "AMF", "StopAreaCode": "910GAMMANFD", "AdministrativeAreaRef": "110", "code": "9100AMMANFD", "NPTG": "E0054030", "ATCO": "522", "CRS_code": "AMF" }, "geometry": { "type": "Point", "coordinates": [ -3.99673488783, 51.795974727210002 ] } },
{ "type": "Feature", "properties": { "Name": "Ancaster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ancaster Rail Station", "TIPLOC": "ANCASTR", "CRS": "ANC", "StopAreaCode": "910GANCASTR", "AdministrativeAreaRef": "110", "code": "9100ANCASTR", "NPTG": "E0048115", "ATCO": "270", "CRS_code": "ANC" }, "geometry": { "type": "Point", "coordinates": [ -0.53562365209, 52.987687356469998 ] } },
{ "type": "Feature", "properties": { "Name": "Andover Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Andover Rail Station", "TIPLOC": "ANDOVER", "CRS": "ADV", "StopAreaCode": "910GANDOVER", "AdministrativeAreaRef": "110", "code": "9100ANDOVER", "NPTG": "E0013337", "ATCO": "190", "CRS_code": "ADV" }, "geometry": { "type": "Point", "coordinates": [ -1.49223291317, 51.211546880230003 ] } },
{ "type": "Feature", "properties": { "Name": "Anderston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Anderston Rail Station", "TIPLOC": "ANDRSTN", "CRS": "AND", "StopAreaCode": "910GANDRSTN", "AdministrativeAreaRef": "110", "code": "9100ANDRSTN", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "AND" }, "geometry": { "type": "Point", "coordinates": [ -4.27097904299, 55.85989696643 ] } },
{ "type": "Feature", "properties": { "Name": "Anerley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Anerley Rail Station", "TIPLOC": "ANERLEY", "CRS": "ANZ", "StopAreaCode": "910GANERLEY", "AdministrativeAreaRef": "110", "code": "9100ANERLEY", "NPTG": "E0034067", "ATCO": "490", "CRS_code": "ANZ" }, "geometry": { "type": "Point", "coordinates": [ -0.06588583993, 51.412152985639999 ] } },
{ "type": "Feature", "properties": { "Name": "Angel Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Angel Road Rail Station", "TIPLOC": "ANGELRD", "CRS": "AGR", "StopAreaCode": "910GANGELRD", "AdministrativeAreaRef": "110", "code": "9100ANGELRD", "NPTG": "E0034318", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.0487913406, 51.612404927589999 ] } },
{ "type": "Feature", "properties": { "Name": "Angmering Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Angmering Rail Station", "TIPLOC": "ANGMRNG", "CRS": "ANG", "StopAreaCode": "910GANGMRNG", "AdministrativeAreaRef": "110", "code": "9100ANGMRNG", "NPTG": "E0052055", "ATCO": "440", "CRS_code": "ANG" }, "geometry": { "type": "Point", "coordinates": [ -0.48939393986, 50.816575312319998 ] } },
{ "type": "Feature", "properties": { "Name": "Annan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Annan Rail Station", "TIPLOC": "ANNAN", "CRS": "ANN", "StopAreaCode": "910GANNAN", "AdministrativeAreaRef": "110", "code": "9100ANNAN", "NPTG": "ES000097", "ATCO": "680", "CRS_code": "ANN" }, "geometry": { "type": "Point", "coordinates": [ -3.26258045813, 54.983835268909999 ] } },
{ "type": "Feature", "properties": { "Name": "Ansdell & Fairhaven Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ansdell & Fairhaven Rail Station", "TIPLOC": "ANSDELL", "CRS": "AFV", "StopAreaCode": "910GANSDELL", "AdministrativeAreaRef": "110", "code": "9100ANSDELL", "NPTG": "E0015826", "ATCO": "250", "CRS_code": "AFV" }, "geometry": { "type": "Point", "coordinates": [ -2.99303395065, 53.74146228451 ] } },
{ "type": "Feature", "properties": { "Name": "Anniesland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Anniesland Rail Station", "TIPLOC": "ANSL", "CRS": "ANL", "StopAreaCode": "910GANSL", "AdministrativeAreaRef": "110", "code": "9100ANSL", "NPTG": "N0067986", "ATCO": "609", "CRS_code": "ANL" }, "geometry": { "type": "Point", "coordinates": [ -4.32195682994, 55.889350272190001 ] } },
{ "type": "Feature", "properties": { "Name": "Appleby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Appleby Rail Station", "TIPLOC": "APBY", "CRS": "APP", "StopAreaCode": "910GAPBY", "AdministrativeAreaRef": "110", "code": "9100APBY", "NPTG": "E0055511", "ATCO": "090", "CRS_code": "APP" }, "geometry": { "type": "Point", "coordinates": [ -2.48669223087, 54.580346428459997 ] } },
{ "type": "Feature", "properties": { "Name": "Appledore (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Appledore (Kent) Rail Station", "TIPLOC": "APDR", "CRS": "APD", "StopAreaCode": "910GAPDR", "AdministrativeAreaRef": "110", "code": "9100APDR", "NPTG": "E0047077", "ATCO": "240", "CRS_code": "APD" }, "geometry": { "type": "Point", "coordinates": [ 0.81634166033, 51.033237289790002 ] } },
{ "type": "Feature", "properties": { "Name": "Apperley Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Apperley Bridge Rail Station", "TIPLOC": "APERLYB", "CRS": "APY", "StopAreaCode": "910GAPERLYB", "AdministrativeAreaRef": "110", "code": "9100APERLYB", "NPTG": "E0032193", "ATCO": "450", "CRS_code": "APY" }, "geometry": { "type": "Point", "coordinates": [ -1.70582848003, 53.84174897167 ] } },
{ "type": "Feature", "properties": { "Name": "Appley Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Appley Bridge Rail Station", "TIPLOC": "APLYBDG", "CRS": "APB", "StopAreaCode": "910GAPLYBDG", "AdministrativeAreaRef": "110", "code": "9100APLYBDG", "NPTG": "E0016457", "ATCO": "250", "CRS_code": "APB" }, "geometry": { "type": "Point", "coordinates": [ -2.71925209845, 53.578670743590003 ] } },
{ "type": "Feature", "properties": { "Name": "Appleford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Appleford Rail Station", "TIPLOC": "APPLEFD", "CRS": "APF", "StopAreaCode": "910GAPPLEFD", "AdministrativeAreaRef": "110", "code": "9100APPLEFD", "NPTG": "E0050416", "ATCO": "340", "CRS_code": "APF" }, "geometry": { "type": "Point", "coordinates": [ -1.24214140361, 51.639641215739999 ] } },
{ "type": "Feature", "properties": { "Name": "Apsley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Apsley Rail Station", "TIPLOC": "APSLEY", "CRS": "APS", "StopAreaCode": "910GAPSLEY", "AdministrativeAreaRef": "110", "code": "9100APSLEY", "NPTG": "N0076177", "ATCO": "210", "CRS_code": "APS" }, "geometry": { "type": "Point", "coordinates": [ -0.46293473253, 51.732521760170002 ] } },
{ "type": "Feature", "properties": { "Name": "Arbroath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Arbroath Rail Station", "TIPLOC": "ARBROTH", "CRS": "ARB", "StopAreaCode": "910GARBROTH", "AdministrativeAreaRef": "110", "code": "9100ARBROTH", "NPTG": "ES000115", "ATCO": "649", "CRS_code": "ARB" }, "geometry": { "type": "Point", "coordinates": [ -2.58893139426, 56.559573741 ] } },
{ "type": "Feature", "properties": { "Name": "Arrochar & Tarbet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Arrochar & Tarbet Rail Station", "TIPLOC": "ARCHRAT", "CRS": "ART", "StopAreaCode": "910GARCHRAT", "AdministrativeAreaRef": "110", "code": "9100ARCHRAT", "NPTG": "ES000155", "ATCO": "607", "CRS_code": "ART" }, "geometry": { "type": "Point", "coordinates": [ -4.72277004057, 56.203970792269999 ] } },
{ "type": "Feature", "properties": { "Name": "Ardgay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ardgay Rail Station", "TIPLOC": "ARDGAY", "CRS": "ARD", "StopAreaCode": "910GARDGAY", "AdministrativeAreaRef": "110", "code": "9100ARDGAY", "NPTG": "N0067686", "ATCO": "670", "CRS_code": "ARD" }, "geometry": { "type": "Point", "coordinates": [ -4.36208920609, 57.881452393670003 ] } },
{ "type": "Feature", "properties": { "Name": "Ardlui Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ardlui Rail Station", "TIPLOC": "ARDLUI", "CRS": "AUI", "StopAreaCode": "910GARDLUI", "AdministrativeAreaRef": "110", "code": "9100ARDLUI", "NPTG": "N0068330", "ATCO": "607", "CRS_code": "AUI" }, "geometry": { "type": "Point", "coordinates": [ -4.72165737568, 56.30196654417 ] } },
{ "type": "Feature", "properties": { "Name": "Ardrossan Harbour Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ardrossan Harbour Rail Station", "TIPLOC": "ARDRSHB", "CRS": "ADS", "StopAreaCode": "910GARDRSHB", "AdministrativeAreaRef": "110", "code": "9100ARDRSHB", "NPTG": "ES000137", "ATCO": "617", "CRS_code": "ADS" }, "geometry": { "type": "Point", "coordinates": [ -4.82111037688, 55.639872230450003 ] } },
{ "type": "Feature", "properties": { "Name": "Ardrossan South Beach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ardrossan South Beach Rail Station", "TIPLOC": "ARDRSSB", "CRS": "ASB", "StopAreaCode": "910GARDRSSB", "AdministrativeAreaRef": "110", "code": "9100ARDRSSB", "NPTG": "ES000137", "ATCO": "617", "CRS_code": "ASB" }, "geometry": { "type": "Point", "coordinates": [ -4.80121139475, 55.641416173869999 ] } },
{ "type": "Feature", "properties": { "Name": "Ardrossan Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ardrossan Town Rail Station", "TIPLOC": "ARDRSTN", "CRS": "ADN", "StopAreaCode": "910GARDRSTN", "AdministrativeAreaRef": "110", "code": "9100ARDRSTN", "NPTG": "ES000137", "ATCO": "617", "CRS_code": "ADN" }, "geometry": { "type": "Point", "coordinates": [ -4.81267519968, 55.639706469670003 ] } },
{ "type": "Feature", "properties": { "Name": "Ardwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ardwick Rail Station", "TIPLOC": "ARDWICK", "CRS": "ADK", "StopAreaCode": "910GARDWICK", "AdministrativeAreaRef": "110", "code": "9100ARDWICK", "NPTG": "E0028484", "ATCO": "180", "CRS_code": "ADK" }, "geometry": { "type": "Point", "coordinates": [ -2.21432180977, 53.471549827650001 ] } },
{ "type": "Feature", "properties": { "Name": "Argyle Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Argyle Street Rail Station", "TIPLOC": "ARGYLST", "CRS": "AGS", "StopAreaCode": "910GARGYLST", "AdministrativeAreaRef": "110", "code": "9100ARGYLST", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "AGS" }, "geometry": { "type": "Point", "coordinates": [ -4.25069388384, 55.857303936100003 ] } },
{ "type": "Feature", "properties": { "Name": "Arisaig Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Arisaig Rail Station", "TIPLOC": "ARISAIG", "CRS": "ARG", "StopAreaCode": "910GARISAIG", "AdministrativeAreaRef": "110", "code": "9100ARISAIG", "NPTG": "N0067742", "ATCO": "670", "CRS_code": "ARG" }, "geometry": { "type": "Point", "coordinates": [ -5.83907767832, 56.912546392700001 ] } },
{ "type": "Feature", "properties": { "Name": "Arlesey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Arlesey Rail Station", "TIPLOC": "ARLSEY", "CRS": "ARL", "StopAreaCode": "910GARLSEY", "AdministrativeAreaRef": "110", "code": "9100ARLSEY", "NPTG": "E0043871", "ATCO": "021", "CRS_code": "ARL" }, "geometry": { "type": "Point", "coordinates": [ -0.26631975935, 52.026031260540002 ] } },
{ "type": "Feature", "properties": { "Name": "Armadale (W Lothian) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Armadale (W Lothian) Rail Station", "TIPLOC": "ARMDALE", "CRS": "ARM", "StopAreaCode": "910GARMDALE", "AdministrativeAreaRef": "110", "code": "9100ARMDALE", "NPTG": "ES000310", "ATCO": "629", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.69541259893, 55.885709757809998 ] } },
{ "type": "Feature", "properties": { "Name": "Armathwaite Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Armathwaite Rail Station", "TIPLOC": "ARMTHWT", "CRS": "AWT", "StopAreaCode": "910GARMTHWT", "AdministrativeAreaRef": "110", "code": "9100ARMTHWT", "NPTG": "E0005740", "ATCO": "090", "CRS_code": "AWT" }, "geometry": { "type": "Point", "coordinates": [ -2.77207104301, 54.809465145719997 ] } },
{ "type": "Feature", "properties": { "Name": "Arnside Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Arnside Rail Station", "TIPLOC": "ARNSIDE", "CRS": "ARN", "StopAreaCode": "910GARNSIDE", "AdministrativeAreaRef": "110", "code": "9100ARNSIDE", "NPTG": "E0055515", "ATCO": "090", "CRS_code": "ARN" }, "geometry": { "type": "Point", "coordinates": [ -2.82824144558, 54.202728577009999 ] } },
{ "type": "Feature", "properties": { "Name": "Arram Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Arram Rail Station", "TIPLOC": "ARRAM", "CRS": "ARR", "StopAreaCode": "910GARRAM", "AdministrativeAreaRef": "110", "code": "9100ARRAM", "NPTG": "E0036851", "ATCO": "220", "CRS_code": "ARR" }, "geometry": { "type": "Point", "coordinates": [ -0.42657005177, 53.88434367979 ] } },
{ "type": "Feature", "properties": { "Name": "Arundel Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Arundel Rail Station", "TIPLOC": "ARUNDEL", "CRS": "ARU", "StopAreaCode": "910GARUNDEL", "AdministrativeAreaRef": "110", "code": "9100ARUNDEL", "NPTG": "E0052056", "ATCO": "440", "CRS_code": "ARU" }, "geometry": { "type": "Point", "coordinates": [ -0.54617421767, 50.848214827619998 ] } },
{ "type": "Feature", "properties": { "Name": "Ascot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ascot Rail Station", "TIPLOC": "ASCOT", "CRS": "ACT", "StopAreaCode": "910GASCOT", "AdministrativeAreaRef": "110", "code": "9100ASCOT", "NPTG": "E0057282", "ATCO": "036", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.6758331694, 51.406243652020002 ] } },
{ "type": "Feature", "properties": { "Name": "Ascott-under-Wychwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ascott-under-Wychwood Rail Station", "TIPLOC": "ASCTUWD", "CRS": "AUW", "StopAreaCode": "910GASCTUWD", "AdministrativeAreaRef": "110", "code": "9100ASCTUWD", "NPTG": "E0050485", "ATCO": "340", "CRS_code": "AUW" }, "geometry": { "type": "Point", "coordinates": [ -1.56405264014, 51.86734078069 ] } },
{ "type": "Feature", "properties": { "Name": "Ashford (Surrey) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashford (Surrey) Rail Station", "TIPLOC": "ASFDMSX", "CRS": "AFS", "StopAreaCode": "910GASFDMSX", "AdministrativeAreaRef": "110", "code": "9100ASFDMSX", "NPTG": "E0025624", "ATCO": "400", "CRS_code": "AFS" }, "geometry": { "type": "Point", "coordinates": [ -0.46807091587, 51.436507197049998 ] } },
{ "type": "Feature", "properties": { "Name": "Ashfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashfield Rail Station", "TIPLOC": "ASFIELD", "CRS": "ASF", "StopAreaCode": "910GASFIELD", "AdministrativeAreaRef": "110", "code": "9100ASFIELD", "NPTG": "N0078795", "ATCO": "609", "CRS_code": "ASF" }, "geometry": { "type": "Point", "coordinates": [ -4.24921411534, 55.888921809620001 ] } },
{ "type": "Feature", "properties": { "Name": "Ashburys Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashburys Rail Station", "TIPLOC": "ASHBRYS", "CRS": "ABY", "StopAreaCode": "910GASHBRYS", "AdministrativeAreaRef": "110", "code": "9100ASHBRYS", "NPTG": "N0074883", "ATCO": "180", "CRS_code": "ABY" }, "geometry": { "type": "Point", "coordinates": [ -2.19443633042, 53.471637810380003 ] } },
{ "type": "Feature", "properties": { "Name": "Ashchurch for Tewkesbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashchurch for Tewkesbury Rail Station", "TIPLOC": "ASHCHRC", "CRS": "ASC", "StopAreaCode": "910GASHCHRC", "AdministrativeAreaRef": "110", "code": "9100ASHCHRC", "NPTG": "E0046648", "ATCO": "160", "CRS_code": "ASC" }, "geometry": { "type": "Point", "coordinates": [ -2.10875994357, 51.998904039640003 ] } },
{ "type": "Feature", "properties": { "Name": "Ashtead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashtead Rail Station", "TIPLOC": "ASHD", "CRS": "AHD", "StopAreaCode": "910GASHD", "AdministrativeAreaRef": "110", "code": "9100ASHD", "NPTG": "E0025431", "ATCO": "400", "CRS_code": "AHD" }, "geometry": { "type": "Point", "coordinates": [ -0.30757168547, 51.317873794009998 ] } },
{ "type": "Feature", "properties": { "Name": "Ashford International Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashford International Rail Station", "TIPLOC": "ASHFKY", "CRS": "AFK", "StopAreaCode": "910GASHFKY", "AdministrativeAreaRef": "110", "code": "9100ASHFKY", "NPTG": "E0056015", "ATCO": "240", "CRS_code": "AFK" }, "geometry": { "type": "Point", "coordinates": [ 0.87619737944, 51.143705857210001 ] } },
{ "type": "Feature", "properties": { "Name": "Ash Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ash Rail Station", "TIPLOC": "ASHH", "CRS": "ASH", "StopAreaCode": "910GASHH", "AdministrativeAreaRef": "110", "code": "9100ASHH", "NPTG": "E0051755", "ATCO": "400", "CRS_code": "ASH" }, "geometry": { "type": "Point", "coordinates": [ -0.71280538722, 51.249597316249996 ] } },
{ "type": "Feature", "properties": { "Name": "Ashley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashley Rail Station", "TIPLOC": "ASHLEY", "CRS": "ASY", "StopAreaCode": "910GASHLEY", "AdministrativeAreaRef": "110", "code": "9100ASHLEY", "NPTG": "E0044353", "ATCO": "060", "CRS_code": "ASY" }, "geometry": { "type": "Point", "coordinates": [ -2.34146042588, 53.355723659760002 ] } },
{ "type": "Feature", "properties": { "Name": "Ashton-under-Lyne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashton-under-Lyne Rail Station", "TIPLOC": "ASHONUL", "CRS": "AHN", "StopAreaCode": "910GASHONUL", "AdministrativeAreaRef": "110", "code": "9100ASHONUL", "NPTG": "E0028492", "ATCO": "180", "CRS_code": "AHN" }, "geometry": { "type": "Point", "coordinates": [ -2.09431227099, 53.491272885320001 ] } },
{ "type": "Feature", "properties": { "Name": "Ashurst (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashurst (Kent) Rail Station", "TIPLOC": "ASHURST", "CRS": "AHS", "StopAreaCode": "910GASHURST", "AdministrativeAreaRef": "110", "code": "9100ASHURST", "NPTG": "N0074761", "ATCO": "240", "CRS_code": "AHS" }, "geometry": { "type": "Point", "coordinates": [ 0.15265220319, 51.128662797369998 ] } },
{ "type": "Feature", "properties": { "Name": "Ash Vale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ash Vale Rail Station", "TIPLOC": "ASHVALE", "CRS": "AHV", "StopAreaCode": "910GASHVALE", "AdministrativeAreaRef": "110", "code": "9100ASHVALE", "NPTG": "E0025346", "ATCO": "400", "CRS_code": "AHV" }, "geometry": { "type": "Point", "coordinates": [ -0.72164850871, 51.272246940400002 ] } },
{ "type": "Feature", "properties": { "Name": "Ashwell & Morden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashwell & Morden Rail Station", "TIPLOC": "ASHWELC", "CRS": "AWM", "StopAreaCode": "910GASHWELC", "AdministrativeAreaRef": "110", "code": "9100ASHWELC", "NPTG": "E0001234", "ATCO": "050", "CRS_code": "AWM" }, "geometry": { "type": "Point", "coordinates": [ -0.10978883668, 52.030772146719997 ] } },
{ "type": "Feature", "properties": { "Name": "Askam Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Askam Rail Station", "TIPLOC": "ASKAM", "CRS": "ASK", "StopAreaCode": "910GASKAM", "AdministrativeAreaRef": "110", "code": "9100ASKAM", "NPTG": "E0055496", "ATCO": "090", "CRS_code": "ASK" }, "geometry": { "type": "Point", "coordinates": [ -3.20451119051, 54.188929638049999 ] } },
{ "type": "Feature", "properties": { "Name": "Aslockton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aslockton Rail Station", "TIPLOC": "ASLCKTN", "CRS": "ALK", "StopAreaCode": "910GASLCKTN", "AdministrativeAreaRef": "110", "code": "9100ASLCKTN", "NPTG": "E0050190", "ATCO": "330", "CRS_code": "ALK" }, "geometry": { "type": "Point", "coordinates": [ -0.89809752325, 52.951549761320003 ] } },
{ "type": "Feature", "properties": { "Name": "Aspley Guise Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aspley Guise Rail Station", "TIPLOC": "ASPLEYG", "CRS": "APG", "StopAreaCode": "910GASPLEYG", "AdministrativeAreaRef": "110", "code": "9100ASPLEYG", "NPTG": "E0043872", "ATCO": "021", "CRS_code": "APG" }, "geometry": { "type": "Point", "coordinates": [ -0.63233442292, 52.021236846160001 ] } },
{ "type": "Feature", "properties": { "Name": "Aspatria Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aspatria Rail Station", "TIPLOC": "ASPTRIA", "CRS": "ASP", "StopAreaCode": "910GASPTRIA", "AdministrativeAreaRef": "110", "code": "9100ASPTRIA", "NPTG": "E0055486", "ATCO": "090", "CRS_code": "ASP" }, "geometry": { "type": "Point", "coordinates": [ -3.33187360253, 54.758956192550002 ] } },
{ "type": "Feature", "properties": { "Name": "Aston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aston Rail Station", "TIPLOC": "ASTON", "CRS": "AST", "StopAreaCode": "910GASTON", "AdministrativeAreaRef": "110", "code": "9100ASTON", "NPTG": "E0031313", "ATCO": "430", "CRS_code": "AST" }, "geometry": { "type": "Point", "coordinates": [ -1.87193353804, 52.504230657690002 ] } },
{ "type": "Feature", "properties": { "Name": "Attadale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Attadale Rail Station", "TIPLOC": "ATADALE", "CRS": "ATT", "StopAreaCode": "910GATADALE", "AdministrativeAreaRef": "110", "code": "9100ATADALE", "NPTG": "N0067746", "ATCO": "670", "CRS_code": "ATT" }, "geometry": { "type": "Point", "coordinates": [ -5.45557705188, 57.395036559760001 ] } },
{ "type": "Feature", "properties": { "Name": "Atherton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Atherton Rail Station", "TIPLOC": "ATHERTN", "CRS": "ATN", "StopAreaCode": "910GATHERTN", "AdministrativeAreaRef": "110", "code": "9100ATHERTN", "NPTG": "E0028727", "ATCO": "180", "CRS_code": "ATN" }, "geometry": { "type": "Point", "coordinates": [ -2.4789719932, 53.529143880500001 ] } },
{ "type": "Feature", "properties": { "Name": "Atherstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Atherstone Rail Station", "TIPLOC": "ATHRSTN", "CRS": "ATH", "StopAreaCode": "910GATHRSTN", "AdministrativeAreaRef": "110", "code": "9100ATHRSTN", "NPTG": "E0051834", "ATCO": "420", "CRS_code": "ATH" }, "geometry": { "type": "Point", "coordinates": [ -1.55281130806, 52.578971201930003 ] } },
{ "type": "Feature", "properties": { "Name": "Attenborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Attenborough Rail Station", "TIPLOC": "ATNBRO", "CRS": "ATB", "StopAreaCode": "910GATNBRO", "AdministrativeAreaRef": "110", "code": "9100ATNBRO", "NPTG": "E0020497", "ATCO": "330", "CRS_code": "ATB" }, "geometry": { "type": "Point", "coordinates": [ -1.23141548016, 52.906212953379999 ] } },
{ "type": "Feature", "properties": { "Name": "Attleborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Attleborough Rail Station", "TIPLOC": "ATTLBON", "CRS": "ATL", "StopAreaCode": "910GATTLBON", "AdministrativeAreaRef": "110", "code": "9100ATTLBON", "NPTG": "E0048325", "ATCO": "290", "CRS_code": "ATL" }, "geometry": { "type": "Point", "coordinates": [ 1.02234774572, 52.514547943639997 ] } },
{ "type": "Feature", "properties": { "Name": "Audley End Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Audley End Rail Station", "TIPLOC": "AUDLEYE", "CRS": "AUD", "StopAreaCode": "910GAUDLEYE", "AdministrativeAreaRef": "110", "code": "9100AUDLEYE", "NPTG": "E0011508", "ATCO": "150", "CRS_code": "AUD" }, "geometry": { "type": "Point", "coordinates": [ 0.20730569075, 52.004439839569997 ] } },
{ "type": "Feature", "properties": { "Name": "Aviemore Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aviemore Rail Station", "TIPLOC": "AVIEMRE", "CRS": "AVM", "StopAreaCode": "910GAVIEMRE", "AdministrativeAreaRef": "110", "code": "9100AVIEMRE", "NPTG": "ES000190", "ATCO": "670", "CRS_code": "AVM" }, "geometry": { "type": "Point", "coordinates": [ -3.82886717842, 57.188511801440001 ] } },
{ "type": "Feature", "properties": { "Name": "Avignon Central Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Avignon Central Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100AVIGVIL", "NPTG": "E0015169", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.39427359026, 51.073998263439996 ] } },
{ "type": "Feature", "properties": { "Name": "Avoncliff Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Avoncliff Rail Station", "TIPLOC": "AVNCLFF", "CRS": "AVF", "StopAreaCode": "910GAVNCLFF", "AdministrativeAreaRef": "110", "code": "9100AVNCLFF", "NPTG": "E0027406", "ATCO": "460", "CRS_code": "AVF" }, "geometry": { "type": "Point", "coordinates": [ -2.28132527867, 51.3396508457 ] } },
{ "type": "Feature", "properties": { "Name": "Avonmouth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Avonmouth Rail Station", "TIPLOC": "AVONMTH", "CRS": "AVN", "StopAreaCode": "910GAVONMTH", "AdministrativeAreaRef": "110", "code": "9100AVONMTH", "NPTG": "E0035565", "ATCO": "010", "CRS_code": "AVN" }, "geometry": { "type": "Point", "coordinates": [ -2.69946610827, 51.500362155090002 ] } },
{ "type": "Feature", "properties": { "Name": "Axminster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Axminster Rail Station", "TIPLOC": "AXMNSTR", "CRS": "AXM", "StopAreaCode": "910GAXMNSTR", "AdministrativeAreaRef": "110", "code": "9100AXMNSTR", "NPTG": "E0045218", "ATCO": "110", "CRS_code": "AXM" }, "geometry": { "type": "Point", "coordinates": [ -3.00472309727, 50.779271200949999 ] } },
{ "type": "Feature", "properties": { "Name": "Aylesford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aylesford Rail Station", "TIPLOC": "AYLESFD", "CRS": "AYL", "StopAreaCode": "910GAYLESFD", "AdministrativeAreaRef": "110", "code": "9100AYLESFD", "NPTG": "E0047337", "ATCO": "240", "CRS_code": "AYL" }, "geometry": { "type": "Point", "coordinates": [ 0.46617068355, 51.301317844 ] } },
{ "type": "Feature", "properties": { "Name": "Aylesbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aylesbury Rail Station", "TIPLOC": "AYLSBRY", "CRS": "AYS", "StopAreaCode": "910GAYLSBRY", "AdministrativeAreaRef": "110", "code": "9100AYLSBRY", "NPTG": "E0000348", "ATCO": "040", "CRS_code": "AYS" }, "geometry": { "type": "Point", "coordinates": [ -0.81509590543, 51.813890579160002 ] } },
{ "type": "Feature", "properties": { "Name": "Aylesbury Vale Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Aylesbury Vale Parkway Rail Station", "TIPLOC": "AYLSPWY", "CRS": "AVP", "StopAreaCode": "910GAYLSPWY", "AdministrativeAreaRef": "110", "code": "9100AYLSPWY", "NPTG": "E0000348", "ATCO": "040", "CRS_code": "AVP" }, "geometry": { "type": "Point", "coordinates": [ -0.86018234228, 51.831159018169998 ] } },
{ "type": "Feature", "properties": { "Name": "Ayr Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ayr Rail Station", "TIPLOC": "AYRR", "CRS": "AYR", "StopAreaCode": "910GAYRR", "AdministrativeAreaRef": "110", "code": "9100AYRR", "NPTG": "ES000201", "ATCO": "619", "CRS_code": "AYR" }, "geometry": { "type": "Point", "coordinates": [ -4.62587561471, 55.458142026179999 ] } },
{ "type": "Feature", "properties": { "Name": "Bache Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bache Rail Station", "TIPLOC": "BACHE", "CRS": "BAC", "StopAreaCode": "910GBACHE", "AdministrativeAreaRef": "110", "code": "9100BACHE", "NPTG": "E0044143", "ATCO": "061", "CRS_code": "BAC" }, "geometry": { "type": "Point", "coordinates": [ -2.89167004578, 53.20878566244 ] } },
{ "type": "Feature", "properties": { "Name": "Burnage Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burnage Rail Station", "TIPLOC": "BAGE", "CRS": "BNA", "StopAreaCode": "910GBAGE", "AdministrativeAreaRef": "110", "code": "9100BAGE", "NPTG": "E0028653", "ATCO": "180", "CRS_code": "BNA" }, "geometry": { "type": "Point", "coordinates": [ -2.21567811439, 53.421166815779998 ] } },
{ "type": "Feature", "properties": { "Name": "Bagshot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bagshot Rail Station", "TIPLOC": "BAGSHOT", "CRS": "BAG", "StopAreaCode": "910GBAGSHOT", "AdministrativeAreaRef": "110", "code": "9100BAGSHOT", "NPTG": "E0025657", "ATCO": "400", "CRS_code": "BAG" }, "geometry": { "type": "Point", "coordinates": [ -0.68866191091, 51.364367519680002 ] } },
{ "type": "Feature", "properties": { "Name": "Baildon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Baildon Rail Station", "TIPLOC": "BAILDON", "CRS": "BLD", "StopAreaCode": "910GBAILDON", "AdministrativeAreaRef": "110", "code": "9100BAILDON", "NPTG": "E0032216", "ATCO": "450", "CRS_code": "BLD" }, "geometry": { "type": "Point", "coordinates": [ -1.75363618902, 53.85022428912 ] } },
{ "type": "Feature", "properties": { "Name": "Balcombe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Balcombe Rail Station", "TIPLOC": "BALCOMB", "CRS": "BAB", "StopAreaCode": "910GBALCOMB", "AdministrativeAreaRef": "110", "code": "9100BALCOMB", "NPTG": "E0052187", "ATCO": "440", "CRS_code": "BAB" }, "geometry": { "type": "Point", "coordinates": [ -0.13693367765, 51.055521656700002 ] } },
{ "type": "Feature", "properties": { "Name": "Baldock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Baldock Rail Station", "TIPLOC": "BALDOCK", "CRS": "BDK", "StopAreaCode": "910GBALDOCK", "AdministrativeAreaRef": "110", "code": "9100BALDOCK", "NPTG": "E0014045", "ATCO": "210", "CRS_code": "BDK" }, "geometry": { "type": "Point", "coordinates": [ -0.18756367372, 51.992871209409998 ] } },
{ "type": "Feature", "properties": { "Name": "Balham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Balham Rail Station", "TIPLOC": "BALHAM", "CRS": "BAL", "StopAreaCode": "910GBALHAM", "AdministrativeAreaRef": "110", "code": "9100BALHAM", "NPTG": "E0034884", "ATCO": "490", "CRS_code": "BAL" }, "geometry": { "type": "Point", "coordinates": [ -0.15242441575, 51.443224872889999 ] } },
{ "type": "Feature", "properties": { "Name": "Baillieston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Baillieston Rail Station", "TIPLOC": "BALISTN", "CRS": "BIO", "StopAreaCode": "910GBALISTN", "AdministrativeAreaRef": "110", "code": "9100BALISTN", "NPTG": "ES000227", "ATCO": "609", "CRS_code": "BIO" }, "geometry": { "type": "Point", "coordinates": [ -4.11369840014, 55.844500992370001 ] } },
{ "type": "Feature", "properties": { "Name": "Balloch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Balloch Rail Station", "TIPLOC": "BALLOCH", "CRS": "BHC", "StopAreaCode": "910GBALLOCH", "AdministrativeAreaRef": "110", "code": "9100BALLOCH", "NPTG": "N0067998", "ATCO": "608", "CRS_code": "BHC" }, "geometry": { "type": "Point", "coordinates": [ -4.5834854062, 56.002933672609998 ] } },
{ "type": "Feature", "properties": { "Name": "Balmossie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Balmossie Rail Station", "TIPLOC": "BALMOSS", "CRS": "BSI", "StopAreaCode": "910GBALMOSS", "AdministrativeAreaRef": "110", "code": "9100BALMOSS", "NPTG": "ES002649", "ATCO": "640", "CRS_code": "BSI" }, "geometry": { "type": "Point", "coordinates": [ -2.83895577579, 56.474565613129997 ] } },
{ "type": "Feature", "properties": { "Name": "Bamford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bamford Rail Station", "TIPLOC": "BAMFORD", "CRS": "BAM", "StopAreaCode": "910GBAMFORD", "AdministrativeAreaRef": "110", "code": "9100BAMFORD", "NPTG": "E0045121", "ATCO": "100", "CRS_code": "BAM" }, "geometry": { "type": "Point", "coordinates": [ -1.68908172623, 53.338999745750002 ] } },
{ "type": "Feature", "properties": { "Name": "Banavie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Banavie Rail Station", "TIPLOC": "BANAVIE", "CRS": "BNV", "StopAreaCode": "910GBANAVIE", "AdministrativeAreaRef": "110", "code": "9100BANAVIE", "NPTG": "N0076371", "ATCO": "670", "CRS_code": "BNV" }, "geometry": { "type": "Point", "coordinates": [ -5.09542558529, 56.843308267170002 ] } },
{ "type": "Feature", "properties": { "Name": "Bangor (Gwynedd) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bangor (Gwynedd) Rail Station", "TIPLOC": "BANGOR", "CRS": "BNG", "StopAreaCode": "910GBANGOR", "AdministrativeAreaRef": "110", "code": "9100BANGOR", "NPTG": "E0054265", "ATCO": "540", "CRS_code": "BNG" }, "geometry": { "type": "Point", "coordinates": [ -4.13587993187, 53.222282572330002 ] } },
{ "type": "Feature", "properties": { "Name": "Banstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Banstead Rail Station", "TIPLOC": "BANSTED", "CRS": "BAD", "StopAreaCode": "910GBANSTED", "AdministrativeAreaRef": "110", "code": "9100BANSTED", "NPTG": "E0025524", "ATCO": "400", "CRS_code": "BAD" }, "geometry": { "type": "Point", "coordinates": [ -0.21315885243, 51.329348845669998 ] } },
{ "type": "Feature", "properties": { "Name": "Barassie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barassie Rail Station", "TIPLOC": "BARASIE", "CRS": "BSS", "StopAreaCode": "910GBARASIE", "AdministrativeAreaRef": "110", "code": "9100BARASIE", "NPTG": "N0068003", "ATCO": "619", "CRS_code": "BSS" }, "geometry": { "type": "Point", "coordinates": [ -4.65113849796, 55.561058707969998 ] } },
{ "type": "Feature", "properties": { "Name": "Bare Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bare Lane Rail Station", "TIPLOC": "BARELA", "CRS": "BAR", "StopAreaCode": "910GBARELA", "AdministrativeAreaRef": "110", "code": "9100BARELA", "NPTG": "E0015937", "ATCO": "250", "CRS_code": "BAR" }, "geometry": { "type": "Point", "coordinates": [ -2.83533041899, 54.074541402329999 ] } },
{ "type": "Feature", "properties": { "Name": "Bargoed Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bargoed Rail Station", "TIPLOC": "BARGOED", "CRS": "BGD", "StopAreaCode": "910GBARGOED", "AdministrativeAreaRef": "110", "code": "9100BARGOED", "NPTG": "E0053973", "ATCO": "554", "CRS_code": "BGD" }, "geometry": { "type": "Point", "coordinates": [ -3.22967955711, 51.692309184629998 ] } },
{ "type": "Feature", "properties": { "Name": "Barking Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barking Rail Station", "TIPLOC": "BARKING", "CRS": "BKG", "StopAreaCode": "910GBARKING", "AdministrativeAreaRef": "110", "code": "9100BARKING", "NPTG": "N0059951", "ATCO": "490", "CRS_code": "BKG" }, "geometry": { "type": "Point", "coordinates": [ 0.08090251386, 51.539494715549999 ] } },
{ "type": "Feature", "properties": { "Name": "Barlaston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barlaston Rail Station", "TIPLOC": "BARLSTN", "CRS": "BRT", "StopAreaCode": "910GBARLSTN", "AdministrativeAreaRef": "110", "code": "9100BARLSTN", "NPTG": "E0051204", "ATCO": "380", "CRS_code": "BRT" }, "geometry": { "type": "Point", "coordinates": [ -2.16811110844, 52.942872159 ] } },
{ "type": "Feature", "properties": { "Name": "Barming Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barming Rail Station", "TIPLOC": "BARMING", "CRS": "BMG", "StopAreaCode": "910GBARMING", "AdministrativeAreaRef": "110", "code": "9100BARMING", "NPTG": "E0047192", "ATCO": "240", "CRS_code": "BMG" }, "geometry": { "type": "Point", "coordinates": [ 0.47895820334, 51.284895199739999 ] } },
{ "type": "Feature", "properties": { "Name": "Barnes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnes Rail Station", "TIPLOC": "BARNES", "CRS": "BNS", "StopAreaCode": "910GBARNES", "AdministrativeAreaRef": "110", "code": "9100BARNES", "NPTG": "E0034751", "ATCO": "490", "CRS_code": "BNS" }, "geometry": { "type": "Point", "coordinates": [ -0.24216421148, 51.467086086259997 ] } },
{ "type": "Feature", "properties": { "Name": "Barrow-in-Furness Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barrow-in-Furness Rail Station", "TIPLOC": "BAROW", "CRS": "BIF", "StopAreaCode": "910GBAROW", "AdministrativeAreaRef": "110", "code": "9100BAROW", "NPTG": "E0055497", "ATCO": "090", "CRS_code": "BIF" }, "geometry": { "type": "Point", "coordinates": [ -3.22612033522, 54.119000141960001 ] } },
{ "type": "Feature", "properties": { "Name": "Barrow upon Soar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barrow upon Soar Rail Station", "TIPLOC": "BAROWOS", "CRS": "BWS", "StopAreaCode": "910GBAROWOS", "AdministrativeAreaRef": "110", "code": "9100BAROWOS", "NPTG": "E0047610", "ATCO": "260", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.14484294012, 52.749335650159999 ] } },
{ "type": "Feature", "properties": { "Name": "Barry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barry Rail Station", "TIPLOC": "BARRY", "CRS": "BRY", "StopAreaCode": "910GBARRY", "AdministrativeAreaRef": "110", "code": "9100BARRY", "NPTG": "E0054751", "ATCO": "572", "CRS_code": "BRY" }, "geometry": { "type": "Point", "coordinates": [ -3.28498436634, 51.396782600599998 ] } },
{ "type": "Feature", "properties": { "Name": "Barry Docks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barry Docks Rail Station", "TIPLOC": "BARRYDK", "CRS": "BYD", "StopAreaCode": "910GBARRYDK", "AdministrativeAreaRef": "110", "code": "9100BARRYDK", "NPTG": "E0054751", "ATCO": "572", "CRS_code": "BYD" }, "geometry": { "type": "Point", "coordinates": [ -3.26070334809, 51.402441655570001 ] } },
{ "type": "Feature", "properties": { "Name": "Barry Island Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barry Island Rail Station", "TIPLOC": "BARRYIS", "CRS": "BYI", "StopAreaCode": "910GBARRYIS", "AdministrativeAreaRef": "110", "code": "9100BARRYIS", "NPTG": "E0054751", "ATCO": "572", "CRS_code": "BYI" }, "geometry": { "type": "Point", "coordinates": [ -3.27336341989, 51.39241342391 ] } },
{ "type": "Feature", "properties": { "Name": "Barrow Haven Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barrow Haven Rail Station", "TIPLOC": "BARWHVN", "CRS": "BAV", "StopAreaCode": "910GBARWHVN", "AdministrativeAreaRef": "110", "code": "9100BARWHVN", "NPTG": "E0039845", "ATCO": "227", "CRS_code": "BAV" }, "geometry": { "type": "Point", "coordinates": [ -0.39295515945, 53.697420918920002 ] } },
{ "type": "Feature", "properties": { "Name": "Basildon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Basildon Rail Station", "TIPLOC": "BASILDN", "CRS": "BSO", "StopAreaCode": "910GBASILDN", "AdministrativeAreaRef": "110", "code": "9100BASILDN", "NPTG": "N0076751", "ATCO": "150", "CRS_code": "BSO" }, "geometry": { "type": "Point", "coordinates": [ 0.4567889653, 51.568106487340003 ] } },
{ "type": "Feature", "properties": { "Name": "Bat & Ball Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bat & Ball Rail Station", "TIPLOC": "BATABAL", "CRS": "BBL", "StopAreaCode": "910GBATABAL", "AdministrativeAreaRef": "110", "code": "9100BATABAL", "NPTG": "N0074762", "ATCO": "240", "CRS_code": "BBL" }, "geometry": { "type": "Point", "coordinates": [ 0.19422757424, 51.289760781200002 ] } },
{ "type": "Feature", "properties": { "Name": "Bath Spa Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bath Spa Rail Station", "TIPLOC": "BATHSPA", "CRS": "BTH", "StopAreaCode": "910GBATHSPA", "AdministrativeAreaRef": "110", "code": "9100BATHSPA", "NPTG": "E0054812", "ATCO": "018", "CRS_code": "BTH" }, "geometry": { "type": "Point", "coordinates": [ -2.35701815017, 51.377686232359999 ] } },
{ "type": "Feature", "properties": { "Name": "Batley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Batley Rail Station", "TIPLOC": "BATLEY", "CRS": "BTL", "StopAreaCode": "910GBATLEY", "AdministrativeAreaRef": "110", "code": "9100BATLEY", "NPTG": "E0032235", "ATCO": "450", "CRS_code": "BTL" }, "geometry": { "type": "Point", "coordinates": [ -1.6229524536, 53.709941340660002 ] } },
{ "type": "Feature", "properties": { "Name": "Battersea Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Battersea Park Rail Station", "TIPLOC": "BATRSPK", "CRS": "BAK", "StopAreaCode": "910GBATRSPK", "AdministrativeAreaRef": "110", "code": "9100BATRSPK", "NPTG": "E0034886", "ATCO": "490", "CRS_code": "BAK" }, "geometry": { "type": "Point", "coordinates": [ -0.14753343958, 51.476959752470002 ] } },
{ "type": "Feature", "properties": { "Name": "Battle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Battle Rail Station", "TIPLOC": "BATTLE", "CRS": "BAT", "StopAreaCode": "910GBATTLE", "AdministrativeAreaRef": "110", "code": "9100BATTLE", "NPTG": "E0046064", "ATCO": "140", "CRS_code": "BAT" }, "geometry": { "type": "Point", "coordinates": [ 0.49470289462, 50.912915574080003 ] } },
{ "type": "Feature", "properties": { "Name": "Bayford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bayford Rail Station", "TIPLOC": "BAYFORD", "CRS": "BAY", "StopAreaCode": "910GBAYFORD", "AdministrativeAreaRef": "110", "code": "9100BAYFORD", "NPTG": "E0046969", "ATCO": "210", "CRS_code": "BAY" }, "geometry": { "type": "Point", "coordinates": [ -0.09560993933, 51.757716429929999 ] } },
{ "type": "Feature", "properties": { "Name": "Birchgrove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birchgrove Rail Station", "TIPLOC": "BCHGRV", "CRS": "BCG", "StopAreaCode": "910GBCHGRV", "AdministrativeAreaRef": "110", "code": "9100BCHGRV", "NPTG": "E0035811", "ATCO": "571", "CRS_code": "BCG" }, "geometry": { "type": "Point", "coordinates": [ -3.20185323367, 51.521556191089999 ] } },
{ "type": "Feature", "properties": { "Name": "Beckenham Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beckenham Hill Rail Station", "TIPLOC": "BCKNHMH", "CRS": "BEC", "StopAreaCode": "910GBCKNHMH", "AdministrativeAreaRef": "110", "code": "9100BCKNHMH", "NPTG": "E0034673", "ATCO": "490", "CRS_code": "BEC" }, "geometry": { "type": "Point", "coordinates": [ -0.01595103016, 51.424582548629999 ] } },
{ "type": "Feature", "properties": { "Name": "Beckenham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beckenham Junction Rail Station", "TIPLOC": "BCKNHMJ", "CRS": "BKJ", "StopAreaCode": "910GBCKNHMJ", "AdministrativeAreaRef": "110", "code": "9100BCKNHMJ", "NPTG": "E0034069", "ATCO": "490", "CRS_code": "BKJ" }, "geometry": { "type": "Point", "coordinates": [ -0.02581274155, 51.411035106969997 ] } },
{ "type": "Feature", "properties": { "Name": "Beckenham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beckenham Junction Rail Station", "TIPLOC": "BCKNMJC", "CRS": "BKJ", "StopAreaCode": "910GBCKNMJC", "AdministrativeAreaRef": "110", "code": "9100BCKNMJC", "NPTG": "E0034069", "ATCO": "490", "CRS_code": "BKJ" }, "geometry": { "type": "Point", "coordinates": [ -0.02602248016, 51.411173531910002 ] } },
{ "type": "Feature", "properties": { "Name": "Blackwater Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackwater Rail Station", "TIPLOC": "BCKWATR", "CRS": "BAW", "StopAreaCode": "910GBCKWATR", "AdministrativeAreaRef": "110", "code": "9100BCKWATR", "NPTG": "E0012972", "ATCO": "190", "CRS_code": "BAW" }, "geometry": { "type": "Point", "coordinates": [ -0.77674093582, 51.331581581199998 ] } },
{ "type": "Feature", "properties": { "Name": "Buckley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Buckley Rail Station", "TIPLOC": "BCKY", "CRS": "BCK", "StopAreaCode": "910GBCKY", "AdministrativeAreaRef": "110", "code": "9100BCKY", "NPTG": "E0054229", "ATCO": "513", "CRS_code": "BCK" }, "geometry": { "type": "Point", "coordinates": [ -3.05592567548, 53.163035799630002 ] } },
{ "type": "Feature", "properties": { "Name": "Birchington-on-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birchington-on-Sea Rail Station", "TIPLOC": "BCNGNOS", "CRS": "BCH", "StopAreaCode": "910GBCNGNOS", "AdministrativeAreaRef": "110", "code": "9100BCNGNOS", "NPTG": "E0047329", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.30140859632, 51.377492594910002 ] } },
{ "type": "Feature", "properties": { "Name": "Beaconsfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beaconsfield Rail Station", "TIPLOC": "BCNSFLD", "CRS": "BCF", "StopAreaCode": "910GBCNSFLD", "AdministrativeAreaRef": "110", "code": "9100BCNSFLD", "NPTG": "E0044070", "ATCO": "040", "CRS_code": "BCF" }, "geometry": { "type": "Point", "coordinates": [ -0.64382219785, 51.611291237350002 ] } },
{ "type": "Feature", "properties": { "Name": "Bicester North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bicester North Rail Station", "TIPLOC": "BCSTN", "CRS": "BCS", "StopAreaCode": "910GBCSTN", "AdministrativeAreaRef": "110", "code": "9100BCSTN", "NPTG": "E0050254", "ATCO": "340", "CRS_code": "BCS" }, "geometry": { "type": "Point", "coordinates": [ -1.15038340304, 51.903482762540001 ] } },
{ "type": "Feature", "properties": { "Name": "Bicester Village Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bicester Village Rail Station", "TIPLOC": "BCSTRTN", "CRS": "BIT", "StopAreaCode": "910GBCSTRTN", "AdministrativeAreaRef": "110", "code": "9100BCSTRTN", "NPTG": "E0050254", "ATCO": "340", "CRS_code": "BIT" }, "geometry": { "type": "Point", "coordinates": [ -1.14876413306, 51.893023424399999 ] } },
{ "type": "Feature", "properties": { "Name": "Bricket Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bricket Wood Rail Station", "TIPLOC": "BCWD", "CRS": "BWO", "StopAreaCode": "910GBCWD", "AdministrativeAreaRef": "110", "code": "9100BCWD", "NPTG": "E0014165", "ATCO": "210", "CRS_code": "BWO" }, "geometry": { "type": "Point", "coordinates": [ -0.35911496191, 51.705427891109998 ] } },
{ "type": "Feature", "properties": { "Name": "Bedhampton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bedhampton Rail Station", "TIPLOC": "BDHMPTN", "CRS": "BDH", "StopAreaCode": "910GBDHMPTN", "AdministrativeAreaRef": "110", "code": "9100BDHMPTN", "NPTG": "E0013031", "ATCO": "190", "CRS_code": "BDH" }, "geometry": { "type": "Point", "coordinates": [ -0.99582833048, 50.853956723890001 ] } },
{ "type": "Feature", "properties": { "Name": "Bedminster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bedminster Rail Station", "TIPLOC": "BDMNSTR", "CRS": "BMT", "StopAreaCode": "910GBDMNSTR", "AdministrativeAreaRef": "110", "code": "9100BDMNSTR", "NPTG": "E0035570", "ATCO": "010", "CRS_code": "BMT" }, "geometry": { "type": "Point", "coordinates": [ -2.594148945, 51.440087883209998 ] } },
{ "type": "Feature", "properties": { "Name": "Bidston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bidston Rail Station", "TIPLOC": "BDSTON", "CRS": "BID", "StopAreaCode": "910GBDSTON", "AdministrativeAreaRef": "110", "code": "9100BDSTON", "NPTG": "E0029611", "ATCO": "280", "CRS_code": "BID" }, "geometry": { "type": "Point", "coordinates": [ -3.07856057923, 53.409136532010002 ] } },
{ "type": "Feature", "properties": { "Name": "Bearley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bearley Rail Station", "TIPLOC": "BEARLEY", "CRS": "BER", "StopAreaCode": "910GBEARLEY", "AdministrativeAreaRef": "110", "code": "9100BEARLEY", "NPTG": "E0051913", "ATCO": "420", "CRS_code": "BER" }, "geometry": { "type": "Point", "coordinates": [ -1.75025528142, 52.244410419429997 ] } },
{ "type": "Feature", "properties": { "Name": "Beasdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beasdale Rail Station", "TIPLOC": "BEASDAL", "CRS": "BSL", "StopAreaCode": "910GBEASDAL", "AdministrativeAreaRef": "110", "code": "9100BEASDAL", "NPTG": "N0078880", "ATCO": "670", "CRS_code": "BSL" }, "geometry": { "type": "Point", "coordinates": [ -5.76380147353, 56.899553813339999 ] } },
{ "type": "Feature", "properties": { "Name": "Beauly Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beauly Rail Station", "TIPLOC": "BEAULY", "CRS": "BEL", "StopAreaCode": "910GBEAULY", "AdministrativeAreaRef": "110", "code": "9100BEAULY", "NPTG": "ES000322", "ATCO": "670", "CRS_code": "BEL" }, "geometry": { "type": "Point", "coordinates": [ -4.46986577748, 57.47828254385 ] } },
{ "type": "Feature", "properties": { "Name": "Bebington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bebington Rail Station", "TIPLOC": "BEBNGTN", "CRS": "BEB", "StopAreaCode": "910GBEBNGTN", "AdministrativeAreaRef": "110", "code": "9100BEBNGTN", "NPTG": "E0029606", "ATCO": "280", "CRS_code": "BEB" }, "geometry": { "type": "Point", "coordinates": [ -3.00363467306, 53.357653858939997 ] } },
{ "type": "Feature", "properties": { "Name": "Beccles Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beccles Rail Station", "TIPLOC": "BECCLES", "CRS": "BCC", "StopAreaCode": "910GBECCLES", "AdministrativeAreaRef": "110", "code": "9100BECCLES", "NPTG": "E0051699", "ATCO": "390", "CRS_code": "BCC" }, "geometry": { "type": "Point", "coordinates": [ 1.56949356787, 52.458522500080001 ] } },
{ "type": "Feature", "properties": { "Name": "Bedford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bedford Rail Station", "TIPLOC": "BEDFDM", "CRS": "BDM", "StopAreaCode": "910GBEDFDM", "AdministrativeAreaRef": "110", "code": "9100BEDFDM", "NPTG": "E0057294", "ATCO": "020", "CRS_code": "BDM" }, "geometry": { "type": "Point", "coordinates": [ -0.47944229968, 52.136187361029997 ] } },
{ "type": "Feature", "properties": { "Name": "Bedworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bedworth Rail Station", "TIPLOC": "BEDWRTH", "CRS": "BEH", "StopAreaCode": "910GBEDWRTH", "AdministrativeAreaRef": "110", "code": "9100BEDWRTH", "NPTG": "E0056772", "ATCO": "420", "CRS_code": "BEH" }, "geometry": { "type": "Point", "coordinates": [ -1.46739207733, 52.479296699839999 ] } },
{ "type": "Feature", "properties": { "Name": "Bedwyn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bedwyn Rail Station", "TIPLOC": "BEDYN", "CRS": "BDW", "StopAreaCode": "910GBEDYN", "AdministrativeAreaRef": "110", "code": "9100BEDYN", "NPTG": "N0060590", "ATCO": "460", "CRS_code": "BDW" }, "geometry": { "type": "Point", "coordinates": [ -1.59878609614, 51.37964003023 ] } },
{ "type": "Feature", "properties": { "Name": "Bekesbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bekesbourne Rail Station", "TIPLOC": "BEKSBRN", "CRS": "BKS", "StopAreaCode": "910GBEKSBRN", "AdministrativeAreaRef": "110", "code": "9100BEKSBRN", "NPTG": "E0014549", "ATCO": "240", "CRS_code": "BKS" }, "geometry": { "type": "Point", "coordinates": [ 1.13670784046, 51.261357559170001 ] } },
{ "type": "Feature", "properties": { "Name": "Belmont Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Belmont Rail Station", "TIPLOC": "BELM", "CRS": "BLM", "StopAreaCode": "910GBELM", "AdministrativeAreaRef": "110", "code": "9100BELM", "NPTG": "E0034813", "ATCO": "490", "CRS_code": "BLM" }, "geometry": { "type": "Point", "coordinates": [ -0.19885504531, 51.34381479967 ] } },
{ "type": "Feature", "properties": { "Name": "Bellingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bellingham Rail Station", "TIPLOC": "BELNGHM", "CRS": "BGM", "StopAreaCode": "910GBELNGHM", "AdministrativeAreaRef": "110", "code": "9100BELNGHM", "NPTG": "E0034654", "ATCO": "490", "CRS_code": "BGM" }, "geometry": { "type": "Point", "coordinates": [ -0.01933072445, 51.432913058510003 ] } },
{ "type": "Feature", "properties": { "Name": "Belper Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Belper Rail Station", "TIPLOC": "BELPER", "CRS": "BLP", "StopAreaCode": "910GBELPER", "AdministrativeAreaRef": "110", "code": "9100BELPER", "NPTG": "E0044948", "ATCO": "100", "CRS_code": "BLP" }, "geometry": { "type": "Point", "coordinates": [ -1.48251034169, 53.023758390719998 ] } },
{ "type": "Feature", "properties": { "Name": "Belvedere Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Belvedere Rail Station", "TIPLOC": "BELVEDR", "CRS": "BVD", "StopAreaCode": "910GBELVEDR", "AdministrativeAreaRef": "110", "code": "9100BELVEDR", "NPTG": "E0033998", "ATCO": "490", "CRS_code": "BVD" }, "geometry": { "type": "Point", "coordinates": [ 0.15228619059, 51.492118200249998 ] } },
{ "type": "Feature", "properties": { "Name": "Bempton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bempton Rail Station", "TIPLOC": "BEMPTON", "CRS": "BEM", "StopAreaCode": "910GBEMPTON", "AdministrativeAreaRef": "110", "code": "9100BEMPTON", "NPTG": "E0052996", "ATCO": "220", "CRS_code": "BEM" }, "geometry": { "type": "Point", "coordinates": [ -0.18045676255, 54.127659353779997 ] } },
{ "type": "Feature", "properties": { "Name": "Benfleet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Benfleet Rail Station", "TIPLOC": "BENFLET", "CRS": "BEF", "StopAreaCode": "910GBENFLET", "AdministrativeAreaRef": "110", "code": "9100BENFLET", "NPTG": "E0011153", "ATCO": "150", "CRS_code": "BEF" }, "geometry": { "type": "Point", "coordinates": [ 0.56171347084, 51.543945065720003 ] } },
{ "type": "Feature", "properties": { "Name": "Bere Alston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bere Alston Rail Station", "TIPLOC": "BEREALS", "CRS": "BAS", "StopAreaCode": "910GBEREALS", "AdministrativeAreaRef": "110", "code": "9100BEREALS", "NPTG": "E0008942", "ATCO": "110", "CRS_code": "BAS" }, "geometry": { "type": "Point", "coordinates": [ -4.20035447755, 50.485593636490002 ] } },
{ "type": "Feature", "properties": { "Name": "Bere Ferrers Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bere Ferrers Rail Station", "TIPLOC": "BEREFRS", "CRS": "BFE", "StopAreaCode": "910GBEREFRS", "AdministrativeAreaRef": "110", "code": "9100BEREFRS", "NPTG": "E0045585", "ATCO": "110", "CRS_code": "BFE" }, "geometry": { "type": "Point", "coordinates": [ -4.18143422984, 50.451276943629999 ] } },
{ "type": "Feature", "properties": { "Name": "Berkhamsted Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Berkhamsted Rail Station", "TIPLOC": "BERKHMD", "CRS": "BKM", "StopAreaCode": "910GBERKHMD", "AdministrativeAreaRef": "110", "code": "9100BERKHMD", "NPTG": "E0046949", "ATCO": "210", "CRS_code": "BKM" }, "geometry": { "type": "Point", "coordinates": [ -0.56201289972, 51.763133854880003 ] } },
{ "type": "Feature", "properties": { "Name": "Bermuda Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bermuda Park Rail Station", "TIPLOC": "BERMPRK", "CRS": "BEP", "StopAreaCode": "910GBERMPRK", "AdministrativeAreaRef": "110", "code": "9100BERMPRK", "NPTG": "E0026040", "ATCO": "420", "CRS_code": "BEP" }, "geometry": { "type": "Point", "coordinates": [ -1.47217759826, 52.50143363291 ] } },
{ "type": "Feature", "properties": { "Name": "Berry Brow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Berry Brow Rail Station", "TIPLOC": "BERRYB", "CRS": "BBW", "StopAreaCode": "910GBERRYB", "AdministrativeAreaRef": "110", "code": "9100BERRYB", "NPTG": "E0032266", "ATCO": "450", "CRS_code": "BBW" }, "geometry": { "type": "Point", "coordinates": [ -1.7934320772, 53.621040701010003 ] } },
{ "type": "Feature", "properties": { "Name": "Berwick (Sussex) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Berwick (Sussex) Rail Station", "TIPLOC": "BERWICK", "CRS": "BRK", "StopAreaCode": "910GBERWICK", "AdministrativeAreaRef": "110", "code": "9100BERWICK", "NPTG": "E0046099", "ATCO": "140", "CRS_code": "BRK" }, "geometry": { "type": "Point", "coordinates": [ 0.16601770049, 50.84037829148 ] } },
{ "type": "Feature", "properties": { "Name": "Bescar Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bescar Lane Rail Station", "TIPLOC": "BESCRLA", "CRS": "BES", "StopAreaCode": "910GBESCRLA", "AdministrativeAreaRef": "110", "code": "9100BESCRLA", "NPTG": "E0016465", "ATCO": "250", "CRS_code": "BES" }, "geometry": { "type": "Point", "coordinates": [ -2.91461053035, 53.623852268199997 ] } },
{ "type": "Feature", "properties": { "Name": "Bedford St Johns Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bedford St Johns Rail Station", "TIPLOC": "BESJOHN", "CRS": "BSJ", "StopAreaCode": "910GBESJOHN", "AdministrativeAreaRef": "110", "code": "9100BESJOHN", "NPTG": "E0057294", "ATCO": "020", "CRS_code": "BSJ" }, "geometry": { "type": "Point", "coordinates": [ -0.46750094804, 52.129478151800001 ] } },
{ "type": "Feature", "properties": { "Name": "Beeston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beeston Rail Station", "TIPLOC": "BESTON", "CRS": "BEE", "StopAreaCode": "910GBESTON", "AdministrativeAreaRef": "110", "code": "9100BESTON", "NPTG": "E0020501", "ATCO": "330", "CRS_code": "BEE" }, "geometry": { "type": "Point", "coordinates": [ -1.20765788907, 52.920754809899996 ] } },
{ "type": "Feature", "properties": { "Name": "Betws-y-Coed Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Betws-y-Coed Rail Station", "TIPLOC": "BETSYCD", "CRS": "BYC", "StopAreaCode": "910GBETSYCD", "AdministrativeAreaRef": "110", "code": "9100BETSYCD", "NPTG": "E0054154", "ATCO": "513", "CRS_code": "BYC" }, "geometry": { "type": "Point", "coordinates": [ -3.80086133617, 53.09206645431 ] } },
{ "type": "Feature", "properties": { "Name": "Beverley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beverley Rail Station", "TIPLOC": "BEVERLY", "CRS": "BEV", "StopAreaCode": "910GBEVERLY", "AdministrativeAreaRef": "110", "code": "9100BEVERLY", "NPTG": "E0036870", "ATCO": "220", "CRS_code": "BEV" }, "geometry": { "type": "Point", "coordinates": [ -0.42298004647, 53.842273509370003 ] } },
{ "type": "Feature", "properties": { "Name": "Bexhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bexhill Rail Station", "TIPLOC": "BEXHILL", "CRS": "BEX", "StopAreaCode": "910GBEXHILL", "AdministrativeAreaRef": "110", "code": "9100BEXHILL", "NPTG": "E0010587", "ATCO": "140", "CRS_code": "BEX" }, "geometry": { "type": "Point", "coordinates": [ 0.47701670807, 50.841042426080001 ] } },
{ "type": "Feature", "properties": { "Name": "Bexley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bexley Rail Station", "TIPLOC": "BEXLEY", "CRS": "BXY", "StopAreaCode": "910GBEXLEY", "AdministrativeAreaRef": "110", "code": "9100BEXLEY", "NPTG": "N0060491", "ATCO": "490", "CRS_code": "BXY" }, "geometry": { "type": "Point", "coordinates": [ 0.1479025861, 51.440219478480003 ] } },
{ "type": "Feature", "properties": { "Name": "Baglan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Baglan Rail Station", "TIPLOC": "BGLAN", "CRS": "BAJ", "StopAreaCode": "910GBGLAN", "AdministrativeAreaRef": "110", "code": "9100BGLAN", "NPTG": "E0054410", "ATCO": "582", "CRS_code": "BAJ" }, "geometry": { "type": "Point", "coordinates": [ -3.81113575452, 51.615540751499999 ] } },
{ "type": "Feature", "properties": { "Name": "Bridge of Allan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bridge of Allan Rail Station", "TIPLOC": "BGOALAN", "CRS": "BEA", "StopAreaCode": "910GBGOALAN", "AdministrativeAreaRef": "110", "code": "9100BGOALAN", "NPTG": "N0071776", "ATCO": "660", "CRS_code": "BEA" }, "geometry": { "type": "Point", "coordinates": [ -3.95722851142, 56.15663513682 ] } },
{ "type": "Feature", "properties": { "Name": "Barnt Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnt Green Rail Station", "TIPLOC": "BGRN", "CRS": "BTG", "StopAreaCode": "910GBGRN", "AdministrativeAreaRef": "110", "code": "9100BGRN", "NPTG": "E0027540", "ATCO": "200", "CRS_code": "BTG" }, "geometry": { "type": "Point", "coordinates": [ -1.99246649605, 52.361088267619998 ] } },
{ "type": "Feature", "properties": { "Name": "Birmingham International Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birmingham International Rail Station", "TIPLOC": "BHAMINT", "CRS": "BHI", "StopAreaCode": "910GBHAMINT", "AdministrativeAreaRef": "110", "code": "9100BHAMINT", "NPTG": "N0072566", "ATCO": "430", "CRS_code": "BHI" }, "geometry": { "type": "Point", "coordinates": [ -1.72585666561, 52.450806971920002 ] } },
{ "type": "Feature", "properties": { "Name": "Jewellery Quarter Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Jewellery Quarter Rail Station", "TIPLOC": "BHAMJEW", "CRS": "JEQ", "StopAreaCode": "910GBHAMJEW", "AdministrativeAreaRef": "110", "code": "9100BHAMJEW", "NPTG": "N0072557", "ATCO": "430", "CRS_code": "JEQ" }, "geometry": { "type": "Point", "coordinates": [ -1.91321274578, 52.489434645359999 ] } },
{ "type": "Feature", "properties": { "Name": "Birmingham Moor Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birmingham Moor Street Rail Station", "TIPLOC": "BHAMMRS", "CRS": "BMO", "StopAreaCode": "910GBHAMMRS", "AdministrativeAreaRef": "110", "code": "9100BHAMMRS", "NPTG": "E0057937", "ATCO": "430", "CRS_code": "BMO" }, "geometry": { "type": "Point", "coordinates": [ -1.89247250732, 52.479079213799999 ] } },
{ "type": "Feature", "properties": { "Name": "Birmingham New Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birmingham New Street Rail Station", "TIPLOC": "BHAMNWS", "CRS": "BHM", "StopAreaCode": "910GBHAMNWS", "AdministrativeAreaRef": "110", "code": "9100BHAMNWS", "NPTG": "E0057937", "ATCO": "430", "CRS_code": "BHM" }, "geometry": { "type": "Point", "coordinates": [ -1.900205346, 52.477818386780001 ] } },
{ "type": "Feature", "properties": { "Name": "Birmingham Snow Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birmingham Snow Hill Rail Station", "TIPLOC": "BHAMSNH", "CRS": "BSW", "StopAreaCode": "910GBHAMSNH", "AdministrativeAreaRef": "110", "code": "9100BHAMSNH", "NPTG": "E0057937", "ATCO": "430", "CRS_code": "BSW" }, "geometry": { "type": "Point", "coordinates": [ -1.89908845865, 52.483355257349999 ] } },
{ "type": "Feature", "properties": { "Name": "Bush Hill Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bush Hill Park Rail Station", "TIPLOC": "BHILLPK", "CRS": "BHK", "StopAreaCode": "910GBHILLPK", "AdministrativeAreaRef": "110", "code": "9100BHILLPK", "NPTG": "E0034288", "ATCO": "490", "CRS_code": "BHK" }, "geometry": { "type": "Point", "coordinates": [ -0.06922103243, 51.641518539289997 ] } },
{ "type": "Feature", "properties": { "Name": "Bickley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bickley Rail Station", "TIPLOC": "BICKLEY", "CRS": "BKL", "StopAreaCode": "910GBICKLEY", "AdministrativeAreaRef": "110", "code": "9100BICKLEY", "NPTG": "E0034072", "ATCO": "490", "CRS_code": "BKL" }, "geometry": { "type": "Point", "coordinates": [ 0.04524062672, 51.400104214519999 ] } },
{ "type": "Feature", "properties": { "Name": "Biggleswade Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Biggleswade Rail Station", "TIPLOC": "BIGLSWD", "CRS": "BIW", "StopAreaCode": "910GBIGLSWD", "AdministrativeAreaRef": "110", "code": "9100BIGLSWD", "NPTG": "E0043876", "ATCO": "021", "CRS_code": "BIW" }, "geometry": { "type": "Point", "coordinates": [ -0.26118711415, 52.084679848619999 ] } },
{ "type": "Feature", "properties": { "Name": "Bilbrook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bilbrook Rail Station", "TIPLOC": "BILBROK", "CRS": "BBK", "StopAreaCode": "910GBILBROK", "AdministrativeAreaRef": "110", "code": "9100BILBROK", "NPTG": "E0051174", "ATCO": "380", "CRS_code": "BBK" }, "geometry": { "type": "Point", "coordinates": [ -2.18608773615, 52.623717836410002 ] } },
{ "type": "Feature", "properties": { "Name": "Billericay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Billericay Rail Station", "TIPLOC": "BILERCY", "CRS": "BIC", "StopAreaCode": "910GBILERCY", "AdministrativeAreaRef": "110", "code": "9100BILERCY", "NPTG": "E0055765", "ATCO": "150", "CRS_code": "BIC" }, "geometry": { "type": "Point", "coordinates": [ 0.41862972179, 51.628883660539998 ] } },
{ "type": "Feature", "properties": { "Name": "Billingshurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Billingshurst Rail Station", "TIPLOC": "BILSHST", "CRS": "BIG", "StopAreaCode": "910GBILSHST", "AdministrativeAreaRef": "110", "code": "9100BILSHST", "NPTG": "E0052155", "ATCO": "440", "CRS_code": "BIG" }, "geometry": { "type": "Point", "coordinates": [ -0.45030215378, 51.015204476519997 ] } },
{ "type": "Feature", "properties": { "Name": "Bingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bingham Rail Station", "TIPLOC": "BINGHAM", "CRS": "BIN", "StopAreaCode": "910GBINGHAM", "AdministrativeAreaRef": "110", "code": "9100BINGHAM", "NPTG": "E0050192", "ATCO": "330", "CRS_code": "BIN" }, "geometry": { "type": "Point", "coordinates": [ -0.95154325118, 52.954190664 ] } },
{ "type": "Feature", "properties": { "Name": "Birchwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birchwood Rail Station", "TIPLOC": "BIRCHWD", "CRS": "BWD", "StopAreaCode": "910GBIRCHWD", "AdministrativeAreaRef": "110", "code": "9100BIRCHWD", "NPTG": "E0053799", "ATCO": "069", "CRS_code": "BWD" }, "geometry": { "type": "Point", "coordinates": [ -2.525307884, 53.41271814401 ] } },
{ "type": "Feature", "properties": { "Name": "Birkbeck Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birkbeck Rail Station", "TIPLOC": "BIRKBCK", "CRS": "BIK", "StopAreaCode": "910GBIRKBCK", "AdministrativeAreaRef": "110", "code": "9100BIRKBCK", "NPTG": "E0034067", "ATCO": "490", "CRS_code": "BIK" }, "geometry": { "type": "Point", "coordinates": [ -0.05573865815, 51.403891598709997 ] } },
{ "type": "Feature", "properties": { "Name": "Bishopton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bishopton Rail Station", "TIPLOC": "BISHPTN", "CRS": "BPT", "StopAreaCode": "910GBISHPTN", "AdministrativeAreaRef": "110", "code": "9100BISHPTN", "NPTG": "ES000366", "ATCO": "614", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.50048646597, 55.902263982960001 ] } },
{ "type": "Feature", "properties": { "Name": "Burntisland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burntisland Rail Station", "TIPLOC": "BISLND", "CRS": "BTS", "StopAreaCode": "910GBISLND", "AdministrativeAreaRef": "110", "code": "9100BISLND", "NPTG": "ES000511", "ATCO": "650", "CRS_code": "BTS" }, "geometry": { "type": "Point", "coordinates": [ -3.23319774528, 56.057080657669999 ] } },
{ "type": "Feature", "properties": { "Name": "Bitterne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bitterne Rail Station", "TIPLOC": "BITERNE", "CRS": "BTE", "StopAreaCode": "910GBITERNE", "AdministrativeAreaRef": "110", "code": "9100BITERNE", "NPTG": "E0041975", "ATCO": "198", "CRS_code": "BTE" }, "geometry": { "type": "Point", "coordinates": [ -1.37699947064, 50.918220823440002 ] } },
{ "type": "Feature", "properties": { "Name": "Birkdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birkdale Rail Station", "TIPLOC": "BKDLE", "CRS": "BDL", "StopAreaCode": "910GBKDLE", "AdministrativeAreaRef": "110", "code": "9100BKDLE", "NPTG": "N0071047", "ATCO": "280", "CRS_code": "BDL" }, "geometry": { "type": "Point", "coordinates": [ -3.01444960865, 53.634049582289997 ] } },
{ "type": "Feature", "properties": { "Name": "Brockholes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brockholes Rail Station", "TIPLOC": "BKHLS", "CRS": "BHS", "StopAreaCode": "910GBKHLS", "AdministrativeAreaRef": "110", "code": "9100BKHLS", "NPTG": "E0032354", "ATCO": "450", "CRS_code": "BHS" }, "geometry": { "type": "Point", "coordinates": [ -1.76969121826, 53.596971805979997 ] } },
{ "type": "Feature", "properties": { "Name": "Bucknell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bucknell Rail Station", "TIPLOC": "BKNELL", "CRS": "BUK", "StopAreaCode": "910GBKNELL", "AdministrativeAreaRef": "110", "code": "9100BKNELL", "NPTG": "E0050717", "ATCO": "350", "CRS_code": "BUK" }, "geometry": { "type": "Point", "coordinates": [ -2.9473778367, 52.35737892022 ] } },
{ "type": "Feature", "properties": { "Name": "Brockenhurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brockenhurst Rail Station", "TIPLOC": "BKNHRST", "CRS": "BCU", "StopAreaCode": "910GBKNHRST", "AdministrativeAreaRef": "110", "code": "9100BKNHRST", "NPTG": "E0046816", "ATCO": "190", "CRS_code": "BCU" }, "geometry": { "type": "Point", "coordinates": [ -1.57353100271, 50.816840952290001 ] } },
{ "type": "Feature", "properties": { "Name": "Berkswell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Berkswell Rail Station", "TIPLOC": "BKSWELL", "CRS": "BKW", "StopAreaCode": "910GBKSWELL", "AdministrativeAreaRef": "110", "code": "9100BKSWELL", "NPTG": "E0052807", "ATCO": "430", "CRS_code": "BKW" }, "geometry": { "type": "Point", "coordinates": [ -1.6428402938, 52.395880928170001 ] } },
{ "type": "Feature", "properties": { "Name": "Blaenau Ffestiniog Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blaenau Ffestiniog Rail Station", "TIPLOC": "BLAENAU", "CRS": "BFF", "StopAreaCode": "910GBLAENAU", "AdministrativeAreaRef": "110", "code": "9100BLAENAU", "NPTG": "E0054958", "ATCO": "512", "CRS_code": "BFF" }, "geometry": { "type": "Point", "coordinates": [ -3.9385949296, 52.994548370719997 ] } },
{ "type": "Feature", "properties": { "Name": "Blairhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blairhill Rail Station", "TIPLOC": "BLAIRHL", "CRS": "BAI", "StopAreaCode": "910GBLAIRHL", "AdministrativeAreaRef": "110", "code": "9100BLAIRHL", "NPTG": "N0068016", "ATCO": "616", "CRS_code": "BAI" }, "geometry": { "type": "Point", "coordinates": [ -4.04329031236, 55.866450814849998 ] } },
{ "type": "Feature", "properties": { "Name": "Blakedown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blakedown Rail Station", "TIPLOC": "BLAKEDN", "CRS": "BKD", "StopAreaCode": "910GBLAKEDN", "AdministrativeAreaRef": "110", "code": "9100BLAKEDN", "NPTG": "E0028230", "ATCO": "200", "CRS_code": "BKD" }, "geometry": { "type": "Point", "coordinates": [ -2.17686538073, 52.406400789759999 ] } },
{ "type": "Feature", "properties": { "Name": "Blantyre Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blantyre Rail Station", "TIPLOC": "BLANTYR", "CRS": "BLT", "StopAreaCode": "910GBLANTYR", "AdministrativeAreaRef": "110", "code": "9100BLANTYR", "NPTG": "ES000394", "ATCO": "615", "CRS_code": "BLT" }, "geometry": { "type": "Point", "coordinates": [ -4.08697074349, 55.797325600800001 ] } },
{ "type": "Feature", "properties": { "Name": "Blair Atholl Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blair Atholl Rail Station", "TIPLOC": "BLARATH", "CRS": "BLA", "StopAreaCode": "910GBLARATH", "AdministrativeAreaRef": "110", "code": "9100BLARATH", "NPTG": "ES000385", "ATCO": "648", "CRS_code": "BLA" }, "geometry": { "type": "Point", "coordinates": [ -3.85022795996, 56.7655459781 ] } },
{ "type": "Feature", "properties": { "Name": "Blaydon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blaydon Rail Station", "TIPLOC": "BLAYDON", "CRS": "BLO", "StopAreaCode": "910GBLAYDON", "AdministrativeAreaRef": "110", "code": "9100BLAYDON", "NPTG": "E0030774", "ATCO": "410", "CRS_code": "BLO" }, "geometry": { "type": "Point", "coordinates": [ -1.71258069635, 54.965788515610001 ] } },
{ "type": "Feature", "properties": { "Name": "Blackhorse Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackhorse Road Rail Station", "TIPLOC": "BLCHSRD", "CRS": "BHO", "StopAreaCode": "910GBLCHSRD", "AdministrativeAreaRef": "110", "code": "9100BLCHSRD", "NPTG": "N0077632", "ATCO": "490", "CRS_code": "BHO" }, "geometry": { "type": "Point", "coordinates": [ -0.04123566031, 51.58660548252 ] } },
{ "type": "Feature", "properties": { "Name": "Blackpool Pleasure Beach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackpool Pleasure Beach Rail Station", "TIPLOC": "BLCKPB", "CRS": "BPB", "StopAreaCode": "910GBLCKPB", "AdministrativeAreaRef": "110", "code": "9100BLCKPB", "NPTG": "N0079376", "ATCO": "259", "CRS_code": "BPB" }, "geometry": { "type": "Point", "coordinates": [ -3.05387595473, 53.787952233429998 ] } },
{ "type": "Feature", "properties": { "Name": "Blackpool North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackpool North Rail Station", "TIPLOC": "BLCKPLN", "CRS": "BPN", "StopAreaCode": "910GBLCKPLN", "AdministrativeAreaRef": "110", "code": "9100BLCKPLN", "NPTG": "E0057144", "ATCO": "259", "CRS_code": "BPN" }, "geometry": { "type": "Point", "coordinates": [ -3.04927465351, 53.821914814800003 ] } },
{ "type": "Feature", "properties": { "Name": "Blackpool South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackpool South Rail Station", "TIPLOC": "BLCKS", "CRS": "BPS", "StopAreaCode": "910GBLCKS", "AdministrativeAreaRef": "110", "code": "9100BLCKS", "NPTG": "E0057144", "ATCO": "259", "CRS_code": "BPS" }, "geometry": { "type": "Point", "coordinates": [ -3.04893781212, 53.798700747390001 ] } },
{ "type": "Feature", "properties": { "Name": "Bleasby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bleasby Rail Station", "TIPLOC": "BLEASBY", "CRS": "BSB", "StopAreaCode": "910GBLEASBY", "AdministrativeAreaRef": "110", "code": "9100BLEASBY", "NPTG": "E0050115", "ATCO": "330", "CRS_code": "BSB" }, "geometry": { "type": "Point", "coordinates": [ -0.94368743637, 53.041365060730001 ] } },
{ "type": "Feature", "properties": { "Name": "London Blackfriars Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Blackfriars Rail Station", "TIPLOC": "BLFR", "CRS": "BFR", "StopAreaCode": "910GBLFR", "AdministrativeAreaRef": "110", "code": "9100BLFR", "NPTG": "N0077631", "ATCO": "490", "CRS_code": "BFR" }, "geometry": { "type": "Point", "coordinates": [ -0.10333199189, 51.511809729399999 ] } },
{ "type": "Feature", "properties": { "Name": "Bellgrove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bellgrove Rail Station", "TIPLOC": "BLGRVE", "CRS": "BLG", "StopAreaCode": "910GBLGRVE", "AdministrativeAreaRef": "110", "code": "9100BLGRVE", "NPTG": "N0076059", "ATCO": "609", "CRS_code": "BLG" }, "geometry": { "type": "Point", "coordinates": [ -4.22437393276, 55.856704218849998 ] } },
{ "type": "Feature", "properties": { "Name": "Beaulieu Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beaulieu Road Rail Station", "TIPLOC": "BLIEURD", "CRS": "BEU", "StopAreaCode": "910GBLIEURD", "AdministrativeAreaRef": "110", "code": "9100BLIEURD", "NPTG": "E0046811", "ATCO": "190", "CRS_code": "BEU" }, "geometry": { "type": "Point", "coordinates": [ -1.50474946667, 50.855048594899998 ] } },
{ "type": "Feature", "properties": { "Name": "Blackburn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackburn Rail Station", "TIPLOC": "BLKB", "CRS": "BBN", "StopAreaCode": "910GBLKB", "AdministrativeAreaRef": "110", "code": "9100BLKB", "NPTG": "E0057142", "ATCO": "258", "CRS_code": "BBN" }, "geometry": { "type": "Point", "coordinates": [ -2.47912205167, 53.746516076330003 ] } },
{ "type": "Feature", "properties": { "Name": "Blackheath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackheath Rail Station", "TIPLOC": "BLKHTH", "CRS": "BKH", "StopAreaCode": "910GBLKHTH", "AdministrativeAreaRef": "110", "code": "9100BLKHTH", "NPTG": "E0034656", "ATCO": "490", "CRS_code": "BKH" }, "geometry": { "type": "Point", "coordinates": [ 0.00887195566, 51.46579624108 ] } },
{ "type": "Feature", "properties": { "Name": "Blackridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackridge Rail Station", "TIPLOC": "BLKRDGE", "CRS": "BKR", "StopAreaCode": "910GBLKRDGE", "AdministrativeAreaRef": "110", "code": "9100BLKRDGE", "NPTG": "ES000380", "ATCO": "629", "CRS_code": "BKR" }, "geometry": { "type": "Point", "coordinates": [ -3.75079666851, 55.884251393809997 ] } },
{ "type": "Feature", "properties": { "Name": "Blake Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blake Street Rail Station", "TIPLOC": "BLKST", "CRS": "BKT", "StopAreaCode": "910GBLKST", "AdministrativeAreaRef": "110", "code": "9100BLKST", "NPTG": "E0031658", "ATCO": "430", "CRS_code": "BKT" }, "geometry": { "type": "Point", "coordinates": [ -1.84491438218, 52.604884736320003 ] } },
{ "type": "Feature", "properties": { "Name": "Belle Vue Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Belle Vue Rail Station", "TIPLOC": "BLLVUE", "CRS": "BLV", "StopAreaCode": "910GBLLVUE", "AdministrativeAreaRef": "110", "code": "9100BLLVUE", "NPTG": "E0028538", "ATCO": "180", "CRS_code": "BLV" }, "geometry": { "type": "Point", "coordinates": [ -2.18050695949, 53.462374605020003 ] } },
{ "type": "Feature", "properties": { "Name": "Blundellsands & Crosby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blundellsands & Crosby Rail Station", "TIPLOC": "BLNDLAC", "CRS": "BLN", "StopAreaCode": "910GBLNDLAC", "AdministrativeAreaRef": "110", "code": "9100BLNDLAC", "NPTG": "E0029622", "ATCO": "280", "CRS_code": "BLN" }, "geometry": { "type": "Point", "coordinates": [ -3.03985977525, 53.487683434840001 ] } },
{ "type": "Feature", "properties": { "Name": "Billingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Billingham Rail Station", "TIPLOC": "BLNGHM", "CRS": "BIL", "StopAreaCode": "910GBLNGHM", "AdministrativeAreaRef": "110", "code": "9100BLNGHM", "NPTG": "E0042054", "ATCO": "077", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.27971955308, 54.605606099150002 ] } },
{ "type": "Feature", "properties": { "Name": "Bloxwich North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bloxwich North Rail Station", "TIPLOC": "BLOXN", "CRS": "BWN", "StopAreaCode": "910GBLOXN", "AdministrativeAreaRef": "110", "code": "9100BLOXN", "NPTG": "E0031367", "ATCO": "430", "CRS_code": "BWN" }, "geometry": { "type": "Point", "coordinates": [ -2.01768436339, 52.625436234280002 ] } },
{ "type": "Feature", "properties": { "Name": "Bloxwich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bloxwich Rail Station", "TIPLOC": "BLOXWCH", "CRS": "BLX", "StopAreaCode": "910GBLOXWCH", "AdministrativeAreaRef": "110", "code": "9100BLOXWCH", "NPTG": "E0031367", "ATCO": "430", "CRS_code": "BLX" }, "geometry": { "type": "Point", "coordinates": [ -2.01147782643, 52.618200270700001 ] } },
{ "type": "Feature", "properties": { "Name": "Blackrod Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blackrod Rail Station", "TIPLOC": "BLRD", "CRS": "BLK", "StopAreaCode": "910GBLRD", "AdministrativeAreaRef": "110", "code": "9100BLRD", "NPTG": "E0052666", "ATCO": "180", "CRS_code": "BLK" }, "geometry": { "type": "Point", "coordinates": [ -2.5695239431, 53.591521980289997 ] } },
{ "type": "Feature", "properties": { "Name": "Bellshill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bellshill Rail Station", "TIPLOC": "BLSHL", "CRS": "BLH", "StopAreaCode": "910GBLSHL", "AdministrativeAreaRef": "110", "code": "9100BLSHL", "NPTG": "ES000332", "ATCO": "616", "CRS_code": "BLH" }, "geometry": { "type": "Point", "coordinates": [ -4.02449908366, 55.817063461810001 ] } },
{ "type": "Feature", "properties": { "Name": "Bletchley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bletchley Rail Station", "TIPLOC": "BLTCHLY", "CRS": "BLY", "StopAreaCode": "910GBLTCHLY", "AdministrativeAreaRef": "110", "code": "9100BLTCHLY", "NPTG": "E0039270", "ATCO": "049", "CRS_code": "BLY" }, "geometry": { "type": "Point", "coordinates": [ -0.73632041809, 51.99533445318 ] } },
{ "type": "Feature", "properties": { "Name": "Bolton-Upon-Dearne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bolton-Upon-Dearne Rail Station", "TIPLOC": "BLTNODR", "CRS": "BTD", "StopAreaCode": "910GBLTNODR", "AdministrativeAreaRef": "110", "code": "9100BLTNODR", "NPTG": "E0030028", "ATCO": "370", "CRS_code": "BTD" }, "geometry": { "type": "Point", "coordinates": [ -1.31154602347, 53.518946534770002 ] } },
{ "type": "Feature", "properties": { "Name": "Beltring Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Beltring Rail Station", "TIPLOC": "BLTRNAB", "CRS": "BEG", "StopAreaCode": "910GBLTRNAB", "AdministrativeAreaRef": "110", "code": "9100BLTRNAB", "NPTG": "N0078379", "ATCO": "240", "CRS_code": "BEG" }, "geometry": { "type": "Point", "coordinates": [ 0.40349559627, 51.204708722829999 ] } },
{ "type": "Feature", "properties": { "Name": "Blythe Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Blythe Bridge Rail Station", "TIPLOC": "BLYBDGE", "CRS": "BYB", "StopAreaCode": "910GBLYBDGE", "AdministrativeAreaRef": "110", "code": "9100BLYBDGE", "NPTG": "E0024077", "ATCO": "380", "CRS_code": "BYB" }, "geometry": { "type": "Point", "coordinates": [ -2.06696110809, 52.968142267269997 ] } },
{ "type": "Feature", "properties": { "Name": "Bamber Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bamber Bridge Rail Station", "TIPLOC": "BMBRBDG", "CRS": "BMB", "StopAreaCode": "910GBMBRBDG", "AdministrativeAreaRef": "110", "code": "9100BMBRBDG", "NPTG": "E0016409", "ATCO": "250", "CRS_code": "BMB" }, "geometry": { "type": "Point", "coordinates": [ -2.66077497771, 53.726866511970002 ] } },
{ "type": "Feature", "properties": { "Name": "Bramhall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bramhall Rail Station", "TIPLOC": "BMHL", "CRS": "BML", "StopAreaCode": "910GBMHL", "AdministrativeAreaRef": "110", "code": "9100BMHL", "NPTG": "E0028595", "ATCO": "180", "CRS_code": "BML" }, "geometry": { "type": "Point", "coordinates": [ -2.16359260384, 53.360612660089998 ] } },
{ "type": "Feature", "properties": { "Name": "Bramley (Hants) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bramley (Hants) Rail Station", "TIPLOC": "BMLY", "CRS": "BMY", "StopAreaCode": "910GBMLY", "AdministrativeAreaRef": "110", "code": "9100BMLY", "NPTG": "E0046700", "ATCO": "190", "CRS_code": "BMY" }, "geometry": { "type": "Point", "coordinates": [ -1.06100267378, 51.330293243969997 ] } },
{ "type": "Feature", "properties": { "Name": "Banbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Banbury Rail Station", "TIPLOC": "BNBR", "CRS": "BAN", "StopAreaCode": "910GBNBR", "AdministrativeAreaRef": "110", "code": "9100BNBR", "NPTG": "E0020676", "ATCO": "340", "CRS_code": "BAN" }, "geometry": { "type": "Point", "coordinates": [ -1.32813275692, 52.060308182379998 ] } },
{ "type": "Feature", "properties": { "Name": "Brandon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brandon Rail Station", "TIPLOC": "BNDON", "CRS": "BND", "StopAreaCode": "910GBNDON", "AdministrativeAreaRef": "110", "code": "9100BNDON", "NPTG": "E0051359", "ATCO": "390", "CRS_code": "BND" }, "geometry": { "type": "Point", "coordinates": [ 0.62473186797, 52.454007422399997 ] } },
{ "type": "Feature", "properties": { "Name": "Bingley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bingley Rail Station", "TIPLOC": "BNGY", "CRS": "BIY", "StopAreaCode": "910GBNGY", "AdministrativeAreaRef": "110", "code": "9100BNGY", "NPTG": "E0032270", "ATCO": "450", "CRS_code": "BIY" }, "geometry": { "type": "Point", "coordinates": [ -1.83732228587, 53.848614091960002 ] } },
{ "type": "Feature", "properties": { "Name": "Burnham (Berks) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burnham (Berks) Rail Station", "TIPLOC": "BNHAM", "CRS": "BNM", "StopAreaCode": "910GBNHAM", "AdministrativeAreaRef": "110", "code": "9100BNHAM", "NPTG": "N0072218", "ATCO": "037", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.64637373865, 51.523505522919997 ] } },
{ "type": "Feature", "properties": { "Name": "Barnhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnhill Rail Station", "TIPLOC": "BNHL", "CRS": "BNL", "StopAreaCode": "910GBNHL", "AdministrativeAreaRef": "110", "code": "9100BNHL", "NPTG": "N0076068", "ATCO": "609", "CRS_code": "BNL" }, "geometry": { "type": "Point", "coordinates": [ -4.2230048768, 55.877489805190002 ] } },
{ "type": "Feature", "properties": { "Name": "Bank Hall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bank Hall Rail Station", "TIPLOC": "BNKHALL", "CRS": "BAH", "StopAreaCode": "910GBNKHALL", "AdministrativeAreaRef": "110", "code": "9100BNKHALL", "NPTG": "E0029768", "ATCO": "280", "CRS_code": "BAH" }, "geometry": { "type": "Point", "coordinates": [ -2.98751140146, 53.437493364689999 ] } },
{ "type": "Feature", "properties": { "Name": "Ben Rhydding Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ben Rhydding Rail Station", "TIPLOC": "BNRHYDN", "CRS": "BEY", "StopAreaCode": "910GBNRHYDN", "AdministrativeAreaRef": "110", "code": "9100BNRHYDN", "NPTG": "E0032264", "ATCO": "450", "CRS_code": "BEY" }, "geometry": { "type": "Point", "coordinates": [ -1.79743005659, 53.925714051889997 ] } },
{ "type": "Feature", "properties": { "Name": "Barnes Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnes Bridge Rail Station", "TIPLOC": "BNSBDGE", "CRS": "BNI", "StopAreaCode": "910GBNSBDGE", "AdministrativeAreaRef": "110", "code": "9100BNSBDGE", "NPTG": "E0034751", "ATCO": "490", "CRS_code": "BNI" }, "geometry": { "type": "Point", "coordinates": [ -0.25263015589, 51.472008521329997 ] } },
{ "type": "Feature", "properties": { "Name": "Burneside (Cumbria) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burneside (Cumbria) Rail Station", "TIPLOC": "BNSD", "CRS": "BUD", "StopAreaCode": "910GBNSD", "AdministrativeAreaRef": "110", "code": "9100BNSD", "NPTG": "E0006170", "ATCO": "090", "CRS_code": "BUD" }, "geometry": { "type": "Point", "coordinates": [ -2.76667687806, 54.354979775590003 ] } },
{ "type": "Feature", "properties": { "Name": "Barnsley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnsley Rail Station", "TIPLOC": "BNSLY", "CRS": "BNY", "StopAreaCode": "910GBNSLY", "AdministrativeAreaRef": "110", "code": "9100BNSLY", "NPTG": "N0077770", "ATCO": "370", "CRS_code": "BNY" }, "geometry": { "type": "Point", "coordinates": [ -1.47716468299, 53.554300786799999 ] } },
{ "type": "Feature", "properties": { "Name": "Barnetby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnetby Rail Station", "TIPLOC": "BNTBY", "CRS": "BTB", "StopAreaCode": "910GBNTBY", "AdministrativeAreaRef": "110", "code": "9100BNTBY", "NPTG": "E0053502", "ATCO": "227", "CRS_code": "BTB" }, "geometry": { "type": "Point", "coordinates": [ -0.40967962623, 53.575120997310002 ] } },
{ "type": "Feature", "properties": { "Name": "Bentley (Hants) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bentley (Hants) Rail Station", "TIPLOC": "BNTEY", "CRS": "BTY", "StopAreaCode": "910GBNTEY", "AdministrativeAreaRef": "110", "code": "9100BNTEY", "NPTG": "E0046748", "ATCO": "190", "CRS_code": "BTY" }, "geometry": { "type": "Point", "coordinates": [ -0.86812680436, 51.181233083030001 ] } },
{ "type": "Feature", "properties": { "Name": "Brentford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brentford Rail Station", "TIPLOC": "BNTFORD", "CRS": "BFD", "StopAreaCode": "910GBNTFORD", "AdministrativeAreaRef": "110", "code": "9100BNTFORD", "NPTG": "E0034526", "ATCO": "490", "CRS_code": "BFD" }, "geometry": { "type": "Point", "coordinates": [ -0.30965091793, 51.487546906349998 ] } },
{ "type": "Feature", "properties": { "Name": "Bentham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bentham Rail Station", "TIPLOC": "BNTHAM", "CRS": "BEN", "StopAreaCode": "910GBNTHAM", "AdministrativeAreaRef": "110", "code": "9100BNTHAM", "NPTG": "E0018431", "ATCO": "320", "CRS_code": "BEN" }, "geometry": { "type": "Point", "coordinates": [ -2.51067615135, 54.115517279450003 ] } },
{ "type": "Feature", "properties": { "Name": "Brunswick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brunswick Rail Station", "TIPLOC": "BNWK", "CRS": "BRW", "StopAreaCode": "910GBNWK", "AdministrativeAreaRef": "110", "code": "9100BNWK", "NPTG": "E0029679", "ATCO": "280", "CRS_code": "BRW" }, "geometry": { "type": "Point", "coordinates": [ -2.97607686688, 53.383240378849997 ] } },
{ "type": "Feature", "properties": { "Name": "Bodmin Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bodmin Parkway Rail Station", "TIPLOC": "BODMNPW", "CRS": "BOD", "StopAreaCode": "910GBODMNPW", "AdministrativeAreaRef": "110", "code": "9100BODMNPW", "NPTG": "E0044554", "ATCO": "080", "CRS_code": "BOD" }, "geometry": { "type": "Point", "coordinates": [ -4.66292835108, 50.445862756579999 ] } },
{ "type": "Feature", "properties": { "Name": "Bodorgan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bodorgan Rail Station", "TIPLOC": "BODORGN", "CRS": "BOR", "StopAreaCode": "910GBODORGN", "AdministrativeAreaRef": "110", "code": "9100BODORGN", "NPTG": "E0054329", "ATCO": "541", "CRS_code": "BOR" }, "geometry": { "type": "Point", "coordinates": [ -4.41800318822, 53.20430193864 ] } },
{ "type": "Feature", "properties": { "Name": "Bognor Regis Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bognor Regis Rail Station", "TIPLOC": "BOGNORR", "CRS": "BOG", "StopAreaCode": "910GBOGNORR", "AdministrativeAreaRef": "110", "code": "9100BOGNORR", "NPTG": "E0052059", "ATCO": "440", "CRS_code": "BOG" }, "geometry": { "type": "Point", "coordinates": [ -0.67617820083, 50.78655905574 ] } },
{ "type": "Feature", "properties": { "Name": "Bogston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bogston Rail Station", "TIPLOC": "BOGSTON", "CRS": "BGS", "StopAreaCode": "910GBOGSTON", "AdministrativeAreaRef": "110", "code": "9100BOGSTON", "NPTG": "N0072852", "ATCO": "613", "CRS_code": "BGS" }, "geometry": { "type": "Point", "coordinates": [ -4.71140097637, 55.937041565519998 ] } },
{ "type": "Feature", "properties": { "Name": "Bolton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bolton Rail Station", "TIPLOC": "BOLTON", "CRS": "BON", "StopAreaCode": "910GBOLTON", "AdministrativeAreaRef": "110", "code": "9100BOLTON", "NPTG": "E0057777", "ATCO": "180", "CRS_code": "BON" }, "geometry": { "type": "Point", "coordinates": [ -2.42582463782, 53.574143252330003 ] } },
{ "type": "Feature", "properties": { "Name": "Bournemouth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bournemouth Rail Station", "TIPLOC": "BOMO", "CRS": "BMH", "StopAreaCode": "910GBOMO", "AdministrativeAreaRef": "110", "code": "9100BOMO", "NPTG": "E0057149", "ATCO": "129", "CRS_code": "BMH" }, "geometry": { "type": "Point", "coordinates": [ -1.86450294675, 50.727273321440002 ] } },
{ "type": "Feature", "properties": { "Name": "Bookham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bookham Rail Station", "TIPLOC": "BOOKHAM", "CRS": "BKA", "StopAreaCode": "910GBOOKHAM", "AdministrativeAreaRef": "110", "code": "9100BOOKHAM", "NPTG": "E0025483", "ATCO": "400", "CRS_code": "BKA" }, "geometry": { "type": "Point", "coordinates": [ -0.38402060641, 51.288738658470002 ] } },
{ "type": "Feature", "properties": { "Name": "Bridge of Orchy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bridge of Orchy Rail Station", "TIPLOC": "BOORCHY", "CRS": "BRO", "StopAreaCode": "910GBOORCHY", "AdministrativeAreaRef": "110", "code": "9100BOORCHY", "NPTG": "N0072641", "ATCO": "607", "CRS_code": "BRO" }, "geometry": { "type": "Point", "coordinates": [ -4.76299278027, 56.515866987800003 ] } },
{ "type": "Feature", "properties": { "Name": "Bootle (Cumbria) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bootle (Cumbria) Rail Station", "TIPLOC": "BOOTLE", "CRS": "BOC", "StopAreaCode": "910GBOOTLE", "AdministrativeAreaRef": "110", "code": "9100BOOTLE", "NPTG": "E0044763", "ATCO": "090", "CRS_code": "BOC" }, "geometry": { "type": "Point", "coordinates": [ -3.39386164194, 54.291302007950001 ] } },
{ "type": "Feature", "properties": { "Name": "Bootle New Strand Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bootle New Strand Rail Station", "TIPLOC": "BOOTLNS", "CRS": "BNW", "StopAreaCode": "910GBOOTLNS", "AdministrativeAreaRef": "110", "code": "9100BOOTLNS", "NPTG": "E0029625", "ATCO": "280", "CRS_code": "BNW" }, "geometry": { "type": "Point", "coordinates": [ -2.99474724324, 53.453388572850002 ] } },
{ "type": "Feature", "properties": { "Name": "Bootle Oriel Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bootle Oriel Road Rail Station", "TIPLOC": "BOOTLOR", "CRS": "BOT", "StopAreaCode": "910GBOOTLOR", "AdministrativeAreaRef": "110", "code": "9100BOOTLOR", "NPTG": "E0029625", "ATCO": "280", "CRS_code": "BOT" }, "geometry": { "type": "Point", "coordinates": [ -2.9957333951, 53.446620722059997 ] } },
{ "type": "Feature", "properties": { "Name": "Bourg Saint Maurice Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Bourg Saint Maurice Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100BORGSTM", "NPTG": "E0015169", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.39441607446, 51.073994121929999 ] } },
{ "type": "Feature", "properties": { "Name": "Bourne End Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bourne End Rail Station", "TIPLOC": "BORNEND", "CRS": "BNE", "StopAreaCode": "910GBORNEND", "AdministrativeAreaRef": "110", "code": "9100BORNEND", "NPTG": "E0000660", "ATCO": "040", "CRS_code": "BNE" }, "geometry": { "type": "Point", "coordinates": [ -0.71047346012, 51.577117901459999 ] } },
{ "type": "Feature", "properties": { "Name": "Borth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Borth Rail Station", "TIPLOC": "BORTH", "CRS": "BRH", "StopAreaCode": "910GBORTH", "AdministrativeAreaRef": "110", "code": "9100BORTH", "NPTG": "E0054106", "ATCO": "523", "CRS_code": "BRH" }, "geometry": { "type": "Point", "coordinates": [ -4.05017619082, 52.491026997280002 ] } },
{ "type": "Feature", "properties": { "Name": "Borough Green & Wrotham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Borough Green & Wrotham Rail Station", "TIPLOC": "BORWGAW", "CRS": "BRG", "StopAreaCode": "910GBORWGAW", "AdministrativeAreaRef": "110", "code": "9100BORWGAW", "NPTG": "E0047339", "ATCO": "240", "CRS_code": "BRG" }, "geometry": { "type": "Point", "coordinates": [ 0.30624506129, 51.293219243279999 ] } },
{ "type": "Feature", "properties": { "Name": "Bosham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bosham Rail Station", "TIPLOC": "BOSHAM", "CRS": "BOH", "StopAreaCode": "910GBOSHAM", "AdministrativeAreaRef": "110", "code": "9100BOSHAM", "NPTG": "E0026403", "ATCO": "440", "CRS_code": "BOH" }, "geometry": { "type": "Point", "coordinates": [ -0.84743114151, 50.842747619450002 ] } },
{ "type": "Feature", "properties": { "Name": "Boston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Boston Rail Station", "TIPLOC": "BOSTON", "CRS": "BSN", "StopAreaCode": "910GBOSTON", "AdministrativeAreaRef": "110", "code": "9100BOSTON", "NPTG": "E0056213", "ATCO": "270", "CRS_code": "BSN" }, "geometry": { "type": "Point", "coordinates": [ -0.03100315227, 52.9780899418 ] } },
{ "type": "Feature", "properties": { "Name": "Bottesford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bottesford Rail Station", "TIPLOC": "BOTESFD", "CRS": "BTF", "StopAreaCode": "910GBOTESFD", "AdministrativeAreaRef": "110", "code": "9100BOTESFD", "NPTG": "E0047759", "ATCO": "260", "CRS_code": "BTF" }, "geometry": { "type": "Point", "coordinates": [ -0.79484261942, 52.944614521719998 ] } },
{ "type": "Feature", "properties": { "Name": "Botley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Botley Rail Station", "TIPLOC": "BOTLEY", "CRS": "BOE", "StopAreaCode": "910GBOTLEY", "AdministrativeAreaRef": "110", "code": "9100BOTLEY", "NPTG": "E0046786", "ATCO": "190", "CRS_code": "BOE" }, "geometry": { "type": "Point", "coordinates": [ -1.25923637574, 50.916454269390002 ] } },
{ "type": "Feature", "properties": { "Name": "Bournville Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bournville Rail Station", "TIPLOC": "BOURNVL", "CRS": "BRV", "StopAreaCode": "910GBOURNVL", "AdministrativeAreaRef": "110", "code": "9100BOURNVL", "NPTG": "E0031377", "ATCO": "430", "CRS_code": "BRV" }, "geometry": { "type": "Point", "coordinates": [ -1.9264238296, 52.426963119130001 ] } },
{ "type": "Feature", "properties": { "Name": "Bow Brickhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bow Brickhill Rail Station", "TIPLOC": "BOWBRKH", "CRS": "BWB", "StopAreaCode": "910GBOWBRKH", "AdministrativeAreaRef": "110", "code": "9100BOWBRKH", "NPTG": "E0053441", "ATCO": "049", "CRS_code": "BWB" }, "geometry": { "type": "Point", "coordinates": [ -0.69607774698, 52.00430073159 ] } },
{ "type": "Feature", "properties": { "Name": "Bowes Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bowes Park Rail Station", "TIPLOC": "BOWESPK", "CRS": "BOP", "StopAreaCode": "910GBOWESPK", "AdministrativeAreaRef": "110", "code": "9100BOWESPK", "NPTG": "E0034415", "ATCO": "490", "CRS_code": "BOP" }, "geometry": { "type": "Point", "coordinates": [ -0.12058187383, 51.607011878960002 ] } },
{ "type": "Feature", "properties": { "Name": "Bowling Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bowling Rail Station", "TIPLOC": "BOWLING", "CRS": "BWG", "StopAreaCode": "910GBOWLING", "AdministrativeAreaRef": "110", "code": "9100BOWLING", "NPTG": "N0068020", "ATCO": "608", "CRS_code": "BWG" }, "geometry": { "type": "Point", "coordinates": [ -4.49384152578, 55.931079406009999 ] } },
{ "type": "Feature", "properties": { "Name": "Box Hill & Westhumble Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Box Hill & Westhumble Rail Station", "TIPLOC": "BOXHAWH", "CRS": "BXW", "StopAreaCode": "910GBOXHAWH", "AdministrativeAreaRef": "110", "code": "9100BOXHAWH", "NPTG": "E0025438", "ATCO": "400", "CRS_code": "BXW" }, "geometry": { "type": "Point", "coordinates": [ -0.32848987487, 51.254011853270001 ] } },
{ "type": "Feature", "properties": { "Name": "Bracknell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bracknell Rail Station", "TIPLOC": "BRACKNL", "CRS": "BCE", "StopAreaCode": "910GBRACKNL", "AdministrativeAreaRef": "110", "code": "9100BRACKNL", "NPTG": "E0057151", "ATCO": "038", "CRS_code": "BCE" }, "geometry": { "type": "Point", "coordinates": [ -0.75170356103, 51.413091888289998 ] } },
{ "type": "Feature", "properties": { "Name": "Bradford Forster Square Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bradford Forster Square Rail Station", "TIPLOC": "BRADFS", "CRS": "BDQ", "StopAreaCode": "910GBRADFS", "AdministrativeAreaRef": "110", "code": "9100BRADFS", "NPTG": "E0057948", "ATCO": "450", "CRS_code": "BDQ" }, "geometry": { "type": "Point", "coordinates": [ -1.7529615389, 53.796924412689997 ] } },
{ "type": "Feature", "properties": { "Name": "Bradford Interchange Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bradford Interchange Rail Station", "TIPLOC": "BRADIN", "CRS": "BDI", "StopAreaCode": "910GBRADIN", "AdministrativeAreaRef": "110", "code": "9100BRADIN", "NPTG": "E0057948", "ATCO": "450", "CRS_code": "BDI" }, "geometry": { "type": "Point", "coordinates": [ -1.74959570123, 53.791075248699997 ] } },
{ "type": "Feature", "properties": { "Name": "Braintree Freeport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Braintree Freeport Rail Station", "TIPLOC": "BRAINFP", "CRS": "BTP", "StopAreaCode": "910GBRAINFP", "AdministrativeAreaRef": "110", "code": "9100BRAINFP", "NPTG": "E0055768", "ATCO": "150", "CRS_code": "BTP" }, "geometry": { "type": "Point", "coordinates": [ 0.56843481453, 51.869416138189997 ] } },
{ "type": "Feature", "properties": { "Name": "Braintree Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Braintree Rail Station", "TIPLOC": "BRAINTR", "CRS": "BTR", "StopAreaCode": "910GBRAINTR", "AdministrativeAreaRef": "110", "code": "9100BRAINTR", "NPTG": "E0055768", "ATCO": "150", "CRS_code": "BTR" }, "geometry": { "type": "Point", "coordinates": [ 0.55668710811, 51.875391683780002 ] } },
{ "type": "Feature", "properties": { "Name": "Brampton (Suffolk) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brampton (Suffolk) Rail Station", "TIPLOC": "BRAMPTN", "CRS": "BRP", "StopAreaCode": "910GBRAMPTN", "AdministrativeAreaRef": "110", "code": "9100BRAMPTN", "NPTG": "E0051703", "ATCO": "390", "CRS_code": "BRP" }, "geometry": { "type": "Point", "coordinates": [ 1.54381076638, 52.395435043470002 ] } },
{ "type": "Feature", "properties": { "Name": "Branksome Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Branksome Rail Station", "TIPLOC": "BRANKSM", "CRS": "BSM", "StopAreaCode": "910GBRANKSM", "AdministrativeAreaRef": "110", "code": "9100BRANKSM", "NPTG": "E0040676", "ATCO": "128", "CRS_code": "BSM" }, "geometry": { "type": "Point", "coordinates": [ -1.91975819978, 50.726964604060001 ] } },
{ "type": "Feature", "properties": { "Name": "Barbican Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Barbican Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100BRBCNLT", "NPTG": "N0065116", "ATCO": "490", "CRS_code": "ZBB" }, "geometry": { "type": "Point", "coordinates": [ -0.09744109792, 51.519681718880001 ] } },
{ "type": "Feature", "properties": { "Name": "Broadbottom Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Broadbottom Rail Station", "TIPLOC": "BRBM", "CRS": "BDB", "StopAreaCode": "910GBRBM", "AdministrativeAreaRef": "110", "code": "9100BRBM", "NPTG": "E0028610", "ATCO": "180", "CRS_code": "BDB" }, "geometry": { "type": "Point", "coordinates": [ -2.01652076989, 53.440973766280003 ] } },
{ "type": "Feature", "properties": { "Name": "Brondesbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brondesbury Rail Station", "TIPLOC": "BRBY", "CRS": "BSY", "StopAreaCode": "910GBRBY", "AdministrativeAreaRef": "110", "code": "9100BRBY", "NPTG": "E0034038", "ATCO": "490", "CRS_code": "BSY" }, "geometry": { "type": "Point", "coordinates": [ -0.20230865493, 51.545165692300003 ] } },
{ "type": "Feature", "properties": { "Name": "Brondesbury Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brondesbury Park Rail Station", "TIPLOC": "BRBYPK", "CRS": "BSP", "StopAreaCode": "910GBRBYPK", "AdministrativeAreaRef": "110", "code": "9100BRBYPK", "NPTG": "E0034039", "ATCO": "490", "CRS_code": "BSP" }, "geometry": { "type": "Point", "coordinates": [ -0.21012758605, 51.540699121069999 ] } },
{ "type": "Feature", "properties": { "Name": "Bradford-on-Avon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bradford-on-Avon Rail Station", "TIPLOC": "BRDFDOA", "CRS": "BOA", "StopAreaCode": "910GBRDFDOA", "AdministrativeAreaRef": "110", "code": "9100BRDFDOA", "NPTG": "E0052425", "ATCO": "460", "CRS_code": "BOA" }, "geometry": { "type": "Point", "coordinates": [ -2.25232664173, 51.344914178810001 ] } },
{ "type": "Feature", "properties": { "Name": "Bridgwater Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bridgwater Rail Station", "TIPLOC": "BRDGWTR", "CRS": "BWT", "StopAreaCode": "910GBRDGWTR", "AdministrativeAreaRef": "110", "code": "9100BRDGWTR", "NPTG": "E0022503", "ATCO": "360", "CRS_code": "BWT" }, "geometry": { "type": "Point", "coordinates": [ -2.9904054773, 51.12785633979 ] } },
{ "type": "Feature", "properties": { "Name": "Brading Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brading Rail Station", "TIPLOC": "BRDING", "CRS": "BDN", "StopAreaCode": "910GBRDING", "AdministrativeAreaRef": "110", "code": "9100BRDING", "NPTG": "E0053402", "ATCO": "230", "CRS_code": "BDN" }, "geometry": { "type": "Point", "coordinates": [ -1.13872233248, 50.678371928990003 ] } },
{ "type": "Feature", "properties": { "Name": "Bridlington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bridlington Rail Station", "TIPLOC": "BRDLNGT", "CRS": "BDT", "StopAreaCode": "910GBRDLNGT", "AdministrativeAreaRef": "110", "code": "9100BRDLNGT", "NPTG": "E0036880", "ATCO": "220", "CRS_code": "BDT" }, "geometry": { "type": "Point", "coordinates": [ -0.1987203099, 54.084131267079997 ] } },
{ "type": "Feature", "properties": { "Name": "Bardon Mill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bardon Mill Rail Station", "TIPLOC": "BRDNML", "CRS": "BLL", "StopAreaCode": "910GBRDNML", "AdministrativeAreaRef": "110", "code": "9100BRDNML", "NPTG": "E0049965", "ATCO": "310", "CRS_code": "BLL" }, "geometry": { "type": "Point", "coordinates": [ -2.34650443635, 54.97449361588 ] } },
{ "type": "Feature", "properties": { "Name": "Bordesley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bordesley Rail Station", "TIPLOC": "BRDS", "CRS": "BBS", "StopAreaCode": "910GBRDS", "AdministrativeAreaRef": "110", "code": "9100BRDS", "NPTG": "E0031371", "ATCO": "430", "CRS_code": "BBS" }, "geometry": { "type": "Point", "coordinates": [ -1.87776863413, 52.471872994110001 ] } },
{ "type": "Feature", "properties": { "Name": "Bredbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bredbury Rail Station", "TIPLOC": "BREDBRY", "CRS": "BDY", "StopAreaCode": "910GBREDBRY", "AdministrativeAreaRef": "110", "code": "9100BREDBRY", "NPTG": "E0028600", "ATCO": "180", "CRS_code": "BDY" }, "geometry": { "type": "Point", "coordinates": [ -2.11048803686, 53.423153320030003 ] } },
{ "type": "Feature", "properties": { "Name": "Breich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Breich Rail Station", "TIPLOC": "BREICH", "CRS": "BRC", "StopAreaCode": "910GBREICH", "AdministrativeAreaRef": "110", "code": "9100BREICH", "NPTG": "N0067241", "ATCO": "629", "CRS_code": "BRC" }, "geometry": { "type": "Point", "coordinates": [ -3.66812513594, 55.827312252900001 ] } },
{ "type": "Feature", "properties": { "Name": "Broughty Ferry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Broughty Ferry Rail Station", "TIPLOC": "BRFRY", "CRS": "BYF", "StopAreaCode": "910GBRFRY", "AdministrativeAreaRef": "110", "code": "9100BRFRY", "NPTG": "ES000481", "ATCO": "640", "CRS_code": "BYF" }, "geometry": { "type": "Point", "coordinates": [ -2.8731522977, 56.467160247919999 ] } },
{ "type": "Feature", "properties": { "Name": "Broomfleet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Broomfleet Rail Station", "TIPLOC": "BRFT", "CRS": "BMF", "StopAreaCode": "910GBRFT", "AdministrativeAreaRef": "110", "code": "9100BRFT", "NPTG": "E0053007", "ATCO": "220", "CRS_code": "BMF" }, "geometry": { "type": "Point", "coordinates": [ -0.67182831364, 53.740208222429999 ] } },
{ "type": "Feature", "properties": { "Name": "Bargeddie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bargeddie Rail Station", "TIPLOC": "BRGDDIE", "CRS": "BGI", "StopAreaCode": "910GBRGDDIE", "AdministrativeAreaRef": "110", "code": "9100BRGDDIE", "NPTG": "ES000288", "ATCO": "616", "CRS_code": "BGI" }, "geometry": { "type": "Point", "coordinates": [ -4.07380735225, 55.851291290799999 ] } },
{ "type": "Feature", "properties": { "Name": "Bridgend Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bridgend Rail Station", "TIPLOC": "BRGEND", "CRS": "BGN", "StopAreaCode": "910GBRGEND", "AdministrativeAreaRef": "110", "code": "9100BRGEND", "NPTG": "E0053952", "ATCO": "551", "CRS_code": "BGN" }, "geometry": { "type": "Point", "coordinates": [ -3.57527568317, 51.506973510560002 ] } },
{ "type": "Feature", "properties": { "Name": "Brigg Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brigg Rail Station", "TIPLOC": "BRGG", "CRS": "BGG", "StopAreaCode": "910GBRGG", "AdministrativeAreaRef": "110", "code": "9100BRGG", "NPTG": "E0055057", "ATCO": "227", "CRS_code": "BGG" }, "geometry": { "type": "Point", "coordinates": [ -0.48612467657, 53.549145097759997 ] } },
{ "type": "Feature", "properties": { "Name": "London Road (Brighton) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Road (Brighton) Rail Station", "TIPLOC": "BRGHLRD", "CRS": "LRB", "StopAreaCode": "910GBRGHLRD", "AdministrativeAreaRef": "110", "code": "9100BRGHLRD", "NPTG": "E0057155", "ATCO": "149", "CRS_code": "LRB" }, "geometry": { "type": "Point", "coordinates": [ -0.1365022651, 50.836662921049999 ] } },
{ "type": "Feature", "properties": { "Name": "Brighton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brighton Rail Station", "TIPLOC": "BRGHTN", "CRS": "BTN", "StopAreaCode": "910GBRGHTN", "AdministrativeAreaRef": "110", "code": "9100BRGHTN", "NPTG": "E0057155", "ATCO": "149", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.14128028305, 50.829004771069997 ] } },
{ "type": "Feature", "properties": { "Name": "Barrhead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barrhead Rail Station", "TIPLOC": "BRHD", "CRS": "BRR", "StopAreaCode": "910GBRHD", "AdministrativeAreaRef": "110", "code": "9100BRHD", "NPTG": "ES000295", "ATCO": "612", "CRS_code": "BRR" }, "geometry": { "type": "Point", "coordinates": [ -4.39728326663, 55.803752990059998 ] } },
{ "type": "Feature", "properties": { "Name": "Barnham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnham Rail Station", "TIPLOC": "BRHM", "CRS": "BAA", "StopAreaCode": "910GBRHM", "AdministrativeAreaRef": "110", "code": "9100BRHM", "NPTG": "E0052057", "ATCO": "440", "CRS_code": "BAA" }, "geometry": { "type": "Point", "coordinates": [ -0.63967987064, 50.830906525929997 ] } },
{ "type": "Feature", "properties": { "Name": "Brighouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brighouse Rail Station", "TIPLOC": "BRHOUSE", "CRS": "BGH", "StopAreaCode": "910GBRHOUSE", "AdministrativeAreaRef": "110", "code": "9100BRHOUSE", "NPTG": "E0032345", "ATCO": "450", "CRS_code": "BGH" }, "geometry": { "type": "Point", "coordinates": [ -1.77943883658, 53.698197294830003 ] } },
{ "type": "Feature", "properties": { "Name": "Bridgeton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bridgeton Rail Station", "TIPLOC": "BRIDGTN", "CRS": "BDG", "StopAreaCode": "910GBRIDGTN", "AdministrativeAreaRef": "110", "code": "9100BRIDGTN", "NPTG": "N0068025", "ATCO": "609", "CRS_code": "BDG" }, "geometry": { "type": "Point", "coordinates": [ -4.22605627862, 55.848962595499998 ] } },
{ "type": "Feature", "properties": { "Name": "Brierfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brierfield Rail Station", "TIPLOC": "BRIERFL", "CRS": "BRF", "StopAreaCode": "910GBRIERFL", "AdministrativeAreaRef": "110", "code": "9100BRIERFL", "NPTG": "E0016043", "ATCO": "250", "CRS_code": "BRF" }, "geometry": { "type": "Point", "coordinates": [ -2.23648991236, 53.823980398179998 ] } },
{ "type": "Feature", "properties": { "Name": "Brimsdown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brimsdown Rail Station", "TIPLOC": "BRIMSDN", "CRS": "BMD", "StopAreaCode": "910GBRIMSDN", "AdministrativeAreaRef": "110", "code": "9100BRIMSDN", "NPTG": "E0034284", "ATCO": "490", "CRS_code": "BMD" }, "geometry": { "type": "Point", "coordinates": [ -0.03081734996, 51.655583366050003 ] } },
{ "type": "Feature", "properties": { "Name": "Briton Ferry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Briton Ferry Rail Station", "TIPLOC": "BRITFRY", "CRS": "BNF", "StopAreaCode": "910GBRITFRY", "AdministrativeAreaRef": "110", "code": "9100BRITFRY", "NPTG": "E0054414", "ATCO": "553", "CRS_code": "BNF" }, "geometry": { "type": "Point", "coordinates": [ -3.81925224618, 51.637895970199999 ] } },
{ "type": "Feature", "properties": { "Name": "Brithdir Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brithdir Rail Station", "TIPLOC": "BRITHDR", "CRS": "BHD", "StopAreaCode": "910GBRITHDR", "AdministrativeAreaRef": "110", "code": "9100BRITHDR", "NPTG": "E0035691", "ATCO": "554", "CRS_code": "BHD" }, "geometry": { "type": "Point", "coordinates": [ -3.22872020561, 51.710302486700002 ] } },
{ "type": "Feature", "properties": { "Name": "Brixton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brixton Rail Station", "TIPLOC": "BRIXTON", "CRS": "BRX", "StopAreaCode": "910GBRIXTON", "AdministrativeAreaRef": "110", "code": "9100BRIXTON", "NPTG": "E0034628", "ATCO": "490", "CRS_code": "BRX" }, "geometry": { "type": "Point", "coordinates": [ -0.11418339852, 51.463298925549999 ] } },
{ "type": "Feature", "properties": { "Name": "Brookmans Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brookmans Park Rail Station", "TIPLOC": "BRKMNPK", "CRS": "BPK", "StopAreaCode": "910GBRKMNPK", "AdministrativeAreaRef": "110", "code": "9100BRKMNPK", "NPTG": "E0014307", "ATCO": "210", "CRS_code": "BPK" }, "geometry": { "type": "Point", "coordinates": [ -0.20454864997, 51.721061764390001 ] } },
{ "type": "Feature", "properties": { "Name": "Conway Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Conway Park Rail Station", "TIPLOC": "BRKNCPK", "CRS": "CNP", "StopAreaCode": "910GBRKNCPK", "AdministrativeAreaRef": "110", "code": "9100BRKNCPK", "NPTG": "E0029614", "ATCO": "280", "CRS_code": "CNP" }, "geometry": { "type": "Point", "coordinates": [ -3.02267078544, 53.393358350820002 ] } },
{ "type": "Feature", "properties": { "Name": "Birkenhead Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birkenhead Central Rail Station", "TIPLOC": "BRKNHDC", "CRS": "BKC", "StopAreaCode": "910GBRKNHDC", "AdministrativeAreaRef": "110", "code": "9100BRKNHDC", "NPTG": "E0029614", "ATCO": "280", "CRS_code": "BKC" }, "geometry": { "type": "Point", "coordinates": [ -3.02082065372, 53.388313391419999 ] } },
{ "type": "Feature", "properties": { "Name": "Birkenhead North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birkenhead North Rail Station", "TIPLOC": "BRKNHDN", "CRS": "BKN", "StopAreaCode": "910GBRKNHDN", "AdministrativeAreaRef": "110", "code": "9100BRKNHDN", "NPTG": "E0029614", "ATCO": "280", "CRS_code": "BKN" }, "geometry": { "type": "Point", "coordinates": [ -3.05753314281, 53.404434641690003 ] } },
{ "type": "Feature", "properties": { "Name": "Birkenhead Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birkenhead Park Rail Station", "TIPLOC": "BRKNHDP", "CRS": "BKP", "StopAreaCode": "910GBRKNHDP", "AdministrativeAreaRef": "110", "code": "9100BRKNHDP", "NPTG": "E0029615", "ATCO": "280", "CRS_code": "BKP" }, "geometry": { "type": "Point", "coordinates": [ -3.0391007784, 53.397405321290002 ] } },
{ "type": "Feature", "properties": { "Name": "Brookwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brookwood Rail Station", "TIPLOC": "BRKWOOD", "CRS": "BKO", "StopAreaCode": "910GBRKWOOD", "AdministrativeAreaRef": "110", "code": "9100BRKWOOD", "NPTG": "E0025889", "ATCO": "400", "CRS_code": "BKO" }, "geometry": { "type": "Point", "coordinates": [ -0.63574781605, 51.303757926940001 ] } },
{ "type": "Feature", "properties": { "Name": "Berrylands Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Berrylands Rail Station", "TIPLOC": "BRLANDS", "CRS": "BRS", "StopAreaCode": "910GBRLANDS", "AdministrativeAreaRef": "110", "code": "9100BRLANDS", "NPTG": "N0060702", "ATCO": "490", "CRS_code": "BRS" }, "geometry": { "type": "Point", "coordinates": [ -0.28071358953, 51.399045183959998 ] } },
{ "type": "Feature", "properties": { "Name": "Burley Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burley Park Rail Station", "TIPLOC": "BRLEYPK", "CRS": "BUY", "StopAreaCode": "910GBRLEYPK", "AdministrativeAreaRef": "110", "code": "9100BRLEYPK", "NPTG": "E0032379", "ATCO": "450", "CRS_code": "BUY" }, "geometry": { "type": "Point", "coordinates": [ -1.57776751798, 53.812030178599997 ] } },
{ "type": "Feature", "properties": { "Name": "Bromborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bromborough Rail Station", "TIPLOC": "BRMB", "CRS": "BOM", "StopAreaCode": "910GBRMB", "AdministrativeAreaRef": "110", "code": "9100BRMB", "NPTG": "E0029637", "ATCO": "280", "CRS_code": "BOM" }, "geometry": { "type": "Point", "coordinates": [ -2.98689536144, 53.321846357440002 ] } },
{ "type": "Feature", "properties": { "Name": "Bromborough Rake Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bromborough Rake Rail Station", "TIPLOC": "BRMBRK", "CRS": "BMR", "StopAreaCode": "910GBRMBRK", "AdministrativeAreaRef": "110", "code": "9100BRMBRK", "NPTG": "E0029637", "ATCO": "280", "CRS_code": "BMR" }, "geometry": { "type": "Point", "coordinates": [ -2.98946892637, 53.32990619305 ] } },
{ "type": "Feature", "properties": { "Name": "Bromley Cross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bromley Cross Rail Station", "TIPLOC": "BRMCRSS", "CRS": "BMC", "StopAreaCode": "910GBRMCRSS", "AdministrativeAreaRef": "110", "code": "9100BRMCRSS", "NPTG": "E0028618", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.41089878029, 53.614040750059999 ] } },
{ "type": "Feature", "properties": { "Name": "Bramley (West Yorks) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bramley (West Yorks) Rail Station", "TIPLOC": "BRMLYSR", "CRS": "BLE", "StopAreaCode": "910GBRMLYSR", "AdministrativeAreaRef": "110", "code": "9100BRMLYSR", "NPTG": "E0032334", "ATCO": "450", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.63720617396, 53.805348732719999 ] } },
{ "type": "Feature", "properties": { "Name": "Barmouth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barmouth Rail Station", "TIPLOC": "BRMOUTH", "CRS": "BRM", "StopAreaCode": "910GBRMOUTH", "AdministrativeAreaRef": "110", "code": "9100BRMOUTH", "NPTG": "E0054266", "ATCO": "512", "CRS_code": "BRM" }, "geometry": { "type": "Point", "coordinates": [ -4.05659575006, 52.722890567439997 ] } },
{ "type": "Feature", "properties": { "Name": "Brampton (Cumbria) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brampton (Cumbria) Rail Station", "TIPLOC": "BRMPTNC", "CRS": "BMP", "StopAreaCode": "910GBRMPTNC", "AdministrativeAreaRef": "110", "code": "9100BRMPTNC", "NPTG": "E0055500", "ATCO": "090", "CRS_code": "BMP" }, "geometry": { "type": "Point", "coordinates": [ -2.7029471921, 54.932390279810001 ] } },
{ "type": "Feature", "properties": { "Name": "Bromsgrove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bromsgrove Rail Station", "TIPLOC": "BRMSGRV", "CRS": "BMV", "StopAreaCode": "910GBRMSGRV", "AdministrativeAreaRef": "110", "code": "9100BRMSGRV", "NPTG": "E0057705", "ATCO": "200", "CRS_code": "BMV" }, "geometry": { "type": "Point", "coordinates": [ -2.04977859201, 52.320604145120001 ] } },
{ "type": "Feature", "properties": { "Name": "Branchton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Branchton Rail Station", "TIPLOC": "BRNCHTN", "CRS": "BCN", "StopAreaCode": "910GBRNCHTN", "AdministrativeAreaRef": "110", "code": "9100BRNCHTN", "NPTG": "N0068023", "ATCO": "613", "CRS_code": "BCN" }, "geometry": { "type": "Point", "coordinates": [ -4.8035481115, 55.940595640780003 ] } },
{ "type": "Feature", "properties": { "Name": "Brinnington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brinnington Rail Station", "TIPLOC": "BRNGTN", "CRS": "BNT", "StopAreaCode": "910GBRNGTN", "AdministrativeAreaRef": "110", "code": "9100BRNGTN", "NPTG": "E0028605", "ATCO": "180", "CRS_code": "BNT" }, "geometry": { "type": "Point", "coordinates": [ -2.13511987886, 53.432116462899998 ] } },
{ "type": "Feature", "properties": { "Name": "Barnehurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnehurst Rail Station", "TIPLOC": "BRNHRST", "CRS": "BNH", "StopAreaCode": "910GBRNHRST", "AdministrativeAreaRef": "110", "code": "9100BRNHRST", "NPTG": "E0033996", "ATCO": "490", "CRS_code": "BNH" }, "geometry": { "type": "Point", "coordinates": [ 0.15964630799, 51.464959129310003 ] } },
{ "type": "Feature", "properties": { "Name": "Burnham-on-Crouch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burnham-on-Crouch Rail Station", "TIPLOC": "BRNMONC", "CRS": "BUU", "StopAreaCode": "910GBRNMONC", "AdministrativeAreaRef": "110", "code": "9100BRNMONC", "NPTG": "E0055814", "ATCO": "150", "CRS_code": "BUU" }, "geometry": { "type": "Point", "coordinates": [ 0.81402793935, 51.633657825059998 ] } },
{ "type": "Feature", "properties": { "Name": "Barnstaple Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barnstaple Rail Station", "TIPLOC": "BRNSTPL", "CRS": "BNP", "StopAreaCode": "910GBRNSTPL", "AdministrativeAreaRef": "110", "code": "9100BRNSTPL", "NPTG": "E0045349", "ATCO": "110", "CRS_code": "BNP" }, "geometry": { "type": "Point", "coordinates": [ -4.06311685349, 51.073969533240003 ] } },
{ "type": "Feature", "properties": { "Name": "Berney Arms Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Berney Arms Rail Station", "TIPLOC": "BRNYARM", "CRS": "BYA", "StopAreaCode": "910GBRNYARM", "AdministrativeAreaRef": "110", "code": "9100BRNYARM", "NPTG": "E0017806", "ATCO": "290", "CRS_code": "BYA" }, "geometry": { "type": "Point", "coordinates": [ 1.63037565597, 52.589787160740002 ] } },
{ "type": "Feature", "properties": { "Name": "Broad Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Broad Green Rail Station", "TIPLOC": "BROADGR", "CRS": "BGE", "StopAreaCode": "910GBROADGR", "AdministrativeAreaRef": "110", "code": "9100BROADGR", "NPTG": "E0029636", "ATCO": "280", "CRS_code": "BGE" }, "geometry": { "type": "Point", "coordinates": [ -2.89348391276, 53.406503288830002 ] } },
{ "type": "Feature", "properties": { "Name": "Brockley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brockley Rail Station", "TIPLOC": "BROCKLY", "CRS": "BCY", "StopAreaCode": "910GBROCKLY", "AdministrativeAreaRef": "110", "code": "9100BROCKLY", "NPTG": "E0034658", "ATCO": "490", "CRS_code": "BCY" }, "geometry": { "type": "Point", "coordinates": [ -0.03753660945, 51.464648846149998 ] } },
{ "type": "Feature", "properties": { "Name": "Bromley North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bromley North Rail Station", "TIPLOC": "BROMLYN", "CRS": "BMN", "StopAreaCode": "910GBROMLYN", "AdministrativeAreaRef": "110", "code": "9100BROMLYN", "NPTG": "N0060488", "ATCO": "490", "CRS_code": "BMN" }, "geometry": { "type": "Point", "coordinates": [ 0.01699272077, 51.408327722380001 ] } },
{ "type": "Feature", "properties": { "Name": "Bromley South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bromley South Rail Station", "TIPLOC": "BROMLYS", "CRS": "BMS", "StopAreaCode": "910GBROMLYS", "AdministrativeAreaRef": "110", "code": "9100BROMLYS", "NPTG": "N0060488", "ATCO": "490", "CRS_code": "BMS" }, "geometry": { "type": "Point", "coordinates": [ 0.01734411348, 51.399976315609997 ] } },
{ "type": "Feature", "properties": { "Name": "Broome Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Broome Rail Station", "TIPLOC": "BROOME", "CRS": "BME", "StopAreaCode": "910GBROOME", "AdministrativeAreaRef": "110", "code": "9100BROOME", "NPTG": "E0021886", "ATCO": "350", "CRS_code": "BME" }, "geometry": { "type": "Point", "coordinates": [ -2.88520749901, 52.422771579280003 ] } },
{ "type": "Feature", "properties": { "Name": "Brora Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brora Rail Station", "TIPLOC": "BRORA", "CRS": "BRA", "StopAreaCode": "910GBRORA", "AdministrativeAreaRef": "110", "code": "9100BRORA", "NPTG": "ES000476", "ATCO": "670", "CRS_code": "BRA" }, "geometry": { "type": "Point", "coordinates": [ -3.85228286576, 58.012950224039997 ] } },
{ "type": "Feature", "properties": { "Name": "Brough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brough Rail Station", "TIPLOC": "BROUGH", "CRS": "BUH", "StopAreaCode": "910GBROUGH", "AdministrativeAreaRef": "110", "code": "9100BROUGH", "NPTG": "E0036884", "ATCO": "220", "CRS_code": "BUH" }, "geometry": { "type": "Point", "coordinates": [ -0.57872415332, 53.72696040996 ] } },
{ "type": "Feature", "properties": { "Name": "Broxbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Broxbourne Rail Station", "TIPLOC": "BROXBRN", "CRS": "BXB", "StopAreaCode": "910GBROXBRN", "AdministrativeAreaRef": "110", "code": "9100BROXBRN", "NPTG": "E0013701", "ATCO": "210", "CRS_code": "BXB" }, "geometry": { "type": "Point", "coordinates": [ -0.01108663946, 51.746910397150003 ] } },
{ "type": "Feature", "properties": { "Name": "Barrhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barrhill Rail Station", "TIPLOC": "BRRHL", "CRS": "BRL", "StopAreaCode": "910GBRRHL", "AdministrativeAreaRef": "110", "code": "9100BRRHL", "NPTG": "N0068007", "ATCO": "619", "CRS_code": "BRL" }, "geometry": { "type": "Point", "coordinates": [ -4.7817810548, 55.0970046483 ] } },
{ "type": "Feature", "properties": { "Name": "Barry Links Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barry Links Rail Station", "TIPLOC": "BRRYLNK", "CRS": "BYL", "StopAreaCode": "910GBRRYLNK", "AdministrativeAreaRef": "110", "code": "9100BRRYLNK", "NPTG": "ES000301", "ATCO": "649", "CRS_code": "BYL" }, "geometry": { "type": "Point", "coordinates": [ -2.74544172418, 56.493148884679997 ] } },
{ "type": "Feature", "properties": { "Name": "Burscough Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burscough Bridge Rail Station", "TIPLOC": "BRSCGHB", "CRS": "BCB", "StopAreaCode": "910GBRSCGHB", "AdministrativeAreaRef": "110", "code": "9100BRSCGHB", "NPTG": "E0016472", "ATCO": "250", "CRS_code": "BCB" }, "geometry": { "type": "Point", "coordinates": [ -2.84087983477, 53.605256558039997 ] } },
{ "type": "Feature", "properties": { "Name": "Burscough Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burscough Junction Rail Station", "TIPLOC": "BRSCGHJ", "CRS": "BCJ", "StopAreaCode": "910GBRSCGHJ", "AdministrativeAreaRef": "110", "code": "9100BRSCGHJ", "NPTG": "E0016473", "ATCO": "250", "CRS_code": "BCJ" }, "geometry": { "type": "Point", "coordinates": [ -2.8406052465, 53.597519357320003 ] } },
{ "type": "Feature", "properties": { "Name": "Burnside (Strathclyde) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burnside (Strathclyde) Rail Station", "TIPLOC": "BRSDE", "CRS": "BUI", "StopAreaCode": "910GBRSDE", "AdministrativeAreaRef": "110", "code": "9100BRSDE", "NPTG": "N0076083", "ATCO": "615", "CRS_code": "BUI" }, "geometry": { "type": "Point", "coordinates": [ -4.20238937676, 55.816926280159997 ] } },
{ "type": "Feature", "properties": { "Name": "Broadstairs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Broadstairs Rail Station", "TIPLOC": "BRSR", "CRS": "BSR", "StopAreaCode": "910GBRSR", "AdministrativeAreaRef": "110", "code": "9100BRSR", "NPTG": "E0015402", "ATCO": "240", "CRS_code": "BSR" }, "geometry": { "type": "Point", "coordinates": [ 1.43356069938, 51.360674753470001 ] } },
{ "type": "Feature", "properties": { "Name": "Bristol Temple Meads Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bristol Temple Meads Rail Station", "TIPLOC": "BRSTLTM", "CRS": "BRI", "StopAreaCode": "910GBRSTLTM", "AdministrativeAreaRef": "110", "code": "9100BRSTLTM", "NPTG": "E0057160", "ATCO": "010", "CRS_code": "BRI" }, "geometry": { "type": "Point", "coordinates": [ -2.58131524969, 51.449143900679999 ] } },
{ "type": "Feature", "properties": { "Name": "Bristol Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bristol Parkway Rail Station", "TIPLOC": "BRSTPWY", "CRS": "BPW", "StopAreaCode": "910GBRSTPWY", "AdministrativeAreaRef": "110", "code": "9100BRSTPWY", "NPTG": "E0053725", "ATCO": "017", "CRS_code": "BPW" }, "geometry": { "type": "Point", "coordinates": [ -2.54216306394, 51.513801210609998 ] } },
{ "type": "Feature", "properties": { "Name": "Barton-on-Humber Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Barton-on-Humber Rail Station", "TIPLOC": "BRTHMBR", "CRS": "BAU", "StopAreaCode": "910GBRTHMBR", "AdministrativeAreaRef": "110", "code": "9100BRTHMBR", "NPTG": "E0055055", "ATCO": "227", "CRS_code": "BAU" }, "geometry": { "type": "Point", "coordinates": [ -0.44343665567, 53.68891863124 ] } },
{ "type": "Feature", "properties": { "Name": "Burton Joyce Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burton Joyce Rail Station", "TIPLOC": "BRTJYC", "CRS": "BUJ", "StopAreaCode": "910GBRTJYC", "AdministrativeAreaRef": "110", "code": "9100BRTJYC", "NPTG": "E0050097", "ATCO": "330", "CRS_code": "BUJ" }, "geometry": { "type": "Point", "coordinates": [ -1.04087750627, 52.983441840339999 ] } },
{ "type": "Feature", "properties": { "Name": "Brentwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brentwood Rail Station", "TIPLOC": "BRTWOOD", "CRS": "BRE", "StopAreaCode": "910GBRTWOOD", "AdministrativeAreaRef": "110", "code": "9100BRTWOOD", "NPTG": "E0055780", "ATCO": "150", "CRS_code": "BRE" }, "geometry": { "type": "Point", "coordinates": [ 0.29958588082, 51.613605244070001 ] } },
{ "type": "Feature", "properties": { "Name": "Bruce Grove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bruce Grove Rail Station", "TIPLOC": "BRUCGRV", "CRS": "BCV", "StopAreaCode": "910GBRUCGRV", "AdministrativeAreaRef": "110", "code": "9100BRUCGRV", "NPTG": "N0065127", "ATCO": "490", "CRS_code": "BCV" }, "geometry": { "type": "Point", "coordinates": [ -0.06986698816, 51.593959122720001 ] } },
{ "type": "Feature", "properties": { "Name": "Brundall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brundall Rail Station", "TIPLOC": "BRUNDAL", "CRS": "BDA", "StopAreaCode": "910GBRUNDAL", "AdministrativeAreaRef": "110", "code": "9100BRUNDAL", "NPTG": "E0048449", "ATCO": "290", "CRS_code": "BDA" }, "geometry": { "type": "Point", "coordinates": [ 1.43929896138, 52.619483514050003 ] } },
{ "type": "Feature", "properties": { "Name": "Brundall Gardens Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brundall Gardens Rail Station", "TIPLOC": "BRUNDLG", "CRS": "BGA", "StopAreaCode": "910GBRUNDLG", "AdministrativeAreaRef": "110", "code": "9100BRUNDLG", "NPTG": "E0048449", "ATCO": "290", "CRS_code": "BGA" }, "geometry": { "type": "Point", "coordinates": [ 1.41841639227, 52.623443309759999 ] } },
{ "type": "Feature", "properties": { "Name": "Brunstane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brunstane Rail Station", "TIPLOC": "BRUSTAN", "CRS": "BSU", "StopAreaCode": "910GBRUSTAN", "AdministrativeAreaRef": "110", "code": "9100BRUSTAN", "NPTG": "N0067244", "ATCO": "620", "CRS_code": "BSU" }, "geometry": { "type": "Point", "coordinates": [ -3.10098600925, 55.942510734990002 ] } },
{ "type": "Feature", "properties": { "Name": "Bruton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bruton Rail Station", "TIPLOC": "BRUTON", "CRS": "BRU", "StopAreaCode": "910GBRUTON", "AdministrativeAreaRef": "110", "code": "9100BRUTON", "NPTG": "E0050898", "ATCO": "360", "CRS_code": "BRU" }, "geometry": { "type": "Point", "coordinates": [ -2.44707347109, 51.111638925139999 ] } },
{ "type": "Feature", "properties": { "Name": "Bruxelles Midi Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Bruxelles Midi Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100BRUXMID", "NPTG": "E0015169", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.39398862175, 51.074006545940001 ] } },
{ "type": "Feature", "properties": { "Name": "Berwick-upon-Tweed Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Berwick-upon-Tweed Rail Station", "TIPLOC": "BRWCKUT", "CRS": "BWK", "StopAreaCode": "910GBRWCKUT", "AdministrativeAreaRef": "110", "code": "9100BRWCKUT", "NPTG": "E0056417", "ATCO": "310", "CRS_code": "BWK" }, "geometry": { "type": "Point", "coordinates": [ -2.01097332759, 55.774337247230001 ] } },
{ "type": "Feature", "properties": { "Name": "Brockley Whins Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Brockley Whins Rail Station", "TIPLOC": "BRWHINS", "CRS": "BNR", "StopAreaCode": "910GBRWHINS", "AdministrativeAreaRef": "110", "code": "9100BRWHINS", "NPTG": "N0077815", "ATCO": "410", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.46135324951, 54.959544056859997 ] } },
{ "type": "Feature", "properties": { "Name": "Bryn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bryn Rail Station", "TIPLOC": "BRYN", "CRS": "BYN", "StopAreaCode": "910GBRYN", "AdministrativeAreaRef": "110", "code": "9100BRYN", "NPTG": "E0028641", "ATCO": "180", "CRS_code": "BYN" }, "geometry": { "type": "Point", "coordinates": [ -2.64721360036, 53.499866529179997 ] } },
{ "type": "Feature", "properties": { "Name": "Braystones Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Braystones Rail Station", "TIPLOC": "BRYSTNS", "CRS": "BYS", "StopAreaCode": "910GBRYSTNS", "AdministrativeAreaRef": "110", "code": "9100BRYSTNS", "NPTG": "E0005551", "ATCO": "090", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.54182575496, 54.439359998050001 ] } },
{ "type": "Feature", "properties": { "Name": "Bishop Auckland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bishop Auckland Rail Station", "TIPLOC": "BSAUKLD", "CRS": "BIA", "StopAreaCode": "910GBSAUKLD", "AdministrativeAreaRef": "110", "code": "9100BSAUKLD", "NPTG": "E0055727", "ATCO": "130", "CRS_code": "BIA" }, "geometry": { "type": "Point", "coordinates": [ -1.6777149104, 54.657195268300001 ] } },
{ "type": "Feature", "properties": { "Name": "Bishop Auckland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bishop Auckland Rail Station", "TIPLOC": "BSAUWEA", "CRS": "BIA", "StopAreaCode": "910GBSAUWEA", "AdministrativeAreaRef": "110", "code": "9100BSAUWEA", "NPTG": "E0055727", "ATCO": "130", "CRS_code": "BIA" }, "geometry": { "type": "Point", "coordinates": [ -1.6776994103, 54.657195227099997 ] } },
{ "type": "Feature", "properties": { "Name": "Bescot Stadium Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bescot Stadium Rail Station", "TIPLOC": "BSCTSTA", "CRS": "BSC", "StopAreaCode": "910GBSCTSTA", "AdministrativeAreaRef": "110", "code": "9100BSCTSTA", "NPTG": "E0031346", "ATCO": "430", "CRS_code": "BSC" }, "geometry": { "type": "Point", "coordinates": [ -1.9911054766, 52.563093136120003 ] } },
{ "type": "Feature", "properties": { "Name": "Bearsden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bearsden Rail Station", "TIPLOC": "BSDN", "CRS": "BRN", "StopAreaCode": "910GBSDN", "AdministrativeAreaRef": "110", "code": "9100BSDN", "NPTG": "ES000318", "ATCO": "611", "CRS_code": "BRN" }, "geometry": { "type": "Point", "coordinates": [ -4.33202012839, 55.917129334009999 ] } },
{ "type": "Feature", "properties": { "Name": "Bishopbriggs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bishopbriggs Rail Station", "TIPLOC": "BSHB", "CRS": "BBG", "StopAreaCode": "910GBSHB", "AdministrativeAreaRef": "110", "code": "9100BSHB", "NPTG": "ES000362", "ATCO": "611", "CRS_code": "BBG" }, "geometry": { "type": "Point", "coordinates": [ -4.22491474935, 55.903878093620001 ] } },
{ "type": "Feature", "properties": { "Name": "Bishops Stortford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bishops Stortford Rail Station", "TIPLOC": "BSHPSFD", "CRS": "BIS", "StopAreaCode": "910GBSHPSFD", "AdministrativeAreaRef": "110", "code": "9100BSHPSFD", "NPTG": "E0046972", "ATCO": "210", "CRS_code": "BIS" }, "geometry": { "type": "Point", "coordinates": [ 0.16489419614, 51.866691382109998 ] } },
{ "type": "Feature", "properties": { "Name": "Basingstoke Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Basingstoke Rail Station", "TIPLOC": "BSNGSTK", "CRS": "BSK", "StopAreaCode": "910GBSNGSTK", "AdministrativeAreaRef": "110", "code": "9100BSNGSTK", "NPTG": "E0057416", "ATCO": "190", "CRS_code": "BSK" }, "geometry": { "type": "Point", "coordinates": [ -1.08726371896, 51.268356913029997 ] } },
{ "type": "Feature", "properties": { "Name": "Bishop's Lydeard Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bishop's Lydeard", "TIPLOC": "BSPSLYD", "CRS": "BIB", "StopAreaCode": "910GBSPSLYD", "AdministrativeAreaRef": "110", "code": "9100BSPSLYD", "NPTG": "E0051010", "ATCO": "360", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.19432975928, 51.054586416639999 ] } },
{ "type": "Feature", "properties": { "Name": "Bishopstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bishopstone Rail Station", "TIPLOC": "BSSN", "CRS": "BIP", "StopAreaCode": "910GBSSN", "AdministrativeAreaRef": "110", "code": "9100BSSN", "NPTG": "E0010532", "ATCO": "140", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.08275700866, 50.780143531599997 ] } },
{ "type": "Feature", "properties": { "Name": "Bearsted Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bearsted Rail Station", "TIPLOC": "BSTD", "CRS": "BSD", "StopAreaCode": "910GBSTD", "AdministrativeAreaRef": "110", "code": "9100BSTD", "NPTG": "E0047193", "ATCO": "240", "CRS_code": "BSD" }, "geometry": { "type": "Point", "coordinates": [ 0.57758048241, 51.275821462240003 ] } },
{ "type": "Feature", "properties": { "Name": "Bury St Edmunds Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bury St Edmunds Rail Station", "TIPLOC": "BSTEDMS", "CRS": "BSE", "StopAreaCode": "910GBSTEDMS", "AdministrativeAreaRef": "110", "code": "9100BSTEDMS", "NPTG": "E0025013", "ATCO": "390", "CRS_code": "BSE" }, "geometry": { "type": "Point", "coordinates": [ 0.71330680091, 52.25376334229 ] } },
{ "type": "Feature", "properties": { "Name": "Betchworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Betchworth Rail Station", "TIPLOC": "BTCHWTH", "CRS": "BTO", "StopAreaCode": "910GBTCHWTH", "AdministrativeAreaRef": "110", "code": "9100BTCHWTH", "NPTG": "E0051778", "ATCO": "400", "CRS_code": "BTO" }, "geometry": { "type": "Point", "coordinates": [ -0.26697293695, 51.248189208379998 ] } },
{ "type": "Feature", "properties": { "Name": "Bathgate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bathgate Rail Station", "TIPLOC": "BTHGATE", "CRS": "BHG", "StopAreaCode": "910GBTHGATE", "AdministrativeAreaRef": "110", "code": "9100BTHGATE", "NPTG": "ES000306", "ATCO": "629", "CRS_code": "BHG" }, "geometry": { "type": "Point", "coordinates": [ -3.636096071, 55.897152204009998 ] } },
{ "type": "Feature", "properties": { "Name": "Bethnal Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bethnal Green Rail Station", "TIPLOC": "BTHNLGR", "CRS": "BET", "StopAreaCode": "910GBTHNLGR", "AdministrativeAreaRef": "110", "code": "9100BTHNLGR", "NPTG": "E0034834", "ATCO": "490", "CRS_code": "BET" }, "geometry": { "type": "Point", "coordinates": [ -0.05956796403, 51.523917268890003 ] } },
{ "type": "Feature", "properties": { "Name": "Butlers Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Butlers Lane Rail Station", "TIPLOC": "BTLRSLA", "CRS": "BUL", "StopAreaCode": "910GBTLRSLA", "AdministrativeAreaRef": "110", "code": "9100BTLRSLA", "NPTG": "E0031771", "ATCO": "430", "CRS_code": "BUL" }, "geometry": { "type": "Point", "coordinates": [ -1.83802010484, 52.592469621239999 ] } },
{ "type": "Feature", "properties": { "Name": "Battlesbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Battlesbridge Rail Station", "TIPLOC": "BTLSBDG", "CRS": "BLB", "StopAreaCode": "910GBTLSBDG", "AdministrativeAreaRef": "110", "code": "9100BTLSBDG", "NPTG": "E0011420", "ATCO": "150", "CRS_code": "BLB" }, "geometry": { "type": "Point", "coordinates": [ 0.56528563473, 51.624825402539997 ] } },
{ "type": "Feature", "properties": { "Name": "Bentley (S Yorks) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bentley (S Yorks) Rail Station", "TIPLOC": "BTLYSY", "CRS": "BYK", "StopAreaCode": "910GBTLYSY", "AdministrativeAreaRef": "110", "code": "9100BTLYSY", "NPTG": "E0030003", "ATCO": "370", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.15094847577, 53.54393639696 ] } },
{ "type": "Feature", "properties": { "Name": "Battersby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Battersby Rail Station", "TIPLOC": "BTRSBY", "CRS": "BTT", "StopAreaCode": "910GBTRSBY", "AdministrativeAreaRef": "110", "code": "9100BTRSBY", "NPTG": "E0018521", "ATCO": "320", "CRS_code": "BTT" }, "geometry": { "type": "Point", "coordinates": [ -1.09297174857, 54.457679995329997 ] } },
{ "type": "Feature", "properties": { "Name": "Buckenham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Buckenham Rail Station", "TIPLOC": "BUCKNHM", "CRS": "BUC", "StopAreaCode": "910GBUCKNHM", "AdministrativeAreaRef": "110", "code": "9100BUCKNHM", "NPTG": "E0017703", "ATCO": "290", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.47032550704, 52.597738412950001 ] } },
{ "type": "Feature", "properties": { "Name": "Bugle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bugle Rail Station", "TIPLOC": "BUGLE", "CRS": "BGL", "StopAreaCode": "910GBUGLE", "AdministrativeAreaRef": "110", "code": "9100BUGLE", "NPTG": "E0004481", "ATCO": "080", "CRS_code": "BGL" }, "geometry": { "type": "Point", "coordinates": [ -4.79210020003, 50.400348704130003 ] } },
{ "type": "Feature", "properties": { "Name": "Builth Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Builth Road Rail Station", "TIPLOC": "BUILTHR", "CRS": "BHR", "StopAreaCode": "910GBUILTHR", "AdministrativeAreaRef": "110", "code": "9100BUILTHR", "NPTG": "E0040810", "ATCO": "561", "CRS_code": "BHR" }, "geometry": { "type": "Point", "coordinates": [ -3.42703258703, 52.169322193740001 ] } },
{ "type": "Feature", "properties": { "Name": "Bulwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bulwell Rail Station", "TIPLOC": "BULWELL", "CRS": "BLW", "StopAreaCode": "910GBULWELL", "AdministrativeAreaRef": "110", "code": "9100BULWELL", "NPTG": "E0040124", "ATCO": "339", "CRS_code": "BLW" }, "geometry": { "type": "Point", "coordinates": [ -1.19623043989, 52.999695488489998 ] } },
{ "type": "Feature", "properties": { "Name": "Bures Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bures Rail Station", "TIPLOC": "BURES", "CRS": "BUE", "StopAreaCode": "910GBURES", "AdministrativeAreaRef": "110", "code": "9100BURES", "NPTG": "N0076766", "ATCO": "150", "CRS_code": "BUE" }, "geometry": { "type": "Point", "coordinates": [ 0.76914393197, 51.971161992390002 ] } },
{ "type": "Feature", "properties": { "Name": "Burgess Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burgess Hill Rail Station", "TIPLOC": "BURGESH", "CRS": "BUG", "StopAreaCode": "910GBURGESH", "AdministrativeAreaRef": "110", "code": "9100BURGESH", "NPTG": "E0052189", "ATCO": "140", "CRS_code": "BUG" }, "geometry": { "type": "Point", "coordinates": [ -0.12741277277, 50.953656116380003 ] } },
{ "type": "Feature", "properties": { "Name": "Burley-in-Wharfedale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burley-in-Wharfedale Rail Station", "TIPLOC": "BURLYIW", "CRS": "BUW", "StopAreaCode": "910GBURLYIW", "AdministrativeAreaRef": "110", "code": "9100BURLYIW", "NPTG": "E0032380", "ATCO": "450", "CRS_code": "BUW" }, "geometry": { "type": "Point", "coordinates": [ -1.75337191602, 53.90815048748 ] } },
{ "type": "Feature", "properties": { "Name": "Burnley Barracks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burnley Barracks Rail Station", "TIPLOC": "BURNLYB", "CRS": "BUB", "StopAreaCode": "910GBURNLYB", "AdministrativeAreaRef": "110", "code": "9100BURNLYB", "NPTG": "E0057499", "ATCO": "250", "CRS_code": "BUB" }, "geometry": { "type": "Point", "coordinates": [ -2.25808570994, 53.790878090109999 ] } },
{ "type": "Feature", "properties": { "Name": "Burnley Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burnley Central Rail Station", "TIPLOC": "BURNLYC", "CRS": "BNC", "StopAreaCode": "910GBURNLYC", "AdministrativeAreaRef": "110", "code": "9100BURNLYC", "NPTG": "E0057499", "ATCO": "250", "CRS_code": "BNC" }, "geometry": { "type": "Point", "coordinates": [ -2.24497101878, 53.793512142010002 ] } },
{ "type": "Feature", "properties": { "Name": "Burnley Manchester Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burnley Manchester Road Rail Station", "TIPLOC": "BURNMR", "CRS": "BYM", "StopAreaCode": "910GBURNMR", "AdministrativeAreaRef": "110", "code": "9100BURNMR", "NPTG": "E0057499", "ATCO": "250", "CRS_code": "BYM" }, "geometry": { "type": "Point", "coordinates": [ -2.24886723007, 53.784965517880003 ] } },
{ "type": "Feature", "properties": { "Name": "Bursledon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bursledon Rail Station", "TIPLOC": "BURSLDN", "CRS": "BUO", "StopAreaCode": "910GBURSLDN", "AdministrativeAreaRef": "110", "code": "9100BURSLDN", "NPTG": "E0046787", "ATCO": "190", "CRS_code": "BUO" }, "geometry": { "type": "Point", "coordinates": [ -1.30503222559, 50.883688191659999 ] } },
{ "type": "Feature", "properties": { "Name": "Burton-on-Trent Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Burton-on-Trent Rail Station", "TIPLOC": "BURTNOT", "CRS": "BUT", "StopAreaCode": "910GBURTNOT", "AdministrativeAreaRef": "110", "code": "9100BURTNOT", "NPTG": "E0056621", "ATCO": "380", "CRS_code": "BUT" }, "geometry": { "type": "Point", "coordinates": [ -1.64245979101, 52.80581549715 ] } },
{ "type": "Feature", "properties": { "Name": "Busby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Busby Rail Station", "TIPLOC": "BUSBY", "CRS": "BUS", "StopAreaCode": "910GBUSBY", "AdministrativeAreaRef": "110", "code": "9100BUSBY", "NPTG": "ES000521", "ATCO": "612", "CRS_code": "BUS" }, "geometry": { "type": "Point", "coordinates": [ -4.26220074769, 55.780339391059997 ] } },
{ "type": "Feature", "properties": { "Name": "Bushey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bushey Rail Station", "TIPLOC": "BUSHEY", "CRS": "BSH", "StopAreaCode": "910GBUSHEY", "AdministrativeAreaRef": "110", "code": "9100BUSHEY", "NPTG": "E0014008", "ATCO": "210", "CRS_code": "BSH" }, "geometry": { "type": "Point", "coordinates": [ -0.38474907806, 51.64558157546 ] } },
{ "type": "Feature", "properties": { "Name": "Bushey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bushey Rail Station", "TIPLOC": "BUSHYDC", "CRS": "BSH", "StopAreaCode": "910GBUSHYDC", "AdministrativeAreaRef": "110", "code": "9100BUSHYDC", "NPTG": "E0014008", "ATCO": "210", "CRS_code": "BSH" }, "geometry": { "type": "Point", "coordinates": [ -0.3853211909, 51.64575130051 ] } },
{ "type": "Feature", "properties": { "Name": "Buxton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Buxton Rail Station", "TIPLOC": "BUXTON", "CRS": "BUX", "StopAreaCode": "910GBUXTON", "AdministrativeAreaRef": "110", "code": "9100BUXTON", "NPTG": "E0007051", "ATCO": "100", "CRS_code": "BUX" }, "geometry": { "type": "Point", "coordinates": [ -1.91286336282, 53.260721248800003 ] } },
{ "type": "Feature", "properties": { "Name": "Bexleyheath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bexleyheath Rail Station", "TIPLOC": "BXLYHTH", "CRS": "BXH", "StopAreaCode": "910GBXLYHTH", "AdministrativeAreaRef": "110", "code": "9100BXLYHTH", "NPTG": "E0033999", "ATCO": "490", "CRS_code": "BXH" }, "geometry": { "type": "Point", "coordinates": [ 0.13373496165, 51.4635001507 ] } },
{ "type": "Feature", "properties": { "Name": "Buxted Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Buxted Rail Station", "TIPLOC": "BXTD", "CRS": "BXD", "StopAreaCode": "910GBXTD", "AdministrativeAreaRef": "110", "code": "9100BXTD", "NPTG": "E0046100", "ATCO": "140", "CRS_code": "BXD" }, "geometry": { "type": "Point", "coordinates": [ 0.13143901164, 50.990012780150003 ] } },
{ "type": "Feature", "properties": { "Name": "Byfleet & New Haw Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Byfleet & New Haw Rail Station", "TIPLOC": "BYFLANH", "CRS": "BFN", "StopAreaCode": "910GBYFLANH", "AdministrativeAreaRef": "110", "code": "9100BYFLANH", "NPTG": "E0025890", "ATCO": "400", "CRS_code": "BFN" }, "geometry": { "type": "Point", "coordinates": [ -0.48138968791, 51.349796647289999 ] } },
{ "type": "Feature", "properties": { "Name": "Bynea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Bynea Rail Station", "TIPLOC": "BYNEA", "CRS": "BYE", "StopAreaCode": "910GBYNEA", "AdministrativeAreaRef": "110", "code": "9100BYNEA", "NPTG": "E0035913", "ATCO": "522", "CRS_code": "BYE" }, "geometry": { "type": "Point", "coordinates": [ -4.09888073461, 51.672031701949997 ] } },
{ "type": "Feature", "properties": { "Name": "Cadoxton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cadoxton Rail Station", "TIPLOC": "CADOXTN", "CRS": "CAD", "StopAreaCode": "910GCADOXTN", "AdministrativeAreaRef": "110", "code": "9100CADOXTN", "NPTG": "E0042827", "ATCO": "572", "CRS_code": "CAD" }, "geometry": { "type": "Point", "coordinates": [ -3.24889536372, 51.412279560969999 ] } },
{ "type": "Feature", "properties": { "Name": "Caergwrle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Caergwrle Rail Station", "TIPLOC": "CAERGWL", "CRS": "CGW", "StopAreaCode": "910GCAERGWL", "AdministrativeAreaRef": "110", "code": "9100CAERGWL", "NPTG": "E0037269", "ATCO": "513", "CRS_code": "CGW" }, "geometry": { "type": "Point", "coordinates": [ -3.03291276566, 53.107863152630003 ] } },
{ "type": "Feature", "properties": { "Name": "Calstock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Calstock Rail Station", "TIPLOC": "CALSTCK", "CRS": "CSK", "StopAreaCode": "910GCALSTCK", "AdministrativeAreaRef": "110", "code": "9100CALSTCK", "NPTG": "E0044451", "ATCO": "080", "CRS_code": "CSK" }, "geometry": { "type": "Point", "coordinates": [ -4.20898753744, 50.49779718872 ] } },
{ "type": "Feature", "properties": { "Name": "Cambridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cambridge Rail Station", "TIPLOC": "CAMBDGE", "CRS": "CBG", "StopAreaCode": "910GCAMBDGE", "AdministrativeAreaRef": "110", "code": "9100CAMBDGE", "NPTG": "E0055326", "ATCO": "050", "CRS_code": "CBG" }, "geometry": { "type": "Point", "coordinates": [ 0.13745655272, 52.19406726687 ] } },
{ "type": "Feature", "properties": { "Name": "Cambridge North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cambridge North Rail Station", "TIPLOC": "CAMBNTH", "CRS": "CMB", "StopAreaCode": "910GCAMBNTH", "AdministrativeAreaRef": "110", "code": "9100CAMBNTH", "NPTG": "N0061156", "ATCO": "050", "CRS_code": "CMB" }, "geometry": { "type": "Point", "coordinates": [ 0.15847881449, 52.224481927669999 ] } },
{ "type": "Feature", "properties": { "Name": "Camelon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Camelon Rail Station", "TIPLOC": "CAMELON", "CRS": "CMO", "StopAreaCode": "910GCAMELON", "AdministrativeAreaRef": "110", "code": "9100CAMELON", "NPTG": "ES000589", "ATCO": "669", "CRS_code": "CMO" }, "geometry": { "type": "Point", "coordinates": [ -3.8176051635, 56.006091567429998 ] } },
{ "type": "Feature", "properties": { "Name": "Cambridge Heath (London) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cambridge Heath (London) Rail Station", "TIPLOC": "CAMHTH", "CRS": "CBH", "StopAreaCode": "910GCAMHTH", "AdministrativeAreaRef": "110", "code": "9100CAMHTH", "NPTG": "E0034834", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.05727898412, 51.531972704600001 ] } },
{ "type": "Feature", "properties": { "Name": "Canley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Canley Rail Station", "TIPLOC": "CANLEY", "CRS": "CNL", "StopAreaCode": "910GCANLEY", "AdministrativeAreaRef": "110", "code": "9100CANLEY", "NPTG": "E0031420", "ATCO": "430", "CRS_code": "CNL" }, "geometry": { "type": "Point", "coordinates": [ -1.54757470481, 52.399240912570001 ] } },
{ "type": "Feature", "properties": { "Name": "London Cannon Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Cannon Street Rail Station", "TIPLOC": "CANONST", "CRS": "CST", "StopAreaCode": "910GCANONST", "AdministrativeAreaRef": "110", "code": "9100CANONST", "NPTG": "E0034195", "ATCO": "490", "CRS_code": "CST" }, "geometry": { "type": "Point", "coordinates": [ -0.09029289895, 51.51138232145 ] } },
{ "type": "Feature", "properties": { "Name": "Carbis Bay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carbis Bay Rail Station", "TIPLOC": "CARBISB", "CRS": "CBB", "StopAreaCode": "910GCARBISB", "AdministrativeAreaRef": "110", "code": "9100CARBISB", "NPTG": "E0004177", "ATCO": "080", "CRS_code": "CBB" }, "geometry": { "type": "Point", "coordinates": [ -5.46326305166, 50.197049556179998 ] } },
{ "type": "Feature", "properties": { "Name": "Cardiff Bay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cardiff Bay Rail Station", "TIPLOC": "CARDFBR", "CRS": "CDB", "StopAreaCode": "910GCARDFBR", "AdministrativeAreaRef": "110", "code": "9100CARDFBR", "NPTG": "N0078138", "ATCO": "571", "CRS_code": "CDB" }, "geometry": { "type": "Point", "coordinates": [ -3.16640289331, 51.467108559629999 ] } },
{ "type": "Feature", "properties": { "Name": "Cardiff Queen Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cardiff Queen Street Rail Station", "TIPLOC": "CARDFQS", "CRS": "CDQ", "StopAreaCode": "910GCARDFQS", "AdministrativeAreaRef": "110", "code": "9100CARDFQS", "NPTG": "E0035815", "ATCO": "571", "CRS_code": "CDQ" }, "geometry": { "type": "Point", "coordinates": [ -3.17018055435, 51.481961532840003 ] } },
{ "type": "Feature", "properties": { "Name": "Carfin Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carfin Rail Station", "TIPLOC": "CARFIN", "CRS": "CRF", "StopAreaCode": "910GCARFIN", "AdministrativeAreaRef": "110", "code": "9100CARFIN", "NPTG": "ES000612", "ATCO": "616", "CRS_code": "CRF" }, "geometry": { "type": "Point", "coordinates": [ -3.95625367302, 55.807339069599998 ] } },
{ "type": "Feature", "properties": { "Name": "Cark Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cark Rail Station", "TIPLOC": "CARK", "CRS": "CAK", "StopAreaCode": "910GCARK", "AdministrativeAreaRef": "110", "code": "9100CARK", "NPTG": "E0006174", "ATCO": "090", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.97406361038, 54.177954782690001 ] } },
{ "type": "Feature", "properties": { "Name": "Carlisle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carlisle Rail Station", "TIPLOC": "CARLILE", "CRS": "CAR", "StopAreaCode": "910GCARLILE", "AdministrativeAreaRef": "110", "code": "9100CARLILE", "NPTG": "E0055501", "ATCO": "090", "CRS_code": "CAR" }, "geometry": { "type": "Point", "coordinates": [ -2.93319163297, 54.890651836929997 ] } },
{ "type": "Feature", "properties": { "Name": "Carmyle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carmyle Rail Station", "TIPLOC": "CARMYLE", "CRS": "CML", "StopAreaCode": "910GCARMYLE", "AdministrativeAreaRef": "110", "code": "9100CARMYLE", "NPTG": "N0068034", "ATCO": "609", "CRS_code": "CML" }, "geometry": { "type": "Point", "coordinates": [ -4.15818019274, 55.834336782649999 ] } },
{ "type": "Feature", "properties": { "Name": "Carrbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carrbridge Rail Station", "TIPLOC": "CARRBDG", "CRS": "CAG", "StopAreaCode": "910GCARRBDG", "AdministrativeAreaRef": "110", "code": "9100CARRBDG", "NPTG": "ES000641", "ATCO": "670", "CRS_code": "CAG" }, "geometry": { "type": "Point", "coordinates": [ -3.82820281431, 57.279501329330003 ] } },
{ "type": "Feature", "properties": { "Name": "Caersws Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Caersws Rail Station", "TIPLOC": "CARSWS", "CRS": "CWS", "StopAreaCode": "910GCARSWS", "AdministrativeAreaRef": "110", "code": "9100CARSWS", "NPTG": "E0054561", "ATCO": "561", "CRS_code": "CWS" }, "geometry": { "type": "Point", "coordinates": [ -3.43249814791, 52.5161240085 ] } },
{ "type": "Feature", "properties": { "Name": "Castleford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Castleford Rail Station", "TIPLOC": "CASTLFD", "CRS": "CFD", "StopAreaCode": "910GCASTLFD", "AdministrativeAreaRef": "110", "code": "9100CASTLFD", "NPTG": "E0032425", "ATCO": "450", "CRS_code": "CFD" }, "geometry": { "type": "Point", "coordinates": [ -1.35465259492, 53.72407721634 ] } },
{ "type": "Feature", "properties": { "Name": "Caterham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Caterham Rail Station", "TIPLOC": "CATERHM", "CRS": "CAT", "StopAreaCode": "910GCATERHM", "AdministrativeAreaRef": "110", "code": "9100CATERHM", "NPTG": "E0025686", "ATCO": "400", "CRS_code": "CAT" }, "geometry": { "type": "Point", "coordinates": [ -0.07830704056, 51.282141493810002 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Cross Underground Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Kings Cross Underground Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100CATEZKX", "NPTG": "E0034577", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.12396034402, 51.530270411959997 ] } },
{ "type": "Feature", "properties": { "Name": "Catford Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Catford Bridge Rail Station", "TIPLOC": "CATFBDG", "CRS": "CFB", "StopAreaCode": "910GCATFBDG", "AdministrativeAreaRef": "110", "code": "9100CATFBDG", "NPTG": "E0034659", "ATCO": "490", "CRS_code": "CFB" }, "geometry": { "type": "Point", "coordinates": [ -0.02479109322, 51.444740737849997 ] } },
{ "type": "Feature", "properties": { "Name": "Catford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Catford Rail Station", "TIPLOC": "CATFORD", "CRS": "CTF", "StopAreaCode": "910GCATFORD", "AdministrativeAreaRef": "110", "code": "9100CATFORD", "NPTG": "E0034659", "ATCO": "490", "CRS_code": "CTF" }, "geometry": { "type": "Point", "coordinates": [ -0.02631651466, 51.444406723260002 ] } },
{ "type": "Feature", "properties": { "Name": "Cathays Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cathays Rail Station", "TIPLOC": "CATHAYS", "CRS": "CYS", "StopAreaCode": "910GCATHAYS", "AdministrativeAreaRef": "110", "code": "9100CATHAYS", "NPTG": "E0054001", "ATCO": "571", "CRS_code": "CYS" }, "geometry": { "type": "Point", "coordinates": [ -3.17868332738, 51.488899040690001 ] } },
{ "type": "Feature", "properties": { "Name": "Cattal Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cattal Rail Station", "TIPLOC": "CATTAL", "CRS": "CTL", "StopAreaCode": "910GCATTAL", "AdministrativeAreaRef": "110", "code": "9100CATTAL", "NPTG": "E0049135", "ATCO": "320", "CRS_code": "CTL" }, "geometry": { "type": "Point", "coordinates": [ -1.32053499843, 53.997440048260003 ] } },
{ "type": "Feature", "properties": { "Name": "Wirksworth Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Wirksworth Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GCATZ007", "AdministrativeAreaRef": "110", "code": "9100CATZ007", "NPTG": "E0045103", "ATCO": "100", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.5686620326, 53.082639178939999 ] } },
{ "type": "Feature", "properties": { "Name": "Idridgehay Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Idridgehay Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GCATZ008", "AdministrativeAreaRef": "110", "code": "9100CATZ008", "NPTG": "N0065234", "ATCO": "100", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.56932130445, 53.035987908449997 ] } },
{ "type": "Feature", "properties": { "Name": "Causeland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Causeland Rail Station", "TIPLOC": "CAUSLND", "CRS": "CAU", "StopAreaCode": "910GCAUSLND", "AdministrativeAreaRef": "110", "code": "9100CAUSLND", "NPTG": "E0044454", "ATCO": "080", "CRS_code": "CAU" }, "geometry": { "type": "Point", "coordinates": [ -4.4664478437, 50.405690319949997 ] } },
{ "type": "Feature", "properties": { "Name": "Castle Bar Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Castle Bar Park Rail Station", "TIPLOC": "CBARPAR", "CRS": "CBP", "StopAreaCode": "910GCBARPAR", "AdministrativeAreaRef": "110", "code": "9100CBARPAR", "NPTG": "E0034280", "ATCO": "490", "CRS_code": "CBP" }, "geometry": { "type": "Point", "coordinates": [ -0.33154886226, 51.522930501440001 ] } },
{ "type": "Feature", "properties": { "Name": "Colwyn Bay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Colwyn Bay Rail Station", "TIPLOC": "CBAY", "CRS": "CWB", "StopAreaCode": "910GCBAY", "AdministrativeAreaRef": "110", "code": "9100CBAY", "NPTG": "E0054160", "ATCO": "513", "CRS_code": "CWB" }, "geometry": { "type": "Point", "coordinates": [ -3.72541657289, 53.296358841349999 ] } },
{ "type": "Feature", "properties": { "Name": "Crowborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crowborough Rail Station", "TIPLOC": "CBGH", "CRS": "COH", "StopAreaCode": "910GCBGH", "AdministrativeAreaRef": "110", "code": "9100CBGH", "NPTG": "E0046103", "ATCO": "140", "CRS_code": "COH" }, "geometry": { "type": "Point", "coordinates": [ 0.18801250436, 51.046381564859999 ] } },
{ "type": "Feature", "properties": { "Name": "Cobham & Stoke d'Abernon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cobham & Stoke d'Abernon Rail Station", "TIPLOC": "CBHMSDA", "CRS": "CSD", "StopAreaCode": "910GCBHMSDA", "AdministrativeAreaRef": "110", "code": "9100CBHMSDA", "NPTG": "E0025280", "ATCO": "400", "CRS_code": "CSD" }, "geometry": { "type": "Point", "coordinates": [ -0.38934629501, 51.318100737770003 ] } },
{ "type": "Feature", "properties": { "Name": "Camborne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Camborne Rail Station", "TIPLOC": "CBORNE", "CRS": "CBN", "StopAreaCode": "910GCBORNE", "AdministrativeAreaRef": "110", "code": "9100CBORNE", "NPTG": "E0044521", "ATCO": "080", "CRS_code": "CBN" }, "geometry": { "type": "Point", "coordinates": [ -5.29741079827, 50.21043624691 ] } },
{ "type": "Feature", "properties": { "Name": "Cranbrook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cranbrook Rail Station", "TIPLOC": "CBRK", "CRS": "CBK", "StopAreaCode": "910GCBRK", "AdministrativeAreaRef": "110", "code": "9100CBRK", "NPTG": "N0080430", "ATCO": "110", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.42041535097, 50.750091354879999 ] } },
{ "type": "Feature", "properties": { "Name": "Castle Cary Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Castle Cary Rail Station", "TIPLOC": "CCARY", "CRS": "CLC", "StopAreaCode": "910GCCARY", "AdministrativeAreaRef": "110", "code": "9100CCARY", "NPTG": "E0050901", "ATCO": "360", "CRS_code": "CLC" }, "geometry": { "type": "Point", "coordinates": [ -2.52279433401, 51.099814786659998 ] } },
{ "type": "Feature", "properties": { "Name": "Cathcart Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cathcart Rail Station", "TIPLOC": "CCRT", "CRS": "CCT", "StopAreaCode": "910GCCRT", "AdministrativeAreaRef": "110", "code": "9100CCRT", "NPTG": "ES003916", "ATCO": "609", "CRS_code": "CCT" }, "geometry": { "type": "Point", "coordinates": [ -4.26053606916, 55.817668340460003 ] } },
{ "type": "Feature", "properties": { "Name": "Caldicot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Caldicot Rail Station", "TIPLOC": "CDCOT", "CRS": "CDT", "StopAreaCode": "910GCDCOT", "AdministrativeAreaRef": "110", "code": "9100CDCOT", "NPTG": "E0054378", "ATCO": "533", "CRS_code": "CDT" }, "geometry": { "type": "Point", "coordinates": [ -2.76057347882, 51.584790246330002 ] } },
{ "type": "Feature", "properties": { "Name": "Cardenden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cardenden Rail Station", "TIPLOC": "CDND", "CRS": "CDD", "StopAreaCode": "910GCDND", "AdministrativeAreaRef": "110", "code": "9100CDND", "NPTG": "ES000605", "ATCO": "650", "CRS_code": "CDD" }, "geometry": { "type": "Point", "coordinates": [ -3.26164187607, 56.141255415259998 ] } },
{ "type": "Feature", "properties": { "Name": "Cardonald Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cardonald Rail Station", "TIPLOC": "CDNL", "CRS": "CDO", "StopAreaCode": "910GCDNL", "AdministrativeAreaRef": "110", "code": "9100CDNL", "NPTG": "ES000606", "ATCO": "609", "CRS_code": "CDO" }, "geometry": { "type": "Point", "coordinates": [ -4.3406924604, 55.852568404869999 ] } },
{ "type": "Feature", "properties": { "Name": "Cardross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cardross Rail Station", "TIPLOC": "CDRS", "CRS": "CDR", "StopAreaCode": "910GCDRS", "AdministrativeAreaRef": "110", "code": "9100CDRS", "NPTG": "ES000607", "ATCO": "607", "CRS_code": "CDR" }, "geometry": { "type": "Point", "coordinates": [ -4.65307320297, 55.960378650069998 ] } },
{ "type": "Feature", "properties": { "Name": "Cefn-y-Bedd Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cefn-y-Bedd Rail Station", "TIPLOC": "CEFNYBD", "CRS": "CYB", "StopAreaCode": "910GCEFNYBD", "AdministrativeAreaRef": "110", "code": "9100CEFNYBD", "NPTG": "E0037274", "ATCO": "512", "CRS_code": "CYB" }, "geometry": { "type": "Point", "coordinates": [ -3.03105272941, 53.09879997593 ] } },
{ "type": "Feature", "properties": { "Name": "Croftfoot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Croftfoot Rail Station", "TIPLOC": "CFFT", "CRS": "CFF", "StopAreaCode": "910GCFFT", "AdministrativeAreaRef": "110", "code": "9100CFFT", "NPTG": "N0068060", "ATCO": "609", "CRS_code": "CFF" }, "geometry": { "type": "Point", "coordinates": [ -4.22832464295, 55.818256411139998 ] } },
{ "type": "Feature", "properties": { "Name": "Crossflatts Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crossflatts Rail Station", "TIPLOC": "CFLATTS", "CRS": "CFL", "StopAreaCode": "910GCFLATTS", "AdministrativeAreaRef": "110", "code": "9100CFLATTS", "NPTG": "E0032549", "ATCO": "450", "CRS_code": "CFL" }, "geometry": { "type": "Point", "coordinates": [ -1.84488597753, 53.85846581989 ] } },
{ "type": "Feature", "properties": { "Name": "Crofton Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crofton Park Rail Station", "TIPLOC": "CFPK", "CRS": "CFT", "StopAreaCode": "910GCFPK", "AdministrativeAreaRef": "110", "code": "9100CFPK", "NPTG": "E0034658", "ATCO": "490", "CRS_code": "CFT" }, "geometry": { "type": "Point", "coordinates": [ -0.03650296237, 51.455189202500001 ] } },
{ "type": "Feature", "properties": { "Name": "Chafford Hundred Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chafford Hundred Rail Station", "TIPLOC": "CHADHDD", "CRS": "CFH", "StopAreaCode": "910GCHADHDD", "AdministrativeAreaRef": "110", "code": "9100CHADHDD", "NPTG": "N0060755", "ATCO": "159", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.28744702092, 51.485557237800002 ] } },
{ "type": "Feature", "properties": { "Name": "Chapelton (Devon) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chapelton (Devon) Rail Station", "TIPLOC": "CHAPLTN", "CRS": "CPN", "StopAreaCode": "910GCHAPLTN", "AdministrativeAreaRef": "110", "code": "9100CHAPLTN", "NPTG": "E0007963", "ATCO": "110", "CRS_code": "CPN" }, "geometry": { "type": "Point", "coordinates": [ -4.02472188316, 51.016535219959998 ] } },
{ "type": "Feature", "properties": { "Name": "Chartham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chartham Rail Station", "TIPLOC": "CHARTHM", "CRS": "CRT", "StopAreaCode": "910GCHARTHM", "AdministrativeAreaRef": "110", "code": "9100CHARTHM", "NPTG": "E0047123", "ATCO": "240", "CRS_code": "CRT" }, "geometry": { "type": "Point", "coordinates": [ 1.01803940064, 51.257265867539999 ] } },
{ "type": "Feature", "properties": { "Name": "Chassen Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chassen Road Rail Station", "TIPLOC": "CHASNRD", "CRS": "CSR", "StopAreaCode": "910GCHASNRD", "AdministrativeAreaRef": "110", "code": "9100CHASNRD", "NPTG": "E0028410", "ATCO": "180", "CRS_code": "CSR" }, "geometry": { "type": "Point", "coordinates": [ -2.36823287186, 53.44615929591 ] } },
{ "type": "Feature", "properties": { "Name": "Chatham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chatham Rail Station", "TIPLOC": "CHATHAM", "CRS": "CTM", "StopAreaCode": "910GCHATHAM", "AdministrativeAreaRef": "110", "code": "9100CHATHAM", "NPTG": "E0039105", "ATCO": "249", "CRS_code": "CTM" }, "geometry": { "type": "Point", "coordinates": [ 0.52115082745, 51.380378589400003 ] } },
{ "type": "Feature", "properties": { "Name": "Charlbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Charlbury Rail Station", "TIPLOC": "CHBURY", "CRS": "CBY", "StopAreaCode": "910GCHBURY", "AdministrativeAreaRef": "110", "code": "9100CHBURY", "NPTG": "E0021019", "ATCO": "340", "CRS_code": "CBY" }, "geometry": { "type": "Point", "coordinates": [ -1.48969377191, 51.872427537500002 ] } },
{ "type": "Feature", "properties": { "Name": "Chichester Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chichester Rail Station", "TIPLOC": "CHCHSTR", "CRS": "CCH", "StopAreaCode": "910GCHCHSTR", "AdministrativeAreaRef": "110", "code": "9100CHCHSTR", "NPTG": "E0052092", "ATCO": "440", "CRS_code": "CCH" }, "geometry": { "type": "Point", "coordinates": [ -0.78174886249, 50.832053430400002 ] } },
{ "type": "Feature", "properties": { "Name": "Cheadle Hulme Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cheadle Hulme Rail Station", "TIPLOC": "CHDH", "CRS": "CHU", "StopAreaCode": "910GCHDH", "AdministrativeAreaRef": "110", "code": "9100CHDH", "NPTG": "E0028700", "ATCO": "180", "CRS_code": "CHU" }, "geometry": { "type": "Point", "coordinates": [ -2.18830269982, 53.375928742479999 ] } },
{ "type": "Feature", "properties": { "Name": "Cheddington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cheddington Rail Station", "TIPLOC": "CHDNGTN", "CRS": "CED", "StopAreaCode": "910GCHDNGTN", "AdministrativeAreaRef": "110", "code": "9100CHDNGTN", "NPTG": "E0043963", "ATCO": "040", "CRS_code": "CED" }, "geometry": { "type": "Point", "coordinates": [ -0.66215178661, 51.857918243839997 ] } },
{ "type": "Feature", "properties": { "Name": "Chadwell Heath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chadwell Heath Rail Station", "TIPLOC": "CHDWLHT", "CRS": "CTH", "StopAreaCode": "910GCHDWLHT", "AdministrativeAreaRef": "110", "code": "9100CHDWLHT", "NPTG": "E0033932", "ATCO": "490", "CRS_code": "CTH" }, "geometry": { "type": "Point", "coordinates": [ 0.128958453, 51.56803876136 ] } },
{ "type": "Feature", "properties": { "Name": "Cheam Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cheam Rail Station", "TIPLOC": "CHEAM", "CRS": "CHE", "StopAreaCode": "910GCHEAM", "AdministrativeAreaRef": "110", "code": "9100CHEAM", "NPTG": "E0034817", "ATCO": "490", "CRS_code": "CHE" }, "geometry": { "type": "Point", "coordinates": [ -0.21416744438, 51.355478919260001 ] } },
{ "type": "Feature", "properties": { "Name": "Chapel-en-le-Frith Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chapel-en-le-Frith Rail Station", "TIPLOC": "CHEF", "CRS": "CEF", "StopAreaCode": "910GCHEF", "AdministrativeAreaRef": "110", "code": "9100CHEF", "NPTG": "E0045124", "ATCO": "100", "CRS_code": "CEF" }, "geometry": { "type": "Point", "coordinates": [ -1.91876237999, 53.31223083 ] } },
{ "type": "Feature", "properties": { "Name": "Chelford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chelford Rail Station", "TIPLOC": "CHELFD", "CRS": "CEL", "StopAreaCode": "910GCHELFD", "AdministrativeAreaRef": "110", "code": "9100CHELFD", "NPTG": "E0044358", "ATCO": "060", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.28057700632, 53.270309837269998 ] } },
{ "type": "Feature", "properties": { "Name": "Chepstow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chepstow Rail Station", "TIPLOC": "CHEPSTW", "CRS": "CPW", "StopAreaCode": "910GCHEPSTW", "AdministrativeAreaRef": "110", "code": "9100CHEPSTW", "NPTG": "E0054379", "ATCO": "533", "CRS_code": "CPW" }, "geometry": { "type": "Point", "coordinates": [ -2.67190520826, 51.640179233200001 ] } },
{ "type": "Feature", "properties": { "Name": "Cheshunt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cheshunt Rail Station", "TIPLOC": "CHESHNT", "CRS": "CHN", "StopAreaCode": "910GCHESHNT", "AdministrativeAreaRef": "110", "code": "9100CHESHNT", "NPTG": "E0057447", "ATCO": "210", "CRS_code": "CHN" }, "geometry": { "type": "Point", "coordinates": [ -0.02395964109, 51.702876188780003 ] } },
{ "type": "Feature", "properties": { "Name": "Chetnole Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chetnole Rail Station", "TIPLOC": "CHETNOL", "CRS": "CNO", "StopAreaCode": "910GCHETNOL", "AdministrativeAreaRef": "110", "code": "9100CHETNOL", "NPTG": "E0045802", "ATCO": "120", "CRS_code": "CNO" }, "geometry": { "type": "Point", "coordinates": [ -2.57292557649, 50.86636303049 ] } },
{ "type": "Feature", "properties": { "Name": "Chesterfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chesterfield Rail Station", "TIPLOC": "CHFD", "CRS": "CHD", "StopAreaCode": "910GCHFD", "AdministrativeAreaRef": "110", "code": "9100CHFD", "NPTG": "E0057348", "ATCO": "100", "CRS_code": "CHD" }, "geometry": { "type": "Point", "coordinates": [ -1.42011582168, 53.238220144410001 ] } },
{ "type": "Feature", "properties": { "Name": "Church Fenton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Church Fenton Rail Station", "TIPLOC": "CHFN", "CRS": "CHF", "StopAreaCode": "910GCHFN", "AdministrativeAreaRef": "110", "code": "9100CHFN", "NPTG": "E0049541", "ATCO": "320", "CRS_code": "CHF" }, "geometry": { "type": "Point", "coordinates": [ -1.22758877221, 53.826600635429998 ] } },
{ "type": "Feature", "properties": { "Name": "Chathill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chathill Rail Station", "TIPLOC": "CHHL", "CRS": "CHT", "StopAreaCode": "910GCHHL", "AdministrativeAreaRef": "110", "code": "9100CHHL", "NPTG": "E0019685", "ATCO": "310", "CRS_code": "CHT" }, "geometry": { "type": "Point", "coordinates": [ -1.70637513188, 55.536732844169997 ] } },
{ "type": "Feature", "properties": { "Name": "Chingford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chingford Rail Station", "TIPLOC": "CHINGFD", "CRS": "CHI", "StopAreaCode": "910GCHINGFD", "AdministrativeAreaRef": "110", "code": "9100CHINGFD", "NPTG": "E0034865", "ATCO": "490", "CRS_code": "CHI" }, "geometry": { "type": "Point", "coordinates": [ 0.00989712465, 51.633086671949997 ] } },
{ "type": "Feature", "properties": { "Name": "Chippenham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chippenham Rail Station", "TIPLOC": "CHIPNHM", "CRS": "CPM", "StopAreaCode": "910GCHIPNHM", "AdministrativeAreaRef": "110", "code": "9100CHIPNHM", "NPTG": "E0056864", "ATCO": "460", "CRS_code": "CPM" }, "geometry": { "type": "Point", "coordinates": [ -2.11539388746, 51.462487963050002 ] } },
{ "type": "Feature", "properties": { "Name": "Chirk Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chirk Rail Station", "TIPLOC": "CHIRK", "CRS": "CRK", "StopAreaCode": "910GCHIRK", "AdministrativeAreaRef": "110", "code": "9100CHIRK", "NPTG": "E0043419", "ATCO": "350", "CRS_code": "CRK" }, "geometry": { "type": "Point", "coordinates": [ -3.06564310726, 52.933087180450002 ] } },
{ "type": "Feature", "properties": { "Name": "Chiswick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chiswick Rail Station", "TIPLOC": "CHISWCK", "CRS": "CHK", "StopAreaCode": "910GCHISWCK", "AdministrativeAreaRef": "110", "code": "9100CHISWCK", "NPTG": "E0034530", "ATCO": "490", "CRS_code": "CHK" }, "geometry": { "type": "Point", "coordinates": [ -0.26783512786, 51.481136616299999 ] } },
{ "type": "Feature", "properties": { "Name": "Chalfont & Latimer Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chalfont & Latimer Rail Station", "TIPLOC": "CHLFNAL", "CRS": "CFO", "StopAreaCode": "910GCHLFNAL", "AdministrativeAreaRef": "110", "code": "9100CHLFNAL", "NPTG": "E0000559", "ATCO": "040", "CRS_code": "CFO" }, "geometry": { "type": "Point", "coordinates": [ -0.56052631638, 51.668108436920001 ] } },
{ "type": "Feature", "properties": { "Name": "Chalkwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chalkwell Rail Station", "TIPLOC": "CHLKWEL", "CRS": "CHW", "StopAreaCode": "910GCHLKWEL", "AdministrativeAreaRef": "110", "code": "9100CHLKWEL", "NPTG": "E0042040", "ATCO": "158", "CRS_code": "CHW" }, "geometry": { "type": "Point", "coordinates": [ 0.67059269474, 51.53871912412 ] } },
{ "type": "Feature", "properties": { "Name": "Chelmsford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chelmsford Rail Station", "TIPLOC": "CHLMSFD", "CRS": "CHM", "StopAreaCode": "910GCHLMSFD", "AdministrativeAreaRef": "110", "code": "9100CHLMSFD", "NPTG": "N0076773", "ATCO": "150", "CRS_code": "CHM" }, "geometry": { "type": "Point", "coordinates": [ 0.46857219674, 51.736372652119996 ] } },
{ "type": "Feature", "properties": { "Name": "Chelsfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chelsfield Rail Station", "TIPLOC": "CHLSFLD", "CRS": "CLD", "StopAreaCode": "910GCHLSFLD", "AdministrativeAreaRef": "110", "code": "9100CHLSFLD", "NPTG": "E0034082", "ATCO": "490", "CRS_code": "CLD" }, "geometry": { "type": "Point", "coordinates": [ 0.10906990391, 51.356255937130001 ] } },
{ "type": "Feature", "properties": { "Name": "Cheltenham Spa Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cheltenham Spa Rail Station", "TIPLOC": "CHLTNHM", "CRS": "CNM", "StopAreaCode": "910GCHLTNHM", "AdministrativeAreaRef": "110", "code": "9100CHLTNHM", "NPTG": "E0057404", "ATCO": "160", "CRS_code": "CNM" }, "geometry": { "type": "Point", "coordinates": [ -2.09961995509, 51.897397288329998 ] } },
{ "type": "Feature", "properties": { "Name": "Chilworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chilworth Rail Station", "TIPLOC": "CHLWTH", "CRS": "CHL", "StopAreaCode": "910GCHLWTH", "AdministrativeAreaRef": "110", "code": "9100CHLWTH", "NPTG": "E0025359", "ATCO": "400", "CRS_code": "CHL" }, "geometry": { "type": "Point", "coordinates": [ -0.52482405674, 51.21521316874 ] } },
{ "type": "Feature", "properties": { "Name": "Chinley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chinley Rail Station", "TIPLOC": "CHNLY", "CRS": "CLY", "StopAreaCode": "910GCHNLY", "AdministrativeAreaRef": "110", "code": "9100CHNLY", "NPTG": "N0065000", "ATCO": "100", "CRS_code": "CLY" }, "geometry": { "type": "Point", "coordinates": [ -1.94394071845, 53.340289910880003 ] } },
{ "type": "Feature", "properties": { "Name": "Cholsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cholsey Rail Station", "TIPLOC": "CHOLSEY", "CRS": "CHO", "StopAreaCode": "910GCHOLSEY", "AdministrativeAreaRef": "110", "code": "9100CHOLSEY", "NPTG": "E0050344", "ATCO": "340", "CRS_code": "CHO" }, "geometry": { "type": "Point", "coordinates": [ -1.15802288568, 51.570202318280003 ] } },
{ "type": "Feature", "properties": { "Name": "Buckshaw Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Buckshaw Parkway Rail Station", "TIPLOC": "CHORBUK", "CRS": "BSV", "StopAreaCode": "910GCHORBUK", "AdministrativeAreaRef": "110", "code": "9100CHORBUK", "NPTG": "E0057502", "ATCO": "250", "CRS_code": "BSV" }, "geometry": { "type": "Point", "coordinates": [ -2.6608298719, 53.673340996919997 ] } },
{ "type": "Feature", "properties": { "Name": "Chorley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chorley Rail Station", "TIPLOC": "CHORLEY", "CRS": "CRL", "StopAreaCode": "910GCHORLEY", "AdministrativeAreaRef": "110", "code": "9100CHORLEY", "NPTG": "E0057501", "ATCO": "250", "CRS_code": "CRL" }, "geometry": { "type": "Point", "coordinates": [ -2.62684064673, 53.652536069870003 ] } },
{ "type": "Feature", "properties": { "Name": "Church & Oswaldtwistle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Church & Oswaldtwistle Rail Station", "TIPLOC": "CHOS", "CRS": "CTW", "StopAreaCode": "910GCHOS", "AdministrativeAreaRef": "110", "code": "9100CHOS", "NPTG": "E0015880", "ATCO": "250", "CRS_code": "CTW" }, "geometry": { "type": "Point", "coordinates": [ -2.39121185982, 53.750520545710003 ] } },
{ "type": "Feature", "properties": { "Name": "Chapeltown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chapeltown Rail Station", "TIPLOC": "CHPLTWN", "CRS": "CLN", "StopAreaCode": "910GCHPLTWN", "AdministrativeAreaRef": "110", "code": "9100CHPLTWN", "NPTG": "E0030081", "ATCO": "370", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.4662752287, 53.462336252669999 ] } },
{ "type": "Feature", "properties": { "Name": "Chappel & Wakes Colne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chappel & Wakes Colne Rail Station", "TIPLOC": "CHPWKSC", "CRS": "CWC", "StopAreaCode": "910GCHPWKSC", "AdministrativeAreaRef": "110", "code": "9100CHPWKSC", "NPTG": "E0046270", "ATCO": "150", "CRS_code": "CWC" }, "geometry": { "type": "Point", "coordinates": [ 0.75850128553, 51.925905974780001 ] } },
{ "type": "Feature", "properties": { "Name": "Christchurch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Christchurch Rail Station", "TIPLOC": "CHRISTC", "CRS": "CHR", "StopAreaCode": "910GCHRISTC", "AdministrativeAreaRef": "110", "code": "9100CHRISTC", "NPTG": "E0057359", "ATCO": "120", "CRS_code": "CHR" }, "geometry": { "type": "Point", "coordinates": [ -1.78454594311, 50.738214156390001 ] } },
{ "type": "Feature", "properties": { "Name": "Charing Cross (Glasgow) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Charing Cross (Glasgow) Rail Station", "TIPLOC": "CHRNGXG", "CRS": "CHC", "StopAreaCode": "910GCHRNGXG", "AdministrativeAreaRef": "110", "code": "9100CHRNGXG", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "CHC" }, "geometry": { "type": "Point", "coordinates": [ -4.2698199535, 55.86468172851 ] } },
{ "type": "Feature", "properties": { "Name": "Christs Hospital Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Christs Hospital Rail Station", "TIPLOC": "CHRSTSH", "CRS": "CHH", "StopAreaCode": "910GCHRSTSH", "AdministrativeAreaRef": "110", "code": "9100CHRSTSH", "NPTG": "N0061438", "ATCO": "440", "CRS_code": "CHH" }, "geometry": { "type": "Point", "coordinates": [ -0.36355626166, 51.050686012589999 ] } },
{ "type": "Feature", "properties": { "Name": "Chorleywood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chorleywood Rail Station", "TIPLOC": "CHRW", "CRS": "CLW", "StopAreaCode": "910GCHRW", "AdministrativeAreaRef": "110", "code": "9100CHRW", "NPTG": "E0047064", "ATCO": "210", "CRS_code": "CLW" }, "geometry": { "type": "Point", "coordinates": [ -0.51831998183, 51.654248616449998 ] } },
{ "type": "Feature", "properties": { "Name": "London Charing Cross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Charing Cross Rail Station", "TIPLOC": "CHRX", "CRS": "CHX", "StopAreaCode": "910GCHRX", "AdministrativeAreaRef": "110", "code": "9100CHRX", "NPTG": "N0077642", "ATCO": "490", "CRS_code": "CHX" }, "geometry": { "type": "Point", "coordinates": [ -0.12480210874, 51.508027393820001 ] } },
{ "type": "Feature", "properties": { "Name": "Chipstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chipstead Rail Station", "TIPLOC": "CHSD", "CRS": "CHP", "StopAreaCode": "910GCHSD", "AdministrativeAreaRef": "110", "code": "9100CHSD", "NPTG": "E0025526", "ATCO": "400", "CRS_code": "CHP" }, "geometry": { "type": "Point", "coordinates": [ -0.16950314611, 51.309277312280003 ] } },
{ "type": "Feature", "properties": { "Name": "Chislehurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chislehurst Rail Station", "TIPLOC": "CHSLHRS", "CRS": "CIT", "StopAreaCode": "910GCHSLHRS", "AdministrativeAreaRef": "110", "code": "9100CHSLHRS", "NPTG": "E0034083", "ATCO": "490", "CRS_code": "CIT" }, "geometry": { "type": "Point", "coordinates": [ 0.05741805551, 51.405556544360003 ] } },
{ "type": "Feature", "properties": { "Name": "Chester Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chester Road Rail Station", "TIPLOC": "CHSRD", "CRS": "CRD", "StopAreaCode": "910GCHSRD", "AdministrativeAreaRef": "110", "code": "9100CHSRD", "NPTG": "N0072585", "ATCO": "430", "CRS_code": "CRD" }, "geometry": { "type": "Point", "coordinates": [ -1.83247928713, 52.535646145089999 ] } },
{ "type": "Feature", "properties": { "Name": "Chessington North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chessington North Rail Station", "TIPLOC": "CHSSN", "CRS": "CSN", "StopAreaCode": "910GCHSSN", "AdministrativeAreaRef": "110", "code": "9100CHSSN", "NPTG": "E0034605", "ATCO": "490", "CRS_code": "CSN" }, "geometry": { "type": "Point", "coordinates": [ -0.30069905976, 51.364041064970003 ] } },
{ "type": "Feature", "properties": { "Name": "Chessington South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chessington South Rail Station", "TIPLOC": "CHSSS", "CRS": "CSS", "StopAreaCode": "910GCHSSS", "AdministrativeAreaRef": "110", "code": "9100CHSSS", "NPTG": "E0034605", "ATCO": "490", "CRS_code": "CSS" }, "geometry": { "type": "Point", "coordinates": [ -0.30815749596, 51.356550314480003 ] } },
{ "type": "Feature", "properties": { "Name": "Chester Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chester Rail Station", "TIPLOC": "CHST", "CRS": "CTR", "StopAreaCode": "910GCHST", "AdministrativeAreaRef": "110", "code": "9100CHST", "NPTG": "E0057329", "ATCO": "061", "CRS_code": "CTR" }, "geometry": { "type": "Point", "coordinates": [ -2.87959353783, 53.196695137349998 ] } },
{ "type": "Feature", "properties": { "Name": "Chestfield & Swalecliffe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chestfield & Swalecliffe Rail Station", "TIPLOC": "CHSW", "CRS": "CSW", "StopAreaCode": "910GCHSW", "AdministrativeAreaRef": "110", "code": "9100CHSW", "NPTG": "E0047124", "ATCO": "240", "CRS_code": "CSW" }, "geometry": { "type": "Point", "coordinates": [ 1.06693071822, 51.360241243680001 ] } },
{ "type": "Feature", "properties": { "Name": "Chatelherault Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chatelherault Rail Station", "TIPLOC": "CHTLRT", "CRS": "CTE", "StopAreaCode": "910GCHTLRT", "AdministrativeAreaRef": "110", "code": "9100CHTLRT", "NPTG": "N0078802", "ATCO": "615", "CRS_code": "CTE" }, "geometry": { "type": "Point", "coordinates": [ -4.00467437757, 55.765218740030001 ] } },
{ "type": "Feature", "properties": { "Name": "Cherry Tree Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cherry Tree Rail Station", "TIPLOC": "CHTR", "CRS": "CYT", "StopAreaCode": "910GCHTR", "AdministrativeAreaRef": "110", "code": "9100CHTR", "NPTG": "E0035194", "ATCO": "258", "CRS_code": "CYT" }, "geometry": { "type": "Point", "coordinates": [ -2.51837882919, 53.732870412849998 ] } },
{ "type": "Feature", "properties": { "Name": "Chertsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chertsey Rail Station", "TIPLOC": "CHTSEY", "CRS": "CHY", "StopAreaCode": "910GCHTSEY", "AdministrativeAreaRef": "110", "code": "9100CHTSEY", "NPTG": "E0057652", "ATCO": "400", "CRS_code": "CHY" }, "geometry": { "type": "Point", "coordinates": [ -0.509316546, 51.387068859049997 ] } },
{ "type": "Feature", "properties": { "Name": "Cilmeri Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cilmeri Rail Station", "TIPLOC": "CILMERY", "CRS": "CIM", "StopAreaCode": "910GCILMERY", "AdministrativeAreaRef": "110", "code": "9100CILMERY", "NPTG": "E0054566", "ATCO": "561", "CRS_code": "CIM" }, "geometry": { "type": "Point", "coordinates": [ -3.45654105773, 52.150529544729999 ] } },
{ "type": "Feature", "properties": { "Name": "Corkerhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Corkerhill Rail Station", "TIPLOC": "CKHL", "CRS": "CKH", "StopAreaCode": "910GCKHL", "AdministrativeAreaRef": "110", "code": "9100CKHL", "NPTG": "ES002692", "ATCO": "609", "CRS_code": "CKH" }, "geometry": { "type": "Point", "coordinates": [ -4.33429250121, 55.837500892229997 ] } },
{ "type": "Feature", "properties": { "Name": "Clacton-on-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clacton-on-Sea Rail Station", "TIPLOC": "CLACTON", "CRS": "CLT", "StopAreaCode": "910GCLACTON", "AdministrativeAreaRef": "110", "code": "9100CLACTON", "NPTG": "E0057399", "ATCO": "150", "CRS_code": "CLT" }, "geometry": { "type": "Point", "coordinates": [ 1.15409182075, 51.794002811379997 ] } },
{ "type": "Feature", "properties": { "Name": "Clandon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clandon Rail Station", "TIPLOC": "CLANDON", "CRS": "CLA", "StopAreaCode": "910GCLANDON", "AdministrativeAreaRef": "110", "code": "9100CLANDON", "NPTG": "E0051773", "ATCO": "400", "CRS_code": "CLA" }, "geometry": { "type": "Point", "coordinates": [ -0.5027660291, 51.26400525735 ] } },
{ "type": "Feature", "properties": { "Name": "Clapton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapton Rail Station", "TIPLOC": "CLAPTON", "CRS": "CPT", "StopAreaCode": "910GCLAPTON", "AdministrativeAreaRef": "110", "code": "9100CLAPTON", "NPTG": "E0034372", "ATCO": "490", "CRS_code": "CPT" }, "geometry": { "type": "Point", "coordinates": [ -0.05702457493, 51.561643932700001 ] } },
{ "type": "Feature", "properties": { "Name": "Clarbeston Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clarbeston Road Rail Station", "TIPLOC": "CLARBRD", "CRS": "CLR", "StopAreaCode": "910GCLARBRD", "AdministrativeAreaRef": "110", "code": "9100CLARBRD", "NPTG": "E0040210", "ATCO": "521", "CRS_code": "CLR" }, "geometry": { "type": "Point", "coordinates": [ -4.88354773429, 51.85166518143 ] } },
{ "type": "Feature", "properties": { "Name": "Claverdon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Claverdon Rail Station", "TIPLOC": "CLAVRDN", "CRS": "CLV", "StopAreaCode": "910GCLAVRDN", "AdministrativeAreaRef": "110", "code": "9100CLAVRDN", "NPTG": "E0051928", "ATCO": "420", "CRS_code": "CLV" }, "geometry": { "type": "Point", "coordinates": [ -1.69655982438, 52.277090433029997 ] } },
{ "type": "Feature", "properties": { "Name": "Hythe (Essex) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hythe (Essex) Rail Station", "TIPLOC": "CLCHHYT", "CRS": "HYH", "StopAreaCode": "910GCLCHHYT", "AdministrativeAreaRef": "110", "code": "9100CLCHHYT", "NPTG": "E0011237", "ATCO": "150", "CRS_code": "HYH" }, "geometry": { "type": "Point", "coordinates": [ 0.9275276909, 51.885639525599998 ] } },
{ "type": "Feature", "properties": { "Name": "Colchester Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Colchester Town Rail Station", "TIPLOC": "CLCHRTN", "CRS": "CET", "StopAreaCode": "910GCLCHRTN", "AdministrativeAreaRef": "110", "code": "9100CLCHRTN", "NPTG": "N0076779", "ATCO": "150", "CRS_code": "CET" }, "geometry": { "type": "Point", "coordinates": [ 0.90476263648, 51.886455897819999 ] } },
{ "type": "Feature", "properties": { "Name": "Colchester Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Colchester Rail Station", "TIPLOC": "CLCHSTR", "CRS": "COL", "StopAreaCode": "910GCLCHSTR", "AdministrativeAreaRef": "110", "code": "9100CLCHSTR", "NPTG": "E0055798", "ATCO": "150", "CRS_code": "COL" }, "geometry": { "type": "Point", "coordinates": [ 0.89259822672, 51.900713792879998 ] } },
{ "type": "Feature", "properties": { "Name": "Caledonian Road & Barnsbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Caledonian Road & Barnsbury Rail Station", "TIPLOC": "CLDNNRB", "CRS": "CIR", "StopAreaCode": "910GCLDNNRB", "AdministrativeAreaRef": "110", "code": "9100CLDNNRB", "NPTG": "E0034566", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.116729169, 51.543040795449997 ] } },
{ "type": "Feature", "properties": { "Name": "Caldercruix Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Caldercruix Rail Station", "TIPLOC": "CLDRCRX", "CRS": "CAC", "StopAreaCode": "910GCLDRCRX", "AdministrativeAreaRef": "110", "code": "9100CLDRCRX", "NPTG": "ES000572", "ATCO": "616", "CRS_code": "CAC" }, "geometry": { "type": "Point", "coordinates": [ -3.88771108683, 55.887942978049999 ] } },
{ "type": "Feature", "properties": { "Name": "Cleland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cleland Rail Station", "TIPLOC": "CLELAND", "CRS": "CEA", "StopAreaCode": "910GCLELAND", "AdministrativeAreaRef": "110", "code": "9100CLELAND", "NPTG": "ES000732", "ATCO": "616", "CRS_code": "CEA" }, "geometry": { "type": "Point", "coordinates": [ -3.91024399645, 55.80464762722 ] } },
{ "type": "Feature", "properties": { "Name": "Clifton Down Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clifton Down Rail Station", "TIPLOC": "CLFDOWN", "CRS": "CFN", "StopAreaCode": "910GCLFDOWN", "AdministrativeAreaRef": "110", "code": "9100CLFDOWN", "NPTG": "E0035590", "ATCO": "010", "CRS_code": "CFN" }, "geometry": { "type": "Point", "coordinates": [ -2.6117408388, 51.464544578119998 ] } },
{ "type": "Feature", "properties": { "Name": "Collingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Collingham Rail Station", "TIPLOC": "CLHM", "CRS": "CLM", "StopAreaCode": "910GCLHM", "AdministrativeAreaRef": "110", "code": "9100CLHM", "NPTG": "E0056477", "ATCO": "330", "CRS_code": "CLM" }, "geometry": { "type": "Point", "coordinates": [ -0.75039384491, 53.144086177040002 ] } },
{ "type": "Feature", "properties": { "Name": "Clitheroe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clitheroe Rail Station", "TIPLOC": "CLITHRO", "CRS": "CLH", "StopAreaCode": "910GCLITHRO", "AdministrativeAreaRef": "110", "code": "9100CLITHRO", "NPTG": "E0047496", "ATCO": "250", "CRS_code": "CLH" }, "geometry": { "type": "Point", "coordinates": [ -2.39433631515, 53.87346611137 ] } },
{ "type": "Feature", "properties": { "Name": "Chilham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chilham Rail Station", "TIPLOC": "CLMN", "CRS": "CIL", "StopAreaCode": "910GCLMN", "AdministrativeAreaRef": "110", "code": "9100CLMN", "NPTG": "E0047087", "ATCO": "240", "CRS_code": "CIL" }, "geometry": { "type": "Point", "coordinates": [ 0.97589572012, 51.244611046670002 ] } },
{ "type": "Feature", "properties": { "Name": "Clock House Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clock House Rail Station", "TIPLOC": "CLOCKHS", "CRS": "CLK", "StopAreaCode": "910GCLOCKHS", "AdministrativeAreaRef": "110", "code": "9100CLOCKHS", "NPTG": "E0034069", "ATCO": "490", "CRS_code": "CLK" }, "geometry": { "type": "Point", "coordinates": [ -0.04065698193, 51.408586413629997 ] } },
{ "type": "Feature", "properties": { "Name": "Clapham High Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapham High Street Rail Station", "TIPLOC": "CLPHHS", "CRS": "CLP", "StopAreaCode": "910GCLPHHS", "AdministrativeAreaRef": "110", "code": "9100CLPHHS", "NPTG": "N0065132", "ATCO": "490", "CRS_code": "CLP" }, "geometry": { "type": "Point", "coordinates": [ -0.13252160579, 51.465480905589999 ] } },
{ "type": "Feature", "properties": { "Name": "Clapham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapham Junction Rail Station", "TIPLOC": "CLPHMJ1", "CRS": "CLJ", "StopAreaCode": "910GCLPHMJ1", "AdministrativeAreaRef": "110", "code": "9100CLPHMJ1", "NPTG": "E0034892", "ATCO": "490", "CRS_code": "CLJ" }, "geometry": { "type": "Point", "coordinates": [ -0.17022139909, 51.46418690022 ] } },
{ "type": "Feature", "properties": { "Name": "Clapham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapham Junction Rail Station", "TIPLOC": "CLPHMJ2", "CRS": "CLJ", "StopAreaCode": "910GCLPHMJ2", "AdministrativeAreaRef": "110", "code": "9100CLPHMJ2", "NPTG": "E0034892", "ATCO": "490", "CRS_code": "CLJ" }, "geometry": { "type": "Point", "coordinates": [ -0.17029333674, 51.464188022899997 ] } },
{ "type": "Feature", "properties": { "Name": "Clapham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapham Junction Rail Station", "TIPLOC": "CLPHMJC", "CRS": "CLJ", "StopAreaCode": "910GCLPHMJC", "AdministrativeAreaRef": "110", "code": "9100CLPHMJC", "NPTG": "E0034892", "ATCO": "490", "CRS_code": "CLJ" }, "geometry": { "type": "Point", "coordinates": [ -0.1702789492, 51.464187798369998 ] } },
{ "type": "Feature", "properties": { "Name": "Clapham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapham Junction Rail Station", "TIPLOC": "CLPHMJM", "CRS": "CLJ", "StopAreaCode": "910GCLPHMJM", "AdministrativeAreaRef": "110", "code": "9100CLPHMJM", "NPTG": "E0034892", "ATCO": "490", "CRS_code": "CLJ" }, "geometry": { "type": "Point", "coordinates": [ -0.17026456167, 51.464187573830003 ] } },
{ "type": "Feature", "properties": { "Name": "Clapham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapham Junction Rail Station", "TIPLOC": "CLPHMJW", "CRS": "CLJ", "StopAreaCode": "910GCLPHMJW", "AdministrativeAreaRef": "110", "code": "9100CLPHMJW", "NPTG": "E0034892", "ATCO": "490", "CRS_code": "CLJ" }, "geometry": { "type": "Point", "coordinates": [ -0.17025017415, 51.464187349299998 ] } },
{ "type": "Feature", "properties": { "Name": "Clapham (N Yorks) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clapham (N Yorks) Rail Station", "TIPLOC": "CLPM", "CRS": "CPY", "StopAreaCode": "910GCLPM", "AdministrativeAreaRef": "110", "code": "9100CLPM", "NPTG": "E0048881", "ATCO": "320", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.41037593925, 54.105385808009999 ] } },
{ "type": "Feature", "properties": { "Name": "Clarkston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clarkston Rail Station", "TIPLOC": "CLRKSTN", "CRS": "CKS", "StopAreaCode": "910GCLRKSTN", "AdministrativeAreaRef": "110", "code": "9100CLRKSTN", "NPTG": "ES000726", "ATCO": "612", "CRS_code": "CKS" }, "geometry": { "type": "Point", "coordinates": [ -4.27564376395, 55.789348381789999 ] } },
{ "type": "Feature", "properties": { "Name": "Chester-le-Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chester-le-Street Rail Station", "TIPLOC": "CLST", "CRS": "CLS", "StopAreaCode": "910GCLST", "AdministrativeAreaRef": "110", "code": "9100CLST", "NPTG": "E0057372", "ATCO": "130", "CRS_code": "CLS" }, "geometry": { "type": "Point", "coordinates": [ -1.57801525009, 54.854594409390003 ] } },
{ "type": "Feature", "properties": { "Name": "Cleethorpes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cleethorpes Rail Station", "TIPLOC": "CLTHRPS", "CRS": "CLE", "StopAreaCode": "910GCLTHRPS", "AdministrativeAreaRef": "110", "code": "9100CLTHRPS", "NPTG": "N0073051", "ATCO": "228", "CRS_code": "CLE" }, "geometry": { "type": "Point", "coordinates": [ -0.0292208451, 53.561906131770002 ] } },
{ "type": "Feature", "properties": { "Name": "Clifton (Manchester) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clifton (Manchester) Rail Station", "TIPLOC": "CLTN", "CRS": "CLI", "StopAreaCode": "910GCLTN", "AdministrativeAreaRef": "110", "code": "9100CLTN", "NPTG": "E0028726", "ATCO": "180", "CRS_code": "CLI" }, "geometry": { "type": "Point", "coordinates": [ -2.3147463351, 53.522489562270003 ] } },
{ "type": "Feature", "properties": { "Name": "Colwall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Colwall Rail Station", "TIPLOC": "CLWALL", "CRS": "CWL", "StopAreaCode": "910GCLWALL", "AdministrativeAreaRef": "110", "code": "9100CLWALL", "NPTG": "E0053210", "ATCO": "209", "CRS_code": "CWL" }, "geometry": { "type": "Point", "coordinates": [ -2.35695005388, 52.07986839502 ] } },
{ "type": "Feature", "properties": { "Name": "Clydebank Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clydebank Rail Station", "TIPLOC": "CLYBANK", "CRS": "CYK", "StopAreaCode": "910GCLYBANK", "AdministrativeAreaRef": "110", "code": "9100CLYBANK", "NPTG": "ES000746", "ATCO": "608", "CRS_code": "CYK" }, "geometry": { "type": "Point", "coordinates": [ -4.4044138717, 55.90069113461 ] } },
{ "type": "Feature", "properties": { "Name": "Claygate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Claygate Rail Station", "TIPLOC": "CLYGATE", "CRS": "CLG", "StopAreaCode": "910GCLYGATE", "AdministrativeAreaRef": "110", "code": "9100CLYGATE", "NPTG": "E0025278", "ATCO": "400", "CRS_code": "CLG" }, "geometry": { "type": "Point", "coordinates": [ -0.34824771704, 51.361214012239998 ] } },
{ "type": "Feature", "properties": { "Name": "Clunderwen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Clunderwen Rail Station", "TIPLOC": "CLYNDRW", "CRS": "CUW", "StopAreaCode": "910GCLYNDRW", "AdministrativeAreaRef": "110", "code": "9100CLYNDRW", "NPTG": "E0054516", "ATCO": "521", "CRS_code": "CUW" }, "geometry": { "type": "Point", "coordinates": [ -4.73184180642, 51.840539804519999 ] } },
{ "type": "Feature", "properties": { "Name": "Cwmbach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cwmbach Rail Station", "TIPLOC": "CMBH", "CRS": "CMH", "StopAreaCode": "910GCMBH", "AdministrativeAreaRef": "110", "code": "9100CMBH", "NPTG": "E0054664", "ATCO": "552", "CRS_code": "CMH" }, "geometry": { "type": "Point", "coordinates": [ -3.41372308238, 51.701927275949998 ] } },
{ "type": "Feature", "properties": { "Name": "Camberley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Camberley Rail Station", "TIPLOC": "CMBLEY", "CRS": "CAM", "StopAreaCode": "910GCMBLEY", "AdministrativeAreaRef": "110", "code": "9100CMBLEY", "NPTG": "E0025661", "ATCO": "400", "CRS_code": "CAM" }, "geometry": { "type": "Point", "coordinates": [ -0.74427163142, 51.336327616710001 ] } },
{ "type": "Feature", "properties": { "Name": "Cumbernauld Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cumbernauld Rail Station", "TIPLOC": "CMBRNLD", "CRS": "CUB", "StopAreaCode": "910GCMBRNLD", "AdministrativeAreaRef": "110", "code": "9100CMBRNLD", "NPTG": "ES000923", "ATCO": "616", "CRS_code": "CUB" }, "geometry": { "type": "Point", "coordinates": [ -3.98033433173, 55.9420258408 ] } },
{ "type": "Feature", "properties": { "Name": "Cambuslang Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cambuslang Rail Station", "TIPLOC": "CMBSLNG", "CRS": "CBL", "StopAreaCode": "910GCMBSLNG", "AdministrativeAreaRef": "110", "code": "9100CMBSLNG", "NPTG": "ES000586", "ATCO": "615", "CRS_code": "CBL" }, "geometry": { "type": "Point", "coordinates": [ -4.17300841707, 55.81960606981 ] } },
{ "type": "Feature", "properties": { "Name": "Camden Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Camden Road Rail Station", "TIPLOC": "CMDNRD", "CRS": "CMD", "StopAreaCode": "910GCMDNRD", "AdministrativeAreaRef": "110", "code": "9100CMDNRD", "NPTG": "N0060504", "ATCO": "490", "CRS_code": "CMD" }, "geometry": { "type": "Point", "coordinates": [ -0.138700821, 51.541790787030003 ] } },
{ "type": "Feature", "properties": { "Name": "Cromer Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cromer Rail Station", "TIPLOC": "CMER", "CRS": "CMR", "StopAreaCode": "910GCMER", "AdministrativeAreaRef": "110", "code": "9100CMER", "NPTG": "E0048645", "ATCO": "290", "CRS_code": "CMR" }, "geometry": { "type": "Point", "coordinates": [ 1.29282454525, 52.930084481729999 ] } },
{ "type": "Feature", "properties": { "Name": "Carmarthen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carmarthen Rail Station", "TIPLOC": "CMTHN", "CRS": "CMN", "StopAreaCode": "910GCMTHN", "AdministrativeAreaRef": "110", "code": "9100CMTHN", "NPTG": "E0054033", "ATCO": "522", "CRS_code": "CMN" }, "geometry": { "type": "Point", "coordinates": [ -4.3059608974, 51.853352567969999 ] } },
{ "type": "Feature", "properties": { "Name": "Cannock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cannock Rail Station", "TIPLOC": "CNCK", "CRS": "CAO", "StopAreaCode": "910GCNCK", "AdministrativeAreaRef": "110", "code": "9100CNCK", "NPTG": "E0023401", "ATCO": "380", "CRS_code": "CAO" }, "geometry": { "type": "Point", "coordinates": [ -2.02214725185, 52.686160822620003 ] } },
{ "type": "Feature", "properties": { "Name": "Canada Water Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Canada Water Rail Station", "TIPLOC": "CNDAW", "CRS": "ZCW", "StopAreaCode": "910GCNDAW", "AdministrativeAreaRef": "110", "code": "9100CNDAW", "NPTG": "N0077637", "ATCO": "490", "CRS_code": "ZCW" }, "geometry": { "type": "Point", "coordinates": [ -0.04971975403, 51.49799008862 ] } },
{ "type": "Feature", "properties": { "Name": "Canonbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Canonbury Rail Station", "TIPLOC": "CNNB", "CRS": "CNN", "StopAreaCode": "910GCNNB", "AdministrativeAreaRef": "110", "code": "9100CNNB", "NPTG": "E0034567", "ATCO": "490", "CRS_code": "CNN" }, "geometry": { "type": "Point", "coordinates": [ -0.09219084817, 51.548732247499998 ] } },
{ "type": "Feature", "properties": { "Name": "Carnoustie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carnoustie Rail Station", "TIPLOC": "CNST", "CRS": "CAN", "StopAreaCode": "910GCNST", "AdministrativeAreaRef": "110", "code": "9100CNST", "NPTG": "ES000632", "ATCO": "649", "CRS_code": "CAN" }, "geometry": { "type": "Point", "coordinates": [ -2.70660036649, 56.50056336526 ] } },
{ "type": "Feature", "properties": { "Name": "Canterbury East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Canterbury East Rail Station", "TIPLOC": "CNTBE", "CRS": "CBE", "StopAreaCode": "910GCNTBE", "AdministrativeAreaRef": "110", "code": "9100CNTBE", "NPTG": "E0057480", "ATCO": "240", "CRS_code": "CBE" }, "geometry": { "type": "Point", "coordinates": [ 1.0759685662, 51.274267819480002 ] } },
{ "type": "Feature", "properties": { "Name": "Canterbury West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Canterbury West Rail Station", "TIPLOC": "CNTBW", "CRS": "CBW", "StopAreaCode": "910GCNTBW", "AdministrativeAreaRef": "110", "code": "9100CNTBW", "NPTG": "E0057480", "ATCO": "240", "CRS_code": "CBW" }, "geometry": { "type": "Point", "coordinates": [ 1.07530326787, 51.284269335019999 ] } },
{ "type": "Feature", "properties": { "Name": "Cantley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cantley Rail Station", "TIPLOC": "CNTLEY", "CRS": "CNY", "StopAreaCode": "910GCNTLEY", "AdministrativeAreaRef": "110", "code": "9100CNTLEY", "NPTG": "E0048452", "ATCO": "290", "CRS_code": "CNY" }, "geometry": { "type": "Point", "coordinates": [ 1.51341232631, 52.578748124820002 ] } },
{ "type": "Feature", "properties": { "Name": "Canning Town Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Canning Town Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100CNTN", "NPTG": "E0034701", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.00618656637, 51.516156444010001 ] } },
{ "type": "Feature", "properties": { "Name": "Carntyne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carntyne Rail Station", "TIPLOC": "CNTY", "CRS": "CAY", "StopAreaCode": "910GCNTY", "AdministrativeAreaRef": "110", "code": "9100CNTY", "NPTG": "ES000636", "ATCO": "609", "CRS_code": "CAY" }, "geometry": { "type": "Point", "coordinates": [ -4.17857220107, 55.854872684660002 ] } },
{ "type": "Feature", "properties": { "Name": "Coatbridge Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coatbridge Central Rail Station", "TIPLOC": "COATBDC", "CRS": "CBC", "StopAreaCode": "910GCOATBDC", "AdministrativeAreaRef": "110", "code": "9100COATBDC", "NPTG": "ES000759", "ATCO": "616", "CRS_code": "CBC" }, "geometry": { "type": "Point", "coordinates": [ -4.03189676731, 55.862505505599998 ] } },
{ "type": "Feature", "properties": { "Name": "Coatbridge Sunnyside Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coatbridge Sunnyside Rail Station", "TIPLOC": "COATBDS", "CRS": "CBS", "StopAreaCode": "910GCOATBDS", "AdministrativeAreaRef": "110", "code": "9100COATBDS", "NPTG": "ES000759", "ATCO": "616", "CRS_code": "CBS" }, "geometry": { "type": "Point", "coordinates": [ -4.02828709977, 55.866833875829997 ] } },
{ "type": "Feature", "properties": { "Name": "Coatdyke Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coatdyke Rail Station", "TIPLOC": "COATDYK", "CRS": "COA", "StopAreaCode": "910GCOATDYK", "AdministrativeAreaRef": "110", "code": "9100COATDYK", "NPTG": "N0068046", "ATCO": "616", "CRS_code": "COA" }, "geometry": { "type": "Point", "coordinates": [ -4.00498438126, 55.864340019890001 ] } },
{ "type": "Feature", "properties": { "Name": "Cooden Beach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cooden Beach Rail Station", "TIPLOC": "CODNBCH", "CRS": "COB", "StopAreaCode": "910GCODNBCH", "AdministrativeAreaRef": "110", "code": "9100CODNBCH", "NPTG": "E0010611", "ATCO": "140", "CRS_code": "COB" }, "geometry": { "type": "Point", "coordinates": [ 0.42685884937, 50.83337248206 ] } },
{ "type": "Feature", "properties": { "Name": "Codsall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Codsall Rail Station", "TIPLOC": "CODSALL", "CRS": "CSL", "StopAreaCode": "910GCODSALL", "AdministrativeAreaRef": "110", "code": "9100CODSALL", "NPTG": "E0051180", "ATCO": "380", "CRS_code": "CSL" }, "geometry": { "type": "Point", "coordinates": [ -2.2017628153, 52.627288044410001 ] } },
{ "type": "Feature", "properties": { "Name": "Cogan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cogan Rail Station", "TIPLOC": "COGAN", "CRS": "CGN", "StopAreaCode": "910GCOGAN", "AdministrativeAreaRef": "110", "code": "9100COGAN", "NPTG": "E0042836", "ATCO": "572", "CRS_code": "CGN" }, "geometry": { "type": "Point", "coordinates": [ -3.18908983007, 51.4459923008 ] } },
{ "type": "Feature", "properties": { "Name": "Cooksbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cooksbridge Rail Station", "TIPLOC": "COKSBDG", "CRS": "CBR", "StopAreaCode": "910GCOKSBDG", "AdministrativeAreaRef": "110", "code": "9100COKSBDG", "NPTG": "E0010537", "ATCO": "140", "CRS_code": "CBR" }, "geometry": { "type": "Point", "coordinates": [ -0.00920266797, 50.903756486600003 ] } },
{ "type": "Feature", "properties": { "Name": "Coleshill Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coleshill Parkway Rail Station", "TIPLOC": "COLESHL", "CRS": "CEH", "StopAreaCode": "910GCOLESHL", "AdministrativeAreaRef": "110", "code": "9100COLESHL", "NPTG": "E0051840", "ATCO": "420", "CRS_code": "CEH" }, "geometry": { "type": "Point", "coordinates": [ -1.70817721591, 52.516526431370004 ] } },
{ "type": "Feature", "properties": { "Name": "Colne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Colne Rail Station", "TIPLOC": "COLNE", "CRS": "CNE", "StopAreaCode": "910GCOLNE", "AdministrativeAreaRef": "110", "code": "9100COLNE", "NPTG": "E0016050", "ATCO": "250", "CRS_code": "CNE" }, "geometry": { "type": "Point", "coordinates": [ -2.18185905977, 53.854742505170002 ] } },
{ "type": "Feature", "properties": { "Name": "Coulsdon South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coulsdon South Rail Station", "TIPLOC": "COLSDNS", "CRS": "CDS", "StopAreaCode": "910GCOLSDNS", "AdministrativeAreaRef": "110", "code": "9100COLSDNS", "NPTG": "N0075224", "ATCO": "490", "CRS_code": "CDS" }, "geometry": { "type": "Point", "coordinates": [ -0.13788721377, 51.31583814927 ] } },
{ "type": "Feature", "properties": { "Name": "Coulsdon Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coulsdon Town Rail Station", "TIPLOC": "COLSTWN", "CRS": "CDN", "StopAreaCode": "910GCOLSTWN", "AdministrativeAreaRef": "110", "code": "9100COLSTWN", "NPTG": "N0075224", "ATCO": "490", "CRS_code": "CDN" }, "geometry": { "type": "Point", "coordinates": [ -0.13446415087, 51.322042642920003 ] } },
{ "type": "Feature", "properties": { "Name": "Combe (Oxon) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Combe (Oxon) Rail Station", "TIPLOC": "COMBE", "CRS": "CME", "StopAreaCode": "910GCOMBE", "AdministrativeAreaRef": "110", "code": "9100COMBE", "NPTG": "E0050505", "ATCO": "340", "CRS_code": "CME" }, "geometry": { "type": "Point", "coordinates": [ -1.39407318984, 51.832593445420002 ] } },
{ "type": "Feature", "properties": { "Name": "Commondale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Commondale Rail Station", "TIPLOC": "COMONDL", "CRS": "COM", "StopAreaCode": "910GCOMONDL", "AdministrativeAreaRef": "110", "code": "9100COMONDL", "NPTG": "E0049477", "ATCO": "320", "CRS_code": "COM" }, "geometry": { "type": "Point", "coordinates": [ -0.97514791514, 54.481274098370001 ] } },
{ "type": "Feature", "properties": { "Name": "Conisbrough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Conisbrough Rail Station", "TIPLOC": "CONBRGH", "CRS": "CNS", "StopAreaCode": "910GCONBRGH", "AdministrativeAreaRef": "110", "code": "9100CONBRGH", "NPTG": "E0030092", "ATCO": "370", "CRS_code": "CNS" }, "geometry": { "type": "Point", "coordinates": [ -1.23433137958, 53.489309039959998 ] } },
{ "type": "Feature", "properties": { "Name": "Congleton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Congleton Rail Station", "TIPLOC": "CONGLTN", "CRS": "CNG", "StopAreaCode": "910GCONGLTN", "AdministrativeAreaRef": "110", "code": "9100CONGLTN", "NPTG": "E0055395", "ATCO": "060", "CRS_code": "CNG" }, "geometry": { "type": "Point", "coordinates": [ -2.1925799867, 53.157854282030002 ] } },
{ "type": "Feature", "properties": { "Name": "Connel Ferry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Connel Ferry Rail Station", "TIPLOC": "CONNELF", "CRS": "CON", "StopAreaCode": "910GCONNELF", "AdministrativeAreaRef": "110", "code": "9100CONNELF", "NPTG": "N0068396", "ATCO": "607", "CRS_code": "CON" }, "geometry": { "type": "Point", "coordinates": [ -5.38544091676, 56.452352691080002 ] } },
{ "type": "Feature", "properties": { "Name": "Conon Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Conon Bridge Rail Station", "TIPLOC": "CONONBR", "CRS": "CBD", "StopAreaCode": "910GCONONBR", "AdministrativeAreaRef": "110", "code": "9100CONONBR", "NPTG": "ES000800", "ATCO": "670", "CRS_code": "CBD" }, "geometry": { "type": "Point", "coordinates": [ -4.44040531668, 57.561751452819998 ] } },
{ "type": "Feature", "properties": { "Name": "Cononley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cononley Rail Station", "TIPLOC": "CONONLY", "CRS": "CEY", "StopAreaCode": "910GCONONLY", "AdministrativeAreaRef": "110", "code": "9100CONONLY", "NPTG": "E0048884", "ATCO": "320", "CRS_code": "CEY" }, "geometry": { "type": "Point", "coordinates": [ -2.0120676459, 53.917570115709999 ] } },
{ "type": "Feature", "properties": { "Name": "Conwy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Conwy Rail Station", "TIPLOC": "CONWY", "CRS": "CNW", "StopAreaCode": "910GCONWY", "AdministrativeAreaRef": "110", "code": "9100CONWY", "NPTG": "E0054161", "ATCO": "513", "CRS_code": "CNW" }, "geometry": { "type": "Point", "coordinates": [ -3.83052420242, 53.28010171044 ] } },
{ "type": "Feature", "properties": { "Name": "Cookham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cookham Rail Station", "TIPLOC": "COOKHAM", "CRS": "COO", "StopAreaCode": "910GCOOKHAM", "AdministrativeAreaRef": "110", "code": "9100COOKHAM", "NPTG": "E0057284", "ATCO": "036", "CRS_code": "COO" }, "geometry": { "type": "Point", "coordinates": [ -0.72207898509, 51.557462722010001 ] } },
{ "type": "Feature", "properties": { "Name": "Coombe Junction Halt (Rail Station)", "Status": "active", "Type": "RLY", "Station_Name": "Coombe Junction Halt (Rail Station)", "TIPLOC": "COOMBE", "CRS": "COE", "StopAreaCode": "910GCOOMBE", "AdministrativeAreaRef": "110", "code": "9100COOMBE", "NPTG": "E0002541", "ATCO": "080", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.48185123192, 50.445919673810003 ] } },
{ "type": "Feature", "properties": { "Name": "Copplestone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Copplestone Rail Station", "TIPLOC": "COPLSTN", "CRS": "COP", "StopAreaCode": "910GCOPLSTN", "AdministrativeAreaRef": "110", "code": "9100COPLSTN", "NPTG": "E0007783", "ATCO": "110", "CRS_code": "COP" }, "geometry": { "type": "Point", "coordinates": [ -3.75157170718, 50.81446653834 ] } },
{ "type": "Feature", "properties": { "Name": "Corby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Corby Rail Station", "TIPLOC": "CORBY", "CRS": "COR", "StopAreaCode": "910GCORBY", "AdministrativeAreaRef": "110", "code": "9100CORBY", "NPTG": "N0077183", "ATCO": "300", "CRS_code": "COR" }, "geometry": { "type": "Point", "coordinates": [ -0.68833531673, 52.488851390850002 ] } },
{ "type": "Feature", "properties": { "Name": "Corpach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Corpach Rail Station", "TIPLOC": "CORPACH", "CRS": "CPA", "StopAreaCode": "910GCORPACH", "AdministrativeAreaRef": "110", "code": "9100CORPACH", "NPTG": "N0067791", "ATCO": "670", "CRS_code": "CPA" }, "geometry": { "type": "Point", "coordinates": [ -5.12195649279, 56.842826898870001 ] } },
{ "type": "Feature", "properties": { "Name": "Corrour Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Corrour Rail Station", "TIPLOC": "CORROUR", "CRS": "CRR", "StopAreaCode": "910GCORROUR", "AdministrativeAreaRef": "110", "code": "9100CORROUR", "NPTG": "N0067793", "ATCO": "670", "CRS_code": "CRR" }, "geometry": { "type": "Point", "coordinates": [ -4.69060019526, 56.760213595149999 ] } },
{ "type": "Feature", "properties": { "Name": "Coryton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coryton Rail Station", "TIPLOC": "CORYTON", "CRS": "COY", "StopAreaCode": "910GCORYTON", "AdministrativeAreaRef": "110", "code": "9100CORYTON", "NPTG": "N0075388", "ATCO": "571", "CRS_code": "COY" }, "geometry": { "type": "Point", "coordinates": [ -3.23181788193, 51.520436016529999 ] } },
{ "type": "Feature", "properties": { "Name": "Coseley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coseley Rail Station", "TIPLOC": "COSELEY", "CRS": "CSY", "StopAreaCode": "910GCOSELEY", "AdministrativeAreaRef": "110", "code": "9100COSELEY", "NPTG": "E0031474", "ATCO": "430", "CRS_code": "CSY" }, "geometry": { "type": "Point", "coordinates": [ -2.08577748289, 52.545082496459997 ] } },
{ "type": "Feature", "properties": { "Name": "Cosford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cosford Rail Station", "TIPLOC": "COSFORD", "CRS": "COS", "StopAreaCode": "910GCOSFORD", "AdministrativeAreaRef": "110", "code": "9100COSFORD", "NPTG": "E0021147", "ATCO": "350", "CRS_code": "COS" }, "geometry": { "type": "Point", "coordinates": [ -2.30027466756, 52.64483387472 ] } },
{ "type": "Feature", "properties": { "Name": "Cosham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cosham Rail Station", "TIPLOC": "COSHAM", "CRS": "CSA", "StopAreaCode": "910GCOSHAM", "AdministrativeAreaRef": "110", "code": "9100COSHAM", "NPTG": "E0040717", "ATCO": "199", "CRS_code": "CSA" }, "geometry": { "type": "Point", "coordinates": [ -1.06732868373, 50.841924115680001 ] } },
{ "type": "Feature", "properties": { "Name": "Cottingley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cottingley Rail Station", "TIPLOC": "COTNGLY", "CRS": "COT", "StopAreaCode": "910GCOTNGLY", "AdministrativeAreaRef": "110", "code": "9100COTNGLY", "NPTG": "E0032511", "ATCO": "450", "CRS_code": "COT" }, "geometry": { "type": "Point", "coordinates": [ -1.58770804242, 53.767816631350001 ] } },
{ "type": "Feature", "properties": { "Name": "Coventry Arena Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coventry Arena Rail Station", "TIPLOC": "COVAREN", "CRS": "CAA", "StopAreaCode": "910GCOVAREN", "AdministrativeAreaRef": "110", "code": "9100COVAREN", "NPTG": "E0031921", "ATCO": "430", "CRS_code": "CAA" }, "geometry": { "type": "Point", "coordinates": [ -1.49412454597, 52.447732946629998 ] } },
{ "type": "Feature", "properties": { "Name": "Coventry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Coventry Rail Station", "TIPLOC": "COVNTRY", "CRS": "COV", "StopAreaCode": "910GCOVNTRY", "AdministrativeAreaRef": "110", "code": "9100COVNTRY", "NPTG": "N0073053", "ATCO": "430", "CRS_code": "COV" }, "geometry": { "type": "Point", "coordinates": [ -1.51345961399, 52.400813644529997 ] } },
{ "type": "Feature", "properties": { "Name": "Cowden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cowden Rail Station", "TIPLOC": "COWDEN", "CRS": "CWN", "StopAreaCode": "910GCOWDEN", "AdministrativeAreaRef": "110", "code": "9100COWDEN", "NPTG": "E0047236", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.11003281206, 51.155637242090002 ] } },
{ "type": "Feature", "properties": { "Name": "Capenhurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Capenhurst Rail Station", "TIPLOC": "CPNHRST", "CRS": "CPU", "StopAreaCode": "910GCPNHRST", "AdministrativeAreaRef": "110", "code": "9100CPNHRST", "NPTG": "E0044157", "ATCO": "061", "CRS_code": "CPU" }, "geometry": { "type": "Point", "coordinates": [ -2.94228478229, 53.260173580530001 ] } },
{ "type": "Feature", "properties": { "Name": "Cradley Heath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cradley Heath Rail Station", "TIPLOC": "CRADLYH", "CRS": "CRA", "StopAreaCode": "910GCRADLYH", "AdministrativeAreaRef": "110", "code": "9100CRADLYH", "NPTG": "E0031485", "ATCO": "430", "CRS_code": "CRA" }, "geometry": { "type": "Point", "coordinates": [ -2.0904881333, 52.469653563149997 ] } },
{ "type": "Feature", "properties": { "Name": "Craven Arms Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Craven Arms Rail Station", "TIPLOC": "CRAVENA", "CRS": "CRV", "StopAreaCode": "910GCRAVENA", "AdministrativeAreaRef": "110", "code": "9100CRAVENA", "NPTG": "E0050729", "ATCO": "350", "CRS_code": "CRV" }, "geometry": { "type": "Point", "coordinates": [ -2.83742187138, 52.442538760589997 ] } },
{ "type": "Feature", "properties": { "Name": "Crawley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crawley Rail Station", "TIPLOC": "CRAWLEY", "CRS": "CRW", "StopAreaCode": "910GCRAWLEY", "AdministrativeAreaRef": "110", "code": "9100CRAWLEY", "NPTG": "E0057699", "ATCO": "440", "CRS_code": "CRW" }, "geometry": { "type": "Point", "coordinates": [ -0.18667285642, 51.112213802539998 ] } },
{ "type": "Feature", "properties": { "Name": "Corbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Corbridge Rail Station", "TIPLOC": "CRBG", "CRS": "CRB", "StopAreaCode": "910GCRBG", "AdministrativeAreaRef": "110", "code": "9100CRBG", "NPTG": "E0049975", "ATCO": "310", "CRS_code": "CRB" }, "geometry": { "type": "Point", "coordinates": [ -2.01840007432, 54.966260874520003 ] } },
{ "type": "Feature", "properties": { "Name": "Corkickle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Corkickle Rail Station", "TIPLOC": "CRCK", "CRS": "CKL", "StopAreaCode": "910GCRCK", "AdministrativeAreaRef": "110", "code": "9100CRCK", "NPTG": "E0005568", "ATCO": "090", "CRS_code": "CKL" }, "geometry": { "type": "Point", "coordinates": [ -3.58216404854, 54.541679329909996 ] } },
{ "type": "Feature", "properties": { "Name": "Cardiff Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cardiff Central Rail Station", "TIPLOC": "CRDFCEN", "CRS": "CDF", "StopAreaCode": "910GCRDFCEN", "AdministrativeAreaRef": "110", "code": "9100CRDFCEN", "NPTG": "E0035815", "ATCO": "571", "CRS_code": "CDF" }, "geometry": { "type": "Point", "coordinates": [ -3.17930174024, 51.476025389950003 ] } },
{ "type": "Feature", "properties": { "Name": "Crediton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crediton Rail Station", "TIPLOC": "CREDITN", "CRS": "CDI", "StopAreaCode": "910GCREDITN", "AdministrativeAreaRef": "110", "code": "9100CREDITN", "NPTG": "E0045302", "ATCO": "110", "CRS_code": "CDI" }, "geometry": { "type": "Point", "coordinates": [ -3.64677756932, 50.783302687229998 ] } },
{ "type": "Feature", "properties": { "Name": "Cressing Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cressing Rail Station", "TIPLOC": "CRESING", "CRS": "CES", "StopAreaCode": "910GCRESING", "AdministrativeAreaRef": "110", "code": "9100CRESING", "NPTG": "E0046159", "ATCO": "150", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.57796116785, 51.852336705959999 ] } },
{ "type": "Feature", "properties": { "Name": "Crewe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crewe Rail Station", "TIPLOC": "CREWE", "CRS": "CRE", "StopAreaCode": "910GCREWE", "AdministrativeAreaRef": "110", "code": "9100CREWE", "NPTG": "E0001658", "ATCO": "060", "CRS_code": "CRE" }, "geometry": { "type": "Point", "coordinates": [ -2.43296883345, 53.08962486723 ] } },
{ "type": "Feature", "properties": { "Name": "Crayford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crayford Rail Station", "TIPLOC": "CRFD", "CRS": "CRY", "StopAreaCode": "910GCRFD", "AdministrativeAreaRef": "110", "code": "9100CRFD", "NPTG": "E0034011", "ATCO": "490", "CRS_code": "CRY" }, "geometry": { "type": "Point", "coordinates": [ 0.17893616876, 51.448279906540002 ] } },
{ "type": "Feature", "properties": { "Name": "Craigendoran Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Craigendoran Rail Station", "TIPLOC": "CRGDRN", "CRS": "CGD", "StopAreaCode": "910GCRGDRN", "AdministrativeAreaRef": "110", "code": "9100CRGDRN", "NPTG": "N0068400", "ATCO": "607", "CRS_code": "CGD" }, "geometry": { "type": "Point", "coordinates": [ -4.71124372622, 55.994796043409998 ] } },
{ "type": "Feature", "properties": { "Name": "Crews Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crews Hill Rail Station", "TIPLOC": "CRHL", "CRS": "CWH", "StopAreaCode": "910GCRHL", "AdministrativeAreaRef": "110", "code": "9100CRHL", "NPTG": "N0065140", "ATCO": "490", "CRS_code": "CWH" }, "geometry": { "type": "Point", "coordinates": [ -0.10688701485, 51.684485818349998 ] } },
{ "type": "Feature", "properties": { "Name": "Criccieth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Criccieth Rail Station", "TIPLOC": "CRICCTH", "CRS": "CCC", "StopAreaCode": "910GCRICCTH", "AdministrativeAreaRef": "110", "code": "9100CRICCTH", "NPTG": "E0054278", "ATCO": "540", "CRS_code": "CCC" }, "geometry": { "type": "Point", "coordinates": [ -4.23751192132, 52.918410494109999 ] } },
{ "type": "Feature", "properties": { "Name": "Cricklewood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cricklewood Rail Station", "TIPLOC": "CRKLWD", "CRS": "CRI", "StopAreaCode": "910GCRKLWD", "AdministrativeAreaRef": "110", "code": "9100CRKLWD", "NPTG": "N0060109", "ATCO": "490", "CRS_code": "CRI" }, "geometry": { "type": "Point", "coordinates": [ -0.2126765563, 51.558452959500002 ] } },
{ "type": "Feature", "properties": { "Name": "Crewkerne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crewkerne Rail Station", "TIPLOC": "CRKRN", "CRS": "CKN", "StopAreaCode": "910GCRKRN", "AdministrativeAreaRef": "110", "code": "9100CRKRN", "NPTG": "E0050916", "ATCO": "360", "CRS_code": "CKN" }, "geometry": { "type": "Point", "coordinates": [ -2.77849601518, 50.873535591009997 ] } },
{ "type": "Feature", "properties": { "Name": "Carluke Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carluke Rail Station", "TIPLOC": "CRLK", "CRS": "CLU", "StopAreaCode": "910GCRLK", "AdministrativeAreaRef": "110", "code": "9100CRLK", "NPTG": "ES000615", "ATCO": "615", "CRS_code": "CLU" }, "geometry": { "type": "Point", "coordinates": [ -3.84892484004, 55.731264890799999 ] } },
{ "type": "Feature", "properties": { "Name": "Charlton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Charlton Rail Station", "TIPLOC": "CRLN", "CRS": "CTN", "StopAreaCode": "910GCRLN", "AdministrativeAreaRef": "110", "code": "9100CRLN", "NPTG": "E0034323", "ATCO": "490", "CRS_code": "CTN" }, "geometry": { "type": "Point", "coordinates": [ 0.03125757663, 51.486813288180002 ] } },
{ "type": "Feature", "properties": { "Name": "Cramlington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cramlington Rail Station", "TIPLOC": "CRMLNGT", "CRS": "CRM", "StopAreaCode": "910GCRMLNGT", "AdministrativeAreaRef": "110", "code": "9100CRMLNGT", "NPTG": "E0019853", "ATCO": "310", "CRS_code": "CRM" }, "geometry": { "type": "Point", "coordinates": [ -1.59859494517, 55.08776801002 ] } },
{ "type": "Feature", "properties": { "Name": "Carnforth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carnforth Rail Station", "TIPLOC": "CRNF", "CRS": "CNF", "StopAreaCode": "910GCRNF", "AdministrativeAreaRef": "110", "code": "9100CRNF", "NPTG": "E0047428", "ATCO": "250", "CRS_code": "CNF" }, "geometry": { "type": "Point", "coordinates": [ -2.77123240407, 54.129677963250003 ] } },
{ "type": "Feature", "properties": { "Name": "Charing (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Charing (Kent) Rail Station", "TIPLOC": "CRNG", "CRS": "CHG", "StopAreaCode": "910GCRNG", "AdministrativeAreaRef": "110", "code": "9100CRNG", "NPTG": "E0047086", "ATCO": "240", "CRS_code": "CHG" }, "geometry": { "type": "Point", "coordinates": [ 0.79033127776, 51.208099312 ] } },
{ "type": "Feature", "properties": { "Name": "Crianlarich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crianlarich Rail Station", "TIPLOC": "CRNLRCH", "CRS": "CNR", "StopAreaCode": "910GCRNLRCH", "AdministrativeAreaRef": "110", "code": "9100CRNLRCH", "NPTG": "N0067262", "ATCO": "660", "CRS_code": "CNR" }, "geometry": { "type": "Point", "coordinates": [ -4.61843353149, 56.39047613308 ] } },
{ "type": "Feature", "properties": { "Name": "Crookston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crookston Rail Station", "TIPLOC": "CROKSTN", "CRS": "CKT", "StopAreaCode": "910GCROKSTN", "AdministrativeAreaRef": "110", "code": "9100CROKSTN", "NPTG": "N0068063", "ATCO": "609", "CRS_code": "CKT" }, "geometry": { "type": "Point", "coordinates": [ -4.364674969, 55.842313023309998 ] } },
{ "type": "Feature", "properties": { "Name": "Cromford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cromford Rail Station", "TIPLOC": "CROMFD", "CRS": "CMF", "StopAreaCode": "910GCROMFD", "AdministrativeAreaRef": "110", "code": "9100CROMFD", "NPTG": "E0045023", "ATCO": "100", "CRS_code": "CMF" }, "geometry": { "type": "Point", "coordinates": [ -1.54916184671, 53.112932107269998 ] } },
{ "type": "Feature", "properties": { "Name": "Crosshill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crosshill Rail Station", "TIPLOC": "CROSSHL", "CRS": "COI", "StopAreaCode": "910GCROSSHL", "AdministrativeAreaRef": "110", "code": "9100CROSSHL", "NPTG": "N0072797", "ATCO": "609", "CRS_code": "COI" }, "geometry": { "type": "Point", "coordinates": [ -4.2568112807, 55.833285156 ] } },
{ "type": "Feature", "properties": { "Name": "Croston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Croston Rail Station", "TIPLOC": "CROT", "CRS": "CSO", "StopAreaCode": "910GCROT", "AdministrativeAreaRef": "110", "code": "9100CROT", "NPTG": "E0047394", "ATCO": "250", "CRS_code": "CSO" }, "geometry": { "type": "Point", "coordinates": [ -2.77774970573, 53.667560078640001 ] } },
{ "type": "Feature", "properties": { "Name": "Crouch Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crouch Hill Rail Station", "TIPLOC": "CROUCHH", "CRS": "CRH", "StopAreaCode": "910GCROUCHH", "AdministrativeAreaRef": "110", "code": "9100CROUCHH", "NPTG": "N0065143", "ATCO": "490", "CRS_code": "CRH" }, "geometry": { "type": "Point", "coordinates": [ -0.1171487389, 51.571301879049997 ] } },
{ "type": "Feature", "properties": { "Name": "Crowle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crowle Rail Station", "TIPLOC": "CROWLE", "CRS": "CWE", "StopAreaCode": "910GCROWLE", "AdministrativeAreaRef": "110", "code": "9100CROWLE", "NPTG": "N0060039", "ATCO": "227", "CRS_code": "CWE" }, "geometry": { "type": "Point", "coordinates": [ -0.8173585581, 53.589733138269999 ] } },
{ "type": "Feature", "properties": { "Name": "Croy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Croy Rail Station", "TIPLOC": "CROY", "CRS": "CRO", "StopAreaCode": "910GCROY", "AdministrativeAreaRef": "110", "code": "9100CROY", "NPTG": "ES000902", "ATCO": "616", "CRS_code": "CRO" }, "geometry": { "type": "Point", "coordinates": [ -4.03597595896, 55.955677332980002 ] } },
{ "type": "Feature", "properties": { "Name": "Caerphilly Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Caerphilly Rail Station", "TIPLOC": "CRPHLY", "CRS": "CPH", "StopAreaCode": "910GCRPHLY", "AdministrativeAreaRef": "110", "code": "9100CRPHLY", "NPTG": "E0053976", "ATCO": "554", "CRS_code": "CPH" }, "geometry": { "type": "Point", "coordinates": [ -3.21848198941, 51.571577112569997 ] } },
{ "type": "Feature", "properties": { "Name": "Carpenders Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carpenders Park Rail Station", "TIPLOC": "CRPNDPK", "CRS": "CPK", "StopAreaCode": "910GCRPNDPK", "AdministrativeAreaRef": "110", "code": "9100CRPNDPK", "NPTG": "E0014251", "ATCO": "210", "CRS_code": "CPK" }, "geometry": { "type": "Point", "coordinates": [ -0.38593903154, 51.628351150980002 ] } },
{ "type": "Feature", "properties": { "Name": "Carshalton Beeches Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carshalton Beeches Rail Station", "TIPLOC": "CRSHLTB", "CRS": "CSB", "StopAreaCode": "910GCRSHLTB", "AdministrativeAreaRef": "110", "code": "9100CRSHLTB", "NPTG": "N0060707", "ATCO": "490", "CRS_code": "CSB" }, "geometry": { "type": "Point", "coordinates": [ -0.16979696515, 51.357410956460001 ] } },
{ "type": "Feature", "properties": { "Name": "Carshalton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carshalton Rail Station", "TIPLOC": "CRSHLTN", "CRS": "CSH", "StopAreaCode": "910GCRSHLTN", "AdministrativeAreaRef": "110", "code": "9100CRSHLTN", "NPTG": "N0076352", "ATCO": "490", "CRS_code": "CSH" }, "geometry": { "type": "Point", "coordinates": [ -0.16636845644, 51.368454313779999 ] } },
{ "type": "Feature", "properties": { "Name": "Crosskeys Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crosskeys Rail Station", "TIPLOC": "CRSKEYS", "CRS": "CKY", "StopAreaCode": "910GCRSKEYS", "AdministrativeAreaRef": "110", "code": "9100CRSKEYS", "NPTG": "E0053978", "ATCO": "554", "CRS_code": "CKY" }, "geometry": { "type": "Point", "coordinates": [ -3.1261699232, 51.620901862990003 ] } },
{ "type": "Feature", "properties": { "Name": "Crossmyloof Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crossmyloof Rail Station", "TIPLOC": "CRSMYLF", "CRS": "CMY", "StopAreaCode": "910GCRSMYLF", "AdministrativeAreaRef": "110", "code": "9100CRSMYLF", "NPTG": "N0068064", "ATCO": "609", "CRS_code": "CMY" }, "geometry": { "type": "Point", "coordinates": [ -4.28431739537, 55.833945624960002 ] } },
{ "type": "Feature", "properties": { "Name": "Cressington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cressington Rail Station", "TIPLOC": "CRSNGTN", "CRS": "CSG", "StopAreaCode": "910GCRSNGTN", "AdministrativeAreaRef": "110", "code": "9100CRSNGTN", "NPTG": "E0029662", "ATCO": "280", "CRS_code": "CSG" }, "geometry": { "type": "Point", "coordinates": [ -2.91200286503, 53.358748988199999 ] } },
{ "type": "Feature", "properties": { "Name": "Carstairs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carstairs Rail Station", "TIPLOC": "CRSTRS", "CRS": "CRS", "StopAreaCode": "910GCRSTRS", "AdministrativeAreaRef": "110", "code": "9100CRSTRS", "NPTG": "ES000656", "ATCO": "615", "CRS_code": "CRS" }, "geometry": { "type": "Point", "coordinates": [ -3.66847325053, 55.691046341560003 ] } },
{ "type": "Feature", "properties": { "Name": "Carlton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Carlton Rail Station", "TIPLOC": "CRTN", "CRS": "CTO", "StopAreaCode": "910GCRTN", "AdministrativeAreaRef": "110", "code": "9100CRTN", "NPTG": "E0020556", "ATCO": "330", "CRS_code": "CTO" }, "geometry": { "type": "Point", "coordinates": [ -1.07865491543, 52.965087262170002 ] } },
{ "type": "Feature", "properties": { "Name": "Cartsdyke Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cartsdyke Rail Station", "TIPLOC": "CRTSDYK", "CRS": "CDY", "StopAreaCode": "910GCRTSDYK", "AdministrativeAreaRef": "110", "code": "9100CRTSDYK", "NPTG": "ES000660", "ATCO": "613", "CRS_code": "CDY" }, "geometry": { "type": "Point", "coordinates": [ -4.73159071588, 55.942213127119999 ] } },
{ "type": "Feature", "properties": { "Name": "Crowhurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crowhurst Rail Station", "TIPLOC": "CRWHRST", "CRS": "CWU", "StopAreaCode": "910GCRWHRST", "AdministrativeAreaRef": "110", "code": "9100CRWHRST", "NPTG": "E0046072", "ATCO": "140", "CRS_code": "CWU" }, "geometry": { "type": "Point", "coordinates": [ 0.50133662835, 50.888579349330001 ] } },
{ "type": "Feature", "properties": { "Name": "Creswell (Derbys) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Creswell (Derbys) Rail Station", "TIPLOC": "CRWLL", "CRS": "CWD", "StopAreaCode": "910GCRWLL", "AdministrativeAreaRef": "110", "code": "9100CRWLL", "NPTG": "E0006654", "ATCO": "100", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.2163947387, 53.264112445809999 ] } },
{ "type": "Feature", "properties": { "Name": "Crowthorne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crowthorne Rail Station", "TIPLOC": "CRWTHRN", "CRS": "CRN", "StopAreaCode": "910GCRWTHRN", "AdministrativeAreaRef": "110", "code": "9100CRWTHRN", "NPTG": "E0052955", "ATCO": "035", "CRS_code": "CRN" }, "geometry": { "type": "Point", "coordinates": [ -0.81927331917, 51.366727534280002 ] } },
{ "type": "Feature", "properties": { "Name": "Crystal Palace Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Crystal Palace Rail Station", "TIPLOC": "CRYSTLP", "CRS": "CYP", "StopAreaCode": "910GCRYSTLP", "AdministrativeAreaRef": "110", "code": "9100CRYSTLP", "NPTG": "N0077740", "ATCO": "490", "CRS_code": "CYP" }, "geometry": { "type": "Point", "coordinates": [ -0.07260979705, 51.418109034849998 ] } },
{ "type": "Feature", "properties": { "Name": "Imperial Wharf Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Imperial Wharf Rail Station", "TIPLOC": "CSEAH", "CRS": "IMW", "StopAreaCode": "910GCSEAH", "AdministrativeAreaRef": "110", "code": "9100CSEAH", "NPTG": "E0034389", "ATCO": "490", "CRS_code": "IMW" }, "geometry": { "type": "Point", "coordinates": [ -0.18282267716, 51.474949096289997 ] } },
{ "type": "Feature", "properties": { "Name": "Chandlers Ford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Chandlers Ford Rail Station", "TIPLOC": "CSFD", "CRS": "CFR", "StopAreaCode": "910GCSFD", "AdministrativeAreaRef": "110", "code": "9100CSFD", "NPTG": "E0012862", "ATCO": "190", "CRS_code": "CFR" }, "geometry": { "type": "Point", "coordinates": [ -1.38517024557, 50.983683960210001 ] } },
{ "type": "Feature", "properties": { "Name": "Cross Gates Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cross Gates Rail Station", "TIPLOC": "CSGT", "CRS": "CRG", "StopAreaCode": "910GCSGT", "AdministrativeAreaRef": "110", "code": "9100CSGT", "NPTG": "E0032543", "ATCO": "450", "CRS_code": "CRG" }, "geometry": { "type": "Point", "coordinates": [ -1.4515803316, 53.804913667549997 ] } },
{ "type": "Feature", "properties": { "Name": "Castleton (Manchester) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Castleton (Manchester) Rail Station", "TIPLOC": "CSTL", "CRS": "CAS", "StopAreaCode": "910GCSTL", "AdministrativeAreaRef": "110", "code": "9100CSTL", "NPTG": "E0028690", "ATCO": "180", "CRS_code": "CAS" }, "geometry": { "type": "Point", "coordinates": [ -2.17823391448, 53.591846599790003 ] } },
{ "type": "Feature", "properties": { "Name": "Church Stretton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Church Stretton Rail Station", "TIPLOC": "CSTR", "CRS": "CTT", "StopAreaCode": "910GCSTR", "AdministrativeAreaRef": "110", "code": "9100CSTR", "NPTG": "E0050721", "ATCO": "350", "CRS_code": "CTT" }, "geometry": { "type": "Point", "coordinates": [ -2.80369433242, 52.537421353489997 ] } },
{ "type": "Feature", "properties": { "Name": "City Thameslink Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "City Thameslink Rail Station", "TIPLOC": "CTMSLNK", "CRS": "CTK", "StopAreaCode": "910GCTMSLNK", "AdministrativeAreaRef": "110", "code": "9100CTMSLNK", "NPTG": "E0057722", "ATCO": "490", "CRS_code": "CTK" }, "geometry": { "type": "Point", "coordinates": [ -0.10358956273, 51.513936136070001 ] } },
{ "type": "Feature", "properties": { "Name": "Collington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Collington Rail Station", "TIPLOC": "CTNG", "CRS": "CLL", "StopAreaCode": "910GCTNG", "AdministrativeAreaRef": "110", "code": "9100CTNG", "NPTG": "N0076011", "ATCO": "140", "CRS_code": "CLL" }, "geometry": { "type": "Point", "coordinates": [ 0.45786150182, 50.839289032819998 ] } },
{ "type": "Feature", "properties": { "Name": "Castleton Moor Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Castleton Moor Rail Station", "TIPLOC": "CTNM", "CRS": "CSM", "StopAreaCode": "910GCTNM", "AdministrativeAreaRef": "110", "code": "9100CTNM", "NPTG": "E0019059", "ATCO": "320", "CRS_code": "CSM" }, "geometry": { "type": "Point", "coordinates": [ -0.94664829988, 54.467143591750002 ] } },
{ "type": "Feature", "properties": { "Name": "Cottingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cottingham Rail Station", "TIPLOC": "CTTGHM", "CRS": "CGM", "StopAreaCode": "910GCTTGHM", "AdministrativeAreaRef": "110", "code": "9100CTTGHM", "NPTG": "E0036913", "ATCO": "220", "CRS_code": "CGM" }, "geometry": { "type": "Point", "coordinates": [ -0.40643390293, 53.781648922599999 ] } },
{ "type": "Feature", "properties": { "Name": "Cuddington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cuddington Rail Station", "TIPLOC": "CUDNGTN", "CRS": "CUD", "StopAreaCode": "910GCUDNGTN", "AdministrativeAreaRef": "110", "code": "9100CUDNGTN", "NPTG": "E0044412", "ATCO": "061", "CRS_code": "CUD" }, "geometry": { "type": "Point", "coordinates": [ -2.59930624313, 53.23991926699 ] } },
{ "type": "Feature", "properties": { "Name": "Cuffley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cuffley Rail Station", "TIPLOC": "CUFFLEY", "CRS": "CUF", "StopAreaCode": "910GCUFFLEY", "AdministrativeAreaRef": "110", "code": "9100CUFFLEY", "NPTG": "E0014313", "ATCO": "210", "CRS_code": "CUF" }, "geometry": { "type": "Point", "coordinates": [ -0.10978333193, 51.708721724070003 ] } },
{ "type": "Feature", "properties": { "Name": "Culham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Culham Rail Station", "TIPLOC": "CULHAM", "CRS": "CUM", "StopAreaCode": "910GCULHAM", "AdministrativeAreaRef": "110", "code": "9100CULHAM", "NPTG": "E0050349", "ATCO": "340", "CRS_code": "CUM" }, "geometry": { "type": "Point", "coordinates": [ -1.23651370733, 51.65379323402 ] } },
{ "type": "Feature", "properties": { "Name": "Culrain Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Culrain Rail Station", "TIPLOC": "CULRAIN", "CRS": "CUA", "StopAreaCode": "910GCULRAIN", "AdministrativeAreaRef": "110", "code": "9100CULRAIN", "NPTG": "N0067805", "ATCO": "670", "CRS_code": "CUA" }, "geometry": { "type": "Point", "coordinates": [ -4.40427062394, 57.919513033820003 ] } },
{ "type": "Feature", "properties": { "Name": "Cupar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cupar Rail Station", "TIPLOC": "CUPAR", "CRS": "CUP", "StopAreaCode": "910GCUPAR", "AdministrativeAreaRef": "110", "code": "9100CUPAR", "NPTG": "ES000946", "ATCO": "650", "CRS_code": "CUP" }, "geometry": { "type": "Point", "coordinates": [ -3.00875616642, 56.316987209280001 ] } },
{ "type": "Feature", "properties": { "Name": "Curriehill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Curriehill Rail Station", "TIPLOC": "CURRIEH", "CRS": "CUH", "StopAreaCode": "910GCURRIEH", "AdministrativeAreaRef": "110", "code": "9100CURRIEH", "NPTG": "ES000952", "ATCO": "620", "CRS_code": "CUH" }, "geometry": { "type": "Point", "coordinates": [ -3.31875136611, 55.900565365479999 ] } },
{ "type": "Feature", "properties": { "Name": "Custom House Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Custom House Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100CUSTMHS", "NPTG": "N0075225", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.02695456467, 51.509954096889999 ] } },
{ "type": "Feature", "properties": { "Name": "Cowdenbeath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cowdenbeath Rail Station", "TIPLOC": "CWDNBTH", "CRS": "COW", "StopAreaCode": "910GCWDNBTH", "AdministrativeAreaRef": "110", "code": "9100CWDNBTH", "NPTG": "N0072006", "ATCO": "650", "CRS_code": "COW" }, "geometry": { "type": "Point", "coordinates": [ -3.34318573941, 56.112091609609998 ] } },
{ "type": "Feature", "properties": { "Name": "Cwmbran Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cwmbran Rail Station", "TIPLOC": "CWMBRAN", "CRS": "CWM", "StopAreaCode": "910GCWMBRAN", "AdministrativeAreaRef": "110", "code": "9100CWMBRAN", "NPTG": "E0042757", "ATCO": "534", "CRS_code": "CWM" }, "geometry": { "type": "Point", "coordinates": [ -3.01620333634, 51.656585932970003 ] } },
{ "type": "Feature", "properties": { "Name": "Cuxton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cuxton Rail Station", "TIPLOC": "CXTN", "CRS": "CUX", "StopAreaCode": "910GCXTN", "AdministrativeAreaRef": "110", "code": "9100CXTN", "NPTG": "E0053430", "ATCO": "249", "CRS_code": "CUX" }, "geometry": { "type": "Point", "coordinates": [ 0.46170869678, 51.373926599850002 ] } },
{ "type": "Feature", "properties": { "Name": "Cynghordy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cynghordy Rail Station", "TIPLOC": "CYNGHRD", "CRS": "CYN", "StopAreaCode": "910GCYNGHRD", "AdministrativeAreaRef": "110", "code": "9100CYNGHRD", "NPTG": "E0035979", "ATCO": "522", "CRS_code": "CYN" }, "geometry": { "type": "Point", "coordinates": [ -3.74821056332, 52.051497822270001 ] } },
{ "type": "Feature", "properties": { "Name": "Daisy Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Daisy Hill Rail Station", "TIPLOC": "DAISYH", "CRS": "DSY", "StopAreaCode": "910GDAISYH", "AdministrativeAreaRef": "110", "code": "9100DAISYH", "NPTG": "E0028309", "ATCO": "180", "CRS_code": "DSY" }, "geometry": { "type": "Point", "coordinates": [ -2.51586102215, 53.539452916229997 ] } },
{ "type": "Feature", "properties": { "Name": "Dalgety Bay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalgety Bay Rail Station", "TIPLOC": "DALGETY", "CRS": "DAG", "StopAreaCode": "910GDALGETY", "AdministrativeAreaRef": "110", "code": "9100DALGETY", "NPTG": "ES000964", "ATCO": "650", "CRS_code": "DAG" }, "geometry": { "type": "Point", "coordinates": [ -3.36772058358, 56.042094592079998 ] } },
{ "type": "Feature", "properties": { "Name": "Dalmuir Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalmuir Rail Station", "TIPLOC": "DALMUIR", "CRS": "DMR", "StopAreaCode": "910GDALMUIR", "AdministrativeAreaRef": "110", "code": "9100DALMUIR", "NPTG": "N0068070", "ATCO": "608", "CRS_code": "DMR" }, "geometry": { "type": "Point", "coordinates": [ -4.42668089317, 55.911929258450002 ] } },
{ "type": "Feature", "properties": { "Name": "Dalry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalry Rail Station", "TIPLOC": "DALRY", "CRS": "DLY", "StopAreaCode": "910GDALRY", "AdministrativeAreaRef": "110", "code": "9100DALRY", "NPTG": "ES000983", "ATCO": "617", "CRS_code": "DLY" }, "geometry": { "type": "Point", "coordinates": [ -4.71107962674, 55.706220129039998 ] } },
{ "type": "Feature", "properties": { "Name": "Dalston Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalston Junction Rail Station", "TIPLOC": "DALS", "CRS": "DLJ", "StopAreaCode": "910GDALS", "AdministrativeAreaRef": "110", "code": "9100DALS", "NPTG": "E0034354", "ATCO": "490", "CRS_code": "DLJ" }, "geometry": { "type": "Point", "coordinates": [ -0.07513748995, 51.54611563297 ] } },
{ "type": "Feature", "properties": { "Name": "Dalston Kingsland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalston Kingsland Rail Station", "TIPLOC": "DALSKLD", "CRS": "DLK", "StopAreaCode": "910GDALSKLD", "AdministrativeAreaRef": "110", "code": "9100DALSKLD", "NPTG": "E0034354", "ATCO": "490", "CRS_code": "DLK" }, "geometry": { "type": "Point", "coordinates": [ -0.07570074513, 51.548148193620001 ] } },
{ "type": "Feature", "properties": { "Name": "Dalston (Cumbria) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalston (Cumbria) Rail Station", "TIPLOC": "DALSTON", "CRS": "DLS", "StopAreaCode": "910GDALSTON", "AdministrativeAreaRef": "110", "code": "9100DALSTON", "NPTG": "E0044737", "ATCO": "090", "CRS_code": "DLS" }, "geometry": { "type": "Point", "coordinates": [ -2.98885193794, 54.846176119970004 ] } },
{ "type": "Feature", "properties": { "Name": "Dalton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalton Rail Station", "TIPLOC": "DALTON", "CRS": "DLT", "StopAreaCode": "910GDALTON", "AdministrativeAreaRef": "110", "code": "9100DALTON", "NPTG": "E0055498", "ATCO": "090", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.17900277407, 54.1542367642 ] } },
{ "type": "Feature", "properties": { "Name": "Dalwhinnie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalwhinnie Rail Station", "TIPLOC": "DALWHIN", "CRS": "DLW", "StopAreaCode": "910GDALWHIN", "AdministrativeAreaRef": "110", "code": "9100DALWHIN", "NPTG": "N0067807", "ATCO": "670", "CRS_code": "DLW" }, "geometry": { "type": "Point", "coordinates": [ -4.2461984344, 56.93516967843 ] } },
{ "type": "Feature", "properties": { "Name": "Danby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Danby Rail Station", "TIPLOC": "DANBY", "CRS": "DNY", "StopAreaCode": "910GDANBY", "AdministrativeAreaRef": "110", "code": "9100DANBY", "NPTG": "E0049478", "ATCO": "320", "CRS_code": "DNY" }, "geometry": { "type": "Point", "coordinates": [ -0.91095574944, 54.466153254129999 ] } },
{ "type": "Feature", "properties": { "Name": "Danescourt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Danescourt Rail Station", "TIPLOC": "DANESCT", "CRS": "DCT", "StopAreaCode": "910GDANESCT", "AdministrativeAreaRef": "110", "code": "9100DANESCT", "NPTG": "E0054027", "ATCO": "571", "CRS_code": "DCT" }, "geometry": { "type": "Point", "coordinates": [ -3.23391681927, 51.500505850769997 ] } },
{ "type": "Feature", "properties": { "Name": "Danzey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Danzey Rail Station", "TIPLOC": "DANZEY", "CRS": "DZY", "StopAreaCode": "910GDANZEY", "AdministrativeAreaRef": "110", "code": "9100DANZEY", "NPTG": "E0026136", "ATCO": "420", "CRS_code": "DZY" }, "geometry": { "type": "Point", "coordinates": [ -1.82087715047, 52.324812633489998 ] } },
{ "type": "Feature", "properties": { "Name": "Darnall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Darnall Rail Station", "TIPLOC": "DARNALL", "CRS": "DAN", "StopAreaCode": "910GDARNALL", "AdministrativeAreaRef": "110", "code": "9100DARNALL", "NPTG": "E0030117", "ATCO": "370", "CRS_code": "DAN" }, "geometry": { "type": "Point", "coordinates": [ -1.41256706782, 53.384584199819997 ] } },
{ "type": "Feature", "properties": { "Name": "Darsham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Darsham Rail Station", "TIPLOC": "DARSHAM", "CRS": "DSM", "StopAreaCode": "910GDARSHAM", "AdministrativeAreaRef": "110", "code": "9100DARSHAM", "NPTG": "E0051610", "ATCO": "390", "CRS_code": "DSM" }, "geometry": { "type": "Point", "coordinates": [ 1.5234701168, 52.272999172440002 ] } },
{ "type": "Feature", "properties": { "Name": "Dartford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dartford Rail Station", "TIPLOC": "DARTFD", "CRS": "DFD", "StopAreaCode": "910GDARTFD", "AdministrativeAreaRef": "110", "code": "9100DARTFD", "NPTG": "E0057483", "ATCO": "240", "CRS_code": "DFD" }, "geometry": { "type": "Point", "coordinates": [ 0.21924789083, 51.447370678230001 ] } },
{ "type": "Feature", "properties": { "Name": "Darwen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Darwen Rail Station", "TIPLOC": "DARWEN", "CRS": "DWN", "StopAreaCode": "910GDARWEN", "AdministrativeAreaRef": "110", "code": "9100DARWEN", "NPTG": "E0035198", "ATCO": "258", "CRS_code": "DWN" }, "geometry": { "type": "Point", "coordinates": [ -2.46493966961, 53.698035908750001 ] } },
{ "type": "Feature", "properties": { "Name": "Datchet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Datchet Rail Station", "TIPLOC": "DATCHET", "CRS": "DAT", "StopAreaCode": "910GDATCHET", "AdministrativeAreaRef": "110", "code": "9100DATCHET", "NPTG": "E0053882", "ATCO": "036", "CRS_code": "DAT" }, "geometry": { "type": "Point", "coordinates": [ -0.57942182848, 51.483076867720001 ] } },
{ "type": "Feature", "properties": { "Name": "Davenport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Davenport Rail Station", "TIPLOC": "DAVNPRT", "CRS": "DVN", "StopAreaCode": "910GDAVNPRT", "AdministrativeAreaRef": "110", "code": "9100DAVNPRT", "NPTG": "E0028321", "ATCO": "180", "CRS_code": "DVN" }, "geometry": { "type": "Point", "coordinates": [ -2.15295775306, 53.390900398040003 ] } },
{ "type": "Feature", "properties": { "Name": "Dawlish Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dawlish Rail Station", "TIPLOC": "DAWLISH", "CRS": "DWL", "StopAreaCode": "910GDAWLISH", "AdministrativeAreaRef": "110", "code": "9100DAWLISH", "NPTG": "E0045484", "ATCO": "110", "CRS_code": "DWL" }, "geometry": { "type": "Point", "coordinates": [ -3.46462520998, 50.58082043369 ] } },
{ "type": "Feature", "properties": { "Name": "Dawlish Warren Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dawlish Warren Rail Station", "TIPLOC": "DAWLSHW", "CRS": "DWW", "StopAreaCode": "910GDAWLSHW", "AdministrativeAreaRef": "110", "code": "9100DAWLSHW", "NPTG": "E0008490", "ATCO": "110", "CRS_code": "DWW" }, "geometry": { "type": "Point", "coordinates": [ -3.44356148218, 50.59871058889 ] } },
{ "type": "Feature", "properties": { "Name": "Kelvindale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kelvindale Rail Station", "TIPLOC": "DAWSHLM", "CRS": "KVD", "StopAreaCode": "910GDAWSHLM", "AdministrativeAreaRef": "110", "code": "9100DAWSHLM", "NPTG": "ES001943", "ATCO": "609", "CRS_code": "KVD" }, "geometry": { "type": "Point", "coordinates": [ -4.30957257937, 55.893555820069999 ] } },
{ "type": "Feature", "properties": { "Name": "Deal Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Deal Rail Station", "TIPLOC": "DEAL", "CRS": "DEA", "StopAreaCode": "910GDEAL", "AdministrativeAreaRef": "110", "code": "9100DEAL", "NPTG": "E0014727", "ATCO": "240", "CRS_code": "DEA" }, "geometry": { "type": "Point", "coordinates": [ 1.39884701484, 51.223044527020001 ] } },
{ "type": "Feature", "properties": { "Name": "Dean Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dean Rail Station", "TIPLOC": "DEAN", "CRS": "DEN", "StopAreaCode": "910GDEAN", "AdministrativeAreaRef": "110", "code": "9100DEAN", "NPTG": "E0052410", "ATCO": "190", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.63486702911, 51.042460934319998 ] } },
{ "type": "Feature", "properties": { "Name": "Deganwy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Deganwy Rail Station", "TIPLOC": "DEGANWY", "CRS": "DGY", "StopAreaCode": "910GDEGANWY", "AdministrativeAreaRef": "110", "code": "9100DEGANWY", "NPTG": "E0036553", "ATCO": "513", "CRS_code": "DGY" }, "geometry": { "type": "Point", "coordinates": [ -3.83338630389, 53.294747447170003 ] } },
{ "type": "Feature", "properties": { "Name": "Deighton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Deighton Rail Station", "TIPLOC": "DEIGHTN", "CRS": "DHN", "StopAreaCode": "910GDEIGHTN", "AdministrativeAreaRef": "110", "code": "9100DEIGHTN", "NPTG": "E0032578", "ATCO": "450", "CRS_code": "DHN" }, "geometry": { "type": "Point", "coordinates": [ -1.75189639415, 53.668482577939997 ] } },
{ "type": "Feature", "properties": { "Name": "Delamere Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Delamere Rail Station", "TIPLOC": "DELAMER", "CRS": "DLM", "StopAreaCode": "910GDELAMER", "AdministrativeAreaRef": "110", "code": "9100DELAMER", "NPTG": "E0044415", "ATCO": "061", "CRS_code": "DLM" }, "geometry": { "type": "Point", "coordinates": [ -2.66656030674, 53.228775258959999 ] } },
{ "type": "Feature", "properties": { "Name": "Denham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Denham Rail Station", "TIPLOC": "DENHAM", "CRS": "DNM", "StopAreaCode": "910GDENHAM", "AdministrativeAreaRef": "110", "code": "9100DENHAM", "NPTG": "E0044072", "ATCO": "040", "CRS_code": "DNM" }, "geometry": { "type": "Point", "coordinates": [ -0.4974367743, 51.578837248230002 ] } },
{ "type": "Feature", "properties": { "Name": "Denham Golf Club Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Denham Golf Club Rail Station", "TIPLOC": "DENHMGC", "CRS": "DGC", "StopAreaCode": "910GDENHMGC", "AdministrativeAreaRef": "110", "code": "9100DENHMGC", "NPTG": "E0000611", "ATCO": "040", "CRS_code": "DGC" }, "geometry": { "type": "Point", "coordinates": [ -0.51778660183, 51.58059766729 ] } },
{ "type": "Feature", "properties": { "Name": "Denmark Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Denmark Hill Rail Station", "TIPLOC": "DENMRKH", "CRS": "DMK", "StopAreaCode": "910GDENMRKH", "AdministrativeAreaRef": "110", "code": "9100DENMRKH", "NPTG": "N0060434", "ATCO": "490", "CRS_code": "DMK" }, "geometry": { "type": "Point", "coordinates": [ -0.08936080308, 51.468202671089998 ] } },
{ "type": "Feature", "properties": { "Name": "Dent Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dent Rail Station", "TIPLOC": "DENT", "CRS": "DNT", "StopAreaCode": "910GDENT", "AdministrativeAreaRef": "110", "code": "9100DENT", "NPTG": "E0044881", "ATCO": "090", "CRS_code": "DNT" }, "geometry": { "type": "Point", "coordinates": [ -2.36359856953, 54.282408655769999 ] } },
{ "type": "Feature", "properties": { "Name": "Dorking Deepdene Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dorking Deepdene Rail Station", "TIPLOC": "DEPDENE", "CRS": "DPD", "StopAreaCode": "910GDEPDENE", "AdministrativeAreaRef": "110", "code": "9100DEPDENE", "NPTG": "E0025454", "ATCO": "400", "CRS_code": "DPD" }, "geometry": { "type": "Point", "coordinates": [ -0.32464310745, 51.238804188140001 ] } },
{ "type": "Feature", "properties": { "Name": "Deptford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Deptford Rail Station", "TIPLOC": "DEPTFD", "CRS": "DEP", "StopAreaCode": "910GDEPTFD", "AdministrativeAreaRef": "110", "code": "9100DEPTFD", "NPTG": "N0065229", "ATCO": "490", "CRS_code": "DEP" }, "geometry": { "type": "Point", "coordinates": [ -0.02627013065, 51.478848026900003 ] } },
{ "type": "Feature", "properties": { "Name": "Derby Road (Ipswich) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Derby Road (Ipswich) Rail Station", "TIPLOC": "DERBYRD", "CRS": "DBR", "StopAreaCode": "910GDERBYRD", "AdministrativeAreaRef": "110", "code": "9100DERBYRD", "NPTG": "E0024801", "ATCO": "390", "CRS_code": "DBR" }, "geometry": { "type": "Point", "coordinates": [ 1.18264348311, 52.050554833859998 ] } },
{ "type": "Feature", "properties": { "Name": "Derker Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Derker Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GDERKER", "AdministrativeAreaRef": "110", "code": "9100DERKER", "NPTG": "E0028333", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.10168807623, 53.550140696299998 ] } },
{ "type": "Feature", "properties": { "Name": "Devonport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Devonport Rail Station", "TIPLOC": "DEVNPRT", "CRS": "DPT", "StopAreaCode": "910GDEVNPRT", "AdministrativeAreaRef": "110", "code": "9100DEVNPRT", "NPTG": "E0040584", "ATCO": "118", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.17070986418, 50.378533381689998 ] } },
{ "type": "Feature", "properties": { "Name": "Dingle Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dingle Road Rail Station", "TIPLOC": "DGLROAD", "CRS": "DGL", "StopAreaCode": "910GDGLROAD", "AdministrativeAreaRef": "110", "code": "9100DGLROAD", "NPTG": "E0054764", "ATCO": "572", "CRS_code": "DGL" }, "geometry": { "type": "Point", "coordinates": [ -3.18059053589, 51.440053597069998 ] } },
{ "type": "Feature", "properties": { "Name": "Dagenham Dock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dagenham Dock Rail Station", "TIPLOC": "DGNHMDC", "CRS": "DDK", "StopAreaCode": "910GDGNHMDC", "AdministrativeAreaRef": "110", "code": "9100DGNHMDC", "NPTG": "E0033934", "ATCO": "490", "CRS_code": "DDK" }, "geometry": { "type": "Point", "coordinates": [ 0.14610297941, 51.526089674669997 ] } },
{ "type": "Feature", "properties": { "Name": "Didcot Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Didcot Parkway Rail Station", "TIPLOC": "DIDCOTP", "CRS": "DID", "StopAreaCode": "910GDIDCOTP", "AdministrativeAreaRef": "110", "code": "9100DIDCOTP", "NPTG": "E0050351", "ATCO": "340", "CRS_code": "DID" }, "geometry": { "type": "Point", "coordinates": [ -1.24289343271, 51.610954351030003 ] } },
{ "type": "Feature", "properties": { "Name": "Digby & Sowton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Digby & Sowton Rail Station", "TIPLOC": "DIGBY", "CRS": "DIG", "StopAreaCode": "910GDIGBY", "AdministrativeAreaRef": "110", "code": "9100DIGBY", "NPTG": "E0007688", "ATCO": "110", "CRS_code": "DIG" }, "geometry": { "type": "Point", "coordinates": [ -3.47356043669, 50.71398935002 ] } },
{ "type": "Feature", "properties": { "Name": "Dilton Marsh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dilton Marsh Rail Station", "TIPLOC": "DILTONM", "CRS": "DMH", "StopAreaCode": "910GDILTONM", "AdministrativeAreaRef": "110", "code": "9100DILTONM", "NPTG": "E0052436", "ATCO": "460", "CRS_code": "DMH" }, "geometry": { "type": "Point", "coordinates": [ -2.20791529093, 51.248987183319997 ] } },
{ "type": "Feature", "properties": { "Name": "Dinas Powys Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dinas Powys Rail Station", "TIPLOC": "DINASP", "CRS": "DNS", "StopAreaCode": "910GDINASP", "AdministrativeAreaRef": "110", "code": "9100DINASP", "NPTG": "E0054754", "ATCO": "572", "CRS_code": "DNS" }, "geometry": { "type": "Point", "coordinates": [ -3.21835155149, 51.431664243119997 ] } },
{ "type": "Feature", "properties": { "Name": "Dinas (Rhondda) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dinas (Rhondda) Rail Station", "TIPLOC": "DINASR", "CRS": "DMG", "StopAreaCode": "910GDINASR", "AdministrativeAreaRef": "110", "code": "9100DINASR", "NPTG": "E0041624", "ATCO": "552", "CRS_code": "DMG" }, "geometry": { "type": "Point", "coordinates": [ -3.43754109199, 51.617833970420001 ] } },
{ "type": "Feature", "properties": { "Name": "Dingwall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dingwall Rail Station", "TIPLOC": "DINGWAL", "CRS": "DIN", "StopAreaCode": "910GDINGWAL", "AdministrativeAreaRef": "110", "code": "9100DINGWAL", "NPTG": "ES001028", "ATCO": "670", "CRS_code": "DIN" }, "geometry": { "type": "Point", "coordinates": [ -4.4221988056, 57.594235351229997 ] } },
{ "type": "Feature", "properties": { "Name": "Dinsdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dinsdale Rail Station", "TIPLOC": "DINSDAL", "CRS": "DND", "StopAreaCode": "910GDINSDAL", "AdministrativeAreaRef": "110", "code": "9100DINSDAL", "NPTG": "E0052977", "ATCO": "076", "CRS_code": "DND" }, "geometry": { "type": "Point", "coordinates": [ -1.4670649796, 54.514728819410003 ] } },
{ "type": "Feature", "properties": { "Name": "Disley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Disley Rail Station", "TIPLOC": "DISLEY", "CRS": "DSL", "StopAreaCode": "910GDISLEY", "AdministrativeAreaRef": "110", "code": "9100DISLEY", "NPTG": "E0044360", "ATCO": "060", "CRS_code": "DSL" }, "geometry": { "type": "Point", "coordinates": [ -2.04248151868, 53.358182681130003 ] } },
{ "type": "Feature", "properties": { "Name": "Diss Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Diss Rail Station", "TIPLOC": "DISS", "CRS": "DIS", "StopAreaCode": "910GDISS", "AdministrativeAreaRef": "110", "code": "9100DISS", "NPTG": "E0048778", "ATCO": "290", "CRS_code": "DIS" }, "geometry": { "type": "Point", "coordinates": [ 1.12369755397, 52.373657909199999 ] } },
{ "type": "Feature", "properties": { "Name": "Dalmally Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalmally Rail Station", "TIPLOC": "DLMALLY", "CRS": "DAL", "StopAreaCode": "910GDLMALLY", "AdministrativeAreaRef": "110", "code": "9100DLMALLY", "NPTG": "N0068414", "ATCO": "607", "CRS_code": "DAL" }, "geometry": { "type": "Point", "coordinates": [ -4.98355207003, 56.401189196730002 ] } },
{ "type": "Feature", "properties": { "Name": "Dalmarnock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalmarnock Rail Station", "TIPLOC": "DLMRNOK", "CRS": "DAK", "StopAreaCode": "910GDLMRNOK", "AdministrativeAreaRef": "110", "code": "9100DLMRNOK", "NPTG": "N0068069", "ATCO": "609", "CRS_code": "DAK" }, "geometry": { "type": "Point", "coordinates": [ -4.2177085974, 55.842085258650002 ] } },
{ "type": "Feature", "properties": { "Name": "Dalmeny Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalmeny Rail Station", "TIPLOC": "DLMY", "CRS": "DAM", "StopAreaCode": "910GDLMY", "AdministrativeAreaRef": "110", "code": "9100DLMY", "NPTG": "ES000977", "ATCO": "620", "CRS_code": "DAM" }, "geometry": { "type": "Point", "coordinates": [ -3.38161960541, 55.986318625220001 ] } },
{ "type": "Feature", "properties": { "Name": "Dalreoch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dalreoch Rail Station", "TIPLOC": "DLREOCH", "CRS": "DLR", "StopAreaCode": "910GDLREOCH", "AdministrativeAreaRef": "110", "code": "9100DLREOCH", "NPTG": "ES001089", "ATCO": "608", "CRS_code": "DLR" }, "geometry": { "type": "Point", "coordinates": [ -4.57786294095, 55.94741499058 ] } },
{ "type": "Feature", "properties": { "Name": "Darlington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Darlington Rail Station", "TIPLOC": "DLTN", "CRS": "DAR", "StopAreaCode": "910GDLTN", "AdministrativeAreaRef": "110", "code": "9100DLTN", "NPTG": "E0054904", "ATCO": "320", "CRS_code": "DAR" }, "geometry": { "type": "Point", "coordinates": [ -1.54732382418, 54.520447865720001 ] } },
{ "type": "Feature", "properties": { "Name": "Dolwyddelan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dolwyddelan Rail Station", "TIPLOC": "DLWYDLN", "CRS": "DWD", "StopAreaCode": "910GDLWYDLN", "AdministrativeAreaRef": "110", "code": "9100DLWYDLN", "NPTG": "E0054163", "ATCO": "513", "CRS_code": "DWD" }, "geometry": { "type": "Point", "coordinates": [ -3.88513216611, 53.052012370139998 ] } },
{ "type": "Feature", "properties": { "Name": "Dumbarton Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dumbarton Central Rail Station", "TIPLOC": "DMBRTNC", "CRS": "DBC", "StopAreaCode": "910GDMBRTNC", "AdministrativeAreaRef": "110", "code": "9100DMBRTNC", "NPTG": "ES001089", "ATCO": "608", "CRS_code": "DBC" }, "geometry": { "type": "Point", "coordinates": [ -4.56692057241, 55.946654875870003 ] } },
{ "type": "Feature", "properties": { "Name": "Dumbarton East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dumbarton East Rail Station", "TIPLOC": "DMBRTNE", "CRS": "DBE", "StopAreaCode": "910GDMBRTNE", "AdministrativeAreaRef": "110", "code": "9100DMBRTNE", "NPTG": "ES001089", "ATCO": "608", "CRS_code": "DBE" }, "geometry": { "type": "Point", "coordinates": [ -4.55413669944, 55.942246886520003 ] } },
{ "type": "Feature", "properties": { "Name": "Denby Dale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Denby Dale Rail Station", "TIPLOC": "DNDL", "CRS": "DBD", "StopAreaCode": "910GDNDL", "AdministrativeAreaRef": "110", "code": "9100DNDL", "NPTG": "E0052832", "ATCO": "450", "CRS_code": "DBD" }, "geometry": { "type": "Point", "coordinates": [ -1.66321034051, 53.57263103204 ] } },
{ "type": "Feature", "properties": { "Name": "Dunfermline Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunfermline Town Rail Station", "TIPLOC": "DNFRMLE", "CRS": "DFE", "StopAreaCode": "910GDNFRMLE", "AdministrativeAreaRef": "110", "code": "9100DNFRMLE", "NPTG": "ES001131", "ATCO": "650", "CRS_code": "DFE" }, "geometry": { "type": "Point", "coordinates": [ -3.45252866573, 56.068190000370002 ] } },
{ "type": "Feature", "properties": { "Name": "Dunfermline Queen Margaret Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunfermline Queen Margaret Rail Station", "TIPLOC": "DNFRMQM", "CRS": "DFL", "StopAreaCode": "910GDNFRMQM", "AdministrativeAreaRef": "110", "code": "9100DNFRMQM", "NPTG": "ES001131", "ATCO": "650", "CRS_code": "DFL" }, "geometry": { "type": "Point", "coordinates": [ -3.42146776882, 56.080574441460001 ] } },
{ "type": "Feature", "properties": { "Name": "Dunlop Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunlop Rail Station", "TIPLOC": "DNLP", "CRS": "DNL", "StopAreaCode": "910GDNLP", "AdministrativeAreaRef": "110", "code": "9100DNLP", "NPTG": "ES001170", "ATCO": "618", "CRS_code": "DNL" }, "geometry": { "type": "Point", "coordinates": [ -4.53238880056, 55.711879890719999 ] } },
{ "type": "Feature", "properties": { "Name": "Dunrobin Castle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunrobin Castle Rail Station", "TIPLOC": "DNROBIN", "CRS": "DNO", "StopAreaCode": "910GDNROBIN", "AdministrativeAreaRef": "110", "code": "9100DNROBIN", "NPTG": "ES001624", "ATCO": "670", "CRS_code": "DNO" }, "geometry": { "type": "Point", "coordinates": [ -3.94892085881, 57.98553352175 ] } },
{ "type": "Feature", "properties": { "Name": "Dunston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunston Rail Station", "TIPLOC": "DNSN", "CRS": "DOT", "StopAreaCode": "910GDNSN", "AdministrativeAreaRef": "110", "code": "9100DNSN", "NPTG": "E0030856", "ATCO": "410", "CRS_code": "DOT" }, "geometry": { "type": "Point", "coordinates": [ -1.64204440719, 54.95005526229 ] } },
{ "type": "Feature", "properties": { "Name": "Dinting Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dinting Rail Station", "TIPLOC": "DNTG", "CRS": "DTG", "StopAreaCode": "910GDNTG", "AdministrativeAreaRef": "110", "code": "9100DNTG", "NPTG": "N0065072", "ATCO": "100", "CRS_code": "DTG" }, "geometry": { "type": "Point", "coordinates": [ -1.97029854812, 53.449330612399997 ] } },
{ "type": "Feature", "properties": { "Name": "Denton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Denton Rail Station", "TIPLOC": "DNTON", "CRS": "DTN", "StopAreaCode": "910GDNTON", "AdministrativeAreaRef": "110", "code": "9100DNTON", "NPTG": "N0074964", "ATCO": "180", "CRS_code": "DTN" }, "geometry": { "type": "Point", "coordinates": [ -2.13165951944, 53.456865663770003 ] } },
{ "type": "Feature", "properties": { "Name": "Dockyard (Plymouth) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dockyard (Plymouth) Rail Station", "TIPLOC": "DOCKYDP", "CRS": "DOC", "StopAreaCode": "910GDOCKYDP", "AdministrativeAreaRef": "110", "code": "9100DOCKYDP", "NPTG": "N0073197", "ATCO": "118", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.17589770876, 50.382169075539998 ] } },
{ "type": "Feature", "properties": { "Name": "Dodworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dodworth Rail Station", "TIPLOC": "DODWRTH", "CRS": "DOD", "StopAreaCode": "910GDODWRTH", "AdministrativeAreaRef": "110", "code": "9100DODWRTH", "NPTG": "E0030128", "ATCO": "370", "CRS_code": "DOD" }, "geometry": { "type": "Point", "coordinates": [ -1.53169071566, 53.544324726079999 ] } },
{ "type": "Feature", "properties": { "Name": "Dolau Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dolau Rail Station", "TIPLOC": "DOLAU", "CRS": "DOL", "StopAreaCode": "910GDOLAU", "AdministrativeAreaRef": "110", "code": "9100DOLAU", "NPTG": "E0040958", "ATCO": "561", "CRS_code": "DOL" }, "geometry": { "type": "Point", "coordinates": [ -3.26362033113, 52.295350369440001 ] } },
{ "type": "Feature", "properties": { "Name": "Doleham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Doleham Rail Station", "TIPLOC": "DOLEHAM", "CRS": "DLH", "StopAreaCode": "910GDOLEHAM", "AdministrativeAreaRef": "110", "code": "9100DOLEHAM", "NPTG": "E0010698", "ATCO": "140", "CRS_code": "DLH" }, "geometry": { "type": "Point", "coordinates": [ 0.6099748606, 50.918588219109999 ] } },
{ "type": "Feature", "properties": { "Name": "Dolgarrog Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dolgarrog Rail Station", "TIPLOC": "DOLGARG", "CRS": "DLG", "StopAreaCode": "910GDOLGARG", "AdministrativeAreaRef": "110", "code": "9100DOLGARG", "NPTG": "E0054162", "ATCO": "513", "CRS_code": "DLG" }, "geometry": { "type": "Point", "coordinates": [ -3.82263612317, 53.186347993810003 ] } },
{ "type": "Feature", "properties": { "Name": "Doncaster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Doncaster Rail Station", "TIPLOC": "DONC", "CRS": "DON", "StopAreaCode": "910GDONC", "AdministrativeAreaRef": "110", "code": "9100DONC", "NPTG": "N0077771", "ATCO": "370", "CRS_code": "DON" }, "geometry": { "type": "Point", "coordinates": [ -1.13984520717, 53.522149484160003 ] } },
{ "type": "Feature", "properties": { "Name": "Dore & Totley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dore & Totley Rail Station", "TIPLOC": "DORE", "CRS": "DOR", "StopAreaCode": "910GDORE", "AdministrativeAreaRef": "110", "code": "9100DORE", "NPTG": "E0030131", "ATCO": "370", "CRS_code": "DOR" }, "geometry": { "type": "Point", "coordinates": [ -1.51529759405, 53.32763431059 ] } },
{ "type": "Feature", "properties": { "Name": "Dorridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dorridge Rail Station", "TIPLOC": "DORIDGE", "CRS": "DDG", "StopAreaCode": "910GDORIDGE", "AdministrativeAreaRef": "110", "code": "9100DORIDGE", "NPTG": "E0031508", "ATCO": "430", "CRS_code": "DDG" }, "geometry": { "type": "Point", "coordinates": [ -1.75290025038, 52.372068416189997 ] } },
{ "type": "Feature", "properties": { "Name": "Dorking Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dorking Rail Station", "TIPLOC": "DORKING", "CRS": "DKG", "StopAreaCode": "910GDORKING", "AdministrativeAreaRef": "110", "code": "9100DORKING", "NPTG": "E0025454", "ATCO": "400", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.324250704, 51.240929838660001 ] } },
{ "type": "Feature", "properties": { "Name": "Dormans Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dormans Rail Station", "TIPLOC": "DORMANS", "CRS": "DMS", "StopAreaCode": "910GDORMANS", "AdministrativeAreaRef": "110", "code": "9100DORMANS", "NPTG": "E0025696", "ATCO": "400", "CRS_code": "DMS" }, "geometry": { "type": "Point", "coordinates": [ -0.00430818177, 51.155791795820001 ] } },
{ "type": "Feature", "properties": { "Name": "Dover Priory Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dover Priory Rail Station", "TIPLOC": "DOVERP", "CRS": "DVP", "StopAreaCode": "910GDOVERP", "AdministrativeAreaRef": "110", "code": "9100DOVERP", "NPTG": "E0047158", "ATCO": "240", "CRS_code": "DVP" }, "geometry": { "type": "Point", "coordinates": [ 1.30529371233, 51.125700522789998 ] } },
{ "type": "Feature", "properties": { "Name": "Dovercourt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dovercourt Rail Station", "TIPLOC": "DOVRCRT", "CRS": "DVC", "StopAreaCode": "910GDOVRCRT", "AdministrativeAreaRef": "110", "code": "9100DOVRCRT", "NPTG": "E0011456", "ATCO": "150", "CRS_code": "DVC" }, "geometry": { "type": "Point", "coordinates": [ 1.28061113132, 51.938738395519998 ] } },
{ "type": "Feature", "properties": { "Name": "Dovey Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dovey Junction Rail Station", "TIPLOC": "DOVYJN", "CRS": "DVY", "StopAreaCode": "910GDOVYJN", "AdministrativeAreaRef": "110", "code": "9100DOVYJN", "NPTG": "E0040946", "ATCO": "561", "CRS_code": "DVY" }, "geometry": { "type": "Point", "coordinates": [ -3.92390213783, 52.564358845329998 ] } },
{ "type": "Feature", "properties": { "Name": "Downham Market Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Downham Market Rail Station", "TIPLOC": "DOWNHAM", "CRS": "DOW", "StopAreaCode": "910GDOWNHAM", "AdministrativeAreaRef": "110", "code": "9100DOWNHAM", "NPTG": "E0048544", "ATCO": "290", "CRS_code": "DOW" }, "geometry": { "type": "Point", "coordinates": [ 0.36568116528, 52.604108842320002 ] } },
{ "type": "Feature", "properties": { "Name": "Drayton Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drayton Green Rail Station", "TIPLOC": "DRAYGRN", "CRS": "DRG", "StopAreaCode": "910GDRAYGRN", "AdministrativeAreaRef": "110", "code": "9100DRAYGRN", "NPTG": "E0034266", "ATCO": "490", "CRS_code": "DRG" }, "geometry": { "type": "Point", "coordinates": [ -0.33019417413, 51.516616622470004 ] } },
{ "type": "Feature", "properties": { "Name": "Derby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Derby Rail Station", "TIPLOC": "DRBY", "CRS": "DBY", "StopAreaCode": "910GDRBY", "AdministrativeAreaRef": "110", "code": "9100DRBY", "NPTG": "E0054915", "ATCO": "109", "CRS_code": "DBY" }, "geometry": { "type": "Point", "coordinates": [ -1.46335462483, 52.916547857429997 ] } },
{ "type": "Feature", "properties": { "Name": "Dorchester South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dorchester South Rail Station", "TIPLOC": "DRCHS", "CRS": "DCH", "StopAreaCode": "910GDRCHS", "AdministrativeAreaRef": "110", "code": "9100DRCHS", "NPTG": "E0045812", "ATCO": "120", "CRS_code": "DCH" }, "geometry": { "type": "Point", "coordinates": [ -2.43724268083, 50.709291902380002 ] } },
{ "type": "Feature", "properties": { "Name": "Dorchester West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dorchester West Rail Station", "TIPLOC": "DRCHW", "CRS": "DCW", "StopAreaCode": "910GDRCHW", "AdministrativeAreaRef": "110", "code": "9100DRCHW", "NPTG": "E0045812", "ATCO": "120", "CRS_code": "DCW" }, "geometry": { "type": "Point", "coordinates": [ -2.44254095969, 50.710953542070001 ] } },
{ "type": "Feature", "properties": { "Name": "Drem Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drem Rail Station", "TIPLOC": "DREMJ", "CRS": "DRM", "StopAreaCode": "910GDREMJ", "AdministrativeAreaRef": "110", "code": "9100DREMJ", "NPTG": "N0067276", "ATCO": "627", "CRS_code": "DRM" }, "geometry": { "type": "Point", "coordinates": [ -2.7860478245, 56.005122606550003 ] } },
{ "type": "Feature", "properties": { "Name": "Durham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Durham Rail Station", "TIPLOC": "DRHM", "CRS": "DHM", "StopAreaCode": "910GDRHM", "AdministrativeAreaRef": "110", "code": "9100DRHM", "NPTG": "E0055696", "ATCO": "130", "CRS_code": "DHM" }, "geometry": { "type": "Point", "coordinates": [ -1.58175192897, 54.779390269319997 ] } },
{ "type": "Feature", "properties": { "Name": "Driffield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Driffield Rail Station", "TIPLOC": "DRIFILD", "CRS": "DRF", "StopAreaCode": "910GDRIFILD", "AdministrativeAreaRef": "110", "code": "9100DRIFILD", "NPTG": "E0053023", "ATCO": "220", "CRS_code": "DRF" }, "geometry": { "type": "Point", "coordinates": [ -0.43466492953, 54.001528154740001 ] } },
{ "type": "Feature", "properties": { "Name": "Drigg Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drigg Rail Station", "TIPLOC": "DRIGG", "CRS": "DRI", "StopAreaCode": "910GDRIGG", "AdministrativeAreaRef": "110", "code": "9100DRIGG", "NPTG": "E0005578", "ATCO": "090", "CRS_code": "DRI" }, "geometry": { "type": "Point", "coordinates": [ -3.44341297498, 54.376959419949998 ] } },
{ "type": "Feature", "properties": { "Name": "Dorking West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dorking West Rail Station", "TIPLOC": "DRKGW", "CRS": "DKT", "StopAreaCode": "910GDRKGW", "AdministrativeAreaRef": "110", "code": "9100DRKGW", "NPTG": "E0025454", "ATCO": "400", "CRS_code": "DKT" }, "geometry": { "type": "Point", "coordinates": [ -0.33997848242, 51.236225974669999 ] } },
{ "type": "Feature", "properties": { "Name": "Drumchapel Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drumchapel Rail Station", "TIPLOC": "DRMCHPL", "CRS": "DMC", "StopAreaCode": "910GDRMCHPL", "AdministrativeAreaRef": "110", "code": "9100DRMCHPL", "NPTG": "N0068073", "ATCO": "609", "CRS_code": "DMC" }, "geometry": { "type": "Point", "coordinates": [ -4.36287883047, 55.904812012070003 ] } },
{ "type": "Feature", "properties": { "Name": "Drumfrochar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drumfrochar Rail Station", "TIPLOC": "DRMFCHR", "CRS": "DFR", "StopAreaCode": "910GDRMFCHR", "AdministrativeAreaRef": "110", "code": "9100DRMFCHR", "NPTG": "ES001670", "ATCO": "613", "CRS_code": "DFR" }, "geometry": { "type": "Point", "coordinates": [ -4.77476603849, 55.941247673790002 ] } },
{ "type": "Feature", "properties": { "Name": "Drumgelloch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drumgelloch Rail Station", "TIPLOC": "DRMGLCH", "CRS": "DRU", "StopAreaCode": "910GDRMGLCH", "AdministrativeAreaRef": "110", "code": "9100DRMGLCH", "NPTG": "N0068074", "ATCO": "616", "CRS_code": "DRU" }, "geometry": { "type": "Point", "coordinates": [ -3.94888209929, 55.867353402200003 ] } },
{ "type": "Feature", "properties": { "Name": "Durrington-on-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Durrington-on-Sea Rail Station", "TIPLOC": "DRNGTOS", "CRS": "DUR", "StopAreaCode": "910GDRNGTOS", "AdministrativeAreaRef": "110", "code": "9100DRNGTOS", "NPTG": "E0026834", "ATCO": "440", "CRS_code": "DUR" }, "geometry": { "type": "Point", "coordinates": [ -0.4114686291, 50.817527863430001 ] } },
{ "type": "Feature", "properties": { "Name": "Dronfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dronfield Rail Station", "TIPLOC": "DRONFLD", "CRS": "DRO", "StopAreaCode": "910GDRONFLD", "AdministrativeAreaRef": "110", "code": "9100DRONFLD", "NPTG": "E0045148", "ATCO": "100", "CRS_code": "DRO" }, "geometry": { "type": "Point", "coordinates": [ -1.46877852613, 53.301368865859999 ] } },
{ "type": "Feature", "properties": { "Name": "Darton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Darton Rail Station", "TIPLOC": "DRTN", "CRS": "DRT", "StopAreaCode": "910GDRTN", "AdministrativeAreaRef": "110", "code": "9100DRTN", "NPTG": "E0030118", "ATCO": "370", "CRS_code": "DRT" }, "geometry": { "type": "Point", "coordinates": [ -1.53165740985, 53.588367719479997 ] } },
{ "type": "Feature", "properties": { "Name": "Droitwich Spa Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Droitwich Spa Rail Station", "TIPLOC": "DRTWCHS", "CRS": "DTW", "StopAreaCode": "910GDRTWCHS", "AdministrativeAreaRef": "110", "code": "9100DRTWCHS", "NPTG": "E0052594", "ATCO": "200", "CRS_code": "DTW" }, "geometry": { "type": "Point", "coordinates": [ -2.15836313989, 52.268202972840001 ] } },
{ "type": "Feature", "properties": { "Name": "Drumry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drumry Rail Station", "TIPLOC": "DRUMRY", "CRS": "DMY", "StopAreaCode": "910GDRUMRY", "AdministrativeAreaRef": "110", "code": "9100DRUMRY", "NPTG": "N0078830", "ATCO": "608", "CRS_code": "DMY" }, "geometry": { "type": "Point", "coordinates": [ -4.38547224651, 55.90459189976 ] } },
{ "type": "Feature", "properties": { "Name": "Drayton Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Drayton Park Rail Station", "TIPLOC": "DRYP", "CRS": "DYP", "StopAreaCode": "910GDRYP", "AdministrativeAreaRef": "110", "code": "9100DRYP", "NPTG": "E0034570", "ATCO": "490", "CRS_code": "DYP" }, "geometry": { "type": "Point", "coordinates": [ -0.10550892784, 51.55276987397 ] } },
{ "type": "Feature", "properties": { "Name": "Dunton Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunton Green Rail Station", "TIPLOC": "DTNG", "CRS": "DNG", "StopAreaCode": "910GDTNG", "AdministrativeAreaRef": "110", "code": "9100DTNG", "NPTG": "E0047238", "ATCO": "240", "CRS_code": "DNG" }, "geometry": { "type": "Point", "coordinates": [ 0.17093720894, 51.296490258669998 ] } },
{ "type": "Feature", "properties": { "Name": "Duddeston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Duddeston Rail Station", "TIPLOC": "DUDESTN", "CRS": "DUD", "StopAreaCode": "910GDUDESTN", "AdministrativeAreaRef": "110", "code": "9100DUDESTN", "NPTG": "N0072546", "ATCO": "430", "CRS_code": "DUD" }, "geometry": { "type": "Point", "coordinates": [ -1.87139045926, 52.488362828870002 ] } },
{ "type": "Feature", "properties": { "Name": "Dudley Port Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dudley Port Rail Station", "TIPLOC": "DUDLPT", "CRS": "DDP", "StopAreaCode": "910GDUDLPT", "AdministrativeAreaRef": "110", "code": "9100DUDLPT", "NPTG": "E0031515", "ATCO": "430", "CRS_code": "DDP" }, "geometry": { "type": "Point", "coordinates": [ -2.0494795502, 52.524651347930003 ] } },
{ "type": "Feature", "properties": { "Name": "Duffield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Duffield Rail Station", "TIPLOC": "DUFIELD", "CRS": "DFI", "StopAreaCode": "910GDUFIELD", "AdministrativeAreaRef": "110", "code": "9100DUFIELD", "NPTG": "E0044953", "ATCO": "100", "CRS_code": "DFI" }, "geometry": { "type": "Point", "coordinates": [ -1.48597171112, 52.988400677489999 ] } },
{ "type": "Feature", "properties": { "Name": "Duirinish Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Duirinish Rail Station", "TIPLOC": "DUIRNSH", "CRS": "DRN", "StopAreaCode": "910GDUIRNSH", "AdministrativeAreaRef": "110", "code": "9100DUIRNSH", "NPTG": "ES001085", "ATCO": "670", "CRS_code": "DRN" }, "geometry": { "type": "Point", "coordinates": [ -5.69131608048, 57.319976162929997 ] } },
{ "type": "Feature", "properties": { "Name": "Duke Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Duke Street Rail Station", "TIPLOC": "DUKEST", "CRS": "DST", "StopAreaCode": "910GDUKEST", "AdministrativeAreaRef": "110", "code": "9100DUKEST", "NPTG": "ES001021", "ATCO": "609", "CRS_code": "DST" }, "geometry": { "type": "Point", "coordinates": [ -4.21304759402, 55.858436368459998 ] } },
{ "type": "Feature", "properties": { "Name": "Dullingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dullingham Rail Station", "TIPLOC": "DULNGHM", "CRS": "DUL", "StopAreaCode": "910GDULNGHM", "AdministrativeAreaRef": "110", "code": "9100DULNGHM", "NPTG": "E0043669", "ATCO": "050", "CRS_code": "DUL" }, "geometry": { "type": "Point", "coordinates": [ 0.3666639285, 52.20165085352 ] } },
{ "type": "Feature", "properties": { "Name": "Dumbreck Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dumbreck Rail Station", "TIPLOC": "DUMBRCK", "CRS": "DUM", "StopAreaCode": "910GDUMBRCK", "AdministrativeAreaRef": "110", "code": "9100DUMBRCK", "NPTG": "N0068077", "ATCO": "609", "CRS_code": "DUM" }, "geometry": { "type": "Point", "coordinates": [ -4.30123903352, 55.844648886720002 ] } },
{ "type": "Feature", "properties": { "Name": "Dumfries Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dumfries Rail Station", "TIPLOC": "DUMFRES", "CRS": "DMF", "StopAreaCode": "910GDUMFRES", "AdministrativeAreaRef": "110", "code": "9100DUMFRES", "NPTG": "ES001098", "ATCO": "680", "CRS_code": "DMF" }, "geometry": { "type": "Point", "coordinates": [ -3.60430327253, 55.072556135150002 ] } },
{ "type": "Feature", "properties": { "Name": "Dumpton Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dumpton Park Rail Station", "TIPLOC": "DUMPTNP", "CRS": "DMP", "StopAreaCode": "910GDUMPTNP", "AdministrativeAreaRef": "110", "code": "9100DUMPTNP", "NPTG": "E0015410", "ATCO": "240", "CRS_code": "DMP" }, "geometry": { "type": "Point", "coordinates": [ 1.42581877702, 51.34569969591 ] } },
{ "type": "Feature", "properties": { "Name": "Dunblane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunblane Rail Station", "TIPLOC": "DUNANE", "CRS": "DBL", "StopAreaCode": "910GDUNANE", "AdministrativeAreaRef": "110", "code": "9100DUNANE", "NPTG": "N0076692", "ATCO": "660", "CRS_code": "DBL" }, "geometry": { "type": "Point", "coordinates": [ -3.96548598926, 56.185889682720003 ] } },
{ "type": "Feature", "properties": { "Name": "Dunbar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunbar Rail Station", "TIPLOC": "DUNBAR", "CRS": "DUN", "StopAreaCode": "910GDUNBAR", "AdministrativeAreaRef": "110", "code": "9100DUNBAR", "NPTG": "ES001106", "ATCO": "627", "CRS_code": "DUN" }, "geometry": { "type": "Point", "coordinates": [ -2.51334613989, 55.998293671559999 ] } },
{ "type": "Feature", "properties": { "Name": "Duncraig Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Duncraig Rail Station", "TIPLOC": "DUNCRAG", "CRS": "DCG", "StopAreaCode": "910GDUNCRAG", "AdministrativeAreaRef": "110", "code": "9100DUNCRAG", "NPTG": "N0076499", "ATCO": "670", "CRS_code": "DCG" }, "geometry": { "type": "Point", "coordinates": [ -5.63713062864, 57.337001743329999 ] } },
{ "type": "Feature", "properties": { "Name": "Dundee Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dundee Rail Station", "TIPLOC": "DUNDETB", "CRS": "DEE", "StopAreaCode": "910GDUNDETB", "AdministrativeAreaRef": "110", "code": "9100DUNDETB", "NPTG": "ES003919", "ATCO": "620", "CRS_code": "DEE" }, "geometry": { "type": "Point", "coordinates": [ -2.97120454763, 56.456485931300001 ] } },
{ "type": "Feature", "properties": { "Name": "Dunkeld & Birnam Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dunkeld & Birnam Rail Station", "TIPLOC": "DUNKELD", "CRS": "DKD", "StopAreaCode": "910GDUNKELD", "AdministrativeAreaRef": "110", "code": "9100DUNKELD", "NPTG": "ES001166", "ATCO": "648", "CRS_code": "DKD" }, "geometry": { "type": "Point", "coordinates": [ -3.57839892835, 56.557056502450003 ] } },
{ "type": "Feature", "properties": { "Name": "Cam & Dursley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Cam & Dursley Rail Station", "TIPLOC": "DURSLEY", "CRS": "CDU", "StopAreaCode": "910GDURSLEY", "AdministrativeAreaRef": "110", "code": "9100DURSLEY", "NPTG": "E0046602", "ATCO": "160", "CRS_code": "CDU" }, "geometry": { "type": "Point", "coordinates": [ -2.35908266528, 51.717618908310001 ] } },
{ "type": "Feature", "properties": { "Name": "Dove Holes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dove Holes Rail Station", "TIPLOC": "DVHL", "CRS": "DVH", "StopAreaCode": "910GDVHL", "AdministrativeAreaRef": "110", "code": "9100DVHL", "NPTG": "E0007067", "ATCO": "100", "CRS_code": "DVH" }, "geometry": { "type": "Point", "coordinates": [ -1.88975153831, 53.300027919149997 ] } },
{ "type": "Feature", "properties": { "Name": "Dewsbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dewsbury Rail Station", "TIPLOC": "DWBY", "CRS": "DEW", "StopAreaCode": "910GDWBY", "AdministrativeAreaRef": "110", "code": "9100DWBY", "NPTG": "E0032592", "ATCO": "450", "CRS_code": "DEW" }, "geometry": { "type": "Point", "coordinates": [ -1.63310637589, 53.692131352319997 ] } },
{ "type": "Feature", "properties": { "Name": "Dyce Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dyce Rail Station", "TIPLOC": "DYCE", "CRS": "DYC", "StopAreaCode": "910GDYCE", "AdministrativeAreaRef": "110", "code": "9100DYCE", "NPTG": "ES001198", "ATCO": "639", "CRS_code": "DYC" }, "geometry": { "type": "Point", "coordinates": [ -2.19232230482, 57.20564973314 ] } },
{ "type": "Feature", "properties": { "Name": "Dyffryn Ardudwy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Dyffryn Ardudwy Rail Station", "TIPLOC": "DYFRYNA", "CRS": "DYF", "StopAreaCode": "910GDYFRYNA", "AdministrativeAreaRef": "110", "code": "9100DYFRYNA", "NPTG": "E0037541", "ATCO": "540", "CRS_code": "DYF" }, "geometry": { "type": "Point", "coordinates": [ -4.10464364155, 52.788851408939998 ] } },
{ "type": "Feature", "properties": { "Name": "Ealing Broadway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ealing Broadway Rail Station", "TIPLOC": "EALINGB", "CRS": "EAL", "StopAreaCode": "910GEALINGB", "AdministrativeAreaRef": "110", "code": "9100EALINGB", "NPTG": "N0077653", "ATCO": "490", "CRS_code": "EAL" }, "geometry": { "type": "Point", "coordinates": [ -0.30175169045, 51.514841454490004 ] } },
{ "type": "Feature", "properties": { "Name": "Earlswood (Surrey) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Earlswood (Surrey) Rail Station", "TIPLOC": "EARLSWD", "CRS": "ELD", "StopAreaCode": "910GEARLSWD", "AdministrativeAreaRef": "110", "code": "9100EARLSWD", "NPTG": "E0025532", "ATCO": "400", "CRS_code": "ELD" }, "geometry": { "type": "Point", "coordinates": [ -0.17082298937, 51.227328456800002 ] } },
{ "type": "Feature", "properties": { "Name": "Eastbrook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eastbrook Rail Station", "TIPLOC": "EASTBRK", "CRS": "EBK", "StopAreaCode": "910GEASTBRK", "AdministrativeAreaRef": "110", "code": "9100EASTBRK", "NPTG": "E0042856", "ATCO": "572", "CRS_code": "EBK" }, "geometry": { "type": "Point", "coordinates": [ -3.20613742666, 51.437635391160001 ] } },
{ "type": "Feature", "properties": { "Name": "East Boldon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Boldon Rail Station", "TIPLOC": "EBOLDON", "CRS": "EBL", "StopAreaCode": "910GEBOLDON", "AdministrativeAreaRef": "110", "code": "9100EBOLDON", "NPTG": "E0030860", "ATCO": "410", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.42031389216, 54.946415056749998 ] } },
{ "type": "Feature", "properties": { "Name": "Eastbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eastbourne Rail Station", "TIPLOC": "EBOURNE", "CRS": "EBN", "StopAreaCode": "910GEBOURNE", "AdministrativeAreaRef": "110", "code": "9100EBOURNE", "NPTG": "E0055734", "ATCO": "140", "CRS_code": "EBN" }, "geometry": { "type": "Point", "coordinates": [ 0.28124702493, 50.769377996119999 ] } },
{ "type": "Feature", "properties": { "Name": "Ebbsfleet International Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ebbsfleet International Rail Station", "TIPLOC": "EBSFDOM", "CRS": "EBD", "StopAreaCode": "910GEBSFDOM", "AdministrativeAreaRef": "110", "code": "9100EBSFDOM", "NPTG": "N0078380", "ATCO": "240", "CRS_code": "EBD" }, "geometry": { "type": "Point", "coordinates": [ 0.32092093528, 51.442973202929998 ] } },
{ "type": "Feature", "properties": { "Name": "Ebbsfleet International Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Ebbsfleet International Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100EBSFLTI", "NPTG": "N0078380", "ATCO": "240", "CRS_code": "EBD" }, "geometry": { "type": "Point", "coordinates": [ 0.32092139087, 51.4429821871 ] } },
{ "type": "Feature", "properties": { "Name": "Ebbw Vale Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ebbw Vale Parkway Rail Station", "TIPLOC": "EBWVPWY", "CRS": "EBV", "StopAreaCode": "910GEBWVPWY", "AdministrativeAreaRef": "110", "code": "9100EBWVPWY", "NPTG": "E0053947", "ATCO": "532", "CRS_code": "EBV" }, "geometry": { "type": "Point", "coordinates": [ -3.19610271144, 51.757143490700003 ] } },
{ "type": "Feature", "properties": { "Name": "Ebbw Vale Town Centre", "Status": "inactive", "Type": "RLY", "Station_Name": "Ebbw Vale Town Centre", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100EBWVTCR", "NPTG": "E0053947", "ATCO": "532", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.20683592923, 51.779854213729998 ] } },
{ "type": "Feature", "properties": { "Name": "Ebbw Vale Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ebbw Vale Town Rail Station", "TIPLOC": "EBWVTN", "CRS": "EBB", "StopAreaCode": "910GEBWVTN", "AdministrativeAreaRef": "110", "code": "9100EBWVTN", "NPTG": "E0053947", "ATCO": "532", "CRS_code": "EBB" }, "geometry": { "type": "Point", "coordinates": [ -3.20257692119, 51.776687904360003 ] } },
{ "type": "Feature", "properties": { "Name": "Eccles Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eccles Rail Station", "TIPLOC": "ECCLES", "CRS": "ECC", "StopAreaCode": "910GECCLES", "AdministrativeAreaRef": "110", "code": "9100ECCLES", "NPTG": "E0028369", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.3345142803, 53.485358518719998 ] } },
{ "type": "Feature", "properties": { "Name": "Eccles Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eccles Road Rail Station", "TIPLOC": "ECLR", "CRS": "ECS", "StopAreaCode": "910GECLR", "AdministrativeAreaRef": "110", "code": "9100ECLR", "NPTG": "E0017555", "ATCO": "290", "CRS_code": "ECS" }, "geometry": { "type": "Point", "coordinates": [ 0.96991734211, 52.47088402528 ] } },
{ "type": "Feature", "properties": { "Name": "Eccleston Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eccleston Park Rail Station", "TIPLOC": "ECPK", "CRS": "ECL", "StopAreaCode": "910GECPK", "AdministrativeAreaRef": "110", "code": "9100ECPK", "NPTG": "E0029687", "ATCO": "280", "CRS_code": "ECL" }, "geometry": { "type": "Point", "coordinates": [ -2.78004151413, 53.430786101599999 ] } },
{ "type": "Feature", "properties": { "Name": "East Croydon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Croydon Rail Station", "TIPLOC": "ECROYDN", "CRS": "ECR", "StopAreaCode": "910GECROYDN", "AdministrativeAreaRef": "110", "code": "9100ECROYDN", "NPTG": "N0060493", "ATCO": "490", "CRS_code": "ECR" }, "geometry": { "type": "Point", "coordinates": [ -0.0927796195, 51.375453804209997 ] } },
{ "type": "Feature", "properties": { "Name": "Edale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edale Rail Station", "TIPLOC": "EDALE", "CRS": "EDL", "StopAreaCode": "910GEDALE", "AdministrativeAreaRef": "110", "code": "9100EDALE", "NPTG": "E0045129", "ATCO": "100", "CRS_code": "EDL" }, "geometry": { "type": "Point", "coordinates": [ -1.81662620344, 53.364971124710003 ] } },
{ "type": "Feature", "properties": { "Name": "Edge Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edge Hill Rail Station", "TIPLOC": "EDGH", "CRS": "EDG", "StopAreaCode": "910GEDGH", "AdministrativeAreaRef": "110", "code": "9100EDGH", "NPTG": "E0029688", "ATCO": "280", "CRS_code": "EDG" }, "geometry": { "type": "Point", "coordinates": [ -2.94648295952, 53.402616148790003 ] } },
{ "type": "Feature", "properties": { "Name": "East Didsbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Didsbury Rail Station", "TIPLOC": "EDIDBRY", "CRS": "EDY", "StopAreaCode": "910GEDIDBRY", "AdministrativeAreaRef": "110", "code": "9100EDIDBRY", "NPTG": "E0028368", "ATCO": "180", "CRS_code": "EDY" }, "geometry": { "type": "Point", "coordinates": [ -2.22199631348, 53.409308313129998 ] } },
{ "type": "Feature", "properties": { "Name": "Edinburgh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edinburgh Rail Station", "TIPLOC": "EDINBUR", "CRS": "EDB", "StopAreaCode": "910GEDINBUR", "AdministrativeAreaRef": "110", "code": "9100EDINBUR", "NPTG": "ES001268", "ATCO": "620", "CRS_code": "EDB" }, "geometry": { "type": "Point", "coordinates": [ -3.18822768403, 55.952392822749999 ] } },
{ "type": "Feature", "properties": { "Name": "Edinburgh Gateway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edinburgh Gateway Rail Station", "TIPLOC": "EDINGWY", "CRS": "EGY", "StopAreaCode": "910GEDINGWY", "AdministrativeAreaRef": "110", "code": "9100EDINGWY", "NPTG": "N0067298", "ATCO": "620", "CRS_code": "EGY" }, "geometry": { "type": "Point", "coordinates": [ -3.32025139367, 55.940939918070001 ] } },
{ "type": "Feature", "properties": { "Name": "Edinburgh Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edinburgh Park Rail Station", "TIPLOC": "EDINPRK", "CRS": "EDP", "StopAreaCode": "910GEDINPRK", "AdministrativeAreaRef": "110", "code": "9100EDINPRK", "NPTG": "N0078275", "ATCO": "620", "CRS_code": "EDP" }, "geometry": { "type": "Point", "coordinates": [ -3.30766414616, 55.9275507897 ] } },
{ "type": "Feature", "properties": { "Name": "Edmonton Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edmonton Green Rail Station", "TIPLOC": "EDMNGRN", "CRS": "EDR", "StopAreaCode": "910GEDMNGRN", "AdministrativeAreaRef": "110", "code": "9100EDMNGRN", "NPTG": "E0034304", "ATCO": "490", "CRS_code": "EDR" }, "geometry": { "type": "Point", "coordinates": [ -0.06111241288, 51.624928757349998 ] } },
{ "type": "Feature", "properties": { "Name": "Edenbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edenbridge Rail Station", "TIPLOC": "EDNB", "CRS": "EBR", "StopAreaCode": "910GEDNB", "AdministrativeAreaRef": "110", "code": "9100EDNB", "NPTG": "E0047239", "ATCO": "240", "CRS_code": "EBR" }, "geometry": { "type": "Point", "coordinates": [ 0.06064634772, 51.208435618149998 ] } },
{ "type": "Feature", "properties": { "Name": "Edenbridge Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Edenbridge Town Rail Station", "TIPLOC": "EDNT", "CRS": "EBT", "StopAreaCode": "910GEDNT", "AdministrativeAreaRef": "110", "code": "9100EDNT", "NPTG": "E0047239", "ATCO": "240", "CRS_code": "EBT" }, "geometry": { "type": "Point", "coordinates": [ 0.06717310341, 51.200082729800002 ] } },
{ "type": "Feature", "properties": { "Name": "Eden Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eden Park Rail Station", "TIPLOC": "EDPK", "CRS": "EDN", "StopAreaCode": "910GEDPK", "AdministrativeAreaRef": "110", "code": "9100EDPK", "NPTG": "E0034094", "ATCO": "490", "CRS_code": "EDN" }, "geometry": { "type": "Point", "coordinates": [ -0.02635507689, 51.390091031170002 ] } },
{ "type": "Feature", "properties": { "Name": "East Dulwich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Dulwich Rail Station", "TIPLOC": "EDULWCH", "CRS": "EDW", "StopAreaCode": "910GEDULWCH", "AdministrativeAreaRef": "110", "code": "9100EDULWCH", "NPTG": "N0060437", "ATCO": "490", "CRS_code": "EDW" }, "geometry": { "type": "Point", "coordinates": [ -0.08057161944, 51.461494479800002 ] } },
{ "type": "Feature", "properties": { "Name": "East Farleigh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Farleigh Rail Station", "TIPLOC": "EFARLGH", "CRS": "EFL", "StopAreaCode": "910GEFARLGH", "AdministrativeAreaRef": "110", "code": "9100EFARLGH", "NPTG": "E0047204", "ATCO": "240", "CRS_code": "EFL" }, "geometry": { "type": "Point", "coordinates": [ 0.48472904846, 51.25523768107 ] } },
{ "type": "Feature", "properties": { "Name": "Effingham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Effingham Junction Rail Station", "TIPLOC": "EFNGHMJ", "CRS": "EFF", "StopAreaCode": "910GEFNGHMJ", "AdministrativeAreaRef": "110", "code": "9100EFNGHMJ", "NPTG": "E0025367", "ATCO": "400", "CRS_code": "EFF" }, "geometry": { "type": "Point", "coordinates": [ -0.41996533957, 51.291495335359997 ] } },
{ "type": "Feature", "properties": { "Name": "Eggesford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eggesford Rail Station", "TIPLOC": "EGGESFD", "CRS": "EGG", "StopAreaCode": "910GEGGESFD", "AdministrativeAreaRef": "110", "code": "9100EGGESFD", "NPTG": "E0045308", "ATCO": "110", "CRS_code": "EGG" }, "geometry": { "type": "Point", "coordinates": [ -3.87474511409, 50.887736713690003 ] } },
{ "type": "Feature", "properties": { "Name": "Egham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Egham Rail Station", "TIPLOC": "EGHAM", "CRS": "EGH", "StopAreaCode": "910GEGHAM", "AdministrativeAreaRef": "110", "code": "9100EGHAM", "NPTG": "E0025595", "ATCO": "400", "CRS_code": "EGH" }, "geometry": { "type": "Point", "coordinates": [ -0.54651215234, 51.429646774349997 ] } },
{ "type": "Feature", "properties": { "Name": "Eaglescliffe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eaglescliffe Rail Station", "TIPLOC": "EGLSCLF", "CRS": "EAG", "StopAreaCode": "910GEGLSCLF", "AdministrativeAreaRef": "110", "code": "9100EGLSCLF", "NPTG": "E0042063", "ATCO": "077", "CRS_code": "EAG" }, "geometry": { "type": "Point", "coordinates": [ -1.34943701307, 54.529431509349997 ] } },
{ "type": "Feature", "properties": { "Name": "East Garforth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Garforth Rail Station", "TIPLOC": "EGRFRTH", "CRS": "EGF", "StopAreaCode": "910GEGRFRTH", "AdministrativeAreaRef": "110", "code": "9100EGRFRTH", "NPTG": "E0032620", "ATCO": "450", "CRS_code": "EGF" }, "geometry": { "type": "Point", "coordinates": [ -1.37053681811, 53.791977471419997 ] } },
{ "type": "Feature", "properties": { "Name": "East Grinstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Grinstead Rail Station", "TIPLOC": "EGRNSTD", "CRS": "EGR", "StopAreaCode": "910GEGRNSTD", "AdministrativeAreaRef": "110", "code": "9100EGRNSTD", "NPTG": "E0052194", "ATCO": "440", "CRS_code": "EGR" }, "geometry": { "type": "Point", "coordinates": [ -0.01790001232, 51.126273579820001 ] } },
{ "type": "Feature", "properties": { "Name": "Egton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Egton Rail Station", "TIPLOC": "EGTON", "CRS": "EGT", "StopAreaCode": "910GEGTON", "AdministrativeAreaRef": "110", "code": "9100EGTON", "NPTG": "E0049481", "ATCO": "320", "CRS_code": "EGT" }, "geometry": { "type": "Point", "coordinates": [ -0.76146487581, 54.43748142362 ] } },
{ "type": "Feature", "properties": { "Name": "East Kilbride Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Kilbride Rail Station", "TIPLOC": "EKILBRD", "CRS": "EKL", "StopAreaCode": "910GEKILBRD", "AdministrativeAreaRef": "110", "code": "9100EKILBRD", "NPTG": "ES001222", "ATCO": "615", "CRS_code": "EKL" }, "geometry": { "type": "Point", "coordinates": [ -4.18022700965, 55.766003399890003 ] } },
{ "type": "Feature", "properties": { "Name": "Eastleigh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eastleigh Rail Station", "TIPLOC": "ELGH", "CRS": "ESL", "StopAreaCode": "910GELGH", "AdministrativeAreaRef": "110", "code": "9100ELGH", "NPTG": "E0057423", "ATCO": "190", "CRS_code": "ESL" }, "geometry": { "type": "Point", "coordinates": [ -1.35008445334, 50.969250166009999 ] } },
{ "type": "Feature", "properties": { "Name": "Elgin Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elgin Rail Station", "TIPLOC": "ELGIN", "CRS": "ELG", "StopAreaCode": "910GELGIN", "AdministrativeAreaRef": "110", "code": "9100ELGIN", "NPTG": "ES001294", "ATCO": "638", "CRS_code": "ELG" }, "geometry": { "type": "Point", "coordinates": [ -3.31124590487, 57.64290938189 ] } },
{ "type": "Feature", "properties": { "Name": "Elmers End Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elmers End Rail Station", "TIPLOC": "ELMERSE", "CRS": "ELE", "StopAreaCode": "910GELMERSE", "AdministrativeAreaRef": "110", "code": "9100ELMERSE", "NPTG": "N0065151", "ATCO": "490", "CRS_code": "ELE" }, "geometry": { "type": "Point", "coordinates": [ -0.04957026642, 51.398492350289999 ] } },
{ "type": "Feature", "properties": { "Name": "Elmswell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elmswell Rail Station", "TIPLOC": "ELMSWEL", "CRS": "ESW", "StopAreaCode": "910GELMSWEL", "AdministrativeAreaRef": "110", "code": "9100ELMSWEL", "NPTG": "E0051410", "ATCO": "390", "CRS_code": "ESW" }, "geometry": { "type": "Point", "coordinates": [ 0.91258957521, 52.238040266589998 ] } },
{ "type": "Feature", "properties": { "Name": "Elmstead Woods Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elmstead Woods Rail Station", "TIPLOC": "ELMW", "CRS": "ESD", "StopAreaCode": "910GELMW", "AdministrativeAreaRef": "110", "code": "9100ELMW", "NPTG": "E0034096", "ATCO": "490", "CRS_code": "ESD" }, "geometry": { "type": "Point", "coordinates": [ 0.04427414538, 51.417117604159998 ] } },
{ "type": "Feature", "properties": { "Name": "Elephant & Castle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elephant & Castle Rail Station", "TIPLOC": "ELPHNAC", "CRS": "EPH", "StopAreaCode": "910GELPHNAC", "AdministrativeAreaRef": "110", "code": "9100ELPHNAC", "NPTG": "N0077657", "ATCO": "490", "CRS_code": "EPH" }, "geometry": { "type": "Point", "coordinates": [ -0.0987254952, 51.494028777129998 ] } },
{ "type": "Feature", "properties": { "Name": "Elsecar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elsecar Rail Station", "TIPLOC": "ELSC", "CRS": "ELR", "StopAreaCode": "910GELSC", "AdministrativeAreaRef": "110", "code": "9100ELSC", "NPTG": "E0030155", "ATCO": "370", "CRS_code": "ELR" }, "geometry": { "type": "Point", "coordinates": [ -1.4274237643, 53.498659047940002 ] } },
{ "type": "Feature", "properties": { "Name": "Elsenham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elsenham Rail Station", "TIPLOC": "ELSENHM", "CRS": "ESM", "StopAreaCode": "910GELSENHM", "AdministrativeAreaRef": "110", "code": "9100ELSENHM", "NPTG": "E0046389", "ATCO": "150", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.22807036687, 51.920545524950001 ] } },
{ "type": "Feature", "properties": { "Name": "Ellesmere Port Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ellesmere Port Rail Station", "TIPLOC": "ELSMPRT", "CRS": "ELP", "StopAreaCode": "910GELSMPRT", "AdministrativeAreaRef": "110", "code": "9100ELSMPRT", "NPTG": "N0071662", "ATCO": "061", "CRS_code": "ELP" }, "geometry": { "type": "Point", "coordinates": [ -2.89642257273, 53.282190962599998 ] } },
{ "type": "Feature", "properties": { "Name": "Eltham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eltham Rail Station", "TIPLOC": "ELTHAM", "CRS": "ELW", "StopAreaCode": "910GELTHAM", "AdministrativeAreaRef": "110", "code": "9100ELTHAM", "NPTG": "E0034325", "ATCO": "490", "CRS_code": "ELW" }, "geometry": { "type": "Point", "coordinates": [ 0.05247241766, 51.455643524149998 ] } },
{ "type": "Feature", "properties": { "Name": "Elton & Orston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elton & Orston Rail Station", "TIPLOC": "ELTON", "CRS": "ELO", "StopAreaCode": "910GELTON", "AdministrativeAreaRef": "110", "code": "9100ELTON", "NPTG": "E0050220", "ATCO": "330", "CRS_code": "ELO" }, "geometry": { "type": "Point", "coordinates": [ -0.85551234212, 52.952136260659998 ] } },
{ "type": "Feature", "properties": { "Name": "Elstree & Borehamwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Elstree & Borehamwood Rail Station", "TIPLOC": "ELTR", "CRS": "ELS", "StopAreaCode": "910GELTR", "AdministrativeAreaRef": "110", "code": "9100ELTR", "NPTG": "E0014005", "ATCO": "210", "CRS_code": "ELS" }, "geometry": { "type": "Point", "coordinates": [ -0.28008146185, 51.653069355470002 ] } },
{ "type": "Feature", "properties": { "Name": "Earlswood (West Midlands) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Earlswood (West Midlands) Rail Station", "TIPLOC": "ELWD", "CRS": "EWD", "StopAreaCode": "910GELWD", "AdministrativeAreaRef": "110", "code": "9100ELWD", "NPTG": "E0026142", "ATCO": "420", "CRS_code": "EWD" }, "geometry": { "type": "Point", "coordinates": [ -1.86116948255, 52.366581147920002 ] } },
{ "type": "Feature", "properties": { "Name": "Ely Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ely Rail Station", "TIPLOC": "ELYY", "CRS": "ELY", "StopAreaCode": "910GELYY", "AdministrativeAreaRef": "110", "code": "9100ELYY", "NPTG": "E0043670", "ATCO": "050", "CRS_code": "ELY" }, "geometry": { "type": "Point", "coordinates": [ 0.26682768314, 52.391229805350001 ] } },
{ "type": "Feature", "properties": { "Name": "East Malling Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Malling Rail Station", "TIPLOC": "EMALING", "CRS": "EML", "StopAreaCode": "910GEMALING", "AdministrativeAreaRef": "110", "code": "9100EMALING", "NPTG": "E0047342", "ATCO": "240", "CRS_code": "EML" }, "geometry": { "type": "Point", "coordinates": [ 0.43928038001, 51.285809817900002 ] } },
{ "type": "Feature", "properties": { "Name": "East Midlands Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Midlands Parkway Rail Station", "TIPLOC": "EMPKWAY", "CRS": "EMD", "StopAreaCode": "910GEMPKWAY", "AdministrativeAreaRef": "110", "code": "9100EMPKWAY", "NPTG": "E0050224", "ATCO": "330", "CRS_code": "EMD" }, "geometry": { "type": "Point", "coordinates": [ -1.26323185388, 52.862500551049997 ] } },
{ "type": "Feature", "properties": { "Name": "Emerson Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Emerson Park Rail Station", "TIPLOC": "EMRSPKH", "CRS": "EMP", "StopAreaCode": "910GEMRSPKH", "AdministrativeAreaRef": "110", "code": "9100EMRSPKH", "NPTG": "E0034462", "ATCO": "490", "CRS_code": "EMP" }, "geometry": { "type": "Point", "coordinates": [ 0.22011332512, 51.5686424274 ] } },
{ "type": "Feature", "properties": { "Name": "Emsworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Emsworth Rail Station", "TIPLOC": "EMSWTH", "CRS": "EMS", "StopAreaCode": "910GEMSWTH", "AdministrativeAreaRef": "110", "code": "9100EMSWTH", "NPTG": "E0013038", "ATCO": "190", "CRS_code": "EMS" }, "geometry": { "type": "Point", "coordinates": [ -0.9384296638, 50.851614316919999 ] } },
{ "type": "Feature", "properties": { "Name": "Enfield Chase Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Enfield Chase Rail Station", "TIPLOC": "ENFC", "CRS": "ENC", "StopAreaCode": "910GENFC", "AdministrativeAreaRef": "110", "code": "9100ENFC", "NPTG": "N0075228", "ATCO": "490", "CRS_code": "ENC" }, "geometry": { "type": "Point", "coordinates": [ -0.09069628967, 51.653254083649998 ] } },
{ "type": "Feature", "properties": { "Name": "Oakwood Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Oakwood Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GENFCOAK", "AdministrativeAreaRef": "110", "code": "9100ENFCOAK", "NPTG": "N0060480", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.13218237487, 51.647725606560002 ] } },
{ "type": "Feature", "properties": { "Name": "Enfield Lock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Enfield Lock Rail Station", "TIPLOC": "ENFLDLK", "CRS": "ENL", "StopAreaCode": "910GENFLDLK", "AdministrativeAreaRef": "110", "code": "9100ENFLDLK", "NPTG": "E0034298", "ATCO": "490", "CRS_code": "ENL" }, "geometry": { "type": "Point", "coordinates": [ -0.02853238224, 51.670922086739999 ] } },
{ "type": "Feature", "properties": { "Name": "Enfield Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Enfield Town Rail Station", "TIPLOC": "ENFLDTN", "CRS": "ENF", "StopAreaCode": "910GENFLDTN", "AdministrativeAreaRef": "110", "code": "9100ENFLDTN", "NPTG": "N0075228", "ATCO": "490", "CRS_code": "ENF" }, "geometry": { "type": "Point", "coordinates": [ -0.0793275609, 51.652025557919998 ] } },
{ "type": "Feature", "properties": { "Name": "Entwistle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Entwistle Rail Station", "TIPLOC": "ENTWISL", "CRS": "ENT", "StopAreaCode": "910GENTWISL", "AdministrativeAreaRef": "110", "code": "9100ENTWISL", "NPTG": "E0035204", "ATCO": "258", "CRS_code": "ENT" }, "geometry": { "type": "Point", "coordinates": [ -2.41454472003, 53.655976428110002 ] } },
{ "type": "Feature", "properties": { "Name": "Epsom Downs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Epsom Downs Rail Station", "TIPLOC": "EPSDNS", "CRS": "EPD", "StopAreaCode": "910GEPSDNS", "AdministrativeAreaRef": "110", "code": "9100EPSDNS", "NPTG": "E0057638", "ATCO": "400", "CRS_code": "EPD" }, "geometry": { "type": "Point", "coordinates": [ -0.23895477144, 51.323687504189998 ] } },
{ "type": "Feature", "properties": { "Name": "Epsom Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Epsom Rail Station", "TIPLOC": "EPSM", "CRS": "EPS", "StopAreaCode": "910GEPSM", "AdministrativeAreaRef": "110", "code": "9100EPSM", "NPTG": "E0057638", "ATCO": "400", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.26877760216, 51.334392730449999 ] } },
{ "type": "Feature", "properties": { "Name": "Erdington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Erdington Rail Station", "TIPLOC": "ERDNGTN", "CRS": "ERD", "StopAreaCode": "910GERDNGTN", "AdministrativeAreaRef": "110", "code": "9100ERDNGTN", "NPTG": "E0031532", "ATCO": "430", "CRS_code": "ERD" }, "geometry": { "type": "Point", "coordinates": [ -1.8395088764, 52.528284161080002 ] } },
{ "type": "Feature", "properties": { "Name": "Energlyn & Churchill Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Energlyn & Churchill Park Rail Station", "TIPLOC": "ERGNCHP", "CRS": "ECP", "StopAreaCode": "910GERGNCHP", "AdministrativeAreaRef": "110", "code": "9100ERGNCHP", "NPTG": "N0061393", "ATCO": "554", "CRS_code": "ECP" }, "geometry": { "type": "Point", "coordinates": [ -3.22879549261, 51.583212856849997 ] } },
{ "type": "Feature", "properties": { "Name": "Eridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eridge Rail Station", "TIPLOC": "ERIDGE", "CRS": "ERI", "StopAreaCode": "910GERIDGE", "AdministrativeAreaRef": "110", "code": "9100ERIDGE", "NPTG": "E0010781", "ATCO": "140", "CRS_code": "ERI" }, "geometry": { "type": "Point", "coordinates": [ 0.20143180721, 51.088965639789997 ] } },
{ "type": "Feature", "properties": { "Name": "Erith Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Erith Rail Station", "TIPLOC": "ERITH", "CRS": "ERH", "StopAreaCode": "910GERITH", "AdministrativeAreaRef": "110", "code": "9100ERITH", "NPTG": "E0034015", "ATCO": "490", "CRS_code": "ERH" }, "geometry": { "type": "Point", "coordinates": [ 0.17505454186, 51.481670927979998 ] } },
{ "type": "Feature", "properties": { "Name": "Earlsfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Earlsfield Rail Station", "TIPLOC": "ERLFLD", "CRS": "EAD", "StopAreaCode": "910GERLFLD", "AdministrativeAreaRef": "110", "code": "9100ERLFLD", "NPTG": "E0034893", "ATCO": "490", "CRS_code": "EAD" }, "geometry": { "type": "Point", "coordinates": [ -0.18771485554, 51.442336970169997 ] } },
{ "type": "Feature", "properties": { "Name": "Earlestown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Earlestown Rail Station", "TIPLOC": "ERLSTWN", "CRS": "ERL", "StopAreaCode": "910GERLSTWN", "AdministrativeAreaRef": "110", "code": "9100ERLSTWN", "NPTG": "E0029684", "ATCO": "280", "CRS_code": "ERL" }, "geometry": { "type": "Point", "coordinates": [ -2.63766325712, 53.451136723220003 ] } },
{ "type": "Feature", "properties": { "Name": "Earley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Earley Rail Station", "TIPLOC": "ERLY", "CRS": "EAR", "StopAreaCode": "910GERLY", "AdministrativeAreaRef": "110", "code": "9100ERLY", "NPTG": "E0053897", "ATCO": "035", "CRS_code": "EAR" }, "geometry": { "type": "Point", "coordinates": [ -0.91798814407, 51.441099960270002 ] } },
{ "type": "Feature", "properties": { "Name": "Esher Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Esher Rail Station", "TIPLOC": "ESHER", "CRS": "ESH", "StopAreaCode": "910GESHER", "AdministrativeAreaRef": "110", "code": "9100ESHER", "NPTG": "E0025287", "ATCO": "400", "CRS_code": "ESH" }, "geometry": { "type": "Point", "coordinates": [ -0.35333776011, 51.379891103699997 ] } },
{ "type": "Feature", "properties": { "Name": "Easterhouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Easterhouse Rail Station", "TIPLOC": "ESHS", "CRS": "EST", "StopAreaCode": "910GESHS", "AdministrativeAreaRef": "110", "code": "9100ESHS", "NPTG": "ES001240", "ATCO": "609", "CRS_code": "EST" }, "geometry": { "type": "Point", "coordinates": [ -4.10717637796, 55.859756236949998 ] } },
{ "type": "Feature", "properties": { "Name": "Eskbank Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eskbank Rail Station", "TIPLOC": "ESKBANK", "CRS": "EKB", "StopAreaCode": "910GESKBANK", "AdministrativeAreaRef": "110", "code": "9100ESKBANK", "NPTG": "N0067286", "ATCO": "628", "CRS_code": "EKB" }, "geometry": { "type": "Point", "coordinates": [ -3.08307301274, 55.881802419960003 ] } },
{ "type": "Feature", "properties": { "Name": "Essex Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Essex Road Rail Station", "TIPLOC": "ESSEXRD", "CRS": "EXR", "StopAreaCode": "910GESSEXRD", "AdministrativeAreaRef": "110", "code": "9100ESSEXRD", "NPTG": "E0057744", "ATCO": "490", "CRS_code": "EXR" }, "geometry": { "type": "Point", "coordinates": [ -0.09627597823, 51.540705344149998 ] } },
{ "type": "Feature", "properties": { "Name": "Mitcham Eastfields Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mitcham Eastfields Rail Station", "TIPLOC": "ESTFLDS", "CRS": "MTC", "StopAreaCode": "910GESTFLDS", "AdministrativeAreaRef": "110", "code": "9100ESTFLDS", "NPTG": "E0034687", "ATCO": "490", "CRS_code": "MTC" }, "geometry": { "type": "Point", "coordinates": [ -0.15464595628, 51.40773905036 ] } },
{ "type": "Feature", "properties": { "Name": "Eastham Rake Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eastham Rake Rail Station", "TIPLOC": "ESTHRAK", "CRS": "ERA", "StopAreaCode": "910GESTHRAK", "AdministrativeAreaRef": "110", "code": "9100ESTHRAK", "NPTG": "E0029685", "ATCO": "280", "CRS_code": "ERA" }, "geometry": { "type": "Point", "coordinates": [ -2.98113242826, 53.307538370309999 ] } },
{ "type": "Feature", "properties": { "Name": "Eastrington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eastrington Rail Station", "TIPLOC": "ESTRNGT", "CRS": "EGN", "StopAreaCode": "910GESTRNGT", "AdministrativeAreaRef": "110", "code": "9100ESTRNGT", "NPTG": "E0053026", "ATCO": "220", "CRS_code": "EGN" }, "geometry": { "type": "Point", "coordinates": [ -0.78763031919, 53.755161093669997 ] } },
{ "type": "Feature", "properties": { "Name": "Etchingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Etchingham Rail Station", "TIPLOC": "ETCHNGM", "CRS": "ETC", "StopAreaCode": "910GETCHNGM", "AdministrativeAreaRef": "110", "code": "9100ETCHNGM", "NPTG": "E0046075", "ATCO": "140", "CRS_code": "ETC" }, "geometry": { "type": "Point", "coordinates": [ 0.44235637924, 51.010546165519997 ] } },
{ "type": "Feature", "properties": { "Name": "East Tilbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Tilbury Rail Station", "TIPLOC": "ETILBRY", "CRS": "ETL", "StopAreaCode": "910GETILBRY", "AdministrativeAreaRef": "110", "code": "9100ETILBRY", "NPTG": "E0042662", "ATCO": "159", "CRS_code": "ETL" }, "geometry": { "type": "Point", "coordinates": [ 0.41292789242, 51.484831357650002 ] } },
{ "type": "Feature", "properties": { "Name": "Etruria Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Etruria Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100ETRURIA", "NPTG": "E0042136", "ATCO": "389", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.20189221599, 53.019830043360002 ] } },
{ "type": "Feature", "properties": { "Name": "London Euston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Euston Rail Station", "TIPLOC": "EUSTON", "CRS": "EUS", "StopAreaCode": "910GEUSTON", "AdministrativeAreaRef": "110", "code": "9100EUSTON", "NPTG": "N0077660", "ATCO": "490", "CRS_code": "EUS" }, "geometry": { "type": "Point", "coordinates": [ -0.13392355556, 51.528136244380001 ] } },
{ "type": "Feature", "properties": { "Name": "Euxton Balshaw Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Euxton Balshaw Lane Rail Station", "TIPLOC": "EUXT", "CRS": "EBA", "StopAreaCode": "910GEUXT", "AdministrativeAreaRef": "110", "code": "9100EUXT", "NPTG": "E0047397", "ATCO": "250", "CRS_code": "EBA" }, "geometry": { "type": "Point", "coordinates": [ -2.67202345656, 53.66047929434 ] } },
{ "type": "Feature", "properties": { "Name": "Evesham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Evesham Rail Station", "TIPLOC": "EVESHAM", "CRS": "EVE", "StopAreaCode": "910GEVESHAM", "AdministrativeAreaRef": "110", "code": "9100EVESHAM", "NPTG": "E0052599", "ATCO": "200", "CRS_code": "EVE" }, "geometry": { "type": "Point", "coordinates": [ -1.94731347263, 52.098397060910003 ] } },
{ "type": "Feature", "properties": { "Name": "Ewell East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ewell East Rail Station", "TIPLOC": "EWELLE", "CRS": "EWE", "StopAreaCode": "910GEWELLE", "AdministrativeAreaRef": "110", "code": "9100EWELLE", "NPTG": "E0025324", "ATCO": "400", "CRS_code": "EWE" }, "geometry": { "type": "Point", "coordinates": [ -0.24152956042, 51.34529954552 ] } },
{ "type": "Feature", "properties": { "Name": "Ewell West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ewell West Rail Station", "TIPLOC": "EWELW", "CRS": "EWW", "StopAreaCode": "910GEWELW", "AdministrativeAreaRef": "110", "code": "9100EWELW", "NPTG": "E0025324", "ATCO": "400", "CRS_code": "EWW" }, "geometry": { "type": "Point", "coordinates": [ -0.25698654147, 51.350044860319997 ] } },
{ "type": "Feature", "properties": { "Name": "East Worthing Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "East Worthing Rail Station", "TIPLOC": "EWRTHNG", "CRS": "EWR", "StopAreaCode": "910GEWRTHNG", "AdministrativeAreaRef": "110", "code": "9100EWRTHNG", "NPTG": "N0077919", "ATCO": "440", "CRS_code": "EWR" }, "geometry": { "type": "Point", "coordinates": [ -0.35489367408, 50.821645175790003 ] } },
{ "type": "Feature", "properties": { "Name": "Exeter Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Exeter Central Rail Station", "TIPLOC": "EXETERC", "CRS": "EXC", "StopAreaCode": "910GEXETERC", "AdministrativeAreaRef": "110", "code": "9100EXETERC", "NPTG": "E0055597", "ATCO": "110", "CRS_code": "EXC" }, "geometry": { "type": "Point", "coordinates": [ -3.5332764081, 50.726484165240002 ] } },
{ "type": "Feature", "properties": { "Name": "Exeter St Davids Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Exeter St Davids Rail Station", "TIPLOC": "EXETRSD", "CRS": "EXD", "StopAreaCode": "910GEXETRSD", "AdministrativeAreaRef": "110", "code": "9100EXETRSD", "NPTG": "E0055597", "ATCO": "110", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.54328617686, 50.729274883960002 ] } },
{ "type": "Feature", "properties": { "Name": "Exeter St Thomas Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Exeter St Thomas Rail Station", "TIPLOC": "EXETRST", "CRS": "EXT", "StopAreaCode": "910GEXETRST", "AdministrativeAreaRef": "110", "code": "9100EXETRST", "NPTG": "E0055597", "ATCO": "110", "CRS_code": "EXT" }, "geometry": { "type": "Point", "coordinates": [ -3.53883629793, 50.71714778586 ] } },
{ "type": "Feature", "properties": { "Name": "Exhibition Centre (Glasgow) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Exhibition Centre (Glasgow) Rail Station", "TIPLOC": "EXHIBTC", "CRS": "EXG", "StopAreaCode": "910GEXHIBTC", "AdministrativeAreaRef": "110", "code": "9100EXHIBTC", "NPTG": "N0072795", "ATCO": "609", "CRS_code": "EXG" }, "geometry": { "type": "Point", "coordinates": [ -4.2835887361, 55.861550899690002 ] } },
{ "type": "Feature", "properties": { "Name": "Exmouth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Exmouth Rail Station", "TIPLOC": "EXMOUTH", "CRS": "EXM", "StopAreaCode": "910GEXMOUTH", "AdministrativeAreaRef": "110", "code": "9100EXMOUTH", "NPTG": "E0007529", "ATCO": "110", "CRS_code": "EXM" }, "geometry": { "type": "Point", "coordinates": [ -3.41497163564, 50.621634842950002 ] } },
{ "type": "Feature", "properties": { "Name": "Exton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Exton Rail Station", "TIPLOC": "EXTON", "CRS": "EXN", "StopAreaCode": "910GEXTON", "AdministrativeAreaRef": "110", "code": "9100EXTON", "NPTG": "E0007530", "ATCO": "110", "CRS_code": "EXN" }, "geometry": { "type": "Point", "coordinates": [ -3.44409619975, 50.668303579609997 ] } },
{ "type": "Feature", "properties": { "Name": "Eynsford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Eynsford Rail Station", "TIPLOC": "EYNSFD", "CRS": "EYN", "StopAreaCode": "910GEYNSFD", "AdministrativeAreaRef": "110", "code": "9100EYNSFD", "NPTG": "E0047240", "ATCO": "240", "CRS_code": "EYN" }, "geometry": { "type": "Point", "coordinates": [ 0.20439321559, 51.362720352179998 ] } },
{ "type": "Feature", "properties": { "Name": "Fairlie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fairlie Rail Station", "TIPLOC": "FAIRLIE", "CRS": "FRL", "StopAreaCode": "910GFAIRLIE", "AdministrativeAreaRef": "110", "code": "9100FAIRLIE", "NPTG": "ES001338", "ATCO": "617", "CRS_code": "FRL" }, "geometry": { "type": "Point", "coordinates": [ -4.85326741318, 55.751942388259998 ] } },
{ "type": "Feature", "properties": { "Name": "Falconwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Falconwood Rail Station", "TIPLOC": "FALCNWD", "CRS": "FCN", "StopAreaCode": "910GFALCNWD", "AdministrativeAreaRef": "110", "code": "9100FALCNWD", "NPTG": "N0060442", "ATCO": "490", "CRS_code": "FCN" }, "geometry": { "type": "Point", "coordinates": [ 0.07930456484, 51.459154473140003 ] } },
{ "type": "Feature", "properties": { "Name": "Falkirk Grahamston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Falkirk Grahamston Rail Station", "TIPLOC": "FALKRKG", "CRS": "FKG", "StopAreaCode": "910GFALKRKG", "AdministrativeAreaRef": "110", "code": "9100FALKRKG", "NPTG": "ES001347", "ATCO": "669", "CRS_code": "FKG" }, "geometry": { "type": "Point", "coordinates": [ -3.78504610591, 56.002613321849999 ] } },
{ "type": "Feature", "properties": { "Name": "Falkirk High Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Falkirk High Rail Station", "TIPLOC": "FALKRKH", "CRS": "FKK", "StopAreaCode": "910GFALKRKH", "AdministrativeAreaRef": "110", "code": "9100FALKRKH", "NPTG": "ES001347", "ATCO": "669", "CRS_code": "FKK" }, "geometry": { "type": "Point", "coordinates": [ -3.79224410991, 55.991815157449999 ] } },
{ "type": "Feature", "properties": { "Name": "Falmouth Docks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Falmouth Docks Rail Station", "TIPLOC": "FALMTHD", "CRS": "FAL", "StopAreaCode": "910GFALMTHD", "AdministrativeAreaRef": "110", "code": "9100FALMTHD", "NPTG": "E0044490", "ATCO": "080", "CRS_code": "FAL" }, "geometry": { "type": "Point", "coordinates": [ -5.05602809633, 50.150707749070001 ] } },
{ "type": "Feature", "properties": { "Name": "Falmouth Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Falmouth Town Rail Station", "TIPLOC": "FALMTHT", "CRS": "FMT", "StopAreaCode": "910GFALMTHT", "AdministrativeAreaRef": "110", "code": "9100FALMTHT", "NPTG": "E0044490", "ATCO": "080", "CRS_code": "FMT" }, "geometry": { "type": "Point", "coordinates": [ -5.06493489696, 50.148340796079999 ] } },
{ "type": "Feature", "properties": { "Name": "Failsworth Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Failsworth Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GFALSWTH", "AdministrativeAreaRef": "110", "code": "9100FALSWTH", "NPTG": "E0028385", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.16331024455, 53.510388643650003 ] } },
{ "type": "Feature", "properties": { "Name": "North Fambridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Fambridge Rail Station", "TIPLOC": "FAMBDGE", "CRS": "NFA", "StopAreaCode": "910GFAMBDGE", "AdministrativeAreaRef": "110", "code": "9100FAMBDGE", "NPTG": "N0076785", "ATCO": "150", "CRS_code": "NFA" }, "geometry": { "type": "Point", "coordinates": [ 0.6816589112, 51.648583737229998 ] } },
{ "type": "Feature", "properties": { "Name": "Falmer Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Falmer Rail Station", "TIPLOC": "FAMR", "CRS": "FMR", "StopAreaCode": "910GFAMR", "AdministrativeAreaRef": "110", "code": "9100FAMR", "NPTG": "E0046040", "ATCO": "149", "CRS_code": "FMR" }, "geometry": { "type": "Point", "coordinates": [ -0.08738542572, 50.862129056279997 ] } },
{ "type": "Feature", "properties": { "Name": "Fareham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fareham Rail Station", "TIPLOC": "FAREHAM", "CRS": "FRM", "StopAreaCode": "910GFAREHAM", "AdministrativeAreaRef": "110", "code": "9100FAREHAM", "NPTG": "E0012900", "ATCO": "190", "CRS_code": "FRM" }, "geometry": { "type": "Point", "coordinates": [ -1.19203711934, 50.853033596419998 ] } },
{ "type": "Feature", "properties": { "Name": "Farnham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Farnham Rail Station", "TIPLOC": "FARNHAM", "CRS": "FNH", "StopAreaCode": "910GFARNHAM", "AdministrativeAreaRef": "110", "code": "9100FARNHAM", "NPTG": "E0051819", "ATCO": "400", "CRS_code": "FNH" }, "geometry": { "type": "Point", "coordinates": [ -0.79242710526, 51.211904643019999 ] } },
{ "type": "Feature", "properties": { "Name": "Fauldhouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fauldhouse Rail Station", "TIPLOC": "FAULDHS", "CRS": "FLD", "StopAreaCode": "910GFAULDHS", "AdministrativeAreaRef": "110", "code": "9100FAULDHS", "NPTG": "ES001361", "ATCO": "629", "CRS_code": "FLD" }, "geometry": { "type": "Point", "coordinates": [ -3.71931861192, 55.822473420389997 ] } },
{ "type": "Feature", "properties": { "Name": "Faversham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Faversham Rail Station", "TIPLOC": "FAVRSHM", "CRS": "FAV", "StopAreaCode": "910GFAVRSHM", "AdministrativeAreaRef": "110", "code": "9100FAVRSHM", "NPTG": "E0047300", "ATCO": "240", "CRS_code": "FAV" }, "geometry": { "type": "Point", "coordinates": [ 0.89104501636, 51.311713744439999 ] } },
{ "type": "Feature", "properties": { "Name": "Faygate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Faygate Rail Station", "TIPLOC": "FAYGATE", "CRS": "FGT", "StopAreaCode": "910GFAYGATE", "AdministrativeAreaRef": "110", "code": "9100FAYGATE", "NPTG": "E0026686", "ATCO": "440", "CRS_code": "FGT" }, "geometry": { "type": "Point", "coordinates": [ -0.26301859246, 51.09589063824 ] } },
{ "type": "Feature", "properties": { "Name": "Fazakerley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fazakerley Rail Station", "TIPLOC": "FAZKRLY", "CRS": "FAZ", "StopAreaCode": "910GFAZKRLY", "AdministrativeAreaRef": "110", "code": "9100FAZKRLY", "NPTG": "E0029696", "ATCO": "280", "CRS_code": "FAZ" }, "geometry": { "type": "Point", "coordinates": [ -2.93672322211, 53.469084777840003 ] } },
{ "type": "Feature", "properties": { "Name": "Fearn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fearn Rail Station", "TIPLOC": "FEARN", "CRS": "FRN", "StopAreaCode": "910GFEARN", "AdministrativeAreaRef": "110", "code": "9100FEARN", "NPTG": "ES001362", "ATCO": "670", "CRS_code": "FRN" }, "geometry": { "type": "Point", "coordinates": [ -3.99393568223, 57.778142335570003 ] } },
{ "type": "Feature", "properties": { "Name": "Feltham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Feltham Rail Station", "TIPLOC": "FELTHAM", "CRS": "FEL", "StopAreaCode": "910GFELTHAM", "AdministrativeAreaRef": "110", "code": "9100FELTHAM", "NPTG": "E0034535", "ATCO": "490", "CRS_code": "FEL" }, "geometry": { "type": "Point", "coordinates": [ -0.40983816198, 51.447898377850002 ] } },
{ "type": "Feature", "properties": { "Name": "London Fenchurch Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Fenchurch Street Rail Station", "TIPLOC": "FENCHRS", "CRS": "FST", "StopAreaCode": "910GFENCHRS", "AdministrativeAreaRef": "110", "code": "9100FENCHRS", "NPTG": "E0057722", "ATCO": "490", "CRS_code": "FST" }, "geometry": { "type": "Point", "coordinates": [ -0.07889668725, 51.51164583445 ] } },
{ "type": "Feature", "properties": { "Name": "Feniton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Feniton Rail Station", "TIPLOC": "FENITON", "CRS": "FNT", "StopAreaCode": "910GFENITON", "AdministrativeAreaRef": "110", "code": "9100FENITON", "NPTG": "E0045246", "ATCO": "110", "CRS_code": "FNT" }, "geometry": { "type": "Point", "coordinates": [ -3.28541770355, 50.786676906330001 ] } },
{ "type": "Feature", "properties": { "Name": "Fernhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fernhill Rail Station", "TIPLOC": "FERNHIL", "CRS": "FER", "StopAreaCode": "910GFERNHIL", "AdministrativeAreaRef": "110", "code": "9100FERNHIL", "NPTG": "N0075511", "ATCO": "552", "CRS_code": "FER" }, "geometry": { "type": "Point", "coordinates": [ -3.39588264959, 51.686494963629997 ] } },
{ "type": "Feature", "properties": { "Name": "Ferriby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ferriby Rail Station", "TIPLOC": "FERRIBY", "CRS": "FRY", "StopAreaCode": "910GFERRIBY", "AdministrativeAreaRef": "110", "code": "9100FERRIBY", "NPTG": "E0053089", "ATCO": "220", "CRS_code": "FRY" }, "geometry": { "type": "Point", "coordinates": [ -0.50783039182, 53.717154584820001 ] } },
{ "type": "Feature", "properties": { "Name": "Ffairfach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ffairfach Rail Station", "TIPLOC": "FFAIRFC", "CRS": "FFA", "StopAreaCode": "910GFFAIRFC", "AdministrativeAreaRef": "110", "code": "9100FFAIRFC", "NPTG": "E0036012", "ATCO": "522", "CRS_code": "FFA" }, "geometry": { "type": "Point", "coordinates": [ -3.99285940936, 51.87247446237 ] } },
{ "type": "Feature", "properties": { "Name": "Fishguard Harbour Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fishguard Harbour Rail Station", "TIPLOC": "FGDHBR", "CRS": "FGH", "StopAreaCode": "910GFGDHBR", "AdministrativeAreaRef": "110", "code": "9100FGDHBR", "NPTG": "E0055083", "ATCO": "521", "CRS_code": "FGH" }, "geometry": { "type": "Point", "coordinates": [ -4.98564201974, 52.011542682349997 ] } },
{ "type": "Feature", "properties": { "Name": "Fishguard & Goodwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fishguard & Goodwick Rail Station", "TIPLOC": "FGDHGWK", "CRS": "FGW", "StopAreaCode": "910GFGDHGWK", "AdministrativeAreaRef": "110", "code": "9100FGDHGWK", "NPTG": "E0055083", "ATCO": "521", "CRS_code": "FGW" }, "geometry": { "type": "Point", "coordinates": [ -4.99483776655, 52.00411412367 ] } },
{ "type": "Feature", "properties": { "Name": "Filey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Filey Rail Station", "TIPLOC": "FILEY", "CRS": "FIL", "StopAreaCode": "910GFILEY", "AdministrativeAreaRef": "110", "code": "9100FILEY", "NPTG": "E0049484", "ATCO": "320", "CRS_code": "FIL" }, "geometry": { "type": "Point", "coordinates": [ -0.29384931799, 54.209858318759998 ] } },
{ "type": "Feature", "properties": { "Name": "Filton Abbey Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Filton Abbey Wood Rail Station", "TIPLOC": "FILTNEW", "CRS": "FIT", "StopAreaCode": "910GFILTNEW", "AdministrativeAreaRef": "110", "code": "9100FILTNEW", "NPTG": "E0053705", "ATCO": "017", "CRS_code": "FIT" }, "geometry": { "type": "Point", "coordinates": [ -2.56243055098, 51.504938987510002 ] } },
{ "type": "Feature", "properties": { "Name": "Finstock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Finstock Rail Station", "TIPLOC": "FINSTCK", "CRS": "FIN", "StopAreaCode": "910GFINSTCK", "AdministrativeAreaRef": "110", "code": "9100FINSTCK", "NPTG": "E0050516", "ATCO": "340", "CRS_code": "FIN" }, "geometry": { "type": "Point", "coordinates": [ -1.46934294751, 51.852782147459997 ] } },
{ "type": "Feature", "properties": { "Name": "Fiskerton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fiskerton Rail Station", "TIPLOC": "FISKRTN", "CRS": "FSK", "StopAreaCode": "910GFISKRTN", "AdministrativeAreaRef": "110", "code": "9100FISKRTN", "NPTG": "E0050135", "ATCO": "330", "CRS_code": "FSK" }, "geometry": { "type": "Point", "coordinates": [ -0.91218751063, 53.060273900399999 ] } },
{ "type": "Feature", "properties": { "Name": "Fitzwilliam Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fitzwilliam Rail Station", "TIPLOC": "FITZWLM", "CRS": "FZW", "StopAreaCode": "910GFITZWLM", "AdministrativeAreaRef": "110", "code": "9100FITZWLM", "NPTG": "E0032689", "ATCO": "450", "CRS_code": "FZW" }, "geometry": { "type": "Point", "coordinates": [ -1.37427302168, 53.632500628499997 ] } },
{ "type": "Feature", "properties": { "Name": "Five Ways Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Five Ways Rail Station", "TIPLOC": "FIVEWYS", "CRS": "FWY", "StopAreaCode": "910GFIVEWYS", "AdministrativeAreaRef": "110", "code": "9100FIVEWYS", "NPTG": "E0057937", "ATCO": "430", "CRS_code": "FWY" }, "geometry": { "type": "Point", "coordinates": [ -1.91295429272, 52.471094938379998 ] } },
{ "type": "Feature", "properties": { "Name": "Fleet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fleet Rail Station", "TIPLOC": "FLEET", "CRS": "FLE", "StopAreaCode": "910GFLEET", "AdministrativeAreaRef": "110", "code": "9100FLEET", "NPTG": "E0012991", "ATCO": "190", "CRS_code": "FLE" }, "geometry": { "type": "Point", "coordinates": [ -0.83080560384, 51.290634811179999 ] } },
{ "type": "Feature", "properties": { "Name": "Flimby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Flimby Rail Station", "TIPLOC": "FLIMBY", "CRS": "FLM", "StopAreaCode": "910GFLIMBY", "AdministrativeAreaRef": "110", "code": "9100FLIMBY", "NPTG": "E0004898", "ATCO": "090", "CRS_code": "FLM" }, "geometry": { "type": "Point", "coordinates": [ -3.52074002752, 54.689686977800001 ] } },
{ "type": "Feature", "properties": { "Name": "Flint Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Flint Rail Station", "TIPLOC": "FLINT", "CRS": "FLN", "StopAreaCode": "910GFLINT", "AdministrativeAreaRef": "110", "code": "9100FLINT", "NPTG": "E0054233", "ATCO": "512", "CRS_code": "FLN" }, "geometry": { "type": "Point", "coordinates": [ -3.1329931167, 53.249524103669998 ] } },
{ "type": "Feature", "properties": { "Name": "Flitwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Flitwick Rail Station", "TIPLOC": "FLITWCK", "CRS": "FLT", "StopAreaCode": "910GFLITWCK", "AdministrativeAreaRef": "110", "code": "9100FLITWCK", "NPTG": "E0043889", "ATCO": "021", "CRS_code": "FLT" }, "geometry": { "type": "Point", "coordinates": [ -0.49525779354, 52.003642062330002 ] } },
{ "type": "Feature", "properties": { "Name": "Flixton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Flixton Rail Station", "TIPLOC": "FLIXTON", "CRS": "FLI", "StopAreaCode": "910GFLIXTON", "AdministrativeAreaRef": "110", "code": "9100FLIXTON", "NPTG": "E0028410", "ATCO": "180", "CRS_code": "FLI" }, "geometry": { "type": "Point", "coordinates": [ -2.38424643106, 53.44380776293 ] } },
{ "type": "Feature", "properties": { "Name": "Folkestone Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Folkestone Central Rail Station", "TIPLOC": "FLKSTNC", "CRS": "FKC", "StopAreaCode": "910GFLKSTNC", "AdministrativeAreaRef": "110", "code": "9100FLKSTNC", "NPTG": "E0015186", "ATCO": "240", "CRS_code": "FKC" }, "geometry": { "type": "Point", "coordinates": [ 1.16948247946, 51.082887582109997 ] } },
{ "type": "Feature", "properties": { "Name": "Folkestone West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Folkestone West Rail Station", "TIPLOC": "FLKSTNW", "CRS": "FKW", "StopAreaCode": "910GFLKSTNW", "AdministrativeAreaRef": "110", "code": "9100FLKSTNW", "NPTG": "E0015186", "ATCO": "240", "CRS_code": "FKW" }, "geometry": { "type": "Point", "coordinates": [ 1.15390351926, 51.084586559549997 ] } },
{ "type": "Feature", "properties": { "Name": "Falls of Cruachan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Falls of Cruachan Rail Station", "TIPLOC": "FLSCRHN", "CRS": "FOC", "StopAreaCode": "910GFLSCRHN", "AdministrativeAreaRef": "110", "code": "9100FLSCRHN", "NPTG": "N0077119", "ATCO": "607", "CRS_code": "FOC" }, "geometry": { "type": "Point", "coordinates": [ -5.11247770875, 56.393883010689997 ] } },
{ "type": "Feature", "properties": { "Name": "Flowery Field Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Flowery Field Rail Station", "TIPLOC": "FLWRYFD", "CRS": "FLF", "StopAreaCode": "910GFLWRYFD", "AdministrativeAreaRef": "110", "code": "9100FLWRYFD", "NPTG": "N0074984", "ATCO": "180", "CRS_code": "FLF" }, "geometry": { "type": "Point", "coordinates": [ -2.08105291392, 53.461854478340001 ] } },
{ "type": "Feature", "properties": { "Name": "Felixstowe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Felixstowe Rail Station", "TIPLOC": "FLXSTOW", "CRS": "FLX", "StopAreaCode": "910GFLXSTOW", "AdministrativeAreaRef": "110", "code": "9100FLXSTOW", "NPTG": "E0051619", "ATCO": "390", "CRS_code": "FLX" }, "geometry": { "type": "Point", "coordinates": [ 1.35043524483, 51.967072385249999 ] } },
{ "type": "Feature", "properties": { "Name": "Finchley Road & Frognal Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Finchley Road & Frognal Rail Station", "TIPLOC": "FNCHLYR", "CRS": "FNY", "StopAreaCode": "910GFNCHLYR", "AdministrativeAreaRef": "110", "code": "9100FNCHLYR", "NPTG": "E0034188", "ATCO": "490", "CRS_code": "FNY" }, "geometry": { "type": "Point", "coordinates": [ -0.18314052117, 51.550265864490001 ] } },
{ "type": "Feature", "properties": { "Name": "Finsbury Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Finsbury Park Rail Station", "TIPLOC": "FNPK", "CRS": "FPK", "StopAreaCode": "910GFNPK", "AdministrativeAreaRef": "110", "code": "9100FNPK", "NPTG": "N0065154", "ATCO": "490", "CRS_code": "FPK" }, "geometry": { "type": "Point", "coordinates": [ -0.10628489777, 51.56430177264 ] } },
{ "type": "Feature", "properties": { "Name": "Farringdon (London) Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Farringdon (London) Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100FNTLSR", "NPTG": "N0065138", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.10505494712, 51.520299562650003 ] } },
{ "type": "Feature", "properties": { "Name": "Ford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ford Rail Station", "TIPLOC": "FORD", "CRS": "FOD", "StopAreaCode": "910GFORD", "AdministrativeAreaRef": "110", "code": "9100FORD", "NPTG": "E0052068", "ATCO": "440", "CRS_code": "FOD" }, "geometry": { "type": "Point", "coordinates": [ -0.57840994816, 50.829393806890003 ] } },
{ "type": "Feature", "properties": { "Name": "Forest Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Forest Hill Rail Station", "TIPLOC": "FORESTH", "CRS": "FOH", "StopAreaCode": "910GFORESTH", "AdministrativeAreaRef": "110", "code": "9100FORESTH", "NPTG": "E0034662", "ATCO": "490", "CRS_code": "FOH" }, "geometry": { "type": "Point", "coordinates": [ -0.05315702337, 51.439280107229997 ] } },
{ "type": "Feature", "properties": { "Name": "Formby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Formby Rail Station", "TIPLOC": "FORMBY", "CRS": "FBY", "StopAreaCode": "910GFORMBY", "AdministrativeAreaRef": "110", "code": "9100FORMBY", "NPTG": "E0029702", "ATCO": "280", "CRS_code": "FBY" }, "geometry": { "type": "Point", "coordinates": [ -3.07090769388, 53.553477116149999 ] } },
{ "type": "Feature", "properties": { "Name": "Forres Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Forres Rail Station", "TIPLOC": "FORRES", "CRS": "FOR", "StopAreaCode": "910GFORRES", "AdministrativeAreaRef": "110", "code": "9100FORRES", "NPTG": "ES001428", "ATCO": "638", "CRS_code": "FOR" }, "geometry": { "type": "Point", "coordinates": [ -3.6248734232, 57.6111842607 ] } },
{ "type": "Feature", "properties": { "Name": "Forsinard Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Forsinard Rail Station", "TIPLOC": "FORSNRD", "CRS": "FRS", "StopAreaCode": "910GFORSNRD", "AdministrativeAreaRef": "110", "code": "9100FORSNRD", "NPTG": "N0067845", "ATCO": "670", "CRS_code": "FRS" }, "geometry": { "type": "Point", "coordinates": [ -3.89688025918, 58.356899273499998 ] } },
{ "type": "Feature", "properties": { "Name": "Four Oaks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Four Oaks Rail Station", "TIPLOC": "FOUROKS", "CRS": "FOK", "StopAreaCode": "910GFOUROKS", "AdministrativeAreaRef": "110", "code": "9100FOUROKS", "NPTG": "E0031550", "ATCO": "430", "CRS_code": "FOK" }, "geometry": { "type": "Point", "coordinates": [ -1.82803168874, 52.579779936409999 ] } },
{ "type": "Feature", "properties": { "Name": "Foxfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Foxfield Rail Station", "TIPLOC": "FOXFILD", "CRS": "FOX", "StopAreaCode": "910GFOXFILD", "AdministrativeAreaRef": "110", "code": "9100FOXFILD", "NPTG": "E0006226", "ATCO": "090", "CRS_code": "FOX" }, "geometry": { "type": "Point", "coordinates": [ -3.21606151137, 54.258667931570002 ] } },
{ "type": "Feature", "properties": { "Name": "Foxton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Foxton Rail Station", "TIPLOC": "FOXTON", "CRS": "FXN", "StopAreaCode": "910GFOXTON", "AdministrativeAreaRef": "110", "code": "9100FOXTON", "NPTG": "E0043825", "ATCO": "050", "CRS_code": "FXN" }, "geometry": { "type": "Point", "coordinates": [ 0.05630817921, 52.119213598329999 ] } },
{ "type": "Feature", "properties": { "Name": "Frant Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Frant Rail Station", "TIPLOC": "FRANT", "CRS": "FRT", "StopAreaCode": "910GFRANT", "AdministrativeAreaRef": "110", "code": "9100FRANT", "NPTG": "E0046112", "ATCO": "140", "CRS_code": "FRT" }, "geometry": { "type": "Point", "coordinates": [ 0.29454314839, 51.104028706 ] } },
{ "type": "Feature", "properties": { "Name": "Fratton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fratton Rail Station", "TIPLOC": "FRATTON", "CRS": "FTN", "StopAreaCode": "910GFRATTON", "AdministrativeAreaRef": "110", "code": "9100FRATTON", "NPTG": "E0040722", "ATCO": "199", "CRS_code": "FTN" }, "geometry": { "type": "Point", "coordinates": [ -1.07398266263, 50.796338873730001 ] } },
{ "type": "Feature", "properties": { "Name": "Fairbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fairbourne Rail Station", "TIPLOC": "FRBN", "CRS": "FRB", "StopAreaCode": "910GFRBN", "AdministrativeAreaRef": "110", "code": "9100FRBN", "NPTG": "E0037549", "ATCO": "540", "CRS_code": "FRB" }, "geometry": { "type": "Point", "coordinates": [ -4.04941337624, 52.696041574820001 ] } },
{ "type": "Feature", "properties": { "Name": "Farnborough (Main) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Farnborough (Main) Rail Station", "TIPLOC": "FRBRMN", "CRS": "FNB", "StopAreaCode": "910GFRBRMN", "AdministrativeAreaRef": "110", "code": "9100FRBRMN", "NPTG": "E0013323", "ATCO": "190", "CRS_code": "FNB" }, "geometry": { "type": "Point", "coordinates": [ -0.75543642474, 51.296692204910002 ] } },
{ "type": "Feature", "properties": { "Name": "Farnborough North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Farnborough North Rail Station", "TIPLOC": "FRBRNTH", "CRS": "FNN", "StopAreaCode": "910GFRBRNTH", "AdministrativeAreaRef": "110", "code": "9100FRBRNTH", "NPTG": "E0013323", "ATCO": "190", "CRS_code": "FNN" }, "geometry": { "type": "Point", "coordinates": [ -0.74302684037, 51.302044940750001 ] } },
{ "type": "Feature", "properties": { "Name": "Frodsham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Frodsham Rail Station", "TIPLOC": "FRDSHM", "CRS": "FRD", "StopAreaCode": "910GFRDSHM", "AdministrativeAreaRef": "110", "code": "9100FRDSHM", "NPTG": "E0044417", "ATCO": "061", "CRS_code": "FRD" }, "geometry": { "type": "Point", "coordinates": [ -2.72356682047, 53.295815028550003 ] } },
{ "type": "Feature", "properties": { "Name": "Freshford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Freshford Rail Station", "TIPLOC": "FRESHFD", "CRS": "FFD", "StopAreaCode": "910GFRESHFD", "AdministrativeAreaRef": "110", "code": "9100FRESHFD", "NPTG": "E0052918", "ATCO": "018", "CRS_code": "FFD" }, "geometry": { "type": "Point", "coordinates": [ -2.30100842161, 51.342029648100002 ] } },
{ "type": "Feature", "properties": { "Name": "Fairfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fairfield Rail Station", "TIPLOC": "FRFD", "CRS": "FRF", "StopAreaCode": "910GFRFD", "AdministrativeAreaRef": "110", "code": "9100FRFD", "NPTG": "E0028387", "ATCO": "180", "CRS_code": "FRF" }, "geometry": { "type": "Point", "coordinates": [ -2.14577492524, 53.471293713400001 ] } },
{ "type": "Feature", "properties": { "Name": "Frimley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Frimley Rail Station", "TIPLOC": "FRIMLEY", "CRS": "FML", "StopAreaCode": "910GFRIMLEY", "AdministrativeAreaRef": "110", "code": "9100FRIMLEY", "NPTG": "E0025666", "ATCO": "400", "CRS_code": "FML" }, "geometry": { "type": "Point", "coordinates": [ -0.74699127545, 51.311861974129997 ] } },
{ "type": "Feature", "properties": { "Name": "Frinton-on-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Frinton-on-Sea Rail Station", "TIPLOC": "FRINTON", "CRS": "FRI", "StopAreaCode": "910GFRINTON", "AdministrativeAreaRef": "110", "code": "9100FRINTON", "NPTG": "E0011464", "ATCO": "150", "CRS_code": "FRI" }, "geometry": { "type": "Point", "coordinates": [ 1.24317077156, 51.837682502820002 ] } },
{ "type": "Feature", "properties": { "Name": "Farncombe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Farncombe Rail Station", "TIPLOC": "FRNCMB", "CRS": "FNC", "StopAreaCode": "910GFRNCMB", "AdministrativeAreaRef": "110", "code": "9100FRNCMB", "NPTG": "E0025792", "ATCO": "400", "CRS_code": "FNC" }, "geometry": { "type": "Point", "coordinates": [ -0.60454879566, 51.197153846029998 ] } },
{ "type": "Feature", "properties": { "Name": "Farringdon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Farringdon (London) Rail Station", "TIPLOC": "FRNDNLT", "CRS": "ZFD", "StopAreaCode": "910GFRNDNLT", "AdministrativeAreaRef": "110", "code": "9100FRNDNLT", "NPTG": "N0077662", "ATCO": "490", "CRS_code": "ZFD" }, "geometry": { "type": "Point", "coordinates": [ -0.10520458877, 51.520167092050002 ] } },
{ "type": "Feature", "properties": { "Name": "Farningham Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Farningham Road Rail Station", "TIPLOC": "FRNNGRD", "CRS": "FNR", "StopAreaCode": "910GFRNNGRD", "AdministrativeAreaRef": "110", "code": "9100FRNNGRD", "NPTG": "E0014689", "ATCO": "240", "CRS_code": "FNR" }, "geometry": { "type": "Point", "coordinates": [ 0.23545215271, 51.401665579369997 ] } },
{ "type": "Feature", "properties": { "Name": "Farnworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Farnworth Rail Station", "TIPLOC": "FRNW", "CRS": "FNW", "StopAreaCode": "910GFRNW", "AdministrativeAreaRef": "110", "code": "9100FRNW", "NPTG": "E0028392", "ATCO": "180", "CRS_code": "FNW" }, "geometry": { "type": "Point", "coordinates": [ -2.38784964384, 53.550003870429997 ] } },
{ "type": "Feature", "properties": { "Name": "Frome Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Frome Rail Station", "TIPLOC": "FROME", "CRS": "FRO", "StopAreaCode": "910GFROME", "AdministrativeAreaRef": "110", "code": "9100FROME", "NPTG": "E0050788", "ATCO": "360", "CRS_code": "FRO" }, "geometry": { "type": "Point", "coordinates": [ -2.30999674896, 51.227270505370001 ] } },
{ "type": "Feature", "properties": { "Name": "Frosterley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Frosterley Rail Station", "TIPLOC": "FROSTLY", "CRS": "FRR", "StopAreaCode": "910GFROSTLY", "AdministrativeAreaRef": "110", "code": "9100FROSTLY", "NPTG": "E0010427", "ATCO": "130", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.96441137744, 54.726994737630001 ] } },
{ "type": "Feature", "properties": { "Name": "Freshfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Freshfield Rail Station", "TIPLOC": "FRSHFLD", "CRS": "FRE", "StopAreaCode": "910GFRSHFLD", "AdministrativeAreaRef": "110", "code": "9100FRSHFLD", "NPTG": "E0029704", "ATCO": "280", "CRS_code": "FRE" }, "geometry": { "type": "Point", "coordinates": [ -3.07182942955, 53.5660531443 ] } },
{ "type": "Feature", "properties": { "Name": "Forest Gate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Forest Gate Rail Station", "TIPLOC": "FRSTGT", "CRS": "FOG", "StopAreaCode": "910GFRSTGT", "AdministrativeAreaRef": "110", "code": "9100FRSTGT", "NPTG": "E0034705", "ATCO": "490", "CRS_code": "FOG" }, "geometry": { "type": "Point", "coordinates": [ 0.02435290267, 51.549431941160002 ] } },
{ "type": "Feature", "properties": { "Name": "Fort Matilda Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fort Matilda Rail Station", "TIPLOC": "FRTMTLD", "CRS": "FTM", "StopAreaCode": "910GFRTMTLD", "AdministrativeAreaRef": "110", "code": "9100FRTMTLD", "NPTG": "N0068087", "ATCO": "613", "CRS_code": "FTM" }, "geometry": { "type": "Point", "coordinates": [ -4.79526746689, 55.959031064389997 ] } },
{ "type": "Feature", "properties": { "Name": "Fort William Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fort William Rail Station", "TIPLOC": "FRTWLM", "CRS": "FTW", "StopAreaCode": "910GFRTWLM", "AdministrativeAreaRef": "110", "code": "9100FRTWLM", "NPTG": "ES001435", "ATCO": "670", "CRS_code": "FTW" }, "geometry": { "type": "Point", "coordinates": [ -5.10614331317, 56.820444103219998 ] } },
{ "type": "Feature", "properties": { "Name": "Fairwater Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fairwater Rail Station", "TIPLOC": "FRWATER", "CRS": "FRW", "StopAreaCode": "910GFRWATER", "AdministrativeAreaRef": "110", "code": "9100FRWATER", "NPTG": "E0054004", "ATCO": "571", "CRS_code": "FRW" }, "geometry": { "type": "Point", "coordinates": [ -3.23383941491, 51.493906585090002 ] } },
{ "type": "Feature", "properties": { "Name": "Frizinghall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Frizinghall Rail Station", "TIPLOC": "FRZNGHL", "CRS": "FZH", "StopAreaCode": "910GFRZNGHL", "AdministrativeAreaRef": "110", "code": "9100FRZNGHL", "NPTG": "E0032707", "ATCO": "450", "CRS_code": "FZH" }, "geometry": { "type": "Point", "coordinates": [ -1.7690010559, 53.820369980300001 ] } },
{ "type": "Feature", "properties": { "Name": "Fishbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fishbourne Rail Station", "TIPLOC": "FSHBORN", "CRS": "FSB", "StopAreaCode": "910GFSHBORN", "AdministrativeAreaRef": "110", "code": "9100FSHBORN", "NPTG": "E0026456", "ATCO": "440", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.81508415987, 50.839051380320001 ] } },
{ "type": "Feature", "properties": { "Name": "Fishersgate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fishersgate Rail Station", "TIPLOC": "FSHRSGT", "CRS": "FSG", "StopAreaCode": "910GFSHRSGT", "AdministrativeAreaRef": "110", "code": "9100FSHRSGT", "NPTG": "N0077928", "ATCO": "440", "CRS_code": "FSG" }, "geometry": { "type": "Point", "coordinates": [ -0.21942316036, 50.834234564740001 ] } },
{ "type": "Feature", "properties": { "Name": "Fenny Stratford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fenny Stratford Rail Station", "TIPLOC": "FSTR", "CRS": "FEN", "StopAreaCode": "910GFSTR", "AdministrativeAreaRef": "110", "code": "9100FSTR", "NPTG": "E0039289", "ATCO": "049", "CRS_code": "FEN" }, "geometry": { "type": "Point", "coordinates": [ -0.7159972744, 52.000068859839999 ] } },
{ "type": "Feature", "properties": { "Name": "Featherstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Featherstone Rail Station", "TIPLOC": "FTHRSTN", "CRS": "FEA", "StopAreaCode": "910GFTHRSTN", "AdministrativeAreaRef": "110", "code": "9100FTHRSTN", "NPTG": "E0052874", "ATCO": "450", "CRS_code": "FEA" }, "geometry": { "type": "Point", "coordinates": [ -1.35844410227, 53.679066344580001 ] } },
{ "type": "Feature", "properties": { "Name": "Fulwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Fulwell Rail Station", "TIPLOC": "FULWELL", "CRS": "FLW", "StopAreaCode": "910GFULWELL", "AdministrativeAreaRef": "110", "code": "9100FULWELL", "NPTG": "N0060439", "ATCO": "490", "CRS_code": "FLW" }, "geometry": { "type": "Point", "coordinates": [ -0.34946752918, 51.433935115689998 ] } },
{ "type": "Feature", "properties": { "Name": "Furness Vale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Furness Vale Rail Station", "TIPLOC": "FURNESV", "CRS": "FNV", "StopAreaCode": "910GFURNESV", "AdministrativeAreaRef": "110", "code": "9100FURNESV", "NPTG": "N0065074", "ATCO": "100", "CRS_code": "FNV" }, "geometry": { "type": "Point", "coordinates": [ -1.9888445828, 53.348751779449998 ] } },
{ "type": "Feature", "properties": { "Name": "Furze Platt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Furze Platt Rail Station", "TIPLOC": "FURZEP", "CRS": "FZP", "StopAreaCode": "910GFURZEP", "AdministrativeAreaRef": "110", "code": "9100FURZEP", "NPTG": "E0043271", "ATCO": "036", "CRS_code": "FZP" }, "geometry": { "type": "Point", "coordinates": [ -0.72847274028, 51.533020268960001 ] } },
{ "type": "Feature", "properties": { "Name": "Ferryside Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ferryside Rail Station", "TIPLOC": "FYSD", "CRS": "FYS", "StopAreaCode": "910GFYSD", "AdministrativeAreaRef": "110", "code": "9100FYSD", "NPTG": "E0036011", "ATCO": "522", "CRS_code": "FYS" }, "geometry": { "type": "Point", "coordinates": [ -4.369458142, 51.768367117479997 ] } },
{ "type": "Feature", "properties": { "Name": "Galashiels Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Galashiels Rail Station", "TIPLOC": "GALASLS", "CRS": "GAL", "StopAreaCode": "910GGALASLS", "AdministrativeAreaRef": "110", "code": "9100GALASLS", "NPTG": "ES001470", "ATCO": "690", "CRS_code": "GAL" }, "geometry": { "type": "Point", "coordinates": [ -2.80595442613, 55.617899194019998 ] } },
{ "type": "Feature", "properties": { "Name": "Smethwick Galton Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Smethwick Galton Bridge Rail Station", "TIPLOC": "GALTILL", "CRS": "SGB", "StopAreaCode": "910GGALTILL", "AdministrativeAreaRef": "110", "code": "9100GALTILL", "NPTG": "E0057928", "ATCO": "430", "CRS_code": "SGB" }, "geometry": { "type": "Point", "coordinates": [ -1.98051089856, 52.501780926400002 ] } },
{ "type": "Feature", "properties": { "Name": "Smethwick Galton Bridge High Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Smethwick Galton Bridge High Level Rail Station", "TIPLOC": "GALTINT", "CRS": "SGB", "StopAreaCode": "910GGALTINT", "AdministrativeAreaRef": "110", "code": "9100GALTINT", "NPTG": "E0057928", "ATCO": "430", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.98049616718, 52.501780924009999 ] } },
{ "type": "Feature", "properties": { "Name": "Garforth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garforth Rail Station", "TIPLOC": "GARFRTH", "CRS": "GRF", "StopAreaCode": "910GGARFRTH", "AdministrativeAreaRef": "110", "code": "9100GARFRTH", "NPTG": "E0057111", "ATCO": "450", "CRS_code": "GRF" }, "geometry": { "type": "Point", "coordinates": [ -1.38230956433, 53.796577661459999 ] } },
{ "type": "Feature", "properties": { "Name": "Garrowhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garrowhill Rail Station", "TIPLOC": "GARROWH", "CRS": "GAR", "StopAreaCode": "910GGARROWH", "AdministrativeAreaRef": "110", "code": "9100GARROWH", "NPTG": "N0068089", "ATCO": "609", "CRS_code": "GAR" }, "geometry": { "type": "Point", "coordinates": [ -4.12946047255, 55.855238403599998 ] } },
{ "type": "Feature", "properties": { "Name": "Garsdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garsdale Rail Station", "TIPLOC": "GARSDLE", "CRS": "GSD", "StopAreaCode": "910GGARSDLE", "AdministrativeAreaRef": "110", "code": "9100GARSDLE", "NPTG": "E0006230", "ATCO": "090", "CRS_code": "GSD" }, "geometry": { "type": "Point", "coordinates": [ -2.32635352287, 54.321430034190001 ] } },
{ "type": "Feature", "properties": { "Name": "Garth (Powys) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garth (Powys) Rail Station", "TIPLOC": "GARTH", "CRS": "GTH", "StopAreaCode": "910GGARTH", "AdministrativeAreaRef": "110", "code": "9100GARTH", "NPTG": "E0041082", "ATCO": "561", "CRS_code": "GTH" }, "geometry": { "type": "Point", "coordinates": [ -3.52990710268, 52.133236323799999 ] } },
{ "type": "Feature", "properties": { "Name": "Garve Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garve Rail Station", "TIPLOC": "GARVE", "CRS": "GVE", "StopAreaCode": "910GGARVE", "AdministrativeAreaRef": "110", "code": "9100GARVE", "NPTG": "N0067849", "ATCO": "670", "CRS_code": "GVE" }, "geometry": { "type": "Point", "coordinates": [ -4.68839513463, 57.613040900210002 ] } },
{ "type": "Feature", "properties": { "Name": "Garswood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garswood Rail Station", "TIPLOC": "GARW", "CRS": "GSW", "StopAreaCode": "910GGARW", "AdministrativeAreaRef": "110", "code": "9100GARW", "NPTG": "E0029707", "ATCO": "280", "CRS_code": "GSW" }, "geometry": { "type": "Point", "coordinates": [ -2.67213456299, 53.488520169520001 ] } },
{ "type": "Feature", "properties": { "Name": "Gathurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gathurst Rail Station", "TIPLOC": "GATHRST", "CRS": "GST", "StopAreaCode": "910GGATHRST", "AdministrativeAreaRef": "110", "code": "9100GATHRST", "NPTG": "E0028431", "ATCO": "180", "CRS_code": "GST" }, "geometry": { "type": "Point", "coordinates": [ -2.69439319007, 53.55940251573 ] } },
{ "type": "Feature", "properties": { "Name": "Gatley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gatley Rail Station", "TIPLOC": "GATLEY", "CRS": "GTY", "StopAreaCode": "910GGATLEY", "AdministrativeAreaRef": "110", "code": "9100GATLEY", "NPTG": "E0028432", "ATCO": "180", "CRS_code": "GTY" }, "geometry": { "type": "Point", "coordinates": [ -2.23123396582, 53.39290459011 ] } },
{ "type": "Feature", "properties": { "Name": "Gainsborough Lea Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gainsborough Lea Road Rail Station", "TIPLOC": "GBGHLRD", "CRS": "GBL", "StopAreaCode": "910GGBGHLRD", "AdministrativeAreaRef": "110", "code": "9100GBGHLRD", "NPTG": "E0017436", "ATCO": "270", "CRS_code": "GBL" }, "geometry": { "type": "Point", "coordinates": [ -0.76857950699, 53.386089096710002 ] } },
{ "type": "Feature", "properties": { "Name": "Greenbank Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenbank Rail Station", "TIPLOC": "GBNK", "CRS": "GBK", "StopAreaCode": "910GGBNK", "AdministrativeAreaRef": "110", "code": "9100GBNK", "NPTG": "E0002234", "ATCO": "061", "CRS_code": "GBK" }, "geometry": { "type": "Point", "coordinates": [ -2.53427063913, 53.251464751710003 ] } },
{ "type": "Feature", "properties": { "Name": "Gainsborough Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gainsborough Central Rail Station", "TIPLOC": "GBROC", "CRS": "GNB", "StopAreaCode": "910GGBROC", "AdministrativeAreaRef": "110", "code": "9100GBROC", "NPTG": "E0017436", "ATCO": "270", "CRS_code": "GNB" }, "geometry": { "type": "Point", "coordinates": [ -0.76969402127, 53.399584331200003 ] } },
{ "type": "Feature", "properties": { "Name": "Godalming Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Godalming Rail Station", "TIPLOC": "GDLMING", "CRS": "GOD", "StopAreaCode": "910GGDLMING", "AdministrativeAreaRef": "110", "code": "9100GDLMING", "NPTG": "E0051821", "ATCO": "400", "CRS_code": "GOD" }, "geometry": { "type": "Point", "coordinates": [ -0.61886224833, 51.186586620379998 ] } },
{ "type": "Feature", "properties": { "Name": "Gerrards Cross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gerrards Cross Rail Station", "TIPLOC": "GERRDSX", "CRS": "GER", "StopAreaCode": "910GGERRDSX", "AdministrativeAreaRef": "110", "code": "9100GERRDSX", "NPTG": "E0044076", "ATCO": "040", "CRS_code": "GER" }, "geometry": { "type": "Point", "coordinates": [ -0.55527534061, 51.589022995640001 ] } },
{ "type": "Feature", "properties": { "Name": "Greenfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenfield Rail Station", "TIPLOC": "GFLD", "CRS": "GNF", "StopAreaCode": "910GGFLD", "AdministrativeAreaRef": "110", "code": "9100GFLD", "NPTG": "E0028472", "ATCO": "180", "CRS_code": "GNF" }, "geometry": { "type": "Point", "coordinates": [ -2.01384345258, 53.53885800946 ] } },
{ "type": "Feature", "properties": { "Name": "Greenford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenford Rail Station", "TIPLOC": "GFORD", "CRS": "GFD", "StopAreaCode": "910GGFORD", "AdministrativeAreaRef": "110", "code": "9100GFORD", "NPTG": "E0034263", "ATCO": "490", "CRS_code": "GFD" }, "geometry": { "type": "Point", "coordinates": [ -0.34583712531, 51.542331317970003 ] } },
{ "type": "Feature", "properties": { "Name": "Giggleswick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Giggleswick Rail Station", "TIPLOC": "GGLSWCK", "CRS": "GIG", "StopAreaCode": "910GGGLSWCK", "AdministrativeAreaRef": "110", "code": "9100GGLSWCK", "NPTG": "E0048894", "ATCO": "320", "CRS_code": "GIG" }, "geometry": { "type": "Point", "coordinates": [ -2.30284770779, 54.061800405189999 ] } },
{ "type": "Feature", "properties": { "Name": "Guide Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Guide Bridge Rail Station", "TIPLOC": "GIDB", "CRS": "GUI", "StopAreaCode": "910GGIDB", "AdministrativeAreaRef": "110", "code": "9100GIDB", "NPTG": "E0028480", "ATCO": "180", "CRS_code": "GUI" }, "geometry": { "type": "Point", "coordinates": [ -2.11371056764, 53.474627356520003 ] } },
{ "type": "Feature", "properties": { "Name": "Gidea Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gidea Park Rail Station", "TIPLOC": "GIDEAPK", "CRS": "GDP", "StopAreaCode": "910GGIDEAPK", "AdministrativeAreaRef": "110", "code": "9100GIDEAPK", "NPTG": "E0034455", "ATCO": "490", "CRS_code": "GDP" }, "geometry": { "type": "Point", "coordinates": [ 0.20596439507, 51.581903997890002 ] } },
{ "type": "Feature", "properties": { "Name": "Giffnock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Giffnock Rail Station", "TIPLOC": "GIFNOCK", "CRS": "GFN", "StopAreaCode": "910GGIFNOCK", "AdministrativeAreaRef": "110", "code": "9100GIFNOCK", "NPTG": "ES001509", "ATCO": "612", "CRS_code": "GFN" }, "geometry": { "type": "Point", "coordinates": [ -4.2930142015, 55.803989876789998 ] } },
{ "type": "Feature", "properties": { "Name": "Gipsy Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gipsy Hill Rail Station", "TIPLOC": "GIPSYH", "CRS": "GIP", "StopAreaCode": "910GGIPSYH", "AdministrativeAreaRef": "110", "code": "9100GIPSYH", "NPTG": "E0034650", "ATCO": "490", "CRS_code": "GIP" }, "geometry": { "type": "Point", "coordinates": [ -0.08383583775, 51.424453119650003 ] } },
{ "type": "Feature", "properties": { "Name": "Girvan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Girvan Rail Station", "TIPLOC": "GIRVAN", "CRS": "GIR", "StopAreaCode": "910GGIRVAN", "AdministrativeAreaRef": "110", "code": "9100GIRVAN", "NPTG": "ES001522", "ATCO": "619", "CRS_code": "GIR" }, "geometry": { "type": "Point", "coordinates": [ -4.84838131184, 55.246312510320003 ] } },
{ "type": "Feature", "properties": { "Name": "Glaisdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glaisdale Rail Station", "TIPLOC": "GLAISDL", "CRS": "GLS", "StopAreaCode": "910GGLAISDL", "AdministrativeAreaRef": "110", "code": "9100GLAISDL", "NPTG": "E0049487", "ATCO": "320", "CRS_code": "GLS" }, "geometry": { "type": "Point", "coordinates": [ -0.79378774076, 54.439381235890004 ] } },
{ "type": "Feature", "properties": { "Name": "Glasshoughton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glasshoughton Rail Station", "TIPLOC": "GLASHTN", "CRS": "GLH", "StopAreaCode": "910GGLASHTN", "AdministrativeAreaRef": "110", "code": "9100GLASHTN", "NPTG": "E0032734", "ATCO": "450", "CRS_code": "GLH" }, "geometry": { "type": "Point", "coordinates": [ -1.34200506295, 53.70904301993 ] } },
{ "type": "Feature", "properties": { "Name": "Glazebrook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glazebrook Rail Station", "TIPLOC": "GLAZBRK", "CRS": "GLZ", "StopAreaCode": "910GGLAZBRK", "AdministrativeAreaRef": "110", "code": "9100GLAZBRK", "NPTG": "E0043003", "ATCO": "069", "CRS_code": "GLZ" }, "geometry": { "type": "Point", "coordinates": [ -2.45965739665, 53.428359530549997 ] } },
{ "type": "Feature", "properties": { "Name": "Gilberdyke Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gilberdyke Rail Station", "TIPLOC": "GLBRDYK", "CRS": "GBD", "StopAreaCode": "910GGLBRDYK", "AdministrativeAreaRef": "110", "code": "9100GLBRDYK", "NPTG": "E0053042", "ATCO": "220", "CRS_code": "GBD" }, "geometry": { "type": "Point", "coordinates": [ -0.7322433585, 53.747963516680002 ] } },
{ "type": "Feature", "properties": { "Name": "Goldthorpe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Goldthorpe Rail Station", "TIPLOC": "GLDTHRP", "CRS": "GOE", "StopAreaCode": "910GGLDTHRP", "AdministrativeAreaRef": "110", "code": "9100GLDTHRP", "NPTG": "E0030186", "ATCO": "370", "CRS_code": "GOE" }, "geometry": { "type": "Point", "coordinates": [ -1.312807649, 53.534189388270001 ] } },
{ "type": "Feature", "properties": { "Name": "Gilfach Fargoed Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gilfach Fargoed Rail Station", "TIPLOC": "GLFCHFR", "CRS": "GFF", "StopAreaCode": "910GGLFCHFR", "AdministrativeAreaRef": "110", "code": "9100GLFCHFR", "NPTG": "E0035730", "ATCO": "554", "CRS_code": "GFF" }, "geometry": { "type": "Point", "coordinates": [ -3.22656805779, 51.684249238539998 ] } },
{ "type": "Feature", "properties": { "Name": "Glasgow Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glasgow Central Rail Station", "TIPLOC": "GLGC", "CRS": "GLC", "StopAreaCode": "910GGLGC", "AdministrativeAreaRef": "110", "code": "9100GLGC", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "GLC" }, "geometry": { "type": "Point", "coordinates": [ -4.25764328891, 55.859755985020001 ] } },
{ "type": "Feature", "properties": { "Name": "Glasgow Central Low Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glasgow Central Low Level Rail Station", "TIPLOC": "GLGCLL", "CRS": "GCL", "StopAreaCode": "910GGLGC", "AdministrativeAreaRef": "110", "code": "9100GLGCLL", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.25849169891, 55.85867988991 ] } },
{ "type": "Feature", "properties": { "Name": "High Street (Glasgow) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "High Street (Glasgow) Rail Station", "TIPLOC": "GLGHST", "CRS": "HST", "StopAreaCode": "910GGLGHST", "AdministrativeAreaRef": "110", "code": "9100GLGHST", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "HST" }, "geometry": { "type": "Point", "coordinates": [ -4.24011796038, 55.859564101529998 ] } },
{ "type": "Feature", "properties": { "Name": "Glengarnock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glengarnock Rail Station", "TIPLOC": "GLGN", "CRS": "GLG", "StopAreaCode": "910GGLGN", "AdministrativeAreaRef": "110", "code": "9100GLGN", "NPTG": "N0068096", "ATCO": "617", "CRS_code": "GLG" }, "geometry": { "type": "Point", "coordinates": [ -4.67450167211, 55.738887534130001 ] } },
{ "type": "Feature", "properties": { "Name": "Glasgow Queen Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glasgow Queen Street Rail Station", "TIPLOC": "GLGQHL", "CRS": "GLQ", "StopAreaCode": "910GGLGQHL", "AdministrativeAreaRef": "110", "code": "9100GLGQHL", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "GLQ" }, "geometry": { "type": "Point", "coordinates": [ -4.25145586654, 55.862188151 ] } },
{ "type": "Feature", "properties": { "Name": "Glasgow Queen Street Low Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glasgow Queen Street Low Level Rail Station", "TIPLOC": "GLGQLL", "CRS": "GQL", "StopAreaCode": "910GGLGQHL", "AdministrativeAreaRef": "110", "code": "9100GLGQLL", "NPTG": "ES003921", "ATCO": "640", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.25064999759, 55.862346696849997 ] } },
{ "type": "Feature", "properties": { "Name": "Gillingham (Dorset) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gillingham (Dorset) Rail Station", "TIPLOC": "GLHM", "CRS": "GIL", "StopAreaCode": "910GGLHM", "AdministrativeAreaRef": "110", "code": "9100GLHM", "NPTG": "E0045688", "ATCO": "120", "CRS_code": "GIL" }, "geometry": { "type": "Point", "coordinates": [ -2.27262370413, 51.034034407950003 ] } },
{ "type": "Feature", "properties": { "Name": "Glan Conwy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glan Conwy Rail Station", "TIPLOC": "GLNCNWY", "CRS": "GCW", "StopAreaCode": "910GGLNCNWY", "AdministrativeAreaRef": "110", "code": "9100GLNCNWY", "NPTG": "E0036566", "ATCO": "513", "CRS_code": "GCW" }, "geometry": { "type": "Point", "coordinates": [ -3.79772739935, 53.267421474679999 ] } },
{ "type": "Feature", "properties": { "Name": "Gleneagles Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gleneagles Rail Station", "TIPLOC": "GLNEGLS", "CRS": "GLE", "StopAreaCode": "910GGLNEGLS", "AdministrativeAreaRef": "110", "code": "9100GLNEGLS", "NPTG": "ES000174", "ATCO": "648", "CRS_code": "GLE" }, "geometry": { "type": "Point", "coordinates": [ -3.73116793619, 56.274849549819997 ] } },
{ "type": "Feature", "properties": { "Name": "Glenfinnan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glenfinnan Rail Station", "TIPLOC": "GLNFNNN", "CRS": "GLF", "StopAreaCode": "910GGLNFNNN", "AdministrativeAreaRef": "110", "code": "9100GLNFNNN", "NPTG": "N0067858", "ATCO": "670", "CRS_code": "GLF" }, "geometry": { "type": "Point", "coordinates": [ -5.44961984742, 56.872402319759999 ] } },
{ "type": "Feature", "properties": { "Name": "Gillingham (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gillingham (Kent) Rail Station", "TIPLOC": "GLNGHMK", "CRS": "GLM", "StopAreaCode": "910GGLNGHMK", "AdministrativeAreaRef": "110", "code": "9100GLNGHMK", "NPTG": "E0057192", "ATCO": "249", "CRS_code": "GLM" }, "geometry": { "type": "Point", "coordinates": [ 0.5498500996, 51.386565458029999 ] } },
{ "type": "Feature", "properties": { "Name": "Glenrothes with Thornton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glenrothes with Thornton Rail Station", "TIPLOC": "GLNRTHS", "CRS": "GLT", "StopAreaCode": "910GGLNRTHS", "AdministrativeAreaRef": "110", "code": "9100GLNRTHS", "NPTG": "ES003641", "ATCO": "650", "CRS_code": "GLT" }, "geometry": { "type": "Point", "coordinates": [ -3.14301531585, 56.162356946849997 ] } },
{ "type": "Feature", "properties": { "Name": "Gloucester Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gloucester Rail Station", "TIPLOC": "GLOSTER", "CRS": "GCR", "StopAreaCode": "910GGLOSTER", "AdministrativeAreaRef": "110", "code": "9100GLOSTER", "NPTG": "E0055873", "ATCO": "160", "CRS_code": "GCR" }, "geometry": { "type": "Point", "coordinates": [ -2.23848761103, 51.865558550480003 ] } },
{ "type": "Feature", "properties": { "Name": "Glossop Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glossop Rail Station", "TIPLOC": "GLSP", "CRS": "GLO", "StopAreaCode": "910GGLSP", "AdministrativeAreaRef": "110", "code": "9100GLSP", "NPTG": "E0007081", "ATCO": "100", "CRS_code": "GLO" }, "geometry": { "type": "Point", "coordinates": [ -1.94907371919, 53.444469714859999 ] } },
{ "type": "Feature", "properties": { "Name": "Glynde Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Glynde Rail Station", "TIPLOC": "GLYNDE", "CRS": "GLY", "StopAreaCode": "910GGLYNDE", "AdministrativeAreaRef": "110", "code": "9100GLYNDE", "NPTG": "E0046042", "ATCO": "140", "CRS_code": "GLY" }, "geometry": { "type": "Point", "coordinates": [ 0.07007737459, 50.859172060109998 ] } },
{ "type": "Feature", "properties": { "Name": "Greenhithe for Bluewater Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenhithe for Bluewater Rail Station", "TIPLOC": "GNHT", "CRS": "GNH", "StopAreaCode": "910GGNHT", "AdministrativeAreaRef": "110", "code": "9100GNHT", "NPTG": "E0014663", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.28029021858, 51.450371752370003 ] } },
{ "type": "Feature", "properties": { "Name": "Green Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Green Lane Rail Station", "TIPLOC": "GNLN", "CRS": "GNL", "StopAreaCode": "910GGNLN", "AdministrativeAreaRef": "110", "code": "9100GNLN", "NPTG": "E0029737", "ATCO": "280", "CRS_code": "GNL" }, "geometry": { "type": "Point", "coordinates": [ -3.0164147583, 53.383254237780001 ] } },
{ "type": "Feature", "properties": { "Name": "Gunnersbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gunnersbury Rail Station", "TIPLOC": "GNRSBRY", "CRS": "GUN", "StopAreaCode": "910GGNRSBRY", "AdministrativeAreaRef": "110", "code": "9100GNRSBRY", "NPTG": "E0034540", "ATCO": "490", "CRS_code": "GUN" }, "geometry": { "type": "Point", "coordinates": [ -0.27528635656, 51.49167762303 ] } },
{ "type": "Feature", "properties": { "Name": "Grangetown (Cardiff) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grangetown (Cardiff) Rail Station", "TIPLOC": "GNTN", "CRS": "GTN", "StopAreaCode": "910GGNTN", "AdministrativeAreaRef": "110", "code": "9100GNTN", "NPTG": "E0054006", "ATCO": "571", "CRS_code": "GTN" }, "geometry": { "type": "Point", "coordinates": [ -3.18972386847, 51.467611534589999 ] } },
{ "type": "Feature", "properties": { "Name": "Greenwich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenwich Rail Station", "TIPLOC": "GNWH", "CRS": "GNW", "StopAreaCode": "910GGNWH", "AdministrativeAreaRef": "110", "code": "9100GNWH", "NPTG": "E0034328", "ATCO": "490", "CRS_code": "GNW" }, "geometry": { "type": "Point", "coordinates": [ -0.01333984329, 51.478135050989998 ] } },
{ "type": "Feature", "properties": { "Name": "Gobowen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gobowen Rail Station", "TIPLOC": "GOBOWEN", "CRS": "GOB", "StopAreaCode": "910GGOBOWEN", "AdministrativeAreaRef": "110", "code": "9100GOBOWEN", "NPTG": "E0021559", "ATCO": "350", "CRS_code": "GOB" }, "geometry": { "type": "Point", "coordinates": [ -3.03717257508, 52.893514802950001 ] } },
{ "type": "Feature", "properties": { "Name": "Godley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Godley Rail Station", "TIPLOC": "GODLY", "CRS": "GDL", "StopAreaCode": "910GGODLY", "AdministrativeAreaRef": "110", "code": "9100GODLY", "NPTG": "E0028445", "ATCO": "180", "CRS_code": "GDL" }, "geometry": { "type": "Point", "coordinates": [ -2.05477234839, 53.45170351102 ] } },
{ "type": "Feature", "properties": { "Name": "Goodmayes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Goodmayes Rail Station", "TIPLOC": "GODMAYS", "CRS": "GMY", "StopAreaCode": "910GGODMAYS", "AdministrativeAreaRef": "110", "code": "9100GODMAYS", "NPTG": "E0034726", "ATCO": "490", "CRS_code": "GMY" }, "geometry": { "type": "Point", "coordinates": [ 0.11080715673, 51.56557897151 ] } },
{ "type": "Feature", "properties": { "Name": "Godstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Godstone Rail Station", "TIPLOC": "GODSTON", "CRS": "GDN", "StopAreaCode": "910GGODSTON", "AdministrativeAreaRef": "110", "code": "9100GODSTON", "NPTG": "E0051801", "ATCO": "400", "CRS_code": "GDN" }, "geometry": { "type": "Point", "coordinates": [ -0.05008491889, 51.218157450740001 ] } },
{ "type": "Feature", "properties": { "Name": "Golf Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Golf Street Rail Station", "TIPLOC": "GOLFSTR", "CRS": "GOF", "StopAreaCode": "910GGOLFSTR", "AdministrativeAreaRef": "110", "code": "9100GOLFSTR", "NPTG": "ES000632", "ATCO": "649", "CRS_code": "GOF" }, "geometry": { "type": "Point", "coordinates": [ -2.71954350776, 56.497793776569999 ] } },
{ "type": "Feature", "properties": { "Name": "Golspie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Golspie Rail Station", "TIPLOC": "GOLSPIE", "CRS": "GOL", "StopAreaCode": "910GGOLSPIE", "AdministrativeAreaRef": "110", "code": "9100GOLSPIE", "NPTG": "ES001624", "ATCO": "670", "CRS_code": "GOL" }, "geometry": { "type": "Point", "coordinates": [ -3.98721490391, 57.971464542109999 ] } },
{ "type": "Feature", "properties": { "Name": "Gomshall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gomshall Rail Station", "TIPLOC": "GOMSHAL", "CRS": "GOM", "StopAreaCode": "910GGOMSHAL", "AdministrativeAreaRef": "110", "code": "9100GOMSHAL", "NPTG": "E0025375", "ATCO": "400", "CRS_code": "GOM" }, "geometry": { "type": "Point", "coordinates": [ -0.44185211576, 51.219398531060001 ] } },
{ "type": "Feature", "properties": { "Name": "Goole Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Goole Rail Station", "TIPLOC": "GOOLE", "CRS": "GOO", "StopAreaCode": "910GGOOLE", "AdministrativeAreaRef": "110", "code": "9100GOOLE", "NPTG": "E0053044", "ATCO": "220", "CRS_code": "GOO" }, "geometry": { "type": "Point", "coordinates": [ -0.87421340957, 53.704914336969999 ] } },
{ "type": "Feature", "properties": { "Name": "Goostrey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Goostrey Rail Station", "TIPLOC": "GOOSTRY", "CRS": "GTR", "StopAreaCode": "910GGOOSTRY", "AdministrativeAreaRef": "110", "code": "9100GOOSTRY", "NPTG": "E0044265", "ATCO": "060", "CRS_code": "GTR" }, "geometry": { "type": "Point", "coordinates": [ -2.32647030798, 53.222552121809997 ] } },
{ "type": "Feature", "properties": { "Name": "Goring & Streatley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Goring & Streatley Rail Station", "TIPLOC": "GORASTR", "CRS": "GOR", "StopAreaCode": "910GGORASTR", "AdministrativeAreaRef": "110", "code": "9100GORASTR", "NPTG": "E0050360", "ATCO": "340", "CRS_code": "GOR" }, "geometry": { "type": "Point", "coordinates": [ -1.13304933898, 51.521492749819998 ] } },
{ "type": "Feature", "properties": { "Name": "Gordon Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gordon Hill Rail Station", "TIPLOC": "GORDONH", "CRS": "GDH", "StopAreaCode": "910GGORDONH", "AdministrativeAreaRef": "110", "code": "9100GORDONH", "NPTG": "E0034291", "ATCO": "490", "CRS_code": "GDH" }, "geometry": { "type": "Point", "coordinates": [ -0.09461043094, 51.663335152409999 ] } },
{ "type": "Feature", "properties": { "Name": "Gorebridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gorebridge Rail Station", "TIPLOC": "GOREBRG", "CRS": "GBG", "StopAreaCode": "910GGOREBRG", "AdministrativeAreaRef": "110", "code": "9100GOREBRG", "NPTG": "ES001632", "ATCO": "628", "CRS_code": "GBG" }, "geometry": { "type": "Point", "coordinates": [ -3.04651536474, 55.840273516460002 ] } },
{ "type": "Feature", "properties": { "Name": "Goring-by-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Goring-by-Sea Rail Station", "TIPLOC": "GORNGBS", "CRS": "GBS", "StopAreaCode": "910GGORNGBS", "AdministrativeAreaRef": "110", "code": "9100GORNGBS", "NPTG": "E0026836", "ATCO": "440", "CRS_code": "GBS" }, "geometry": { "type": "Point", "coordinates": [ -0.43308303735, 50.817721221699998 ] } },
{ "type": "Feature", "properties": { "Name": "Gorton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gorton Rail Station", "TIPLOC": "GORTON", "CRS": "GTO", "StopAreaCode": "910GGORTON", "AdministrativeAreaRef": "110", "code": "9100GORTON", "NPTG": "E0028451", "ATCO": "180", "CRS_code": "GTO" }, "geometry": { "type": "Point", "coordinates": [ -2.16620938912, 53.46907381055 ] } },
{ "type": "Feature", "properties": { "Name": "Gospel Oak Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gospel Oak Rail Station", "TIPLOC": "GOSPLOK", "CRS": "GPO", "StopAreaCode": "910GGOSPLOK", "AdministrativeAreaRef": "110", "code": "9100GOSPLOK", "NPTG": "E0034172", "ATCO": "490", "CRS_code": "GPO" }, "geometry": { "type": "Point", "coordinates": [ -0.15077010695, 51.555335434809997 ] } },
{ "type": "Feature", "properties": { "Name": "Gourock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gourock Rail Station", "TIPLOC": "GOUROCK", "CRS": "GRK", "StopAreaCode": "910GGOUROCK", "AdministrativeAreaRef": "110", "code": "9100GOUROCK", "NPTG": "ES001638", "ATCO": "613", "CRS_code": "GRK" }, "geometry": { "type": "Point", "coordinates": [ -4.81665768526, 55.962318978070002 ] } },
{ "type": "Feature", "properties": { "Name": "Grange-over-Sands Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grange-over-Sands Rail Station", "TIPLOC": "GOVS", "CRS": "GOS", "StopAreaCode": "910GGOVS", "AdministrativeAreaRef": "110", "code": "9100GOVS", "NPTG": "E0055516", "ATCO": "090", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.90274730261, 54.195722050439997 ] } },
{ "type": "Feature", "properties": { "Name": "Gowerton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gowerton Rail Station", "TIPLOC": "GOWERTN", "CRS": "GWN", "StopAreaCode": "910GGOWERTN", "AdministrativeAreaRef": "110", "code": "9100GOWERTN", "NPTG": "N0071516", "ATCO": "581", "CRS_code": "GWN" }, "geometry": { "type": "Point", "coordinates": [ -4.03593455088, 51.648725470899997 ] } },
{ "type": "Feature", "properties": { "Name": "Goxhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Goxhill Rail Station", "TIPLOC": "GOXHILL", "CRS": "GOX", "StopAreaCode": "910GGOXHILL", "AdministrativeAreaRef": "110", "code": "9100GOXHILL", "NPTG": "E0053522", "ATCO": "227", "CRS_code": "GOX" }, "geometry": { "type": "Point", "coordinates": [ -0.33712041334, 53.676702699730001 ] } },
{ "type": "Feature", "properties": { "Name": "Grateley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grateley Rail Station", "TIPLOC": "GRATELY", "CRS": "GRT", "StopAreaCode": "910GGRATELY", "AdministrativeAreaRef": "110", "code": "9100GRATELY", "NPTG": "E0013406", "ATCO": "190", "CRS_code": "GRT" }, "geometry": { "type": "Point", "coordinates": [ -1.62077365113, 51.170059138159999 ] } },
{ "type": "Feature", "properties": { "Name": "Gravelly Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gravelly Hill Rail Station", "TIPLOC": "GRAVLYH", "CRS": "GVH", "StopAreaCode": "910GGRAVLYH", "AdministrativeAreaRef": "110", "code": "9100GRAVLYH", "NPTG": "E0031587", "ATCO": "430", "CRS_code": "GVH" }, "geometry": { "type": "Point", "coordinates": [ -1.85259840324, 52.514996101389997 ] } },
{ "type": "Feature", "properties": { "Name": "Grays Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grays Rail Station", "TIPLOC": "GRAYS", "CRS": "GRY", "StopAreaCode": "910GGRAYS", "AdministrativeAreaRef": "110", "code": "9100GRAYS", "NPTG": "E0042664", "ATCO": "159", "CRS_code": "GRY" }, "geometry": { "type": "Point", "coordinates": [ 0.32183225291, 51.476247872210003 ] } },
{ "type": "Feature", "properties": { "Name": "Green Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Green Road Rail Station", "TIPLOC": "GREENRD", "CRS": "GNR", "StopAreaCode": "910GGREENRD", "AdministrativeAreaRef": "110", "code": "9100GREENRD", "NPTG": "E0005710", "ATCO": "090", "CRS_code": "GNR" }, "geometry": { "type": "Point", "coordinates": [ -3.24557083268, 54.244525147849998 ] } },
{ "type": "Feature", "properties": { "Name": "Greenock Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenock Central Rail Station", "TIPLOC": "GRENCKC", "CRS": "GKC", "StopAreaCode": "910GGRENCKC", "AdministrativeAreaRef": "110", "code": "9100GRENCKC", "NPTG": "ES001670", "ATCO": "613", "CRS_code": "GKC" }, "geometry": { "type": "Point", "coordinates": [ -4.75263397532, 55.945339920030001 ] } },
{ "type": "Feature", "properties": { "Name": "Greenock West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenock West Rail Station", "TIPLOC": "GRENCKW", "CRS": "GKW", "StopAreaCode": "910GGRENCKW", "AdministrativeAreaRef": "110", "code": "9100GRENCKW", "NPTG": "ES001670", "ATCO": "613", "CRS_code": "GKW" }, "geometry": { "type": "Point", "coordinates": [ -4.7678331889, 55.947336244410003 ] } },
{ "type": "Feature", "properties": { "Name": "Gretna Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gretna Green Rail Station", "TIPLOC": "GRETGRN", "CRS": "GEA", "StopAreaCode": "910GGRETGRN", "AdministrativeAreaRef": "110", "code": "9100GRETGRN", "NPTG": "N0068605", "ATCO": "680", "CRS_code": "GEA" }, "geometry": { "type": "Point", "coordinates": [ -3.06519801075, 55.001046690350002 ] } },
{ "type": "Feature", "properties": { "Name": "Georgemas Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Georgemas Junction Rail Station", "TIPLOC": "GRGMASJ", "CRS": "GGJ", "StopAreaCode": "910GGRGMASJ", "AdministrativeAreaRef": "110", "code": "9100GRGMASJ", "NPTG": "N0076575", "ATCO": "670", "CRS_code": "GGJ" }, "geometry": { "type": "Point", "coordinates": [ -3.45212020527, 58.513623329810002 ] } },
{ "type": "Feature", "properties": { "Name": "Gargrave Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gargrave Rail Station", "TIPLOC": "GRGRAVE", "CRS": "GGV", "StopAreaCode": "910GGRGRAVE", "AdministrativeAreaRef": "110", "code": "9100GRGRAVE", "NPTG": "E0048893", "ATCO": "320", "CRS_code": "GGV" }, "geometry": { "type": "Point", "coordinates": [ -2.10517037708, 53.978416360559997 ] } },
{ "type": "Feature", "properties": { "Name": "Garelochhead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garelochhead Rail Station", "TIPLOC": "GRLCHHD", "CRS": "GCH", "StopAreaCode": "910GGRLCHHD", "AdministrativeAreaRef": "110", "code": "9100GRLCHHD", "NPTG": "ES001484", "ATCO": "607", "CRS_code": "GCH" }, "geometry": { "type": "Point", "coordinates": [ -4.82571645796, 56.079864063039999 ] } },
{ "type": "Feature", "properties": { "Name": "Grimsby Docks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grimsby Docks Rail Station", "TIPLOC": "GRMSBYD", "CRS": "GMD", "StopAreaCode": "910GGRMSBYD", "AdministrativeAreaRef": "110", "code": "9100GRMSBYD", "NPTG": "E0039815", "ATCO": "228", "CRS_code": "GMD" }, "geometry": { "type": "Point", "coordinates": [ -0.07561720415, 53.574321456569997 ] } },
{ "type": "Feature", "properties": { "Name": "Grimsby Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grimsby Town Rail Station", "TIPLOC": "GRMSBYT", "CRS": "GMB", "StopAreaCode": "910GGRMSBYT", "AdministrativeAreaRef": "110", "code": "9100GRMSBYT", "NPTG": "N0073052", "ATCO": "228", "CRS_code": "GMB" }, "geometry": { "type": "Point", "coordinates": [ -0.086983869, 53.56342839018 ] } },
{ "type": "Feature", "properties": { "Name": "Grindleford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grindleford Rail Station", "TIPLOC": "GRNDLFD", "CRS": "GRN", "StopAreaCode": "910GGRNDLFD", "AdministrativeAreaRef": "110", "code": "9100GRNDLFD", "NPTG": "E0045040", "ATCO": "100", "CRS_code": "GRN" }, "geometry": { "type": "Point", "coordinates": [ -1.62629666455, 53.305561490869998 ] } },
{ "type": "Feature", "properties": { "Name": "Greenfaulds Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Greenfaulds Rail Station", "TIPLOC": "GRNFLDS", "CRS": "GRL", "StopAreaCode": "910GGRNFLDS", "AdministrativeAreaRef": "110", "code": "9100GRNFLDS", "NPTG": "N0068102", "ATCO": "616", "CRS_code": "GRL" }, "geometry": { "type": "Point", "coordinates": [ -3.99310001402, 55.935232603880003 ] } },
{ "type": "Feature", "properties": { "Name": "Grosmont Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grosmont Rail Station", "TIPLOC": "GROSMNT", "CRS": "GMT", "StopAreaCode": "910GGROSMNT", "AdministrativeAreaRef": "110", "code": "9100GROSMNT", "NPTG": "E0049490", "ATCO": "320", "CRS_code": "GMT" }, "geometry": { "type": "Point", "coordinates": [ -0.72496556309, 54.43611314903 ] } },
{ "type": "Feature", "properties": { "Name": "Grange Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grange Park Rail Station", "TIPLOC": "GRPK", "CRS": "GPK", "StopAreaCode": "910GGRPK", "AdministrativeAreaRef": "110", "code": "9100GRPK", "NPTG": "N0060448", "ATCO": "490", "CRS_code": "GPK" }, "geometry": { "type": "Point", "coordinates": [ -0.09735842474, 51.642607346239998 ] } },
{ "type": "Feature", "properties": { "Name": "Garston (Herts) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garston (Herts) Rail Station", "TIPLOC": "GRSTH", "CRS": "GSN", "StopAreaCode": "910GGRSTH", "AdministrativeAreaRef": "110", "code": "9100GRSTH", "NPTG": "N0076251", "ATCO": "210", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.38174113492, 51.686615759589998 ] } },
{ "type": "Feature", "properties": { "Name": "Garston (Merseyside) Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Garston (Merseyside) Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100GRSTM", "NPTG": "E0029706", "ATCO": "280", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.89392965494, 53.356728417159999 ] } },
{ "type": "Feature", "properties": { "Name": "Gartcosh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gartcosh Rail Station", "TIPLOC": "GRTCSH", "CRS": "GRH", "StopAreaCode": "910GGRTCSH", "AdministrativeAreaRef": "110", "code": "9100GRTCSH", "NPTG": "ES001495", "ATCO": "616", "CRS_code": "GRH" }, "geometry": { "type": "Point", "coordinates": [ -4.0794941299, 55.885660658120003 ] } },
{ "type": "Feature", "properties": { "Name": "Garth (Bridgend) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garth (Bridgend) Rail Station", "TIPLOC": "GRTHMG", "CRS": "GMG", "StopAreaCode": "910GGRTHMG", "AdministrativeAreaRef": "110", "code": "9100GRTHMG", "NPTG": "E0035461", "ATCO": "551", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.6414499615, 51.596455598760002 ] } },
{ "type": "Feature", "properties": { "Name": "Grove Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grove Park Rail Station", "TIPLOC": "GRVPK", "CRS": "GRP", "StopAreaCode": "910GGRVPK", "AdministrativeAreaRef": "110", "code": "9100GRVPK", "NPTG": "E0034663", "ATCO": "490", "CRS_code": "GRP" }, "geometry": { "type": "Point", "coordinates": [ 0.02172556684, 51.430863121119998 ] } },
{ "type": "Feature", "properties": { "Name": "Gravesend Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gravesend Rail Station", "TIPLOC": "GRVSEND", "CRS": "GRV", "StopAreaCode": "910GGRVSEND", "AdministrativeAreaRef": "110", "code": "9100GRVSEND", "NPTG": "E0014875", "ATCO": "240", "CRS_code": "GRV" }, "geometry": { "type": "Point", "coordinates": [ 0.36664309001, 51.441348325120003 ] } },
{ "type": "Feature", "properties": { "Name": "Garscadden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Garscadden Rail Station", "TIPLOC": "GSCD", "CRS": "GRS", "StopAreaCode": "910GGSCD", "AdministrativeAreaRef": "110", "code": "9100GSCD", "NPTG": "N0078788", "ATCO": "609", "CRS_code": "GRS" }, "geometry": { "type": "Point", "coordinates": [ -4.3650045086, 55.887694612559997 ] } },
{ "type": "Feature", "properties": { "Name": "Great Ayton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Great Ayton Rail Station", "TIPLOC": "GTAYTON", "CRS": "GTA", "StopAreaCode": "910GGTAYTON", "AdministrativeAreaRef": "110", "code": "9100GTAYTON", "NPTG": "E0048995", "ATCO": "320", "CRS_code": "GTA" }, "geometry": { "type": "Point", "coordinates": [ -1.11534518304, 54.489570918509997 ] } },
{ "type": "Feature", "properties": { "Name": "Great Bentley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Great Bentley Rail Station", "TIPLOC": "GTBNTLY", "CRS": "GRB", "StopAreaCode": "910GGTBNTLY", "AdministrativeAreaRef": "110", "code": "9100GTBNTLY", "NPTG": "E0046358", "ATCO": "150", "CRS_code": "GRB" }, "geometry": { "type": "Point", "coordinates": [ 1.06515356996, 51.85175987353 ] } },
{ "type": "Feature", "properties": { "Name": "Great Chesterford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Great Chesterford Rail Station", "TIPLOC": "GTCHSFD", "CRS": "GRC", "StopAreaCode": "910GGTCHSFD", "AdministrativeAreaRef": "110", "code": "9100GTCHSFD", "NPTG": "E0046393", "ATCO": "150", "CRS_code": "GRC" }, "geometry": { "type": "Point", "coordinates": [ 0.19352110122, 52.059810853709998 ] } },
{ "type": "Feature", "properties": { "Name": "Great Coates Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Great Coates Rail Station", "TIPLOC": "GTCOATS", "CRS": "GCT", "StopAreaCode": "910GGTCOATS", "AdministrativeAreaRef": "110", "code": "9100GTCOATS", "NPTG": "E0039817", "ATCO": "228", "CRS_code": "GCT" }, "geometry": { "type": "Point", "coordinates": [ -0.1302303834, 53.575753982400002 ] } },
{ "type": "Feature", "properties": { "Name": "Grantham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Grantham Rail Station", "TIPLOC": "GTHM", "CRS": "GRA", "StopAreaCode": "910GGTHM", "AdministrativeAreaRef": "110", "code": "9100GTHM", "NPTG": "E0017367", "ATCO": "270", "CRS_code": "GRA" }, "geometry": { "type": "Point", "coordinates": [ -0.64245023002, 52.906472376270003 ] } },
{ "type": "Feature", "properties": { "Name": "Great Malvern Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Great Malvern Rail Station", "TIPLOC": "GTMLVRN", "CRS": "GMV", "StopAreaCode": "910GGTMLVRN", "AdministrativeAreaRef": "110", "code": "9100GTMLVRN", "NPTG": "E0056900", "ATCO": "200", "CRS_code": "GMV" }, "geometry": { "type": "Point", "coordinates": [ -2.31827081412, 52.109198649989999 ] } },
{ "type": "Feature", "properties": { "Name": "Great Missenden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Great Missenden Rail Station", "TIPLOC": "GTMSNDN", "CRS": "GMN", "StopAreaCode": "910GGTMSNDN", "AdministrativeAreaRef": "110", "code": "9100GTMSNDN", "NPTG": "E0044064", "ATCO": "040", "CRS_code": "GMN" }, "geometry": { "type": "Point", "coordinates": [ -0.70914100899, 51.703518533230003 ] } },
{ "type": "Feature", "properties": { "Name": "Metrocentre Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Metrocentre Rail Station", "TIPLOC": "GTSHDMC", "CRS": "MCE", "StopAreaCode": "910GGTSHDMC", "AdministrativeAreaRef": "110", "code": "9100GTSHDMC", "NPTG": "N0077854", "ATCO": "410", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.66562588404, 54.958749166190003 ] } },
{ "type": "Feature", "properties": { "Name": "Gatwick Airport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gatwick Airport Rail Station", "TIPLOC": "GTWK", "CRS": "GTW", "StopAreaCode": "910GGTWK", "AdministrativeAreaRef": "110", "code": "9100GTWK", "NPTG": "N0061431", "ATCO": "440", "CRS_code": "GTW" }, "geometry": { "type": "Point", "coordinates": [ -0.16104145519, 51.156490732270001 ] } },
{ "type": "Feature", "properties": { "Name": "Guildford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Guildford Rail Station", "TIPLOC": "GUILDFD", "CRS": "GLD", "StopAreaCode": "910GGUILDFD", "AdministrativeAreaRef": "110", "code": "9100GUILDFD", "NPTG": "E0056720", "ATCO": "400", "CRS_code": "GLD" }, "geometry": { "type": "Point", "coordinates": [ -0.58042495926, 51.23697018947 ] } },
{ "type": "Feature", "properties": { "Name": "Guiseley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Guiseley Rail Station", "TIPLOC": "GUISELY", "CRS": "GSY", "StopAreaCode": "910GGUISELY", "AdministrativeAreaRef": "110", "code": "9100GUISELY", "NPTG": "E0032773", "ATCO": "450", "CRS_code": "GSY" }, "geometry": { "type": "Point", "coordinates": [ -1.7150799004, 53.87593426958 ] } },
{ "type": "Feature", "properties": { "Name": "Gunnislake Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gunnislake Rail Station", "TIPLOC": "GUNISLK", "CRS": "GSL", "StopAreaCode": "910GGUNISLK", "AdministrativeAreaRef": "110", "code": "9100GUNISLK", "NPTG": "E0002498", "ATCO": "080", "CRS_code": "GSL" }, "geometry": { "type": "Point", "coordinates": [ -4.21940554964, 50.516082181359998 ] } },
{ "type": "Feature", "properties": { "Name": "Gunton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gunton Rail Station", "TIPLOC": "GUNTON", "CRS": "GNT", "StopAreaCode": "910GGUNTON", "AdministrativeAreaRef": "110", "code": "9100GUNTON", "NPTG": "E0048713", "ATCO": "290", "CRS_code": "GNT" }, "geometry": { "type": "Point", "coordinates": [ 1.34911648435, 52.866346634350002 ] } },
{ "type": "Feature", "properties": { "Name": "Gwersyllt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gwersyllt Rail Station", "TIPLOC": "GWRSYLT", "CRS": "GWE", "StopAreaCode": "910GGWRSYLT", "AdministrativeAreaRef": "110", "code": "9100GWRSYLT", "NPTG": "E0054793", "ATCO": "514", "CRS_code": "GWE" }, "geometry": { "type": "Point", "coordinates": [ -3.01788807004, 53.072574290829998 ] } },
{ "type": "Feature", "properties": { "Name": "Gypsy Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gypsy Lane Rail Station", "TIPLOC": "GYPSYLA", "CRS": "GYP", "StopAreaCode": "910GGYPSYLA", "AdministrativeAreaRef": "110", "code": "9100GYPSYLA", "NPTG": "N0070284", "ATCO": "078", "CRS_code": "GYP" }, "geometry": { "type": "Point", "coordinates": [ -1.17939203378, 54.532891334699997 ] } },
{ "type": "Feature", "properties": { "Name": "Habrough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Habrough Rail Station", "TIPLOC": "HABRO", "CRS": "HAB", "StopAreaCode": "910GHABRO", "AdministrativeAreaRef": "110", "code": "9100HABRO", "NPTG": "E0053486", "ATCO": "228", "CRS_code": "HAB" }, "geometry": { "type": "Point", "coordinates": [ -0.26946124323, 53.60607620076 ] } },
{ "type": "Feature", "properties": { "Name": "Hackney Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hackney Central Rail Station", "TIPLOC": "HACKNYC", "CRS": "HKC", "StopAreaCode": "910GHACKNYC", "AdministrativeAreaRef": "110", "code": "9100HACKNYC", "NPTG": "N0060500", "ATCO": "490", "CRS_code": "HKC" }, "geometry": { "type": "Point", "coordinates": [ -0.05605753265, 51.547104948090002 ] } },
{ "type": "Feature", "properties": { "Name": "Hackney Wick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hackney Wick Rail Station", "TIPLOC": "HACKNYW", "CRS": "HKW", "StopAreaCode": "910GHACKNYW", "AdministrativeAreaRef": "110", "code": "9100HACKNYW", "NPTG": "E0034349", "ATCO": "490", "CRS_code": "HKW" }, "geometry": { "type": "Point", "coordinates": [ -0.02491977319, 51.543410468799998 ] } },
{ "type": "Feature", "properties": { "Name": "Hadfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hadfield Rail Station", "TIPLOC": "HADFILD", "CRS": "HDF", "StopAreaCode": "910GHADFILD", "AdministrativeAreaRef": "110", "code": "9100HADFILD", "NPTG": "E0007088", "ATCO": "100", "CRS_code": "HDF" }, "geometry": { "type": "Point", "coordinates": [ -1.96532045432, 53.460744643470001 ] } },
{ "type": "Feature", "properties": { "Name": "Haddiscoe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haddiscoe Rail Station", "TIPLOC": "HADISCO", "CRS": "HAD", "StopAreaCode": "910GHADISCO", "AdministrativeAreaRef": "110", "code": "9100HADISCO", "NPTG": "E0048793", "ATCO": "290", "CRS_code": "HAD" }, "geometry": { "type": "Point", "coordinates": [ 1.62300727158, 52.528787326840003 ] } },
{ "type": "Feature", "properties": { "Name": "Hadley Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hadley Wood Rail Station", "TIPLOC": "HADLYWD", "CRS": "HDW", "StopAreaCode": "910GHADLYWD", "AdministrativeAreaRef": "110", "code": "9100HADLYWD", "NPTG": "E0034302", "ATCO": "490", "CRS_code": "HDW" }, "geometry": { "type": "Point", "coordinates": [ -0.17617247867, 51.668496848890001 ] } },
{ "type": "Feature", "properties": { "Name": "Haddenham & Thame Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haddenham & Thame Parkway Rail Station", "TIPLOC": "HADMATP", "CRS": "HDM", "StopAreaCode": "910GHADMATP", "AdministrativeAreaRef": "110", "code": "9100HADMATP", "NPTG": "E0043984", "ATCO": "040", "CRS_code": "HDM" }, "geometry": { "type": "Point", "coordinates": [ -0.94213706242, 51.770855227479998 ] } },
{ "type": "Feature", "properties": { "Name": "Hag Fold Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hag Fold Rail Station", "TIPLOC": "HAGFOLD", "CRS": "HGF", "StopAreaCode": "910GHAGFOLD", "AdministrativeAreaRef": "110", "code": "9100HAGFOLD", "NPTG": "E0028727", "ATCO": "180", "CRS_code": "HGF" }, "geometry": { "type": "Point", "coordinates": [ -2.49482155331, 53.533852179199997 ] } },
{ "type": "Feature", "properties": { "Name": "Haggerston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haggerston Rail Station", "TIPLOC": "HAGGERS", "CRS": "HGG", "StopAreaCode": "910GHAGGERS", "AdministrativeAreaRef": "110", "code": "9100HAGGERS", "NPTG": "E0034350", "ATCO": "490", "CRS_code": "HGG" }, "geometry": { "type": "Point", "coordinates": [ -0.07566646917, 51.53870546396 ] } },
{ "type": "Feature", "properties": { "Name": "Hagley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hagley Rail Station", "TIPLOC": "HAGLEY", "CRS": "HAG", "StopAreaCode": "910GHAGLEY", "AdministrativeAreaRef": "110", "code": "9100HAGLEY", "NPTG": "E0052484", "ATCO": "200", "CRS_code": "HAG" }, "geometry": { "type": "Point", "coordinates": [ -2.14641708556, 52.42248975079 ] } },
{ "type": "Feature", "properties": { "Name": "Harrogate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harrogate Rail Station", "TIPLOC": "HAGT", "CRS": "HGT", "StopAreaCode": "910GHAGT", "AdministrativeAreaRef": "110", "code": "9100HAGT", "NPTG": "E0056344", "ATCO": "320", "CRS_code": "HGT" }, "geometry": { "type": "Point", "coordinates": [ -1.53760775475, 53.99317682929 ] } },
{ "type": "Feature", "properties": { "Name": "Hackney Downs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hackney Downs Rail Station", "TIPLOC": "HAKNYNM", "CRS": "HAC", "StopAreaCode": "910GHAKNYNM", "AdministrativeAreaRef": "110", "code": "9100HAKNYNM", "NPTG": "N0060500", "ATCO": "490", "CRS_code": "HAC" }, "geometry": { "type": "Point", "coordinates": [ -0.0608189367, 51.548757444700001 ] } },
{ "type": "Feature", "properties": { "Name": "Hale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hale Rail Station", "TIPLOC": "HALE", "CRS": "HAL", "StopAreaCode": "910GHALE", "AdministrativeAreaRef": "110", "code": "9100HALE", "NPTG": "E0028730", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.34735675997, 53.37871758603 ] } },
{ "type": "Feature", "properties": { "Name": "Halling Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Halling Rail Station", "TIPLOC": "HALG", "CRS": "HAI", "StopAreaCode": "910GHALG", "AdministrativeAreaRef": "110", "code": "9100HALG", "NPTG": "E0039120", "ATCO": "249", "CRS_code": "HAI" }, "geometry": { "type": "Point", "coordinates": [ 0.44493188278, 51.352477841279999 ] } },
{ "type": "Feature", "properties": { "Name": "Hall Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hall Road Rail Station", "TIPLOC": "HALLRD", "CRS": "HLR", "StopAreaCode": "910GHALLRD", "AdministrativeAreaRef": "110", "code": "9100HALLRD", "NPTG": "E0029664", "ATCO": "280", "CRS_code": "HLR" }, "geometry": { "type": "Point", "coordinates": [ -3.04962704604, 53.497485773100003 ] } },
{ "type": "Feature", "properties": { "Name": "Halesworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Halesworth Rail Station", "TIPLOC": "HALSWTH", "CRS": "HAS", "StopAreaCode": "910GHALSWTH", "AdministrativeAreaRef": "110", "code": "9100HALSWTH", "NPTG": "E0051713", "ATCO": "390", "CRS_code": "HAS" }, "geometry": { "type": "Point", "coordinates": [ 1.50566753417, 52.346816544920003 ] } },
{ "type": "Feature", "properties": { "Name": "Halewood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Halewood Rail Station", "TIPLOC": "HALW", "CRS": "HED", "StopAreaCode": "910GHALW", "AdministrativeAreaRef": "110", "code": "9100HALW", "NPTG": "E0052680", "ATCO": "280", "CRS_code": "HED" }, "geometry": { "type": "Point", "coordinates": [ -2.83013392459, 53.364479318930002 ] } },
{ "type": "Feature", "properties": { "Name": "Hammerton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hammerton Rail Station", "TIPLOC": "HAMERTN", "CRS": "HMM", "StopAreaCode": "910GHAMERTN", "AdministrativeAreaRef": "110", "code": "9100HAMERTN", "NPTG": "E0049181", "ATCO": "320", "CRS_code": "HMM" }, "geometry": { "type": "Point", "coordinates": [ -1.28409555422, 53.996329832139999 ] } },
{ "type": "Feature", "properties": { "Name": "Hamilton Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hamilton Central Rail Station", "TIPLOC": "HAMLTNC", "CRS": "HNC", "StopAreaCode": "910GHAMLTNC", "AdministrativeAreaRef": "110", "code": "9100HAMLTNC", "NPTG": "ES001705", "ATCO": "615", "CRS_code": "HNC" }, "geometry": { "type": "Point", "coordinates": [ -4.03888482876, 55.773193511960002 ] } },
{ "type": "Feature", "properties": { "Name": "Hamilton West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hamilton West Rail Station", "TIPLOC": "HAMLTNW", "CRS": "HNW", "StopAreaCode": "910GHAMLTNW", "AdministrativeAreaRef": "110", "code": "9100HAMLTNW", "NPTG": "ES001705", "ATCO": "615", "CRS_code": "HNW" }, "geometry": { "type": "Point", "coordinates": [ -4.05480814501, 55.778859756350002 ] } },
{ "type": "Feature", "properties": { "Name": "Hampton (London) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hampton (London) Rail Station", "TIPLOC": "HAMPTON", "CRS": "HMP", "StopAreaCode": "910GHAMPTON", "AdministrativeAreaRef": "110", "code": "9100HAMPTON", "NPTG": "E0034759", "ATCO": "490", "CRS_code": "HMP" }, "geometry": { "type": "Point", "coordinates": [ -0.37211888587, 51.41593437713 ] } },
{ "type": "Feature", "properties": { "Name": "Hamstead (Birmingham) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hamstead (Birmingham) Rail Station", "TIPLOC": "HAMSTED", "CRS": "HSD", "StopAreaCode": "910GHAMSTED", "AdministrativeAreaRef": "110", "code": "9100HAMSTED", "NPTG": "E0031610", "ATCO": "430", "CRS_code": "HSD" }, "geometry": { "type": "Point", "coordinates": [ -1.92897770946, 52.53106841956 ] } },
{ "type": "Feature", "properties": { "Name": "Birkenhead Hamilton Square Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Birkenhead Hamilton Square Rail Station", "TIPLOC": "HAMTSQ", "CRS": "BKQ", "StopAreaCode": "910GHAMTSQ", "AdministrativeAreaRef": "110", "code": "9100HAMTSQ", "NPTG": "E0029614", "ATCO": "280", "CRS_code": "BKQ" }, "geometry": { "type": "Point", "coordinates": [ -3.01367966331, 53.394693501669998 ] } },
{ "type": "Feature", "properties": { "Name": "Hampton Wick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hampton Wick Rail Station", "TIPLOC": "HAMWICK", "CRS": "HMW", "StopAreaCode": "910GHAMWICK", "AdministrativeAreaRef": "110", "code": "9100HAMWICK", "NPTG": "E0034762", "ATCO": "490", "CRS_code": "HMW" }, "geometry": { "type": "Point", "coordinates": [ -0.31248946079, 51.4145244865 ] } },
{ "type": "Feature", "properties": { "Name": "Hanborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hanborough Rail Station", "TIPLOC": "HANDBRO", "CRS": "HND", "StopAreaCode": "910GHANDBRO", "AdministrativeAreaRef": "110", "code": "9100HANDBRO", "NPTG": "E0021063", "ATCO": "340", "CRS_code": "HND" }, "geometry": { "type": "Point", "coordinates": [ -1.37352541441, 51.82515811423 ] } },
{ "type": "Feature", "properties": { "Name": "Hanwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hanwell Rail Station", "TIPLOC": "HANWELL", "CRS": "HAN", "StopAreaCode": "910GHANWELL", "AdministrativeAreaRef": "110", "code": "9100HANWELL", "NPTG": "E0034266", "ATCO": "490", "CRS_code": "HAN" }, "geometry": { "type": "Point", "coordinates": [ -0.33858342642, 51.511834946359997 ] } },
{ "type": "Feature", "properties": { "Name": "Hapton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hapton Rail Station", "TIPLOC": "HAPTON", "CRS": "HPN", "StopAreaCode": "910GHAPTON", "AdministrativeAreaRef": "110", "code": "9100HAPTON", "NPTG": "E0015750", "ATCO": "250", "CRS_code": "HPN" }, "geometry": { "type": "Point", "coordinates": [ -2.316911389, 53.78161410213 ] } },
{ "type": "Feature", "properties": { "Name": "Harlesden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harlesden Rail Station", "TIPLOC": "HARLSDN", "CRS": "HDN", "StopAreaCode": "910GHARLSDN", "AdministrativeAreaRef": "110", "code": "9100HARLSDN", "NPTG": "E0034047", "ATCO": "490", "CRS_code": "HDN" }, "geometry": { "type": "Point", "coordinates": [ -0.25766749722, 51.536289138329998 ] } },
{ "type": "Feature", "properties": { "Name": "Hairmyres Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hairmyres Rail Station", "TIPLOC": "HARMYRS", "CRS": "HMY", "StopAreaCode": "910GHARMYRS", "AdministrativeAreaRef": "110", "code": "9100HARMYRS", "NPTG": "ES001696", "ATCO": "615", "CRS_code": "HMY" }, "geometry": { "type": "Point", "coordinates": [ -4.22001082493, 55.761965542559999 ] } },
{ "type": "Feature", "properties": { "Name": "Harrow-on-the-Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harrow-on-the-Hill Rail Station", "TIPLOC": "HAROOTH", "CRS": "HOH", "StopAreaCode": "910GHAROOTH", "AdministrativeAreaRef": "110", "code": "9100HAROOTH", "NPTG": "E0034421", "ATCO": "490", "CRS_code": "HOH" }, "geometry": { "type": "Point", "coordinates": [ -0.33722536083, 51.57918561924 ] } },
{ "type": "Feature", "properties": { "Name": "Hartford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hartford Rail Station", "TIPLOC": "HARTFD", "CRS": "HTF", "StopAreaCode": "910GHARTFD", "AdministrativeAreaRef": "110", "code": "9100HARTFD", "NPTG": "E0044419", "ATCO": "061", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.55362942136, 53.241758254579999 ] } },
{ "type": "Feature", "properties": { "Name": "Harwich Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harwich Town Rail Station", "TIPLOC": "HARWICH", "CRS": "HWC", "StopAreaCode": "910GHARWICH", "AdministrativeAreaRef": "110", "code": "9100HARWICH", "NPTG": "E0055830", "ATCO": "150", "CRS_code": "HWC" }, "geometry": { "type": "Point", "coordinates": [ 1.2866819234, 51.944145395210001 ] } },
{ "type": "Feature", "properties": { "Name": "Haslemere Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haslemere Rail Station", "TIPLOC": "HASLEMR", "CRS": "HSL", "StopAreaCode": "910GHASLEMR", "AdministrativeAreaRef": "110", "code": "9100HASLEMR", "NPTG": "E0051824", "ATCO": "400", "CRS_code": "HSL" }, "geometry": { "type": "Point", "coordinates": [ -0.71916256835, 51.088648189590003 ] } },
{ "type": "Feature", "properties": { "Name": "Hassocks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hassocks Rail Station", "TIPLOC": "HASOCKS", "CRS": "HSK", "StopAreaCode": "910GHASOCKS", "AdministrativeAreaRef": "110", "code": "9100HASOCKS", "NPTG": "E0026791", "ATCO": "440", "CRS_code": "HSK" }, "geometry": { "type": "Point", "coordinates": [ -0.14595298088, 50.924615821069999 ] } },
{ "type": "Feature", "properties": { "Name": "Hastings Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hastings Rail Station", "TIPLOC": "HASTING", "CRS": "HGS", "StopAreaCode": "910GHASTING", "AdministrativeAreaRef": "110", "code": "9100HASTING", "NPTG": "E0057381", "ATCO": "140", "CRS_code": "HGS" }, "geometry": { "type": "Point", "coordinates": [ 0.57674190314, 50.857895928780003 ] } },
{ "type": "Feature", "properties": { "Name": "Hatfield (Herts) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hatfield (Herts) Rail Station", "TIPLOC": "HATFILD", "CRS": "HAT", "StopAreaCode": "910GHATFILD", "AdministrativeAreaRef": "110", "code": "9100HATFILD", "NPTG": "E0047072", "ATCO": "210", "CRS_code": "HAT" }, "geometry": { "type": "Point", "coordinates": [ -0.21558853213, 51.763879488779999 ] } },
{ "type": "Feature", "properties": { "Name": "Hathersage Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hathersage Rail Station", "TIPLOC": "HATHRSG", "CRS": "HSG", "StopAreaCode": "910GHATHRSG", "AdministrativeAreaRef": "110", "code": "9100HATHRSG", "NPTG": "E0045047", "ATCO": "100", "CRS_code": "HSG" }, "geometry": { "type": "Point", "coordinates": [ -1.65171860523, 53.325773122020003 ] } },
{ "type": "Feature", "properties": { "Name": "Hattersley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hattersley Rail Station", "TIPLOC": "HATRSLY", "CRS": "HTY", "StopAreaCode": "910GHATRSLY", "AdministrativeAreaRef": "110", "code": "9100HATRSLY", "NPTG": "E0028756", "ATCO": "180", "CRS_code": "HTY" }, "geometry": { "type": "Point", "coordinates": [ -2.0403105378, 53.445282531449998 ] } },
{ "type": "Feature", "properties": { "Name": "Hatton (Warks) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hatton (Warks) Rail Station", "TIPLOC": "HATTON", "CRS": "HTN", "StopAreaCode": "910GHATTON", "AdministrativeAreaRef": "110", "code": "9100HATTON", "NPTG": "E0052030", "ATCO": "420", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.67297514159, 52.295277819900001 ] } },
{ "type": "Feature", "properties": { "Name": "Havant Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Havant Rail Station", "TIPLOC": "HAVANT", "CRS": "HAV", "StopAreaCode": "910GHAVANT", "AdministrativeAreaRef": "110", "code": "9100HAVANT", "NPTG": "E0013041", "ATCO": "190", "CRS_code": "HAV" }, "geometry": { "type": "Point", "coordinates": [ -0.98161142439, 50.854427080930002 ] } },
{ "type": "Feature", "properties": { "Name": "Havenhouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Havenhouse Rail Station", "TIPLOC": "HAVENHS", "CRS": "HVN", "StopAreaCode": "910GHAVENHS", "AdministrativeAreaRef": "110", "code": "9100HAVENHS", "NPTG": "N0060145", "ATCO": "270", "CRS_code": "HVN" }, "geometry": { "type": "Point", "coordinates": [ 0.27316750465, 53.114468418069997 ] } },
{ "type": "Feature", "properties": { "Name": "Haverfordwest Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haverfordwest Rail Station", "TIPLOC": "HAVRFDW", "CRS": "HVF", "StopAreaCode": "910GHAVRFDW", "AdministrativeAreaRef": "110", "code": "9100HAVRFDW", "NPTG": "E0055084", "ATCO": "521", "CRS_code": "HVF" }, "geometry": { "type": "Point", "coordinates": [ -4.96020320796, 51.80263206979 ] } },
{ "type": "Feature", "properties": { "Name": "Hawarden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hawarden Rail Station", "TIPLOC": "HAWARDN", "CRS": "HWD", "StopAreaCode": "910GHAWARDN", "AdministrativeAreaRef": "110", "code": "9100HAWARDN", "NPTG": "E0054237", "ATCO": "512", "CRS_code": "HWD" }, "geometry": { "type": "Point", "coordinates": [ -3.03208073259, 53.185358561309997 ] } },
{ "type": "Feature", "properties": { "Name": "Hawarden Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hawarden Bridge Rail Station", "TIPLOC": "HAWDNBG", "CRS": "HWB", "StopAreaCode": "910GHAWDNBG", "AdministrativeAreaRef": "110", "code": "9100HAWDNBG", "NPTG": "E0054237", "ATCO": "512", "CRS_code": "HWB" }, "geometry": { "type": "Point", "coordinates": [ -3.03271744315, 53.218073980219998 ] } },
{ "type": "Feature", "properties": { "Name": "Hayes & Harlington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hayes & Harlington Rail Station", "TIPLOC": "HAYESAH", "CRS": "HAY", "StopAreaCode": "910GHAYESAH", "AdministrativeAreaRef": "110", "code": "9100HAYESAH", "NPTG": "E0034494", "ATCO": "490", "CRS_code": "HAY" }, "geometry": { "type": "Point", "coordinates": [ -0.42068347609, 51.503095610419997 ] } },
{ "type": "Feature", "properties": { "Name": "Hayle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hayle Rail Station", "TIPLOC": "HAYLE", "CRS": "HYL", "StopAreaCode": "910GHAYLE", "AdministrativeAreaRef": "110", "code": "9100HAYLE", "NPTG": "E0044617", "ATCO": "080", "CRS_code": "HYL" }, "geometry": { "type": "Point", "coordinates": [ -5.41983621115, 50.185562716109999 ] } },
{ "type": "Feature", "properties": { "Name": "Haymarket Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haymarket Rail Station", "TIPLOC": "HAYMRKT", "CRS": "HYM", "StopAreaCode": "910GHAYMRKT", "AdministrativeAreaRef": "110", "code": "9100HAYMRKT", "NPTG": "ES001737", "ATCO": "620", "CRS_code": "HYM" }, "geometry": { "type": "Point", "coordinates": [ -3.21844944732, 55.945807786689997 ] } },
{ "type": "Feature", "properties": { "Name": "Hayes (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hayes (Kent) Rail Station", "TIPLOC": "HAYS", "CRS": "HYS", "StopAreaCode": "910GHAYS", "AdministrativeAreaRef": "110", "code": "9100HAYS", "NPTG": "E0034108", "ATCO": "490", "CRS_code": "HYS" }, "geometry": { "type": "Point", "coordinates": [ 0.01055679095, 51.376333850649999 ] } },
{ "type": "Feature", "properties": { "Name": "Hazel Grove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hazel Grove Rail Station", "TIPLOC": "HAZL", "CRS": "HAZ", "StopAreaCode": "910GHAZL", "AdministrativeAreaRef": "110", "code": "9100HAZL", "NPTG": "E0028763", "ATCO": "180", "CRS_code": "HAZ" }, "geometry": { "type": "Point", "coordinates": [ -2.1220193524, 53.377543097279997 ] } },
{ "type": "Feature", "properties": { "Name": "Hebden Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hebden Bridge Rail Station", "TIPLOC": "HBDNBDG", "CRS": "HBD", "StopAreaCode": "910GHBDNBDG", "AdministrativeAreaRef": "110", "code": "9100HBDNBDG", "NPTG": "E0032835", "ATCO": "450", "CRS_code": "HBD" }, "geometry": { "type": "Point", "coordinates": [ -2.00905870724, 53.737587489649997 ] } },
{ "type": "Feature", "properties": { "Name": "Hollingbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hollingbourne Rail Station", "TIPLOC": "HBRN", "CRS": "HBN", "StopAreaCode": "910GHBRN", "AdministrativeAreaRef": "110", "code": "9100HBRN", "NPTG": "E0047209", "ATCO": "240", "CRS_code": "HBN" }, "geometry": { "type": "Point", "coordinates": [ 0.62784829448, 51.265178921950003 ] } },
{ "type": "Feature", "properties": { "Name": "High Brooms Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "High Brooms Rail Station", "TIPLOC": "HBROOMS", "CRS": "HIB", "StopAreaCode": "910GHBROOMS", "AdministrativeAreaRef": "110", "code": "9100HBROOMS", "NPTG": "E0015654", "ATCO": "240", "CRS_code": "HIB" }, "geometry": { "type": "Point", "coordinates": [ 0.27733229635, 51.14940496266 ] } },
{ "type": "Feature", "properties": { "Name": "Hubberts Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hubberts Bridge Rail Station", "TIPLOC": "HBRTBDG", "CRS": "HBB", "StopAreaCode": "910GHBRTBDG", "AdministrativeAreaRef": "110", "code": "9100HBRTBDG", "NPTG": "E0016938", "ATCO": "270", "CRS_code": "HBB" }, "geometry": { "type": "Point", "coordinates": [ -0.11052868429, 52.97535291106 ] } },
{ "type": "Feature", "properties": { "Name": "Hartlebury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hartlebury Rail Station", "TIPLOC": "HBRY", "CRS": "HBY", "StopAreaCode": "910GHBRY", "AdministrativeAreaRef": "110", "code": "9100HBRY", "NPTG": "E0052607", "ATCO": "200", "CRS_code": "HBY" }, "geometry": { "type": "Point", "coordinates": [ -2.2211189027, 52.334494974720002 ] } },
{ "type": "Feature", "properties": { "Name": "Holmes Chapel Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Holmes Chapel Rail Station", "TIPLOC": "HCHP", "CRS": "HCH", "StopAreaCode": "910GHCHP", "AdministrativeAreaRef": "110", "code": "9100HCHP", "NPTG": "E0044267", "ATCO": "060", "CRS_code": "HCH" }, "geometry": { "type": "Point", "coordinates": [ -2.35113978849, 53.198931047930003 ] } },
{ "type": "Feature", "properties": { "Name": "Heckington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heckington Rail Station", "TIPLOC": "HCKNGTN", "CRS": "HEC", "StopAreaCode": "910GHCKNGTN", "AdministrativeAreaRef": "110", "code": "9100HCKNGTN", "NPTG": "E0056232", "ATCO": "270", "CRS_code": "HEC" }, "geometry": { "type": "Point", "coordinates": [ -0.29394435712, 52.977317719029998 ] } },
{ "type": "Feature", "properties": { "Name": "Hampton Court Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hampton Court Rail Station", "TIPLOC": "HCRT", "CRS": "HMC", "StopAreaCode": "910GHCRT", "AdministrativeAreaRef": "110", "code": "9100HCRT", "NPTG": "E0025286", "ATCO": "400", "CRS_code": "HMC" }, "geometry": { "type": "Point", "coordinates": [ -0.34274765269, 51.402555670349997 ] } },
{ "type": "Feature", "properties": { "Name": "Hednesford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hednesford Rail Station", "TIPLOC": "HDNS", "CRS": "HNF", "StopAreaCode": "910GHDNS", "AdministrativeAreaRef": "110", "code": "9100HDNS", "NPTG": "E0023415", "ATCO": "380", "CRS_code": "HNF" }, "geometry": { "type": "Point", "coordinates": [ -2.00177793773, 52.710111281869999 ] } },
{ "type": "Feature", "properties": { "Name": "Hendon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hendon Rail Station", "TIPLOC": "HDON", "CRS": "HEN", "StopAreaCode": "910GHDON", "AdministrativeAreaRef": "110", "code": "9100HDON", "NPTG": "E0033971", "ATCO": "490", "CRS_code": "HEN" }, "geometry": { "type": "Point", "coordinates": [ -0.23867406319, 51.580067955380002 ] } },
{ "type": "Feature", "properties": { "Name": "Huddersfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Huddersfield Rail Station", "TIPLOC": "HDRSFLD", "CRS": "HUD", "StopAreaCode": "910GHDRSFLD", "AdministrativeAreaRef": "110", "code": "9100HDRSFLD", "NPTG": "E0032934", "ATCO": "450", "CRS_code": "HUD" }, "geometry": { "type": "Point", "coordinates": [ -1.78469019439, 53.648502302879997 ] } },
{ "type": "Feature", "properties": { "Name": "Headcorn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Headcorn Rail Station", "TIPLOC": "HEADCRN", "CRS": "HCN", "StopAreaCode": "910GHEADCRN", "AdministrativeAreaRef": "110", "code": "9100HEADCRN", "NPTG": "E0047208", "ATCO": "240", "CRS_code": "HCN" }, "geometry": { "type": "Point", "coordinates": [ 0.62748184535, 51.165714251559997 ] } },
{ "type": "Feature", "properties": { "Name": "Healing Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Healing Rail Station", "TIPLOC": "HEALING", "CRS": "HLI", "StopAreaCode": "910GHEALING", "AdministrativeAreaRef": "110", "code": "9100HEALING", "NPTG": "E0053489", "ATCO": "228", "CRS_code": "HLI" }, "geometry": { "type": "Point", "coordinates": [ -0.16062984873, 53.58179888702 ] } },
{ "type": "Feature", "properties": { "Name": "Heath High Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heath High Level Rail Station", "TIPLOC": "HEATHHL", "CRS": "HHL", "StopAreaCode": "910GHEATHHL", "AdministrativeAreaRef": "110", "code": "9100HEATHHL", "NPTG": "E0054007", "ATCO": "571", "CRS_code": "HHL" }, "geometry": { "type": "Point", "coordinates": [ -3.18154142948, 51.516430410170003 ] } },
{ "type": "Feature", "properties": { "Name": "Heath Low Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heath Low Level Rail Station", "TIPLOC": "HEATHLL", "CRS": "HLL", "StopAreaCode": "910GHEATHLL", "AdministrativeAreaRef": "110", "code": "9100HEATHLL", "NPTG": "E0054007", "ATCO": "571", "CRS_code": "HLL" }, "geometry": { "type": "Point", "coordinates": [ -3.18196830189, 51.515661799770001 ] } },
{ "type": "Feature", "properties": { "Name": "Hedge End Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hedge End Rail Station", "TIPLOC": "HEDGEND", "CRS": "HDE", "StopAreaCode": "910GHEDGEND", "AdministrativeAreaRef": "110", "code": "9100HEDGEND", "NPTG": "E0046790", "ATCO": "190", "CRS_code": "HDE" }, "geometry": { "type": "Point", "coordinates": [ -1.29450331823, 50.932319542259997 ] } },
{ "type": "Feature", "properties": { "Name": "Headingley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Headingley Rail Station", "TIPLOC": "HEDNGLY", "CRS": "HDY", "StopAreaCode": "910GHEDNGLY", "AdministrativeAreaRef": "110", "code": "9100HEDNGLY", "NPTG": "E0032820", "ATCO": "450", "CRS_code": "HDY" }, "geometry": { "type": "Point", "coordinates": [ -1.59418800379, 53.817973957180001 ] } },
{ "type": "Feature", "properties": { "Name": "Headstone Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Headstone Lane Rail Station", "TIPLOC": "HEDSTNL", "CRS": "HDL", "StopAreaCode": "910GHEDSTNL", "AdministrativeAreaRef": "110", "code": "9100HEDSTNL", "NPTG": "N0065063", "ATCO": "490", "CRS_code": "HDL" }, "geometry": { "type": "Point", "coordinates": [ -0.35721976415, 51.602648986849999 ] } },
{ "type": "Feature", "properties": { "Name": "Hellifield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hellifield Rail Station", "TIPLOC": "HELIFLD", "CRS": "HLD", "StopAreaCode": "910GHELIFLD", "AdministrativeAreaRef": "110", "code": "9100HELIFLD", "NPTG": "E0048905", "ATCO": "320", "CRS_code": "HLD" }, "geometry": { "type": "Point", "coordinates": [ -2.22784461222, 54.010862419650003 ] } },
{ "type": "Feature", "properties": { "Name": "Helmsdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Helmsdale Rail Station", "TIPLOC": "HELMSDL", "CRS": "HMS", "StopAreaCode": "910GHELMSDL", "AdministrativeAreaRef": "110", "code": "9100HELMSDL", "NPTG": "ES001750", "ATCO": "670", "CRS_code": "HMS" }, "geometry": { "type": "Point", "coordinates": [ -3.65868757454, 58.117438774989999 ] } },
{ "type": "Feature", "properties": { "Name": "Helsby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Helsby Rail Station", "TIPLOC": "HELSBY", "CRS": "HSB", "StopAreaCode": "910GHELSBY", "AdministrativeAreaRef": "110", "code": "9100HELSBY", "NPTG": "E0044420", "ATCO": "061", "CRS_code": "HSB" }, "geometry": { "type": "Point", "coordinates": [ -2.77120661162, 53.275201357790003 ] } },
{ "type": "Feature", "properties": { "Name": "Hemel Hempstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hemel Hempstead Rail Station", "TIPLOC": "HEMLHMP", "CRS": "HML", "StopAreaCode": "910GHEMLHMP", "AdministrativeAreaRef": "110", "code": "9100HEMLHMP", "NPTG": "E0013763", "ATCO": "210", "CRS_code": "HML" }, "geometry": { "type": "Point", "coordinates": [ -0.49077374333, 51.742332976859998 ] } },
{ "type": "Feature", "properties": { "Name": "Hengoed Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hengoed Rail Station", "TIPLOC": "HENGOED", "CRS": "HNG", "StopAreaCode": "910GHENGOED", "AdministrativeAreaRef": "110", "code": "9100HENGOED", "NPTG": "E0035736", "ATCO": "554", "CRS_code": "HNG" }, "geometry": { "type": "Point", "coordinates": [ -3.2241279201, 51.647408814389998 ] } },
{ "type": "Feature", "properties": { "Name": "Henley-in-Arden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Henley-in-Arden Rail Station", "TIPLOC": "HENLYIA", "CRS": "HNL", "StopAreaCode": "910GHENLYIA", "AdministrativeAreaRef": "110", "code": "9100HENLYIA", "NPTG": "E0051947", "ATCO": "200", "CRS_code": "HNL" }, "geometry": { "type": "Point", "coordinates": [ -1.78399102048, 52.291487158359999 ] } },
{ "type": "Feature", "properties": { "Name": "Hensall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hensall Rail Station", "TIPLOC": "HENSALL", "CRS": "HEL", "StopAreaCode": "910GHENSALL", "AdministrativeAreaRef": "110", "code": "9100HENSALL", "NPTG": "E0049555", "ATCO": "320", "CRS_code": "HEL" }, "geometry": { "type": "Point", "coordinates": [ -1.11451863276, 53.698544811719998 ] } },
{ "type": "Feature", "properties": { "Name": "Hereford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hereford Rail Station", "TIPLOC": "HEREFRD", "CRS": "HFD", "StopAreaCode": "910GHEREFRD", "AdministrativeAreaRef": "110", "code": "9100HEREFRD", "NPTG": "E0054981", "ATCO": "209", "CRS_code": "HFD" }, "geometry": { "type": "Point", "coordinates": [ -2.70821018081, 52.061162201430001 ] } },
{ "type": "Feature", "properties": { "Name": "Herne Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Herne Hill Rail Station", "TIPLOC": "HERNEH", "CRS": "HNH", "StopAreaCode": "910GHERNEH", "AdministrativeAreaRef": "110", "code": "9100HERNEH", "NPTG": "E0034631", "ATCO": "490", "CRS_code": "HNH" }, "geometry": { "type": "Point", "coordinates": [ -0.10228909198, 51.453305036880003 ] } },
{ "type": "Feature", "properties": { "Name": "Hersham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hersham Rail Station", "TIPLOC": "HERSHAM", "CRS": "HER", "StopAreaCode": "910GHERSHAM", "AdministrativeAreaRef": "110", "code": "9100HERSHAM", "NPTG": "E0025295", "ATCO": "400", "CRS_code": "HER" }, "geometry": { "type": "Point", "coordinates": [ -0.38995918597, 51.376812046380003 ] } },
{ "type": "Feature", "properties": { "Name": "Hertford East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hertford East Rail Station", "TIPLOC": "HERTFDE", "CRS": "HFE", "StopAreaCode": "910GHERTFDE", "AdministrativeAreaRef": "110", "code": "9100HERTFDE", "NPTG": "E0046986", "ATCO": "210", "CRS_code": "HFE" }, "geometry": { "type": "Point", "coordinates": [ -0.07294134669, 51.79903486181 ] } },
{ "type": "Feature", "properties": { "Name": "Hessle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hessle Rail Station", "TIPLOC": "HESSLE", "CRS": "HES", "StopAreaCode": "910GHESSLE", "AdministrativeAreaRef": "110", "code": "9100HESSLE", "NPTG": "E0053053", "ATCO": "220", "CRS_code": "HES" }, "geometry": { "type": "Point", "coordinates": [ -0.44182312114, 53.717438010949998 ] } },
{ "type": "Feature", "properties": { "Name": "Heswall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heswall Rail Station", "TIPLOC": "HESWALL", "CRS": "HSW", "StopAreaCode": "910GHESWALL", "AdministrativeAreaRef": "110", "code": "9100HESWALL", "NPTG": "E0029733", "ATCO": "280", "CRS_code": "HSW" }, "geometry": { "type": "Point", "coordinates": [ -3.07370272813, 53.329717063069999 ] } },
{ "type": "Feature", "properties": { "Name": "Hever Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hever Rail Station", "TIPLOC": "HEVER", "CRS": "HEV", "StopAreaCode": "910GHEVER", "AdministrativeAreaRef": "110", "code": "9100HEVER", "NPTG": "E0047245", "ATCO": "240", "CRS_code": "HEV" }, "geometry": { "type": "Point", "coordinates": [ 0.09506941174, 51.181411147200002 ] } },
{ "type": "Feature", "properties": { "Name": "Heworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heworth Rail Station", "TIPLOC": "HEWORTH", "CRS": "HEW", "StopAreaCode": "910GHEWORTH", "AdministrativeAreaRef": "110", "code": "9100HEWORTH", "NPTG": "E0030949", "ATCO": "410", "CRS_code": "HEW" }, "geometry": { "type": "Point", "coordinates": [ -1.55576610424, 54.951568116079997 ] } },
{ "type": "Feature", "properties": { "Name": "Hexham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hexham Rail Station", "TIPLOC": "HEXHAM", "CRS": "HEX", "StopAreaCode": "910GHEXHAM", "AdministrativeAreaRef": "110", "code": "9100HEXHAM", "NPTG": "E0049987", "ATCO": "310", "CRS_code": "HEX" }, "geometry": { "type": "Point", "coordinates": [ -2.09479457481, 54.973459053509998 ] } },
{ "type": "Feature", "properties": { "Name": "Heyford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heyford Rail Station", "TIPLOC": "HEYFORD", "CRS": "HYD", "StopAreaCode": "910GHEYFORD", "AdministrativeAreaRef": "110", "code": "9100HEYFORD", "NPTG": "N0071962", "ATCO": "340", "CRS_code": "HYD" }, "geometry": { "type": "Point", "coordinates": [ -1.29926997023, 51.919190291690001 ] } },
{ "type": "Feature", "properties": { "Name": "Heysham Port Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heysham Port Rail Station", "TIPLOC": "HEYMST", "CRS": "HHB", "StopAreaCode": "910GHEYMST", "AdministrativeAreaRef": "110", "code": "9100HEYMST", "NPTG": "E0015978", "ATCO": "250", "CRS_code": "HHB" }, "geometry": { "type": "Point", "coordinates": [ -2.91311432171, 54.033143850510001 ] } },
{ "type": "Feature", "properties": { "Name": "Hertford North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hertford North Rail Station", "TIPLOC": "HFDN", "CRS": "HFN", "StopAreaCode": "910GHFDN", "AdministrativeAreaRef": "110", "code": "9100HFDN", "NPTG": "E0046986", "ATCO": "210", "CRS_code": "HFN" }, "geometry": { "type": "Point", "coordinates": [ -0.09178846819, 51.798856701310001 ] } },
{ "type": "Feature", "properties": { "Name": "Hatfield Peverel Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hatfield Peverel Rail Station", "TIPLOC": "HFLPEVL", "CRS": "HAP", "StopAreaCode": "910GHFLPEVL", "AdministrativeAreaRef": "110", "code": "9100HFLPEVL", "NPTG": "E0046175", "ATCO": "150", "CRS_code": "HAP" }, "geometry": { "type": "Point", "coordinates": [ 0.5921238162, 51.77986437693 ] } },
{ "type": "Feature", "properties": { "Name": "Highbridge & Burnham-on-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Highbridge & Burnham-on-Sea Rail Station", "TIPLOC": "HGHBRDG", "CRS": "HIG", "StopAreaCode": "910GHGHBRDG", "AdministrativeAreaRef": "110", "code": "9100HGHBRDG", "NPTG": "E0022550", "ATCO": "360", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.97215342138, 51.218156784809999 ] } },
{ "type": "Feature", "properties": { "Name": "Highbury & Islington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Highbury & Islington Rail Station", "TIPLOC": "HGHI", "CRS": "HHY", "StopAreaCode": "910GHGHI", "AdministrativeAreaRef": "110", "code": "9100HGHI", "NPTG": "E0034570", "ATCO": "490", "CRS_code": "HHY" }, "geometry": { "type": "Point", "coordinates": [ -0.10376363832, 51.54617715485 ] } },
{ "type": "Feature", "properties": { "Name": "Highams Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Highams Park Rail Station", "TIPLOC": "HGHMSPK", "CRS": "HIP", "StopAreaCode": "910GHGHMSPK", "AdministrativeAreaRef": "110", "code": "9100HGHMSPK", "NPTG": "E0034871", "ATCO": "490", "CRS_code": "HIP" }, "geometry": { "type": "Point", "coordinates": [ -0.00022218599, 51.608350183559999 ] } },
{ "type": "Feature", "properties": { "Name": "Heighington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heighington Rail Station", "TIPLOC": "HGHNGTN", "CRS": "HEI", "StopAreaCode": "910GHGHNGTN", "AdministrativeAreaRef": "110", "code": "9100HGHNGTN", "NPTG": "N0077346", "ATCO": "130", "CRS_code": "HEI" }, "geometry": { "type": "Point", "coordinates": [ -1.5817650641, 54.596960355470003 ] } },
{ "type": "Feature", "properties": { "Name": "Highbury & Islington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Highbury & Islington Rail Station", "TIPLOC": "HIGHBYA", "CRS": "HII", "StopAreaCode": "910GHIGHBYA", "AdministrativeAreaRef": "110", "code": "9100HIGHBYA", "NPTG": "E0034570", "ATCO": "490", "CRS_code": "HHY" }, "geometry": { "type": "Point", "coordinates": [ -0.10376737457, 51.546087290199999 ] } },
{ "type": "Feature", "properties": { "Name": "Higham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Higham Rail Station", "TIPLOC": "HIGM", "CRS": "HGM", "StopAreaCode": "910GHIGM", "AdministrativeAreaRef": "110", "code": "9100HIGM", "NPTG": "E0047188", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.46627780763, 51.426559118649998 ] } },
{ "type": "Feature", "properties": { "Name": "Hillside Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hillside Rail Station", "TIPLOC": "HILLSID", "CRS": "HIL", "StopAreaCode": "910GHILLSID", "AdministrativeAreaRef": "110", "code": "9100HILLSID", "NPTG": "E0029741", "ATCO": "280", "CRS_code": "HIL" }, "geometry": { "type": "Point", "coordinates": [ -3.02471637702, 53.622106100570001 ] } },
{ "type": "Feature", "properties": { "Name": "Hilsea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hilsea Rail Station", "TIPLOC": "HILSEA", "CRS": "HLS", "StopAreaCode": "910GHILSEA", "AdministrativeAreaRef": "110", "code": "9100HILSEA", "NPTG": "E0040726", "ATCO": "199", "CRS_code": "HLS" }, "geometry": { "type": "Point", "coordinates": [ -1.05879733035, 50.828276604519999 ] } },
{ "type": "Feature", "properties": { "Name": "Hinckley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hinckley Rail Station", "TIPLOC": "HINCKLY", "CRS": "HNK", "StopAreaCode": "910GHINCKLY", "AdministrativeAreaRef": "110", "code": "9100HINCKLY", "NPTG": "E0056197", "ATCO": "260", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.37192321538, 52.53499848541 ] } },
{ "type": "Feature", "properties": { "Name": "Hindley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hindley Rail Station", "TIPLOC": "HINDLEY", "CRS": "HIN", "StopAreaCode": "910GHINDLEY", "AdministrativeAreaRef": "110", "code": "9100HINDLEY", "NPTG": "E0028822", "ATCO": "180", "CRS_code": "HIN" }, "geometry": { "type": "Point", "coordinates": [ -2.57550164743, 53.542236730909998 ] } },
{ "type": "Feature", "properties": { "Name": "Hinton Admiral Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hinton Admiral Rail Station", "TIPLOC": "HINTONA", "CRS": "HNA", "StopAreaCode": "910GHINTONA", "AdministrativeAreaRef": "110", "code": "9100HINTONA", "NPTG": "E0013184", "ATCO": "190", "CRS_code": "HNA" }, "geometry": { "type": "Point", "coordinates": [ -1.71412652195, 50.752640042039999 ] } },
{ "type": "Feature", "properties": { "Name": "Hitchin Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hitchin Rail Station", "TIPLOC": "HITCHIN", "CRS": "HIT", "StopAreaCode": "910GHITCHIN", "AdministrativeAreaRef": "110", "code": "9100HITCHIN", "NPTG": "E0014087", "ATCO": "210", "CRS_code": "HIT" }, "geometry": { "type": "Point", "coordinates": [ -0.26348076455, 51.95328253476 ] } },
{ "type": "Feature", "properties": { "Name": "Hightown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hightown Rail Station", "TIPLOC": "HITN", "CRS": "HTO", "StopAreaCode": "910GHITN", "AdministrativeAreaRef": "110", "code": "9100HITN", "NPTG": "E0029739", "ATCO": "280", "CRS_code": "HTO" }, "geometry": { "type": "Point", "coordinates": [ -3.05706794581, 53.525105793549997 ] } },
{ "type": "Feature", "properties": { "Name": "Hall i' th' Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hall i' th' Wood Rail Station", "TIPLOC": "HITW", "CRS": "HID", "StopAreaCode": "910GHITW", "AdministrativeAreaRef": "110", "code": "9100HITW", "NPTG": "E0028737", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.41310966123, 53.597422730390001 ] } },
{ "type": "Feature", "properties": { "Name": "Hackbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hackbridge Rail Station", "TIPLOC": "HKBG", "CRS": "HCB", "StopAreaCode": "910GHKBG", "AdministrativeAreaRef": "110", "code": "9100HKBG", "NPTG": "E0034820", "ATCO": "490", "CRS_code": "HCB" }, "geometry": { "type": "Point", "coordinates": [ -0.15390747744, 51.377871795659999 ] } },
{ "type": "Feature", "properties": { "Name": "Heald Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heald Green Rail Station", "TIPLOC": "HLDG", "CRS": "HDG", "StopAreaCode": "910GHLDG", "AdministrativeAreaRef": "110", "code": "9100HLDG", "NPTG": "N0075002", "ATCO": "180", "CRS_code": "HDG" }, "geometry": { "type": "Point", "coordinates": [ -2.23666734018, 53.369415690789999 ] } },
{ "type": "Feature", "properties": { "Name": "Hildenborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hildenborough Rail Station", "TIPLOC": "HLDNBRO", "CRS": "HLB", "StopAreaCode": "910GHLDNBRO", "AdministrativeAreaRef": "110", "code": "9100HLDNBRO", "NPTG": "E0047346", "ATCO": "240", "CRS_code": "HLB" }, "geometry": { "type": "Point", "coordinates": [ 0.22758998859, 51.214486155800003 ] } },
{ "type": "Feature", "properties": { "Name": "Hillfoot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hillfoot Rail Station", "TIPLOC": "HLFT", "CRS": "HLF", "StopAreaCode": "910GHLFT", "AdministrativeAreaRef": "110", "code": "9100HLFT", "NPTG": "N0078782", "ATCO": "611", "CRS_code": "HLF" }, "geometry": { "type": "Point", "coordinates": [ -4.3202741542, 55.920092479650002 ] } },
{ "type": "Feature", "properties": { "Name": "Halifax Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Halifax Rail Station", "TIPLOC": "HLFX", "CRS": "HFX", "StopAreaCode": "910GHLFX", "AdministrativeAreaRef": "110", "code": "9100HLFX", "NPTG": "E0032788", "ATCO": "450", "CRS_code": "HFX" }, "geometry": { "type": "Point", "coordinates": [ -1.8535747171, 53.720960685629997 ] } },
{ "type": "Feature", "properties": { "Name": "Hall Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hall Green Rail Station", "TIPLOC": "HLGN", "CRS": "HLG", "StopAreaCode": "910GHLGN", "AdministrativeAreaRef": "110", "code": "9100HLGN", "NPTG": "E0031606", "ATCO": "430", "CRS_code": "HLG" }, "geometry": { "type": "Point", "coordinates": [ -1.8456508538, 52.436909353890002 ] } },
{ "type": "Feature", "properties": { "Name": "Holmwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Holmwood Rail Station", "TIPLOC": "HLMW", "CRS": "HLM", "StopAreaCode": "910GHLMW", "AdministrativeAreaRef": "110", "code": "9100HLMW", "NPTG": "E0051784", "ATCO": "400", "CRS_code": "HLM" }, "geometry": { "type": "Point", "coordinates": [ -0.32080891054, 51.181195715480001 ] } },
{ "type": "Feature", "properties": { "Name": "Hillington East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hillington East Rail Station", "TIPLOC": "HLNGTNE", "CRS": "HLE", "StopAreaCode": "910GHLNGTNE", "AdministrativeAreaRef": "110", "code": "9100HLNGTNE", "NPTG": "N0068111", "ATCO": "614", "CRS_code": "HLE" }, "geometry": { "type": "Point", "coordinates": [ -4.35501023499, 55.854182503110003 ] } },
{ "type": "Feature", "properties": { "Name": "Hillington West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hillington West Rail Station", "TIPLOC": "HLNGTNW", "CRS": "HLW", "StopAreaCode": "910GHLNGTNW", "AdministrativeAreaRef": "110", "code": "9100HLNGTNW", "NPTG": "N0068111", "ATCO": "614", "CRS_code": "HLW" }, "geometry": { "type": "Point", "coordinates": [ -4.37158000999, 55.856021176230001 ] } },
{ "type": "Feature", "properties": { "Name": "Helensburgh Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Helensburgh Central Rail Station", "TIPLOC": "HLNSBRC", "CRS": "HLC", "StopAreaCode": "910GHLNSBRC", "AdministrativeAreaRef": "110", "code": "9100HLNSBRC", "NPTG": "ES001745", "ATCO": "607", "CRS_code": "HLC" }, "geometry": { "type": "Point", "coordinates": [ -4.73275781695, 56.004208130889999 ] } },
{ "type": "Feature", "properties": { "Name": "Helensburgh Upper Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Helensburgh Upper Rail Station", "TIPLOC": "HLNSBRU", "CRS": "HLU", "StopAreaCode": "910GHLNSBRU", "AdministrativeAreaRef": "110", "code": "9100HLNSBRU", "NPTG": "ES001745", "ATCO": "607", "CRS_code": "HLU" }, "geometry": { "type": "Point", "coordinates": [ -4.72980401262, 56.012363236970003 ] } },
{ "type": "Feature", "properties": { "Name": "Haltwhistle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haltwhistle Rail Station", "TIPLOC": "HLTWHST", "CRS": "HWH", "StopAreaCode": "910GHLTWHST", "AdministrativeAreaRef": "110", "code": "9100HLTWHST", "NPTG": "E0049981", "ATCO": "310", "CRS_code": "HWH" }, "geometry": { "type": "Point", "coordinates": [ -2.46356497181, 54.967849096560002 ] } },
{ "type": "Feature", "properties": { "Name": "Holyhead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Holyhead Rail Station", "TIPLOC": "HLYH", "CRS": "HHD", "StopAreaCode": "910GHLYH", "AdministrativeAreaRef": "110", "code": "9100HLYH", "NPTG": "E0054333", "ATCO": "541", "CRS_code": "HHD" }, "geometry": { "type": "Point", "coordinates": [ -4.63100242778, 53.307683848830003 ] } },
{ "type": "Feature", "properties": { "Name": "Hamble Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hamble Rail Station", "TIPLOC": "HMBLE", "CRS": "HME", "StopAreaCode": "910GHMBLE", "AdministrativeAreaRef": "110", "code": "9100HMBLE", "NPTG": "E0046789", "ATCO": "190", "CRS_code": "HME" }, "geometry": { "type": "Point", "coordinates": [ -1.32916202627, 50.871374614639997 ] } },
{ "type": "Feature", "properties": { "Name": "Hampden Park (Sussex) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hampden Park (Sussex) Rail Station", "TIPLOC": "HMPDNPK", "CRS": "HMD", "StopAreaCode": "910GHMPDNPK", "AdministrativeAreaRef": "110", "code": "9100HMPDNPK", "NPTG": "E0010502", "ATCO": "140", "CRS_code": "HMD" }, "geometry": { "type": "Point", "coordinates": [ 0.2793558809, 50.796405960160001 ] } },
{ "type": "Feature", "properties": { "Name": "Humphrey Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Humphrey Park Rail Station", "TIPLOC": "HMPHRYP", "CRS": "HUP", "StopAreaCode": "910GHMPHRYP", "AdministrativeAreaRef": "110", "code": "9100HMPHRYP", "NPTG": "N0075023", "ATCO": "180", "CRS_code": "HUP" }, "geometry": { "type": "Point", "coordinates": [ -2.32753770543, 53.452228286839997 ] } },
{ "type": "Feature", "properties": { "Name": "Hampstead Heath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hampstead Heath Rail Station", "TIPLOC": "HMPSTDH", "CRS": "HDH", "StopAreaCode": "910GHMPSTDH", "AdministrativeAreaRef": "110", "code": "9100HMPSTDH", "NPTG": "E0034175", "ATCO": "490", "CRS_code": "HDH" }, "geometry": { "type": "Point", "coordinates": [ -0.16570534374, 51.555210180419998 ] } },
{ "type": "Feature", "properties": { "Name": "Hampton-in-Arden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hampton-in-Arden Rail Station", "TIPLOC": "HMPTNIA", "CRS": "HIA", "StopAreaCode": "910GHMPTNIA", "AdministrativeAreaRef": "110", "code": "9100HMPTNIA", "NPTG": "E0052812", "ATCO": "430", "CRS_code": "HIA" }, "geometry": { "type": "Point", "coordinates": [ -1.6999305593, 52.429033128500002 ] } },
{ "type": "Feature", "properties": { "Name": "Ham Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ham Street Rail Station", "TIPLOC": "HMST", "CRS": "HMT", "StopAreaCode": "910GHMST", "AdministrativeAreaRef": "110", "code": "9100HMST", "NPTG": "E0014420", "ATCO": "240", "CRS_code": "HMT" }, "geometry": { "type": "Point", "coordinates": [ 0.85450644381, 51.06837860465 ] } },
{ "type": "Feature", "properties": { "Name": "Hamworthy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hamworthy Rail Station", "TIPLOC": "HMWTHY", "CRS": "HAM", "StopAreaCode": "910GHMWTHY", "AdministrativeAreaRef": "110", "code": "9100HMWTHY", "NPTG": "N0060763", "ATCO": "128", "CRS_code": "HAM" }, "geometry": { "type": "Point", "coordinates": [ -2.01935696282, 50.725191846759998 ] } },
{ "type": "Feature", "properties": { "Name": "Hinchley Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hinchley Wood Rail Station", "TIPLOC": "HNCHLYW", "CRS": "HYW", "StopAreaCode": "910GHNCHLYW", "AdministrativeAreaRef": "110", "code": "9100HNCHLYW", "NPTG": "E0025296", "ATCO": "400", "CRS_code": "HYW" }, "geometry": { "type": "Point", "coordinates": [ -0.34052446259, 51.374998273279999 ] } },
{ "type": "Feature", "properties": { "Name": "Handforth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Handforth Rail Station", "TIPLOC": "HNDFRTH", "CRS": "HTH", "StopAreaCode": "910GHNDFRTH", "AdministrativeAreaRef": "110", "code": "9100HNDFRTH", "NPTG": "E0001936", "ATCO": "060", "CRS_code": "HTH" }, "geometry": { "type": "Point", "coordinates": [ -2.21363329446, 53.346493215019997 ] } },
{ "type": "Feature", "properties": { "Name": "The Hawthorns Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "The Hawthorns Rail Station", "TIPLOC": "HNDSHWT", "CRS": "THW", "StopAreaCode": "910GHNDSHWT", "AdministrativeAreaRef": "110", "code": "9100HNDSHWT", "NPTG": "E0057928", "ATCO": "430", "CRS_code": "THW" }, "geometry": { "type": "Point", "coordinates": [ -1.96400884667, 52.505373063729998 ] } },
{ "type": "Feature", "properties": { "Name": "Harrington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harrington Rail Station", "TIPLOC": "HNGT", "CRS": "HRR", "StopAreaCode": "910GHNGT", "AdministrativeAreaRef": "110", "code": "9100HNGT", "NPTG": "E0004924", "ATCO": "090", "CRS_code": "HRR" }, "geometry": { "type": "Point", "coordinates": [ -3.56551465728, 54.613484497450003 ] } },
{ "type": "Feature", "properties": { "Name": "Henley-on-Thames Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Henley-on-Thames Rail Station", "TIPLOC": "HNLYOT", "CRS": "HOT", "StopAreaCode": "910GHNLYOT", "AdministrativeAreaRef": "110", "code": "9100HNLYOT", "NPTG": "E0050365", "ATCO": "340", "CRS_code": "HOT" }, "geometry": { "type": "Point", "coordinates": [ -0.90021215312, 51.53418009552 ] } },
{ "type": "Feature", "properties": { "Name": "Huntly Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Huntly Rail Station", "TIPLOC": "HNTL", "CRS": "HNT", "StopAreaCode": "910GHNTL", "AdministrativeAreaRef": "110", "code": "9100HNTL", "NPTG": "ES001807", "ATCO": "630", "CRS_code": "HNT" }, "geometry": { "type": "Point", "coordinates": [ -2.77574000591, 57.444488304369997 ] } },
{ "type": "Feature", "properties": { "Name": "Huntingdon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Huntingdon Rail Station", "TIPLOC": "HNTNGDN", "CRS": "HUN", "StopAreaCode": "910GHNTNGDN", "AdministrativeAreaRef": "110", "code": "9100HNTNGDN", "NPTG": "E0043756", "ATCO": "050", "CRS_code": "HUN" }, "geometry": { "type": "Point", "coordinates": [ -0.19206797895, 52.328648953920002 ] } },
{ "type": "Feature", "properties": { "Name": "Hockley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hockley Rail Station", "TIPLOC": "HOCKLEY", "CRS": "HOC", "StopAreaCode": "910GHOCKLEY", "AdministrativeAreaRef": "110", "code": "9100HOCKLEY", "NPTG": "E0057396", "ATCO": "150", "CRS_code": "HOC" }, "geometry": { "type": "Point", "coordinates": [ 0.65900119885, 51.60355622614 ] } },
{ "type": "Feature", "properties": { "Name": "Hollinwood Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Hollinwood Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GHOLINWD", "AdministrativeAreaRef": "110", "code": "9100HOLINWD", "NPTG": "E0028839", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.14668183465, 53.52012668791 ] } },
{ "type": "Feature", "properties": { "Name": "Holton Heath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Holton Heath Rail Station", "TIPLOC": "HOLTONH", "CRS": "HOL", "StopAreaCode": "910GHOLTONH", "AdministrativeAreaRef": "110", "code": "9100HOLTONH", "NPTG": "E0009485", "ATCO": "120", "CRS_code": "HOL" }, "geometry": { "type": "Point", "coordinates": [ -2.07784478, 50.711408542409998 ] } },
{ "type": "Feature", "properties": { "Name": "Holytown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Holytown Rail Station", "TIPLOC": "HOLYTWN", "CRS": "HLY", "StopAreaCode": "910GHOLYTWN", "AdministrativeAreaRef": "110", "code": "9100HOLYTWN", "NPTG": "ES001782", "ATCO": "616", "CRS_code": "HLY" }, "geometry": { "type": "Point", "coordinates": [ -3.97392891261, 55.812898025780001 ] } },
{ "type": "Feature", "properties": { "Name": "Homerton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Homerton Rail Station", "TIPLOC": "HOMRTON", "CRS": "HMN", "StopAreaCode": "910GHOMRTON", "AdministrativeAreaRef": "110", "code": "9100HOMRTON", "NPTG": "E0034352", "ATCO": "490", "CRS_code": "HMN" }, "geometry": { "type": "Point", "coordinates": [ -0.04235975316, 51.547012063099999 ] } },
{ "type": "Feature", "properties": { "Name": "Honiton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Honiton Rail Station", "TIPLOC": "HONITON", "CRS": "HON", "StopAreaCode": "910GHONITON", "AdministrativeAreaRef": "110", "code": "9100HONITON", "NPTG": "E0045249", "ATCO": "110", "CRS_code": "HON" }, "geometry": { "type": "Point", "coordinates": [ -3.18671784748, 50.796581143559997 ] } },
{ "type": "Feature", "properties": { "Name": "Honley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Honley Rail Station", "TIPLOC": "HONLEY", "CRS": "HOY", "StopAreaCode": "910GHONLEY", "AdministrativeAreaRef": "110", "code": "9100HONLEY", "NPTG": "E0032907", "ATCO": "450", "CRS_code": "HOY" }, "geometry": { "type": "Point", "coordinates": [ -1.78096529913, 53.608228284059997 ] } },
{ "type": "Feature", "properties": { "Name": "Honor Oak Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Honor Oak Park Rail Station", "TIPLOC": "HONROPK", "CRS": "HPA", "StopAreaCode": "910GHONROPK", "AdministrativeAreaRef": "110", "code": "9100HONROPK", "NPTG": "E0034666", "ATCO": "490", "CRS_code": "HPA" }, "geometry": { "type": "Point", "coordinates": [ -0.04550537185, 51.449988985200001 ] } },
{ "type": "Feature", "properties": { "Name": "Honeybourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Honeybourne Rail Station", "TIPLOC": "HONYBRN", "CRS": "HYB", "StopAreaCode": "910GHONYBRN", "AdministrativeAreaRef": "110", "code": "9100HONYBRN", "NPTG": "E0052613", "ATCO": "200", "CRS_code": "HYB" }, "geometry": { "type": "Point", "coordinates": [ -1.83374270382, 52.101600387609999 ] } },
{ "type": "Feature", "properties": { "Name": "Hook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hook Rail Station", "TIPLOC": "HOOK", "CRS": "HOK", "StopAreaCode": "910GHOOK", "AdministrativeAreaRef": "110", "code": "9100HOOK", "NPTG": "E0046802", "ATCO": "190", "CRS_code": "HOK" }, "geometry": { "type": "Point", "coordinates": [ -0.96163570677, 51.279998237690002 ] } },
{ "type": "Feature", "properties": { "Name": "Hooton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hooton Rail Station", "TIPLOC": "HOOTON", "CRS": "HOO", "StopAreaCode": "910GHOOTON", "AdministrativeAreaRef": "110", "code": "9100HOOTON", "NPTG": "E0001811", "ATCO": "061", "CRS_code": "HOO" }, "geometry": { "type": "Point", "coordinates": [ -2.97700928654, 53.297198826100001 ] } },
{ "type": "Feature", "properties": { "Name": "Hope (Flintshire) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hope (Flintshire) Rail Station", "TIPLOC": "HOPC", "CRS": "HPE", "StopAreaCode": "910GHOPC", "AdministrativeAreaRef": "110", "code": "9100HOPC", "NPTG": "E0054240", "ATCO": "512", "CRS_code": "HPE" }, "geometry": { "type": "Point", "coordinates": [ -3.03687579175, 53.11735745715 ] } },
{ "type": "Feature", "properties": { "Name": "Hope (Derbyshire) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hope (Derbyshire) Rail Station", "TIPLOC": "HOPD", "CRS": "HOP", "StopAreaCode": "910GHOPD", "AdministrativeAreaRef": "110", "code": "9100HOPD", "NPTG": "E0045133", "ATCO": "100", "CRS_code": "HOP" }, "geometry": { "type": "Point", "coordinates": [ -1.72988671661, 53.34611015646 ] } },
{ "type": "Feature", "properties": { "Name": "Hopton Heath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hopton Heath Rail Station", "TIPLOC": "HOPTONH", "CRS": "HPT", "StopAreaCode": "910GHOPTONH", "AdministrativeAreaRef": "110", "code": "9100HOPTONH", "NPTG": "E0021974", "ATCO": "350", "CRS_code": "HPT" }, "geometry": { "type": "Point", "coordinates": [ -2.91205961195, 52.391415850629997 ] } },
{ "type": "Feature", "properties": { "Name": "Horley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Horley Rail Station", "TIPLOC": "HORLEY", "CRS": "HOR", "StopAreaCode": "910GHORLEY", "AdministrativeAreaRef": "110", "code": "9100HORLEY", "NPTG": "E0051790", "ATCO": "400", "CRS_code": "HOR" }, "geometry": { "type": "Point", "coordinates": [ -0.16105350449, 51.168775317719998 ] } },
{ "type": "Feature", "properties": { "Name": "Horsham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Horsham Rail Station", "TIPLOC": "HORSHAM", "CRS": "HRH", "StopAreaCode": "910GHORSHAM", "AdministrativeAreaRef": "110", "code": "9100HORSHAM", "NPTG": "E0056833", "ATCO": "440", "CRS_code": "HRH" }, "geometry": { "type": "Point", "coordinates": [ -0.31926942016, 51.06606497261 ] } },
{ "type": "Feature", "properties": { "Name": "Horwich Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Horwich Parkway Rail Station", "TIPLOC": "HORWICH", "CRS": "HWI", "StopAreaCode": "910GHORWICH", "AdministrativeAreaRef": "110", "code": "9100HORWICH", "NPTG": "E0052667", "ATCO": "180", "CRS_code": "HWI" }, "geometry": { "type": "Point", "coordinates": [ -2.53966594536, 53.578105934669999 ] } },
{ "type": "Feature", "properties": { "Name": "Hoscar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hoscar Rail Station", "TIPLOC": "HOSCAR", "CRS": "HSC", "StopAreaCode": "910GHOSCAR", "AdministrativeAreaRef": "110", "code": "9100HOSCAR", "NPTG": "E0016499", "ATCO": "250", "CRS_code": "HSC" }, "geometry": { "type": "Point", "coordinates": [ -2.80442087463, 53.597768156420003 ] } },
{ "type": "Feature", "properties": { "Name": "Hough Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hough Green Rail Station", "TIPLOC": "HOUGHGR", "CRS": "HGN", "StopAreaCode": "910GHOUGHGR", "AdministrativeAreaRef": "110", "code": "9100HOUGHGR", "NPTG": "E0037826", "ATCO": "280", "CRS_code": "HGN" }, "geometry": { "type": "Point", "coordinates": [ -2.77506593727, 53.372391358489999 ] } },
{ "type": "Feature", "properties": { "Name": "Hounslow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hounslow Rail Station", "TIPLOC": "HOUNSLW", "CRS": "HOU", "StopAreaCode": "910GHOUNSLW", "AdministrativeAreaRef": "110", "code": "9100HOUNSLW", "NPTG": "N0060455", "ATCO": "490", "CRS_code": "HOU" }, "geometry": { "type": "Point", "coordinates": [ -0.3622768775, 51.461946127300003 ] } },
{ "type": "Feature", "properties": { "Name": "Hove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hove Rail Station", "TIPLOC": "HOVE", "CRS": "HOV", "StopAreaCode": "910GHOVE", "AdministrativeAreaRef": "110", "code": "9100HOVE", "NPTG": "E0057156", "ATCO": "149", "CRS_code": "HOV" }, "geometry": { "type": "Point", "coordinates": [ -0.17068731983, 50.835216359070003 ] } },
{ "type": "Feature", "properties": { "Name": "Howden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Howden Rail Station", "TIPLOC": "HOWDEN", "CRS": "HOW", "StopAreaCode": "910GHOWDEN", "AdministrativeAreaRef": "110", "code": "9100HOWDEN", "NPTG": "E0053060", "ATCO": "220", "CRS_code": "HOW" }, "geometry": { "type": "Point", "coordinates": [ -0.86046300282, 53.764711233100002 ] } },
{ "type": "Feature", "properties": { "Name": "Howwood (Renfrewshire) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Howwood (Renfrewshire) Rail Station", "TIPLOC": "HOWOOD", "CRS": "HOZ", "StopAreaCode": "910GHOWOOD", "AdministrativeAreaRef": "110", "code": "9100HOWOOD", "NPTG": "ES001798", "ATCO": "614", "CRS_code": "HOZ" }, "geometry": { "type": "Point", "coordinates": [ -4.56305799907, 55.810564292789998 ] } },
{ "type": "Feature", "properties": { "Name": "How Wood (Herts) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "How Wood (Herts) Rail Station", "TIPLOC": "HOWWOOD", "CRS": "HWW", "StopAreaCode": "910GHOWWOOD", "AdministrativeAreaRef": "110", "code": "9100HOWWOOD", "NPTG": "E0014189", "ATCO": "210", "CRS_code": "HWW" }, "geometry": { "type": "Point", "coordinates": [ -0.34467037496, 51.717742133190001 ] } },
{ "type": "Feature", "properties": { "Name": "Hoxton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hoxton Rail Station", "TIPLOC": "HOXTON", "CRS": "HOX", "StopAreaCode": "910GHOXTON", "AdministrativeAreaRef": "110", "code": "9100HOXTON", "NPTG": "E0034353", "ATCO": "490", "CRS_code": "HOX" }, "geometry": { "type": "Point", "coordinates": [ -0.0756814943, 51.531511668969998 ] } },
{ "type": "Feature", "properties": { "Name": "Hoylake Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hoylake Rail Station", "TIPLOC": "HOYLAKE", "CRS": "HYK", "StopAreaCode": "910GHOYLAKE", "AdministrativeAreaRef": "110", "code": "9100HOYLAKE", "NPTG": "E0029751", "ATCO": "280", "CRS_code": "HYK" }, "geometry": { "type": "Point", "coordinates": [ -3.17883078784, 53.390210320119998 ] } },
{ "type": "Feature", "properties": { "Name": "Harringay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harringay Rail Station", "TIPLOC": "HRGY", "CRS": "HGY", "StopAreaCode": "910GHRGY", "AdministrativeAreaRef": "110", "code": "9100HRGY", "NPTG": "N0060451", "ATCO": "490", "CRS_code": "HGY" }, "geometry": { "type": "Point", "coordinates": [ -0.10513605789, 51.577358273960002 ] } },
{ "type": "Feature", "properties": { "Name": "Harringay Green Lanes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harringay Green Lanes Rail Station", "TIPLOC": "HRGYGL", "CRS": "HRY", "StopAreaCode": "910GHRGYGL", "AdministrativeAreaRef": "110", "code": "9100HRGYGL", "NPTG": "N0060451", "ATCO": "490", "CRS_code": "HRY" }, "geometry": { "type": "Point", "coordinates": [ -0.09814369696, 51.577182210250001 ] } },
{ "type": "Feature", "properties": { "Name": "Harlech Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harlech Rail Station", "TIPLOC": "HRLC", "CRS": "HRL", "StopAreaCode": "910GHRLC", "AdministrativeAreaRef": "110", "code": "9100HRLC", "NPTG": "E0054284", "ATCO": "540", "CRS_code": "HRL" }, "geometry": { "type": "Point", "coordinates": [ -4.10919048007, 52.861328576859997 ] } },
{ "type": "Feature", "properties": { "Name": "Harold Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harold Wood Rail Station", "TIPLOC": "HRLDWOD", "CRS": "HRO", "StopAreaCode": "910GHRLDWOD", "AdministrativeAreaRef": "110", "code": "9100HRLDWOD", "NPTG": "E0034459", "ATCO": "490", "CRS_code": "HRO" }, "geometry": { "type": "Point", "coordinates": [ 0.23312869437, 51.592766140569999 ] } },
{ "type": "Feature", "properties": { "Name": "Harlington (Beds) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harlington (Beds) Rail Station", "TIPLOC": "HRLG", "CRS": "HLN", "StopAreaCode": "910GHRLG", "AdministrativeAreaRef": "110", "code": "9100HRLG", "NPTG": "E0043891", "ATCO": "021", "CRS_code": "HLN" }, "geometry": { "type": "Point", "coordinates": [ -0.49568986202, 51.962062056699999 ] } },
{ "type": "Feature", "properties": { "Name": "Harling Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harling Road Rail Station", "TIPLOC": "HRLNGRD", "CRS": "HRD", "StopAreaCode": "910GHRLNGRD", "AdministrativeAreaRef": "110", "code": "9100HRLNGRD", "NPTG": "E0017580", "ATCO": "290", "CRS_code": "HRD" }, "geometry": { "type": "Point", "coordinates": [ 0.90914240373, 52.453689896349999 ] } },
{ "type": "Feature", "properties": { "Name": "Harlow Mill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harlow Mill Rail Station", "TIPLOC": "HRLWMIL", "CRS": "HWM", "StopAreaCode": "910GHRLWMIL", "AdministrativeAreaRef": "110", "code": "9100HRLWMIL", "NPTG": "N0076798", "ATCO": "150", "CRS_code": "HWM" }, "geometry": { "type": "Point", "coordinates": [ 0.13230764079, 51.790365460099999 ] } },
{ "type": "Feature", "properties": { "Name": "Harlow Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harlow Town Rail Station", "TIPLOC": "HRLWTWN", "CRS": "HWN", "StopAreaCode": "910GHRLWTWN", "AdministrativeAreaRef": "110", "code": "9100HRLWTWN", "NPTG": "E0055813", "ATCO": "150", "CRS_code": "HWN" }, "geometry": { "type": "Point", "coordinates": [ 0.09513188242, 51.781070340390002 ] } },
{ "type": "Feature", "properties": { "Name": "Hornbeam Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hornbeam Park Rail Station", "TIPLOC": "HRNBPK", "CRS": "HBP", "StopAreaCode": "910GHRNBPK", "AdministrativeAreaRef": "110", "code": "9100HRNBPK", "NPTG": "E0018745", "ATCO": "320", "CRS_code": "HBP" }, "geometry": { "type": "Point", "coordinates": [ -1.52682225005, 53.979868937100001 ] } },
{ "type": "Feature", "properties": { "Name": "Herne Bay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Herne Bay Rail Station", "TIPLOC": "HRNEBAY", "CRS": "HNB", "StopAreaCode": "910GHRNEBAY", "AdministrativeAreaRef": "110", "code": "9100HRNEBAY", "NPTG": "E0014591", "ATCO": "240", "CRS_code": "HNB" }, "geometry": { "type": "Point", "coordinates": [ 1.11772597522, 51.364593031429997 ] } },
{ "type": "Feature", "properties": { "Name": "Hornsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hornsey Rail Station", "TIPLOC": "HRNSY", "CRS": "HRN", "StopAreaCode": "910GHRNSY", "AdministrativeAreaRef": "110", "code": "9100HRNSY", "NPTG": "E0034404", "ATCO": "490", "CRS_code": "HRN" }, "geometry": { "type": "Point", "coordinates": [ -0.1119749843, 51.586460949349998 ] } },
{ "type": "Feature", "properties": { "Name": "Harrow & Wealdstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harrow & Wealdstone Rail Station", "TIPLOC": "HROW", "CRS": "HRW", "StopAreaCode": "910GHROW", "AdministrativeAreaRef": "110", "code": "9100HROW", "NPTG": "N0060452", "ATCO": "490", "CRS_code": "HRW" }, "geometry": { "type": "Point", "coordinates": [ -0.33457140008, 51.592168684089998 ] } },
{ "type": "Feature", "properties": { "Name": "Harrow & Wealdstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harrow & Wealdstone Rail Station", "TIPLOC": "HROWDC", "CRS": "HRW", "StopAreaCode": "910GHROWDC", "AdministrativeAreaRef": "110", "code": "9100HROWDC", "NPTG": "N0060452", "ATCO": "490", "CRS_code": "HRW" }, "geometry": { "type": "Point", "coordinates": [ -0.33457107138, 51.592177671610003 ] } },
{ "type": "Feature", "properties": { "Name": "Harpenden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harpenden Rail Station", "TIPLOC": "HRPNDN", "CRS": "HPD", "StopAreaCode": "910GHRPNDN", "AdministrativeAreaRef": "110", "code": "9100HRPNDN", "NPTG": "E0047053", "ATCO": "210", "CRS_code": "HPD" }, "geometry": { "type": "Point", "coordinates": [ -0.35148045101, 51.814644891329998 ] } },
{ "type": "Feature", "properties": { "Name": "Horsley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Horsley Rail Station", "TIPLOC": "HRSLEY", "CRS": "HSY", "StopAreaCode": "910GHRSLEY", "AdministrativeAreaRef": "110", "code": "9100HRSLEY", "NPTG": "E0051758", "ATCO": "400", "CRS_code": "HSY" }, "geometry": { "type": "Point", "coordinates": [ -0.43540859645, 51.279346979570001 ] } },
{ "type": "Feature", "properties": { "Name": "Harrietsham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harrietsham Rail Station", "TIPLOC": "HRSM", "CRS": "HRM", "StopAreaCode": "910GHRSM", "AdministrativeAreaRef": "110", "code": "9100HRSM", "NPTG": "E0047207", "ATCO": "240", "CRS_code": "HRM" }, "geometry": { "type": "Point", "coordinates": [ 0.67239944635, 51.244832868160003 ] } },
{ "type": "Feature", "properties": { "Name": "Hurst Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hurst Green Rail Station", "TIPLOC": "HRSTGRN", "CRS": "HUR", "StopAreaCode": "910GHRSTGRN", "AdministrativeAreaRef": "110", "code": "9100HRSTGRN", "NPTG": "E0025713", "ATCO": "400", "CRS_code": "HUR" }, "geometry": { "type": "Point", "coordinates": [ 0.00393940851, 51.244430677330001 ] } },
{ "type": "Feature", "properties": { "Name": "Hartlepool Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hartlepool Rail Station", "TIPLOC": "HRTLEPL", "CRS": "HPL", "StopAreaCode": "910GHRTLEPL", "AdministrativeAreaRef": "110", "code": "9100HRTLEPL", "NPTG": "E0054977", "ATCO": "075", "CRS_code": "HPL" }, "geometry": { "type": "Point", "coordinates": [ -1.20731618876, 54.68675549073 ] } },
{ "type": "Feature", "properties": { "Name": "Hartwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hartwood Rail Station", "TIPLOC": "HRTW", "CRS": "HTW", "StopAreaCode": "910GHRTW", "AdministrativeAreaRef": "110", "code": "9100HRTW", "NPTG": "ES001726", "ATCO": "616", "CRS_code": "HTW" }, "geometry": { "type": "Point", "coordinates": [ -3.83932187478, 55.811480690270002 ] } },
{ "type": "Feature", "properties": { "Name": "Horsforth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Horsforth Rail Station", "TIPLOC": "HSFT", "CRS": "HRS", "StopAreaCode": "910GHSFT", "AdministrativeAreaRef": "110", "code": "9100HSFT", "NPTG": "E0032918", "ATCO": "450", "CRS_code": "HRS" }, "geometry": { "type": "Point", "coordinates": [ -1.63022836562, 53.847705708299998 ] } },
{ "type": "Feature", "properties": { "Name": "Hatch End Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hatch End Rail Station", "TIPLOC": "HTCHEND", "CRS": "HTE", "StopAreaCode": "910GHTCHEND", "AdministrativeAreaRef": "110", "code": "9100HTCHEND", "NPTG": "N0065063", "ATCO": "490", "CRS_code": "HTE" }, "geometry": { "type": "Point", "coordinates": [ -0.36860136432, 51.609416931200002 ] } },
{ "type": "Feature", "properties": { "Name": "Heaton Chapel Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heaton Chapel Rail Station", "TIPLOC": "HTCP", "CRS": "HTC", "StopAreaCode": "910GHTCP", "AdministrativeAreaRef": "110", "code": "9100HTCP", "NPTG": "E0028777", "ATCO": "180", "CRS_code": "HTC" }, "geometry": { "type": "Point", "coordinates": [ -2.17904150666, 53.425559906479997 ] } },
{ "type": "Feature", "properties": { "Name": "Hatfield & Stainforth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hatfield & Stainforth Rail Station", "TIPLOC": "HTFLASF", "CRS": "HFS", "StopAreaCode": "910GHTFLASF", "AdministrativeAreaRef": "110", "code": "9100HTFLASF", "NPTG": "E0052754", "ATCO": "370", "CRS_code": "HFS" }, "geometry": { "type": "Point", "coordinates": [ -1.02337723201, 53.58871533488 ] } },
{ "type": "Feature", "properties": { "Name": "Hither Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hither Green Rail Station", "TIPLOC": "HTHRGRN", "CRS": "HGR", "StopAreaCode": "910GHTHRGRN", "AdministrativeAreaRef": "110", "code": "9100HTHRGRN", "NPTG": "E0034665", "ATCO": "490", "CRS_code": "HGR" }, "geometry": { "type": "Point", "coordinates": [ -0.00094416824, 51.45202527723 ] } },
{ "type": "Feature", "properties": { "Name": "Hutton Cranswick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hutton Cranswick Rail Station", "TIPLOC": "HTNCRNS", "CRS": "HUT", "StopAreaCode": "910GHTNCRNS", "AdministrativeAreaRef": "110", "code": "9100HTNCRNS", "NPTG": "E0053063", "ATCO": "220", "CRS_code": "HUT" }, "geometry": { "type": "Point", "coordinates": [ -0.433861512, 53.955855018279998 ] } },
{ "type": "Feature", "properties": { "Name": "Horton-in-Ribblesdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Horton-in-Ribblesdale Rail Station", "TIPLOC": "HTNRIBL", "CRS": "HIR", "StopAreaCode": "910GHTNRIBL", "AdministrativeAreaRef": "110", "code": "9100HTNRIBL", "NPTG": "E0048907", "ATCO": "320", "CRS_code": "HIR" }, "geometry": { "type": "Point", "coordinates": [ -2.30203267063, 54.149385938409999 ] } },
{ "type": "Feature", "properties": { "Name": "Heathrow Terminals 2 & 3 Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heathrow Terminals 1-3 Rail Station", "TIPLOC": "HTRWAPT", "CRS": "LHR", "StopAreaCode": "910GHTRWAPT", "AdministrativeAreaRef": "110", "code": "9100HTRWAPT", "NPTG": "N0077675", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.45410155064, 51.471852247439998 ] } },
{ "type": "Feature", "properties": { "Name": "Heathrow T1 Rail-Air Link", "Status": "inactive", "Type": "RLY", "Station_Name": "Heathrow T1 Rail-Air Link", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100HTRWTM1", "NPTG": "E0034495", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.45142337783, 51.473129777430003 ] } },
{ "type": "Feature", "properties": { "Name": "Heathrow T2 Rail-Air Link", "Status": "inactive", "Type": "RLY", "Station_Name": "Heathrow T2 Rail-Air Link", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100HTRWTM2", "NPTG": "E0034495", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.45184932888, 51.470329823039997 ] } },
{ "type": "Feature", "properties": { "Name": "Heathrow T3 Rail-Air Link", "Status": "inactive", "Type": "RLY", "Station_Name": "Heathrow T3 Rail-Air Link", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100HTRWTM3", "NPTG": "E0034495", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.45764881261, 51.472123762940001 ] } },
{ "type": "Feature", "properties": { "Name": "Heathrow Terminal 4 Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heathrow Terminal 4 Rail Station", "TIPLOC": "HTRWTM4", "CRS": "HAF", "StopAreaCode": "910GHTRWTM4", "AdministrativeAreaRef": "110", "code": "9100HTRWTM4", "NPTG": "N0077676", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.44546339628, 51.458267655119997 ] } },
{ "type": "Feature", "properties": { "Name": "Heathrow Terminal 5 Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Heathrow Terminal 5 Rail Station", "TIPLOC": "HTRWTM5", "CRS": "HWV", "StopAreaCode": "910GHTRWTM5", "AdministrativeAreaRef": "110", "code": "9100HTRWTM5", "NPTG": "N0078310", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.49058896653, 51.470052550369999 ] } },
{ "type": "Feature", "properties": { "Name": "Hucknall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hucknall Rail Station", "TIPLOC": "HUCKNAL", "CRS": "HKN", "StopAreaCode": "910GHUCKNAL", "AdministrativeAreaRef": "110", "code": "9100HUCKNAL", "NPTG": "E0057592", "ATCO": "330", "CRS_code": "HKN" }, "geometry": { "type": "Point", "coordinates": [ -1.19581146607, 53.038284059250003 ] } },
{ "type": "Feature", "properties": { "Name": "Hull Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hull Rail Station", "TIPLOC": "HULL", "CRS": "HUL", "StopAreaCode": "910GHULL", "AdministrativeAreaRef": "110", "code": "9100HULL", "NPTG": "E0055009", "ATCO": "229", "CRS_code": "HUL" }, "geometry": { "type": "Point", "coordinates": [ -0.34567995259, 53.744150394259997 ] } },
{ "type": "Feature", "properties": { "Name": "Huncoat Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Huncoat Rail Station", "TIPLOC": "HUNCOAT", "CRS": "HCT", "StopAreaCode": "910GHUNCOAT", "AdministrativeAreaRef": "110", "code": "9100HUNCOAT", "NPTG": "E0015904", "ATCO": "250", "CRS_code": "HCT" }, "geometry": { "type": "Point", "coordinates": [ -2.34756133087, 53.771777094009998 ] } },
{ "type": "Feature", "properties": { "Name": "Hungerford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hungerford Rail Station", "TIPLOC": "HUNGRFD", "CRS": "HGD", "StopAreaCode": "910GHUNGRFD", "AdministrativeAreaRef": "110", "code": "9100HUNGRFD", "NPTG": "E0055204", "ATCO": "030", "CRS_code": "HGD" }, "geometry": { "type": "Point", "coordinates": [ -1.51228697113, 51.414910261469998 ] } },
{ "type": "Feature", "properties": { "Name": "Hunmanby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hunmanby Rail Station", "TIPLOC": "HUNMNBY", "CRS": "HUB", "StopAreaCode": "910GHUNMNBY", "AdministrativeAreaRef": "110", "code": "9100HUNMNBY", "NPTG": "E0049495", "ATCO": "320", "CRS_code": "HUB" }, "geometry": { "type": "Point", "coordinates": [ -0.31455674165, 54.17392577175 ] } },
{ "type": "Feature", "properties": { "Name": "Hunts Cross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hunts Cross Rail Station", "TIPLOC": "HUNTSX", "CRS": "HNX", "StopAreaCode": "910GHUNTSX", "AdministrativeAreaRef": "110", "code": "9100HUNTSX", "NPTG": "E0029752", "ATCO": "280", "CRS_code": "HNX" }, "geometry": { "type": "Point", "coordinates": [ -2.85586095655, 53.360710991269997 ] } },
{ "type": "Feature", "properties": { "Name": "Huyton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Huyton Rail Station", "TIPLOC": "HUYTON", "CRS": "HUY", "StopAreaCode": "910GHUYTON", "AdministrativeAreaRef": "110", "code": "9100HUYTON", "NPTG": "E0029753", "ATCO": "280", "CRS_code": "HUY" }, "geometry": { "type": "Point", "coordinates": [ -2.84298882748, 53.409684041769999 ] } },
{ "type": "Feature", "properties": { "Name": "Hawkhead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hawkhead Rail Station", "TIPLOC": "HWKHEAD", "CRS": "HKH", "StopAreaCode": "910GHWKHEAD", "AdministrativeAreaRef": "110", "code": "9100HWKHEAD", "NPTG": "N0078755", "ATCO": "614", "CRS_code": "HKH" }, "geometry": { "type": "Point", "coordinates": [ -4.39885086094, 55.842190363759997 ] } },
{ "type": "Feature", "properties": { "Name": "High Wycombe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "High Wycombe Rail Station", "TIPLOC": "HWYCOMB", "CRS": "HWY", "StopAreaCode": "910GHWYCOMB", "AdministrativeAreaRef": "110", "code": "9100HWYCOMB", "NPTG": "E0000708", "ATCO": "040", "CRS_code": "HWY" }, "geometry": { "type": "Point", "coordinates": [ -0.74540981188, 51.629585971749997 ] } },
{ "type": "Feature", "properties": { "Name": "Haydon Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haydon Bridge Rail Station", "TIPLOC": "HYDB", "CRS": "HDB", "StopAreaCode": "910GHYDB", "AdministrativeAreaRef": "110", "code": "9100HYDB", "NPTG": "E0020143", "ATCO": "310", "CRS_code": "HDB" }, "geometry": { "type": "Point", "coordinates": [ -2.24758769145, 54.975175717699997 ] } },
{ "type": "Feature", "properties": { "Name": "Hyde Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hyde Central Rail Station", "TIPLOC": "HYDEC", "CRS": "HYC", "StopAreaCode": "910GHYDEC", "AdministrativeAreaRef": "110", "code": "9100HYDEC", "NPTG": "E0028879", "ATCO": "180", "CRS_code": "HYC" }, "geometry": { "type": "Point", "coordinates": [ -2.08525012936, 53.451883331659999 ] } },
{ "type": "Feature", "properties": { "Name": "Hyde North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hyde North Rail Station", "TIPLOC": "HYDEN", "CRS": "HYT", "StopAreaCode": "910GHYDEN", "AdministrativeAreaRef": "110", "code": "9100HYDEN", "NPTG": "E0028879", "ATCO": "180", "CRS_code": "HYT" }, "geometry": { "type": "Point", "coordinates": [ -2.0854568353, 53.464799616299999 ] } },
{ "type": "Feature", "properties": { "Name": "Haydons Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haydons Road Rail Station", "TIPLOC": "HYDNSRD", "CRS": "HYR", "StopAreaCode": "910GHYDNSRD", "AdministrativeAreaRef": "110", "code": "9100HYDNSRD", "NPTG": "E0034698", "ATCO": "490", "CRS_code": "HYR" }, "geometry": { "type": "Point", "coordinates": [ -0.1888146313, 51.425447951190002 ] } },
{ "type": "Feature", "properties": { "Name": "Hykeham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hykeham Rail Station", "TIPLOC": "HYKEHAM", "CRS": "HKM", "StopAreaCode": "910GHYKEHAM", "AdministrativeAreaRef": "110", "code": "9100HYKEHAM", "NPTG": "E0048060", "ATCO": "270", "CRS_code": "HKM" }, "geometry": { "type": "Point", "coordinates": [ -0.6001963956, 53.195005044349998 ] } },
{ "type": "Feature", "properties": { "Name": "Hyndland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Hyndland Rail Station", "TIPLOC": "HYNDLND", "CRS": "HYN", "StopAreaCode": "910GHYNDLND", "AdministrativeAreaRef": "110", "code": "9100HYNDLND", "NPTG": "N0076061", "ATCO": "609", "CRS_code": "HYN" }, "geometry": { "type": "Point", "coordinates": [ -4.3146684253, 55.879754047980001 ] } },
{ "type": "Feature", "properties": { "Name": "Haywards Heath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Haywards Heath Rail Station", "TIPLOC": "HYWRDSH", "CRS": "HHE", "StopAreaCode": "910GHYWRDSH", "AdministrativeAreaRef": "110", "code": "9100HYWRDSH", "NPTG": "E0052196", "ATCO": "440", "CRS_code": "HHE" }, "geometry": { "type": "Point", "coordinates": [ -0.1050777016, 51.00568168993 ] } },
{ "type": "Feature", "properties": { "Name": "IBM (Greenock) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "IBM (Greenock) Rail Station", "TIPLOC": "IBMM", "CRS": "IBM", "StopAreaCode": "910GIBMM", "AdministrativeAreaRef": "110", "code": "9100IBMM", "NPTG": "ES001670", "ATCO": "613", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.82723999939, 55.92944701922 ] } },
{ "type": "Feature", "properties": { "Name": "Ifield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ifield Rail Station", "TIPLOC": "IFIELD", "CRS": "IFI", "StopAreaCode": "910GIFIELD", "AdministrativeAreaRef": "110", "code": "9100IFIELD", "NPTG": "N0077377", "ATCO": "440", "CRS_code": "IFI" }, "geometry": { "type": "Point", "coordinates": [ -0.21477207746, 51.115622899 ] } },
{ "type": "Feature", "properties": { "Name": "Newbury Park Station", "Status": "active", "Type": "RLY", "Station_Name": "Newbury Park Station", "TIPLOC": "ILFENBP", "CRS": "NRC", "StopAreaCode": "910GILFENBP", "AdministrativeAreaRef": "110", "code": "9100ILFENBP", "NPTG": "E0034738", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.08968398069, 51.575039733280001 ] } },
{ "type": "Feature", "properties": { "Name": "Ilford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ilford Rail Station", "TIPLOC": "ILFORD", "CRS": "IFD", "StopAreaCode": "910GILFORD", "AdministrativeAreaRef": "110", "code": "9100ILFORD", "NPTG": "E0034730", "ATCO": "490", "CRS_code": "IFD" }, "geometry": { "type": "Point", "coordinates": [ 0.0696795341, 51.559117529079998 ] } },
{ "type": "Feature", "properties": { "Name": "Ilkeston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ilkeston Rail Station", "TIPLOC": "ILKES", "CRS": "ILN", "StopAreaCode": "910GILKES", "AdministrativeAreaRef": "110", "code": "9100ILKES", "NPTG": "E0006996", "ATCO": "330", "CRS_code": "ILN" }, "geometry": { "type": "Point", "coordinates": [ -1.29493178269, 52.979591982709998 ] } },
{ "type": "Feature", "properties": { "Name": "Ilkley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ilkley Rail Station", "TIPLOC": "ILKLEY", "CRS": "ILK", "StopAreaCode": "910GILKLEY", "AdministrativeAreaRef": "110", "code": "9100ILKLEY", "NPTG": "E0052820", "ATCO": "450", "CRS_code": "ILK" }, "geometry": { "type": "Point", "coordinates": [ -1.82202748953, 53.92476430955 ] } },
{ "type": "Feature", "properties": { "Name": "Ince (Manchester) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ince (Manchester) Rail Station", "TIPLOC": "INCE", "CRS": "INC", "StopAreaCode": "910GINCE", "AdministrativeAreaRef": "110", "code": "9100INCE", "NPTG": "E0028883", "ATCO": "180", "CRS_code": "INC" }, "geometry": { "type": "Point", "coordinates": [ -2.61151966238, 53.538911930449999 ] } },
{ "type": "Feature", "properties": { "Name": "Ince & Elton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ince & Elton Rail Station", "TIPLOC": "INEL", "CRS": "INE", "StopAreaCode": "910GINEL", "AdministrativeAreaRef": "110", "code": "9100INEL", "NPTG": "E0044349", "ATCO": "061", "CRS_code": "INE" }, "geometry": { "type": "Point", "coordinates": [ -2.81652230618, 53.276607494549999 ] } },
{ "type": "Feature", "properties": { "Name": "Ingatestone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ingatestone Rail Station", "TIPLOC": "INGTSTN", "CRS": "INT", "StopAreaCode": "910GINGTSTN", "AdministrativeAreaRef": "110", "code": "9100INGTSTN", "NPTG": "E0055783", "ATCO": "150", "CRS_code": "INT" }, "geometry": { "type": "Point", "coordinates": [ 0.38424682605, 51.667043079770004 ] } },
{ "type": "Feature", "properties": { "Name": "Insch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Insch Rail Station", "TIPLOC": "INSCH", "CRS": "INS", "StopAreaCode": "910GINSCH", "AdministrativeAreaRef": "110", "code": "9100INSCH", "NPTG": "ES001847", "ATCO": "630", "CRS_code": "INS" }, "geometry": { "type": "Point", "coordinates": [ -2.6171121957, 57.337498528010002 ] } },
{ "type": "Feature", "properties": { "Name": "Inverkip Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Inverkip Rail Station", "TIPLOC": "INVERKP", "CRS": "INP", "StopAreaCode": "910GINVERKP", "AdministrativeAreaRef": "110", "code": "9100INVERKP", "NPTG": "ES001874", "ATCO": "613", "CRS_code": "INP" }, "geometry": { "type": "Point", "coordinates": [ -4.8725861441, 55.906104432260001 ] } },
{ "type": "Feature", "properties": { "Name": "Invergowrie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Invergowrie Rail Station", "TIPLOC": "INVGWRE", "CRS": "ING", "StopAreaCode": "910GINVGWRE", "AdministrativeAreaRef": "110", "code": "9100INVGWRE", "NPTG": "N0068281", "ATCO": "648", "CRS_code": "ING" }, "geometry": { "type": "Point", "coordinates": [ -3.05739771447, 56.456473304829998 ] } },
{ "type": "Feature", "properties": { "Name": "Invershin Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Invershin Rail Station", "TIPLOC": "INVRSHN", "CRS": "INH", "StopAreaCode": "910GINVRSHN", "AdministrativeAreaRef": "110", "code": "9100INVRSHN", "NPTG": "N0067877", "ATCO": "670", "CRS_code": "INH" }, "geometry": { "type": "Point", "coordinates": [ -4.39947783533, 57.924869088340003 ] } },
{ "type": "Feature", "properties": { "Name": "Inverurie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Inverurie Rail Station", "TIPLOC": "INVURIE", "CRS": "INR", "StopAreaCode": "910GINVURIE", "AdministrativeAreaRef": "110", "code": "9100INVURIE", "NPTG": "ES001883", "ATCO": "630", "CRS_code": "INR" }, "geometry": { "type": "Point", "coordinates": [ -2.37355953092, 57.286267224120003 ] } },
{ "type": "Feature", "properties": { "Name": "Ipswich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ipswich Rail Station", "TIPLOC": "IPSWICH", "CRS": "IPS", "StopAreaCode": "910GIPSWICH", "AdministrativeAreaRef": "110", "code": "9100IPSWICH", "NPTG": "E0057632", "ATCO": "390", "CRS_code": "IPS" }, "geometry": { "type": "Point", "coordinates": [ 1.14442571019, 52.050592344759998 ] } },
{ "type": "Feature", "properties": { "Name": "Irlam Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Irlam Rail Station", "TIPLOC": "IRLAM", "CRS": "IRL", "StopAreaCode": "910GIRLAM", "AdministrativeAreaRef": "110", "code": "9100IRLAM", "NPTG": "E0028884", "ATCO": "180", "CRS_code": "IRL" }, "geometry": { "type": "Point", "coordinates": [ -2.4332301278, 53.434309929389997 ] } },
{ "type": "Feature", "properties": { "Name": "Irvine Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Irvine Rail Station", "TIPLOC": "IRVN", "CRS": "IRV", "StopAreaCode": "910GIRVN", "AdministrativeAreaRef": "110", "code": "9100IRVN", "NPTG": "ES001888", "ATCO": "617", "CRS_code": "IRV" }, "geometry": { "type": "Point", "coordinates": [ -4.67514543399, 55.610874126939997 ] } },
{ "type": "Feature", "properties": { "Name": "Isleworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Isleworth Rail Station", "TIPLOC": "ISLEWTH", "CRS": "ISL", "StopAreaCode": "910GISLEWTH", "AdministrativeAreaRef": "110", "code": "9100ISLEWTH", "NPTG": "E0034546", "ATCO": "490", "CRS_code": "ISL" }, "geometry": { "type": "Point", "coordinates": [ -0.33690672602, 51.474762821059997 ] } },
{ "type": "Feature", "properties": { "Name": "Islip Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Islip Rail Station", "TIPLOC": "ISLIP", "CRS": "ISP", "StopAreaCode": "910GISLIP", "AdministrativeAreaRef": "110", "code": "9100ISLIP", "NPTG": "E0050286", "ATCO": "340", "CRS_code": "ISP" }, "geometry": { "type": "Point", "coordinates": [ -1.23818163587, 51.825753262360003 ] } },
{ "type": "Feature", "properties": { "Name": "Iver Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Iver Rail Station", "TIPLOC": "IVER", "CRS": "IVR", "StopAreaCode": "910GIVER", "AdministrativeAreaRef": "110", "code": "9100IVER", "NPTG": "E0044078", "ATCO": "040", "CRS_code": "IVR" }, "geometry": { "type": "Point", "coordinates": [ -0.50672594965, 51.50850281844 ] } },
{ "type": "Feature", "properties": { "Name": "Invergordon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Invergordon Rail Station", "TIPLOC": "IVRGRD", "CRS": "IGD", "StopAreaCode": "910GIVRGRD", "AdministrativeAreaRef": "110", "code": "9100IVRGRD", "NPTG": "ES001865", "ATCO": "670", "CRS_code": "IGD" }, "geometry": { "type": "Point", "coordinates": [ -4.17484037251, 57.689018509100002 ] } },
{ "type": "Feature", "properties": { "Name": "Inverkeithing Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Inverkeithing Rail Station", "TIPLOC": "IVRKTHG", "CRS": "INK", "StopAreaCode": "910GIVRKTHG", "AdministrativeAreaRef": "110", "code": "9100IVRKTHG", "NPTG": "ES001868", "ATCO": "650", "CRS_code": "INK" }, "geometry": { "type": "Point", "coordinates": [ -3.39618687988, 56.034677047380001 ] } },
{ "type": "Feature", "properties": { "Name": "Inverness Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Inverness Rail Station", "TIPLOC": "IVRNESS", "CRS": "INV", "StopAreaCode": "910GIVRNESS", "AdministrativeAreaRef": "110", "code": "9100IVRNESS", "NPTG": "ES001879", "ATCO": "670", "CRS_code": "INV" }, "geometry": { "type": "Point", "coordinates": [ -4.22336102056, 57.479869859510003 ] } },
{ "type": "Feature", "properties": { "Name": "Ivybridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ivybridge Rail Station", "TIPLOC": "IVYBDGE", "CRS": "IVY", "StopAreaCode": "910GIVYBDGE", "AdministrativeAreaRef": "110", "code": "9100IVYBDGE", "NPTG": "E0045436", "ATCO": "110", "CRS_code": "IVY" }, "geometry": { "type": "Point", "coordinates": [ -3.90420412874, 50.393412177679998 ] } },
{ "type": "Feature", "properties": { "Name": "James Cook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "James Cook University Hospital Rail Station", "TIPLOC": "JAMCOK", "CRS": "JCH", "StopAreaCode": "910GJAMCOK", "AdministrativeAreaRef": "110", "code": "9100JAMCOK", "NPTG": "N0070298", "ATCO": "079", "CRS_code": "JCH" }, "geometry": { "type": "Point", "coordinates": [ -1.2085693492, 54.552030533749999 ] } },
{ "type": "Feature", "properties": { "Name": "Liverpool James Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liverpool James Street Rail Station", "TIPLOC": "JAMESST", "CRS": "LVJ", "StopAreaCode": "910GJAMESST", "AdministrativeAreaRef": "110", "code": "9100JAMESST", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "LVJ" }, "geometry": { "type": "Point", "coordinates": [ -2.9919576404, 53.404763834679997 ] } },
{ "type": "Feature", "properties": { "Name": "Johnston (Pembrokeshire) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Johnston (Pembrokeshire) Rail Station", "TIPLOC": "JHNSTND", "CRS": "JOH", "StopAreaCode": "910GJHNSTND", "AdministrativeAreaRef": "110", "code": "9100JHNSTND", "NPTG": "E0054496", "ATCO": "521", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.99632827586, 51.756746695449998 ] } },
{ "type": "Feature", "properties": { "Name": "Johnstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Johnstone Rail Station", "TIPLOC": "JOHNSTN", "CRS": "JHN", "StopAreaCode": "910GJOHNSTN", "AdministrativeAreaRef": "110", "code": "9100JOHNSTN", "NPTG": "ES001913", "ATCO": "614", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.50363725747, 55.834708684719999 ] } },
{ "type": "Feature", "properties": { "Name": "Jordanhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Jordanhill Rail Station", "TIPLOC": "JORDANH", "CRS": "JOR", "StopAreaCode": "910GJORDANH", "AdministrativeAreaRef": "110", "code": "9100JORDANH", "NPTG": "N0072799", "ATCO": "609", "CRS_code": "JOR" }, "geometry": { "type": "Point", "coordinates": [ -4.3249178619, 55.882706463700003 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkcaldy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkcaldy Rail Station", "TIPLOC": "KCLD", "CRS": "KDY", "StopAreaCode": "910GKCLD", "AdministrativeAreaRef": "110", "code": "9100KCLD", "NPTG": "ES002147", "ATCO": "650", "CRS_code": "KDY" }, "geometry": { "type": "Point", "coordinates": [ -3.16702833801, 56.112058084029997 ] } },
{ "type": "Feature", "properties": { "Name": "Kidderminster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kidderminster Rail Station", "TIPLOC": "KDRMNST", "CRS": "KID", "StopAreaCode": "910GKDRMNST", "AdministrativeAreaRef": "110", "code": "9100KDRMNST", "NPTG": "E0056917", "ATCO": "200", "CRS_code": "KID" }, "geometry": { "type": "Point", "coordinates": [ -2.23847072681, 52.384482448770001 ] } },
{ "type": "Feature", "properties": { "Name": "Kearsley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kearsley Rail Station", "TIPLOC": "KEARSLY", "CRS": "KSL", "StopAreaCode": "910GKEARSLY", "AdministrativeAreaRef": "110", "code": "9100KEARSLY", "NPTG": "E0028898", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.37511964368, 53.544139128570002 ] } },
{ "type": "Feature", "properties": { "Name": "Keighley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Keighley Rail Station", "TIPLOC": "KEIGHLY", "CRS": "KEI", "StopAreaCode": "910GKEIGHLY", "AdministrativeAreaRef": "110", "code": "9100KEIGHLY", "NPTG": "E0032957", "ATCO": "450", "CRS_code": "KEI" }, "geometry": { "type": "Point", "coordinates": [ -1.90164947462, 53.867962888889998 ] } },
{ "type": "Feature", "properties": { "Name": "Keith Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Keith Rail Station", "TIPLOC": "KEITH", "CRS": "KEH", "StopAreaCode": "910GKEITH", "AdministrativeAreaRef": "110", "code": "9100KEITH", "NPTG": "ES001929", "ATCO": "638", "CRS_code": "KEH" }, "geometry": { "type": "Point", "coordinates": [ -2.95406879825, 57.550899160210001 ] } },
{ "type": "Feature", "properties": { "Name": "Kelvedon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kelvedon Rail Station", "TIPLOC": "KELVEDN", "CRS": "KEL", "StopAreaCode": "910GKELVEDN", "AdministrativeAreaRef": "110", "code": "9100KELVEDN", "NPTG": "E0046177", "ATCO": "150", "CRS_code": "KEL" }, "geometry": { "type": "Point", "coordinates": [ 0.70238568697, 51.840702315850002 ] } },
{ "type": "Feature", "properties": { "Name": "Kemble Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kemble Rail Station", "TIPLOC": "KEMBLE", "CRS": "KEM", "StopAreaCode": "910GKEMBLE", "AdministrativeAreaRef": "110", "code": "9100KEMBLE", "NPTG": "E0046499", "ATCO": "160", "CRS_code": "KEM" }, "geometry": { "type": "Point", "coordinates": [ -2.02281708418, 51.676995560169999 ] } },
{ "type": "Feature", "properties": { "Name": "Kemsing Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kemsing Rail Station", "TIPLOC": "KEMSING", "CRS": "KMS", "StopAreaCode": "910GKEMSING", "AdministrativeAreaRef": "110", "code": "9100KEMSING", "NPTG": "E0047247", "ATCO": "240", "CRS_code": "KMS" }, "geometry": { "type": "Point", "coordinates": [ 0.24742842428, 51.297187147160002 ] } },
{ "type": "Feature", "properties": { "Name": "Kendal Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kendal Rail Station", "TIPLOC": "KENDAL", "CRS": "KEN", "StopAreaCode": "910GKENDAL", "AdministrativeAreaRef": "110", "code": "9100KENDAL", "NPTG": "E0055517", "ATCO": "090", "CRS_code": "KEN" }, "geometry": { "type": "Point", "coordinates": [ -2.73964658475, 54.332095885880001 ] } },
{ "type": "Feature", "properties": { "Name": "Kennishead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kennishead Rail Station", "TIPLOC": "KENISHD", "CRS": "KNS", "StopAreaCode": "910GKENISHD", "AdministrativeAreaRef": "110", "code": "9100KENISHD", "NPTG": "N0068124", "ATCO": "609", "CRS_code": "KNS" }, "geometry": { "type": "Point", "coordinates": [ -4.32524615764, 55.813315721679999 ] } },
{ "type": "Feature", "properties": { "Name": "Kenilworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kenilworth Rail Station", "TIPLOC": "KENLSTN", "CRS": "KNW", "StopAreaCode": "910GKENLSTN", "AdministrativeAreaRef": "110", "code": "9100KENLSTN", "NPTG": "E0052033", "ATCO": "420", "CRS_code": "KNW" }, "geometry": { "type": "Point", "coordinates": [ -1.57273822805, 52.342705283809998 ] } },
{ "type": "Feature", "properties": { "Name": "Kennett Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kennett Rail Station", "TIPLOC": "KENNETT", "CRS": "KNE", "StopAreaCode": "910GKENNETT", "AdministrativeAreaRef": "110", "code": "9100KENNETT", "NPTG": "E0043674", "ATCO": "050", "CRS_code": "KNE" }, "geometry": { "type": "Point", "coordinates": [ 0.49046452228, 52.277264233719997 ] } },
{ "type": "Feature", "properties": { "Name": "Kensington (Olympia) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kensington (Olympia) Rail Station", "TIPLOC": "KENOLYM", "CRS": "KPA", "StopAreaCode": "910GKENOLYM", "AdministrativeAreaRef": "110", "code": "9100KENOLYM", "NPTG": "N0077705", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.21036406081, 51.497898812839999 ] } },
{ "type": "Feature", "properties": { "Name": "Kensal Rise Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kensal Rise Rail Station", "TIPLOC": "KENR", "CRS": "KNR", "StopAreaCode": "910GKENR", "AdministrativeAreaRef": "110", "code": "9100KENR", "NPTG": "E0034048", "ATCO": "490", "CRS_code": "KNR" }, "geometry": { "type": "Point", "coordinates": [ -0.21995703736, 51.534554003830003 ] } },
{ "type": "Feature", "properties": { "Name": "Kensal Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kensal Green Rail Station", "TIPLOC": "KENSLG", "CRS": "KNL", "StopAreaCode": "910GKENSLG", "AdministrativeAreaRef": "110", "code": "9100KENSLG", "NPTG": "N0060457", "ATCO": "490", "CRS_code": "KNL" }, "geometry": { "type": "Point", "coordinates": [ -0.22508758612, 51.530540204540003 ] } },
{ "type": "Feature", "properties": { "Name": "Kent House Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kent House Rail Station", "TIPLOC": "KENTHOS", "CRS": "KTH", "StopAreaCode": "910GKENTHOS", "AdministrativeAreaRef": "110", "code": "9100KENTHOS", "NPTG": "N0065189", "ATCO": "490", "CRS_code": "KTH" }, "geometry": { "type": "Point", "coordinates": [ -0.04524736923, 51.412215215890001 ] } },
{ "type": "Feature", "properties": { "Name": "Kettering Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kettering Rail Station", "TIPLOC": "KETR", "CRS": "KET", "StopAreaCode": "910GKETR", "AdministrativeAreaRef": "110", "code": "9100KETR", "NPTG": "E0057587", "ATCO": "300", "CRS_code": "KET" }, "geometry": { "type": "Point", "coordinates": [ -0.73156219775, 52.393554993720002 ] } },
{ "type": "Feature", "properties": { "Name": "Kew Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kew Bridge Rail Station", "TIPLOC": "KEWBDGE", "CRS": "KWB", "StopAreaCode": "910GKEWBDGE", "AdministrativeAreaRef": "110", "code": "9100KEWBDGE", "NPTG": "E0034540", "ATCO": "490", "CRS_code": "KWB" }, "geometry": { "type": "Point", "coordinates": [ -0.28710755038, 51.48951285815 ] } },
{ "type": "Feature", "properties": { "Name": "Kew Gardens Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kew Gardens Rail Station", "TIPLOC": "KEWGRDN", "CRS": "KWG", "StopAreaCode": "910GKEWGRDN", "AdministrativeAreaRef": "110", "code": "9100KEWGRDN", "NPTG": "N0060460", "ATCO": "490", "CRS_code": "KWG" }, "geometry": { "type": "Point", "coordinates": [ -0.28505351414, 51.477073341770001 ] } },
{ "type": "Feature", "properties": { "Name": "Keyham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Keyham Rail Station", "TIPLOC": "KEYHAM", "CRS": "KEY", "StopAreaCode": "910GKEYHAM", "AdministrativeAreaRef": "110", "code": "9100KEYHAM", "NPTG": "E0040605", "ATCO": "118", "CRS_code": "KEY" }, "geometry": { "type": "Point", "coordinates": [ -4.17959919463, 50.389879895679996 ] } },
{ "type": "Feature", "properties": { "Name": "Keynsham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Keynsham Rail Station", "TIPLOC": "KEYNSHM", "CRS": "KYN", "StopAreaCode": "910GKEYNSHM", "AdministrativeAreaRef": "110", "code": "9100KEYNSHM", "NPTG": "E0054815", "ATCO": "018", "CRS_code": "KYN" }, "geometry": { "type": "Point", "coordinates": [ -2.49562890975, 51.417976957480001 ] } },
{ "type": "Feature", "properties": { "Name": "Kinghorn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kinghorn Rail Station", "TIPLOC": "KGHN", "CRS": "KGH", "StopAreaCode": "910GKGHN", "AdministrativeAreaRef": "110", "code": "9100KGHN", "NPTG": "ES002098", "ATCO": "650", "CRS_code": "KGH" }, "geometry": { "type": "Point", "coordinates": [ -3.17415408031, 56.0693375269 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kings Park Rail Station", "TIPLOC": "KGPK", "CRS": "KGP", "StopAreaCode": "910GKGPK", "AdministrativeAreaRef": "110", "code": "9100KGPK", "NPTG": "ES002106", "ATCO": "615", "CRS_code": "KGP" }, "geometry": { "type": "Point", "coordinates": [ -4.24651694576, 55.819543068569999 ] } },
{ "type": "Feature", "properties": { "Name": "Kingston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kingston Rail Station", "TIPLOC": "KGSTON", "CRS": "KNG", "StopAreaCode": "910GKGSTON", "AdministrativeAreaRef": "110", "code": "9100KGSTON", "NPTG": "N0060498", "ATCO": "490", "CRS_code": "KNG" }, "geometry": { "type": "Point", "coordinates": [ -0.30116570895, 51.412751245860001 ] } },
{ "type": "Feature", "properties": { "Name": "Kingussie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kingussie Rail Station", "TIPLOC": "KGUSSIE", "CRS": "KIN", "StopAreaCode": "910GKGUSSIE", "AdministrativeAreaRef": "110", "code": "9100KGUSSIE", "NPTG": "ES002113", "ATCO": "670", "CRS_code": "KIN" }, "geometry": { "type": "Point", "coordinates": [ -4.05219219776, 57.077781725889999 ] } },
{ "type": "Feature", "properties": { "Name": "Kingswood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kingswood Rail Station", "TIPLOC": "KGWD", "CRS": "KND", "StopAreaCode": "910GKGWD", "AdministrativeAreaRef": "110", "code": "9100KGWD", "NPTG": "E0025547", "ATCO": "400", "CRS_code": "KND" }, "geometry": { "type": "Point", "coordinates": [ -0.2112474821, 51.294724723240002 ] } },
{ "type": "Feature", "properties": { "Name": "Kidbrooke Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kidbrooke Rail Station", "TIPLOC": "KIDBROK", "CRS": "KDB", "StopAreaCode": "910GKIDBROK", "AdministrativeAreaRef": "110", "code": "9100KIDBROK", "NPTG": "E0034330", "ATCO": "490", "CRS_code": "KDB" }, "geometry": { "type": "Point", "coordinates": [ 0.02749762513, 51.462121296059998 ] } },
{ "type": "Feature", "properties": { "Name": "Kidsgrove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kidsgrove Rail Station", "TIPLOC": "KIDSGRV", "CRS": "KDG", "StopAreaCode": "910GKIDSGRV", "AdministrativeAreaRef": "110", "code": "9100KIDSGRV", "NPTG": "E0051168", "ATCO": "380", "CRS_code": "KDG" }, "geometry": { "type": "Point", "coordinates": [ -2.24481583495, 53.08656536881 ] } },
{ "type": "Feature", "properties": { "Name": "Kidwelly Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kidwelly Rail Station", "TIPLOC": "KIDWELY", "CRS": "KWL", "StopAreaCode": "910GKIDWELY", "AdministrativeAreaRef": "110", "code": "9100KIDWELY", "NPTG": "E0054046", "ATCO": "522", "CRS_code": "KWL" }, "geometry": { "type": "Point", "coordinates": [ -4.31698547496, 51.734341804650001 ] } },
{ "type": "Feature", "properties": { "Name": "Kildonan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kildonan Rail Station", "TIPLOC": "KILDONN", "CRS": "KIL", "StopAreaCode": "910GKILDONN", "AdministrativeAreaRef": "110", "code": "9100KILDONN", "NPTG": "ES001985", "ATCO": "670", "CRS_code": "KIL" }, "geometry": { "type": "Point", "coordinates": [ -3.86910608461, 58.170809464080001 ] } },
{ "type": "Feature", "properties": { "Name": "Kilgetty Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kilgetty Rail Station", "TIPLOC": "KILGETY", "CRS": "KGT", "StopAreaCode": "910GKILGETY", "AdministrativeAreaRef": "110", "code": "9100KILGETY", "NPTG": "E0040296", "ATCO": "521", "CRS_code": "KGT" }, "geometry": { "type": "Point", "coordinates": [ -4.71515570586, 51.732106456319997 ] } },
{ "type": "Feature", "properties": { "Name": "Kilmarnock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kilmarnock Rail Station", "TIPLOC": "KILMRNK", "CRS": "KMK", "StopAreaCode": "910GKILMRNK", "AdministrativeAreaRef": "110", "code": "9100KILMRNK", "NPTG": "ES002011", "ATCO": "618", "CRS_code": "KMK" }, "geometry": { "type": "Point", "coordinates": [ -4.49868475746, 55.612117613530003 ] } },
{ "type": "Feature", "properties": { "Name": "Kilwinning Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kilwinning Rail Station", "TIPLOC": "KILWNNG", "CRS": "KWN", "StopAreaCode": "910GKILWNNG", "AdministrativeAreaRef": "110", "code": "9100KILWNNG", "NPTG": "ES002074", "ATCO": "617", "CRS_code": "KWN" }, "geometry": { "type": "Point", "coordinates": [ -4.71001861287, 55.655951186960003 ] } },
{ "type": "Feature", "properties": { "Name": "Kinbrace Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kinbrace Rail Station", "TIPLOC": "KINBRAC", "CRS": "KBC", "StopAreaCode": "910GKINBRAC", "AdministrativeAreaRef": "110", "code": "9100KINBRAC", "NPTG": "N0067893", "ATCO": "670", "CRS_code": "KBC" }, "geometry": { "type": "Point", "coordinates": [ -3.94120792686, 58.2583126802 ] } },
{ "type": "Feature", "properties": { "Name": "Kingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kingham Rail Station", "TIPLOC": "KINGHAM", "CRS": "KGM", "StopAreaCode": "910GKINGHAM", "AdministrativeAreaRef": "110", "code": "9100KINGHAM", "NPTG": "E0050531", "ATCO": "340", "CRS_code": "KGM" }, "geometry": { "type": "Point", "coordinates": [ -1.62878618667, 51.902249622329997 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Sutton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kings Sutton Rail Station", "TIPLOC": "KINSSTN", "CRS": "KGS", "StopAreaCode": "910GKINSSTN", "AdministrativeAreaRef": "110", "code": "9100KINSSTN", "NPTG": "E0049799", "ATCO": "300", "CRS_code": "KGS" }, "geometry": { "type": "Point", "coordinates": [ -1.28093054677, 52.02135131779 ] } },
{ "type": "Feature", "properties": { "Name": "Kintore Railway Station", "Status": "active", "Type": "RLY", "Station_Name": "Kintore Rail Station", "TIPLOC": "KINTORE", "CRS": "KTR", "StopAreaCode": "910GKINTORE", "AdministrativeAreaRef": "110", "code": "9100KINTORE", "NPTG": "ES002139", "ATCO": "630", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.35024422812, 57.2435128459 ] } },
{ "type": "Feature", "properties": { "Name": "Kirby Cross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirby Cross Rail Station", "TIPLOC": "KIRBYX", "CRS": "KBX", "StopAreaCode": "910GKIRBYX", "AdministrativeAreaRef": "110", "code": "9100KIRBYX", "NPTG": "E0011475", "ATCO": "150", "CRS_code": "KBX" }, "geometry": { "type": "Point", "coordinates": [ 1.2149927051, 51.841397887870002 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkham & Wesham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkham & Wesham Rail Station", "TIPLOC": "KIRKHAM", "CRS": "KKM", "StopAreaCode": "910GKIRKHAM", "AdministrativeAreaRef": "110", "code": "9100KIRKHAM", "NPTG": "E0047412", "ATCO": "250", "CRS_code": "KKM" }, "geometry": { "type": "Point", "coordinates": [ -2.88294079158, 53.786915244169997 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkby Rail Station", "TIPLOC": "KKBY", "CRS": "KIR", "StopAreaCode": "910GKKBY", "AdministrativeAreaRef": "110", "code": "9100KKBY", "NPTG": "E0029767", "ATCO": "280", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.90282920116, 53.486190688249998 ] } },
{ "type": "Feature", "properties": { "Name": "Kirk Sandall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirk Sandall Rail Station", "TIPLOC": "KKSNDAL", "CRS": "KKS", "StopAreaCode": "910GKKSNDAL", "AdministrativeAreaRef": "110", "code": "9100KKSNDAL", "NPTG": "E0030311", "ATCO": "370", "CRS_code": "KKS" }, "geometry": { "type": "Point", "coordinates": [ -1.07406102661, 53.563878111450002 ] } },
{ "type": "Feature", "properties": { "Name": "Kilburn High Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kilburn High Road Rail Station", "TIPLOC": "KLBRNHR", "CRS": "KBN", "StopAreaCode": "910GKLBRNHR", "AdministrativeAreaRef": "110", "code": "9100KLBRNHR", "NPTG": "E0034051", "ATCO": "490", "CRS_code": "KBN" }, "geometry": { "type": "Point", "coordinates": [ -0.19223741969, 51.537277469880003 ] } },
{ "type": "Feature", "properties": { "Name": "Kildale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kildale Rail Station", "TIPLOC": "KLDL", "CRS": "KLD", "StopAreaCode": "910GKLDL", "AdministrativeAreaRef": "110", "code": "9100KLDL", "NPTG": "E0049016", "ATCO": "320", "CRS_code": "KLD" }, "geometry": { "type": "Point", "coordinates": [ -1.0681434228, 54.47775758313 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Langley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kings Langley Rail Station", "TIPLOC": "KLGL", "CRS": "KGL", "StopAreaCode": "910GKLGL", "AdministrativeAreaRef": "110", "code": "9100KLGL", "NPTG": "E0046955", "ATCO": "210", "CRS_code": "KGL" }, "geometry": { "type": "Point", "coordinates": [ -0.43842187035, 51.706355876579998 ] } },
{ "type": "Feature", "properties": { "Name": "Kilmaurs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kilmaurs Rail Station", "TIPLOC": "KLMAURS", "CRS": "KLM", "StopAreaCode": "910GKLMAURS", "AdministrativeAreaRef": "110", "code": "9100KLMAURS", "NPTG": "ES002039", "ATCO": "618", "CRS_code": "KLM" }, "geometry": { "type": "Point", "coordinates": [ -4.53049038013, 55.637207918409999 ] } },
{ "type": "Feature", "properties": { "Name": "Kilpatrick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kilpatrick Rail Station", "TIPLOC": "KLPTRCK", "CRS": "KPT", "StopAreaCode": "910GKLPTRCK", "AdministrativeAreaRef": "110", "code": "9100KLPTRCK", "NPTG": "ES002912", "ATCO": "608", "CRS_code": "KPT" }, "geometry": { "type": "Point", "coordinates": [ -4.45341195771, 55.924701392469998 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Lynn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kings Lynn Rail Station", "TIPLOC": "KLYNN", "CRS": "KLN", "StopAreaCode": "910GKLYNN", "AdministrativeAreaRef": "110", "code": "9100KLYNN", "NPTG": "E0017902", "ATCO": "290", "CRS_code": "KLN" }, "geometry": { "type": "Point", "coordinates": [ 0.40344668326, 52.753924004559998 ] } },
{ "type": "Feature", "properties": { "Name": "Kempston Hardwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kempston Hardwick Rail Station", "TIPLOC": "KMPSTNH", "CRS": "KMH", "StopAreaCode": "910GKMPSTNH", "AdministrativeAreaRef": "110", "code": "9100KMPSTNH", "NPTG": "E0000064", "ATCO": "021", "CRS_code": "KMH" }, "geometry": { "type": "Point", "coordinates": [ -0.50391375516, 52.092218338599999 ] } },
{ "type": "Feature", "properties": { "Name": "Kempton Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kempton Park Rail Station", "TIPLOC": "KMPTNPK", "CRS": "KMP", "StopAreaCode": "910GKMPTNPK", "AdministrativeAreaRef": "110", "code": "9100KMPTNPK", "NPTG": "E0025637", "ATCO": "400", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.40975125502, 51.420983147549997 ] } },
{ "type": "Feature", "properties": { "Name": "Kemsley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kemsley Rail Station", "TIPLOC": "KMSLY", "CRS": "KML", "StopAreaCode": "910GKMSLY", "AdministrativeAreaRef": "110", "code": "9100KMSLY", "NPTG": "E0015324", "ATCO": "240", "CRS_code": "KML" }, "geometry": { "type": "Point", "coordinates": [ 0.73535780443, 51.362440266199997 ] } },
{ "type": "Feature", "properties": { "Name": "Knockholt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Knockholt Rail Station", "TIPLOC": "KNCKHLT", "CRS": "KCK", "StopAreaCode": "910GKNCKHLT", "AdministrativeAreaRef": "110", "code": "9100KNCKHLT", "NPTG": "N0080358", "ATCO": "240", "CRS_code": "KCK" }, "geometry": { "type": "Point", "coordinates": [ 0.13084714432, 51.345789547270002 ] } },
{ "type": "Feature", "properties": { "Name": "Knebworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Knebworth Rail Station", "TIPLOC": "KNEBWTH", "CRS": "KBW", "StopAreaCode": "910GKNEBWTH", "AdministrativeAreaRef": "110", "code": "9100KNEBWTH", "NPTG": "E0047034", "ATCO": "210", "CRS_code": "KBW" }, "geometry": { "type": "Point", "coordinates": [ -0.18728871212, 51.866854837049999 ] } },
{ "type": "Feature", "properties": { "Name": "Kingsknowe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kingsknowe Rail Station", "TIPLOC": "KNGW", "CRS": "KGE", "StopAreaCode": "910GKNGW", "AdministrativeAreaRef": "110", "code": "9100KNGW", "NPTG": "N0078876", "ATCO": "620", "CRS_code": "KGE" }, "geometry": { "type": "Point", "coordinates": [ -3.2649661733, 55.918813454370003 ] } },
{ "type": "Feature", "properties": { "Name": "London Kings Cross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Kings Cross Rail Station", "TIPLOC": "KNGX", "CRS": "KGX", "StopAreaCode": "910GKNGX", "AdministrativeAreaRef": "110", "code": "9100KNGX", "NPTG": "E0034577", "ATCO": "490", "CRS_code": "KGX" }, "geometry": { "type": "Point", "coordinates": [ -0.12292591146, 51.530883338919999 ] } },
{ "type": "Feature", "properties": { "Name": "Knighton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Knighton Rail Station", "TIPLOC": "KNIGHTN", "CRS": "KNI", "StopAreaCode": "910GKNIGHTN", "AdministrativeAreaRef": "110", "code": "9100KNIGHTN", "NPTG": "E0056571", "ATCO": "350", "CRS_code": "KNI" }, "geometry": { "type": "Point", "coordinates": [ -3.04219570174, 52.345072616129997 ] } },
{ "type": "Feature", "properties": { "Name": "Kenley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kenley Rail Station", "TIPLOC": "KNLY", "CRS": "KLY", "StopAreaCode": "910GKNLY", "AdministrativeAreaRef": "110", "code": "9100KNLY", "NPTG": "E0034219", "ATCO": "490", "CRS_code": "KLY" }, "geometry": { "type": "Point", "coordinates": [ -0.10092534215, 51.32477694192 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Norton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kings Norton Rail Station", "TIPLOC": "KNORTON", "CRS": "KNN", "StopAreaCode": "910GKNORTON", "AdministrativeAreaRef": "110", "code": "9100KNORTON", "NPTG": "E0031476", "ATCO": "430", "CRS_code": "KNN" }, "geometry": { "type": "Point", "coordinates": [ -1.93232572815, 52.414290660349998 ] } },
{ "type": "Feature", "properties": { "Name": "Knaresborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Knaresborough Rail Station", "TIPLOC": "KNRSBGH", "CRS": "KNA", "StopAreaCode": "910GKNRSBGH", "AdministrativeAreaRef": "110", "code": "9100KNRSBGH", "NPTG": "E0056345", "ATCO": "320", "CRS_code": "KNA" }, "geometry": { "type": "Point", "coordinates": [ -1.47041615856, 54.009023765370003 ] } },
{ "type": "Feature", "properties": { "Name": "London Kings Cross Thameslink Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "London Kings Cross Thameslink Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100KNSXMCL", "NPTG": "E0034577", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.12033984927, 51.530662078840002 ] } },
{ "type": "Feature", "properties": { "Name": "Kintbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kintbury Rail Station", "TIPLOC": "KNTBRY", "CRS": "KIT", "StopAreaCode": "910GKNTBRY", "AdministrativeAreaRef": "110", "code": "9100KNTBRY", "NPTG": "E0053849", "ATCO": "030", "CRS_code": "KIT" }, "geometry": { "type": "Point", "coordinates": [ -1.44598884527, 51.402521975669998 ] } },
{ "type": "Feature", "properties": { "Name": "Knottingley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Knottingley Rail Station", "TIPLOC": "KNTNGLY", "CRS": "KNO", "StopAreaCode": "910GKNTNGLY", "AdministrativeAreaRef": "110", "code": "9100KNTNGLY", "NPTG": "E0032986", "ATCO": "450", "CRS_code": "KNO" }, "geometry": { "type": "Point", "coordinates": [ -1.25917814668, 53.706537315790001 ] } },
{ "type": "Feature", "properties": { "Name": "Kentish Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kentish Town Rail Station", "TIPLOC": "KNTSHTN", "CRS": "KTN", "StopAreaCode": "910GKNTSHTN", "AdministrativeAreaRef": "110", "code": "9100KNTSHTN", "NPTG": "N0065166", "ATCO": "490", "CRS_code": "KTN" }, "geometry": { "type": "Point", "coordinates": [ -0.14036490827, 51.55049490191 ] } },
{ "type": "Feature", "properties": { "Name": "Kentish Town West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kentish Town West Rail Station", "TIPLOC": "KNTSHTW", "CRS": "KTW", "StopAreaCode": "910GKNTSHTW", "AdministrativeAreaRef": "110", "code": "9100KNTSHTW", "NPTG": "N0065166", "ATCO": "490", "CRS_code": "KTW" }, "geometry": { "type": "Point", "coordinates": [ -0.14665543661, 51.546547837639999 ] } },
{ "type": "Feature", "properties": { "Name": "Knucklas Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Knucklas Rail Station", "TIPLOC": "KNUCKLS", "CRS": "KNU", "StopAreaCode": "910GKNUCKLS", "AdministrativeAreaRef": "110", "code": "9100KNUCKLS", "NPTG": "E0041125", "ATCO": "561", "CRS_code": "KNU" }, "geometry": { "type": "Point", "coordinates": [ -3.09687741877, 52.359861478649997 ] } },
{ "type": "Feature", "properties": { "Name": "Knutsford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Knutsford Rail Station", "TIPLOC": "KNUTSFD", "CRS": "KNF", "StopAreaCode": "910GKNUTSFD", "AdministrativeAreaRef": "110", "code": "9100KNUTSFD", "NPTG": "E0044368", "ATCO": "060", "CRS_code": "KNF" }, "geometry": { "type": "Point", "coordinates": [ -2.37179060704, 53.301790544820001 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Nympton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kings Nympton Rail Station", "TIPLOC": "KNYMPTN", "CRS": "KGN", "StopAreaCode": "910GKNYMPTN", "AdministrativeAreaRef": "110", "code": "9100KNYMPTN", "NPTG": "E0045378", "ATCO": "110", "CRS_code": "KGN" }, "geometry": { "type": "Point", "coordinates": [ -3.90541069897, 50.93607408527 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkby-in-Furness Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkby-in-Furness Rail Station", "TIPLOC": "KRKBYIF", "CRS": "KBF", "StopAreaCode": "910GKRKBYIF", "AdministrativeAreaRef": "110", "code": "9100KRKBYIF", "NPTG": "E0006316", "ATCO": "090", "CRS_code": "KBF" }, "geometry": { "type": "Point", "coordinates": [ -3.18737570311, 54.232709299749999 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkconnel Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkconnel Rail Station", "TIPLOC": "KRKC", "CRS": "KRK", "StopAreaCode": "910GKRKC", "AdministrativeAreaRef": "110", "code": "9100KRKC", "NPTG": "ES002171", "ATCO": "680", "CRS_code": "KRK" }, "geometry": { "type": "Point", "coordinates": [ -3.99850027759, 55.388303323659997 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkdale Rail Station", "TIPLOC": "KRKDALE", "CRS": "KKD", "StopAreaCode": "910GKRKDALE", "AdministrativeAreaRef": "110", "code": "9100KRKDALE", "NPTG": "E0029768", "ATCO": "280", "CRS_code": "KKD" }, "geometry": { "type": "Point", "coordinates": [ -2.98111681294, 53.440898924050003 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkhill Rail Station", "TIPLOC": "KRKH", "CRS": "KKH", "StopAreaCode": "910GKRKH", "AdministrativeAreaRef": "110", "code": "9100KRKH", "NPTG": "ES000586", "ATCO": "615", "CRS_code": "KKH" }, "geometry": { "type": "Point", "coordinates": [ -4.1671046669, 55.813913457380004 ] } },
{ "type": "Feature", "properties": { "Name": "Kirknewton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirknewton Rail Station", "TIPLOC": "KRKNWTN", "CRS": "KKN", "StopAreaCode": "910GKRKNWTN", "AdministrativeAreaRef": "110", "code": "9100KRKNWTN", "NPTG": "ES002209", "ATCO": "629", "CRS_code": "KKN" }, "geometry": { "type": "Point", "coordinates": [ -3.43251158842, 55.888690873949997 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkstall Forge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkstall Forge Rail Station", "TIPLOC": "KRKSLFR", "CRS": "KLF", "StopAreaCode": "910GKRKSLFR", "AdministrativeAreaRef": "110", "code": "9100KRKSLFR", "NPTG": "E0032816", "ATCO": "450", "CRS_code": "KLF" }, "geometry": { "type": "Point", "coordinates": [ -1.62247926932, 53.823719704399998 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkwood Rail Station", "TIPLOC": "KRKWOOD", "CRS": "KWD", "StopAreaCode": "910GKRKWOOD", "AdministrativeAreaRef": "110", "code": "9100KRKWOOD", "NPTG": "ES000759", "ATCO": "616", "CRS_code": "KWD" }, "geometry": { "type": "Point", "coordinates": [ -4.04839825583, 55.854188483430001 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkby in Ashfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkby in Ashfield Rail Station", "TIPLOC": "KRKYCEN", "CRS": "KKB", "StopAreaCode": "910GKRKYCEN", "AdministrativeAreaRef": "110", "code": "9100KRKYCEN", "NPTG": "E0057594", "ATCO": "330", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.25305663119, 53.100098807729999 ] } },
{ "type": "Feature", "properties": { "Name": "Kirton Lindsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirton Lindsey Rail Station", "TIPLOC": "KRTNLND", "CRS": "KTL", "StopAreaCode": "910GKRTNLND", "AdministrativeAreaRef": "110", "code": "9100KRTNLND", "NPTG": "E0055064", "ATCO": "227", "CRS_code": "KTL" }, "geometry": { "type": "Point", "coordinates": [ -0.59391335603, 53.484839931419998 ] } },
{ "type": "Feature", "properties": { "Name": "Kearsney Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kearsney Rail Station", "TIPLOC": "KSNY", "CRS": "KSN", "StopAreaCode": "910GKSNY", "AdministrativeAreaRef": "110", "code": "9100KSNY", "NPTG": "E0014771", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.27206144895, 51.149375660600001 ] } },
{ "type": "Feature", "properties": { "Name": "Kirkby Stephen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kirkby Stephen Rail Station", "TIPLOC": "KSTP", "CRS": "KSW", "StopAreaCode": "910GKSTP", "AdministrativeAreaRef": "110", "code": "9100KSTP", "NPTG": "E0055512", "ATCO": "090", "CRS_code": "KSW" }, "geometry": { "type": "Point", "coordinates": [ -2.36859659567, 54.454856998579999 ] } },
{ "type": "Feature", "properties": { "Name": "Kents Bank Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kents Bank Rail Station", "TIPLOC": "KTBK", "CRS": "KBK", "StopAreaCode": "910GKTBK", "AdministrativeAreaRef": "110", "code": "9100KTBK", "NPTG": "E0006314", "ATCO": "090", "CRS_code": "KBK" }, "geometry": { "type": "Point", "coordinates": [ -2.92522918587, 54.17290232797 ] } },
{ "type": "Feature", "properties": { "Name": "Kenton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kenton Rail Station", "TIPLOC": "KTON", "CRS": "KNT", "StopAreaCode": "910GKTON", "AdministrativeAreaRef": "110", "code": "9100KTON", "NPTG": "E0034425", "ATCO": "490", "CRS_code": "KNT" }, "geometry": { "type": "Point", "coordinates": [ -0.31698085306, 51.581801536969998 ] } },
{ "type": "Feature", "properties": { "Name": "Kiveton Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kiveton Bridge Rail Station", "TIPLOC": "KVTNBDG", "CRS": "KIV", "StopAreaCode": "910GKVTNBDG", "AdministrativeAreaRef": "110", "code": "9100KVTNBDG", "NPTG": "N0060615", "ATCO": "370", "CRS_code": "KIV" }, "geometry": { "type": "Point", "coordinates": [ -1.26717935845, 53.340957885409999 ] } },
{ "type": "Feature", "properties": { "Name": "Kiveton Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kiveton Park Rail Station", "TIPLOC": "KVTNPK", "CRS": "KVP", "StopAreaCode": "910GKVTNPK", "AdministrativeAreaRef": "110", "code": "9100KVTNPK", "NPTG": "N0060615", "ATCO": "370", "CRS_code": "KVP" }, "geometry": { "type": "Point", "coordinates": [ -1.23984450125, 53.336714992109997 ] } },
{ "type": "Feature", "properties": { "Name": "Kings Cross Thameslink Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Kings Cross Thameslink Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100KXTLSR", "NPTG": "E0034577", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.12032544121, 51.530661847970002 ] } },
{ "type": "Feature", "properties": { "Name": "Kyle of Lochalsh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Kyle of Lochalsh Rail Station", "TIPLOC": "KYLELSH", "CRS": "KYL", "StopAreaCode": "910GKYLELSH", "AdministrativeAreaRef": "110", "code": "9100KYLELSH", "NPTG": "ES002246", "ATCO": "670", "CRS_code": "KYL" }, "geometry": { "type": "Point", "coordinates": [ -5.71381265017, 57.279772273879999 ] } },
{ "type": "Feature", "properties": { "Name": "Ladybank Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ladybank Rail Station", "TIPLOC": "LADYBNK", "CRS": "LDY", "StopAreaCode": "910GLADYBNK", "AdministrativeAreaRef": "110", "code": "9100LADYBNK", "NPTG": "ES002251", "ATCO": "650", "CRS_code": "LDY" }, "geometry": { "type": "Point", "coordinates": [ -3.12227515513, 56.273781523629999 ] } },
{ "type": "Feature", "properties": { "Name": "Laindon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Laindon Rail Station", "TIPLOC": "LAINDON", "CRS": "LAI", "StopAreaCode": "910GLAINDON", "AdministrativeAreaRef": "110", "code": "9100LAINDON", "NPTG": "E0010986", "ATCO": "150", "CRS_code": "LAI" }, "geometry": { "type": "Point", "coordinates": [ 0.4242890196, 51.567523588169998 ] } },
{ "type": "Feature", "properties": { "Name": "Lairg Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lairg Rail Station", "TIPLOC": "LAIRG", "CRS": "LRG", "StopAreaCode": "910GLAIRG", "AdministrativeAreaRef": "110", "code": "9100LAIRG", "NPTG": "ES002261", "ATCO": "670", "CRS_code": "LRG" }, "geometry": { "type": "Point", "coordinates": [ -4.39988881431, 58.001829278869998 ] } },
{ "type": "Feature", "properties": { "Name": "Lake (Isle of Wight) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lake (Isle of Wight) Rail Station", "TIPLOC": "LAKEIOW", "CRS": "LKE", "StopAreaCode": "910GLAKEIOW", "AdministrativeAreaRef": "110", "code": "9100LAKEIOW", "NPTG": "E0053412", "ATCO": "230", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.16634847061, 50.646476906099998 ] } },
{ "type": "Feature", "properties": { "Name": "Lakenheath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lakenheath Rail Station", "TIPLOC": "LAKNHTH", "CRS": "LAK", "StopAreaCode": "910GLAKNHTH", "AdministrativeAreaRef": "110", "code": "9100LAKNHTH", "NPTG": "E0051370", "ATCO": "390", "CRS_code": "LAK" }, "geometry": { "type": "Point", "coordinates": [ 0.53519772836, 52.44740071743 ] } },
{ "type": "Feature", "properties": { "Name": "Gilshochill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Gilshochill Rail Station", "TIPLOC": "LAMBH", "CRS": "GSC", "StopAreaCode": "910GLAMBH", "AdministrativeAreaRef": "110", "code": "9100LAMBH", "NPTG": "N0078790", "ATCO": "609", "CRS_code": "GSC" }, "geometry": { "type": "Point", "coordinates": [ -4.28268445398, 55.897337918680002 ] } },
{ "type": "Feature", "properties": { "Name": "Lamphey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lamphey Rail Station", "TIPLOC": "LAMPHEY", "CRS": "LAM", "StopAreaCode": "910GLAMPHEY", "AdministrativeAreaRef": "110", "code": "9100LAMPHEY", "NPTG": "E0054499", "ATCO": "521", "CRS_code": "LAM" }, "geometry": { "type": "Point", "coordinates": [ -4.8732563102, 51.667186544099998 ] } },
{ "type": "Feature", "properties": { "Name": "Lanark Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lanark Rail Station", "TIPLOC": "LANARK", "CRS": "LNK", "StopAreaCode": "910GLANARK", "AdministrativeAreaRef": "110", "code": "9100LANARK", "NPTG": "ES002266", "ATCO": "615", "CRS_code": "LNK" }, "geometry": { "type": "Point", "coordinates": [ -3.77329022079, 55.673607391509996 ] } },
{ "type": "Feature", "properties": { "Name": "Lancaster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lancaster Rail Station", "TIPLOC": "LANCSTR", "CRS": "LAN", "StopAreaCode": "910GLANCSTR", "AdministrativeAreaRef": "110", "code": "9100LANCSTR", "NPTG": "E0057514", "ATCO": "250", "CRS_code": "LAN" }, "geometry": { "type": "Point", "coordinates": [ -2.80745759975, 54.048729963989999 ] } },
{ "type": "Feature", "properties": { "Name": "Llandudno Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandudno Junction Rail Station", "TIPLOC": "LANDUDJ", "CRS": "LLJ", "StopAreaCode": "910GLANDUDJ", "AdministrativeAreaRef": "110", "code": "9100LANDUDJ", "NPTG": "E0036588", "ATCO": "513", "CRS_code": "LLJ" }, "geometry": { "type": "Point", "coordinates": [ -3.80910184854, 53.28394383957 ] } },
{ "type": "Feature", "properties": { "Name": "Llanfairfechan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanfairfechan Rail Station", "TIPLOC": "LANFRFC", "CRS": "LLF", "StopAreaCode": "910GLANFRFC", "AdministrativeAreaRef": "110", "code": "9100LANFRFC", "NPTG": "E0054171", "ATCO": "513", "CRS_code": "LLF" }, "geometry": { "type": "Point", "coordinates": [ -3.98320259826, 53.257287325669999 ] } },
{ "type": "Feature", "properties": { "Name": "Langley (Berks) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langley (Berks) Rail Station", "TIPLOC": "LANGLEY", "CRS": "LNY", "StopAreaCode": "910GLANGLEY", "AdministrativeAreaRef": "110", "code": "9100LANGLEY", "NPTG": "E0041742", "ATCO": "037", "CRS_code": "LNY" }, "geometry": { "type": "Point", "coordinates": [ -0.541756088, 51.508062294559998 ] } },
{ "type": "Feature", "properties": { "Name": "Lapford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lapford Rail Station", "TIPLOC": "LAPFORD", "CRS": "LAP", "StopAreaCode": "910GLAPFORD", "AdministrativeAreaRef": "110", "code": "9100LAPFORD", "NPTG": "E0045317", "ATCO": "110", "CRS_code": "LAP" }, "geometry": { "type": "Point", "coordinates": [ -3.81063882237, 50.857002565670001 ] } },
{ "type": "Feature", "properties": { "Name": "Lapworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lapworth Rail Station", "TIPLOC": "LAPWRTH", "CRS": "LPW", "StopAreaCode": "910GLAPWRTH", "AdministrativeAreaRef": "110", "code": "9100LAPWRTH", "NPTG": "E0052034", "ATCO": "420", "CRS_code": "LPW" }, "geometry": { "type": "Point", "coordinates": [ -1.72569122235, 52.342250994680001 ] } },
{ "type": "Feature", "properties": { "Name": "Larbert Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Larbert Rail Station", "TIPLOC": "LARBERT", "CRS": "LBT", "StopAreaCode": "910GLARBERT", "AdministrativeAreaRef": "110", "code": "9100LARBERT", "NPTG": "ES002282", "ATCO": "669", "CRS_code": "LBT" }, "geometry": { "type": "Point", "coordinates": [ -3.83058067732, 56.022704101279999 ] } },
{ "type": "Feature", "properties": { "Name": "Largs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Largs Rail Station", "TIPLOC": "LARGS", "CRS": "LAR", "StopAreaCode": "910GLARGS", "AdministrativeAreaRef": "110", "code": "9100LARGS", "NPTG": "ES002288", "ATCO": "617", "CRS_code": "LAR" }, "geometry": { "type": "Point", "coordinates": [ -4.86719750196, 55.792743238100002 ] } },
{ "type": "Feature", "properties": { "Name": "Larkhall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Larkhall Rail Station", "TIPLOC": "LARKHAL", "CRS": "LRH", "StopAreaCode": "910GLARKHAL", "AdministrativeAreaRef": "110", "code": "9100LARKHAL", "NPTG": "ES002294", "ATCO": "615", "CRS_code": "LRH" }, "geometry": { "type": "Point", "coordinates": [ -3.97551164305, 55.738595322510001 ] } },
{ "type": "Feature", "properties": { "Name": "Lawrence Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lawrence Hill Rail Station", "TIPLOC": "LAWRNCH", "CRS": "LWH", "StopAreaCode": "910GLAWRNCH", "AdministrativeAreaRef": "110", "code": "9100LAWRNCH", "NPTG": "N0077038", "ATCO": "010", "CRS_code": "LWH" }, "geometry": { "type": "Point", "coordinates": [ -2.56442969379, 51.458011266189999 ] } },
{ "type": "Feature", "properties": { "Name": "Layton (Lancs) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Layton (Lancs) Rail Station", "TIPLOC": "LAYTON", "CRS": "LAY", "StopAreaCode": "910GLAYTON", "AdministrativeAreaRef": "110", "code": "9100LAYTON", "NPTG": "E0035282", "ATCO": "259", "CRS_code": "LAY" }, "geometry": { "type": "Point", "coordinates": [ -3.02999045915, 53.835267898529999 ] } },
{ "type": "Feature", "properties": { "Name": "Lazonby & Kirkoswald Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lazonby & Kirkoswald Rail Station", "TIPLOC": "LAZKRKO", "CRS": "LZB", "StopAreaCode": "910GLAZKRKO", "AdministrativeAreaRef": "110", "code": "9100LAZKRKO", "NPTG": "E0044829", "ATCO": "090", "CRS_code": "LZB" }, "geometry": { "type": "Point", "coordinates": [ -2.70320861395, 54.750436722540002 ] } },
{ "type": "Feature", "properties": { "Name": "Llanbedr Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanbedr Rail Station", "TIPLOC": "LBDR", "CRS": "LBR", "StopAreaCode": "910GLBDR", "AdministrativeAreaRef": "110", "code": "9100LBDR", "NPTG": "E0054286", "ATCO": "540", "CRS_code": "LBR" }, "geometry": { "type": "Point", "coordinates": [ -4.11019741205, 52.820850947739999 ] } },
{ "type": "Feature", "properties": { "Name": "Loughborough Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Loughborough Junction Rail Station", "TIPLOC": "LBGHJN", "CRS": "LGJ", "StopAreaCode": "910GLBGHJN", "AdministrativeAreaRef": "110", "code": "9100LBGHJN", "NPTG": "E0034628", "ATCO": "490", "CRS_code": "LGJ" }, "geometry": { "type": "Point", "coordinates": [ -0.10218200271, 51.466297645060003 ] } },
{ "type": "Feature", "properties": { "Name": "Loch Eil Outward Bound Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Loch Eil Outward Bound Rail Station", "TIPLOC": "LCEILOB", "CRS": "LHE", "StopAreaCode": "910GLCEILOB", "AdministrativeAreaRef": "110", "code": "9100LCEILOB", "NPTG": "N0067913", "ATCO": "670", "CRS_code": "LHE" }, "geometry": { "type": "Point", "coordinates": [ -5.19157652453, 56.85526776799 ] } },
{ "type": "Feature", "properties": { "Name": "Lochailort Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lochailort Rail Station", "TIPLOC": "LCHALRT", "CRS": "LCL", "StopAreaCode": "910GLCHALRT", "AdministrativeAreaRef": "110", "code": "9100LCHALRT", "NPTG": "N0067915", "ATCO": "670", "CRS_code": "LCL" }, "geometry": { "type": "Point", "coordinates": [ -5.66339494574, 56.880963409940001 ] } },
{ "type": "Feature", "properties": { "Name": "Lichfield City Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lichfield City Rail Station", "TIPLOC": "LCHC", "CRS": "LIC", "StopAreaCode": "910GLCHC", "AdministrativeAreaRef": "110", "code": "9100LCHC", "NPTG": "E0051152", "ATCO": "380", "CRS_code": "LIC" }, "geometry": { "type": "Point", "coordinates": [ -1.82541968627, 52.680146557320001 ] } },
{ "type": "Feature", "properties": { "Name": "Locheilside Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Locheilside Rail Station", "TIPLOC": "LCHESDE", "CRS": "LCS", "StopAreaCode": "910GLCHESDE", "AdministrativeAreaRef": "110", "code": "9100LCHESDE", "NPTG": "N0067897", "ATCO": "670", "CRS_code": "LCS" }, "geometry": { "type": "Point", "coordinates": [ -5.2900364531, 56.85540693662 ] } },
{ "type": "Feature", "properties": { "Name": "Lochgelly Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lochgelly Rail Station", "TIPLOC": "LCHGLLY", "CRS": "LCG", "StopAreaCode": "910GLCHGLLY", "AdministrativeAreaRef": "110", "code": "9100LCHGLLY", "NPTG": "ES002439", "ATCO": "650", "CRS_code": "LCG" }, "geometry": { "type": "Point", "coordinates": [ -3.31293973402, 56.135329644869998 ] } },
{ "type": "Feature", "properties": { "Name": "Lochluichart Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lochluichart Rail Station", "TIPLOC": "LCHLCHR", "CRS": "LCC", "StopAreaCode": "910GLCHLCHR", "AdministrativeAreaRef": "110", "code": "9100LCHLCHR", "NPTG": "N0077746", "ATCO": "670", "CRS_code": "LCC" }, "geometry": { "type": "Point", "coordinates": [ -4.80904880083, 57.621756903230001 ] } },
{ "type": "Feature", "properties": { "Name": "Lichfield Trent Valley High Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lichfield Trent Valley High Level Rail Station", "TIPLOC": "LCHTTVH", "CRS": "LIF", "StopAreaCode": "910GLCHTTVH", "AdministrativeAreaRef": "110", "code": "9100LCHTTVH", "NPTG": "E0051152", "ATCO": "380", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.80024368223, 52.686894056710003 ] } },
{ "type": "Feature", "properties": { "Name": "Lichfield Trent Valley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lichfield Trent Valley Rail Station", "TIPLOC": "LCHTTVL", "CRS": "LTV", "StopAreaCode": "910GLCHTTVL", "AdministrativeAreaRef": "110", "code": "9100LCHTTVL", "NPTG": "E0051152", "ATCO": "380", "CRS_code": "LTV" }, "geometry": { "type": "Point", "coordinates": [ -1.80022888873, 52.686894031820003 ] } },
{ "type": "Feature", "properties": { "Name": "Lochwinnoch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lochwinnoch Rail Station", "TIPLOC": "LCHWNCH", "CRS": "LHW", "StopAreaCode": "910GLCHWNCH", "AdministrativeAreaRef": "110", "code": "9100LCHWNCH", "NPTG": "ES002456", "ATCO": "614", "CRS_code": "LHW" }, "geometry": { "type": "Point", "coordinates": [ -4.6160752721, 55.787155959149999 ] } },
{ "type": "Feature", "properties": { "Name": "Lockerbie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lockerbie Rail Station", "TIPLOC": "LCKRBIE", "CRS": "LOC", "StopAreaCode": "910GLCKRBIE", "AdministrativeAreaRef": "110", "code": "9100LCKRBIE", "NPTG": "ES002459", "ATCO": "680", "CRS_code": "LOC" }, "geometry": { "type": "Point", "coordinates": [ -3.35353281532, 55.123053129180001 ] } },
{ "type": "Feature", "properties": { "Name": "Ledbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ledbury Rail Station", "TIPLOC": "LDBURY", "CRS": "LED", "StopAreaCode": "910GLDBURY", "AdministrativeAreaRef": "110", "code": "9100LDBURY", "NPTG": "E0053277", "ATCO": "209", "CRS_code": "LED" }, "geometry": { "type": "Point", "coordinates": [ -2.42586029855, 52.045250168179997 ] } },
{ "type": "Feature", "properties": { "Name": "Lidlington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lidlington Rail Station", "TIPLOC": "LDLNGTN", "CRS": "LID", "StopAreaCode": "910GLDLNGTN", "AdministrativeAreaRef": "110", "code": "9100LDLNGTN", "NPTG": "E0043898", "ATCO": "021", "CRS_code": "LID" }, "geometry": { "type": "Point", "coordinates": [ -0.55892831899, 52.041536463139998 ] } },
{ "type": "Feature", "properties": { "Name": "Ladywell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ladywell Rail Station", "TIPLOC": "LDYW", "CRS": "LAD", "StopAreaCode": "910GLDYW", "AdministrativeAreaRef": "110", "code": "9100LDYW", "NPTG": "E0034667", "ATCO": "490", "CRS_code": "LAD" }, "geometry": { "type": "Point", "coordinates": [ -0.01904061054, 51.456244324449997 ] } },
{ "type": "Feature", "properties": { "Name": "Lea Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lea Bridge Rail Station", "TIPLOC": "LEABDGE", "CRS": "LEB", "StopAreaCode": "910GLEABDGE", "AdministrativeAreaRef": "110", "code": "9100LEABDGE", "NPTG": "E0034356", "ATCO": "490", "CRS_code": "LEB" }, "geometry": { "type": "Point", "coordinates": [ -0.03667252706, 51.56654780129 ] } },
{ "type": "Feature", "properties": { "Name": "Leagrave Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leagrave Rail Station", "TIPLOC": "LEAGRVE", "CRS": "LEA", "StopAreaCode": "910GLEAGRVE", "AdministrativeAreaRef": "110", "code": "9100LEAGRVE", "NPTG": "E0039084", "ATCO": "029", "CRS_code": "LEA" }, "geometry": { "type": "Point", "coordinates": [ -0.45850257318, 51.905158992620002 ] } },
{ "type": "Feature", "properties": { "Name": "Lea Hall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lea Hall Rail Station", "TIPLOC": "LEAHALL", "CRS": "LEH", "StopAreaCode": "910GLEAHALL", "AdministrativeAreaRef": "110", "code": "9100LEAHALL", "NPTG": "E0031713", "ATCO": "430", "CRS_code": "LEH" }, "geometry": { "type": "Point", "coordinates": [ -1.78601180865, 52.480642895659997 ] } },
{ "type": "Feature", "properties": { "Name": "Lealholm Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lealholm Rail Station", "TIPLOC": "LEALHLM", "CRS": "LHM", "StopAreaCode": "910GLEALHLM", "AdministrativeAreaRef": "110", "code": "9100LEALHLM", "NPTG": "E0019110", "ATCO": "320", "CRS_code": "LHM" }, "geometry": { "type": "Point", "coordinates": [ -0.82571525103, 54.460591845960003 ] } },
{ "type": "Feature", "properties": { "Name": "Leasowe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leasowe Rail Station", "TIPLOC": "LEASOWE", "CRS": "LSW", "StopAreaCode": "910GLEASOWE", "AdministrativeAreaRef": "110", "code": "9100LEASOWE", "NPTG": "E0029777", "ATCO": "280", "CRS_code": "LSW" }, "geometry": { "type": "Point", "coordinates": [ -3.09959370195, 53.408045754349999 ] } },
{ "type": "Feature", "properties": { "Name": "Leeds Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leeds Rail Station", "TIPLOC": "LEEDS", "CRS": "LDS", "StopAreaCode": "910GLEEDS", "AdministrativeAreaRef": "110", "code": "9100LEEDS", "NPTG": "E0057974", "ATCO": "450", "CRS_code": "LDS" }, "geometry": { "type": "Point", "coordinates": [ -1.54802550674, 53.795626564990002 ] } },
{ "type": "Feature", "properties": { "Name": "Lee Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lee Rail Station", "TIPLOC": "LEEE", "CRS": "LEE", "StopAreaCode": "910GLEEE", "AdministrativeAreaRef": "110", "code": "9100LEEE", "NPTG": "E0034668", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.0134928748, 51.449754810350001 ] } },
{ "type": "Feature", "properties": { "Name": "Lea Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lea Green Rail Station", "TIPLOC": "LEGR", "CRS": "LEG", "StopAreaCode": "910GLEGR", "AdministrativeAreaRef": "110", "code": "9100LEGR", "NPTG": "E0029775", "ATCO": "280", "CRS_code": "LEG" }, "geometry": { "type": "Point", "coordinates": [ -2.72497749591, 53.426809547250002 ] } },
{ "type": "Feature", "properties": { "Name": "Leigh (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leigh (Kent) Rail Station", "TIPLOC": "LEIGHK", "CRS": "LIH", "StopAreaCode": "910GLEIGHK", "AdministrativeAreaRef": "110", "code": "9100LEIGHK", "NPTG": "E0047249", "ATCO": "240", "CRS_code": "LIH" }, "geometry": { "type": "Point", "coordinates": [ 0.21049501173, 51.193900867330001 ] } },
{ "type": "Feature", "properties": { "Name": "Lelant Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lelant Rail Station", "TIPLOC": "LELANT", "CRS": "LEL", "StopAreaCode": "910GLELANT", "AdministrativeAreaRef": "110", "code": "9100LELANT", "NPTG": "E0004270", "ATCO": "080", "CRS_code": "LEL" }, "geometry": { "type": "Point", "coordinates": [ -5.43654667312, 50.184124358010003 ] } },
{ "type": "Feature", "properties": { "Name": "Lelant Saltings Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lelant Saltings Rail Station", "TIPLOC": "LELANTS", "CRS": "LTS", "StopAreaCode": "910GLELANTS", "AdministrativeAreaRef": "110", "code": "9100LELANTS", "NPTG": "E0004270", "ATCO": "080", "CRS_code": "LTS" }, "geometry": { "type": "Point", "coordinates": [ -5.44092578538, 50.17877664489 ] } },
{ "type": "Feature", "properties": { "Name": "Lenham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lenham Rail Station", "TIPLOC": "LENHAM", "CRS": "LEN", "StopAreaCode": "910GLENHAM", "AdministrativeAreaRef": "110", "code": "9100LENHAM", "NPTG": "E0047214", "ATCO": "240", "CRS_code": "LEN" }, "geometry": { "type": "Point", "coordinates": [ 0.70775911922, 51.234486104120002 ] } },
{ "type": "Feature", "properties": { "Name": "Lenzie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lenzie Rail Station", "TIPLOC": "LENZIE", "CRS": "LNZ", "StopAreaCode": "910GLENZIE", "AdministrativeAreaRef": "110", "code": "9100LENZIE", "NPTG": "ES002326", "ATCO": "611", "CRS_code": "LNZ" }, "geometry": { "type": "Point", "coordinates": [ -4.15389043381, 55.921318297820001 ] } },
{ "type": "Feature", "properties": { "Name": "Leominster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leominster Rail Station", "TIPLOC": "LEOMNST", "CRS": "LEO", "StopAreaCode": "910GLEOMNST", "AdministrativeAreaRef": "110", "code": "9100LEOMNST", "NPTG": "E0053280", "ATCO": "209", "CRS_code": "LEO" }, "geometry": { "type": "Point", "coordinates": [ -2.73034106314, 52.225681907080002 ] } },
{ "type": "Feature", "properties": { "Name": "Leicester Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leicester Rail Station", "TIPLOC": "LESTER", "CRS": "LEI", "StopAreaCode": "910GLESTER", "AdministrativeAreaRef": "110", "code": "9100LESTER", "NPTG": "E0057189", "ATCO": "260", "CRS_code": "LEI" }, "geometry": { "type": "Point", "coordinates": [ -1.12527544926, 52.631425150280002 ] } },
{ "type": "Feature", "properties": { "Name": "Leatherhead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leatherhead Rail Station", "TIPLOC": "LETHRHD", "CRS": "LHD", "StopAreaCode": "910GLETHRHD", "AdministrativeAreaRef": "110", "code": "9100LETHRHD", "NPTG": "E0025479", "ATCO": "400", "CRS_code": "LHD" }, "geometry": { "type": "Point", "coordinates": [ -0.33323189889, 51.298817816339998 ] } },
{ "type": "Feature", "properties": { "Name": "Leuchars Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leuchars Rail Station", "TIPLOC": "LEUCHRS", "CRS": "LEU", "StopAreaCode": "910GLEUCHRS", "AdministrativeAreaRef": "110", "code": "9100LEUCHRS", "NPTG": "ES002351", "ATCO": "650", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.89371304945, 56.375102631190003 ] } },
{ "type": "Feature", "properties": { "Name": "Lewes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lewes Rail Station", "TIPLOC": "LEWES", "CRS": "LWS", "StopAreaCode": "910GLEWES", "AdministrativeAreaRef": "110", "code": "9100LEWES", "NPTG": "E0046046", "ATCO": "140", "CRS_code": "LWS" }, "geometry": { "type": "Point", "coordinates": [ 0.01133060008, 50.870632024160003 ] } },
{ "type": "Feature", "properties": { "Name": "Lewisham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lewisham Rail Station", "TIPLOC": "LEWISHM", "CRS": "LEW", "StopAreaCode": "910GLEWISHM", "AdministrativeAreaRef": "110", "code": "9100LEWISHM", "NPTG": "N0060462", "ATCO": "490", "CRS_code": "LEW" }, "geometry": { "type": "Point", "coordinates": [ -0.01402433971, 51.465691740719997 ] } },
{ "type": "Feature", "properties": { "Name": "Leyland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leyland Rail Station", "TIPLOC": "LEYLAND", "CRS": "LEY", "StopAreaCode": "910GLEYLAND", "AdministrativeAreaRef": "110", "code": "9100LEYLAND", "NPTG": "E0016428", "ATCO": "250", "CRS_code": "LEY" }, "geometry": { "type": "Point", "coordinates": [ -2.68714509113, 53.698854488919999 ] } },
{ "type": "Feature", "properties": { "Name": "Leyton Midland Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leyton Midland Road Rail Station", "TIPLOC": "LEYTNMR", "CRS": "LEM", "StopAreaCode": "910GLEYTNMR", "AdministrativeAreaRef": "110", "code": "9100LEYTNMR", "NPTG": "N0065232", "ATCO": "490", "CRS_code": "LEM" }, "geometry": { "type": "Point", "coordinates": [ -0.00805055095, 51.56972536512 ] } },
{ "type": "Feature", "properties": { "Name": "Llanfairpwll Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanfairpwll Rail Station", "TIPLOC": "LFPW", "CRS": "LPG", "StopAreaCode": "910GLFPW", "AdministrativeAreaRef": "110", "code": "9100LFPW", "NPTG": "E0038708", "ATCO": "541", "CRS_code": "LPG" }, "geometry": { "type": "Point", "coordinates": [ -4.20921534022, 53.220945048030003 ] } },
{ "type": "Feature", "properties": { "Name": "Langbank Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langbank Rail Station", "TIPLOC": "LGBK", "CRS": "LGB", "StopAreaCode": "910GLGBK", "AdministrativeAreaRef": "110", "code": "9100LGBK", "NPTG": "ES002273", "ATCO": "614", "CRS_code": "LGB" }, "geometry": { "type": "Point", "coordinates": [ -4.58527451921, 55.924519523470003 ] } },
{ "type": "Feature", "properties": { "Name": "Longfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Longfield Rail Station", "TIPLOC": "LGFD", "CRS": "LGF", "StopAreaCode": "910GLGFD", "AdministrativeAreaRef": "110", "code": "9100LGFD", "NPTG": "E0047146", "ATCO": "240", "CRS_code": "LGF" }, "geometry": { "type": "Point", "coordinates": [ 0.30036424222, 51.396155245119999 ] } },
{ "type": "Feature", "properties": { "Name": "Langho Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langho Rail Station", "TIPLOC": "LGHO", "CRS": "LHO", "StopAreaCode": "910GLGHO", "AdministrativeAreaRef": "110", "code": "9100LGHO", "NPTG": "E0016213", "ATCO": "250", "CRS_code": "LHO" }, "geometry": { "type": "Point", "coordinates": [ -2.44865900545, 53.80483180065 ] } },
{ "type": "Feature", "properties": { "Name": "Langley Mill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langley Mill Rail Station", "TIPLOC": "LGML", "CRS": "LGM", "StopAreaCode": "910GLGML", "AdministrativeAreaRef": "110", "code": "9100LGML", "NPTG": "E0006562", "ATCO": "100", "CRS_code": "LGM" }, "geometry": { "type": "Point", "coordinates": [ -1.33124436999, 53.018060309969997 ] } },
{ "type": "Feature", "properties": { "Name": "Langley Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langley Green Rail Station", "TIPLOC": "LGRN", "CRS": "LGG", "StopAreaCode": "910GLGRN", "AdministrativeAreaRef": "110", "code": "9100LGRN", "NPTG": "E0031710", "ATCO": "430", "CRS_code": "LGG" }, "geometry": { "type": "Point", "coordinates": [ -2.0049640419, 52.493871233969998 ] } },
{ "type": "Feature", "properties": { "Name": "Langwith - Whaley Thorns Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langwith - Whaley Thorns Rail Station", "TIPLOC": "LGWITH", "CRS": "LAG", "StopAreaCode": "910GLGWITH", "AdministrativeAreaRef": "110", "code": "9100LGWITH", "NPTG": "N0065007", "ATCO": "100", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.20925873457, 53.232379024719997 ] } },
{ "type": "Feature", "properties": { "Name": "Lingwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lingwood Rail Station", "TIPLOC": "LGWOOD", "CRS": "LGD", "StopAreaCode": "910GLGWOOD", "AdministrativeAreaRef": "110", "code": "9100LGWOOD", "NPTG": "E0017747", "ATCO": "290", "CRS_code": "LGD" }, "geometry": { "type": "Point", "coordinates": [ 1.48994460875, 52.622102067 ] } },
{ "type": "Feature", "properties": { "Name": "Leigh-on-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leigh-on-Sea Rail Station", "TIPLOC": "LHONSEA", "CRS": "LES", "StopAreaCode": "910GLHONSEA", "AdministrativeAreaRef": "110", "code": "9100LHONSEA", "NPTG": "E0053735", "ATCO": "158", "CRS_code": "LES" }, "geometry": { "type": "Point", "coordinates": [ 0.64041138603, 51.541273245840003 ] } },
{ "type": "Feature", "properties": { "Name": "Littlehaven Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Littlehaven Rail Station", "TIPLOC": "LHVN", "CRS": "LVN", "StopAreaCode": "910GLHVN", "AdministrativeAreaRef": "110", "code": "9100LHVN", "NPTG": "E0026708", "ATCO": "440", "CRS_code": "LVN" }, "geometry": { "type": "Point", "coordinates": [ -0.30798045858, 51.079751233080003 ] } },
{ "type": "Feature", "properties": { "Name": "Limehouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Limehouse Rail Station", "TIPLOC": "LIMHSE", "CRS": "LHS", "StopAreaCode": "910GLIMHSE", "AdministrativeAreaRef": "110", "code": "9100LIMHSE", "NPTG": "E0034849", "ATCO": "490", "CRS_code": "LHS" }, "geometry": { "type": "Point", "coordinates": [ -0.03980278445, 51.512536693409999 ] } },
{ "type": "Feature", "properties": { "Name": "Lincoln Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lincoln Central Rail Station", "TIPLOC": "LINCLNC", "CRS": "LCN", "StopAreaCode": "910GLINCLNC", "AdministrativeAreaRef": "110", "code": "9100LINCLNC", "NPTG": "E0057558", "ATCO": "270", "CRS_code": "LCN" }, "geometry": { "type": "Point", "coordinates": [ -0.53992186469, 53.226087147389997 ] } },
{ "type": "Feature", "properties": { "Name": "Lingfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lingfield Rail Station", "TIPLOC": "LINGFLD", "CRS": "LFD", "StopAreaCode": "910GLINGFLD", "AdministrativeAreaRef": "110", "code": "9100LINGFLD", "NPTG": "E0056750", "ATCO": "400", "CRS_code": "LFD" }, "geometry": { "type": "Point", "coordinates": [ -0.0071645465, 51.176452772899999 ] } },
{ "type": "Feature", "properties": { "Name": "Liphook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liphook Rail Station", "TIPLOC": "LIPHOOK", "CRS": "LIP", "StopAreaCode": "910GLIPHOOK", "AdministrativeAreaRef": "110", "code": "9100LIPHOOK", "NPTG": "E0012773", "ATCO": "190", "CRS_code": "LIP" }, "geometry": { "type": "Point", "coordinates": [ -0.8002284029, 51.071316221799997 ] } },
{ "type": "Feature", "properties": { "Name": "Liskeard Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liskeard Rail Station", "TIPLOC": "LISKARD", "CRS": "LSK", "StopAreaCode": "910GLISKARD", "AdministrativeAreaRef": "110", "code": "9100LISKARD", "NPTG": "E0044461", "ATCO": "080", "CRS_code": "LSK" }, "geometry": { "type": "Point", "coordinates": [ -4.46957504492, 50.446864613899997 ] } },
{ "type": "Feature", "properties": { "Name": "Liss Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liss Rail Station", "TIPLOC": "LISS", "CRS": "LIS", "StopAreaCode": "910GLISS", "AdministrativeAreaRef": "110", "code": "9100LISS", "NPTG": "E0046771", "ATCO": "190", "CRS_code": "LIS" }, "geometry": { "type": "Point", "coordinates": [ -0.89286709515, 51.04357107837 ] } },
{ "type": "Feature", "properties": { "Name": "Littleborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Littleborough Rail Station", "TIPLOC": "LITLBRO", "CRS": "LTL", "StopAreaCode": "910GLITLBRO", "AdministrativeAreaRef": "110", "code": "9100LITLBRO", "NPTG": "E0028987", "ATCO": "180", "CRS_code": "LTL" }, "geometry": { "type": "Point", "coordinates": [ -2.09465135371, 53.642995238579999 ] } },
{ "type": "Feature", "properties": { "Name": "London Liverpool Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Liverpool Street Rail Station", "TIPLOC": "LIVST", "CRS": "LST", "StopAreaCode": "910GLIVST", "AdministrativeAreaRef": "110", "code": "9100LIVST", "NPTG": "N0077693", "ATCO": "490", "CRS_code": "LST" }, "geometry": { "type": "Point", "coordinates": [ -0.08142594391, 51.51799102983 ] } },
{ "type": "Feature", "properties": { "Name": "Lockwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lockwood Rail Station", "TIPLOC": "LKWD", "CRS": "LCK", "StopAreaCode": "910GLKWD", "AdministrativeAreaRef": "110", "code": "9100LKWD", "NPTG": "E0033074", "ATCO": "450", "CRS_code": "LCK" }, "geometry": { "type": "Point", "coordinates": [ -1.80079074226, 53.634733239859997 ] } },
{ "type": "Feature", "properties": { "Name": "Llandaf Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandaf Rail Station", "TIPLOC": "LLANDAF", "CRS": "LLN", "StopAreaCode": "910GLLANDAF", "AdministrativeAreaRef": "110", "code": "9100LLANDAF", "NPTG": "E0054009", "ATCO": "571", "CRS_code": "LLN" }, "geometry": { "type": "Point", "coordinates": [ -3.22861229876, 51.508438473070001 ] } },
{ "type": "Feature", "properties": { "Name": "Llanbradach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanbradach Rail Station", "TIPLOC": "LLBRDCH", "CRS": "LNB", "StopAreaCode": "910GLLBRDCH", "AdministrativeAreaRef": "110", "code": "9100LLBRDCH", "NPTG": "E0053982", "ATCO": "554", "CRS_code": "LNB" }, "geometry": { "type": "Point", "coordinates": [ -3.23304757825, 51.603255916009999 ] } },
{ "type": "Feature", "properties": { "Name": "Llanbister Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanbister Road Rail Station", "TIPLOC": "LLBSTRD", "CRS": "LLT", "StopAreaCode": "910GLLBSTRD", "AdministrativeAreaRef": "110", "code": "9100LLBSTRD", "NPTG": "E0054590", "ATCO": "561", "CRS_code": "LLT" }, "geometry": { "type": "Point", "coordinates": [ -3.21342075944, 52.3364250789 ] } },
{ "type": "Feature", "properties": { "Name": "Llandeilo Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandeilo Rail Station", "TIPLOC": "LLDEILO", "CRS": "LLL", "StopAreaCode": "910GLLDEILO", "AdministrativeAreaRef": "110", "code": "9100LLDEILO", "NPTG": "E0054053", "ATCO": "522", "CRS_code": "LLL" }, "geometry": { "type": "Point", "coordinates": [ -3.98688980384, 51.885344337630002 ] } },
{ "type": "Feature", "properties": { "Name": "Llandrindod Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandrindod Rail Station", "TIPLOC": "LLDODW", "CRS": "LLO", "StopAreaCode": "910GLLDODW", "AdministrativeAreaRef": "110", "code": "9100LLDODW", "NPTG": "E0054595", "ATCO": "523", "CRS_code": "LLO" }, "geometry": { "type": "Point", "coordinates": [ -3.37913794821, 52.24235966394 ] } },
{ "type": "Feature", "properties": { "Name": "Llandovery Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandovery Rail Station", "TIPLOC": "LLDVERY", "CRS": "LLV", "StopAreaCode": "910GLLDVERY", "AdministrativeAreaRef": "110", "code": "9100LLDVERY", "NPTG": "E0054054", "ATCO": "522", "CRS_code": "LLV" }, "geometry": { "type": "Point", "coordinates": [ -3.8028288559, 51.99531246427 ] } },
{ "type": "Feature", "properties": { "Name": "Llandybie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandybie Rail Station", "TIPLOC": "LLDYBIE", "CRS": "LLI", "StopAreaCode": "910GLLDYBIE", "AdministrativeAreaRef": "110", "code": "9100LLDYBIE", "NPTG": "E0054055", "ATCO": "522", "CRS_code": "LLI" }, "geometry": { "type": "Point", "coordinates": [ -4.00364726744, 51.821035467290002 ] } },
{ "type": "Feature", "properties": { "Name": "Llangadog Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llangadog Rail Station", "TIPLOC": "LLGADOG", "CRS": "LLG", "StopAreaCode": "910GLLGADOG", "AdministrativeAreaRef": "110", "code": "9100LLGADOG", "NPTG": "E0036080", "ATCO": "522", "CRS_code": "LLG" }, "geometry": { "type": "Point", "coordinates": [ -3.89314702645, 51.940213048849998 ] } },
{ "type": "Feature", "properties": { "Name": "Llangammarch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llangammarch Rail Station", "TIPLOC": "LLGMMRW", "CRS": "LLM", "StopAreaCode": "910GLLGMMRW", "AdministrativeAreaRef": "110", "code": "9100LLGMMRW", "NPTG": "N0071452", "ATCO": "561", "CRS_code": "LLM" }, "geometry": { "type": "Point", "coordinates": [ -3.55481657366, 52.11429840852 ] } },
{ "type": "Feature", "properties": { "Name": "Llangennech Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llangennech Rail Station", "TIPLOC": "LLGNNCH", "CRS": "LLH", "StopAreaCode": "910GLLGNNCH", "AdministrativeAreaRef": "110", "code": "9100LLGNNCH", "NPTG": "E0054070", "ATCO": "522", "CRS_code": "LLH" }, "geometry": { "type": "Point", "coordinates": [ -4.07892938603, 51.691136157099997 ] } },
{ "type": "Feature", "properties": { "Name": "Llangynllo Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llangynllo Rail Station", "TIPLOC": "LLGUNLO", "CRS": "LGO", "StopAreaCode": "910GLLGUNLO", "AdministrativeAreaRef": "110", "code": "9100LLGUNLO", "NPTG": "N0071457", "ATCO": "561", "CRS_code": "LGO" }, "geometry": { "type": "Point", "coordinates": [ -3.16136919777, 52.349625139739999 ] } },
{ "type": "Feature", "properties": { "Name": "Llanharan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanharan Rail Station", "TIPLOC": "LLHARAN", "CRS": "LLR", "StopAreaCode": "910GLLHARAN", "AdministrativeAreaRef": "110", "code": "9100LLHARAN", "NPTG": "E0054669", "ATCO": "552", "CRS_code": "LLR" }, "geometry": { "type": "Point", "coordinates": [ -3.44077827861, 51.537585739619999 ] } },
{ "type": "Feature", "properties": { "Name": "Abertillery High Street", "Status": "inactive", "Type": "RLY", "Station_Name": "Abertillery High Street", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100LLHLABY", "NPTG": "E0053943", "ATCO": "532", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.13528318702, 51.730124939600003 ] } },
{ "type": "Feature", "properties": { "Name": "Llanhilleth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanhilleth Rail Station", "TIPLOC": "LLHLETH", "CRS": "LTH", "StopAreaCode": "910GLLHLETH", "AdministrativeAreaRef": "110", "code": "9100LLHLETH", "NPTG": "E0053948", "ATCO": "532", "CRS_code": "LTH" }, "geometry": { "type": "Point", "coordinates": [ -3.1351875865, 51.700300924929998 ] } },
{ "type": "Feature", "properties": { "Name": "Llanishen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanishen Rail Station", "TIPLOC": "LLISHEN", "CRS": "LLS", "StopAreaCode": "910GLLISHEN", "AdministrativeAreaRef": "110", "code": "9100LLISHEN", "NPTG": "E0054011", "ATCO": "571", "CRS_code": "LLS" }, "geometry": { "type": "Point", "coordinates": [ -3.18197833481, 51.532746226020002 ] } },
{ "type": "Feature", "properties": { "Name": "Llanelli Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanelli Rail Station", "TIPLOC": "LLNLLI", "CRS": "LLE", "StopAreaCode": "910GLLNLLI", "AdministrativeAreaRef": "110", "code": "9100LLNLLI", "NPTG": "E0054059", "ATCO": "522", "CRS_code": "LLE" }, "geometry": { "type": "Point", "coordinates": [ -4.16130348862, 51.673866674460001 ] } },
{ "type": "Feature", "properties": { "Name": "Llansamlet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llansamlet Rail Station", "TIPLOC": "LLNSMLT", "CRS": "LAS", "StopAreaCode": "910GLLNSMLT", "AdministrativeAreaRef": "110", "code": "9100LLNSMLT", "NPTG": "E0054714", "ATCO": "581", "CRS_code": "LAS" }, "geometry": { "type": "Point", "coordinates": [ -3.88468522957, 51.661502596879998 ] } },
{ "type": "Feature", "properties": { "Name": "Llantwit Major Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llantwit Major Rail Station", "TIPLOC": "LLNWTMR", "CRS": "LWM", "StopAreaCode": "910GLLNWTMR", "AdministrativeAreaRef": "110", "code": "9100LLNWTMR", "NPTG": "E0054762", "ATCO": "572", "CRS_code": "LWM" }, "geometry": { "type": "Point", "coordinates": [ -3.48161717794, 51.409747758249999 ] } },
{ "type": "Feature", "properties": { "Name": "Llanwrda Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanwrda Rail Station", "TIPLOC": "LLWRDA", "CRS": "LNR", "StopAreaCode": "910GLLWRDA", "AdministrativeAreaRef": "110", "code": "9100LLWRDA", "NPTG": "E0054083", "ATCO": "522", "CRS_code": "LNR" }, "geometry": { "type": "Point", "coordinates": [ -3.8716738639, 51.962586734989998 ] } },
{ "type": "Feature", "properties": { "Name": "Llanwrtyd Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanwrtyd Rail Station", "TIPLOC": "LLWRTYW", "CRS": "LNW", "StopAreaCode": "910GLLWRTYW", "AdministrativeAreaRef": "110", "code": "9100LLWRTYW", "NPTG": "E0054626", "ATCO": "561", "CRS_code": "LNW" }, "geometry": { "type": "Point", "coordinates": [ -3.6321633505, 52.1047108932 ] } },
{ "type": "Feature", "properties": { "Name": "Llwynypia Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llwynypia Rail Station", "TIPLOC": "LLWYNYP", "CRS": "LLY", "StopAreaCode": "910GLLWYNYP", "AdministrativeAreaRef": "110", "code": "9100LLWYNYP", "NPTG": "E0054674", "ATCO": "552", "CRS_code": "LLY" }, "geometry": { "type": "Point", "coordinates": [ -3.45351344563, 51.634002564729997 ] } },
{ "type": "Feature", "properties": { "Name": "Leamington Spa Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leamington Spa Rail Station", "TIPLOC": "LMNGTNS", "CRS": "LMS", "StopAreaCode": "910GLMNGTNS", "AdministrativeAreaRef": "110", "code": "9100LMNGTNS", "NPTG": "N0072514", "ATCO": "420", "CRS_code": "LMS" }, "geometry": { "type": "Point", "coordinates": [ -1.53620999419, 52.284490388240002 ] } },
{ "type": "Feature", "properties": { "Name": "Lymington Pier Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lymington Pier Rail Station", "TIPLOC": "LMTNPIR", "CRS": "LYP", "StopAreaCode": "910GLMTNPIR", "AdministrativeAreaRef": "110", "code": "9100LMTNPIR", "NPTG": "E0013221", "ATCO": "190", "CRS_code": "LYP" }, "geometry": { "type": "Point", "coordinates": [ -1.52944689116, 50.758300456370002 ] } },
{ "type": "Feature", "properties": { "Name": "Lymington Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lymington Town Rail Station", "TIPLOC": "LMTNTWN", "CRS": "LYT", "StopAreaCode": "910GLMTNTWN", "AdministrativeAreaRef": "110", "code": "9100LMTNTWN", "NPTG": "E0013221", "ATCO": "190", "CRS_code": "LYT" }, "geometry": { "type": "Point", "coordinates": [ -1.53716196819, 50.760912206290001 ] } },
{ "type": "Feature", "properties": { "Name": "Llanaber Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanaber Rail Station", "TIPLOC": "LNAB", "CRS": "LLA", "StopAreaCode": "910GLNAB", "AdministrativeAreaRef": "110", "code": "9100LNAB", "NPTG": "E0037595", "ATCO": "540", "CRS_code": "LLA" }, "geometry": { "type": "Point", "coordinates": [ -4.07717573786, 52.741503003689999 ] } },
{ "type": "Feature", "properties": { "Name": "Lancing Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lancing Rail Station", "TIPLOC": "LNCG", "CRS": "LAC", "StopAreaCode": "910GLNCG", "AdministrativeAreaRef": "110", "code": "9100LNCG", "NPTG": "E0052051", "ATCO": "440", "CRS_code": "LAC" }, "geometry": { "type": "Point", "coordinates": [ -0.32310918715, 50.827083276929997 ] } },
{ "type": "Feature", "properties": { "Name": "Llandecwyn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandecwyn Rail Station", "TIPLOC": "LNDC", "CRS": "LLC", "StopAreaCode": "910GLNDC", "AdministrativeAreaRef": "110", "code": "9100LNDC", "NPTG": "E0037598", "ATCO": "540", "CRS_code": "LLC" }, "geometry": { "type": "Point", "coordinates": [ -4.0570346764, 52.920684839300002 ] } },
{ "type": "Feature", "properties": { "Name": "London Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Bridge Rail Station", "TIPLOC": "LNDNBDC", "CRS": "LBG", "StopAreaCode": "910GLNDNBDC", "AdministrativeAreaRef": "110", "code": "9100LNDNBDC", "NPTG": "N0077694", "ATCO": "490", "CRS_code": "LBG" }, "geometry": { "type": "Point", "coordinates": [ -0.08609200483, 51.505019040500002 ] } },
{ "type": "Feature", "properties": { "Name": "London Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Bridge Rail Station", "TIPLOC": "LNDNBDE", "CRS": "LBG", "StopAreaCode": "910GLNDNBDE", "AdministrativeAreaRef": "110", "code": "9100LNDNBDE", "NPTG": "N0077694", "ATCO": "490", "CRS_code": "LBG" }, "geometry": { "type": "Point", "coordinates": [ -0.0860882393, 51.505108904860002 ] } },
{ "type": "Feature", "properties": { "Name": "Llandanwg Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandanwg Rail Station", "TIPLOC": "LNDW", "CRS": "LDN", "StopAreaCode": "910GLNDW", "AdministrativeAreaRef": "110", "code": "9100LNDW", "NPTG": "E0054284", "ATCO": "540", "CRS_code": "LDN" }, "geometry": { "type": "Point", "coordinates": [ -4.12385669783, 52.836161790010003 ] } },
{ "type": "Feature", "properties": { "Name": "Landywood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Landywood Rail Station", "TIPLOC": "LNDYW", "CRS": "LAW", "StopAreaCode": "910GLNDYW", "AdministrativeAreaRef": "110", "code": "9100LNDYW", "NPTG": "E0023959", "ATCO": "380", "CRS_code": "LAW" }, "geometry": { "type": "Point", "coordinates": [ -2.02072768406, 52.656540135919997 ] } },
{ "type": "Feature", "properties": { "Name": "Long Buckby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Long Buckby Rail Station", "TIPLOC": "LNGBKBY", "CRS": "LBK", "StopAreaCode": "910GLNGBKBY", "AdministrativeAreaRef": "110", "code": "9100LNGBKBY", "NPTG": "E0049645", "ATCO": "300", "CRS_code": "LBK" }, "geometry": { "type": "Point", "coordinates": [ -1.08646676322, 52.294716203009997 ] } },
{ "type": "Feature", "properties": { "Name": "Longcross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Longcross Rail Station", "TIPLOC": "LNGCROS", "CRS": "LNG", "StopAreaCode": "910GLNGCROS", "AdministrativeAreaRef": "110", "code": "9100LNGCROS", "NPTG": "E0025602", "ATCO": "400", "CRS_code": "LNG" }, "geometry": { "type": "Point", "coordinates": [ -0.59456992576, 51.385172838320003 ] } },
{ "type": "Feature", "properties": { "Name": "Long Eaton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Long Eaton Rail Station", "TIPLOC": "LNGEATN", "CRS": "LGE", "StopAreaCode": "910GLNGEATN", "AdministrativeAreaRef": "110", "code": "9100LNGEATN", "NPTG": "E0007000", "ATCO": "100", "CRS_code": "LGE" }, "geometry": { "type": "Point", "coordinates": [ -1.28752050078, 52.884987725729999 ] } },
{ "type": "Feature", "properties": { "Name": "Longniddry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Longniddry Rail Station", "TIPLOC": "LNGNDRY", "CRS": "LND", "StopAreaCode": "910GLNGNDRY", "AdministrativeAreaRef": "110", "code": "9100LNGNDRY", "NPTG": "ES002484", "ATCO": "627", "CRS_code": "LND" }, "geometry": { "type": "Point", "coordinates": [ -2.88834304842, 55.976484344219998 ] } },
{ "type": "Feature", "properties": { "Name": "Longport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Longport Rail Station", "TIPLOC": "LNGP", "CRS": "LPT", "StopAreaCode": "910GLNGP", "AdministrativeAreaRef": "110", "code": "9100LNGP", "NPTG": "E0042160", "ATCO": "389", "CRS_code": "LPT" }, "geometry": { "type": "Point", "coordinates": [ -2.21644784664, 53.041881728939998 ] } },
{ "type": "Feature", "properties": { "Name": "Linlithgow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Linlithgow Rail Station", "TIPLOC": "LNLTHGW", "CRS": "LIN", "StopAreaCode": "910GLNLTHGW", "AdministrativeAreaRef": "110", "code": "9100LNLTHGW", "NPTG": "ES002375", "ATCO": "669", "CRS_code": "LIN" }, "geometry": { "type": "Point", "coordinates": [ -3.59585212554, 55.976452358529997 ] } },
{ "type": "Feature", "properties": { "Name": "Llanrwst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llanrwst Rail Station", "TIPLOC": "LNRWST", "CRS": "LWR", "StopAreaCode": "910GLNRWST", "AdministrativeAreaRef": "110", "code": "9100LNRWST", "NPTG": "E0054176", "ATCO": "513", "CRS_code": "LWR" }, "geometry": { "type": "Point", "coordinates": [ -3.79440104421, 53.138850267789998 ] } },
{ "type": "Feature", "properties": { "Name": "Langside Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langside Rail Station", "TIPLOC": "LNSD", "CRS": "LGS", "StopAreaCode": "910GLNSD", "AdministrativeAreaRef": "110", "code": "9100LNSD", "NPTG": "N0068138", "ATCO": "615", "CRS_code": "LGS" }, "geometry": { "type": "Point", "coordinates": [ -4.27734005577, 55.821132976709997 ] } },
{ "type": "Feature", "properties": { "Name": "Longton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Longton Rail Station", "TIPLOC": "LNTN", "CRS": "LGN", "StopAreaCode": "910GLNTN", "AdministrativeAreaRef": "110", "code": "9100LNTN", "NPTG": "E0042161", "ATCO": "389", "CRS_code": "LGN" }, "geometry": { "type": "Point", "coordinates": [ -2.1370105607, 52.989952748820002 ] } },
{ "type": "Feature", "properties": { "Name": "Loch Awe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Loch Awe Rail Station", "TIPLOC": "LOCHAWE", "CRS": "LHA", "StopAreaCode": "910GLOCHAWE", "AdministrativeAreaRef": "110", "code": "9100LOCHAWE", "NPTG": "N0068484", "ATCO": "607", "CRS_code": "LHA" }, "geometry": { "type": "Point", "coordinates": [ -5.04197537182, 56.402016098120001 ] } },
{ "type": "Feature", "properties": { "Name": "Loughborough (Leics) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Loughborough (Leics) Rail Station", "TIPLOC": "LOGHBRO", "CRS": "LBO", "StopAreaCode": "910GLOGHBRO", "AdministrativeAreaRef": "110", "code": "9100LOGHBRO", "NPTG": "E0016641", "ATCO": "260", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.19592848517, 52.778954502440001 ] } },
{ "type": "Feature", "properties": { "Name": "Longbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Longbridge Rail Station", "TIPLOC": "LONB", "CRS": "LOB", "StopAreaCode": "910GLONB", "AdministrativeAreaRef": "110", "code": "9100LONB", "NPTG": "E0031740", "ATCO": "200", "CRS_code": "LOB" }, "geometry": { "type": "Point", "coordinates": [ -1.98129153073, 52.396418194100001 ] } },
{ "type": "Feature", "properties": { "Name": "London Fields Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Fields Rail Station", "TIPLOC": "LONFLDS", "CRS": "LOF", "StopAreaCode": "910GLONFLDS", "AdministrativeAreaRef": "110", "code": "9100LONFLDS", "NPTG": "N0060500", "ATCO": "490", "CRS_code": "LOF" }, "geometry": { "type": "Point", "coordinates": [ -0.05775329196, 51.541152981659998 ] } },
{ "type": "Feature", "properties": { "Name": "Longbeck Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Longbeck Rail Station", "TIPLOC": "LONGBCK", "CRS": "LGK", "StopAreaCode": "910GLONGBCK", "AdministrativeAreaRef": "110", "code": "9100LONGBCK", "NPTG": "E0041561", "ATCO": "078", "CRS_code": "LGK" }, "geometry": { "type": "Point", "coordinates": [ -1.03047285909, 54.589218072839998 ] } },
{ "type": "Feature", "properties": { "Name": "Looe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Looe Rail Station", "TIPLOC": "LOOE", "CRS": "LOO", "StopAreaCode": "910GLOOE", "AdministrativeAreaRef": "110", "code": "9100LOOE", "NPTG": "E0044462", "ATCO": "080", "CRS_code": "LOO" }, "geometry": { "type": "Point", "coordinates": [ -4.4561637261, 50.359225370460003 ] } },
{ "type": "Feature", "properties": { "Name": "Lostock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lostock Rail Station", "TIPLOC": "LOSTCKP", "CRS": "LOT", "StopAreaCode": "910GLOSTCKP", "AdministrativeAreaRef": "110", "code": "9100LOSTCKP", "NPTG": "E0028995", "ATCO": "180", "CRS_code": "LOT" }, "geometry": { "type": "Point", "coordinates": [ -2.49426609338, 53.572927149599998 ] } },
{ "type": "Feature", "properties": { "Name": "Lowdham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lowdham Rail Station", "TIPLOC": "LOWDHAM", "CRS": "LOW", "StopAreaCode": "910GLOWDHAM", "AdministrativeAreaRef": "110", "code": "9100LOWDHAM", "NPTG": "E0056481", "ATCO": "330", "CRS_code": "LOW" }, "geometry": { "type": "Point", "coordinates": [ -0.99841898344, 53.006284857520001 ] } },
{ "type": "Feature", "properties": { "Name": "Low Moor Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Low Moor Rail Station", "TIPLOC": "LOWMOOR", "CRS": "LMR", "StopAreaCode": "910GLOWMOOR", "AdministrativeAreaRef": "110", "code": "9100LOWMOOR", "NPTG": "E0033102", "ATCO": "450", "CRS_code": "LMR" }, "geometry": { "type": "Point", "coordinates": [ -1.75340384946, 53.749926983290003 ] } },
{ "type": "Feature", "properties": { "Name": "Lowestoft Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lowestoft Rail Station", "TIPLOC": "LOWSTFT", "CRS": "LWT", "StopAreaCode": "910GLOWSTFT", "AdministrativeAreaRef": "110", "code": "9100LOWSTFT", "NPTG": "E0025243", "ATCO": "390", "CRS_code": "LWT" }, "geometry": { "type": "Point", "coordinates": [ 1.74970804572, 52.474437832260001 ] } },
{ "type": "Feature", "properties": { "Name": "Long Preston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Long Preston Rail Station", "TIPLOC": "LPRESTN", "CRS": "LPR", "StopAreaCode": "910GLPRESTN", "AdministrativeAreaRef": "110", "code": "9100LPRESTN", "NPTG": "E0048916", "ATCO": "320", "CRS_code": "LPR" }, "geometry": { "type": "Point", "coordinates": [ -2.25559197103, 54.016837288719998 ] } },
{ "type": "Feature", "properties": { "Name": "London Road (Guildford) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Road (Guildford) Rail Station", "TIPLOC": "LRDGFD", "CRS": "LRD", "StopAreaCode": "910GLRDGFD", "AdministrativeAreaRef": "110", "code": "9100LRDGFD", "NPTG": "E0056720", "ATCO": "400", "CRS_code": "LRD" }, "geometry": { "type": "Point", "coordinates": [ -0.56506889443, 51.240649710120003 ] } },
{ "type": "Feature", "properties": { "Name": "Laurencekirk Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Laurencekirk Rail Station", "TIPLOC": "LRNCKRK", "CRS": "LAU", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100LRNCKRK", "NPTG": "ES002306", "ATCO": "630", "CRS_code": "LAU" }, "geometry": { "type": "Point", "coordinates": [ -2.46592556332, 56.836346870100002 ] } },
{ "type": "Feature", "properties": { "Name": "Lostock Gralam Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lostock Gralam Rail Station", "TIPLOC": "LSTG", "CRS": "LTG", "StopAreaCode": "910GLSTG", "AdministrativeAreaRef": "110", "code": "9100LSTG", "NPTG": "E0044425", "ATCO": "061", "CRS_code": "LTG" }, "geometry": { "type": "Point", "coordinates": [ -2.46520298229, 53.267664674709998 ] } },
{ "type": "Feature", "properties": { "Name": "Lostock Hall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lostock Hall Rail Station", "TIPLOC": "LSTH", "CRS": "LOH", "StopAreaCode": "910GLSTH", "AdministrativeAreaRef": "110", "code": "9100LSTH", "NPTG": "E0016430", "ATCO": "250", "CRS_code": "LOH" }, "geometry": { "type": "Point", "coordinates": [ -2.68748333998, 53.724244434150002 ] } },
{ "type": "Feature", "properties": { "Name": "Lostwithiel Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lostwithiel Rail Station", "TIPLOC": "LSTWTHL", "CRS": "LOS", "StopAreaCode": "910GLSTWTHL", "AdministrativeAreaRef": "110", "code": "9100LSTWTHL", "NPTG": "E0044641", "ATCO": "080", "CRS_code": "LOS" }, "geometry": { "type": "Point", "coordinates": [ -4.66596577304, 50.407177814119997 ] } },
{ "type": "Feature", "properties": { "Name": "Lower Sydenham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lower Sydenham Rail Station", "TIPLOC": "LSYDNHM", "CRS": "LSY", "StopAreaCode": "910GLSYDNHM", "AdministrativeAreaRef": "110", "code": "9100LSYDNHM", "NPTG": "E0034670", "ATCO": "490", "CRS_code": "LSY" }, "geometry": { "type": "Point", "coordinates": [ -0.03334540405, 51.424830764349998 ] } },
{ "type": "Feature", "properties": { "Name": "Letchworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Letchworth Rail Station", "TIPLOC": "LTCE", "CRS": "LET", "StopAreaCode": "910GLTCE", "AdministrativeAreaRef": "110", "code": "9100LTCE", "NPTG": "E0014093", "ATCO": "210", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.22926408189, 51.979964002190002 ] } },
{ "type": "Feature", "properties": { "Name": "Lisvane & Thornhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lisvane & Thornhill Rail Station", "TIPLOC": "LTHH", "CRS": "LVT", "StopAreaCode": "910GLTHH", "AdministrativeAreaRef": "110", "code": "9100LTHH", "NPTG": "E0054008", "ATCO": "571", "CRS_code": "LVT" }, "geometry": { "type": "Point", "coordinates": [ -3.18560179959, 51.54457888049 ] } },
{ "type": "Feature", "properties": { "Name": "Littlehampton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Littlehampton Rail Station", "TIPLOC": "LTLHMPT", "CRS": "LIT", "StopAreaCode": "910GLTLHMPT", "AdministrativeAreaRef": "110", "code": "9100LTLHMPT", "NPTG": "E0052071", "ATCO": "440", "CRS_code": "LIT" }, "geometry": { "type": "Point", "coordinates": [ -0.54599474467, 50.810108896720003 ] } },
{ "type": "Feature", "properties": { "Name": "Little Kimble Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Little Kimble Rail Station", "TIPLOC": "LTLKMBL", "CRS": "LTK", "StopAreaCode": "910GLTLKMBL", "AdministrativeAreaRef": "110", "code": "9100LTLKMBL", "NPTG": "E0059810", "ATCO": "040", "CRS_code": "LTK" }, "geometry": { "type": "Point", "coordinates": [ -0.8084523362, 51.752231817670001 ] } },
{ "type": "Feature", "properties": { "Name": "Littleport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Littleport Rail Station", "TIPLOC": "LTLPORT", "CRS": "LTP", "StopAreaCode": "910GLTLPORT", "AdministrativeAreaRef": "110", "code": "9100LTLPORT", "NPTG": "E0043676", "ATCO": "050", "CRS_code": "LTP" }, "geometry": { "type": "Point", "coordinates": [ 0.31655932377, 52.462380523939999 ] } },
{ "type": "Feature", "properties": { "Name": "Little Sutton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Little Sutton Rail Station", "TIPLOC": "LTLSUTN", "CRS": "LTT", "StopAreaCode": "910GLTLSUTN", "AdministrativeAreaRef": "110", "code": "9100LTLSUTN", "NPTG": "E0001814", "ATCO": "061", "CRS_code": "LTT" }, "geometry": { "type": "Point", "coordinates": [ -2.94329238719, 53.285514859860001 ] } },
{ "type": "Feature", "properties": { "Name": "Leighton Buzzard Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leighton Buzzard Rail Station", "TIPLOC": "LTNBZRD", "CRS": "LBZ", "StopAreaCode": "910GLTNBZRD", "AdministrativeAreaRef": "110", "code": "9100LTNBZRD", "NPTG": "E0055283", "ATCO": "021", "CRS_code": "LBZ" }, "geometry": { "type": "Point", "coordinates": [ -0.67700729012, 51.916305767860003 ] } },
{ "type": "Feature", "properties": { "Name": "Ludlow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ludlow Rail Station", "TIPLOC": "LUDLOW", "CRS": "LUD", "StopAreaCode": "910GLUDLOW", "AdministrativeAreaRef": "110", "code": "9100LUDLOW", "NPTG": "E0050744", "ATCO": "350", "CRS_code": "LUD" }, "geometry": { "type": "Point", "coordinates": [ -2.71621681804, 52.371278305419999 ] } },
{ "type": "Feature", "properties": { "Name": "Llandudno Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llandudno Rail Station", "TIPLOC": "LUDO", "CRS": "LLD", "StopAreaCode": "910GLUDO", "AdministrativeAreaRef": "110", "code": "9100LUDO", "NPTG": "E0054169", "ATCO": "513", "CRS_code": "LLD" }, "geometry": { "type": "Point", "coordinates": [ -3.82700117024, 53.320916466180002 ] } },
{ "type": "Feature", "properties": { "Name": "Luton Airport Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Luton Airport Parkway Rail Station", "TIPLOC": "LUTOAPY", "CRS": "LTN", "StopAreaCode": "910GLUTOAPY", "AdministrativeAreaRef": "110", "code": "9100LUTOAPY", "NPTG": "N0060524", "ATCO": "029", "CRS_code": "LTN" }, "geometry": { "type": "Point", "coordinates": [ -0.39588093634, 51.872437556809999 ] } },
{ "type": "Feature", "properties": { "Name": "Luton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Luton Rail Station", "TIPLOC": "LUTON", "CRS": "LUT", "StopAreaCode": "910GLUTON", "AdministrativeAreaRef": "110", "code": "9100LUTON", "NPTG": "E0057190", "ATCO": "029", "CRS_code": "LUT" }, "geometry": { "type": "Point", "coordinates": [ -0.41404014163, 51.882304850719997 ] } },
{ "type": "Feature", "properties": { "Name": "Luxulyan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Luxulyan Rail Station", "TIPLOC": "LUXULYN", "CRS": "LUX", "StopAreaCode": "910GLUXULYN", "AdministrativeAreaRef": "110", "code": "9100LUXULYN", "NPTG": "E0044642", "ATCO": "080", "CRS_code": "LUX" }, "geometry": { "type": "Point", "coordinates": [ -4.74738389327, 50.390035392409999 ] } },
{ "type": "Feature", "properties": { "Name": "Levenshulme Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Levenshulme Rail Station", "TIPLOC": "LVHM", "CRS": "LVM", "StopAreaCode": "910GLVHM", "AdministrativeAreaRef": "110", "code": "9100LVHM", "NPTG": "E0028951", "ATCO": "180", "CRS_code": "LVM" }, "geometry": { "type": "Point", "coordinates": [ -2.19266965586, 53.444162881570001 ] } },
{ "type": "Feature", "properties": { "Name": "Livingston North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Livingston North Rail Station", "TIPLOC": "LVNSTNN", "CRS": "LSN", "StopAreaCode": "910GLVNSTNN", "AdministrativeAreaRef": "110", "code": "9100LVNSTNN", "NPTG": "ES001009", "ATCO": "629", "CRS_code": "LSN" }, "geometry": { "type": "Point", "coordinates": [ -3.54435085169, 55.901383637400002 ] } },
{ "type": "Feature", "properties": { "Name": "Livingston South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Livingston South Rail Station", "TIPLOC": "LVNSTNS", "CRS": "LVG", "StopAreaCode": "910GLVNSTNS", "AdministrativeAreaRef": "110", "code": "9100LVNSTNS", "NPTG": "ES002729", "ATCO": "629", "CRS_code": "LVG" }, "geometry": { "type": "Point", "coordinates": [ -3.5015691465, 55.871693007749997 ] } },
{ "type": "Feature", "properties": { "Name": "Liverpool Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liverpool Central Rail Station", "TIPLOC": "LVRPLCH", "CRS": "LVC", "StopAreaCode": "910GLVRPLCH", "AdministrativeAreaRef": "110", "code": "9100LVRPLCH", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "LVC" }, "geometry": { "type": "Point", "coordinates": [ -2.97916810923, 53.40459975548 ] } },
{ "type": "Feature", "properties": { "Name": "Liverpool Central Loop Line", "Status": "active", "Type": "RLY", "Station_Name": "Liverpool Central Loop Line", "TIPLOC": "LVRPLCL", "CRS": "LVC", "StopAreaCode": "910GLVRPLCH", "AdministrativeAreaRef": "110", "code": "9100LVRPLCL", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.97915307006, 53.404599878829998 ] } },
{ "type": "Feature", "properties": { "Name": "Liverpool Lime Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liverpool Lime Street Rail Station", "TIPLOC": "LVRPLSH", "CRS": "LIV", "StopAreaCode": "910GLVRPLSH", "AdministrativeAreaRef": "110", "code": "9100LVRPLSH", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "LIV" }, "geometry": { "type": "Point", "coordinates": [ -2.97772602818, 53.40730825272 ] } },
{ "type": "Feature", "properties": { "Name": "Liverpool Lime Street Low Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liverpool Lime Street Low Level Rail Station", "TIPLOC": "LVRPLSL", "CRS": "LVL", "StopAreaCode": "910GLVRPLSH", "AdministrativeAreaRef": "110", "code": "9100LVRPLSL", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.9777466427, 53.408206976130003 ] } },
{ "type": "Feature", "properties": { "Name": "Liverpool South Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Liverpool South Parkway Rail Station", "TIPLOC": "LVRPSPY", "CRS": "LPY", "StopAreaCode": "910GLVRPSPY", "AdministrativeAreaRef": "110", "code": "9100LVRPSPY", "NPTG": "E0029706", "ATCO": "280", "CRS_code": "LPY" }, "geometry": { "type": "Point", "coordinates": [ -2.8891427882, 53.357743978750001 ] } },
{ "type": "Feature", "properties": { "Name": "Langwathby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Langwathby Rail Station", "TIPLOC": "LWBY", "CRS": "LGW", "StopAreaCode": "910GLWBY", "AdministrativeAreaRef": "110", "code": "9100LWBY", "NPTG": "E0044828", "ATCO": "090", "CRS_code": "LGW" }, "geometry": { "type": "Point", "coordinates": [ -2.66368369186, 54.694357429349999 ] } },
{ "type": "Feature", "properties": { "Name": "Lydney Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lydney Rail Station", "TIPLOC": "LYDNEY", "CRS": "LYD", "StopAreaCode": "910GLYDNEY", "AdministrativeAreaRef": "110", "code": "9100LYDNEY", "NPTG": "E0046573", "ATCO": "160", "CRS_code": "LYD" }, "geometry": { "type": "Point", "coordinates": [ -2.53086366983, 51.714135805730002 ] } },
{ "type": "Feature", "properties": { "Name": "Lye (West Midlands) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lye (West Midlands) Rail Station", "TIPLOC": "LYEE", "CRS": "LYE", "StopAreaCode": "910GLYEE", "AdministrativeAreaRef": "110", "code": "9100LYEE", "NPTG": "E0031756", "ATCO": "430", "CRS_code": "LYE" }, "geometry": { "type": "Point", "coordinates": [ -2.11592923617, 52.459922127349998 ] } },
{ "type": "Feature", "properties": { "Name": "Lympstone Commando Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lympstone Commando Rail Station", "TIPLOC": "LYMPSTC", "CRS": "LYC", "StopAreaCode": "910GLYMPSTC", "AdministrativeAreaRef": "110", "code": "9100LYMPSTC", "NPTG": "E0045253", "ATCO": "110", "CRS_code": "LYC" }, "geometry": { "type": "Point", "coordinates": [ -3.44083970574, 50.662237437720002 ] } },
{ "type": "Feature", "properties": { "Name": "Lympstone Village Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lympstone Village Rail Station", "TIPLOC": "LYMPSTN", "CRS": "LYM", "StopAreaCode": "910GLYMPSTN", "AdministrativeAreaRef": "110", "code": "9100LYMPSTN", "NPTG": "E0045253", "ATCO": "110", "CRS_code": "LYM" }, "geometry": { "type": "Point", "coordinates": [ -3.4310066055, 50.648293078179996 ] } },
{ "type": "Feature", "properties": { "Name": "Ashurst New Forest Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ashurst New Forest Rail Station", "TIPLOC": "LYNDHRD", "CRS": "ANF", "StopAreaCode": "910GLYNDHRD", "AdministrativeAreaRef": "110", "code": "9100LYNDHRD", "NPTG": "N0060789", "ATCO": "190", "CRS_code": "ANF" }, "geometry": { "type": "Point", "coordinates": [ -1.52663069321, 50.889850379480002 ] } },
{ "type": "Feature", "properties": { "Name": "Llwyngwril Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Llwyngwril Rail Station", "TIPLOC": "LYNGRIL", "CRS": "LLW", "StopAreaCode": "910GLYNGRIL", "AdministrativeAreaRef": "110", "code": "9100LYNGRIL", "NPTG": "E0037617", "ATCO": "540", "CRS_code": "LLW" }, "geometry": { "type": "Point", "coordinates": [ -4.08767895836, 52.666781472049998 ] } },
{ "type": "Feature", "properties": { "Name": "Lytham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Lytham Rail Station", "TIPLOC": "LYTHAM", "CRS": "LTM", "StopAreaCode": "910GLYTHAM", "AdministrativeAreaRef": "110", "code": "9100LYTHAM", "NPTG": "E0057506", "ATCO": "250", "CRS_code": "LTM" }, "geometry": { "type": "Point", "coordinates": [ -2.96403964449, 53.739281196150003 ] } },
{ "type": "Feature", "properties": { "Name": "Leytonstone High Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Leytonstone High Road Rail Station", "TIPLOC": "LYTNSHR", "CRS": "LER", "StopAreaCode": "910GLYTNSHR", "AdministrativeAreaRef": "110", "code": "9100LYTNSHR", "NPTG": "E0034875", "ATCO": "490", "CRS_code": "LER" }, "geometry": { "type": "Point", "coordinates": [ 0.00841647572, 51.563554495449999 ] } },
{ "type": "Feature", "properties": { "Name": "Macclesfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Macclesfield Rail Station", "TIPLOC": "MACLSFD", "CRS": "MAC", "StopAreaCode": "910GMACLSFD", "AdministrativeAreaRef": "110", "code": "9100MACLSFD", "NPTG": "N0076467", "ATCO": "060", "CRS_code": "MAC" }, "geometry": { "type": "Point", "coordinates": [ -2.12198176725, 53.25934191572 ] } },
{ "type": "Feature", "properties": { "Name": "Maesteg (Ewenny Road) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maesteg (Ewenny Road) Rail Station", "TIPLOC": "MAESTER", "CRS": "MEW", "StopAreaCode": "910GMAESTER", "AdministrativeAreaRef": "110", "code": "9100MAESTER", "NPTG": "E0053962", "ATCO": "551", "CRS_code": "MEW" }, "geometry": { "type": "Point", "coordinates": [ -3.64899092504, 51.605342024780001 ] } },
{ "type": "Feature", "properties": { "Name": "Maesteg Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maesteg Rail Station", "TIPLOC": "MAESTGW", "CRS": "MST", "StopAreaCode": "910GMAESTGW", "AdministrativeAreaRef": "110", "code": "9100MAESTGW", "NPTG": "E0053962", "ATCO": "551", "CRS_code": "MST" }, "geometry": { "type": "Point", "coordinates": [ -3.65464559005, 51.609938349209997 ] } },
{ "type": "Feature", "properties": { "Name": "Maghull Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maghull Rail Station", "TIPLOC": "MAGHULL", "CRS": "MAG", "StopAreaCode": "910GMAGHULL", "AdministrativeAreaRef": "110", "code": "9100MAGHULL", "NPTG": "E0052689", "ATCO": "280", "CRS_code": "MAG" }, "geometry": { "type": "Point", "coordinates": [ -2.93085292101, 53.506470011559998 ] } },
{ "type": "Feature", "properties": { "Name": "Malden Manor Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Malden Manor Rail Station", "TIPLOC": "MALDENM", "CRS": "MAL", "StopAreaCode": "910GMALDENM", "AdministrativeAreaRef": "110", "code": "9100MALDENM", "NPTG": "E0034620", "ATCO": "490", "CRS_code": "MAL" }, "geometry": { "type": "Point", "coordinates": [ -0.26127390591, 51.384729998129998 ] } },
{ "type": "Feature", "properties": { "Name": "Malton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Malton Rail Station", "TIPLOC": "MALTON", "CRS": "MLT", "StopAreaCode": "910GMALTON", "AdministrativeAreaRef": "110", "code": "9100MALTON", "NPTG": "E0049417", "ATCO": "320", "CRS_code": "MLT" }, "geometry": { "type": "Point", "coordinates": [ -0.79722203887, 54.132075948679997 ] } },
{ "type": "Feature", "properties": { "Name": "Manea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manea Rail Station", "TIPLOC": "MANEA", "CRS": "MNE", "StopAreaCode": "910GMANEA", "AdministrativeAreaRef": "110", "code": "9100MANEA", "NPTG": "E0043701", "ATCO": "050", "CRS_code": "MNE" }, "geometry": { "type": "Point", "coordinates": [ 0.17769375187, 52.497838816470001 ] } },
{ "type": "Feature", "properties": { "Name": "Manningtree Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manningtree Rail Station", "TIPLOC": "MANNGTR", "CRS": "MNG", "StopAreaCode": "910GMANNGTR", "AdministrativeAreaRef": "110", "code": "9100MANNGTR", "NPTG": "E0046367", "ATCO": "150", "CRS_code": "MNG" }, "geometry": { "type": "Point", "coordinates": [ 1.04524001421, 51.949051519 ] } },
{ "type": "Feature", "properties": { "Name": "Manors Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manors Rail Station", "TIPLOC": "MANORS", "CRS": "MAS", "StopAreaCode": "910GMANORS", "AdministrativeAreaRef": "110", "code": "9100MANORS", "NPTG": "N0077851", "ATCO": "410", "CRS_code": "MAS" }, "geometry": { "type": "Point", "coordinates": [ -1.60474093682, 54.97276496768 ] } },
{ "type": "Feature", "properties": { "Name": "Manor Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manor Park Rail Station", "TIPLOC": "MANRPK", "CRS": "MNP", "StopAreaCode": "910GMANRPK", "AdministrativeAreaRef": "110", "code": "9100MANRPK", "NPTG": "E0034707", "ATCO": "490", "CRS_code": "MNP" }, "geometry": { "type": "Point", "coordinates": [ 0.04634162174, 51.552476656270002 ] } },
{ "type": "Feature", "properties": { "Name": "Marden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marden Rail Station", "TIPLOC": "MARDEN", "CRS": "MRN", "StopAreaCode": "910GMARDEN", "AdministrativeAreaRef": "110", "code": "9100MARDEN", "NPTG": "E0047217", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.49316935061, 51.175175827879997 ] } },
{ "type": "Feature", "properties": { "Name": "Margate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Margate Rail Station", "TIPLOC": "MARGATE", "CRS": "MAR", "StopAreaCode": "910GMARGATE", "AdministrativeAreaRef": "110", "code": "9100MARGATE", "NPTG": "E0015431", "ATCO": "240", "CRS_code": "MAR" }, "geometry": { "type": "Point", "coordinates": [ 1.37200343311, 51.385428908919998 ] } },
{ "type": "Feature", "properties": { "Name": "Marlow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marlow Rail Station", "TIPLOC": "MARLOW", "CRS": "MLW", "StopAreaCode": "910GMARLOW", "AdministrativeAreaRef": "110", "code": "9100MARLOW", "NPTG": "E0043651", "ATCO": "040", "CRS_code": "MLW" }, "geometry": { "type": "Point", "coordinates": [ -0.76643069949, 51.57099341979 ] } },
{ "type": "Feature", "properties": { "Name": "Marne-la-Valle Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Marne-la-Valle Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100MARNELV", "NPTG": "E0015169", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.39413110602, 51.074002404780003 ] } },
{ "type": "Feature", "properties": { "Name": "Marple Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marple Rail Station", "TIPLOC": "MARPLE", "CRS": "MPL", "StopAreaCode": "910GMARPLE", "AdministrativeAreaRef": "110", "code": "9100MARPLE", "NPTG": "E0029038", "ATCO": "180", "CRS_code": "MPL" }, "geometry": { "type": "Point", "coordinates": [ -2.05726330556, 53.400692497809999 ] } },
{ "type": "Feature", "properties": { "Name": "Marton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marton Rail Station", "TIPLOC": "MARTON", "CRS": "MTO", "StopAreaCode": "910GMARTON", "AdministrativeAreaRef": "110", "code": "9100MARTON", "NPTG": "E0041558", "ATCO": "079", "CRS_code": "MTO" }, "geometry": { "type": "Point", "coordinates": [ -1.19848487439, 54.5443430961 ] } },
{ "type": "Feature", "properties": { "Name": "London Marylebone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Marylebone Rail Station", "TIPLOC": "MARYLBN", "CRS": "MYB", "StopAreaCode": "910GMARYLBN", "AdministrativeAreaRef": "110", "code": "9100MARYLBN", "NPTG": "E0034940", "ATCO": "490", "CRS_code": "MYB" }, "geometry": { "type": "Point", "coordinates": [ -0.16291082676, 51.522523882510001 ] } },
{ "type": "Feature", "properties": { "Name": "Mountain Ash Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mountain Ash Rail Station", "TIPLOC": "MASH", "CRS": "MTA", "StopAreaCode": "910GMASH", "AdministrativeAreaRef": "110", "code": "9100MASH", "NPTG": "E0054676", "ATCO": "552", "CRS_code": "MTA" }, "geometry": { "type": "Point", "coordinates": [ -3.37634122427, 51.681330546029997 ] } },
{ "type": "Feature", "properties": { "Name": "Matlock Bath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Matlock Bath Rail Station", "TIPLOC": "MATLCKB", "CRS": "MTB", "StopAreaCode": "910GMATLCKB", "AdministrativeAreaRef": "110", "code": "9100MATLCKB", "NPTG": "E0045067", "ATCO": "100", "CRS_code": "MTB" }, "geometry": { "type": "Point", "coordinates": [ -1.55675886104, 53.122354184119999 ] } },
{ "type": "Feature", "properties": { "Name": "Matlock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Matlock Rail Station", "TIPLOC": "MATLOCK", "CRS": "MAT", "StopAreaCode": "910GMATLOCK", "AdministrativeAreaRef": "110", "code": "9100MATLOCK", "NPTG": "E0055547", "ATCO": "100", "CRS_code": "MAT" }, "geometry": { "type": "Point", "coordinates": [ -1.55891073425, 53.138407606709997 ] } },
{ "type": "Feature", "properties": { "Name": "Maxwell Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maxwell Park Rail Station", "TIPLOC": "MAXWLPK", "CRS": "MAX", "StopAreaCode": "910GMAXWLPK", "AdministrativeAreaRef": "110", "code": "9100MAXWLPK", "NPTG": "N0068064", "ATCO": "609", "CRS_code": "MAX" }, "geometry": { "type": "Point", "coordinates": [ -4.28869186193, 55.837728934349997 ] } },
{ "type": "Feature", "properties": { "Name": "Maybole Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maybole Rail Station", "TIPLOC": "MAYBOLE", "CRS": "MAY", "StopAreaCode": "910GMAYBOLE", "AdministrativeAreaRef": "110", "code": "9100MAYBOLE", "NPTG": "ES002566", "ATCO": "619", "CRS_code": "MAY" }, "geometry": { "type": "Point", "coordinates": [ -4.68528873907, 55.354736346519999 ] } },
{ "type": "Feature", "properties": { "Name": "Maze Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maze Hill Rail Station", "TIPLOC": "MAZEH", "CRS": "MZH", "StopAreaCode": "910GMAZEH", "AdministrativeAreaRef": "110", "code": "9100MAZEH", "NPTG": "E0034328", "ATCO": "490", "CRS_code": "MZH" }, "geometry": { "type": "Point", "coordinates": [ 0.00291420855, 51.48262465538 ] } },
{ "type": "Feature", "properties": { "Name": "Millbrook (Hants) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Millbrook (Hants) Rail Station", "TIPLOC": "MBRK", "CRS": "MBK", "StopAreaCode": "910GMBRK", "AdministrativeAreaRef": "110", "code": "9100MBRK", "NPTG": "E0042004", "ATCO": "198", "CRS_code": "MBK" }, "geometry": { "type": "Point", "coordinates": [ -1.43384250246, 50.911496026819997 ] } },
{ "type": "Feature", "properties": { "Name": "Micheldever Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Micheldever Rail Station", "TIPLOC": "MCHLDVR", "CRS": "MIC", "StopAreaCode": "910GMCHLDVR", "AdministrativeAreaRef": "110", "code": "9100MCHLDVR", "NPTG": "N0060875", "ATCO": "190", "CRS_code": "MIC" }, "geometry": { "type": "Point", "coordinates": [ -1.26067767351, 51.182393163089998 ] } },
{ "type": "Feature", "properties": { "Name": "Machynlleth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Machynlleth Rail Station", "TIPLOC": "MCHYNLT", "CRS": "MCN", "StopAreaCode": "910GMCHYNLT", "AdministrativeAreaRef": "110", "code": "9100MCHYNLT", "NPTG": "E0054629", "ATCO": "561", "CRS_code": "MCN" }, "geometry": { "type": "Point", "coordinates": [ -3.85452744938, 52.595136654809998 ] } },
{ "type": "Feature", "properties": { "Name": "Micklefield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Micklefield Rail Station", "TIPLOC": "MCKLFLD", "CRS": "MIK", "StopAreaCode": "910GMCKLFLD", "AdministrativeAreaRef": "110", "code": "9100MCKLFLD", "NPTG": "E0052855", "ATCO": "450", "CRS_code": "MIK" }, "geometry": { "type": "Point", "coordinates": [ -1.32679307059, 53.788836806120003 ] } },
{ "type": "Feature", "properties": { "Name": "Middlesbrough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Middlesbrough Rail Station", "TIPLOC": "MDLSBRO", "CRS": "MBR", "StopAreaCode": "910GMDLSBRO", "AdministrativeAreaRef": "110", "code": "9100MDLSBRO", "NPTG": "E0039258", "ATCO": "079", "CRS_code": "MBR" }, "geometry": { "type": "Point", "coordinates": [ -1.23471720364, 54.579105961090001 ] } },
{ "type": "Feature", "properties": { "Name": "Maidenhead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maidenhead Rail Station", "TIPLOC": "MDNHEAD", "CRS": "MAI", "StopAreaCode": "910GMDNHEAD", "AdministrativeAreaRef": "110", "code": "9100MDNHEAD", "NPTG": "E0055222", "ATCO": "036", "CRS_code": "MAI" }, "geometry": { "type": "Point", "coordinates": [ -0.72266044482, 51.518668969769998 ] } },
{ "type": "Feature", "properties": { "Name": "Maiden Newton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maiden Newton Rail Station", "TIPLOC": "MDNNWTN", "CRS": "MDN", "StopAreaCode": "910GMDNNWTN", "AdministrativeAreaRef": "110", "code": "9100MDNNWTN", "NPTG": "E0045840", "ATCO": "120", "CRS_code": "MDN" }, "geometry": { "type": "Point", "coordinates": [ -2.56942958377, 50.780006222490002 ] } },
{ "type": "Feature", "properties": { "Name": "Middlewood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Middlewood Rail Station", "TIPLOC": "MDWD", "CRS": "MDL", "StopAreaCode": "910GMDWD", "AdministrativeAreaRef": "110", "code": "9100MDWD", "NPTG": "N0076700", "ATCO": "180", "CRS_code": "MDL" }, "geometry": { "type": "Point", "coordinates": [ -2.08335307052, 53.359958771279999 ] } },
{ "type": "Feature", "properties": { "Name": "Meadowhall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Meadowhall Rail Station", "TIPLOC": "MEADWHL", "CRS": "MHS", "StopAreaCode": "910GMEADWHL", "AdministrativeAreaRef": "110", "code": "9100MEADWHL", "NPTG": "E0030375", "ATCO": "370", "CRS_code": "MHS" }, "geometry": { "type": "Point", "coordinates": [ -1.41285146834, 53.417466228800002 ] } },
{ "type": "Feature", "properties": { "Name": "Meldreth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Meldreth Rail Station", "TIPLOC": "MELDRTH", "CRS": "MEL", "StopAreaCode": "910GMELDRTH", "AdministrativeAreaRef": "110", "code": "9100MELDRTH", "NPTG": "E0044109", "ATCO": "050", "CRS_code": "MEL" }, "geometry": { "type": "Point", "coordinates": [ 0.00894129491, 52.090716737450002 ] } },
{ "type": "Feature", "properties": { "Name": "Melksham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Melksham Rail Station", "TIPLOC": "MELKSHM", "CRS": "MKM", "StopAreaCode": "910GMELKSHM", "AdministrativeAreaRef": "110", "code": "9100MELKSHM", "NPTG": "E0057703", "ATCO": "460", "CRS_code": "MKM" }, "geometry": { "type": "Point", "coordinates": [ -2.14449697737, 51.379822920770003 ] } },
{ "type": "Feature", "properties": { "Name": "Meols Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Meols Rail Station", "TIPLOC": "MELS", "CRS": "MEO", "StopAreaCode": "910GMELS", "AdministrativeAreaRef": "110", "code": "9100MELS", "NPTG": "N0065038", "ATCO": "280", "CRS_code": "MEO" }, "geometry": { "type": "Point", "coordinates": [ -3.15426918066, 53.399439461589999 ] } },
{ "type": "Feature", "properties": { "Name": "Melton (Suffolk) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Melton (Suffolk) Rail Station", "TIPLOC": "MELTON", "CRS": "MES", "StopAreaCode": "910GMELTON", "AdministrativeAreaRef": "110", "code": "9100MELTON", "NPTG": "E0051649", "ATCO": "390", "CRS_code": "MES" }, "geometry": { "type": "Point", "coordinates": [ 1.33823676896, 52.104439051349999 ] } },
{ "type": "Feature", "properties": { "Name": "Menheniot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Menheniot Rail Station", "TIPLOC": "MENHENT", "CRS": "MEN", "StopAreaCode": "910GMENHENT", "AdministrativeAreaRef": "110", "code": "9100MENHENT", "NPTG": "E0044464", "ATCO": "080", "CRS_code": "MEN" }, "geometry": { "type": "Point", "coordinates": [ -4.40922302819, 50.426228691410003 ] } },
{ "type": "Feature", "properties": { "Name": "Menston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Menston Rail Station", "TIPLOC": "MENSTON", "CRS": "MNN", "StopAreaCode": "910GMENSTON", "AdministrativeAreaRef": "110", "code": "9100MENSTON", "NPTG": "E0033164", "ATCO": "450", "CRS_code": "MNN" }, "geometry": { "type": "Point", "coordinates": [ -1.73551004176, 53.892338872259998 ] } },
{ "type": "Feature", "properties": { "Name": "Meols Cop Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Meols Cop Rail Station", "TIPLOC": "MEOLSCP", "CRS": "MEC", "StopAreaCode": "910GMEOLSCP", "AdministrativeAreaRef": "110", "code": "9100MEOLSCP", "NPTG": "E0029793", "ATCO": "280", "CRS_code": "MEC" }, "geometry": { "type": "Point", "coordinates": [ -2.97580377061, 53.646271813929999 ] } },
{ "type": "Feature", "properties": { "Name": "Meopham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Meopham Rail Station", "TIPLOC": "MEOPHAM", "CRS": "MEP", "StopAreaCode": "910GMEOPHAM", "AdministrativeAreaRef": "110", "code": "9100MEOPHAM", "NPTG": "E0047190", "ATCO": "240", "CRS_code": "MEP" }, "geometry": { "type": "Point", "coordinates": [ 0.3569515952, 51.386423826620003 ] } },
{ "type": "Feature", "properties": { "Name": "Merstham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Merstham Rail Station", "TIPLOC": "MERSTHM", "CRS": "MHM", "StopAreaCode": "910GMERSTHM", "AdministrativeAreaRef": "110", "code": "9100MERSTHM", "NPTG": "E0025555", "ATCO": "400", "CRS_code": "MHM" }, "geometry": { "type": "Point", "coordinates": [ -0.15022560333, 51.26415421219 ] } },
{ "type": "Feature", "properties": { "Name": "Merthyr Vale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Merthyr Vale Rail Station", "TIPLOC": "MERTHRV", "CRS": "MEV", "StopAreaCode": "910GMERTHRV", "AdministrativeAreaRef": "110", "code": "9100MERTHRV", "NPTG": "E0054368", "ATCO": "553", "CRS_code": "MEV" }, "geometry": { "type": "Point", "coordinates": [ -3.33657558976, 51.686645420540003 ] } },
{ "type": "Feature", "properties": { "Name": "Merthyr Tydfil Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Merthyr Tydfil Rail Station", "TIPLOC": "MERTHYR", "CRS": "MER", "StopAreaCode": "910GMERTHYR", "AdministrativeAreaRef": "110", "code": "9100MERTHYR", "NPTG": "E0039203", "ATCO": "553", "CRS_code": "MER" }, "geometry": { "type": "Point", "coordinates": [ -3.37725039469, 51.744621709569998 ] } },
{ "type": "Feature", "properties": { "Name": "Mexborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mexborough Rail Station", "TIPLOC": "MEXBRGH", "CRS": "MEX", "StopAreaCode": "910GMEXBRGH", "AdministrativeAreaRef": "110", "code": "9100MEXBRGH", "NPTG": "E0030384", "ATCO": "370", "CRS_code": "MEX" }, "geometry": { "type": "Point", "coordinates": [ -1.28856130714, 53.490992310919999 ] } },
{ "type": "Feature", "properties": { "Name": "Morfa Mawddach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Morfa Mawddach Rail Station", "TIPLOC": "MFAM", "CRS": "MFA", "StopAreaCode": "910GMFAM", "AdministrativeAreaRef": "110", "code": "9100MFAM", "NPTG": "E0037632", "ATCO": "540", "CRS_code": "MFA" }, "geometry": { "type": "Point", "coordinates": [ -4.03216950825, 52.707127896609997 ] } },
{ "type": "Feature", "properties": { "Name": "Mansfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mansfield Rail Station", "TIPLOC": "MFLDTWN", "CRS": "MFT", "StopAreaCode": "910GMFLDTWN", "AdministrativeAreaRef": "110", "code": "9100MFLDTWN", "NPTG": "E0056469", "ATCO": "330", "CRS_code": "MFT" }, "geometry": { "type": "Point", "coordinates": [ -1.1984340379, 53.142100864379998 ] } },
{ "type": "Feature", "properties": { "Name": "Mansfield Woodhouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mansfield Woodhouse Rail Station", "TIPLOC": "MFLDWSE", "CRS": "MSW", "StopAreaCode": "910GMFLDWSE", "AdministrativeAreaRef": "110", "code": "9100MFLDWSE", "NPTG": "E0057607", "ATCO": "330", "CRS_code": "MSW" }, "geometry": { "type": "Point", "coordinates": [ -1.20184847587, 53.163562973929999 ] } },
{ "type": "Feature", "properties": { "Name": "Moorgate Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Moorgate Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100MGTE", "NPTG": "N0065179", "ATCO": "490", "CRS_code": "MOG" }, "geometry": { "type": "Point", "coordinates": [ -0.0889289256, 51.518491207369998 ] } },
{ "type": "Feature", "properties": { "Name": "Martins Heron Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Martins Heron Rail Station", "TIPLOC": "MHERON", "CRS": "MAO", "StopAreaCode": "910GMHERON", "AdministrativeAreaRef": "110", "code": "9100MHERON", "NPTG": "N0060044", "ATCO": "038", "CRS_code": "MAO" }, "geometry": { "type": "Point", "coordinates": [ -0.724396598, 51.407411654400001 ] } },
{ "type": "Feature", "properties": { "Name": "Midgham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Midgham Rail Station", "TIPLOC": "MIDGHAM", "CRS": "MDG", "StopAreaCode": "910GMIDGHAM", "AdministrativeAreaRef": "110", "code": "9100MIDGHAM", "NPTG": "E0053876", "ATCO": "030", "CRS_code": "MDG" }, "geometry": { "type": "Point", "coordinates": [ -1.17771114696, 51.395974902459997 ] } },
{ "type": "Feature", "properties": { "Name": "Milliken Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Milliken Park Rail Station", "TIPLOC": "MILKNPK", "CRS": "MIN", "StopAreaCode": "910GMILKNPK", "AdministrativeAreaRef": "110", "code": "9100MILKNPK", "NPTG": "N0068154", "ATCO": "609", "CRS_code": "MIN" }, "geometry": { "type": "Point", "coordinates": [ -4.5333579554, 55.825111727939998 ] } },
{ "type": "Feature", "properties": { "Name": "Milnrow Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Milnrow Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GMILNROW", "AdministrativeAreaRef": "110", "code": "9100MILNROW", "NPTG": "E0029072", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.1115003362, 53.608106402209998 ] } },
{ "type": "Feature", "properties": { "Name": "Minffordd Ffestiniog Railway Station", "Status": "active", "Type": "RLY", "Station_Name": "Minffordd Ffestiniog Railway Station", "TIPLOC": "MINFFR", "CRS": "MFD", "StopAreaCode": "910GMINFFR", "AdministrativeAreaRef": "110", "code": "9100MINFFR", "NPTG": "E0037626", "ATCO": "540", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.08420923557, 52.925875300800001 ] } },
{ "type": "Feature", "properties": { "Name": "Minffordd Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Minffordd Rail Station", "TIPLOC": "MINFORD", "CRS": "MFF", "StopAreaCode": "910GMINFORD", "AdministrativeAreaRef": "110", "code": "9100MINFORD", "NPTG": "E0037626", "ATCO": "540", "CRS_code": "MFF" }, "geometry": { "type": "Point", "coordinates": [ -4.08496544377, 52.926131754510003 ] } },
{ "type": "Feature", "properties": { "Name": "Moreton-in-Marsh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moreton-in-Marsh Rail Station", "TIPLOC": "MINMARS", "CRS": "MIM", "StopAreaCode": "910GMINMARS", "AdministrativeAreaRef": "110", "code": "9100MINMARS", "NPTG": "E0046510", "ATCO": "160", "CRS_code": "MIM" }, "geometry": { "type": "Point", "coordinates": [ -1.70038035916, 51.992280610759998 ] } },
{ "type": "Feature", "properties": { "Name": "Minster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Minster Rail Station", "TIPLOC": "MINSTER", "CRS": "MSR", "StopAreaCode": "910GMINSTER", "AdministrativeAreaRef": "110", "code": "9100MINSTER", "NPTG": "E0047332", "ATCO": "240", "CRS_code": "MSR" }, "geometry": { "type": "Point", "coordinates": [ 1.31721674026, 51.329174304219997 ] } },
{ "type": "Feature", "properties": { "Name": "Mirfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mirfield Rail Station", "TIPLOC": "MIRFILD", "CRS": "MIR", "StopAreaCode": "910GMIRFILD", "AdministrativeAreaRef": "110", "code": "9100MIRFILD", "NPTG": "E0052837", "ATCO": "450", "CRS_code": "MIR" }, "geometry": { "type": "Point", "coordinates": [ -1.69254502706, 53.671401029770003 ] } },
{ "type": "Feature", "properties": { "Name": "Mistley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mistley Rail Station", "TIPLOC": "MISTLEY", "CRS": "MIS", "StopAreaCode": "910GMISTLEY", "AdministrativeAreaRef": "110", "code": "9100MISTLEY", "NPTG": "E0055834", "ATCO": "150", "CRS_code": "MIS" }, "geometry": { "type": "Point", "coordinates": [ 1.08140019787, 51.943630990549998 ] } },
{ "type": "Feature", "properties": { "Name": "Mitcham Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mitcham Junction Rail Station", "TIPLOC": "MITCHMJ", "CRS": "MIJ", "StopAreaCode": "910GMITCHMJ", "AdministrativeAreaRef": "110", "code": "9100MITCHMJ", "NPTG": "E0034687", "ATCO": "490", "CRS_code": "MIJ" }, "geometry": { "type": "Point", "coordinates": [ -0.1577565672, 51.392950130480003 ] } },
{ "type": "Feature", "properties": { "Name": "Markinch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Markinch Rail Station", "TIPLOC": "MKIN", "CRS": "MNC", "StopAreaCode": "910GMKIN", "AdministrativeAreaRef": "110", "code": "9100MKIN", "NPTG": "ES002545", "ATCO": "650", "CRS_code": "MNC" }, "geometry": { "type": "Point", "coordinates": [ -3.13078686613, 56.20101542503 ] } },
{ "type": "Feature", "properties": { "Name": "Milton Keynes Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Milton Keynes Central Rail Station", "TIPLOC": "MKNSCEN", "CRS": "MKC", "StopAreaCode": "910GMKNSCEN", "AdministrativeAreaRef": "110", "code": "9100MKNSCEN", "NPTG": "E0053461", "ATCO": "049", "CRS_code": "MKC" }, "geometry": { "type": "Point", "coordinates": [ -0.77414601605, 52.034288267759997 ] } },
{ "type": "Feature", "properties": { "Name": "Market Rasen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Market Rasen Rail Station", "TIPLOC": "MKTR", "CRS": "MKR", "StopAreaCode": "910GMKTR", "AdministrativeAreaRef": "110", "code": "9100MKTR", "NPTG": "E0056257", "ATCO": "270", "CRS_code": "MKR" }, "geometry": { "type": "Point", "coordinates": [ -0.33689873895, 53.383912676969999 ] } },
{ "type": "Feature", "properties": { "Name": "Mallaig Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mallaig Rail Station", "TIPLOC": "MLAIG", "CRS": "MLG", "StopAreaCode": "910GMLAIG", "AdministrativeAreaRef": "110", "code": "9100MLAIG", "NPTG": "ES002534", "ATCO": "670", "CRS_code": "MLG" }, "geometry": { "type": "Point", "coordinates": [ -5.82959654691, 57.005988880830003 ] } },
{ "type": "Feature", "properties": { "Name": "Millbrook (Beds) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Millbrook (Beds) Rail Station", "TIPLOC": "MLBRKB", "CRS": "MLB", "StopAreaCode": "910GMLBRKB", "AdministrativeAreaRef": "110", "code": "9100MLBRKB", "NPTG": "E0043902", "ATCO": "021", "CRS_code": "MLB" }, "geometry": { "type": "Point", "coordinates": [ -0.53270303785, 52.053836666039999 ] } },
{ "type": "Feature", "properties": { "Name": "Mouldsworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mouldsworth Rail Station", "TIPLOC": "MLDSWTH", "CRS": "MLD", "StopAreaCode": "910GMLDSWTH", "AdministrativeAreaRef": "110", "code": "9100MLDSWTH", "NPTG": "E0044222", "ATCO": "061", "CRS_code": "MLD" }, "geometry": { "type": "Point", "coordinates": [ -2.7322244346, 53.23180564418 ] } },
{ "type": "Feature", "properties": { "Name": "Mauldeth Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mauldeth Road Rail Station", "TIPLOC": "MLDTHRD", "CRS": "MAU", "StopAreaCode": "910GMLDTHRD", "AdministrativeAreaRef": "110", "code": "9100MLDTHRD", "NPTG": "E0028653", "ATCO": "180", "CRS_code": "MAU" }, "geometry": { "type": "Point", "coordinates": [ -2.20925122444, 53.433061102460002 ] } },
{ "type": "Feature", "properties": { "Name": "Milford Haven Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Milford Haven Rail Station", "TIPLOC": "MLFDHVN", "CRS": "MFH", "StopAreaCode": "910GMLFDHVN", "AdministrativeAreaRef": "110", "code": "9100MLFDHVN", "NPTG": "E0055085", "ATCO": "521", "CRS_code": "MFH" }, "geometry": { "type": "Point", "coordinates": [ -5.04096849514, 51.714973079270003 ] } },
{ "type": "Feature", "properties": { "Name": "Milford (Surrey) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Milford (Surrey) Rail Station", "TIPLOC": "MLFORD", "CRS": "MLF", "StopAreaCode": "910GMLFORD", "AdministrativeAreaRef": "110", "code": "9100MLFORD", "NPTG": "E0025833", "ATCO": "400", "CRS_code": "MLF" }, "geometry": { "type": "Point", "coordinates": [ -0.63694829854, 51.163319270519999 ] } },
{ "type": "Feature", "properties": { "Name": "Milngavie Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Milngavie Rail Station", "TIPLOC": "MLGV", "CRS": "MLN", "StopAreaCode": "910GMLGV", "AdministrativeAreaRef": "110", "code": "9100MLGV", "NPTG": "ES002623", "ATCO": "611", "CRS_code": "MLN" }, "geometry": { "type": "Point", "coordinates": [ -4.31458038423, 55.941365239 ] } },
{ "type": "Feature", "properties": { "Name": "Mill Hill Broadway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mill Hill Broadway Rail Station", "TIPLOC": "MLHB", "CRS": "MIL", "StopAreaCode": "910GMLHB", "AdministrativeAreaRef": "110", "code": "9100MLHB", "NPTG": "E0033976", "ATCO": "490", "CRS_code": "MIL" }, "geometry": { "type": "Point", "coordinates": [ -0.24923964279, 51.613092790449997 ] } },
{ "type": "Feature", "properties": { "Name": "Mill Hill (Lancs) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mill Hill (Lancs) Rail Station", "TIPLOC": "MLHL", "CRS": "MLH", "StopAreaCode": "910GMLHL", "AdministrativeAreaRef": "110", "code": "9100MLHL", "NPTG": "E0035235", "ATCO": "258", "CRS_code": "MLH" }, "geometry": { "type": "Point", "coordinates": [ -2.5017353241, 53.735457967019997 ] } },
{ "type": "Feature", "properties": { "Name": "Millom Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Millom Rail Station", "TIPLOC": "MLLM", "CRS": "MLM", "StopAreaCode": "910GMLLM", "AdministrativeAreaRef": "110", "code": "9100MLLM", "NPTG": "E0055507", "ATCO": "090", "CRS_code": "MLM" }, "geometry": { "type": "Point", "coordinates": [ -3.27108401955, 54.210823353279999 ] } },
{ "type": "Feature", "properties": { "Name": "Moulsecoomb Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moulsecoomb Rail Station", "TIPLOC": "MLSECMB", "CRS": "MCB", "StopAreaCode": "910GMLSECMB", "AdministrativeAreaRef": "110", "code": "9100MLSECMB", "NPTG": "E0035533", "ATCO": "149", "CRS_code": "MCB" }, "geometry": { "type": "Point", "coordinates": [ -0.11884173455, 50.846721991380001 ] } },
{ "type": "Feature", "properties": { "Name": "Mills Hill (Manchester) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mills Hill (Manchester) Rail Station", "TIPLOC": "MLSHILL", "CRS": "MIH", "StopAreaCode": "910GMLSHILL", "AdministrativeAreaRef": "110", "code": "9100MLSHILL", "NPTG": "E0029070", "ATCO": "180", "CRS_code": "MIH" }, "geometry": { "type": "Point", "coordinates": [ -2.17151276876, 53.55131017718 ] } },
{ "type": "Feature", "properties": { "Name": "Melton Mowbray Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Melton Mowbray Rail Station", "TIPLOC": "MLTNSDG", "CRS": "MMO", "StopAreaCode": "910GMLTNSDG", "AdministrativeAreaRef": "110", "code": "9100MLTNSDG", "NPTG": "E0016796", "ATCO": "260", "CRS_code": "MMO" }, "geometry": { "type": "Point", "coordinates": [ -0.88586923069, 52.76103094162 ] } },
{ "type": "Feature", "properties": { "Name": "Malvern Link Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Malvern Link Rail Station", "TIPLOC": "MLVRNLK", "CRS": "MVL", "StopAreaCode": "910GMLVRNLK", "AdministrativeAreaRef": "110", "code": "9100MLVRNLK", "NPTG": "E0027785", "ATCO": "200", "CRS_code": "MVL" }, "geometry": { "type": "Point", "coordinates": [ -2.31951154305, 52.12546818269 ] } },
{ "type": "Feature", "properties": { "Name": "Martin Mill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Martin Mill Rail Station", "TIPLOC": "MMIL", "CRS": "MTM", "StopAreaCode": "910GMMIL", "AdministrativeAreaRef": "110", "code": "9100MMIL", "NPTG": "E0014783", "ATCO": "240", "CRS_code": "MTM" }, "geometry": { "type": "Point", "coordinates": [ 1.3482171927, 51.170678001500001 ] } },
{ "type": "Feature", "properties": { "Name": "Deansgate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Deansgate Rail Station", "TIPLOC": "MNCRDGT", "CRS": "DGT", "StopAreaCode": "910GMNCRDGT", "AdministrativeAreaRef": "110", "code": "9100MNCRDGT", "NPTG": "E0057786", "ATCO": "180", "CRS_code": "DGT" }, "geometry": { "type": "Point", "coordinates": [ -2.25105094652, 53.47418376225 ] } },
{ "type": "Feature", "properties": { "Name": "Dean Lane Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Dean Lane Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GMNCRDLN", "AdministrativeAreaRef": "110", "code": "9100MNCRDLN", "NPTG": "N0074957", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.18464961272, 53.504110599950003 ] } },
{ "type": "Feature", "properties": { "Name": "Manchester Airport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manchester Airport Rail Station", "TIPLOC": "MNCRIAP", "CRS": "MIA", "StopAreaCode": "910GMNCRIAP", "AdministrativeAreaRef": "110", "code": "9100MNCRIAP", "NPTG": "N0075057", "ATCO": "180", "CRS_code": "MIA" }, "geometry": { "type": "Point", "coordinates": [ -2.27297952138, 53.365041529430002 ] } },
{ "type": "Feature", "properties": { "Name": "Manchester Oxford Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manchester Oxford Road Rail Station", "TIPLOC": "MNCROXR", "CRS": "MCO", "StopAreaCode": "910GMNCROXR", "AdministrativeAreaRef": "110", "code": "9100MNCROXR", "NPTG": "E0057786", "ATCO": "180", "CRS_code": "MCO" }, "geometry": { "type": "Point", "coordinates": [ -2.24199540982, 53.474031681070002 ] } },
{ "type": "Feature", "properties": { "Name": "Manchester Piccadilly Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manchester Piccadilly Rail Station", "TIPLOC": "MNCRPIC", "CRS": "MAN", "StopAreaCode": "910GMNCRPIC", "AdministrativeAreaRef": "110", "code": "9100MNCRPIC", "NPTG": "E0057786", "ATCO": "180", "CRS_code": "MAN" }, "geometry": { "type": "Point", "coordinates": [ -2.23090989998, 53.477361392950002 ] } },
{ "type": "Feature", "properties": { "Name": "Manchester United FC Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manchester United FC Rail Station", "TIPLOC": "MNCRUFG", "CRS": "MUF", "StopAreaCode": "910GMNCRUFG", "AdministrativeAreaRef": "110", "code": "9100MNCRUFG", "NPTG": "E0029170", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.29065283565, 53.46219316565 ] } },
{ "type": "Feature", "properties": { "Name": "Manchester Victoria Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manchester Victoria Rail Station", "TIPLOC": "MNCRVIC", "CRS": "MCV", "StopAreaCode": "910GMNCRVIC", "AdministrativeAreaRef": "110", "code": "9100MNCRVIC", "NPTG": "E0057786", "ATCO": "180", "CRS_code": "MCV" }, "geometry": { "type": "Point", "coordinates": [ -2.24259943794, 53.487468199209999 ] } },
{ "type": "Feature", "properties": { "Name": "Monks Risborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Monks Risborough Rail Station", "TIPLOC": "MNKRISB", "CRS": "MRS", "StopAreaCode": "910GMNKRISB", "AdministrativeAreaRef": "110", "code": "9100MNKRISB", "NPTG": "E0000736", "ATCO": "040", "CRS_code": "MRS" }, "geometry": { "type": "Point", "coordinates": [ -0.82933364409, 51.735762339639997 ] } },
{ "type": "Feature", "properties": { "Name": "Manorbier Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manorbier Rail Station", "TIPLOC": "MNORBER", "CRS": "MRB", "StopAreaCode": "910GMNORBER", "AdministrativeAreaRef": "110", "code": "9100MNORBER", "NPTG": "E0054508", "ATCO": "521", "CRS_code": "MRB" }, "geometry": { "type": "Point", "coordinates": [ -4.79183007416, 51.66015819031 ] } },
{ "type": "Feature", "properties": { "Name": "Manor Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Manor Road Rail Station", "TIPLOC": "MNRD", "CRS": "MNR", "StopAreaCode": "910GMNRD", "AdministrativeAreaRef": "110", "code": "9100MNRD", "NPTG": "E0029751", "ATCO": "280", "CRS_code": "MNR" }, "geometry": { "type": "Point", "coordinates": [ -3.17143762364, 53.39477766321 ] } },
{ "type": "Feature", "properties": { "Name": "Mount Vernon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mount Vernon Rail Station", "TIPLOC": "MNTVRNN", "CRS": "MTV", "StopAreaCode": "910GMNTVRNN", "AdministrativeAreaRef": "110", "code": "9100MNTVRNN", "NPTG": "ES002700", "ATCO": "609", "CRS_code": "MTV" }, "geometry": { "type": "Point", "coordinates": [ -4.13366917874, 55.840201780020003 ] } },
{ "type": "Feature", "properties": { "Name": "Mobberley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mobberley Rail Station", "TIPLOC": "MOBERLY", "CRS": "MOB", "StopAreaCode": "910GMOBERLY", "AdministrativeAreaRef": "110", "code": "9100MOBERLY", "NPTG": "E0044378", "ATCO": "060", "CRS_code": "MOB" }, "geometry": { "type": "Point", "coordinates": [ -2.33366543277, 53.329139207819999 ] } },
{ "type": "Feature", "properties": { "Name": "Morchard Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Morchard Road Rail Station", "TIPLOC": "MOCHARD", "CRS": "MRD", "StopAreaCode": "910GMOCHARD", "AdministrativeAreaRef": "110", "code": "9100MOCHARD", "NPTG": "E0007855", "ATCO": "110", "CRS_code": "MRD" }, "geometry": { "type": "Point", "coordinates": [ -3.77636580985, 50.831898418430001 ] } },
{ "type": "Feature", "properties": { "Name": "Monifieth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Monifieth Rail Station", "TIPLOC": "MONIFTH", "CRS": "MON", "StopAreaCode": "910GMONIFTH", "AdministrativeAreaRef": "110", "code": "9100MONIFTH", "NPTG": "ES002649", "ATCO": "640", "CRS_code": "MON" }, "geometry": { "type": "Point", "coordinates": [ -2.81824747194, 56.48011240796 ] } },
{ "type": "Feature", "properties": { "Name": "Montpelier Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Montpelier Rail Station", "TIPLOC": "MONPELR", "CRS": "MTP", "StopAreaCode": "910GMONPELR", "AdministrativeAreaRef": "110", "code": "9100MONPELR", "NPTG": "E0035625", "ATCO": "010", "CRS_code": "MTP" }, "geometry": { "type": "Point", "coordinates": [ -2.58868557875, 51.468349204520003 ] } },
{ "type": "Feature", "properties": { "Name": "Montrose Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Montrose Rail Station", "TIPLOC": "MONTRSE", "CRS": "MTS", "StopAreaCode": "910GMONTRSE", "AdministrativeAreaRef": "110", "code": "9100MONTRSE", "NPTG": "ES002662", "ATCO": "649", "CRS_code": "MTS" }, "geometry": { "type": "Point", "coordinates": [ -2.47207416681, 56.712798316579999 ] } },
{ "type": "Feature", "properties": { "Name": "Morar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Morar Rail Station", "TIPLOC": "MORAR", "CRS": "MRR", "StopAreaCode": "910GMORAR", "AdministrativeAreaRef": "110", "code": "9100MORAR", "NPTG": "N0067936", "ATCO": "670", "CRS_code": "MRR" }, "geometry": { "type": "Point", "coordinates": [ -5.82191769843, 56.969718904200001 ] } },
{ "type": "Feature", "properties": { "Name": "Morecambe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Morecambe Rail Station", "TIPLOC": "MORCAME", "CRS": "MCM", "StopAreaCode": "910GMORCAME", "AdministrativeAreaRef": "110", "code": "9100MORCAME", "NPTG": "E0015996", "ATCO": "250", "CRS_code": "MCM" }, "geometry": { "type": "Point", "coordinates": [ -2.86930803801, 54.070318981779998 ] } },
{ "type": "Feature", "properties": { "Name": "Morden South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Morden South Rail Station", "TIPLOC": "MORDENS", "CRS": "MDS", "StopAreaCode": "910GMORDENS", "AdministrativeAreaRef": "110", "code": "9100MORDENS", "NPTG": "N0060477", "ATCO": "490", "CRS_code": "MDS" }, "geometry": { "type": "Point", "coordinates": [ -0.19946091935, 51.39611631236 ] } },
{ "type": "Feature", "properties": { "Name": "Moreton (Dorset) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moreton (Dorset) Rail Station", "TIPLOC": "MORETON", "CRS": "MTN", "StopAreaCode": "910GMORETON", "AdministrativeAreaRef": "110", "code": "9100MORETON", "NPTG": "E0045759", "ATCO": "120", "CRS_code": "MTN" }, "geometry": { "type": "Point", "coordinates": [ -2.31344966512, 50.701030731030002 ] } },
{ "type": "Feature", "properties": { "Name": "Moorfields Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moorfields Rail Station", "TIPLOC": "MORFLDS", "CRS": "MRF", "StopAreaCode": "910GMORFLDS", "AdministrativeAreaRef": "110", "code": "9100MORFLDS", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "MRF" }, "geometry": { "type": "Point", "coordinates": [ -2.98918778262, 53.408562170350002 ] } },
{ "type": "Feature", "properties": { "Name": "Moorfields Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moorfields Rail Station", "TIPLOC": "MORFNL", "CRS": "MRF", "StopAreaCode": "910GMORFLDS", "AdministrativeAreaRef": "110", "code": "9100MORFNL", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "MRF" }, "geometry": { "type": "Point", "coordinates": [ -2.9891727421, 53.408562294969997 ] } },
{ "type": "Feature", "properties": { "Name": "Moorthorpe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moorthorpe Rail Station", "TIPLOC": "MORTHRP", "CRS": "MRP", "StopAreaCode": "910GMORTHRP", "AdministrativeAreaRef": "110", "code": "9100MORTHRP", "NPTG": "E0033227", "ATCO": "450", "CRS_code": "MRP" }, "geometry": { "type": "Point", "coordinates": [ -1.30494699382, 53.594996128200002 ] } },
{ "type": "Feature", "properties": { "Name": "Mossley (Manchester) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mossley (Manchester) Rail Station", "TIPLOC": "MOSSLEY", "CRS": "MSL", "StopAreaCode": "910GMOSSLEY", "AdministrativeAreaRef": "110", "code": "9100MOSSLEY", "NPTG": "E0029105", "ATCO": "180", "CRS_code": "MSL" }, "geometry": { "type": "Point", "coordinates": [ -2.04128191011, 53.514978528199997 ] } },
{ "type": "Feature", "properties": { "Name": "Mottisfont & Dunbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mottisfont & Dunbridge Rail Station", "TIPLOC": "MOTFONT", "CRS": "DBG", "StopAreaCode": "910GMOTFONT", "AdministrativeAreaRef": "110", "code": "9100MOTFONT", "NPTG": "E0013378", "ATCO": "190", "CRS_code": "DBG" }, "geometry": { "type": "Point", "coordinates": [ -1.54708477155, 51.033926031749999 ] } },
{ "type": "Feature", "properties": { "Name": "Motherwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Motherwell Rail Station", "TIPLOC": "MOTHRWL", "CRS": "MTH", "StopAreaCode": "910GMOTHRWL", "AdministrativeAreaRef": "110", "code": "9100MOTHRWL", "NPTG": "ES002695", "ATCO": "616", "CRS_code": "MTH" }, "geometry": { "type": "Point", "coordinates": [ -3.99432531695, 55.791674145359998 ] } },
{ "type": "Feature", "properties": { "Name": "Mottingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mottingham Rail Station", "TIPLOC": "MOTNGHM", "CRS": "MTG", "StopAreaCode": "910GMOTNGHM", "AdministrativeAreaRef": "110", "code": "9100MOTNGHM", "NPTG": "E0034124", "ATCO": "490", "CRS_code": "MTG" }, "geometry": { "type": "Point", "coordinates": [ 0.05005403153, 51.440218186240003 ] } },
{ "type": "Feature", "properties": { "Name": "Moreton (Merseyside) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moreton (Merseyside) Rail Station", "TIPLOC": "MOTO", "CRS": "MRT", "StopAreaCode": "910GMOTO", "AdministrativeAreaRef": "110", "code": "9100MOTO", "NPTG": "E0057862", "ATCO": "280", "CRS_code": "MRT" }, "geometry": { "type": "Point", "coordinates": [ -3.11350197116, 53.407206705020002 ] } },
{ "type": "Feature", "properties": { "Name": "Motspur Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Motspur Park Rail Station", "TIPLOC": "MOTSPRP", "CRS": "MOT", "StopAreaCode": "910GMOTSPRP", "AdministrativeAreaRef": "110", "code": "9100MOTSPRP", "NPTG": "E0034694", "ATCO": "490", "CRS_code": "MOT" }, "geometry": { "type": "Point", "coordinates": [ -0.23953069632, 51.39519641359 ] } },
{ "type": "Feature", "properties": { "Name": "Maryport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maryport Rail Station", "TIPLOC": "MPRT", "CRS": "MRY", "StopAreaCode": "910GMPRT", "AdministrativeAreaRef": "110", "code": "9100MPRT", "NPTG": "E0055491", "ATCO": "090", "CRS_code": "MRY" }, "geometry": { "type": "Point", "coordinates": [ -3.49407438498, 54.711319401200001 ] } },
{ "type": "Feature", "properties": { "Name": "March Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "March Rail Station", "TIPLOC": "MRCH", "CRS": "MCH", "StopAreaCode": "910GMRCH", "AdministrativeAreaRef": "110", "code": "9100MRCH", "NPTG": "E0043702", "ATCO": "050", "CRS_code": "MCH" }, "geometry": { "type": "Point", "coordinates": [ 0.09119783325, 52.559893830150003 ] } },
{ "type": "Feature", "properties": { "Name": "Moorgate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moorgate Rail Station", "TIPLOC": "MRGT", "CRS": "MOG", "StopAreaCode": "910GMRGT", "AdministrativeAreaRef": "110", "code": "9100MRGT", "NPTG": "N0065179", "ATCO": "490", "CRS_code": "MOG" }, "geometry": { "type": "Point", "coordinates": [ -0.08894332957, 51.518491442059997 ] } },
{ "type": "Feature", "properties": { "Name": "Marks Tey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marks Tey Rail Station", "TIPLOC": "MRKSTEY", "CRS": "MKT", "StopAreaCode": "910GMRKSTEY", "AdministrativeAreaRef": "110", "code": "9100MRKSTEY", "NPTG": "E0046262", "ATCO": "150", "CRS_code": "MKT" }, "geometry": { "type": "Point", "coordinates": [ 0.78332750841, 51.880938945220002 ] } },
{ "type": "Feature", "properties": { "Name": "Market Harborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Market Harborough Rail Station", "TIPLOC": "MRKTHRB", "CRS": "MHR", "StopAreaCode": "910GMRKTHRB", "AdministrativeAreaRef": "110", "code": "9100MRKTHRB", "NPTG": "E0016684", "ATCO": "260", "CRS_code": "MHR" }, "geometry": { "type": "Point", "coordinates": [ -0.9093321733, 52.479721791350002 ] } },
{ "type": "Feature", "properties": { "Name": "Morley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Morley Rail Station", "TIPLOC": "MRLY", "CRS": "MLY", "StopAreaCode": "910GMRLY", "AdministrativeAreaRef": "110", "code": "9100MRLY", "NPTG": "E0033229", "ATCO": "450", "CRS_code": "MLY" }, "geometry": { "type": "Point", "coordinates": [ -1.59097671114, 53.749923560340001 ] } },
{ "type": "Feature", "properties": { "Name": "Morpeth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Morpeth Rail Station", "TIPLOC": "MRPTHRP", "CRS": "MPT", "StopAreaCode": "910GMRPTHRP", "AdministrativeAreaRef": "110", "code": "9100MRPTHRP", "NPTG": "E0049949", "ATCO": "310", "CRS_code": "MPT" }, "geometry": { "type": "Point", "coordinates": [ -1.68307448768, 55.162376192700002 ] } },
{ "type": "Feature", "properties": { "Name": "Merryton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Merryton Rail Station", "TIPLOC": "MRRYTON", "CRS": "MEY", "StopAreaCode": "910GMRRYTON", "AdministrativeAreaRef": "110", "code": "9100MRRYTON", "NPTG": "ES002294", "ATCO": "615", "CRS_code": "MEY" }, "geometry": { "type": "Point", "coordinates": [ -3.97825350947, 55.74870651394 ] } },
{ "type": "Feature", "properties": { "Name": "Moorside Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moorside Rail Station", "TIPLOC": "MRSD", "CRS": "MSD", "StopAreaCode": "910GMRSD", "AdministrativeAreaRef": "110", "code": "9100MRSD", "NPTG": "E0029089", "ATCO": "180", "CRS_code": "MSD" }, "geometry": { "type": "Point", "coordinates": [ -2.3517994151, 53.516274075379997 ] } },
{ "type": "Feature", "properties": { "Name": "Marske Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marske Rail Station", "TIPLOC": "MRSK", "CRS": "MSK", "StopAreaCode": "910GMRSK", "AdministrativeAreaRef": "110", "code": "9100MRSK", "NPTG": "E0041544", "ATCO": "078", "CRS_code": "MSK" }, "geometry": { "type": "Point", "coordinates": [ -1.01890967475, 54.587417356670002 ] } },
{ "type": "Feature", "properties": { "Name": "Marsden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marsden Rail Station", "TIPLOC": "MRSN", "CRS": "MSN", "StopAreaCode": "910GMRSN", "AdministrativeAreaRef": "110", "code": "9100MRSN", "NPTG": "E0033154", "ATCO": "450", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.93074978354, 53.6031861791 ] } },
{ "type": "Feature", "properties": { "Name": "Marston Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Marston Green Rail Station", "TIPLOC": "MRSTNGR", "CRS": "MGN", "StopAreaCode": "910GMRSTNGR", "AdministrativeAreaRef": "110", "code": "9100MRSTNGR", "NPTG": "E0031766", "ATCO": "430", "CRS_code": "MGN" }, "geometry": { "type": "Point", "coordinates": [ -1.75560688006, 52.467188984609997 ] } },
{ "type": "Feature", "properties": { "Name": "Mortlake Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mortlake Rail Station", "TIPLOC": "MRTLKE", "CRS": "MTL", "StopAreaCode": "910GMRTLKE", "AdministrativeAreaRef": "110", "code": "9100MRTLKE", "NPTG": "E0034767", "ATCO": "490", "CRS_code": "MTL" }, "geometry": { "type": "Point", "coordinates": [ -0.26710557315, 51.468086827880001 ] } },
{ "type": "Feature", "properties": { "Name": "Maryhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maryhill Rail Station", "TIPLOC": "MRYHILL", "CRS": "MYH", "StopAreaCode": "910GMRYHILL", "AdministrativeAreaRef": "110", "code": "9100MRYHILL", "NPTG": "ES002551", "ATCO": "609", "CRS_code": "MYH" }, "geometry": { "type": "Point", "coordinates": [ -4.30074507717, 55.897630739909999 ] } },
{ "type": "Feature", "properties": { "Name": "Maryland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maryland Rail Station", "TIPLOC": "MRYLAND", "CRS": "MYL", "StopAreaCode": "910GMRYLAND", "AdministrativeAreaRef": "110", "code": "9100MRYLAND", "NPTG": "N0060321", "ATCO": "490", "CRS_code": "MYL" }, "geometry": { "type": "Point", "coordinates": [ 0.00581521216, 51.546081362860001 ] } },
{ "type": "Feature", "properties": { "Name": "Musselburgh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Musselburgh Rail Station", "TIPLOC": "MSELBGH", "CRS": "MUB", "StopAreaCode": "910GMSELBGH", "AdministrativeAreaRef": "110", "code": "9100MSELBGH", "NPTG": "ES002734", "ATCO": "627", "CRS_code": "MUB" }, "geometry": { "type": "Point", "coordinates": [ -3.07320079768, 55.933590872 ] } },
{ "type": "Feature", "properties": { "Name": "Moses Gate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moses Gate Rail Station", "TIPLOC": "MSGT", "CRS": "MSS", "StopAreaCode": "910GMSGT", "AdministrativeAreaRef": "110", "code": "9100MSGT", "NPTG": "E0029094", "ATCO": "180", "CRS_code": "MSS" }, "geometry": { "type": "Point", "coordinates": [ -2.4011880513, 53.55598206538 ] } },
{ "type": "Feature", "properties": { "Name": "Mossley Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mossley Hill Rail Station", "TIPLOC": "MSLH", "CRS": "MSH", "StopAreaCode": "910GMSLH", "AdministrativeAreaRef": "110", "code": "9100MSLH", "NPTG": "E0029807", "ATCO": "280", "CRS_code": "MSH" }, "geometry": { "type": "Point", "coordinates": [ -2.91544302228, 53.379037633190002 ] } },
{ "type": "Feature", "properties": { "Name": "Moss Side Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moss Side Rail Station", "TIPLOC": "MSSD", "CRS": "MOS", "StopAreaCode": "910GMSSD", "AdministrativeAreaRef": "110", "code": "9100MSSD", "NPTG": "E0015847", "ATCO": "250", "CRS_code": "MOS" }, "geometry": { "type": "Point", "coordinates": [ -2.94293451675, 53.76497617938 ] } },
{ "type": "Feature", "properties": { "Name": "Mosspark Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mosspark Rail Station", "TIPLOC": "MSSPARK", "CRS": "MPK", "StopAreaCode": "910GMSSPARK", "AdministrativeAreaRef": "110", "code": "9100MSSPARK", "NPTG": "ES002692", "ATCO": "609", "CRS_code": "MPK" }, "geometry": { "type": "Point", "coordinates": [ -4.34829254695, 55.840829410189997 ] } },
{ "type": "Feature", "properties": { "Name": "Moston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Moston Rail Station", "TIPLOC": "MSTN", "CRS": "MSO", "StopAreaCode": "910GMSTN", "AdministrativeAreaRef": "110", "code": "9100MSTN", "NPTG": "N0075088", "ATCO": "180", "CRS_code": "MSO" }, "geometry": { "type": "Point", "coordinates": [ -2.17102283331, 53.52341999822 ] } },
{ "type": "Feature", "properties": { "Name": "Maidstone Barracks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maidstone Barracks Rail Station", "TIPLOC": "MSTONEB", "CRS": "MDB", "StopAreaCode": "910GMSTONEB", "AdministrativeAreaRef": "110", "code": "9100MSTONEB", "NPTG": "E0056051", "ATCO": "240", "CRS_code": "MDB" }, "geometry": { "type": "Point", "coordinates": [ 0.51396025465, 51.27716948482 ] } },
{ "type": "Feature", "properties": { "Name": "Maidstone East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maidstone East Rail Station", "TIPLOC": "MSTONEE", "CRS": "MDE", "StopAreaCode": "910GMSTONEE", "AdministrativeAreaRef": "110", "code": "9100MSTONEE", "NPTG": "E0056051", "ATCO": "240", "CRS_code": "MDE" }, "geometry": { "type": "Point", "coordinates": [ 0.52129516596, 51.277830114149999 ] } },
{ "type": "Feature", "properties": { "Name": "Maidstone West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Maidstone West Rail Station", "TIPLOC": "MSTONEW", "CRS": "MDW", "StopAreaCode": "910GMSTONEW", "AdministrativeAreaRef": "110", "code": "9100MSTONEW", "NPTG": "E0056051", "ATCO": "240", "CRS_code": "MDW" }, "geometry": { "type": "Point", "coordinates": [ 0.5157735375, 51.270466193490002 ] } },
{ "type": "Feature", "properties": { "Name": "Mount Florida Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mount Florida Rail Station", "TIPLOC": "MTFL", "CRS": "MFL", "StopAreaCode": "910GMTFL", "AdministrativeAreaRef": "110", "code": "9100MTFL", "NPTG": "N0068166", "ATCO": "609", "CRS_code": "MFL" }, "geometry": { "type": "Point", "coordinates": [ -4.26113153347, 55.82655503238 ] } },
{ "type": "Feature", "properties": { "Name": "Metheringham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Metheringham Rail Station", "TIPLOC": "MTHRNGH", "CRS": "MGM", "StopAreaCode": "910GMTHRNGH", "AdministrativeAreaRef": "110", "code": "9100MTHRNGH", "NPTG": "E0056234", "ATCO": "270", "CRS_code": "MGM" }, "geometry": { "type": "Point", "coordinates": [ -0.39145306749, 53.138879874979999 ] } },
{ "type": "Feature", "properties": { "Name": "Mortimer Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mortimer Rail Station", "TIPLOC": "MTIMER", "CRS": "MOR", "StopAreaCode": "910GMTIMER", "AdministrativeAreaRef": "110", "code": "9100MTIMER", "NPTG": "E0055207", "ATCO": "030", "CRS_code": "MOR" }, "geometry": { "type": "Point", "coordinates": [ -1.03550996916, 51.37207866744 ] } },
{ "type": "Feature", "properties": { "Name": "Muirend Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Muirend Rail Station", "TIPLOC": "MUIREND", "CRS": "MUI", "StopAreaCode": "910GMUIREND", "AdministrativeAreaRef": "110", "code": "9100MUIREND", "NPTG": "N0068167", "ATCO": "612", "CRS_code": "MUI" }, "geometry": { "type": "Point", "coordinates": [ -4.27439172985, 55.809458793849998 ] } },
{ "type": "Feature", "properties": { "Name": "Muir of Ord Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Muir of Ord Rail Station", "TIPLOC": "MUROORD", "CRS": "MOO", "StopAreaCode": "910GMUROORD", "AdministrativeAreaRef": "110", "code": "9100MUROORD", "NPTG": "ES002713", "ATCO": "670", "CRS_code": "MOO" }, "geometry": { "type": "Point", "coordinates": [ -4.4602329673, 57.517847583840002 ] } },
{ "type": "Feature", "properties": { "Name": "Meridian Water Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Meridian Water Rail Station", "TIPLOC": "MWRWSTN", "CRS": "MRW", "StopAreaCode": "910GMWRWSTN", "AdministrativeAreaRef": "110", "code": "9100MWRWSTN", "NPTG": "E0034318", "ATCO": "490", "CRS_code": "MRW" }, "geometry": { "type": "Point", "coordinates": [ -0.05089766084, 51.610101878030001 ] } },
{ "type": "Feature", "properties": { "Name": "Mytholmroyd Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Mytholmroyd Rail Station", "TIPLOC": "MYTHLMR", "CRS": "MYT", "StopAreaCode": "910GMYTHLMR", "AdministrativeAreaRef": "110", "code": "9100MYTHLMR", "NPTG": "E0033244", "ATCO": "450", "CRS_code": "MYT" }, "geometry": { "type": "Point", "coordinates": [ -1.98142575446, 53.729002863310001 ] } },
{ "type": "Feature", "properties": { "Name": "Newton Abbot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newton Abbot Rail Station", "TIPLOC": "NABT", "CRS": "NTA", "StopAreaCode": "910GNABT", "AdministrativeAreaRef": "110", "code": "9100NABT", "NPTG": "E0045505", "ATCO": "110", "CRS_code": "NTA" }, "geometry": { "type": "Point", "coordinates": [ -3.59916680373, 50.529585537380001 ] } },
{ "type": "Feature", "properties": { "Name": "Nafferton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nafferton Rail Station", "TIPLOC": "NAFERTN", "CRS": "NFN", "StopAreaCode": "910GNAFERTN", "AdministrativeAreaRef": "110", "code": "9100NAFERTN", "NPTG": "E0053083", "ATCO": "220", "CRS_code": "NFN" }, "geometry": { "type": "Point", "coordinates": [ -0.38607599699, 54.011222623359998 ] } },
{ "type": "Feature", "properties": { "Name": "Nailsea & Backwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nailsea & Backwell Rail Station", "TIPLOC": "NAILSEA", "CRS": "NLS", "StopAreaCode": "910GNAILSEA", "AdministrativeAreaRef": "110", "code": "9100NAILSEA", "NPTG": "E0053579", "ATCO": "019", "CRS_code": "NLS" }, "geometry": { "type": "Point", "coordinates": [ -2.75063384005, 51.419408204809997 ] } },
{ "type": "Feature", "properties": { "Name": "Nairn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nairn Rail Station", "TIPLOC": "NAIRN", "CRS": "NRN", "StopAreaCode": "910GNAIRN", "AdministrativeAreaRef": "110", "code": "9100NAIRN", "NPTG": "ES002743", "ATCO": "670", "CRS_code": "NRN" }, "geometry": { "type": "Point", "coordinates": [ -3.87200004631, 57.580245586479997 ] } },
{ "type": "Feature", "properties": { "Name": "Nantwich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nantwich Rail Station", "TIPLOC": "NANTWCH", "CRS": "NAN", "StopAreaCode": "910GNANTWCH", "AdministrativeAreaRef": "110", "code": "9100NANTWCH", "NPTG": "E0044325", "ATCO": "060", "CRS_code": "NAN" }, "geometry": { "type": "Point", "coordinates": [ -2.51895919262, 53.063571845779997 ] } },
{ "type": "Feature", "properties": { "Name": "Narborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Narborough Rail Station", "TIPLOC": "NARBRO", "CRS": "NBR", "StopAreaCode": "910GNARBRO", "AdministrativeAreaRef": "110", "code": "9100NARBRO", "NPTG": "E0047599", "ATCO": "260", "CRS_code": "NBR" }, "geometry": { "type": "Point", "coordinates": [ -1.20334605098, 52.571293154510002 ] } },
{ "type": "Feature", "properties": { "Name": "Navigation Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Navigation Road Rail Station", "TIPLOC": "NAVGTNR", "CRS": "NVR", "StopAreaCode": "910GNAVGTNR", "AdministrativeAreaRef": "110", "code": "9100NAVGTNR", "NPTG": "N0075095", "ATCO": "180", "CRS_code": "NVR" }, "geometry": { "type": "Point", "coordinates": [ -2.34341713394, 53.39537592117 ] } },
{ "type": "Feature", "properties": { "Name": "New Barnet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Barnet Rail Station", "TIPLOC": "NBARNET", "CRS": "NBA", "StopAreaCode": "910GNBARNET", "AdministrativeAreaRef": "110", "code": "9100NBARNET", "NPTG": "E0033978", "ATCO": "490", "CRS_code": "NBA" }, "geometry": { "type": "Point", "coordinates": [ -0.1729970807, 51.648574580930003 ] } },
{ "type": "Feature", "properties": { "Name": "New Beckenham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Beckenham Rail Station", "TIPLOC": "NBCKNHM", "CRS": "NBC", "StopAreaCode": "910GNBCKNHM", "AdministrativeAreaRef": "110", "code": "9100NBCKNHM", "NPTG": "E0034125", "ATCO": "490", "CRS_code": "NBC" }, "geometry": { "type": "Point", "coordinates": [ -0.03527342593, 51.416769621150003 ] } },
{ "type": "Feature", "properties": { "Name": "North Berwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Berwick Rail Station", "TIPLOC": "NBERWCK", "CRS": "NBW", "StopAreaCode": "910GNBERWCK", "AdministrativeAreaRef": "110", "code": "9100NBERWCK", "NPTG": "ES002849", "ATCO": "627", "CRS_code": "NBW" }, "geometry": { "type": "Point", "coordinates": [ -2.73074161077, 56.057036165089997 ] } },
{ "type": "Feature", "properties": { "Name": "Newbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newbridge Rail Station", "TIPLOC": "NBRWGE", "CRS": "NBE", "StopAreaCode": "910GNBRWGE", "AdministrativeAreaRef": "110", "code": "9100NBRWGE", "NPTG": "E0053986", "ATCO": "554", "CRS_code": "NBE" }, "geometry": { "type": "Point", "coordinates": [ -3.14288514679, 51.665815447740002 ] } },
{ "type": "Feature", "properties": { "Name": "New Brighton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Brighton Rail Station", "TIPLOC": "NBTN", "CRS": "NBN", "StopAreaCode": "910GNBTN", "AdministrativeAreaRef": "110", "code": "9100NBTN", "NPTG": "E0029811", "ATCO": "280", "CRS_code": "NBN" }, "geometry": { "type": "Point", "coordinates": [ -3.04796467635, 53.437400636260001 ] } },
{ "type": "Feature", "properties": { "Name": "Newcraighall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newcraighall Rail Station", "TIPLOC": "NCRAGHA", "CRS": "NEW", "StopAreaCode": "910GNCRAGHA", "AdministrativeAreaRef": "110", "code": "9100NCRAGHA", "NPTG": "N0067202", "ATCO": "620", "CRS_code": "NEW" }, "geometry": { "type": "Point", "coordinates": [ -3.09084339061, 55.933121398140003 ] } },
{ "type": "Feature", "properties": { "Name": "North Dulwich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Dulwich Rail Station", "TIPLOC": "NDULWCH", "CRS": "NDL", "StopAreaCode": "910GNDULWCH", "AdministrativeAreaRef": "110", "code": "9100NDULWCH", "NPTG": "N0060436", "ATCO": "490", "CRS_code": "NDL" }, "geometry": { "type": "Point", "coordinates": [ -0.08791747267, 51.45451033042 ] } },
{ "type": "Feature", "properties": { "Name": "Neath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Neath Rail Station", "TIPLOC": "NEATH", "CRS": "NTH", "StopAreaCode": "910GNEATH", "AdministrativeAreaRef": "110", "code": "9100NEATH", "NPTG": "E0054428", "ATCO": "582", "CRS_code": "NTH" }, "geometry": { "type": "Point", "coordinates": [ -3.80721896671, 51.662360954630003 ] } },
{ "type": "Feature", "properties": { "Name": "Needham Market Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Needham Market Rail Station", "TIPLOC": "NEEDHAM", "CRS": "NMT", "StopAreaCode": "910GNEEDHAM", "AdministrativeAreaRef": "110", "code": "9100NEEDHAM", "NPTG": "E0051446", "ATCO": "390", "CRS_code": "NMT" }, "geometry": { "type": "Point", "coordinates": [ 1.05525990527, 52.152589574079997 ] } },
{ "type": "Feature", "properties": { "Name": "Neilston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Neilston Rail Station", "TIPLOC": "NEILSTN", "CRS": "NEI", "StopAreaCode": "910GNEILSTN", "AdministrativeAreaRef": "110", "code": "9100NEILSTN", "NPTG": "ES002751", "ATCO": "612", "CRS_code": "NEI" }, "geometry": { "type": "Point", "coordinates": [ -4.42695225333, 55.783037709730003 ] } },
{ "type": "Feature", "properties": { "Name": "Neston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Neston Rail Station", "TIPLOC": "NESTON", "CRS": "NES", "StopAreaCode": "910GNESTON", "AdministrativeAreaRef": "110", "code": "9100NESTON", "NPTG": "E0001818", "ATCO": "061", "CRS_code": "NES" }, "geometry": { "type": "Point", "coordinates": [ -3.06307612447, 53.291851133500003 ] } },
{ "type": "Feature", "properties": { "Name": "Nethertown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nethertown Rail Station", "TIPLOC": "NETHRTN", "CRS": "NRT", "StopAreaCode": "910GNETHRTN", "AdministrativeAreaRef": "110", "code": "9100NETHRTN", "NPTG": "E0005665", "ATCO": "090", "CRS_code": "NRT" }, "geometry": { "type": "Point", "coordinates": [ -3.56583766431, 54.456416026189999 ] } },
{ "type": "Feature", "properties": { "Name": "Netley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Netley Rail Station", "TIPLOC": "NETLEY", "CRS": "NTL", "StopAreaCode": "910GNETLEY", "AdministrativeAreaRef": "110", "code": "9100NETLEY", "NPTG": "E0012880", "ATCO": "190", "CRS_code": "NTL" }, "geometry": { "type": "Point", "coordinates": [ -1.34190280622, 50.8749092475 ] } },
{ "type": "Feature", "properties": { "Name": "Newark North Gate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newark North Gate Rail Station", "TIPLOC": "NEWANG", "CRS": "NNG", "StopAreaCode": "910GNEWANG", "AdministrativeAreaRef": "110", "code": "9100NEWANG", "NPTG": "E0050159", "ATCO": "330", "CRS_code": "NNG" }, "geometry": { "type": "Point", "coordinates": [ -0.79985451326, 53.081757949119996 ] } },
{ "type": "Feature", "properties": { "Name": "Newbury Racecourse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newbury Racecourse Rail Station", "TIPLOC": "NEWBRYR", "CRS": "NRC", "StopAreaCode": "910GNEWBRYR", "AdministrativeAreaRef": "110", "code": "9100NEWBRYR", "NPTG": "E0055208", "ATCO": "030", "CRS_code": "NRC" }, "geometry": { "type": "Point", "coordinates": [ -1.30779905459, 51.398460652460003 ] } },
{ "type": "Feature", "properties": { "Name": "Newbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newbury Rail Station", "TIPLOC": "NEWBURY", "CRS": "NBY", "StopAreaCode": "910GNEWBURY", "AdministrativeAreaRef": "110", "code": "9100NEWBURY", "NPTG": "E0055208", "ATCO": "030", "CRS_code": "NBY" }, "geometry": { "type": "Point", "coordinates": [ -1.32286108926, 51.397649434560002 ] } },
{ "type": "Feature", "properties": { "Name": "New Clee Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Clee Rail Station", "TIPLOC": "NEWCLEE", "CRS": "NCE", "StopAreaCode": "910GNEWCLEE", "AdministrativeAreaRef": "110", "code": "9100NEWCLEE", "NPTG": "E0039815", "ATCO": "228", "CRS_code": "NCE" }, "geometry": { "type": "Point", "coordinates": [ -0.06081258567, 53.574379015090003 ] } },
{ "type": "Feature", "properties": { "Name": "Newhaven Harbour Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newhaven Harbour Rail Station", "TIPLOC": "NEWHVNH", "CRS": "NVH", "StopAreaCode": "910GNEWHVNH", "AdministrativeAreaRef": "110", "code": "9100NEWHVNH", "NPTG": "E0046047", "ATCO": "140", "CRS_code": "NVH" }, "geometry": { "type": "Point", "coordinates": [ 0.05499305371, 50.789791704050003 ] } },
{ "type": "Feature", "properties": { "Name": "Newhaven Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newhaven Town Rail Station", "TIPLOC": "NEWHVNT", "CRS": "NVN", "StopAreaCode": "910GNEWHVNT", "AdministrativeAreaRef": "110", "code": "9100NEWHVNT", "NPTG": "E0046047", "ATCO": "140", "CRS_code": "NVN" }, "geometry": { "type": "Point", "coordinates": [ 0.05494556966, 50.794856002400003 ] } },
{ "type": "Feature", "properties": { "Name": "New Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Lane Rail Station", "TIPLOC": "NEWLANE", "CRS": "NLN", "StopAreaCode": "910GNEWLANE", "AdministrativeAreaRef": "110", "code": "9100NEWLANE", "NPTG": "E0016506", "ATCO": "250", "CRS_code": "NLN" }, "geometry": { "type": "Point", "coordinates": [ -2.8677159849, 53.61166251489 ] } },
{ "type": "Feature", "properties": { "Name": "New Malden Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Malden Rail Station", "TIPLOC": "NEWMLDN", "CRS": "NEM", "StopAreaCode": "910GNEWMLDN", "AdministrativeAreaRef": "110", "code": "9100NEWMLDN", "NPTG": "E0034617", "ATCO": "490", "CRS_code": "NEM" }, "geometry": { "type": "Point", "coordinates": [ -0.25593955245, 51.40407461689 ] } },
{ "type": "Feature", "properties": { "Name": "Newington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newington Rail Station", "TIPLOC": "NEWNGTN", "CRS": "NGT", "StopAreaCode": "910GNEWNGTN", "AdministrativeAreaRef": "110", "code": "9100NEWNGTN", "NPTG": "E0047311", "ATCO": "240", "CRS_code": "NGT" }, "geometry": { "type": "Point", "coordinates": [ 0.66857061491, 51.353341681869999 ] } },
{ "type": "Feature", "properties": { "Name": "Newport (Essex) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newport (Essex) Rail Station", "TIPLOC": "NEWPRTE", "CRS": "NWE", "StopAreaCode": "910GNEWPRTE", "AdministrativeAreaRef": "110", "code": "9100NEWPRTE", "NPTG": "E0046418", "ATCO": "150", "CRS_code": "NWE" }, "geometry": { "type": "Point", "coordinates": [ 0.21514056898, 51.979869566550001 ] } },
{ "type": "Feature", "properties": { "Name": "Newquay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newquay Rail Station", "TIPLOC": "NEWQUAY", "CRS": "NQY", "StopAreaCode": "910GNEWQUAY", "AdministrativeAreaRef": "110", "code": "9100NEWQUAY", "NPTG": "E0044645", "ATCO": "080", "CRS_code": "NQY" }, "geometry": { "type": "Point", "coordinates": [ -5.0756542633, 50.415095205519997 ] } },
{ "type": "Feature", "properties": { "Name": "New Southgate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Southgate Rail Station", "TIPLOC": "NEWSGAT", "CRS": "NSG", "StopAreaCode": "910GNEWSGAT", "AdministrativeAreaRef": "110", "code": "9100NEWSGAT", "NPTG": "E0034306", "ATCO": "490", "CRS_code": "NSG" }, "geometry": { "type": "Point", "coordinates": [ -0.14303783149, 51.614113561849997 ] } },
{ "type": "Feature", "properties": { "Name": "New Cross Gate ELL Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Cross Gate ELL Rail Station", "TIPLOC": "NEWXGEL", "CRS": "NXG", "StopAreaCode": "910GNEWXGEL", "AdministrativeAreaRef": "110", "code": "9100NEWXGEL", "NPTG": "N0065180", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.04041330202, 51.475128477189998 ] } },
{ "type": "Feature", "properties": { "Name": "New Cross Gate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Cross Gate Rail Station", "TIPLOC": "NEWXGTE", "CRS": "NXG", "StopAreaCode": "910GNEWXGTE", "AdministrativeAreaRef": "110", "code": "9100NEWXGTE", "NPTG": "N0065180", "ATCO": "490", "CRS_code": "NXG" }, "geometry": { "type": "Point", "coordinates": [ -0.04039891213, 51.47512823668 ] } },
{ "type": "Feature", "properties": { "Name": "New Hey Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "New Hey Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GNHEY", "AdministrativeAreaRef": "110", "code": "9100NHEY", "NPTG": "E0029132", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.09538848345, 53.60108256334 ] } },
{ "type": "Feature", "properties": { "Name": "New Holland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Holland Rail Station", "TIPLOC": "NHOL", "CRS": "NHL", "StopAreaCode": "910GNHOL", "AdministrativeAreaRef": "110", "code": "9100NHOL", "NPTG": "E0053535", "ATCO": "227", "CRS_code": "NHL" }, "geometry": { "type": "Point", "coordinates": [ -0.36021336375, 53.701921248490002 ] } },
{ "type": "Feature", "properties": { "Name": "Ninian Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ninian Park Rail Station", "TIPLOC": "NINIANP", "CRS": "NNP", "StopAreaCode": "910GNINIANP", "AdministrativeAreaRef": "110", "code": "9100NINIANP", "NPTG": "E0053999", "ATCO": "571", "CRS_code": "NNP" }, "geometry": { "type": "Point", "coordinates": [ -3.20169377666, 51.47661626859 ] } },
{ "type": "Feature", "properties": { "Name": "Nitshill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nitshill Rail Station", "TIPLOC": "NITSH", "CRS": "NIT", "StopAreaCode": "910GNITSH", "AdministrativeAreaRef": "110", "code": "9100NITSH", "NPTG": "N0068177", "ATCO": "612", "CRS_code": "NIT" }, "geometry": { "type": "Point", "coordinates": [ -4.35995867425, 55.811935176219997 ] } },
{ "type": "Feature", "properties": { "Name": "North Llanrwst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Llanrwst Rail Station", "TIPLOC": "NLANRST", "CRS": "NLR", "StopAreaCode": "910GNLANRST", "AdministrativeAreaRef": "110", "code": "9100NLANRST", "NPTG": "E0054176", "ATCO": "513", "CRS_code": "NLR" }, "geometry": { "type": "Point", "coordinates": [ -3.80272737021, 53.143821897700001 ] } },
{ "type": "Feature", "properties": { "Name": "Northallerton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Northallerton Rail Station", "TIPLOC": "NLRTN", "CRS": "NTR", "StopAreaCode": "910GNLRTN", "AdministrativeAreaRef": "110", "code": "9100NLRTN", "NPTG": "E0049049", "ATCO": "320", "CRS_code": "NTR" }, "geometry": { "type": "Point", "coordinates": [ -1.4412729874, 54.33307201361 ] } },
{ "type": "Feature", "properties": { "Name": "Nelson Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nelson Rail Station", "TIPLOC": "NLSN", "CRS": "NEL", "StopAreaCode": "910GNLSN", "AdministrativeAreaRef": "110", "code": "9100NLSN", "NPTG": "E0016082", "ATCO": "250", "CRS_code": "NEL" }, "geometry": { "type": "Point", "coordinates": [ -2.21375929722, 53.835006348009998 ] } },
{ "type": "Feature", "properties": { "Name": "Northumberland Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Northumberland Park Rail Station", "TIPLOC": "NMBRLPK", "CRS": "NUM", "StopAreaCode": "910GNMBRLPK", "AdministrativeAreaRef": "110", "code": "9100NMBRLPK", "NPTG": "N0061137", "ATCO": "490", "CRS_code": "NUM" }, "geometry": { "type": "Point", "coordinates": [ -0.05393184293, 51.601969065010003 ] } },
{ "type": "Feature", "properties": { "Name": "New Milton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Milton Rail Station", "TIPLOC": "NMILTON", "CRS": "NWM", "StopAreaCode": "910GNMILTON", "AdministrativeAreaRef": "110", "code": "9100NMILTON", "NPTG": "E0013234", "ATCO": "190", "CRS_code": "NWM" }, "geometry": { "type": "Point", "coordinates": [ -1.65781264824, 50.755752870759999 ] } },
{ "type": "Feature", "properties": { "Name": "Northampton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Northampton Rail Station", "TIPLOC": "NMPTN", "CRS": "NMP", "StopAreaCode": "910GNMPTN", "AdministrativeAreaRef": "110", "code": "9100NMPTN", "NPTG": "E0057589", "ATCO": "300", "CRS_code": "NMP" }, "geometry": { "type": "Point", "coordinates": [ -0.90665302241, 52.237500441649999 ] } },
{ "type": "Feature", "properties": { "Name": "Nuneaton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nuneaton Rail Station", "TIPLOC": "NNTN", "CRS": "NUN", "StopAreaCode": "910GNNTN", "AdministrativeAreaRef": "110", "code": "9100NNTN", "NPTG": "E0026040", "ATCO": "420", "CRS_code": "NUN" }, "geometry": { "type": "Point", "coordinates": [ -1.46387517652, 52.52637056847 ] } },
{ "type": "Feature", "properties": { "Name": "Norbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Norbury Rail Station", "TIPLOC": "NORBURY", "CRS": "NRB", "StopAreaCode": "910GNORBURY", "AdministrativeAreaRef": "110", "code": "9100NORBURY", "NPTG": "E0034222", "ATCO": "490", "CRS_code": "NRB" }, "geometry": { "type": "Point", "coordinates": [ -0.12192604338, 51.411445797600003 ] } },
{ "type": "Feature", "properties": { "Name": "Normanton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Normanton Rail Station", "TIPLOC": "NORMNTN", "CRS": "NOR", "StopAreaCode": "910GNORMNTN", "AdministrativeAreaRef": "110", "code": "9100NORMNTN", "NPTG": "E0052881", "ATCO": "450", "CRS_code": "NOR" }, "geometry": { "type": "Point", "coordinates": [ -1.42340130968, 53.700518923559997 ] } },
{ "type": "Feature", "properties": { "Name": "Norwood Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Norwood Junction Rail Station", "TIPLOC": "NORWDJ", "CRS": "NWD", "StopAreaCode": "910GNORWDJ", "AdministrativeAreaRef": "110", "code": "9100NORWDJ", "NPTG": "E0034236", "ATCO": "490", "CRS_code": "NWD" }, "geometry": { "type": "Point", "coordinates": [ -0.07522149976, 51.397019049240001 ] } },
{ "type": "Feature", "properties": { "Name": "New Pudsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Pudsey Rail Station", "TIPLOC": "NPUD", "CRS": "NPD", "StopAreaCode": "910GNPUD", "AdministrativeAreaRef": "110", "code": "9100NPUD", "NPTG": "E0033421", "ATCO": "450", "CRS_code": "NPD" }, "geometry": { "type": "Point", "coordinates": [ -1.68079230061, 53.80448387493 ] } },
{ "type": "Feature", "properties": { "Name": "North Queensferry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Queensferry Rail Station", "TIPLOC": "NQNSFRY", "CRS": "NQU", "StopAreaCode": "910GNQNSFRY", "AdministrativeAreaRef": "110", "code": "9100NQNSFRY", "NPTG": "ES002878", "ATCO": "650", "CRS_code": "NQU" }, "geometry": { "type": "Point", "coordinates": [ -3.39458458427, 56.012500642699997 ] } },
{ "type": "Feature", "properties": { "Name": "Narberth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Narberth Rail Station", "TIPLOC": "NRBERTH", "CRS": "NAR", "StopAreaCode": "910GNRBERTH", "AdministrativeAreaRef": "110", "code": "9100NRBERTH", "NPTG": "E0054516", "ATCO": "521", "CRS_code": "NAR" }, "geometry": { "type": "Point", "coordinates": [ -4.72717510325, 51.799368615589998 ] } },
{ "type": "Feature", "properties": { "Name": "Norbiton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Norbiton Rail Station", "TIPLOC": "NRBITON", "CRS": "NBT", "StopAreaCode": "910GNRBITON", "AdministrativeAreaRef": "110", "code": "9100NRBITON", "NPTG": "E0034618", "ATCO": "490", "CRS_code": "NBT" }, "geometry": { "type": "Point", "coordinates": [ -0.28402495282, 51.412357655720001 ] } },
{ "type": "Feature", "properties": { "Name": "Norwich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Norwich Rail Station", "TIPLOC": "NRCH", "CRS": "NRW", "StopAreaCode": "910GNRCH", "AdministrativeAreaRef": "110", "code": "9100NRCH", "NPTG": "E0057571", "ATCO": "290", "CRS_code": "NRW" }, "geometry": { "type": "Point", "coordinates": [ 1.30682020524, 52.627153554940001 ] } },
{ "type": "Feature", "properties": { "Name": "Normans Bay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Normans Bay Rail Station", "TIPLOC": "NRMNSBY", "CRS": "NSB", "StopAreaCode": "910GNRMNSBY", "AdministrativeAreaRef": "110", "code": "9100NRMNSBY", "NPTG": "E0010658", "ATCO": "140", "CRS_code": "NSB" }, "geometry": { "type": "Point", "coordinates": [ 0.3894616692, 50.826103880250002 ] } },
{ "type": "Feature", "properties": { "Name": "Northfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Northfield Rail Station", "TIPLOC": "NRTF", "CRS": "NFD", "StopAreaCode": "910GNRTF", "AdministrativeAreaRef": "110", "code": "9100NRTF", "NPTG": "E0031824", "ATCO": "430", "CRS_code": "NFD" }, "geometry": { "type": "Point", "coordinates": [ -1.96585143369, 52.408191777539997 ] } },
{ "type": "Feature", "properties": { "Name": "Northfleet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Northfleet Rail Station", "TIPLOC": "NRTHFLT", "CRS": "NFL", "StopAreaCode": "910GNRTHFLT", "AdministrativeAreaRef": "110", "code": "9100NRTHFLT", "NPTG": "E0057488", "ATCO": "240", "CRS_code": "NFL" }, "geometry": { "type": "Point", "coordinates": [ 0.3243335694, 51.44584634433 ] } },
{ "type": "Feature", "properties": { "Name": "North Sheen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Sheen Rail Station", "TIPLOC": "NSHEEN", "CRS": "NSH", "StopAreaCode": "910GNSHEEN", "AdministrativeAreaRef": "110", "code": "9100NSHEEN", "NPTG": "E0034769", "ATCO": "490", "CRS_code": "NSH" }, "geometry": { "type": "Point", "coordinates": [ -0.28787581322, 51.465154687339997 ] } },
{ "type": "Feature", "properties": { "Name": "Newton St Cyres Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newton St Cyres Rail Station", "TIPLOC": "NSTCYRE", "CRS": "NTC", "StopAreaCode": "910GNSTCYRE", "AdministrativeAreaRef": "110", "code": "9100NSTCYRE", "NPTG": "E0045321", "ATCO": "110", "CRS_code": "NTC" }, "geometry": { "type": "Point", "coordinates": [ -3.58938898152, 50.778927927410002 ] } },
{ "type": "Feature", "properties": { "Name": "North Camp Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Camp Rail Station", "TIPLOC": "NTHCAMP", "CRS": "NCM", "StopAreaCode": "910GNTHCAMP", "AdministrativeAreaRef": "110", "code": "9100NTHCAMP", "NPTG": "E0025346", "ATCO": "400", "CRS_code": "NCM" }, "geometry": { "type": "Point", "coordinates": [ -0.73119864698, 51.275794861889999 ] } },
{ "type": "Feature", "properties": { "Name": "Northolt Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Northolt Park Rail Station", "TIPLOC": "NTHOLTP", "CRS": "NLT", "StopAreaCode": "910GNTHOLTP", "AdministrativeAreaRef": "110", "code": "9100NTHOLTP", "NPTG": "E0034270", "ATCO": "490", "CRS_code": "NLT" }, "geometry": { "type": "Point", "coordinates": [ -0.35946586526, 51.557539677709997 ] } },
{ "type": "Feature", "properties": { "Name": "Netherfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Netherfield Rail Station", "TIPLOC": "NTHRFLD", "CRS": "NET", "StopAreaCode": "910GNTHRFLD", "AdministrativeAreaRef": "110", "code": "9100NTHRFLD", "NPTG": "E0020560", "ATCO": "330", "CRS_code": "NET" }, "geometry": { "type": "Point", "coordinates": [ -1.07984962747, 52.961410803699998 ] } },
{ "type": "Feature", "properties": { "Name": "Northwich Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Northwich Rail Station", "TIPLOC": "NTHWICH", "CRS": "NWI", "StopAreaCode": "910GNTHWICH", "AdministrativeAreaRef": "110", "code": "9100NTHWICH", "NPTG": "E0055427", "ATCO": "061", "CRS_code": "NWI" }, "geometry": { "type": "Point", "coordinates": [ -2.49691696778, 53.261451207020002 ] } },
{ "type": "Feature", "properties": { "Name": "Norton Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Norton Bridge Rail Station", "TIPLOC": "NTNB", "CRS": "NTB", "StopAreaCode": "910GNTNB", "AdministrativeAreaRef": "110", "code": "9100NTNB", "NPTG": "E0024213", "ATCO": "380", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.19054374113, 52.866698700409998 ] } },
{ "type": "Feature", "properties": { "Name": "Nottingham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nottingham Rail Station", "TIPLOC": "NTNG", "CRS": "NOT", "StopAreaCode": "910GNTNG", "AdministrativeAreaRef": "110", "code": "9100NTNG", "NPTG": "E0057221", "ATCO": "339", "CRS_code": "NOT" }, "geometry": { "type": "Point", "coordinates": [ -1.14638172642, 52.947074389080001 ] } },
{ "type": "Feature", "properties": { "Name": "North Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Road Rail Station", "TIPLOC": "NTRD", "CRS": "NRD", "StopAreaCode": "910GNTRD", "AdministrativeAreaRef": "110", "code": "9100NTRD", "NPTG": "E0054904", "ATCO": "320", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.55394966313, 54.536199623869997 ] } },
{ "type": "Feature", "properties": { "Name": "Nunhead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nunhead Rail Station", "TIPLOC": "NUNHEAD", "CRS": "NHD", "StopAreaCode": "910GNUNHEAD", "AdministrativeAreaRef": "110", "code": "9100NUNHEAD", "NPTG": "E0034800", "ATCO": "490", "CRS_code": "NHD" }, "geometry": { "type": "Point", "coordinates": [ -0.05227261097, 51.466828015170002 ] } },
{ "type": "Feature", "properties": { "Name": "Nunthorpe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nunthorpe Rail Station", "TIPLOC": "NUNTHRP", "CRS": "NNT", "StopAreaCode": "910GNUNTHRP", "AdministrativeAreaRef": "110", "code": "9100NUNTHRP", "NPTG": "N0070284", "ATCO": "078", "CRS_code": "NNT" }, "geometry": { "type": "Point", "coordinates": [ -1.1694487981, 54.527880552390002 ] } },
{ "type": "Feature", "properties": { "Name": "Nutbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nutbourne Rail Station", "TIPLOC": "NUTBORN", "CRS": "NUT", "StopAreaCode": "910GNUTBORN", "AdministrativeAreaRef": "110", "code": "9100NUTBORN", "NPTG": "E0026544", "ATCO": "440", "CRS_code": "NUT" }, "geometry": { "type": "Point", "coordinates": [ -0.88294549027, 50.846069542629998 ] } },
{ "type": "Feature", "properties": { "Name": "Nutfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Nutfield Rail Station", "TIPLOC": "NUTFILD", "CRS": "NUF", "StopAreaCode": "910GNUTFILD", "AdministrativeAreaRef": "110", "code": "9100NUTFILD", "NPTG": "E0051805", "ATCO": "400", "CRS_code": "NUF" }, "geometry": { "type": "Point", "coordinates": [ -0.13253124432, 51.226813574060003 ] } },
{ "type": "Feature", "properties": { "Name": "North Walsham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Walsham Rail Station", "TIPLOC": "NWALSHM", "CRS": "NWA", "StopAreaCode": "910GNWALSHM", "AdministrativeAreaRef": "110", "code": "9100NWALSHM", "NPTG": "E0048693", "ATCO": "290", "CRS_code": "NWA" }, "geometry": { "type": "Point", "coordinates": [ 1.38445447396, 52.816885982940001 ] } },
{ "type": "Feature", "properties": { "Name": "New Cumnock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Cumnock Rail Station", "TIPLOC": "NWCMNCK", "CRS": "NCK", "StopAreaCode": "910GNWCMNCK", "AdministrativeAreaRef": "110", "code": "9100NWCMNCK", "NPTG": "ES002769", "ATCO": "618", "CRS_code": "NCK" }, "geometry": { "type": "Point", "coordinates": [ -4.18261280737, 55.40205141677 ] } },
{ "type": "Feature", "properties": { "Name": "Newcourt Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newcourt Rail Station", "TIPLOC": "NWCOURT", "CRS": "NCO", "StopAreaCode": "910GNWCOURT", "AdministrativeAreaRef": "110", "code": "9100NWCOURT", "NPTG": "E0007686", "ATCO": "110", "CRS_code": "NCO" }, "geometry": { "type": "Point", "coordinates": [ -3.47278419609, 50.705041861870001 ] } },
{ "type": "Feature", "properties": { "Name": "New Cross ELL Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Cross ELL Rail Station", "TIPLOC": "NWCRELL", "CRS": "NWX", "StopAreaCode": "910GNWCRELL", "AdministrativeAreaRef": "110", "code": "9100NWCRELL", "NPTG": "E0034671", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.03244088789, 51.476343862589999 ] } },
{ "type": "Feature", "properties": { "Name": "New Cross Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Cross Rail Station", "TIPLOC": "NWCROSS", "CRS": "NWX", "StopAreaCode": "910GNWCROSS", "AdministrativeAreaRef": "110", "code": "9100NWCROSS", "NPTG": "E0034671", "ATCO": "490", "CRS_code": "NWX" }, "geometry": { "type": "Point", "coordinates": [ -0.03242649769, 51.476343621109997 ] } },
{ "type": "Feature", "properties": { "Name": "Newcastle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newcastle Rail Station", "TIPLOC": "NWCSTLE", "CRS": "NCL", "StopAreaCode": "910GNWCSTLE", "AdministrativeAreaRef": "110", "code": "9100NWCSTLE", "NPTG": "E0057900", "ATCO": "410", "CRS_code": "NCL" }, "geometry": { "type": "Point", "coordinates": [ -1.61727980875, 54.968401771 ] } },
{ "type": "Feature", "properties": { "Name": "New Eltham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Eltham Rail Station", "TIPLOC": "NWELTHM", "CRS": "NEH", "StopAreaCode": "910GNWELTHM", "AdministrativeAreaRef": "110", "code": "9100NWELTHM", "NPTG": "E0034332", "ATCO": "490", "CRS_code": "NEH" }, "geometry": { "type": "Point", "coordinates": [ 0.07053325309, 51.438059627039998 ] } },
{ "type": "Feature", "properties": { "Name": "North Wembley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "North Wembley Rail Station", "TIPLOC": "NWEMBLY", "CRS": "NWB", "StopAreaCode": "910GNWEMBLY", "AdministrativeAreaRef": "110", "code": "9100NWEMBLY", "NPTG": "N0065181", "ATCO": "490", "CRS_code": "NWB" }, "geometry": { "type": "Point", "coordinates": [ -0.30398404325, 51.56259584339 ] } },
{ "type": "Feature", "properties": { "Name": "New Hythe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Hythe Rail Station", "TIPLOC": "NWHYTHE", "CRS": "NHE", "StopAreaCode": "910GNWHYTHE", "AdministrativeAreaRef": "110", "code": "9100NWHYTHE", "NPTG": "E0015546", "ATCO": "240", "CRS_code": "NHE" }, "geometry": { "type": "Point", "coordinates": [ 0.45492960418, 51.313002939139999 ] } },
{ "type": "Feature", "properties": { "Name": "New Mills Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Mills Central Rail Station", "TIPLOC": "NWMILSC", "CRS": "NMC", "StopAreaCode": "910GNWMILSC", "AdministrativeAreaRef": "110", "code": "9100NWMILSC", "NPTG": "E0045136", "ATCO": "100", "CRS_code": "NMC" }, "geometry": { "type": "Point", "coordinates": [ -2.0056711314, 53.364841762189997 ] } },
{ "type": "Feature", "properties": { "Name": "New Mills Newtown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "New Mills Newtown Rail Station", "TIPLOC": "NWMILSN", "CRS": "NMN", "StopAreaCode": "910GNWMILSN", "AdministrativeAreaRef": "110", "code": "9100NWMILSN", "NPTG": "E0045136", "ATCO": "100", "CRS_code": "NMN" }, "geometry": { "type": "Point", "coordinates": [ -2.00852525845, 53.359628190240002 ] } },
{ "type": "Feature", "properties": { "Name": "Newmarket Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newmarket Rail Station", "TIPLOC": "NWMKET", "CRS": "NMK", "StopAreaCode": "910GNWMKET", "AdministrativeAreaRef": "110", "code": "9100NWMKET", "NPTG": "E0024784", "ATCO": "390", "CRS_code": "NMK" }, "geometry": { "type": "Point", "coordinates": [ 0.40620835146, 52.237944167839998 ] } },
{ "type": "Feature", "properties": { "Name": "North Woolwich Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "North Woolwich Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100NWOLWCH", "NPTG": "E0034711", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.06277989677, 51.499077676509998 ] } },
{ "type": "Feature", "properties": { "Name": "Newport (S Wales) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newport (S Wales) Rail Station", "TIPLOC": "NWPTRTG", "CRS": "NWP", "StopAreaCode": "910GNWPTRTG", "AdministrativeAreaRef": "110", "code": "9100NWPTRTG", "NPTG": "E0039779", "ATCO": "531", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.00054347097, 51.588788987549997 ] } },
{ "type": "Feature", "properties": { "Name": "Newark Castle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newark Castle Rail Station", "TIPLOC": "NWRKCAS", "CRS": "NCT", "StopAreaCode": "910GNWRKCAS", "AdministrativeAreaRef": "110", "code": "9100NWRKCAS", "NPTG": "E0050159", "ATCO": "330", "CRS_code": "NCT" }, "geometry": { "type": "Point", "coordinates": [ -0.81316015689, 53.08000355387 ] } },
{ "type": "Feature", "properties": { "Name": "Newstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newstead Rail Station", "TIPLOC": "NWSTEAD", "CRS": "NSD", "StopAreaCode": "910GNWSTEAD", "AdministrativeAreaRef": "110", "code": "9100NWSTEAD", "NPTG": "E0050102", "ATCO": "330", "CRS_code": "NSD" }, "geometry": { "type": "Point", "coordinates": [ -1.22178763243, 53.069982282790001 ] } },
{ "type": "Feature", "properties": { "Name": "Newton Aycliffe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newton Aycliffe Rail Station", "TIPLOC": "NWTA", "CRS": "NAY", "StopAreaCode": "910GNWTA", "AdministrativeAreaRef": "110", "code": "9100NWTA", "NPTG": "E0010208", "ATCO": "130", "CRS_code": "NAY" }, "geometry": { "type": "Point", "coordinates": [ -1.58964517257, 54.613702786509997 ] } },
{ "type": "Feature", "properties": { "Name": "Newtongrange Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newtongrange Rail Station", "TIPLOC": "NWTGRNG", "CRS": "NEG", "StopAreaCode": "910GNWTGRNG", "AdministrativeAreaRef": "110", "code": "9100NWTGRNG", "NPTG": "ES002829", "ATCO": "628", "CRS_code": "NEG" }, "geometry": { "type": "Point", "coordinates": [ -3.06936579673, 55.866997459339998 ] } },
{ "type": "Feature", "properties": { "Name": "Newton for Hyde Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newton for Hyde Rail Station", "TIPLOC": "NWTH", "CRS": "NWN", "StopAreaCode": "910GNWTH", "AdministrativeAreaRef": "110", "code": "9100NWTH", "NPTG": "E0028879", "ATCO": "180", "CRS_code": "NWN" }, "geometry": { "type": "Point", "coordinates": [ -2.06714238169, 53.456380168949998 ] } },
{ "type": "Feature", "properties": { "Name": "Newton (S Lanarks) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newton (S Lanarks) Rail Station", "TIPLOC": "NWTL", "CRS": "NTN", "StopAreaCode": "910GNWTL", "AdministrativeAreaRef": "110", "code": "9100NWTL", "NPTG": "N0068176", "ATCO": "615", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.13305476009, 55.818777908709997 ] } },
{ "type": "Feature", "properties": { "Name": "Newtonmore Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newtonmore Rail Station", "TIPLOC": "NWTM", "CRS": "NWR", "StopAreaCode": "910GNWTM", "AdministrativeAreaRef": "110", "code": "9100NWTM", "NPTG": "N0067947", "ATCO": "670", "CRS_code": "NWR" }, "geometry": { "type": "Point", "coordinates": [ -4.11910883922, 57.05914559683 ] } },
{ "type": "Feature", "properties": { "Name": "Newton-le-Willows Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newton-le-Willows Rail Station", "TIPLOC": "NWTNLW", "CRS": "NLW", "StopAreaCode": "910GNWTNLW", "AdministrativeAreaRef": "110", "code": "9100NWTNLW", "NPTG": "E0029817", "ATCO": "280", "CRS_code": "NLW" }, "geometry": { "type": "Point", "coordinates": [ -2.6135980844, 53.453060518389997 ] } },
{ "type": "Feature", "properties": { "Name": "Newton-on-Ayr Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newton-on-Ayr Rail Station", "TIPLOC": "NWTOA", "CRS": "NOA", "StopAreaCode": "910GNWTOA", "AdministrativeAreaRef": "110", "code": "9100NWTOA", "NPTG": "N0072969", "ATCO": "619", "CRS_code": "NOA" }, "geometry": { "type": "Point", "coordinates": [ -4.62582629366, 55.474053321310002 ] } },
{ "type": "Feature", "properties": { "Name": "Newtown (Powys) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Newtown (Powys) Rail Station", "TIPLOC": "NWTP", "CRS": "NWT", "StopAreaCode": "910GNWTP", "AdministrativeAreaRef": "110", "code": "9100NWTP", "NPTG": "E0055113", "ATCO": "561", "CRS_code": "NWT" }, "geometry": { "type": "Point", "coordinates": [ -3.31139173413, 52.512313854879999 ] } },
{ "type": "Feature", "properties": { "Name": "Oakham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oakham Rail Station", "TIPLOC": "OAKHAM", "CRS": "OKM", "StopAreaCode": "910GOAKHAM", "AdministrativeAreaRef": "110", "code": "9100OAKHAM", "NPTG": "E0053664", "ATCO": "268", "CRS_code": "OKM" }, "geometry": { "type": "Point", "coordinates": [ -0.7341711259, 52.672214816809998 ] } },
{ "type": "Feature", "properties": { "Name": "Oakengates Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oakengates Rail Station", "TIPLOC": "OAKNGTS", "CRS": "OKN", "StopAreaCode": "910GOAKNGTS", "AdministrativeAreaRef": "110", "code": "9100OAKNGTS", "NPTG": "E0053787", "ATCO": "359", "CRS_code": "OKN" }, "geometry": { "type": "Point", "coordinates": [ -2.45019431771, 52.693397861309997 ] } },
{ "type": "Feature", "properties": { "Name": "Oban Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oban Rail Station", "TIPLOC": "OBAN", "CRS": "OBN", "StopAreaCode": "910GOBAN", "AdministrativeAreaRef": "110", "code": "9100OBAN", "NPTG": "ES002899", "ATCO": "607", "CRS_code": "OBN" }, "geometry": { "type": "Point", "coordinates": [ -5.47393155152, 56.412486508489998 ] } },
{ "type": "Feature", "properties": { "Name": "Ockendon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ockendon Rail Station", "TIPLOC": "OCKENDN", "CRS": "OCK", "StopAreaCode": "910GOCKENDN", "AdministrativeAreaRef": "110", "code": "9100OCKENDN", "NPTG": "E0042674", "ATCO": "159", "CRS_code": "OCK" }, "geometry": { "type": "Point", "coordinates": [ 0.29046917422, 51.521992110239999 ] } },
{ "type": "Feature", "properties": { "Name": "Ockley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ockley Rail Station", "TIPLOC": "OCKLYAC", "CRS": "OLY", "StopAreaCode": "910GOCKLYAC", "AdministrativeAreaRef": "110", "code": "9100OCKLYAC", "NPTG": "E0051788", "ATCO": "400", "CRS_code": "OLY" }, "geometry": { "type": "Point", "coordinates": [ -0.33601363197, 51.151511957830003 ] } },
{ "type": "Feature", "properties": { "Name": "Okehampton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Okehampton Rail Station", "TIPLOC": "OKHMPTN", "CRS": "OKE", "StopAreaCode": "910GOKHMPTN", "AdministrativeAreaRef": "110", "code": "9100OKHMPTN", "NPTG": "E0045621", "ATCO": "110", "CRS_code": "OKE" }, "geometry": { "type": "Point", "coordinates": [ -3.99621489375, 50.73238044875 ] } },
{ "type": "Feature", "properties": { "Name": "Okehampton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Okehampton Rail Station", "TIPLOC": "OKHMPTN", "CRS": "OKE", "StopAreaCode": "910GOKHMPTN", "AdministrativeAreaRef": "110", "code": "9100OKHMPTN", "NPTG": "E0045621", "ATCO": "110", "CRS_code": "OKE" }, "geometry": { "type": "Point", "coordinates": [ -3.99621489375, 50.73238044875 ] } },
{ "type": "Feature", "properties": { "Name": "Oakleigh Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oakleigh Park Rail Station", "TIPLOC": "OKLGHPK", "CRS": "OKL", "StopAreaCode": "910GOKLGHPK", "AdministrativeAreaRef": "110", "code": "9100OKLGHPK", "NPTG": "E0033981", "ATCO": "490", "CRS_code": "OKL" }, "geometry": { "type": "Point", "coordinates": [ -0.16620932906, 51.637678015100001 ] } },
{ "type": "Feature", "properties": { "Name": "Oldfield Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oldfield Park Rail Station", "TIPLOC": "OLDFLDP", "CRS": "OLF", "StopAreaCode": "910GOLDFLDP", "AdministrativeAreaRef": "110", "code": "9100OLDFLDP", "NPTG": "E0035068", "ATCO": "018", "CRS_code": "OLF" }, "geometry": { "type": "Point", "coordinates": [ -2.38050793982, 51.379230764010003 ] } },
{ "type": "Feature", "properties": { "Name": "Oldham Mumps Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Oldham Mumps Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GOLDHAMM", "AdministrativeAreaRef": "110", "code": "9100OLDHAMM", "NPTG": "N0075108", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.10211895416, 53.541062104719998 ] } },
{ "type": "Feature", "properties": { "Name": "Oldham Werneth Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Oldham Werneth Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GOLDHAMW", "AdministrativeAreaRef": "110", "code": "9100OLDHAMW", "NPTG": "E0057798", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.12927321877, 53.538698804829998 ] } },
{ "type": "Feature", "properties": { "Name": "Old Roan Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Old Roan Rail Station", "TIPLOC": "OLDROAN", "CRS": "ORN", "StopAreaCode": "910GOLDROAN", "AdministrativeAreaRef": "110", "code": "9100OLDROAN", "NPTG": "E0029833", "ATCO": "280", "CRS_code": "ORN" }, "geometry": { "type": "Point", "coordinates": [ -2.95107150899, 53.486895070469998 ] } },
{ "type": "Feature", "properties": { "Name": "Old Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Old Street Rail Station", "TIPLOC": "OLDST", "CRS": "OLD", "StopAreaCode": "910GOLDST", "AdministrativeAreaRef": "110", "code": "9100OLDST", "NPTG": "N0077704", "ATCO": "490", "CRS_code": "OLD" }, "geometry": { "type": "Point", "coordinates": [ -0.08853508781, 51.525831706639998 ] } },
{ "type": "Feature", "properties": { "Name": "Old Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Old Hill Rail Station", "TIPLOC": "OLHL", "CRS": "OHL", "StopAreaCode": "910GOLHL", "AdministrativeAreaRef": "110", "code": "9100OLHL", "NPTG": "E0031840", "ATCO": "430", "CRS_code": "OHL" }, "geometry": { "type": "Point", "coordinates": [ -2.05619065901, 52.470933497600001 ] } },
{ "type": "Feature", "properties": { "Name": "Olton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Olton Rail Station", "TIPLOC": "OLTON", "CRS": "OLT", "StopAreaCode": "910GOLTON", "AdministrativeAreaRef": "110", "code": "9100OLTON", "NPTG": "E0031846", "ATCO": "430", "CRS_code": "OLT" }, "geometry": { "type": "Point", "coordinates": [ -1.80430937035, 52.438511423409999 ] } },
{ "type": "Feature", "properties": { "Name": "Overpool Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Overpool Rail Station", "TIPLOC": "OPOL", "CRS": "OVE", "StopAreaCode": "910GOPOL", "AdministrativeAreaRef": "110", "code": "9100OPOL", "NPTG": "E0001822", "ATCO": "061", "CRS_code": "OVE" }, "geometry": { "type": "Point", "coordinates": [ -2.92406060411, 53.284047434980003 ] } },
{ "type": "Feature", "properties": { "Name": "Ore Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ore Rail Station", "TIPLOC": "OREE", "CRS": "ORE", "StopAreaCode": "910GOREE", "AdministrativeAreaRef": "110", "code": "9100OREE", "NPTG": "E0010522", "ATCO": "140", "CRS_code": "ORE" }, "geometry": { "type": "Point", "coordinates": [ 0.59156798676, 50.866948554620002 ] } },
{ "type": "Feature", "properties": { "Name": "Orrell Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Orrell Park Rail Station", "TIPLOC": "ORELPKH", "CRS": "OPK", "StopAreaCode": "910GORELPKH", "AdministrativeAreaRef": "110", "code": "9100ORELPKH", "NPTG": "E0029839", "ATCO": "280", "CRS_code": "OPK" }, "geometry": { "type": "Point", "coordinates": [ -2.96331546828, 53.461897968640002 ] } },
{ "type": "Feature", "properties": { "Name": "Ormskirk Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ormskirk Rail Station", "TIPLOC": "ORMSKRK", "CRS": "OMS", "StopAreaCode": "910GORMSKRK", "AdministrativeAreaRef": "110", "code": "9100ORMSKRK", "NPTG": "E0016508", "ATCO": "250", "CRS_code": "OMS" }, "geometry": { "type": "Point", "coordinates": [ -2.88119295403, 53.569272737109998 ] } },
{ "type": "Feature", "properties": { "Name": "Orpington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Orpington Rail Station", "TIPLOC": "ORPNGTN", "CRS": "ORP", "StopAreaCode": "910GORPNGTN", "AdministrativeAreaRef": "110", "code": "9100ORPNGTN", "NPTG": "E0034128", "ATCO": "490", "CRS_code": "ORP" }, "geometry": { "type": "Point", "coordinates": [ 0.08909054702, 51.373295982130003 ] } },
{ "type": "Feature", "properties": { "Name": "Orrell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Orrell Rail Station", "TIPLOC": "ORRELL", "CRS": "ORR", "StopAreaCode": "910GORRELL", "AdministrativeAreaRef": "110", "code": "9100ORRELL", "NPTG": "E0029177", "ATCO": "180", "CRS_code": "ORR" }, "geometry": { "type": "Point", "coordinates": [ -2.70883730291, 53.530311744530003 ] } },
{ "type": "Feature", "properties": { "Name": "Otford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Otford Rail Station", "TIPLOC": "OTFORD", "CRS": "OTF", "StopAreaCode": "910GOTFORD", "AdministrativeAreaRef": "110", "code": "9100OTFORD", "NPTG": "E0047250", "ATCO": "240", "CRS_code": "OTF" }, "geometry": { "type": "Point", "coordinates": [ 0.19677880807, 51.313158222730003 ] } },
{ "type": "Feature", "properties": { "Name": "Oulton Broad North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oulton Broad North Rail Station", "TIPLOC": "OULTNBN", "CRS": "OUN", "StopAreaCode": "910GOULTNBN", "AdministrativeAreaRef": "110", "code": "9100OULTNBN", "NPTG": "E0025252", "ATCO": "390", "CRS_code": "OUN" }, "geometry": { "type": "Point", "coordinates": [ 1.71571086533, 52.477760593600003 ] } },
{ "type": "Feature", "properties": { "Name": "Oulton Broad South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oulton Broad South Rail Station", "TIPLOC": "OULTNBS", "CRS": "OUS", "StopAreaCode": "910GOULTNBS", "AdministrativeAreaRef": "110", "code": "9100OULTNBS", "NPTG": "E0025252", "ATCO": "390", "CRS_code": "OUS" }, "geometry": { "type": "Point", "coordinates": [ 1.70765867432, 52.469603375129999 ] } },
{ "type": "Feature", "properties": { "Name": "Outwood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Outwood Rail Station", "TIPLOC": "OUTWOOD", "CRS": "OUT", "StopAreaCode": "910GOUTWOOD", "AdministrativeAreaRef": "110", "code": "9100OUTWOOD", "NPTG": "E0033353", "ATCO": "450", "CRS_code": "OUT" }, "geometry": { "type": "Point", "coordinates": [ -1.51040024805, 53.715286965840001 ] } },
{ "type": "Feature", "properties": { "Name": "Overton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Overton Rail Station", "TIPLOC": "OVTN", "CRS": "OVR", "StopAreaCode": "910GOVTN", "AdministrativeAreaRef": "110", "code": "9100OVTN", "NPTG": "E0046728", "ATCO": "190", "CRS_code": "OVR" }, "geometry": { "type": "Point", "coordinates": [ -1.25926757016, 51.254293746759998 ] } },
{ "type": "Feature", "properties": { "Name": "Oxenholme Lake District Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oxenholme Lake District Rail Station", "TIPLOC": "OXENHLM", "CRS": "OXN", "StopAreaCode": "910GOXENHLM", "AdministrativeAreaRef": "110", "code": "9100OXENHLM", "NPTG": "E0006382", "ATCO": "090", "CRS_code": "OXN" }, "geometry": { "type": "Point", "coordinates": [ -2.72187011204, 54.304926820150001 ] } },
{ "type": "Feature", "properties": { "Name": "Oxford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oxford Rail Station", "TIPLOC": "OXFD", "CRS": "OXF", "StopAreaCode": "910GOXFD", "AdministrativeAreaRef": "110", "code": "9100OXFD", "NPTG": "E0056504", "ATCO": "340", "CRS_code": "OXF" }, "geometry": { "type": "Point", "coordinates": [ -1.27015339841, 51.753495956499997 ] } },
{ "type": "Feature", "properties": { "Name": "Oxford Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oxford Parkway Rail Station", "TIPLOC": "OXFPWAY", "CRS": "OPY", "StopAreaCode": "910GOXFPWAY", "AdministrativeAreaRef": "110", "code": "9100OXFPWAY", "NPTG": "N0080793", "ATCO": "340", "CRS_code": "OXP" }, "geometry": { "type": "Point", "coordinates": [ -1.27448586064, 51.804071304250002 ] } },
{ "type": "Feature", "properties": { "Name": "Oxshott Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oxshott Rail Station", "TIPLOC": "OXSHOTT", "CRS": "OXS", "StopAreaCode": "910GOXSHOTT", "AdministrativeAreaRef": "110", "code": "9100OXSHOTT", "NPTG": "E0025306", "ATCO": "400", "CRS_code": "OXS" }, "geometry": { "type": "Point", "coordinates": [ -0.36241924332, 51.33639582016 ] } },
{ "type": "Feature", "properties": { "Name": "Oxted Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oxted Rail Station", "TIPLOC": "OXTED", "CRS": "OXT", "StopAreaCode": "910GOXTED", "AdministrativeAreaRef": "110", "code": "9100OXTED", "NPTG": "E0051806", "ATCO": "400", "CRS_code": "OXT" }, "geometry": { "type": "Point", "coordinates": [ -0.0048334968, 51.257908232070001 ] } },
{ "type": "Feature", "properties": { "Name": "Oxted Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Oxted Rail Station", "TIPLOC": "OXTEDBY", "CRS": "OXT", "StopAreaCode": "910GOXTEDBY", "AdministrativeAreaRef": "110", "code": "9100OXTEDBY", "NPTG": "E0051806", "ATCO": "400", "CRS_code": "OXT" }, "geometry": { "type": "Point", "coordinates": [ -0.00481917513, 51.257907987929997 ] } },
{ "type": "Feature", "properties": { "Name": "Padgate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Padgate Rail Station", "TIPLOC": "PADGATE", "CRS": "PDG", "StopAreaCode": "910GPADGATE", "AdministrativeAreaRef": "110", "code": "9100PADGATE", "NPTG": "E0043041", "ATCO": "069", "CRS_code": "PDG" }, "geometry": { "type": "Point", "coordinates": [ -2.55681065071, 53.4057889109 ] } },
{ "type": "Feature", "properties": { "Name": "London Paddington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "London Paddington Rail Station", "TIPLOC": "PADTON", "CRS": "PAD", "StopAreaCode": "910GPADTON", "AdministrativeAreaRef": "110", "code": "9100PADTON", "NPTG": "E0034942", "ATCO": "490", "CRS_code": "PAD" }, "geometry": { "type": "Point", "coordinates": [ -0.17617389915, 51.51599550289 ] } },
{ "type": "Feature", "properties": { "Name": "Paignton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Paignton Rail Station", "TIPLOC": "PAIGNTN", "CRS": "PGN", "StopAreaCode": "910GPAIGNTN", "AdministrativeAreaRef": "110", "code": "9100PAIGNTN", "NPTG": "E0042725", "ATCO": "119", "CRS_code": "PGN" }, "geometry": { "type": "Point", "coordinates": [ -3.56487571746, 50.43471865814 ] } },
{ "type": "Feature", "properties": { "Name": "Palmers Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Palmers Green Rail Station", "TIPLOC": "PALMRSG", "CRS": "PAL", "StopAreaCode": "910GPALMRSG", "AdministrativeAreaRef": "110", "code": "9100PALMRSG", "NPTG": "N0065115", "ATCO": "490", "CRS_code": "PAL" }, "geometry": { "type": "Point", "coordinates": [ -0.11043656146, 51.618314312300001 ] } },
{ "type": "Feature", "properties": { "Name": "Pangbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pangbourne Rail Station", "TIPLOC": "PANGBRN", "CRS": "PAN", "StopAreaCode": "910GPANGBRN", "AdministrativeAreaRef": "110", "code": "9100PANGBRN", "NPTG": "E0053855", "ATCO": "030", "CRS_code": "PAN" }, "geometry": { "type": "Point", "coordinates": [ -1.09047032092, 51.485401422700001 ] } },
{ "type": "Feature", "properties": { "Name": "Pannal Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pannal Rail Station", "TIPLOC": "PANNAL", "CRS": "PNL", "StopAreaCode": "910GPANNAL", "AdministrativeAreaRef": "110", "code": "9100PANNAL", "NPTG": "E0056346", "ATCO": "320", "CRS_code": "PNL" }, "geometry": { "type": "Point", "coordinates": [ -1.53346695743, 53.958324209799997 ] } },
{ "type": "Feature", "properties": { "Name": "Parbold Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Parbold Rail Station", "TIPLOC": "PARBOLD", "CRS": "PBL", "StopAreaCode": "910GPARBOLD", "AdministrativeAreaRef": "110", "code": "9100PARBOLD", "NPTG": "E0047555", "ATCO": "250", "CRS_code": "PBL" }, "geometry": { "type": "Point", "coordinates": [ -2.77074825005, 53.590754110239999 ] } },
{ "type": "Feature", "properties": { "Name": "Paris Nord Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Paris Nord Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100PARISND", "NPTG": "E0015169", "ATCO": "240", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 1.39384613745, 51.074010686930002 ] } },
{ "type": "Feature", "properties": { "Name": "Par Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Par Rail Station", "TIPLOC": "PARR", "CRS": "PAR", "StopAreaCode": "910GPARR", "AdministrativeAreaRef": "110", "code": "9100PARR", "NPTG": "E0004624", "ATCO": "080", "CRS_code": "PAR" }, "geometry": { "type": "Point", "coordinates": [ -4.70467534805, 50.355326593219999 ] } },
{ "type": "Feature", "properties": { "Name": "Parson Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Parson Street Rail Station", "TIPLOC": "PARSNST", "CRS": "PSN", "StopAreaCode": "910GPARSNST", "AdministrativeAreaRef": "110", "code": "9100PARSNST", "NPTG": "E0035570", "ATCO": "010", "CRS_code": "PSN" }, "geometry": { "type": "Point", "coordinates": [ -2.60774156658, 51.433319382370001 ] } },
{ "type": "Feature", "properties": { "Name": "Parton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Parton Rail Station", "TIPLOC": "PARTON", "CRS": "PRN", "StopAreaCode": "910GPARTON", "AdministrativeAreaRef": "110", "code": "9100PARTON", "NPTG": "E0044781", "ATCO": "090", "CRS_code": "PRN" }, "geometry": { "type": "Point", "coordinates": [ -3.58080025624, 54.57036867531 ] } },
{ "type": "Feature", "properties": { "Name": "Patchway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Patchway Rail Station", "TIPLOC": "PATCHWY", "CRS": "PWY", "StopAreaCode": "910GPATCHWY", "AdministrativeAreaRef": "110", "code": "9100PATCHWY", "NPTG": "E0041896", "ATCO": "017", "CRS_code": "PWY" }, "geometry": { "type": "Point", "coordinates": [ -2.56268928862, 51.525932985060003 ] } },
{ "type": "Feature", "properties": { "Name": "Patterton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Patterton Rail Station", "TIPLOC": "PATERTN", "CRS": "PTT", "StopAreaCode": "910GPATERTN", "AdministrativeAreaRef": "110", "code": "9100PATERTN", "NPTG": "ES002826", "ATCO": "612", "CRS_code": "PTT" }, "geometry": { "type": "Point", "coordinates": [ -4.33529838968, 55.790610938009998 ] } },
{ "type": "Feature", "properties": { "Name": "Peterborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Peterborough Rail Station", "TIPLOC": "PBRO", "CRS": "PBO", "StopAreaCode": "910GPBRO", "AdministrativeAreaRef": "110", "code": "9100PBRO", "NPTG": "E0055098", "ATCO": "059", "CRS_code": "PBO" }, "geometry": { "type": "Point", "coordinates": [ -0.24983689726, 52.574975316070002 ] } },
{ "type": "Feature", "properties": { "Name": "Pemberton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pemberton Rail Station", "TIPLOC": "PBRT", "CRS": "PEM", "StopAreaCode": "910GPBRT", "AdministrativeAreaRef": "110", "code": "9100PBRT", "NPTG": "E0029197", "ATCO": "180", "CRS_code": "PEM" }, "geometry": { "type": "Point", "coordinates": [ -2.6703539267, 53.530407922789998 ] } },
{ "type": "Feature", "properties": { "Name": "Portchester Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Portchester Rail Station", "TIPLOC": "PCHESTR", "CRS": "PTC", "StopAreaCode": "910GPCHESTR", "AdministrativeAreaRef": "110", "code": "9100PCHESTR", "NPTG": "E0012922", "ATCO": "190", "CRS_code": "PTC" }, "geometry": { "type": "Point", "coordinates": [ -1.12423986778, 50.848749776360002 ] } },
{ "type": "Feature", "properties": { "Name": "Queens Road Peckham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Queens Road Peckham Rail Station", "TIPLOC": "PCKHMQD", "CRS": "QRP", "StopAreaCode": "910GPCKHMQD", "AdministrativeAreaRef": "110", "code": "9100PCKHMQD", "NPTG": "N0060435", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.05731349083, 51.473566222320002 ] } },
{ "type": "Feature", "properties": { "Name": "Peckham Rye Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Peckham Rye Rail Station", "TIPLOC": "PCKHMRY", "CRS": "PMR", "StopAreaCode": "910GPCKHMRY", "AdministrativeAreaRef": "110", "code": "9100PCKHMRY", "NPTG": "N0060435", "ATCO": "490", "CRS_code": "PMR" }, "geometry": { "type": "Point", "coordinates": [ -0.06941433121, 51.470034151729998 ] } },
{ "type": "Feature", "properties": { "Name": "Peartree Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Peartree Rail Station", "TIPLOC": "PEARTRE", "CRS": "PEA", "StopAreaCode": "910GPEARTRE", "AdministrativeAreaRef": "110", "code": "9100PEARTRE", "NPTG": "E0036830", "ATCO": "109", "CRS_code": "PEA" }, "geometry": { "type": "Point", "coordinates": [ -1.47321386252, 52.896995045190003 ] } },
{ "type": "Feature", "properties": { "Name": "Pegswood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pegswood Rail Station", "TIPLOC": "PEGSWD", "CRS": "PEG", "StopAreaCode": "910GPEGSWD", "AdministrativeAreaRef": "110", "code": "9100PEGSWD", "NPTG": "E0049951", "ATCO": "310", "CRS_code": "PEG" }, "geometry": { "type": "Point", "coordinates": [ -1.64416577816, 55.178129156280001 ] } },
{ "type": "Feature", "properties": { "Name": "Pembroke Dock Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pembroke Dock Rail Station", "TIPLOC": "PEMBRKD", "CRS": "PMD", "StopAreaCode": "910GPEMBRKD", "AdministrativeAreaRef": "110", "code": "9100PEMBRKD", "NPTG": "E0055088", "ATCO": "521", "CRS_code": "PMD" }, "geometry": { "type": "Point", "coordinates": [ -4.9380475556, 51.693913116209998 ] } },
{ "type": "Feature", "properties": { "Name": "Pembroke Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pembroke Rail Station", "TIPLOC": "PEMBROK", "CRS": "PMB", "StopAreaCode": "910GPEMBROK", "AdministrativeAreaRef": "110", "code": "9100PEMBROK", "NPTG": "E0055088", "ATCO": "521", "CRS_code": "PMB" }, "geometry": { "type": "Point", "coordinates": [ -4.9060230344, 51.672945229420002 ] } },
{ "type": "Feature", "properties": { "Name": "Penarth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penarth Rail Station", "TIPLOC": "PENARTH", "CRS": "PEN", "StopAreaCode": "910GPENARTH", "AdministrativeAreaRef": "110", "code": "9100PENARTH", "NPTG": "E0054764", "ATCO": "572", "CRS_code": "PEN" }, "geometry": { "type": "Point", "coordinates": [ -3.17444075133, 51.4358891543 ] } },
{ "type": "Feature", "properties": { "Name": "Pencoed Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pencoed Rail Station", "TIPLOC": "PENCOED", "CRS": "PCD", "StopAreaCode": "910GPENCOED", "AdministrativeAreaRef": "110", "code": "9100PENCOED", "NPTG": "E0053966", "ATCO": "551", "CRS_code": "PCD" }, "geometry": { "type": "Point", "coordinates": [ -3.50047901065, 51.524607912210001 ] } },
{ "type": "Feature", "properties": { "Name": "Penge West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penge West Rail Station", "TIPLOC": "PENEW", "CRS": "PNW", "StopAreaCode": "910GPENEW", "AdministrativeAreaRef": "110", "code": "9100PENEW", "NPTG": "N0065189", "ATCO": "490", "CRS_code": "PNW" }, "geometry": { "type": "Point", "coordinates": [ -0.06083982696, 51.417555163579998 ] } },
{ "type": "Feature", "properties": { "Name": "Pengam Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pengam Rail Station", "TIPLOC": "PENGAM", "CRS": "PGM", "StopAreaCode": "910GPENGAM", "AdministrativeAreaRef": "110", "code": "9100PENGAM", "NPTG": "E0053987", "ATCO": "554", "CRS_code": "PGM" }, "geometry": { "type": "Point", "coordinates": [ -3.23009978215, 51.670455047730002 ] } },
{ "type": "Feature", "properties": { "Name": "Penhelig Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penhelig Rail Station", "TIPLOC": "PENHELG", "CRS": "PHG", "StopAreaCode": "910GPENHELG", "AdministrativeAreaRef": "110", "code": "9100PENHELG", "NPTG": "E0037672", "ATCO": "540", "CRS_code": "PHG" }, "geometry": { "type": "Point", "coordinates": [ -4.03502521328, 52.545686448 ] } },
{ "type": "Feature", "properties": { "Name": "Penistone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penistone Rail Station", "TIPLOC": "PENISTN", "CRS": "PNS", "StopAreaCode": "910GPENISTN", "AdministrativeAreaRef": "110", "code": "9100PENISTN", "NPTG": "E0052711", "ATCO": "370", "CRS_code": "PNS" }, "geometry": { "type": "Point", "coordinates": [ -1.62278070263, 53.525546148670003 ] } },
{ "type": "Feature", "properties": { "Name": "Penmere Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penmere Rail Station", "TIPLOC": "PENMERE", "CRS": "PNM", "StopAreaCode": "910GPENMERE", "AdministrativeAreaRef": "110", "code": "9100PENMERE", "NPTG": "N0060971", "ATCO": "080", "CRS_code": "PNM" }, "geometry": { "type": "Point", "coordinates": [ -5.08319260325, 50.150330929909998 ] } },
{ "type": "Feature", "properties": { "Name": "Penychain Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penychain Rail Station", "TIPLOC": "PENYCHN", "CRS": "BPC", "StopAreaCode": "910GPENYCHN", "AdministrativeAreaRef": "110", "code": "9100PENYCHN", "NPTG": "E0054317", "ATCO": "540", "CRS_code": "PNC" }, "geometry": { "type": "Point", "coordinates": [ -4.33872152373, 52.902883331460004 ] } },
{ "type": "Feature", "properties": { "Name": "Penzance Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penzance Rail Station", "TIPLOC": "PENZNCE", "CRS": "PNZ", "StopAreaCode": "910GPENZNCE", "AdministrativeAreaRef": "110", "code": "9100PENZNCE", "NPTG": "E0044623", "ATCO": "080", "CRS_code": "PNZ" }, "geometry": { "type": "Point", "coordinates": [ -5.53256527555, 50.121673981290002 ] } },
{ "type": "Feature", "properties": { "Name": "Perranwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Perranwell Rail Station", "TIPLOC": "PERANWL", "CRS": "PRW", "StopAreaCode": "910GPERANWL", "AdministrativeAreaRef": "110", "code": "9100PERANWL", "NPTG": "E0002917", "ATCO": "080", "CRS_code": "PRW" }, "geometry": { "type": "Point", "coordinates": [ -5.11206922796, 50.216579357800001 ] } },
{ "type": "Feature", "properties": { "Name": "Pershore Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pershore Rail Station", "TIPLOC": "PERSHOR", "CRS": "PSH", "StopAreaCode": "910GPERSHOR", "AdministrativeAreaRef": "110", "code": "9100PERSHOR", "NPTG": "E0052633", "ATCO": "200", "CRS_code": "PSH" }, "geometry": { "type": "Point", "coordinates": [ -2.07153678369, 52.130554929909998 ] } },
{ "type": "Feature", "properties": { "Name": "Perth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Perth Rail Station", "TIPLOC": "PERTH", "CRS": "PTH", "StopAreaCode": "910GPERTH", "AdministrativeAreaRef": "110", "code": "9100PERTH", "NPTG": "ES003005", "ATCO": "640", "CRS_code": "PTH" }, "geometry": { "type": "Point", "coordinates": [ -3.43969790303, 56.392094112739997 ] } },
{ "type": "Feature", "properties": { "Name": "Petts Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Petts Wood Rail Station", "TIPLOC": "PETSWD", "CRS": "PET", "StopAreaCode": "910GPETSWD", "AdministrativeAreaRef": "110", "code": "9100PETSWD", "NPTG": "E0034134", "ATCO": "490", "CRS_code": "PET" }, "geometry": { "type": "Point", "coordinates": [ 0.07448093018, 51.38861879473 ] } },
{ "type": "Feature", "properties": { "Name": "Pewsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pewsey Rail Station", "TIPLOC": "PEWSEY", "CRS": "PEW", "StopAreaCode": "910GPEWSEY", "AdministrativeAreaRef": "110", "code": "9100PEWSEY", "NPTG": "E0052261", "ATCO": "460", "CRS_code": "PEW" }, "geometry": { "type": "Point", "coordinates": [ -1.77067520033, 51.342193103630002 ] } },
{ "type": "Feature", "properties": { "Name": "Portsmouth Harbour Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Portsmouth Harbour Rail Station", "TIPLOC": "PHBR", "CRS": "PMH", "StopAreaCode": "910GPHBR", "AdministrativeAreaRef": "110", "code": "9100PHBR", "NPTG": "E0057225", "ATCO": "199", "CRS_code": "PMH" }, "geometry": { "type": "Point", "coordinates": [ -1.10784017919, 50.796962357779996 ] } },
{ "type": "Feature", "properties": { "Name": "Priesthill & Darnley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Priesthill & Darnley Rail Station", "TIPLOC": "PHLD", "CRS": "PTL", "StopAreaCode": "910GPHLD", "AdministrativeAreaRef": "110", "code": "9100PHLD", "NPTG": "N0076057", "ATCO": "609", "CRS_code": "PTL" }, "geometry": { "type": "Point", "coordinates": [ -4.34289463468, 55.812171722659997 ] } },
{ "type": "Feature", "properties": { "Name": "Pilning Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pilning Rail Station", "TIPLOC": "PILNING", "CRS": "PIL", "StopAreaCode": "910GPILNING", "AdministrativeAreaRef": "110", "code": "9100PILNING", "NPTG": "E0041900", "ATCO": "017", "CRS_code": "PIL" }, "geometry": { "type": "Point", "coordinates": [ -2.62711164167, 51.556626921209997 ] } },
{ "type": "Feature", "properties": { "Name": "Pinhoe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pinhoe Rail Station", "TIPLOC": "PINHOE", "CRS": "PIN", "StopAreaCode": "910GPINHOE", "AdministrativeAreaRef": "110", "code": "9100PINHOE", "NPTG": "E0007714", "ATCO": "110", "CRS_code": "PIN" }, "geometry": { "type": "Point", "coordinates": [ -3.46933293098, 50.73778489347 ] } },
{ "type": "Feature", "properties": { "Name": "Pitsea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pitsea Rail Station", "TIPLOC": "PITSEA", "CRS": "PSE", "StopAreaCode": "910GPITSEA", "AdministrativeAreaRef": "110", "code": "9100PITSEA", "NPTG": "E0010992", "ATCO": "150", "CRS_code": "PSE" }, "geometry": { "type": "Point", "coordinates": [ 0.50629313905, 51.560359223299997 ] } },
{ "type": "Feature", "properties": { "Name": "Peckham Rye Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Peckham Rye Rail Station", "TIPLOC": "PKHMRYC", "CRS": "PMR", "StopAreaCode": "910GPKHMRYC", "AdministrativeAreaRef": "110", "code": "9100PKHMRYC", "NPTG": "N0060435", "ATCO": "490", "CRS_code": "PMR" }, "geometry": { "type": "Point", "coordinates": [ -0.06939994267, 51.470033914799998 ] } },
{ "type": "Feature", "properties": { "Name": "Park Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Park Street Rail Station", "TIPLOC": "PKST", "CRS": "PKT", "StopAreaCode": "910GPKST", "AdministrativeAreaRef": "110", "code": "9100PKST", "NPTG": "E0014199", "ATCO": "210", "CRS_code": "PKT" }, "geometry": { "type": "Point", "coordinates": [ -0.34027649124, 51.725458225659999 ] } },
{ "type": "Feature", "properties": { "Name": "Paddock Wood Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Paddock Wood Rail Station", "TIPLOC": "PKWD", "CRS": "PDW", "StopAreaCode": "910GPKWD", "AdministrativeAreaRef": "110", "code": "9100PKWD", "NPTG": "E0047373", "ATCO": "240", "CRS_code": "PDW" }, "geometry": { "type": "Point", "coordinates": [ 0.38914870228, 51.182266802660003 ] } },
{ "type": "Feature", "properties": { "Name": "Pollokshields East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pollokshields East Rail Station", "TIPLOC": "PLKLHDE", "CRS": "PLE", "StopAreaCode": "910GPLKLHDE", "AdministrativeAreaRef": "110", "code": "9100PLKLHDE", "NPTG": "ES003044", "ATCO": "609", "CRS_code": "PLE" }, "geometry": { "type": "Point", "coordinates": [ -4.26860283641, 55.841067063479997 ] } },
{ "type": "Feature", "properties": { "Name": "Pollokshields West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pollokshields West Rail Station", "TIPLOC": "PLKLHDW", "CRS": "PLW", "StopAreaCode": "910GPLKLHDW", "AdministrativeAreaRef": "110", "code": "9100PLKLHDW", "NPTG": "ES003044", "ATCO": "609", "CRS_code": "PLW" }, "geometry": { "type": "Point", "coordinates": [ -4.27575340451, 55.837699434839998 ] } },
{ "type": "Feature", "properties": { "Name": "Pollokshaws East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pollokshaws East Rail Station", "TIPLOC": "PLKSHWE", "CRS": "PWE", "StopAreaCode": "910GPLKSHWE", "AdministrativeAreaRef": "110", "code": "9100PLKSHWE", "NPTG": "ES003043", "ATCO": "609", "CRS_code": "PWE" }, "geometry": { "type": "Point", "coordinates": [ -4.28688514637, 55.824640701349999 ] } },
{ "type": "Feature", "properties": { "Name": "Pollokshaws West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pollokshaws West Rail Station", "TIPLOC": "PLKSHWW", "CRS": "PWW", "StopAreaCode": "910GPLKSHWW", "AdministrativeAreaRef": "110", "code": "9100PLKSHWW", "NPTG": "ES003043", "ATCO": "609", "CRS_code": "PWW" }, "geometry": { "type": "Point", "coordinates": [ -4.30160557189, 55.82382675481 ] } },
{ "type": "Feature", "properties": { "Name": "Plumpton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Plumpton Rail Station", "TIPLOC": "PLMPTON", "CRS": "PMP", "StopAreaCode": "910GPLMPTON", "AdministrativeAreaRef": "110", "code": "9100PLMPTON", "NPTG": "E0010560", "ATCO": "140", "CRS_code": "PMP" }, "geometry": { "type": "Point", "coordinates": [ -0.06018103066, 50.928663198309998 ] } },
{ "type": "Feature", "properties": { "Name": "Plumstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Plumstead Rail Station", "TIPLOC": "PLMS", "CRS": "PLU", "StopAreaCode": "910GPLMS", "AdministrativeAreaRef": "110", "code": "9100PLMS", "NPTG": "E0034334", "ATCO": "490", "CRS_code": "PLU" }, "geometry": { "type": "Point", "coordinates": [ 0.08425652445, 51.489795036469999 ] } },
{ "type": "Feature", "properties": { "Name": "Plockton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Plockton Rail Station", "TIPLOC": "PLOCKTN", "CRS": "PLK", "StopAreaCode": "910GPLOCKTN", "AdministrativeAreaRef": "110", "code": "9100PLOCKTN", "NPTG": "N0067958", "ATCO": "670", "CRS_code": "PLK" }, "geometry": { "type": "Point", "coordinates": [ -5.66599886107, 57.333564747380002 ] } },
{ "type": "Feature", "properties": { "Name": "Pleasington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pleasington Rail Station", "TIPLOC": "PLSNGTN", "CRS": "PLS", "StopAreaCode": "910GPLSNGTN", "AdministrativeAreaRef": "110", "code": "9100PLSNGTN", "NPTG": "E0052950", "ATCO": "258", "CRS_code": "PLS" }, "geometry": { "type": "Point", "coordinates": [ -2.54412357936, 53.730958598699999 ] } },
{ "type": "Feature", "properties": { "Name": "Portlethen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Portlethen Rail Station", "TIPLOC": "PLTH", "CRS": "PLN", "StopAreaCode": "910GPLTH", "AdministrativeAreaRef": "110", "code": "9100PLTH", "NPTG": "ES003062", "ATCO": "630", "CRS_code": "PLN" }, "geometry": { "type": "Point", "coordinates": [ -2.12661129783, 57.061375898199998 ] } },
{ "type": "Feature", "properties": { "Name": "Poulton-le-Fylde Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Poulton-le-Fylde Rail Station", "TIPLOC": "PLTNLFY", "CRS": "PFY", "StopAreaCode": "910GPLTNLFY", "AdministrativeAreaRef": "110", "code": "9100PLTNLFY", "NPTG": "E0016583", "ATCO": "250", "CRS_code": "PFY" }, "geometry": { "type": "Point", "coordinates": [ -2.99062442246, 53.848425789789999 ] } },
{ "type": "Feature", "properties": { "Name": "Pluckley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pluckley Rail Station", "TIPLOC": "PLUCKLY", "CRS": "PLC", "StopAreaCode": "910GPLUCKLY", "AdministrativeAreaRef": "110", "code": "9100PLUCKLY", "NPTG": "E0047103", "ATCO": "240", "CRS_code": "PLC" }, "geometry": { "type": "Point", "coordinates": [ 0.74739597705, 51.156473019579998 ] } },
{ "type": "Feature", "properties": { "Name": "Plumley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Plumley Rail Station", "TIPLOC": "PLUMLEY", "CRS": "PLM", "StopAreaCode": "910GPLUMLEY", "AdministrativeAreaRef": "110", "code": "9100PLUMLEY", "NPTG": "E0044387", "ATCO": "060", "CRS_code": "PLM" }, "geometry": { "type": "Point", "coordinates": [ -2.4196617352, 53.274674237120003 ] } },
{ "type": "Feature", "properties": { "Name": "Plymouth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Plymouth Rail Station", "TIPLOC": "PLYMTH", "CRS": "PLY", "StopAreaCode": "910GPLYMTH", "AdministrativeAreaRef": "110", "code": "9100PLYMTH", "NPTG": "N0073197", "ATCO": "118", "CRS_code": "PLY" }, "geometry": { "type": "Point", "coordinates": [ -4.14332046265, 50.377827331939997 ] } },
{ "type": "Feature", "properties": { "Name": "Pembrey & Burry Port Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pembrey & Burry Port Rail Station", "TIPLOC": "PMBRYBP", "CRS": "PBY", "StopAreaCode": "910GPMBRYBP", "AdministrativeAreaRef": "110", "code": "9100PMBRYBP", "NPTG": "E0036129", "ATCO": "522", "CRS_code": "PBY" }, "geometry": { "type": "Point", "coordinates": [ -4.24784113372, 51.683527538370001 ] } },
{ "type": "Feature", "properties": { "Name": "Penally Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penally Rail Station", "TIPLOC": "PNALLY", "CRS": "PNA", "StopAreaCode": "910GPNALLY", "AdministrativeAreaRef": "110", "code": "9100PNALLY", "NPTG": "E0054524", "ATCO": "521", "CRS_code": "PNA" }, "geometry": { "type": "Point", "coordinates": [ -4.72205505699, 51.65891943634 ] } },
{ "type": "Feature", "properties": { "Name": "Ponders End Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ponders End Rail Station", "TIPLOC": "PNDRSEN", "CRS": "PON", "StopAreaCode": "910GPNDRSEN", "AdministrativeAreaRef": "110", "code": "9100PNDRSEN", "NPTG": "E0034310", "ATCO": "490", "CRS_code": "PON" }, "geometry": { "type": "Point", "coordinates": [ -0.03508038479, 51.642256037060001 ] } },
{ "type": "Feature", "properties": { "Name": "Penge East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penge East Rail Station", "TIPLOC": "PNGEE", "CRS": "PNE", "StopAreaCode": "910GPNGEE", "AdministrativeAreaRef": "110", "code": "9100PNGEE", "NPTG": "N0065189", "ATCO": "490", "CRS_code": "PNE" }, "geometry": { "type": "Point", "coordinates": [ -0.05422045358, 51.419333922310003 ] } },
{ "type": "Feature", "properties": { "Name": "Penkridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penkridge Rail Station", "TIPLOC": "PNKRDG", "CRS": "PKG", "StopAreaCode": "910GPNKRDG", "AdministrativeAreaRef": "110", "code": "9100PNKRDG", "NPTG": "E0051195", "ATCO": "380", "CRS_code": "PKG" }, "geometry": { "type": "Point", "coordinates": [ -2.11929359212, 52.723499469719997 ] } },
{ "type": "Feature", "properties": { "Name": "Penmaenmawr Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penmaenmawr Rail Station", "TIPLOC": "PNMNMWR", "CRS": "PMW", "StopAreaCode": "910GPNMNMWR", "AdministrativeAreaRef": "110", "code": "9100PNMNMWR", "NPTG": "E0054182", "ATCO": "513", "CRS_code": "PMW" }, "geometry": { "type": "Point", "coordinates": [ -3.92351083801, 53.270465428740003 ] } },
{ "type": "Feature", "properties": { "Name": "Penrhiwceiber Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penrhiwceiber Rail Station", "TIPLOC": "PNRHCBR", "CRS": "PER", "StopAreaCode": "910GPNRHCBR", "AdministrativeAreaRef": "110", "code": "9100PNRHCBR", "NPTG": "E0054679", "ATCO": "552", "CRS_code": "PER" }, "geometry": { "type": "Point", "coordinates": [ -3.35994369051, 51.669922195879998 ] } },
{ "type": "Feature", "properties": { "Name": "Penshurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penshurst Rail Station", "TIPLOC": "PNSHRST", "CRS": "PHR", "StopAreaCode": "910GPNSHRST", "AdministrativeAreaRef": "110", "code": "9100PNSHRST", "NPTG": "E0047251", "ATCO": "240", "CRS_code": "PHR" }, "geometry": { "type": "Point", "coordinates": [ 0.17347226859, 51.197337614520002 ] } },
{ "type": "Feature", "properties": { "Name": "Pontarddulais Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontarddulais Rail Station", "TIPLOC": "PNTADLS", "CRS": "PTD", "StopAreaCode": "910GPNTADLS", "AdministrativeAreaRef": "110", "code": "9100PNTADLS", "NPTG": "N0061353", "ATCO": "581", "CRS_code": "PTD" }, "geometry": { "type": "Point", "coordinates": [ -4.04554335566, 51.717620831730002 ] } },
{ "type": "Feature", "properties": { "Name": "Penrith North Lakes Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penrith North Lakes Rail Station", "TIPLOC": "PNTH", "CRS": "PNR", "StopAreaCode": "910GPNTH", "AdministrativeAreaRef": "110", "code": "9100PNTH", "NPTG": "E0055513", "ATCO": "090", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.75888068898, 54.661805207070003 ] } },
{ "type": "Feature", "properties": { "Name": "Pontlottyn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontlottyn Rail Station", "TIPLOC": "PNTLTYN", "CRS": "PLT", "StopAreaCode": "910GPNTLTYN", "AdministrativeAreaRef": "110", "code": "9100PNTLTYN", "NPTG": "E0035768", "ATCO": "554", "CRS_code": "PLT" }, "geometry": { "type": "Point", "coordinates": [ -3.27895585893, 51.746631935940002 ] } },
{ "type": "Feature", "properties": { "Name": "Pentre-Bach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pentre-Bach Rail Station", "TIPLOC": "PNTRBCH", "CRS": "PTB", "StopAreaCode": "910GPNTRBCH", "AdministrativeAreaRef": "110", "code": "9100PNTRBCH", "NPTG": "N0071275", "ATCO": "553", "CRS_code": "PTB" }, "geometry": { "type": "Point", "coordinates": [ -3.36232056492, 51.725014045020004 ] } },
{ "type": "Feature", "properties": { "Name": "Pantyffynnon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pantyffynnon Rail Station", "TIPLOC": "PNTYFYN", "CRS": "PTF", "StopAreaCode": "910GPNTYFYN", "AdministrativeAreaRef": "110", "code": "9100PNTYFYN", "NPTG": "E0036122", "ATCO": "522", "CRS_code": "PTF" }, "geometry": { "type": "Point", "coordinates": [ -3.99742943826, 51.77887755607 ] } },
{ "type": "Feature", "properties": { "Name": "Penyffordd Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penyffordd Rail Station", "TIPLOC": "PNYF", "CRS": "PNF", "StopAreaCode": "910GPNYF", "AdministrativeAreaRef": "110", "code": "9100PNYF", "NPTG": "E0054251", "ATCO": "512", "CRS_code": "PNF" }, "geometry": { "type": "Point", "coordinates": [ -3.0548382262, 53.143089063300003 ] } },
{ "type": "Feature", "properties": { "Name": "Pont-y-Pant Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pont-y-Pant Rail Station", "TIPLOC": "PNYPANT", "CRS": "PYP", "StopAreaCode": "910GPNYPANT", "AdministrativeAreaRef": "110", "code": "9100PNYPANT", "NPTG": "E0036630", "ATCO": "513", "CRS_code": "PYP" }, "geometry": { "type": "Point", "coordinates": [ -3.86272058653, 53.065131873170003 ] } },
{ "type": "Feature", "properties": { "Name": "Pokesdown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pokesdown Rail Station", "TIPLOC": "POKSDWN", "CRS": "POK", "StopAreaCode": "910GPOKSDWN", "AdministrativeAreaRef": "110", "code": "9100POKSDWN", "NPTG": "E0035383", "ATCO": "129", "CRS_code": "POK" }, "geometry": { "type": "Point", "coordinates": [ -1.82510204878, 50.731087816490003 ] } },
{ "type": "Feature", "properties": { "Name": "Polegate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Polegate Rail Station", "TIPLOC": "POLGATE", "CRS": "PLG", "StopAreaCode": "910GPOLGATE", "AdministrativeAreaRef": "110", "code": "9100POLGATE", "NPTG": "E0046129", "ATCO": "140", "CRS_code": "PLG" }, "geometry": { "type": "Point", "coordinates": [ 0.24514013218, 50.821245354379997 ] } },
{ "type": "Feature", "properties": { "Name": "Polmont Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Polmont Rail Station", "TIPLOC": "POLMONT", "CRS": "PMT", "StopAreaCode": "910GPOLMONT", "AdministrativeAreaRef": "110", "code": "9100POLMONT", "NPTG": "ES003047", "ATCO": "669", "CRS_code": "PMT" }, "geometry": { "type": "Point", "coordinates": [ -3.71497293123, 55.984737039339997 ] } },
{ "type": "Feature", "properties": { "Name": "Polsloe Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Polsloe Bridge Rail Station", "TIPLOC": "POLSBDG", "CRS": "POL", "StopAreaCode": "910GPOLSBDG", "AdministrativeAreaRef": "110", "code": "9100POLSBDG", "NPTG": "E0007715", "ATCO": "110", "CRS_code": "POL" }, "geometry": { "type": "Point", "coordinates": [ -3.5019471574, 50.731280793309999 ] } },
{ "type": "Feature", "properties": { "Name": "Pontypool & New Inn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontypool & New Inn Rail Station", "TIPLOC": "PONTYPL", "CRS": "PPL", "StopAreaCode": "910GPONTYPL", "AdministrativeAreaRef": "110", "code": "9100PONTYPL", "NPTG": "E0057271", "ATCO": "534", "CRS_code": "PPL" }, "geometry": { "type": "Point", "coordinates": [ -3.01423630149, 51.697963907329999 ] } },
{ "type": "Feature", "properties": { "Name": "Pontyclun Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontyclun Rail Station", "TIPLOC": "PONYCLN", "CRS": "PYC", "StopAreaCode": "910GPONYCLN", "AdministrativeAreaRef": "110", "code": "9100PONYCLN", "NPTG": "E0041686", "ATCO": "552", "CRS_code": "PYC" }, "geometry": { "type": "Point", "coordinates": [ -3.39291781927, 51.523767669190001 ] } },
{ "type": "Feature", "properties": { "Name": "Poole Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Poole Rail Station", "TIPLOC": "POOLE", "CRS": "POO", "StopAreaCode": "910GPOOLE", "AdministrativeAreaRef": "110", "code": "9100POOLE", "NPTG": "E0057224", "ATCO": "128", "CRS_code": "POO" }, "geometry": { "type": "Point", "coordinates": [ -1.98331750258, 50.71942804247 ] } },
{ "type": "Feature", "properties": { "Name": "Poppleton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Poppleton Rail Station", "TIPLOC": "POPLTON", "CRS": "POP", "StopAreaCode": "910GPOPLTON", "AdministrativeAreaRef": "110", "code": "9100POPLTON", "NPTG": "E0043611", "ATCO": "329", "CRS_code": "POP" }, "geometry": { "type": "Point", "coordinates": [ -1.14859660402, 53.975897852199999 ] } },
{ "type": "Feature", "properties": { "Name": "Porth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Porth Rail Station", "TIPLOC": "PORH", "CRS": "POR", "StopAreaCode": "910GPORH", "AdministrativeAreaRef": "110", "code": "9100PORH", "NPTG": "E0054683", "ATCO": "552", "CRS_code": "POR" }, "geometry": { "type": "Point", "coordinates": [ -3.4071883218, 51.61253690985 ] } },
{ "type": "Feature", "properties": { "Name": "Possilpark & Parkhouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Possilpark & Parkhouse Rail Station", "TIPLOC": "POSILPK", "CRS": "PPK", "StopAreaCode": "910GPOSILPK", "AdministrativeAreaRef": "110", "code": "9100POSILPK", "NPTG": "N0076070", "ATCO": "609", "CRS_code": "PPK" }, "geometry": { "type": "Point", "coordinates": [ -4.25851266807, 55.890144556140001 ] } },
{ "type": "Feature", "properties": { "Name": "Potters Bar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Potters Bar Rail Station", "TIPLOC": "POTRSBR", "CRS": "PBR", "StopAreaCode": "910GPOTRSBR", "AdministrativeAreaRef": "110", "code": "9100POTRSBR", "NPTG": "E0014030", "ATCO": "210", "CRS_code": "PBR" }, "geometry": { "type": "Point", "coordinates": [ -0.19260545914, 51.697067371209997 ] } },
{ "type": "Feature", "properties": { "Name": "Poynton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Poynton Rail Station", "TIPLOC": "POYNTON", "CRS": "PYT", "StopAreaCode": "910GPOYNTON", "AdministrativeAreaRef": "110", "code": "9100POYNTON", "NPTG": "E0057334", "ATCO": "060", "CRS_code": "PYT" }, "geometry": { "type": "Point", "coordinates": [ -2.13441012212, 53.350384135970003 ] } },
{ "type": "Feature", "properties": { "Name": "Prestonpans Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prestonpans Rail Station", "TIPLOC": "PPAN", "CRS": "PST", "StopAreaCode": "910GPPAN", "AdministrativeAreaRef": "110", "code": "9100PPAN", "NPTG": "ES003084", "ATCO": "627", "CRS_code": "PST" }, "geometry": { "type": "Point", "coordinates": [ -2.97476785123, 55.953098500119999 ] } },
{ "type": "Feature", "properties": { "Name": "Prees Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prees Rail Station", "TIPLOC": "PREES", "CRS": "PRS", "StopAreaCode": "910GPREES", "AdministrativeAreaRef": "110", "code": "9100PREES", "NPTG": "E0050639", "ATCO": "350", "CRS_code": "PRS" }, "geometry": { "type": "Point", "coordinates": [ -2.68966271628, 52.899304726339999 ] } },
{ "type": "Feature", "properties": { "Name": "Prescot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prescot Rail Station", "TIPLOC": "PRESCOT", "CRS": "PSC", "StopAreaCode": "910GPRESCOT", "AdministrativeAreaRef": "110", "code": "9100PRESCOT", "NPTG": "E0052682", "ATCO": "280", "CRS_code": "PSC" }, "geometry": { "type": "Point", "coordinates": [ -2.79917121477, 53.423558474659998 ] } },
{ "type": "Feature", "properties": { "Name": "Penrhyndeudraeth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penrhyndeudraeth Rail Station", "TIPLOC": "PRHN", "CRS": "PRH", "StopAreaCode": "910GPRHN", "AdministrativeAreaRef": "110", "code": "9100PRHN", "NPTG": "E0054313", "ATCO": "540", "CRS_code": "PRH" }, "geometry": { "type": "Point", "coordinates": [ -4.06456249741, 52.928825810139998 ] } },
{ "type": "Feature", "properties": { "Name": "Princes Risborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Princes Risborough Rail Station", "TIPLOC": "PRINRIS", "CRS": "PRR", "StopAreaCode": "910GPRINRIS", "AdministrativeAreaRef": "110", "code": "9100PRINRIS", "NPTG": "E0043654", "ATCO": "040", "CRS_code": "PRR" }, "geometry": { "type": "Point", "coordinates": [ -0.84388102288, 51.717860309979997 ] } },
{ "type": "Feature", "properties": { "Name": "Prittlewell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prittlewell Rail Station", "TIPLOC": "PRITLWL", "CRS": "PRL", "StopAreaCode": "910GPRITLWL", "AdministrativeAreaRef": "110", "code": "9100PRITLWL", "NPTG": "E0042045", "ATCO": "158", "CRS_code": "PRL" }, "geometry": { "type": "Point", "coordinates": [ 0.71067614041, 51.550687320350001 ] } },
{ "type": "Feature", "properties": { "Name": "Harwich International Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Harwich International Rail Station", "TIPLOC": "PRKSTON", "CRS": "HPQ", "StopAreaCode": "910GPRKSTON", "AdministrativeAreaRef": "110", "code": "9100PRKSTON", "NPTG": "N0077992", "ATCO": "150", "CRS_code": "HPQ" }, "geometry": { "type": "Point", "coordinates": [ 1.25512449178, 51.947289501900002 ] } },
{ "type": "Feature", "properties": { "Name": "Preston Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Preston Park Rail Station", "TIPLOC": "PRSP", "CRS": "PRP", "StopAreaCode": "910GPRSP", "AdministrativeAreaRef": "110", "code": "9100PRSP", "NPTG": "E0057155", "ATCO": "149", "CRS_code": "PRP" }, "geometry": { "type": "Point", "coordinates": [ -0.15516756945, 50.845943972939999 ] } },
{ "type": "Feature", "properties": { "Name": "Preston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Preston Rail Station", "TIPLOC": "PRST", "CRS": "PRE", "StopAreaCode": "910GPRST", "AdministrativeAreaRef": "110", "code": "9100PRST", "NPTG": "E0057520", "ATCO": "250", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.70812786878, 53.756859366219999 ] } },
{ "type": "Feature", "properties": { "Name": "Porthmadog Harbour Ffestiniog Railway Station", "Status": "active", "Type": "RLY", "Station_Name": "Porthmadog Harbour Ffestiniog Railway Station", "TIPLOC": "PRTHHBR", "CRS": "PMG", "StopAreaCode": "910GPRTHHBR", "AdministrativeAreaRef": "110", "code": "9100PRTHHBR", "NPTG": "E0054316", "ATCO": "540", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.12681818026, 52.924040978480001 ] } },
{ "type": "Feature", "properties": { "Name": "Porthmadog Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Porthmadog Rail Station", "TIPLOC": "PRTHMDG", "CRS": "PTM", "StopAreaCode": "910GPRTHMDG", "AdministrativeAreaRef": "110", "code": "9100PRTHMDG", "NPTG": "E0054316", "ATCO": "540", "CRS_code": "PTM" }, "geometry": { "type": "Point", "coordinates": [ -4.13444633758, 52.930917084710003 ] } },
{ "type": "Feature", "properties": { "Name": "Portsmouth Arms Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Portsmouth Arms Rail Station", "TIPLOC": "PRTSMTA", "CRS": "PMA", "StopAreaCode": "910GPRTSMTA", "AdministrativeAreaRef": "110", "code": "9100PRTSMTA", "NPTG": "N0078168", "ATCO": "110", "CRS_code": "PMA" }, "geometry": { "type": "Point", "coordinates": [ -3.95057946827, 50.9570020795 ] } },
{ "type": "Feature", "properties": { "Name": "Prudhoe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prudhoe Rail Station", "TIPLOC": "PRUDHOE", "CRS": "PRU", "StopAreaCode": "910GPRUDHOE", "AdministrativeAreaRef": "110", "code": "9100PRUDHOE", "NPTG": "E0050001", "ATCO": "310", "CRS_code": "PRU" }, "geometry": { "type": "Point", "coordinates": [ -1.86486554784, 54.965828074809998 ] } },
{ "type": "Feature", "properties": { "Name": "Perry Barr Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Perry Barr Rail Station", "TIPLOC": "PRYBR", "CRS": "PRY", "StopAreaCode": "910GPRYBR", "AdministrativeAreaRef": "110", "code": "9100PRYBR", "NPTG": "E0031874", "ATCO": "430", "CRS_code": "PRY" }, "geometry": { "type": "Point", "coordinates": [ -1.90196003454, 52.51648555837 ] } },
{ "type": "Feature", "properties": { "Name": "Penryn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Penryn Rail Station", "TIPLOC": "PRYN", "CRS": "PYN", "StopAreaCode": "910GPRYN", "AdministrativeAreaRef": "110", "code": "9100PRYN", "NPTG": "E0044498", "ATCO": "080", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -5.11160741001, 50.170712766660003 ] } },
{ "type": "Feature", "properties": { "Name": "Prestbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prestbury Rail Station", "TIPLOC": "PSBY", "CRS": "PRB", "StopAreaCode": "910GPSBY", "AdministrativeAreaRef": "110", "code": "9100PSBY", "NPTG": "E0044390", "ATCO": "060", "CRS_code": "PRB" }, "geometry": { "type": "Point", "coordinates": [ -2.14548249893, 53.29338287721 ] } },
{ "type": "Feature", "properties": { "Name": "Portsmouth & Southsea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Portsmouth & Southsea Rail Station", "TIPLOC": "PSEA", "CRS": "PMS", "StopAreaCode": "910GPSEA", "AdministrativeAreaRef": "110", "code": "9100PSEA", "NPTG": "E0057225", "ATCO": "199", "CRS_code": "PMS" }, "geometry": { "type": "Point", "coordinates": [ -1.09091100881, 50.798495360529998 ] } },
{ "type": "Feature", "properties": { "Name": "Portslade Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Portslade Rail Station", "TIPLOC": "PSLDAWH", "CRS": "PLD", "StopAreaCode": "910GPSLDAWH", "AdministrativeAreaRef": "110", "code": "9100PSLDAWH", "NPTG": "E0057157", "ATCO": "149", "CRS_code": "PLD" }, "geometry": { "type": "Point", "coordinates": [ -0.20533641991, 50.835682514539997 ] } },
{ "type": "Feature", "properties": { "Name": "Port Sunlight Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Port Sunlight Rail Station", "TIPLOC": "PSLT", "CRS": "PSL", "StopAreaCode": "910GPSLT", "AdministrativeAreaRef": "110", "code": "9100PSLT", "NPTG": "E0029855", "ATCO": "280", "CRS_code": "PSL" }, "geometry": { "type": "Point", "coordinates": [ -2.99802912874, 53.349251200989997 ] } },
{ "type": "Feature", "properties": { "Name": "Paisley Canal Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Paisley Canal Rail Station", "TIPLOC": "PSLYCAN", "CRS": "PCN", "StopAreaCode": "910GPSLYCAN", "AdministrativeAreaRef": "110", "code": "9100PSLYCAN", "NPTG": "ES002954", "ATCO": "614", "CRS_code": "PCN" }, "geometry": { "type": "Point", "coordinates": [ -4.42411738368, 55.84007706237 ] } },
{ "type": "Feature", "properties": { "Name": "Paisley Gilmour Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Paisley Gilmour Street Rail Station", "TIPLOC": "PSLYGST", "CRS": "PYG", "StopAreaCode": "910GPSLYGST", "AdministrativeAreaRef": "110", "code": "9100PSLYGST", "NPTG": "ES002954", "ATCO": "614", "CRS_code": "PYG" }, "geometry": { "type": "Point", "coordinates": [ -4.42450637875, 55.84734957485 ] } },
{ "type": "Feature", "properties": { "Name": "Paisley St James Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Paisley St James Rail Station", "TIPLOC": "PSLYSTJ", "CRS": "PYJ", "StopAreaCode": "910GPSLYSTJ", "AdministrativeAreaRef": "110", "code": "9100PSLYSTJ", "NPTG": "ES002954", "ATCO": "614", "CRS_code": "PYJ" }, "geometry": { "type": "Point", "coordinates": [ -4.44244294386, 55.852117761190001 ] } },
{ "type": "Feature", "properties": { "Name": "Pensarn (Gwynedd) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pensarn (Gwynedd) Rail Station", "TIPLOC": "PSRN", "CRS": "PES", "StopAreaCode": "910GPSRN", "AdministrativeAreaRef": "110", "code": "9100PSRN", "NPTG": "N0071238", "ATCO": "540", "CRS_code": "PES" }, "geometry": { "type": "Point", "coordinates": [ -4.11215971635, 52.830706210309998 ] } },
{ "type": "Feature", "properties": { "Name": "Prestatyn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prestatyn Rail Station", "TIPLOC": "PSTA", "CRS": "PRT", "StopAreaCode": "910GPSTA", "AdministrativeAreaRef": "110", "code": "9100PSTA", "NPTG": "E0054218", "ATCO": "513", "CRS_code": "PRT" }, "geometry": { "type": "Point", "coordinates": [ -3.40713173759, 53.336497605639998 ] } },
{ "type": "Feature", "properties": { "Name": "Parkstone (Dorset) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Parkstone (Dorset) Rail Station", "TIPLOC": "PSTONE", "CRS": "PKS", "StopAreaCode": "910GPSTONE", "AdministrativeAreaRef": "110", "code": "9100PSTONE", "NPTG": "E0040701", "ATCO": "128", "CRS_code": "PKS" }, "geometry": { "type": "Point", "coordinates": [ -1.94795647998, 50.722978799209997 ] } },
{ "type": "Feature", "properties": { "Name": "Port Talbot Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Port Talbot Parkway Rail Station", "TIPLOC": "PTALBOT", "CRS": "PTA", "StopAreaCode": "910GPTALBOT", "AdministrativeAreaRef": "110", "code": "9100PTALBOT", "NPTG": "N0078801", "ATCO": "582", "CRS_code": "PTA" }, "geometry": { "type": "Point", "coordinates": [ -3.78131427074, 51.59171799928 ] } },
{ "type": "Feature", "properties": { "Name": "Partick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Partick Rail Station", "TIPLOC": "PTCK", "CRS": "PTK", "StopAreaCode": "910GPTCK", "AdministrativeAreaRef": "110", "code": "9100PTCK", "NPTG": "ES002978", "ATCO": "609", "CRS_code": "PTK" }, "geometry": { "type": "Point", "coordinates": [ -4.30880630356, 55.869887992690003 ] } },
{ "type": "Feature", "properties": { "Name": "Pontefract Baghill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontefract Baghill Rail Station", "TIPLOC": "PTFTBHL", "CRS": "PFR", "StopAreaCode": "910GPTFTBHL", "AdministrativeAreaRef": "110", "code": "9100PTFTBHL", "NPTG": "E0033397", "ATCO": "450", "CRS_code": "PFR" }, "geometry": { "type": "Point", "coordinates": [ -1.30335277828, 53.691881647430002 ] } },
{ "type": "Feature", "properties": { "Name": "Pontefract Monkhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontefract Monkhill Rail Station", "TIPLOC": "PTFTMHL", "CRS": "PFM", "StopAreaCode": "910GPTFTMHL", "AdministrativeAreaRef": "110", "code": "9100PTFTMHL", "NPTG": "E0033397", "ATCO": "450", "CRS_code": "PFM" }, "geometry": { "type": "Point", "coordinates": [ -1.30368993226, 53.698984369549997 ] } },
{ "type": "Feature", "properties": { "Name": "Pontefract Tanshelf Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontefract Tanshelf Rail Station", "TIPLOC": "PTFTTSF", "CRS": "POT", "StopAreaCode": "910GPTFTTSF", "AdministrativeAreaRef": "110", "code": "9100PTFTTSF", "NPTG": "E0033397", "ATCO": "450", "CRS_code": "POT" }, "geometry": { "type": "Point", "coordinates": [ -1.318914751, 53.694128298419997 ] } },
{ "type": "Feature", "properties": { "Name": "Port Glasgow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Port Glasgow Rail Station", "TIPLOC": "PTGLSGW", "CRS": "PTG", "StopAreaCode": "910GPTGLSGW", "AdministrativeAreaRef": "110", "code": "9100PTGLSGW", "NPTG": "ES003052", "ATCO": "613", "CRS_code": "PTG" }, "geometry": { "type": "Point", "coordinates": [ -4.68982570776, 55.933514955889997 ] } },
{ "type": "Feature", "properties": { "Name": "Pitlochry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pitlochry Rail Station", "TIPLOC": "PTLCHRY", "CRS": "PIT", "StopAreaCode": "910GPTLCHRY", "AdministrativeAreaRef": "110", "code": "9100PTLCHRY", "NPTG": "ES003027", "ATCO": "648", "CRS_code": "PIT" }, "geometry": { "type": "Point", "coordinates": [ -3.735570259, 56.702501057360003 ] } },
{ "type": "Feature", "properties": { "Name": "Patricroft Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Patricroft Rail Station", "TIPLOC": "PTRCRFT", "CRS": "PAT", "StopAreaCode": "910GPTRCRFT", "AdministrativeAreaRef": "110", "code": "9100PTRCRFT", "NPTG": "E0029193", "ATCO": "180", "CRS_code": "PAT" }, "geometry": { "type": "Point", "coordinates": [ -2.3582446404, 53.484777351989997 ] } },
{ "type": "Feature", "properties": { "Name": "Petersfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Petersfield Rail Station", "TIPLOC": "PTRSFLD", "CRS": "PTR", "StopAreaCode": "910GPTRSFLD", "AdministrativeAreaRef": "110", "code": "9100PTRSFLD", "NPTG": "E0046774", "ATCO": "190", "CRS_code": "PTR" }, "geometry": { "type": "Point", "coordinates": [ -0.94113669019, 51.006726321019997 ] } },
{ "type": "Feature", "properties": { "Name": "Pontypridd Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pontypridd Rail Station", "TIPLOC": "PTYPRID", "CRS": "PPD", "StopAreaCode": "910GPTYPRID", "AdministrativeAreaRef": "110", "code": "9100PTYPRID", "NPTG": "E0054682", "ATCO": "552", "CRS_code": "PPD" }, "geometry": { "type": "Point", "coordinates": [ -3.34137470984, 51.599370172290001 ] } },
{ "type": "Feature", "properties": { "Name": "Pulborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pulborough Rail Station", "TIPLOC": "PULBRO", "CRS": "PUL", "StopAreaCode": "910GPULBRO", "AdministrativeAreaRef": "110", "code": "9100PULBRO", "NPTG": "E0052167", "ATCO": "440", "CRS_code": "PUL" }, "geometry": { "type": "Point", "coordinates": [ -0.51655772831, 50.957358893790001 ] } },
{ "type": "Feature", "properties": { "Name": "Purfleet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Purfleet Rail Station", "TIPLOC": "PURFLET", "CRS": "PFL", "StopAreaCode": "910GPURFLET", "AdministrativeAreaRef": "110", "code": "9100PURFLET", "NPTG": "N0060757", "ATCO": "159", "CRS_code": "PFL" }, "geometry": { "type": "Point", "coordinates": [ 0.23676701853, 51.4810133792 ] } },
{ "type": "Feature", "properties": { "Name": "Purley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Purley Rail Station", "TIPLOC": "PURLEY", "CRS": "PUR", "StopAreaCode": "910GPURLEY", "AdministrativeAreaRef": "110", "code": "9100PURLEY", "NPTG": "E0034228", "ATCO": "490", "CRS_code": "PUR" }, "geometry": { "type": "Point", "coordinates": [ -0.11403537395, 51.337578707490003 ] } },
{ "type": "Feature", "properties": { "Name": "Purley Oaks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Purley Oaks Rail Station", "TIPLOC": "PURLEYO", "CRS": "PUO", "StopAreaCode": "910GPURLEYO", "AdministrativeAreaRef": "110", "code": "9100PURLEYO", "NPTG": "E0034228", "ATCO": "490", "CRS_code": "PUO" }, "geometry": { "type": "Point", "coordinates": [ -0.09885607101, 51.34704550755 ] } },
{ "type": "Feature", "properties": { "Name": "Putney Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Putney Rail Station", "TIPLOC": "PUTNEY", "CRS": "PUT", "StopAreaCode": "910GPUTNEY", "AdministrativeAreaRef": "110", "code": "9100PUTNEY", "NPTG": "E0034898", "ATCO": "490", "CRS_code": "PUT" }, "geometry": { "type": "Point", "coordinates": [ -0.21647453579, 51.461302629480002 ] } },
{ "type": "Feature", "properties": { "Name": "Pevensey & Westham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pevensey & Westham Rail Station", "TIPLOC": "PVNSYAW", "CRS": "PEV", "StopAreaCode": "910GPVNSYAW", "AdministrativeAreaRef": "110", "code": "9100PVNSYAW", "NPTG": "E0046136", "ATCO": "140", "CRS_code": "PEV" }, "geometry": { "type": "Point", "coordinates": [ 0.32480749955, 50.815799220309998 ] } },
{ "type": "Feature", "properties": { "Name": "Pevensey Bay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pevensey Bay Rail Station", "TIPLOC": "PVNSYBY", "CRS": "PEB", "StopAreaCode": "910GPVNSYBY", "AdministrativeAreaRef": "110", "code": "9100PVNSYBY", "NPTG": "E0010892", "ATCO": "140", "CRS_code": "PEB" }, "geometry": { "type": "Point", "coordinates": [ 0.34290666276, 50.817460698470001 ] } },
{ "type": "Feature", "properties": { "Name": "Prestwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prestwick Rail Station", "TIPLOC": "PWCK", "CRS": "PTW", "StopAreaCode": "910GPWCK", "AdministrativeAreaRef": "110", "code": "9100PWCK", "NPTG": "ES003088", "ATCO": "619", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.61515630563, 55.50169765319 ] } },
{ "type": "Feature", "properties": { "Name": "Prestwick Intl Airport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Prestwick Intl Airport Rail Station", "TIPLOC": "PWCKAPT", "CRS": "PRA", "StopAreaCode": "910GPWCKAPT", "AdministrativeAreaRef": "110", "code": "9100PWCKAPT", "NPTG": "ES003088", "ATCO": "619", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.61417005661, 55.509035572729999 ] } },
{ "type": "Feature", "properties": { "Name": "Pwllheli Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pwllheli Rail Station", "TIPLOC": "PWLHELI", "CRS": "PWL", "StopAreaCode": "910GPWLHELI", "AdministrativeAreaRef": "110", "code": "9100PWLHELI", "NPTG": "E0054317", "ATCO": "540", "CRS_code": "PWL" }, "geometry": { "type": "Point", "coordinates": [ -4.41669751279, 52.887834409840004 ] } },
{ "type": "Feature", "properties": { "Name": "Polesworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Polesworth Rail Station", "TIPLOC": "PWTH", "CRS": "PSW", "StopAreaCode": "910GPWTH", "AdministrativeAreaRef": "110", "code": "9100PWTH", "NPTG": "E0056770", "ATCO": "420", "CRS_code": "PSW" }, "geometry": { "type": "Point", "coordinates": [ -1.61054009121, 52.625832180620002 ] } },
{ "type": "Feature", "properties": { "Name": "Pen-y-Bont Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pen-y-Bont Rail Station", "TIPLOC": "PYBONT", "CRS": "PNY", "StopAreaCode": "910GPYBONT", "AdministrativeAreaRef": "110", "code": "9100PYBONT", "NPTG": "E0054642", "ATCO": "561", "CRS_code": "PNY" }, "geometry": { "type": "Point", "coordinates": [ -3.32193104536, 52.273943024520001 ] } },
{ "type": "Feature", "properties": { "Name": "Pye Corner Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pye Corner Rail Station", "TIPLOC": "PYECRNR", "CRS": "PYE", "StopAreaCode": "910GPYECRNR", "AdministrativeAreaRef": "110", "code": "9100PYECRNR", "NPTG": "E0039788", "ATCO": "531", "CRS_code": "PYE" }, "geometry": { "type": "Point", "coordinates": [ -3.04121211895, 51.581475620230002 ] } },
{ "type": "Feature", "properties": { "Name": "Pyle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Pyle Rail Station", "TIPLOC": "PYLE", "CRS": "PYL", "StopAreaCode": "910GPYLE", "AdministrativeAreaRef": "110", "code": "9100PYLE", "NPTG": "E0035495", "ATCO": "551", "CRS_code": "PYL" }, "geometry": { "type": "Point", "coordinates": [ -3.698052219, 51.525735307390001 ] } },
{ "type": "Feature", "properties": { "Name": "Quintrell Downs Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Quintrell Downs Rail Station", "TIPLOC": "QNTRLDW", "CRS": "QUI", "StopAreaCode": "910GQNTRLDW", "AdministrativeAreaRef": "110", "code": "9100QNTRLDW", "NPTG": "E0004667", "ATCO": "080", "CRS_code": "QUI" }, "geometry": { "type": "Point", "coordinates": [ -5.02849134407, 50.404054757490002 ] } },
{ "type": "Feature", "properties": { "Name": "Queens Park (London) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Queens Park (London) Rail Station", "TIPLOC": "QPRK", "CRS": "QPW", "StopAreaCode": "910GQPRK", "AdministrativeAreaRef": "110", "code": "9100QPRK", "NPTG": "N0065191", "ATCO": "490", "CRS_code": "QPW" }, "geometry": { "type": "Point", "coordinates": [ -0.20498477692, 51.533966170799999 ] } },
{ "type": "Feature", "properties": { "Name": "Queenstown Road (Battersea) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Queenstown Road (Battersea) Rail Station", "TIPLOC": "QTRDBAT", "CRS": "QRB", "StopAreaCode": "910GQTRDBAT", "AdministrativeAreaRef": "110", "code": "9100QTRDBAT", "NPTG": "E0034886", "ATCO": "490", "CRS_code": "QRB" }, "geometry": { "type": "Point", "coordinates": [ -0.14667813927, 51.474967875529998 ] } },
{ "type": "Feature", "properties": { "Name": "Quakers Yard Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Quakers Yard Rail Station", "TIPLOC": "QUAKRSY", "CRS": "QYD", "StopAreaCode": "910GQUAKRSY", "AdministrativeAreaRef": "110", "code": "9100QUAKRSY", "NPTG": "E0039224", "ATCO": "553", "CRS_code": "QYD" }, "geometry": { "type": "Point", "coordinates": [ -3.3228004364, 51.66072532418 ] } },
{ "type": "Feature", "properties": { "Name": "Queenborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Queenborough Rail Station", "TIPLOC": "QUENBRO", "CRS": "QBR", "StopAreaCode": "910GQUENBRO", "AdministrativeAreaRef": "110", "code": "9100QUENBRO", "NPTG": "E0047316", "ATCO": "240", "CRS_code": "QBR" }, "geometry": { "type": "Point", "coordinates": [ 0.7496662007, 51.415636948329997 ] } },
{ "type": "Feature", "properties": { "Name": "Queens Park (Glasgow) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Queens Park (Glasgow) Rail Station", "TIPLOC": "QUNPARK", "CRS": "QPK", "StopAreaCode": "910GQUNPARK", "AdministrativeAreaRef": "110", "code": "9100QUNPARK", "NPTG": "ES003096", "ATCO": "615", "CRS_code": "QPK" }, "geometry": { "type": "Point", "coordinates": [ -4.26674995821, 55.835304285969997 ] } },
{ "type": "Feature", "properties": { "Name": "Radlett Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Radlett Rail Station", "TIPLOC": "RADLETT", "CRS": "RDT", "StopAreaCode": "910GRADLETT", "AdministrativeAreaRef": "110", "code": "9100RADLETT", "NPTG": "E0014032", "ATCO": "210", "CRS_code": "RDT" }, "geometry": { "type": "Point", "coordinates": [ -0.31724370109, 51.685187983970003 ] } },
{ "type": "Feature", "properties": { "Name": "Radcliffe (Notts) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Radcliffe (Notts) Rail Station", "TIPLOC": "RADNOT", "CRS": "RDF", "StopAreaCode": "910GRADNOT", "AdministrativeAreaRef": "110", "code": "9100RADNOT", "NPTG": "E0050223", "ATCO": "330", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.0373279401, 52.948785364819997 ] } },
{ "type": "Feature", "properties": { "Name": "Radyr Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Radyr Rail Station", "TIPLOC": "RADYR", "CRS": "RDR", "StopAreaCode": "910GRADYR", "AdministrativeAreaRef": "110", "code": "9100RADYR", "NPTG": "E0035854", "ATCO": "571", "CRS_code": "RDR" }, "geometry": { "type": "Point", "coordinates": [ -3.24835281841, 51.516322716749997 ] } },
{ "type": "Feature", "properties": { "Name": "Rainham (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rainham (Kent) Rail Station", "TIPLOC": "RAINHMK", "CRS": "RAI", "StopAreaCode": "910GRAINHMK", "AdministrativeAreaRef": "110", "code": "9100RAINHMK", "NPTG": "E0039141", "ATCO": "240", "CRS_code": "RAI" }, "geometry": { "type": "Point", "coordinates": [ 0.61133719474, 51.366305939599997 ] } },
{ "type": "Feature", "properties": { "Name": "Ramsgate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ramsgate Rail Station", "TIPLOC": "RAMSGTE", "CRS": "RAM", "StopAreaCode": "910GRAMSGTE", "AdministrativeAreaRef": "110", "code": "9100RAMSGTE", "NPTG": "E0015445", "ATCO": "240", "CRS_code": "RAM" }, "geometry": { "type": "Point", "coordinates": [ 1.4064671553, 51.340804517659997 ] } },
{ "type": "Feature", "properties": { "Name": "Rannoch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rannoch Rail Station", "TIPLOC": "RANNOCH", "CRS": "RAN", "StopAreaCode": "910GRANNOCH", "AdministrativeAreaRef": "110", "code": "9100RANNOCH", "NPTG": "N0073316", "ATCO": "648", "CRS_code": "RAN" }, "geometry": { "type": "Point", "coordinates": [ -4.57686961119, 56.686045857800003 ] } },
{ "type": "Feature", "properties": { "Name": "Rauceby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rauceby Rail Station", "TIPLOC": "RAUCEBY", "CRS": "RAU", "StopAreaCode": "910GRAUCEBY", "AdministrativeAreaRef": "110", "code": "9100RAUCEBY", "NPTG": "E0048076", "ATCO": "270", "CRS_code": "RAU" }, "geometry": { "type": "Point", "coordinates": [ -0.45660612722, 52.985204536909997 ] } },
{ "type": "Feature", "properties": { "Name": "Rawcliffe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rawcliffe Rail Station", "TIPLOC": "RAWCLIF", "CRS": "RWC", "StopAreaCode": "910GRAWCLIF", "AdministrativeAreaRef": "110", "code": "9100RAWCLIF", "NPTG": "E0053098", "ATCO": "220", "CRS_code": "RWC" }, "geometry": { "type": "Point", "coordinates": [ -0.96086312528, 53.689041319689998 ] } },
{ "type": "Feature", "properties": { "Name": "Rayleigh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rayleigh Rail Station", "TIPLOC": "RAYLEGH", "CRS": "RLG", "StopAreaCode": "910GRAYLEGH", "AdministrativeAreaRef": "110", "code": "9100RAYLEGH", "NPTG": "E0057397", "ATCO": "150", "CRS_code": "RLG" }, "geometry": { "type": "Point", "coordinates": [ 0.59998347987, 51.589293272330004 ] } },
{ "type": "Feature", "properties": { "Name": "Raynes Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Raynes Park Rail Station", "TIPLOC": "RAYNSPK", "CRS": "RAY", "StopAreaCode": "910GRAYNSPK", "AdministrativeAreaRef": "110", "code": "9100RAYNSPK", "NPTG": "E0034690", "ATCO": "490", "CRS_code": "RAY" }, "geometry": { "type": "Point", "coordinates": [ -0.2301507749, 51.409173440399996 ] } },
{ "type": "Feature", "properties": { "Name": "Ravensbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ravensbourne Rail Station", "TIPLOC": "RBRN", "CRS": "RVB", "StopAreaCode": "910GRBRN", "AdministrativeAreaRef": "110", "code": "9100RBRN", "NPTG": "N0075219", "ATCO": "490", "CRS_code": "RVB" }, "geometry": { "type": "Point", "coordinates": [ -0.00755674292, 51.414188357150003 ] } },
{ "type": "Feature", "properties": { "Name": "Robertsbridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Robertsbridge Rail Station", "TIPLOC": "RBRTSBD", "CRS": "RBR", "StopAreaCode": "910GRBRTSBD", "AdministrativeAreaRef": "110", "code": "9100RBRTSBD", "NPTG": "E0010669", "ATCO": "140", "CRS_code": "RBR" }, "geometry": { "type": "Point", "coordinates": [ 0.46878255182, 50.98493334546 ] } },
{ "type": "Feature", "properties": { "Name": "Robroyston Railway Station", "Status": "active", "Type": "RLY", "Station_Name": "Robroyston Railway Station", "TIPLOC": "RBRYSTN", "CRS": "RRN", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100RBRYSTN", "NPTG": "N0068199", "ATCO": "611", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -4.17136594603, 55.88779459765 ] } },
{ "type": "Feature", "properties": { "Name": "Rochdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rochdale Rail Station", "TIPLOC": "RCHDALE", "CRS": "RCD", "StopAreaCode": "910GRCHDALE", "AdministrativeAreaRef": "110", "code": "9100RCHDALE", "NPTG": "E0057799", "ATCO": "180", "CRS_code": "RCD" }, "geometry": { "type": "Point", "coordinates": [ -2.15352414654, 53.610306843750003 ] } },
{ "type": "Feature", "properties": { "Name": "Roche Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Roche Rail Station", "TIPLOC": "RCHE", "CRS": "ROC", "StopAreaCode": "910GRCHE", "AdministrativeAreaRef": "110", "code": "9100RCHE", "NPTG": "E0044646", "ATCO": "080", "CRS_code": "ROC" }, "geometry": { "type": "Point", "coordinates": [ -4.83019761442, 50.418542142820002 ] } },
{ "type": "Feature", "properties": { "Name": "Rochester Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rochester Rail Station", "TIPLOC": "RCHT", "CRS": "RTR", "StopAreaCode": "910GRCHT", "AdministrativeAreaRef": "110", "code": "9100RCHT", "NPTG": "N0072095", "ATCO": "249", "CRS_code": "RTR" }, "geometry": { "type": "Point", "coordinates": [ 0.50685493421, 51.389652000150001 ] } },
{ "type": "Feature", "properties": { "Name": "Rickmansworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rickmansworth Rail Station", "TIPLOC": "RCKMNSW", "CRS": "RIC", "StopAreaCode": "910GRCKMNSW", "AdministrativeAreaRef": "110", "code": "9100RCKMNSW", "NPTG": "E0014280", "ATCO": "210", "CRS_code": "RIC" }, "geometry": { "type": "Point", "coordinates": [ -0.4732824467, 51.640246774449999 ] } },
{ "type": "Feature", "properties": { "Name": "Rectory Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rectory Road Rail Station", "TIPLOC": "RCTRYRD", "CRS": "REC", "StopAreaCode": "910GRCTRYRD", "AdministrativeAreaRef": "110", "code": "9100RCTRYRD", "NPTG": "E0034369", "ATCO": "490", "CRS_code": "REC" }, "geometry": { "type": "Point", "coordinates": [ -0.06826687685, 51.558502329269999 ] } },
{ "type": "Feature", "properties": { "Name": "Reedham (Norfolk) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reedham (Norfolk) Rail Station", "TIPLOC": "RDHAMN", "CRS": "REE", "StopAreaCode": "910GRDHAMN", "AdministrativeAreaRef": "110", "code": "9100RDHAMN", "NPTG": "E0048483", "ATCO": "290", "CRS_code": "REE" }, "geometry": { "type": "Point", "coordinates": [ 1.55965140119, 52.564503734429998 ] } },
{ "type": "Feature", "properties": { "Name": "Redditch Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Redditch Rail Station", "TIPLOC": "RDIT", "CRS": "RDC", "StopAreaCode": "910GRDIT", "AdministrativeAreaRef": "110", "code": "9100RDIT", "NPTG": "E0057709", "ATCO": "200", "CRS_code": "RDC" }, "geometry": { "type": "Point", "coordinates": [ -1.94554298886, 52.306280904399998 ] } },
{ "type": "Feature", "properties": { "Name": "Radley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Radley Rail Station", "TIPLOC": "RDLEY", "CRS": "RAD", "StopAreaCode": "910GRDLEY", "AdministrativeAreaRef": "110", "code": "9100RDLEY", "NPTG": "E0050464", "ATCO": "340", "CRS_code": "RAD" }, "geometry": { "type": "Point", "coordinates": [ -1.24048200823, 51.686205915430001 ] } },
{ "type": "Feature", "properties": { "Name": "Riddlesdown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Riddlesdown Rail Station", "TIPLOC": "RDLSDWN", "CRS": "RDD", "StopAreaCode": "910GRDLSDWN", "AdministrativeAreaRef": "110", "code": "9100RDLSDWN", "NPTG": "E0034228", "ATCO": "490", "CRS_code": "RDD" }, "geometry": { "type": "Point", "coordinates": [ -0.09938662481, 51.332485794070003 ] } },
{ "type": "Feature", "properties": { "Name": "Reading Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reading Rail Station", "TIPLOC": "RDNG4AB", "CRS": "RDG", "StopAreaCode": "910GRDNG4AB", "AdministrativeAreaRef": "110", "code": "9100RDNG4AB", "NPTG": "N0071726", "ATCO": "039", "CRS_code": "RDG" }, "geometry": { "type": "Point", "coordinates": [ -0.97186318217, 51.458786142850002 ] } },
{ "type": "Feature", "properties": { "Name": "Reading Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reading Rail Station", "TIPLOC": "RDNGSTN", "CRS": "RDG", "StopAreaCode": "910GRDNGSTN", "AdministrativeAreaRef": "110", "code": "9100RDNGSTN", "NPTG": "N0071726", "ATCO": "039", "CRS_code": "RDG" }, "geometry": { "type": "Point", "coordinates": [ -0.97184879131, 51.458786016689999 ] } },
{ "type": "Feature", "properties": { "Name": "Redbridge (Hants) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Redbridge (Hants) Rail Station", "TIPLOC": "REDBDGE", "CRS": "RDB", "StopAreaCode": "910GREDBDGE", "AdministrativeAreaRef": "110", "code": "9100REDBDGE", "NPTG": "E0042016", "ATCO": "198", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.47015976133, 50.919939444610002 ] } },
{ "type": "Feature", "properties": { "Name": "Redcar Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Redcar Central Rail Station", "TIPLOC": "REDCARC", "CRS": "RCC", "StopAreaCode": "910GREDCARC", "AdministrativeAreaRef": "110", "code": "9100REDCARC", "NPTG": "E0041561", "ATCO": "078", "CRS_code": "RCC" }, "geometry": { "type": "Point", "coordinates": [ -1.07086756207, 54.616226589859998 ] } },
{ "type": "Feature", "properties": { "Name": "Redcar East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Redcar East Rail Station", "TIPLOC": "REDCARE", "CRS": "RCE", "StopAreaCode": "910GREDCARE", "AdministrativeAreaRef": "110", "code": "9100REDCARE", "NPTG": "E0041561", "ATCO": "078", "CRS_code": "RCE" }, "geometry": { "type": "Point", "coordinates": [ -1.0522921733, 54.609252441419997 ] } },
{ "type": "Feature", "properties": { "Name": "British Steel Redcar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "British Steel Redcar Rail Station", "TIPLOC": "REDCBSC", "CRS": "RBS", "StopAreaCode": "910GREDCBSC", "AdministrativeAreaRef": "110", "code": "9100REDCBSC", "NPTG": "E0041561", "ATCO": "078", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.11266116496, 54.609889551750001 ] } },
{ "type": "Feature", "properties": { "Name": "Reading West Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reading West Rail Station", "TIPLOC": "REDGWST", "CRS": "RDW", "StopAreaCode": "910GREDGWST", "AdministrativeAreaRef": "110", "code": "9100REDGWST", "NPTG": "N0071726", "ATCO": "039", "CRS_code": "RDW" }, "geometry": { "type": "Point", "coordinates": [ -0.99012928003, 51.455500976810001 ] } },
{ "type": "Feature", "properties": { "Name": "Redhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Redhill Rail Station", "TIPLOC": "REDHILL", "CRS": "RDH", "StopAreaCode": "910GREDHILL", "AdministrativeAreaRef": "110", "code": "9100REDHILL", "NPTG": "E0025563", "ATCO": "400", "CRS_code": "RDH" }, "geometry": { "type": "Point", "coordinates": [ -0.1658998783, 51.240201125699997 ] } },
{ "type": "Feature", "properties": { "Name": "Reddish North Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reddish North Rail Station", "TIPLOC": "REDISHN", "CRS": "RDN", "StopAreaCode": "910GREDISHN", "AdministrativeAreaRef": "110", "code": "9100REDISHN", "NPTG": "E0029156", "ATCO": "180", "CRS_code": "RDN" }, "geometry": { "type": "Point", "coordinates": [ -2.15625496601, 53.449411488060001 ] } },
{ "type": "Feature", "properties": { "Name": "Reddish South Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reddish South Rail Station", "TIPLOC": "REDISHS", "CRS": "RDS", "StopAreaCode": "910GREDISHS", "AdministrativeAreaRef": "110", "code": "9100REDISHS", "NPTG": "E0029245", "ATCO": "180", "CRS_code": "RDS" }, "geometry": { "type": "Point", "coordinates": [ -2.15876432556, 53.435925421690001 ] } },
{ "type": "Feature", "properties": { "Name": "Redland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Redland Rail Station", "TIPLOC": "REDLAND", "CRS": "RDA", "StopAreaCode": "910GREDLAND", "AdministrativeAreaRef": "110", "code": "9100REDLAND", "NPTG": "E0035635", "ATCO": "010", "CRS_code": "RDA" }, "geometry": { "type": "Point", "coordinates": [ -2.5991234231, 51.46838623363 ] } },
{ "type": "Feature", "properties": { "Name": "Redruth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Redruth Rail Station", "TIPLOC": "REDRUTH", "CRS": "RED", "StopAreaCode": "910GREDRUTH", "AdministrativeAreaRef": "110", "code": "9100REDRUTH", "NPTG": "E0044542", "ATCO": "080", "CRS_code": "RED" }, "geometry": { "type": "Point", "coordinates": [ -5.22591532376, 50.23325331529 ] } },
{ "type": "Feature", "properties": { "Name": "Reedham (Surrey) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reedham (Surrey) Rail Station", "TIPLOC": "REEDHMS", "CRS": "RHM", "StopAreaCode": "910GREEDHMS", "AdministrativeAreaRef": "110", "code": "9100REEDHMS", "NPTG": "E0034228", "ATCO": "490", "CRS_code": "RHM" }, "geometry": { "type": "Point", "coordinates": [ -0.12341575326, 51.331119693200002 ] } },
{ "type": "Feature", "properties": { "Name": "Reigate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Reigate Rail Station", "TIPLOC": "REIGATE", "CRS": "REI", "StopAreaCode": "910GREIGATE", "AdministrativeAreaRef": "110", "code": "9100REIGATE", "NPTG": "E0025564", "ATCO": "400", "CRS_code": "REI" }, "geometry": { "type": "Point", "coordinates": [ -0.20382505851, 51.241958387659999 ] } },
{ "type": "Feature", "properties": { "Name": "Renton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Renton Rail Station", "TIPLOC": "RENTON", "CRS": "RTN", "StopAreaCode": "910GRENTON", "AdministrativeAreaRef": "110", "code": "9100RENTON", "NPTG": "ES003134", "ATCO": "608", "CRS_code": "RTN" }, "geometry": { "type": "Point", "coordinates": [ -4.58612570833, 55.970431178310001 ] } },
{ "type": "Feature", "properties": { "Name": "Roughton Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Roughton Road Rail Station", "TIPLOC": "RGHTNRD", "CRS": "RNR", "StopAreaCode": "910GRGHTNRD", "AdministrativeAreaRef": "110", "code": "9100RGHTNRD", "NPTG": "E0048645", "ATCO": "290", "CRS_code": "RNR" }, "geometry": { "type": "Point", "coordinates": [ 1.29979422452, 52.918019733980003 ] } },
{ "type": "Feature", "properties": { "Name": "Ravenglass Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ravenglass Rail Station", "TIPLOC": "RGLS", "CRS": "RAV", "StopAreaCode": "910GRGLS", "AdministrativeAreaRef": "110", "code": "9100RGLS", "NPTG": "E0005682", "ATCO": "090", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.40881368272, 54.355707233929998 ] } },
{ "type": "Feature", "properties": { "Name": "Rainhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rainhill Rail Station", "TIPLOC": "RHIL", "CRS": "RNH", "StopAreaCode": "910GRHIL", "AdministrativeAreaRef": "110", "code": "9100RHIL", "NPTG": "E0052697", "ATCO": "280", "CRS_code": "RNH" }, "geometry": { "type": "Point", "coordinates": [ -2.76640023607, 53.417121644790001 ] } },
{ "type": "Feature", "properties": { "Name": "Rhiwbina Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rhiwbina Rail Station", "TIPLOC": "RHIWBNA", "CRS": "RHI", "StopAreaCode": "910GRHIWBNA", "AdministrativeAreaRef": "110", "code": "9100RHIWBNA", "NPTG": "E0054019", "ATCO": "571", "CRS_code": "RHI" }, "geometry": { "type": "Point", "coordinates": [ -3.2139651199, 51.521179671280002 ] } },
{ "type": "Feature", "properties": { "Name": "Rhoose Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rhoose Rail Station", "TIPLOC": "RHOOSE", "CRS": "RIA", "StopAreaCode": "910GRHOOSE", "AdministrativeAreaRef": "110", "code": "9100RHOOSE", "NPTG": "E0054768", "ATCO": "572", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.34938388029, 51.387066386500003 ] } },
{ "type": "Feature", "properties": { "Name": "Rhosneigr Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rhosneigr Rail Station", "TIPLOC": "RHOSNGR", "CRS": "RHO", "StopAreaCode": "910GRHOSNGR", "AdministrativeAreaRef": "110", "code": "9100RHOSNGR", "NPTG": "E0038779", "ATCO": "541", "CRS_code": "RHO" }, "geometry": { "type": "Point", "coordinates": [ -4.50664188013, 53.234837656400003 ] } },
{ "type": "Feature", "properties": { "Name": "Rhyl Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rhyl Rail Station", "TIPLOC": "RHYL", "CRS": "RHL", "StopAreaCode": "910GRHYL", "AdministrativeAreaRef": "110", "code": "9100RHYL", "NPTG": "E0054220", "ATCO": "513", "CRS_code": "RHL" }, "geometry": { "type": "Point", "coordinates": [ -3.48910526345, 53.318422344410003 ] } },
{ "type": "Feature", "properties": { "Name": "Rhymney Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rhymney Rail Station", "TIPLOC": "RHYMNEY", "CRS": "RHY", "StopAreaCode": "910GRHYMNEY", "AdministrativeAreaRef": "110", "code": "9100RHYMNEY", "NPTG": "E0053991", "ATCO": "554", "CRS_code": "RHY" }, "geometry": { "type": "Point", "coordinates": [ -3.28929833943, 51.758837400419999 ] } },
{ "type": "Feature", "properties": { "Name": "Ribblehead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ribblehead Rail Station", "TIPLOC": "RIBLHED", "CRS": "RHD", "StopAreaCode": "910GRIBLHED", "AdministrativeAreaRef": "110", "code": "9100RIBLHED", "NPTG": "E0018440", "ATCO": "320", "CRS_code": "RHD" }, "geometry": { "type": "Point", "coordinates": [ -2.36085578685, 54.205844766189998 ] } },
{ "type": "Feature", "properties": { "Name": "Rice Lane Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rice Lane Rail Station", "TIPLOC": "RICELA", "CRS": "RIL", "StopAreaCode": "910GRICELA", "AdministrativeAreaRef": "110", "code": "9100RICELA", "NPTG": "E0029839", "ATCO": "280", "CRS_code": "RIL" }, "geometry": { "type": "Point", "coordinates": [ -2.9623183852, 53.457771141919999 ] } },
{ "type": "Feature", "properties": { "Name": "Richmond (London) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Richmond (London) Rail Station", "TIPLOC": "RICHMND", "CRS": "RMD", "StopAreaCode": "910GRICHMND", "AdministrativeAreaRef": "110", "code": "9100RICHMND", "NPTG": "E0034774", "ATCO": "490", "CRS_code": "RMD" }, "geometry": { "type": "Point", "coordinates": [ -0.30155834819, 51.46306062315 ] } },
{ "type": "Feature", "properties": { "Name": "Richmond NLL Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Richmond NLL Rail Station", "TIPLOC": "RICHNLL", "CRS": "RMD", "StopAreaCode": "910GRICHNLL", "AdministrativeAreaRef": "110", "code": "9100RICHNLL", "NPTG": "E0034774", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.30141112933, 51.463148414480003 ] } },
{ "type": "Feature", "properties": { "Name": "Ridgmont Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ridgmont Rail Station", "TIPLOC": "RIDGMNT", "CRS": "RID", "StopAreaCode": "910GRIDGMNT", "AdministrativeAreaRef": "110", "code": "9100RIDGMNT", "NPTG": "E0043910", "ATCO": "021", "CRS_code": "RID" }, "geometry": { "type": "Point", "coordinates": [ -0.59455694955, 52.026402846339998 ] } },
{ "type": "Feature", "properties": { "Name": "Riding Mill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Riding Mill Rail Station", "TIPLOC": "RIDNGML", "CRS": "RDM", "StopAreaCode": "910GRIDNGML", "AdministrativeAreaRef": "110", "code": "9100RIDNGML", "NPTG": "E0020212", "ATCO": "310", "CRS_code": "RDM" }, "geometry": { "type": "Point", "coordinates": [ -1.97155498582, 54.948735916979999 ] } },
{ "type": "Feature", "properties": { "Name": "Risca & Pontymister Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Risca & Pontymister Rail Station", "TIPLOC": "RISCA", "CRS": "RCA", "StopAreaCode": "910GRISCA", "AdministrativeAreaRef": "110", "code": "9100RISCA", "NPTG": "E0035769", "ATCO": "554", "CRS_code": "RCA" }, "geometry": { "type": "Point", "coordinates": [ -3.09220929186, 51.60584705043 ] } },
{ "type": "Feature", "properties": { "Name": "Rishton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rishton Rail Station", "TIPLOC": "RISHTON", "CRS": "RIS", "StopAreaCode": "910GRISHTON", "AdministrativeAreaRef": "110", "code": "9100RISHTON", "NPTG": "E0015920", "ATCO": "250", "CRS_code": "RIS" }, "geometry": { "type": "Point", "coordinates": [ -2.42015767014, 53.763814770620002 ] } },
{ "type": "Feature", "properties": { "Name": "Ramsgreave & Wilpshire Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ramsgreave & Wilpshire Rail Station", "TIPLOC": "RMSWILP", "CRS": "RGW", "StopAreaCode": "910GRMSWILP", "AdministrativeAreaRef": "110", "code": "9100RMSWILP", "NPTG": "E0047531", "ATCO": "258", "CRS_code": "RGW" }, "geometry": { "type": "Point", "coordinates": [ -2.47813524356, 53.779775993610002 ] } },
{ "type": "Feature", "properties": { "Name": "Rainford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rainford Rail Station", "TIPLOC": "RNFD", "CRS": "RNF", "StopAreaCode": "910GRNFD", "AdministrativeAreaRef": "110", "code": "9100RNFD", "NPTG": "E0052696", "ATCO": "280", "CRS_code": "RNF" }, "geometry": { "type": "Point", "coordinates": [ -2.78946905426, 53.517105479260003 ] } },
{ "type": "Feature", "properties": { "Name": "Rainham (London) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rainham (London) Rail Station", "TIPLOC": "RNHAME", "CRS": "RNM", "StopAreaCode": "910GRNHAME", "AdministrativeAreaRef": "110", "code": "9100RNHAME", "NPTG": "E0034469", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.19063351677, 51.516723116820003 ] } },
{ "type": "Feature", "properties": { "Name": "Roby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Roby Rail Station", "TIPLOC": "ROBY", "CRS": "ROB", "StopAreaCode": "910GROBY", "AdministrativeAreaRef": "110", "code": "9100ROBY", "NPTG": "E0029867", "ATCO": "280", "CRS_code": "ROB" }, "geometry": { "type": "Point", "coordinates": [ -2.85593353755, 53.410041374910001 ] } },
{ "type": "Feature", "properties": { "Name": "Rochford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rochford Rail Station", "TIPLOC": "ROCHFD", "CRS": "RFD", "StopAreaCode": "910GROCHFD", "AdministrativeAreaRef": "110", "code": "9100ROCHFD", "NPTG": "E0057398", "ATCO": "150", "CRS_code": "RFD" }, "geometry": { "type": "Point", "coordinates": [ 0.70230335294, 51.581728696810003 ] } },
{ "type": "Feature", "properties": { "Name": "Rock Ferry Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rock Ferry Rail Station", "TIPLOC": "ROCKFRY", "CRS": "RFY", "StopAreaCode": "910GROCKFRY", "AdministrativeAreaRef": "110", "code": "9100ROCKFRY", "NPTG": "E0029868", "ATCO": "280", "CRS_code": "RFY" }, "geometry": { "type": "Point", "coordinates": [ -3.01082627118, 53.372649744050001 ] } },
{ "type": "Feature", "properties": { "Name": "Rogart Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rogart Rail Station", "TIPLOC": "ROGART", "CRS": "ROG", "StopAreaCode": "910GROGART", "AdministrativeAreaRef": "110", "code": "9100ROGART", "NPTG": "ES003162", "ATCO": "670", "CRS_code": "ROG" }, "geometry": { "type": "Point", "coordinates": [ -4.15818494724, 57.988712473710002 ] } },
{ "type": "Feature", "properties": { "Name": "Rogerstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rogerstone Rail Station", "TIPLOC": "ROGRSTN", "CRS": "ROR", "StopAreaCode": "910GROGRSTN", "AdministrativeAreaRef": "110", "code": "9100ROGRSTN", "NPTG": "E0054462", "ATCO": "554", "CRS_code": "ROR" }, "geometry": { "type": "Point", "coordinates": [ -3.06661248891, 51.595616180219999 ] } },
{ "type": "Feature", "properties": { "Name": "Rose Hill Marple Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rose Hill Marple Rail Station", "TIPLOC": "ROHL", "CRS": "RSH", "StopAreaCode": "910GROHL", "AdministrativeAreaRef": "110", "code": "9100ROHL", "NPTG": "N0075134", "ATCO": "180", "CRS_code": "RSH" }, "geometry": { "type": "Point", "coordinates": [ -2.07652149838, 53.39622334133 ] } },
{ "type": "Feature", "properties": { "Name": "Rolleston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rolleston Rail Station", "TIPLOC": "ROLSTN", "CRS": "ROL", "StopAreaCode": "910GROLSTN", "AdministrativeAreaRef": "110", "code": "9100ROLSTN", "NPTG": "E0050169", "ATCO": "330", "CRS_code": "ROL" }, "geometry": { "type": "Point", "coordinates": [ -0.8996746998, 53.065282896500001 ] } },
{ "type": "Feature", "properties": { "Name": "Roman Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Roman Bridge Rail Station", "TIPLOC": "ROMANBG", "CRS": "RMB", "StopAreaCode": "910GROMANBG", "AdministrativeAreaRef": "110", "code": "9100ROMANBG", "NPTG": "E0054163", "ATCO": "513", "CRS_code": "RMB" }, "geometry": { "type": "Point", "coordinates": [ -3.9216479488, 53.044415339399997 ] } },
{ "type": "Feature", "properties": { "Name": "Romford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Romford Rail Station", "TIPLOC": "ROMFORD", "CRS": "RMF", "StopAreaCode": "910GROMFORD", "AdministrativeAreaRef": "110", "code": "9100ROMFORD", "NPTG": "E0034470", "ATCO": "490", "CRS_code": "RMF" }, "geometry": { "type": "Point", "coordinates": [ 0.18323743946, 51.574829057259997 ] } },
{ "type": "Feature", "properties": { "Name": "Romiley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Romiley Rail Station", "TIPLOC": "ROMILEY", "CRS": "RML", "StopAreaCode": "910GROMILEY", "AdministrativeAreaRef": "110", "code": "9100ROMILEY", "NPTG": "E0029261", "ATCO": "180", "CRS_code": "RML" }, "geometry": { "type": "Point", "coordinates": [ -2.0893264826, 53.414011753369998 ] } },
{ "type": "Feature", "properties": { "Name": "Romsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Romsey Rail Station", "TIPLOC": "ROMSEY", "CRS": "ROM", "StopAreaCode": "910GROMSEY", "AdministrativeAreaRef": "110", "code": "9100ROMSEY", "NPTG": "E0046889", "ATCO": "190", "CRS_code": "ROM" }, "geometry": { "type": "Point", "coordinates": [ -1.49314348189, 50.992528967369999 ] } },
{ "type": "Feature", "properties": { "Name": "Roose Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Roose Rail Station", "TIPLOC": "ROOSE", "CRS": "ROO", "StopAreaCode": "910GROOSE", "AdministrativeAreaRef": "110", "code": "9100ROOSE", "NPTG": "E0005193", "ATCO": "090", "CRS_code": "ROO" }, "geometry": { "type": "Point", "coordinates": [ -3.19456868821, 54.115165009579997 ] } },
{ "type": "Feature", "properties": { "Name": "Rose Grove Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rose Grove Rail Station", "TIPLOC": "ROSG", "CRS": "RSG", "StopAreaCode": "910GROSG", "AdministrativeAreaRef": "110", "code": "9100ROSG", "NPTG": "E0015758", "ATCO": "250", "CRS_code": "RSG" }, "geometry": { "type": "Point", "coordinates": [ -2.28279636854, 53.78619349001 ] } },
{ "type": "Feature", "properties": { "Name": "Rosyth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rosyth Rail Station", "TIPLOC": "ROSYTH", "CRS": "ROS", "StopAreaCode": "910GROSYTH", "AdministrativeAreaRef": "110", "code": "9100ROSYTH", "NPTG": "ES003200", "ATCO": "650", "CRS_code": "ROS" }, "geometry": { "type": "Point", "coordinates": [ -3.4273060896, 56.045517007800001 ] } },
{ "type": "Feature", "properties": { "Name": "Rotherham Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rotherham Central Rail Station", "TIPLOC": "ROTHCEN", "CRS": "RMC", "StopAreaCode": "910GROTHCEN", "AdministrativeAreaRef": "110", "code": "9100ROTHCEN", "NPTG": "N0077772", "ATCO": "370", "CRS_code": "RMC" }, "geometry": { "type": "Point", "coordinates": [ -1.36043453053, 53.432253191740003 ] } },
{ "type": "Feature", "properties": { "Name": "Rowley Regis Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rowley Regis Rail Station", "TIPLOC": "ROWLEYR", "CRS": "ROW", "StopAreaCode": "910GROWLEYR", "AdministrativeAreaRef": "110", "code": "9100ROWLEYR", "NPTG": "E0031920", "ATCO": "430", "CRS_code": "ROW" }, "geometry": { "type": "Point", "coordinates": [ -2.03087492352, 52.477325745830001 ] } },
{ "type": "Feature", "properties": { "Name": "Roy Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Roy Bridge Rail Station", "TIPLOC": "ROYBDGE", "CRS": "RYB", "StopAreaCode": "910GROYBDGE", "AdministrativeAreaRef": "110", "code": "9100ROYBDGE", "NPTG": "N0067976", "ATCO": "670", "CRS_code": "RYB" }, "geometry": { "type": "Point", "coordinates": [ -4.83724209448, 56.888364068100003 ] } },
{ "type": "Feature", "properties": { "Name": "Roydon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Roydon Rail Station", "TIPLOC": "ROYDON", "CRS": "RYN", "StopAreaCode": "910GROYDON", "AdministrativeAreaRef": "110", "code": "9100ROYDON", "NPTG": "E0046293", "ATCO": "150", "CRS_code": "RYN" }, "geometry": { "type": "Point", "coordinates": [ 0.036251791, 51.775486738730002 ] } },
{ "type": "Feature", "properties": { "Name": "Royston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Royston Rail Station", "TIPLOC": "ROYSTON", "CRS": "RYS", "StopAreaCode": "910GROYSTON", "AdministrativeAreaRef": "110", "code": "9100ROYSTON", "NPTG": "E0047044", "ATCO": "210", "CRS_code": "RYS" }, "geometry": { "type": "Point", "coordinates": [ -0.0269213961, 52.05308008139 ] } },
{ "type": "Feature", "properties": { "Name": "Ruskington Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ruskington Rail Station", "TIPLOC": "RSKNGTN", "CRS": "RKT", "StopAreaCode": "910GRSKNGTN", "AdministrativeAreaRef": "110", "code": "9100RSKNGTN", "NPTG": "E0056236", "ATCO": "270", "CRS_code": "RKT" }, "geometry": { "type": "Point", "coordinates": [ -0.38076210582, 53.0414629136 ] } },
{ "type": "Feature", "properties": { "Name": "Retford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Retford Rail Station", "TIPLOC": "RTFD", "CRS": "RET", "StopAreaCode": "910GRTFD", "AdministrativeAreaRef": "110", "code": "9100RTFD", "NPTG": "E0020454", "ATCO": "330", "CRS_code": "RET" }, "geometry": { "type": "Point", "coordinates": [ -0.94788397913, 53.315153947429998 ] } },
{ "type": "Feature", "properties": { "Name": "Retford Low Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Retford Low Level Rail Station", "TIPLOC": "RTFDLL", "CRS": "REL", "StopAreaCode": "910GRTFDLL", "AdministrativeAreaRef": "110", "code": "9100RTFDLL", "NPTG": "E0020454", "ATCO": "330", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.94477359026, 53.314065765389998 ] } },
{ "type": "Feature", "properties": { "Name": "Rotherhithe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rotherhithe Rail Station", "TIPLOC": "RTHERHI", "CRS": "ROE", "StopAreaCode": "910GRTHERHI", "AdministrativeAreaRef": "110", "code": "9100RTHERHI", "NPTG": "E0034802", "ATCO": "490", "CRS_code": "ROE" }, "geometry": { "type": "Point", "coordinates": [ -0.05204849616, 51.500816509320003 ] } },
{ "type": "Feature", "properties": { "Name": "Rotherhithe Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Rotherhithe Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100RTHERI", "NPTG": "E0034802", "ATCO": "490", "CRS_code": "ROE" }, "geometry": { "type": "Point", "coordinates": [ -0.05204849616, 51.500816509320003 ] } },
{ "type": "Feature", "properties": { "Name": "Rutherglen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rutherglen Rail Station", "TIPLOC": "RTHGLEN", "CRS": "RUT", "StopAreaCode": "910GRTHGLEN", "AdministrativeAreaRef": "110", "code": "9100RTHGLEN", "NPTG": "ES003941", "ATCO": "615", "CRS_code": "RUT" }, "geometry": { "type": "Point", "coordinates": [ -4.21210411512, 55.830592464159999 ] } },
{ "type": "Feature", "properties": { "Name": "Ravensthorpe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ravensthorpe Rail Station", "TIPLOC": "RTHP", "CRS": "RVN", "StopAreaCode": "910GRTHP", "AdministrativeAreaRef": "110", "code": "9100RTHP", "NPTG": "E0033442", "ATCO": "450", "CRS_code": "RVN" }, "geometry": { "type": "Point", "coordinates": [ -1.6555788333, 53.67552495783 ] } },
{ "type": "Feature", "properties": { "Name": "Ruabon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ruabon Rail Station", "TIPLOC": "RUABON", "CRS": "RUA", "StopAreaCode": "910GRUABON", "AdministrativeAreaRef": "110", "code": "9100RUABON", "NPTG": "E0054809", "ATCO": "514", "CRS_code": "RUA" }, "geometry": { "type": "Point", "coordinates": [ -3.04313857607, 52.98713481838 ] } },
{ "type": "Feature", "properties": { "Name": "Rufford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rufford Rail Station", "TIPLOC": "RUFDORD", "CRS": "RUF", "StopAreaCode": "910GRUFDORD", "AdministrativeAreaRef": "110", "code": "9100RUFDORD", "NPTG": "E0047556", "ATCO": "250", "CRS_code": "RUF" }, "geometry": { "type": "Point", "coordinates": [ -2.80784121349, 53.634463102719998 ] } },
{ "type": "Feature", "properties": { "Name": "Rugby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rugby Rail Station", "TIPLOC": "RUGBY", "CRS": "RUG", "StopAreaCode": "910GRUGBY", "AdministrativeAreaRef": "110", "code": "9100RUGBY", "NPTG": "E0056779", "ATCO": "420", "CRS_code": "RUG" }, "geometry": { "type": "Point", "coordinates": [ -1.25048437165, 52.379094463180003 ] } },
{ "type": "Feature", "properties": { "Name": "Rugeley Trent Valley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rugeley Trent Valley Rail Station", "TIPLOC": "RUGL", "CRS": "RGL", "StopAreaCode": "910GRUGL", "AdministrativeAreaRef": "110", "code": "9100RUGL", "NPTG": "E0051103", "ATCO": "380", "CRS_code": "RGL" }, "geometry": { "type": "Point", "coordinates": [ -1.92985136833, 52.769655544590002 ] } },
{ "type": "Feature", "properties": { "Name": "Rugeley Town Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rugeley Town Rail Station", "TIPLOC": "RUGLTWN", "CRS": "RGT", "StopAreaCode": "910GRUGLTWN", "AdministrativeAreaRef": "110", "code": "9100RUGLTWN", "NPTG": "E0051103", "ATCO": "380", "CRS_code": "RGT" }, "geometry": { "type": "Point", "coordinates": [ -1.93683954868, 52.754377257320002 ] } },
{ "type": "Feature", "properties": { "Name": "Runcorn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Runcorn Rail Station", "TIPLOC": "RUNCORN", "CRS": "RUN", "StopAreaCode": "910GRUNCORN", "AdministrativeAreaRef": "110", "code": "9100RUNCORN", "NPTG": "E0037841", "ATCO": "068", "CRS_code": "RUN" }, "geometry": { "type": "Point", "coordinates": [ -2.73925114117, 53.338694727479997 ] } },
{ "type": "Feature", "properties": { "Name": "Runcorn East Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Runcorn East Rail Station", "TIPLOC": "RUNCRNE", "CRS": "RUE", "StopAreaCode": "910GRUNCRNE", "AdministrativeAreaRef": "110", "code": "9100RUNCRNE", "NPTG": "E0037835", "ATCO": "068", "CRS_code": "RUE" }, "geometry": { "type": "Point", "coordinates": [ -2.66569743193, 53.32756824498 ] } },
{ "type": "Feature", "properties": { "Name": "Ruswarp Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ruswarp Rail Station", "TIPLOC": "RUSWARP", "CRS": "RUS", "StopAreaCode": "910GRUSWARP", "AdministrativeAreaRef": "110", "code": "9100RUSWARP", "NPTG": "E0019141", "ATCO": "320", "CRS_code": "RUS" }, "geometry": { "type": "Point", "coordinates": [ -0.62777165095, 54.470190734779997 ] } },
{ "type": "Feature", "properties": { "Name": "Rowlands Castle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rowlands Castle Rail Station", "TIPLOC": "RWLNDSC", "CRS": "RLN", "StopAreaCode": "910GRWLNDSC", "AdministrativeAreaRef": "110", "code": "9100RWLNDSC", "NPTG": "E0046776", "ATCO": "190", "CRS_code": "RLN" }, "geometry": { "type": "Point", "coordinates": [ -0.95747066297, 50.892172308539998 ] } },
{ "type": "Feature", "properties": { "Name": "Ryde Esplanade Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ryde Esplanade Rail Station", "TIPLOC": "RYDE", "CRS": "RYD", "StopAreaCode": "910GRYDE", "AdministrativeAreaRef": "110", "code": "9100RYDE", "NPTG": "E0038957", "ATCO": "230", "CRS_code": "RYD" }, "geometry": { "type": "Point", "coordinates": [ -1.1596160794, 50.732868392930001 ] } },
{ "type": "Feature", "properties": { "Name": "Ryde Pier Head Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ryde Pier Head Rail Station", "TIPLOC": "RYDP", "CRS": "RYP", "StopAreaCode": "910GRYDP", "AdministrativeAreaRef": "110", "code": "9100RYDP", "NPTG": "E0038957", "ATCO": "230", "CRS_code": "RYP" }, "geometry": { "type": "Point", "coordinates": [ -1.16012662289, 50.739185041810003 ] } },
{ "type": "Feature", "properties": { "Name": "Ryder Brow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ryder Brow Rail Station", "TIPLOC": "RYDRBRW", "CRS": "RRB", "StopAreaCode": "910GRYDRBRW", "AdministrativeAreaRef": "110", "code": "9100RYDRBRW", "NPTG": "E0029286", "ATCO": "180", "CRS_code": "RRB" }, "geometry": { "type": "Point", "coordinates": [ -2.17308800532, 53.456579041109997 ] } },
{ "type": "Feature", "properties": { "Name": "Ryde St Johns Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Ryde St Johns Road Rail Station", "TIPLOC": "RYDS", "CRS": "RYR", "StopAreaCode": "910GRYDS", "AdministrativeAreaRef": "110", "code": "9100RYDS", "NPTG": "E0038957", "ATCO": "230", "CRS_code": "RYR" }, "geometry": { "type": "Point", "coordinates": [ -1.15656632404, 50.724366122249997 ] } },
{ "type": "Feature", "properties": { "Name": "Rye Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rye Rail Station", "TIPLOC": "RYEE", "CRS": "RYE", "StopAreaCode": "910GRYEE", "AdministrativeAreaRef": "110", "code": "9100RYEE", "NPTG": "E0046088", "ATCO": "140", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.73069519512, 50.952370165540003 ] } },
{ "type": "Feature", "properties": { "Name": "Rye House Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Rye House Rail Station", "TIPLOC": "RYEHOUS", "CRS": "RYH", "StopAreaCode": "910GRYEHOUS", "AdministrativeAreaRef": "110", "code": "9100RYEHOUS", "NPTG": "E0013717", "ATCO": "210", "CRS_code": "RYH" }, "geometry": { "type": "Point", "coordinates": [ 0.00562825292, 51.769412911590003 ] } },
{ "type": "Feature", "properties": { "Name": "Sandal & Agbrigg Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandal & Agbrigg Rail Station", "TIPLOC": "SABR", "CRS": "SNA", "StopAreaCode": "910GSABR", "AdministrativeAreaRef": "110", "code": "9100SABR", "NPTG": "E0033489", "ATCO": "450", "CRS_code": "SNA" }, "geometry": { "type": "Point", "coordinates": [ -1.48141937718, 53.663078322620002 ] } },
{ "type": "Feature", "properties": { "Name": "South Acton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Acton Rail Station", "TIPLOC": "SACTON", "CRS": "SAT", "StopAreaCode": "910GSACTON", "AdministrativeAreaRef": "110", "code": "9100SACTON", "NPTG": "E0034559", "ATCO": "490", "CRS_code": "SAT" }, "geometry": { "type": "Point", "coordinates": [ -0.27015719083, 51.499695227099998 ] } },
{ "type": "Feature", "properties": { "Name": "St Andrews Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "St Andrews Road Rail Station", "TIPLOC": "SADWRD", "CRS": "SAR", "StopAreaCode": "910GSADWRD", "AdministrativeAreaRef": "110", "code": "9100SADWRD", "NPTG": "E0035565", "ATCO": "010", "CRS_code": "SAR" }, "geometry": { "type": "Point", "coordinates": [ -2.69631299553, 51.512771350759998 ] } },
{ "type": "Feature", "properties": { "Name": "Saltaire Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Saltaire Rail Station", "TIPLOC": "SAIR", "CRS": "SAE", "StopAreaCode": "910GSAIR", "AdministrativeAreaRef": "110", "code": "9100SAIR", "NPTG": "E0033487", "ATCO": "450", "CRS_code": "SAE" }, "geometry": { "type": "Point", "coordinates": [ -1.79048041033, 53.838493075780001 ] } },
{ "type": "Feature", "properties": { "Name": "Salfords (Surrey) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Salfords (Surrey) Rail Station", "TIPLOC": "SALFDS", "CRS": "SAF", "StopAreaCode": "910GSALFDS", "AdministrativeAreaRef": "110", "code": "9100SALFDS", "NPTG": "E0025565", "ATCO": "400", "CRS_code": "SAF" }, "geometry": { "type": "Point", "coordinates": [ -0.16248910108, 51.201747997470001 ] } },
{ "type": "Feature", "properties": { "Name": "Salhouse Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Salhouse Rail Station", "TIPLOC": "SALHOUS", "CRS": "SAH", "StopAreaCode": "910GSALHOUS", "AdministrativeAreaRef": "110", "code": "9100SALHOUS", "NPTG": "E0048486", "ATCO": "290", "CRS_code": "SAH" }, "geometry": { "type": "Point", "coordinates": [ 1.39141561621, 52.675575029180003 ] } },
{ "type": "Feature", "properties": { "Name": "Salwick Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Salwick Rail Station", "TIPLOC": "SALWICK", "CRS": "SLW", "StopAreaCode": "910GSALWICK", "AdministrativeAreaRef": "110", "code": "9100SALWICK", "NPTG": "E0015859", "ATCO": "250", "CRS_code": "SLW" }, "geometry": { "type": "Point", "coordinates": [ -2.81703846886, 53.781540173350002 ] } },
{ "type": "Feature", "properties": { "Name": "Sampford Courtenay Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sampford Courtenay Rail Station", "TIPLOC": "SAMPCRT", "CRS": "SMC", "StopAreaCode": "910GSAMPCRT", "AdministrativeAreaRef": "110", "code": "9100SAMPCRT", "NPTG": "N0074305", "ATCO": "110", "CRS_code": "SMC" }, "geometry": { "type": "Point", "coordinates": [ -3.94889104657, 50.770100343529997 ] } },
{ "type": "Feature", "properties": { "Name": "Sandhills Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandhills Rail Station", "TIPLOC": "SANDH", "CRS": "SDL", "StopAreaCode": "910GSANDH", "AdministrativeAreaRef": "110", "code": "9100SANDH", "NPTG": "E0057850", "ATCO": "280", "CRS_code": "SDL" }, "geometry": { "type": "Point", "coordinates": [ -2.99149025289, 53.429936690929999 ] } },
{ "type": "Feature", "properties": { "Name": "Sankey for Penketh Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sankey for Penketh Rail Station", "TIPLOC": "SANKEY", "CRS": "SNK", "StopAreaCode": "910GSANKEY", "AdministrativeAreaRef": "110", "code": "9100SANKEY", "NPTG": "E0043048", "ATCO": "069", "CRS_code": "SNK" }, "geometry": { "type": "Point", "coordinates": [ -2.65046958471, 53.392461393490002 ] } },
{ "type": "Feature", "properties": { "Name": "Sanquhar Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sanquhar Rail Station", "TIPLOC": "SANQHAR", "CRS": "SQH", "StopAreaCode": "910GSANQHAR", "AdministrativeAreaRef": "110", "code": "9100SANQHAR", "NPTG": "ES003253", "ATCO": "680", "CRS_code": "SQH" }, "geometry": { "type": "Point", "coordinates": [ -3.92451931692, 55.370167641729999 ] } },
{ "type": "Feature", "properties": { "Name": "Sarn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sarn Rail Station", "TIPLOC": "SARN", "CRS": "SRR", "StopAreaCode": "910GSARN", "AdministrativeAreaRef": "110", "code": "9100SARN", "NPTG": "E0035497", "ATCO": "551", "CRS_code": "SRR" }, "geometry": { "type": "Point", "coordinates": [ -3.58991174683, 51.538716291169997 ] } },
{ "type": "Feature", "properties": { "Name": "Saltash Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Saltash Rail Station", "TIPLOC": "SASH", "CRS": "STS", "StopAreaCode": "910GSASH", "AdministrativeAreaRef": "110", "code": "9100SASH", "NPTG": "E0044470", "ATCO": "080", "CRS_code": "STS" }, "geometry": { "type": "Point", "coordinates": [ -4.20911259141, 50.407356658349997 ] } },
{ "type": "Feature", "properties": { "Name": "Saxilby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Saxilby Rail Station", "TIPLOC": "SAXILBY", "CRS": "SXY", "StopAreaCode": "910GSAXILBY", "AdministrativeAreaRef": "110", "code": "9100SAXILBY", "NPTG": "E0056260", "ATCO": "270", "CRS_code": "SXY" }, "geometry": { "type": "Point", "coordinates": [ -0.66403949235, 53.267204475950003 ] } },
{ "type": "Feature", "properties": { "Name": "Sandbach Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandbach Rail Station", "TIPLOC": "SBCH", "CRS": "SDB", "StopAreaCode": "910GSBCH", "AdministrativeAreaRef": "110", "code": "9100SBCH", "NPTG": "E0044274", "ATCO": "060", "CRS_code": "SDB" }, "geometry": { "type": "Point", "coordinates": [ -2.39350545056, 53.150168317270001 ] } },
{ "type": "Feature", "properties": { "Name": "Sawbridgeworth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sawbridgeworth Rail Station", "TIPLOC": "SBDGWTH", "CRS": "SAW", "StopAreaCode": "910GSBDGWTH", "AdministrativeAreaRef": "110", "code": "9100SBDGWTH", "NPTG": "E0046998", "ATCO": "210", "CRS_code": "SAW" }, "geometry": { "type": "Point", "coordinates": [ 0.16041110454, 51.814347852380003 ] } },
{ "type": "Feature", "properties": { "Name": "Southbourne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Southbourne Rail Station", "TIPLOC": "SBOURNE", "CRS": "SOB", "StopAreaCode": "910GSBOURNE", "AdministrativeAreaRef": "110", "code": "9100SBOURNE", "NPTG": "E0052133", "ATCO": "440", "CRS_code": "SOB" }, "geometry": { "type": "Point", "coordinates": [ -0.9081066981, 50.848277054950003 ] } },
{ "type": "Feature", "properties": { "Name": "South Bermondsey Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Bermondsey Rail Station", "TIPLOC": "SBRMNDS", "CRS": "SBM", "StopAreaCode": "910GSBRMNDS", "AdministrativeAreaRef": "110", "code": "9100SBRMNDS", "NPTG": "E0034789", "ATCO": "490", "CRS_code": "SBM" }, "geometry": { "type": "Point", "coordinates": [ -0.05467765562, 51.488135576749997 ] } },
{ "type": "Feature", "properties": { "Name": "Saltburn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Saltburn Rail Station", "TIPLOC": "SBRN", "CRS": "SLB", "StopAreaCode": "910GSBRN", "AdministrativeAreaRef": "110", "code": "9100SBRN", "NPTG": "E0041562", "ATCO": "078", "CRS_code": "SLB" }, "geometry": { "type": "Point", "coordinates": [ -0.97413289196, 54.583451323479999 ] } },
{ "type": "Feature", "properties": { "Name": "Stallingborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stallingborough Rail Station", "TIPLOC": "SBROUGH", "CRS": "SLL", "StopAreaCode": "910GSBROUGH", "AdministrativeAreaRef": "110", "code": "9100SBROUGH", "NPTG": "E0053495", "ATCO": "228", "CRS_code": "SLL" }, "geometry": { "type": "Point", "coordinates": [ -0.18366671907, 53.58709516863 ] } },
{ "type": "Feature", "properties": { "Name": "Southbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Southbury Rail Station", "TIPLOC": "SBURY", "CRS": "SBU", "StopAreaCode": "910GSBURY", "AdministrativeAreaRef": "110", "code": "9100SBURY", "NPTG": "N0060495", "ATCO": "490", "CRS_code": "SBU" }, "geometry": { "type": "Point", "coordinates": [ -0.0524368308, 51.648705040700001 ] } },
{ "type": "Feature", "properties": { "Name": "Stalybridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stalybridge Rail Station", "TIPLOC": "SBYD", "CRS": "SYB", "StopAreaCode": "910GSBYD", "AdministrativeAreaRef": "110", "code": "9100SBYD", "NPTG": "E0029366", "ATCO": "180", "CRS_code": "SYB" }, "geometry": { "type": "Point", "coordinates": [ -2.06274152699, 53.484579342030003 ] } },
{ "type": "Feature", "properties": { "Name": "Scarborough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Scarborough Rail Station", "TIPLOC": "SCARBRO", "CRS": "SCA", "StopAreaCode": "910GSCARBRO", "AdministrativeAreaRef": "110", "code": "9100SCARBRO", "NPTG": "E0057580", "ATCO": "320", "CRS_code": "SCA" }, "geometry": { "type": "Point", "coordinates": [ -0.40570298296, 54.27979186041 ] } },
{ "type": "Feature", "properties": { "Name": "Scunthorpe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Scunthorpe Rail Station", "TIPLOC": "SCNTHRP", "CRS": "SCU", "StopAreaCode": "910GSCNTHRP", "AdministrativeAreaRef": "110", "code": "9100SCNTHRP", "NPTG": "E0055067", "ATCO": "227", "CRS_code": "SCU" }, "geometry": { "type": "Point", "coordinates": [ -0.65098036175, 53.586175344769998 ] } },
{ "type": "Feature", "properties": { "Name": "South Croydon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Croydon Rail Station", "TIPLOC": "SCROYDN", "CRS": "SCY", "StopAreaCode": "910GSCROYDN", "AdministrativeAreaRef": "110", "code": "9100SCROYDN", "NPTG": "E0034235", "ATCO": "490", "CRS_code": "SCY" }, "geometry": { "type": "Point", "coordinates": [ -0.09345650791, 51.362964886950003 ] } },
{ "type": "Feature", "properties": { "Name": "Scotscalder Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Scotscalder Rail Station", "TIPLOC": "SCSCLDR", "CRS": "SCT", "StopAreaCode": "910GSCSCLDR", "AdministrativeAreaRef": "110", "code": "9100SCSCLDR", "NPTG": "ES001701", "ATCO": "670", "CRS_code": "SCT" }, "geometry": { "type": "Point", "coordinates": [ -3.55204979895, 58.482991000639998 ] } },
{ "type": "Feature", "properties": { "Name": "Scotstounhill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Scotstounhill Rail Station", "TIPLOC": "SCTSTNH", "CRS": "SCH", "StopAreaCode": "910GSCTSTNH", "AdministrativeAreaRef": "110", "code": "9100SCTSTNH", "NPTG": "ES003272", "ATCO": "609", "CRS_code": "SCH" }, "geometry": { "type": "Point", "coordinates": [ -4.35288778883, 55.885140720540001 ] } },
{ "type": "Feature", "properties": { "Name": "Silverdale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Silverdale Rail Station", "TIPLOC": "SDAL", "CRS": "SVR", "StopAreaCode": "910GSDAL", "AdministrativeAreaRef": "110", "code": "9100SDAL", "NPTG": "E0047449", "ATCO": "250", "CRS_code": "SVR" }, "geometry": { "type": "Point", "coordinates": [ -2.80384241832, 54.169909216980002 ] } },
{ "type": "Feature", "properties": { "Name": "Sudbury Hill Harrow Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sudbury Hill Harrow Rail Station", "TIPLOC": "SDBRYHH", "CRS": "SDH", "StopAreaCode": "910GSDBRYHH", "AdministrativeAreaRef": "110", "code": "9100SDBRYHH", "NPTG": "N0061161", "ATCO": "490", "CRS_code": "SDH" }, "geometry": { "type": "Point", "coordinates": [ -0.33580281227, 51.558465375419999 ] } },
{ "type": "Feature", "properties": { "Name": "Sudbury & Harrow Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sudbury & Harrow Road Rail Station", "TIPLOC": "SDBRYHR", "CRS": "SUD", "StopAreaCode": "910GSDBRYHR", "AdministrativeAreaRef": "110", "code": "9100SDBRYHR", "NPTG": "E0034061", "ATCO": "490", "CRS_code": "SUD" }, "geometry": { "type": "Point", "coordinates": [ -0.31546813559, 51.554398470039999 ] } },
{ "type": "Feature", "properties": { "Name": "Sandling Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandling Rail Station", "TIPLOC": "SDLG", "CRS": "SDG", "StopAreaCode": "910GSDLG", "AdministrativeAreaRef": "110", "code": "9100SDLG", "NPTG": "E0015230", "ATCO": "240", "CRS_code": "SDG" }, "geometry": { "type": "Point", "coordinates": [ 1.06604289146, 51.090370751979997 ] } },
{ "type": "Feature", "properties": { "Name": "Swindon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Swindon Rail Station", "TIPLOC": "SDON", "CRS": "SWI", "StopAreaCode": "910GSDON", "AdministrativeAreaRef": "110", "code": "9100SDON", "NPTG": "E0042483", "ATCO": "468", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.78551115789, 51.565472333389998 ] } },
{ "type": "Feature", "properties": { "Name": "Sandplace Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandplace Rail Station", "TIPLOC": "SDPLACE", "CRS": "SDP", "StopAreaCode": "910GSDPLACE", "AdministrativeAreaRef": "110", "code": "9100SDPLACE", "NPTG": "E0002657", "ATCO": "080", "CRS_code": "SDP" }, "geometry": { "type": "Point", "coordinates": [ -4.46447994914, 50.386753177480003 ] } },
{ "type": "Feature", "properties": { "Name": "Saundersfoot Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Saundersfoot Rail Station", "TIPLOC": "SDRSFOT", "CRS": "SDF", "StopAreaCode": "910GSDRSFOT", "AdministrativeAreaRef": "110", "code": "9100SDRSFOT", "NPTG": "E0055090", "ATCO": "521", "CRS_code": "SDF" }, "geometry": { "type": "Point", "coordinates": [ -4.71658250405, 51.722090715180002 ] } },
{ "type": "Feature", "properties": { "Name": "Sanderstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sanderstead Rail Station", "TIPLOC": "SDSD", "CRS": "SNR", "StopAreaCode": "910GSDSD", "AdministrativeAreaRef": "110", "code": "9100SDSD", "NPTG": "E0034231", "ATCO": "490", "CRS_code": "SNR" }, "geometry": { "type": "Point", "coordinates": [ -0.09367822582, 51.348283290120001 ] } },
{ "type": "Feature", "properties": { "Name": "Seaburn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seaburn Rail Station", "TIPLOC": "SEABURN", "CRS": "SEB", "StopAreaCode": "910GSEABURN", "AdministrativeAreaRef": "110", "code": "9100SEABURN", "NPTG": "E0031152", "ATCO": "410", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.38669331084, 54.92953544873 ] } },
{ "type": "Feature", "properties": { "Name": "Seaford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seaford Rail Station", "TIPLOC": "SEAFORD", "CRS": "SEF", "StopAreaCode": "910GSEAFORD", "AdministrativeAreaRef": "110", "code": "9100SEAFORD", "NPTG": "E0010562", "ATCO": "140", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.10013375343, 50.772843709690001 ] } },
{ "type": "Feature", "properties": { "Name": "Seaham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seaham Rail Station", "TIPLOC": "SEAHAM", "CRS": "SEA", "StopAreaCode": "910GSEAHAM", "AdministrativeAreaRef": "110", "code": "9100SEAHAM", "NPTG": "E0045957", "ATCO": "130", "CRS_code": "SEA" }, "geometry": { "type": "Point", "coordinates": [ -1.34633708067, 54.839055604450003 ] } },
{ "type": "Feature", "properties": { "Name": "Seamer Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seamer Rail Station", "TIPLOC": "SEAMER", "CRS": "SEM", "StopAreaCode": "910GSEAMER", "AdministrativeAreaRef": "110", "code": "9100SEAMER", "NPTG": "E0049509", "ATCO": "320", "CRS_code": "SEM" }, "geometry": { "type": "Point", "coordinates": [ -0.41702976384, 54.240751889560002 ] } },
{ "type": "Feature", "properties": { "Name": "Seascale Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seascale Rail Station", "TIPLOC": "SEASCAL", "CRS": "SSC", "StopAreaCode": "910GSEASCAL", "AdministrativeAreaRef": "110", "code": "9100SEASCAL", "NPTG": "E0055508", "ATCO": "090", "CRS_code": "SSC" }, "geometry": { "type": "Point", "coordinates": [ -3.4845108079, 54.395875081500002 ] } },
{ "type": "Feature", "properties": { "Name": "Seer Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seer Green Rail Station", "TIPLOC": "SEERGRN", "CRS": "SRG", "StopAreaCode": "910GSEERGRN", "AdministrativeAreaRef": "110", "code": "9100SEERGRN", "NPTG": "E0044068", "ATCO": "040", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.60781846278, 51.609844761669997 ] } },
{ "type": "Feature", "properties": { "Name": "Sellafield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sellafield Rail Station", "TIPLOC": "SELAFLD", "CRS": "SEL", "StopAreaCode": "910GSELAFLD", "AdministrativeAreaRef": "110", "code": "9100SELAFLD", "NPTG": "E0005699", "ATCO": "090", "CRS_code": "SEL" }, "geometry": { "type": "Point", "coordinates": [ -3.51045647943, 54.416585261100003 ] } },
{ "type": "Feature", "properties": { "Name": "Selby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Selby Rail Station", "TIPLOC": "SELBY", "CRS": "SBY", "StopAreaCode": "910GSELBY", "AdministrativeAreaRef": "110", "code": "9100SELBY", "NPTG": "E0057582", "ATCO": "320", "CRS_code": "SBY" }, "geometry": { "type": "Point", "coordinates": [ -1.06378590029, 53.782784963810002 ] } },
{ "type": "Feature", "properties": { "Name": "Selhurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Selhurst Rail Station", "TIPLOC": "SELHRST", "CRS": "SRS", "StopAreaCode": "910GSELHRST", "AdministrativeAreaRef": "110", "code": "9100SELHRST", "NPTG": "E0034232", "ATCO": "490", "CRS_code": "SRS" }, "geometry": { "type": "Point", "coordinates": [ -0.08829989751, 51.391927441599996 ] } },
{ "type": "Feature", "properties": { "Name": "Selling Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Selling Rail Station", "TIPLOC": "SELLING", "CRS": "SEG", "StopAreaCode": "910GSELLING", "AdministrativeAreaRef": "110", "code": "9100SELLING", "NPTG": "E0047318", "ATCO": "240", "CRS_code": "SEG" }, "geometry": { "type": "Point", "coordinates": [ 0.94087040453, 51.277355067899997 ] } },
{ "type": "Feature", "properties": { "Name": "South Elmsall Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Elmsall Rail Station", "TIPLOC": "SELMSAL", "CRS": "SES", "StopAreaCode": "910GSELMSAL", "AdministrativeAreaRef": "110", "code": "9100SELMSAL", "NPTG": "E0052887", "ATCO": "450", "CRS_code": "SES" }, "geometry": { "type": "Point", "coordinates": [ -1.28485824285, 53.594608145190001 ] } },
{ "type": "Feature", "properties": { "Name": "Selly Oak Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Selly Oak Rail Station", "TIPLOC": "SELYOAK", "CRS": "SLY", "StopAreaCode": "910GSELYOAK", "AdministrativeAreaRef": "110", "code": "9100SELYOAK", "NPTG": "E0031943", "ATCO": "430", "CRS_code": "SLY" }, "geometry": { "type": "Point", "coordinates": [ -1.93581421427, 52.441981915329997 ] } },
{ "type": "Feature", "properties": { "Name": "Sea Mills Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sea Mills Rail Station", "TIPLOC": "SEMILLS", "CRS": "SML", "StopAreaCode": "910GSEMILLS", "AdministrativeAreaRef": "110", "code": "9100SEMILLS", "NPTG": "E0035641", "ATCO": "010", "CRS_code": "SML" }, "geometry": { "type": "Point", "coordinates": [ -2.64994930846, 51.479993374849997 ] } },
{ "type": "Feature", "properties": { "Name": "Southease - Piddinghoe Road", "Status": "active", "Type": "RLY", "Station_Name": "Southease - Piddinghoe Road", "TIPLOC": "SESABUS", "CRS": "ZBU", "StopAreaCode": "910GSESABUS", "AdministrativeAreaRef": "110", "code": "9100SESABUS", "NPTG": "E0046055", "ATCO": "140", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.01781804182, 50.829626150899998 ] } },
{ "type": "Feature", "properties": { "Name": "Southease Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Southease Rail Station", "TIPLOC": "SESARDM", "CRS": "SEE", "StopAreaCode": "910GSESARDM", "AdministrativeAreaRef": "110", "code": "9100SESARDM", "NPTG": "E0046055", "ATCO": "140", "CRS_code": "SEE" }, "geometry": { "type": "Point", "coordinates": [ 0.03064133065, 50.831265329259999 ] } },
{ "type": "Feature", "properties": { "Name": "Seaton Carew Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seaton Carew Rail Station", "TIPLOC": "SETNCRW", "CRS": "SEC", "StopAreaCode": "910GSETNCRW", "AdministrativeAreaRef": "110", "code": "9100SETNCRW", "NPTG": "E0037883", "ATCO": "075", "CRS_code": "SEC" }, "geometry": { "type": "Point", "coordinates": [ -1.20042921305, 54.65831156198 ] } },
{ "type": "Feature", "properties": { "Name": "Settle Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Settle Rail Station", "TIPLOC": "SETTLE", "CRS": "SET", "StopAreaCode": "910GSETTLE", "AdministrativeAreaRef": "110", "code": "9100SETTLE", "NPTG": "E0048926", "ATCO": "320", "CRS_code": "SET" }, "geometry": { "type": "Point", "coordinates": [ -2.28071401529, 54.066914151699997 ] } },
{ "type": "Feature", "properties": { "Name": "Seven Sisters Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seven Sisters Rail Station", "TIPLOC": "SEVNSIS", "CRS": "SVS", "StopAreaCode": "910GSEVNSIS", "AdministrativeAreaRef": "110", "code": "9100SEVNSIS", "NPTG": "N0065198", "ATCO": "490", "CRS_code": "SVS" }, "geometry": { "type": "Point", "coordinates": [ -0.07527001795, 51.582267707429999 ] } },
{ "type": "Feature", "properties": { "Name": "Severn Tunnel Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Severn Tunnel Junction Rail Station", "TIPLOC": "SEVTNLJ", "CRS": "STJ", "StopAreaCode": "910GSEVTNLJ", "AdministrativeAreaRef": "110", "code": "9100SEVTNLJ", "NPTG": "E0054378", "ATCO": "533", "CRS_code": "STJ" }, "geometry": { "type": "Point", "coordinates": [ -2.77789143612, 51.584676711759997 ] } },
{ "type": "Feature", "properties": { "Name": "Seaforth & Litherland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Seaforth & Litherland Rail Station", "TIPLOC": "SFRTHAL", "CRS": "SFL", "StopAreaCode": "910GSFRTHAL", "AdministrativeAreaRef": "110", "code": "9100SFRTHAL", "NPTG": "E0029876", "ATCO": "280", "CRS_code": "SFL" }, "geometry": { "type": "Point", "coordinates": [ -3.00562324392, 53.466268433650001 ] } },
{ "type": "Feature", "properties": { "Name": "South Greenford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Greenford Rail Station", "TIPLOC": "SGFORD", "CRS": "SGN", "StopAreaCode": "910GSGFORD", "AdministrativeAreaRef": "110", "code": "9100SGFORD", "NPTG": "E0034263", "ATCO": "490", "CRS_code": "SGN" }, "geometry": { "type": "Point", "coordinates": [ -0.33670432658, 51.533749478520001 ] } },
{ "type": "Feature", "properties": { "Name": "Sugar Loaf Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sugar Loaf Rail Station", "TIPLOC": "SGRLOAF", "CRS": "SUG", "StopAreaCode": "910GSGRLOAF", "AdministrativeAreaRef": "110", "code": "9100SGRLOAF", "NPTG": "N0071383", "ATCO": "561", "CRS_code": "SUG" }, "geometry": { "type": "Point", "coordinates": [ -3.68694880931, 52.082269930949998 ] } },
{ "type": "Feature", "properties": { "Name": "Shadwell Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shadwell Rail Station", "TIPLOC": "SHADWEL", "CRS": "SDE", "StopAreaCode": "910GSHADWEL", "AdministrativeAreaRef": "110", "code": "9100SHADWEL", "NPTG": "E0034857", "ATCO": "490", "CRS_code": "SDE" }, "geometry": { "type": "Point", "coordinates": [ -0.05693429082, 51.51128403229 ] } },
{ "type": "Feature", "properties": { "Name": "Shalford (Surrey) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shalford (Surrey) Rail Station", "TIPLOC": "SHALFD", "CRS": "SFR", "StopAreaCode": "910GSHALFD", "AdministrativeAreaRef": "110", "code": "9100SHALFD", "NPTG": "E0051768", "ATCO": "400", "CRS_code": "SFR" }, "geometry": { "type": "Point", "coordinates": [ -0.56680370104, 51.214322973210002 ] } },
{ "type": "Feature", "properties": { "Name": "Shirehampton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shirehampton Rail Station", "TIPLOC": "SHAMPTN", "CRS": "SHH", "StopAreaCode": "910GSHAMPTN", "AdministrativeAreaRef": "110", "code": "9100SHAMPTN", "NPTG": "E0035642", "ATCO": "010", "CRS_code": "SHH" }, "geometry": { "type": "Point", "coordinates": [ -2.67927499077, 51.48434990845 ] } },
{ "type": "Feature", "properties": { "Name": "Shanklin Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shanklin Rail Station", "TIPLOC": "SHANKLN", "CRS": "SHN", "StopAreaCode": "910GSHANKLN", "AdministrativeAreaRef": "110", "code": "9100SHANKLN", "NPTG": "E0053419", "ATCO": "230", "CRS_code": "SHN" }, "geometry": { "type": "Point", "coordinates": [ -1.17983408672, 50.633910462400003 ] } },
{ "type": "Feature", "properties": { "Name": "Shawford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shawford Rail Station", "TIPLOC": "SHAWFD", "CRS": "SHW", "StopAreaCode": "910GSHAWFD", "AdministrativeAreaRef": "110", "code": "9100SHAWFD", "NPTG": "E0013653", "ATCO": "190", "CRS_code": "SHW" }, "geometry": { "type": "Point", "coordinates": [ -1.3277737718, 51.022124986489999 ] } },
{ "type": "Feature", "properties": { "Name": "Sherburn-in-Elmet Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sherburn-in-Elmet Rail Station", "TIPLOC": "SHBN", "CRS": "SIE", "StopAreaCode": "910GSHBN", "AdministrativeAreaRef": "110", "code": "9100SHBN", "NPTG": "E0049576", "ATCO": "320", "CRS_code": "SIE" }, "geometry": { "type": "Point", "coordinates": [ -1.23268439004, 53.79715210498 ] } },
{ "type": "Feature", "properties": { "Name": "Shoeburyness Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shoeburyness Rail Station", "TIPLOC": "SHBRYNS", "CRS": "SRY", "StopAreaCode": "910GSHBRYNS", "AdministrativeAreaRef": "110", "code": "9100SHBRYNS", "NPTG": "E0042047", "ATCO": "158", "CRS_code": "SRY" }, "geometry": { "type": "Point", "coordinates": [ 0.79534477028, 51.53097282177 ] } },
{ "type": "Feature", "properties": { "Name": "Shaw & Crompton Rail Station (closed)", "Status": "inactive", "Type": "RLY", "Station_Name": "Shaw & Crompton Rail Station (closed)", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "910GSHCRPTN", "AdministrativeAreaRef": "110", "code": "9100SHCRPTN", "NPTG": "E0029308", "ATCO": "180", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.08957966227, 53.576809738130002 ] } },
{ "type": "Feature", "properties": { "Name": "Shildon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shildon Rail Station", "TIPLOC": "SHDN", "CRS": "SHD", "StopAreaCode": "910GSHDN", "AdministrativeAreaRef": "110", "code": "9100SHDN", "NPTG": "E0045976", "ATCO": "130", "CRS_code": "SHD" }, "geometry": { "type": "Point", "coordinates": [ -1.63660537995, 54.626164612499998 ] } },
{ "type": "Feature", "properties": { "Name": "Sheffield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sheffield Rail Station", "TIPLOC": "SHEFFLD", "CRS": "SHF", "StopAreaCode": "910GSHEFFLD", "AdministrativeAreaRef": "110", "code": "9100SHEFFLD", "NPTG": "N0077767", "ATCO": "370", "CRS_code": "SHF" }, "geometry": { "type": "Point", "coordinates": [ -1.46211083296, 53.378219872899997 ] } },
{ "type": "Feature", "properties": { "Name": "Shelford (Cambs) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shelford (Cambs) Rail Station", "TIPLOC": "SHELFD", "CRS": "SED", "StopAreaCode": "910GSHELFD", "AdministrativeAreaRef": "110", "code": "9100SHELFD", "NPTG": "E0043834", "ATCO": "050", "CRS_code": "SED" }, "geometry": { "type": "Point", "coordinates": [ 0.13998100109, 52.148827809949999 ] } },
{ "type": "Feature", "properties": { "Name": "Shenfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shenfield Rail Station", "TIPLOC": "SHENFLD", "CRS": "SNF", "StopAreaCode": "910GSHENFLD", "AdministrativeAreaRef": "110", "code": "9100SHENFLD", "NPTG": "E0011132", "ATCO": "150", "CRS_code": "SNF" }, "geometry": { "type": "Point", "coordinates": [ 0.32985131889, 51.630877347240002 ] } },
{ "type": "Feature", "properties": { "Name": "Shepperton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shepperton Rail Station", "TIPLOC": "SHEPRTN", "CRS": "SHP", "StopAreaCode": "910GSHEPRTN", "AdministrativeAreaRef": "110", "code": "9100SHEPRTN", "NPTG": "E0025646", "ATCO": "400", "CRS_code": "SHP" }, "geometry": { "type": "Point", "coordinates": [ -0.44678582905, 51.396804777050001 ] } },
{ "type": "Feature", "properties": { "Name": "Sherborne Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sherborne Rail Station", "TIPLOC": "SHERBRN", "CRS": "SHE", "StopAreaCode": "910GSHERBRN", "AdministrativeAreaRef": "110", "code": "9100SHERBRN", "NPTG": "E0045872", "ATCO": "120", "CRS_code": "SHE" }, "geometry": { "type": "Point", "coordinates": [ -2.5130732852, 50.944021697860002 ] } },
{ "type": "Feature", "properties": { "Name": "Shifnal Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shifnal Rail Station", "TIPLOC": "SHIFNAL", "CRS": "SFN", "StopAreaCode": "910GSHIFNAL", "AdministrativeAreaRef": "110", "code": "9100SHIFNAL", "NPTG": "E0056556", "ATCO": "350", "CRS_code": "SFN" }, "geometry": { "type": "Point", "coordinates": [ -2.37183973353, 52.666071292920002 ] } },
{ "type": "Feature", "properties": { "Name": "Shieldmuir Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shieldmuir Rail Station", "TIPLOC": "SHILDMR", "CRS": "SDM", "StopAreaCode": "910GSHILDMR", "AdministrativeAreaRef": "110", "code": "9100SHILDMR", "NPTG": "ES003883", "ATCO": "616", "CRS_code": "SDM" }, "geometry": { "type": "Point", "coordinates": [ -3.95698985374, 55.777490816090001 ] } },
{ "type": "Feature", "properties": { "Name": "Shirley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shirley Rail Station", "TIPLOC": "SHIRLEY", "CRS": "SRL", "StopAreaCode": "910GSHIRLEY", "AdministrativeAreaRef": "110", "code": "9100SHIRLEY", "NPTG": "E0031954", "ATCO": "430", "CRS_code": "SRL" }, "geometry": { "type": "Point", "coordinates": [ -1.84517960348, 52.403420775470003 ] } },
{ "type": "Feature", "properties": { "Name": "St Helier (London) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "St Helier (London) Rail Station", "TIPLOC": "SHLIER", "CRS": "SIH", "StopAreaCode": "910GSHLIER", "AdministrativeAreaRef": "110", "code": "9100SHLIER", "NPTG": "N0061139", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.19877067013, 51.389900804770001 ] } },
{ "type": "Feature", "properties": { "Name": "South Hampstead Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Hampstead Rail Station", "TIPLOC": "SHMPSTD", "CRS": "SOH", "StopAreaCode": "910GSHMPSTD", "AdministrativeAreaRef": "110", "code": "9100SHMPSTD", "NPTG": "E0034184", "ATCO": "490", "CRS_code": "SOH" }, "geometry": { "type": "Point", "coordinates": [ -0.17887769152, 51.541432167810001 ] } },
{ "type": "Feature", "properties": { "Name": "Shenstone Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shenstone Rail Station", "TIPLOC": "SHNS", "CRS": "SEN", "StopAreaCode": "910GSHNS", "AdministrativeAreaRef": "110", "code": "9100SHNS", "NPTG": "E0051155", "ATCO": "380", "CRS_code": "SEN" }, "geometry": { "type": "Point", "coordinates": [ -1.84420159399, 52.639359489260002 ] } },
{ "type": "Feature", "properties": { "Name": "Sholing Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sholing Rail Station", "TIPLOC": "SHOLING", "CRS": "SHO", "StopAreaCode": "910GSHOLING", "AdministrativeAreaRef": "110", "code": "9100SHOLING", "NPTG": "E0042023", "ATCO": "198", "CRS_code": "SHO" }, "geometry": { "type": "Point", "coordinates": [ -1.36491493968, 50.89675361626 ] } },
{ "type": "Feature", "properties": { "Name": "Shotton High Level Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shotton High Level Rail Station", "TIPLOC": "SHOTTHL", "CRS": "SHT", "StopAreaCode": "910GSHOTTHL", "AdministrativeAreaRef": "110", "code": "9100SHOTTHL", "NPTG": "E0054255", "ATCO": "512", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -3.03769979607, 53.21353606361 ] } },
{ "type": "Feature", "properties": { "Name": "Shotton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shotton Rail Station", "TIPLOC": "SHOTTON", "CRS": "SHT", "StopAreaCode": "910GSHOTTON", "AdministrativeAreaRef": "110", "code": "9100SHOTTON", "NPTG": "E0054255", "ATCO": "512", "CRS_code": "SHT" }, "geometry": { "type": "Point", "coordinates": [ -3.03842447822, 53.212540931109999 ] } },
{ "type": "Feature", "properties": { "Name": "Shepherds Bush Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shepherds Bush Rail Station", "TIPLOC": "SHPDSB", "CRS": "SPB", "StopAreaCode": "910GSHPDSB", "AdministrativeAreaRef": "110", "code": "9100SHPDSB", "NPTG": "E0034390", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.21765403836, 51.505284710559998 ] } },
{ "type": "Feature", "properties": { "Name": "Stanhope Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stanhope Rail Station", "TIPLOC": "SHPE", "CRS": "SNP", "StopAreaCode": "910GSHPE", "AdministrativeAreaRef": "110", "code": "9100SHPE", "NPTG": "E0046032", "ATCO": "130", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -2.00326128502, 54.743310417540002 ] } },
{ "type": "Feature", "properties": { "Name": "Shiplake Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shiplake Rail Station", "TIPLOC": "SHPLAKE", "CRS": "SHI", "StopAreaCode": "910GSHPLAKE", "AdministrativeAreaRef": "110", "code": "9100SHPLAKE", "NPTG": "E0050388", "ATCO": "340", "CRS_code": "SHI" }, "geometry": { "type": "Point", "coordinates": [ -0.88260210924, 51.511462264930003 ] } },
{ "type": "Feature", "properties": { "Name": "Shepreth Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shepreth Rail Station", "TIPLOC": "SHPRTH", "CRS": "STH", "StopAreaCode": "910GSHPRTH", "AdministrativeAreaRef": "110", "code": "9100SHPRTH", "NPTG": "E0044120", "ATCO": "050", "CRS_code": "STH" }, "geometry": { "type": "Point", "coordinates": [ 0.03131926594, 52.114161763749998 ] } },
{ "type": "Feature", "properties": { "Name": "Shipley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shipley Rail Station", "TIPLOC": "SHPY", "CRS": "SHY", "StopAreaCode": "910GSHPY", "AdministrativeAreaRef": "110", "code": "9100SHPY", "NPTG": "E0033556", "ATCO": "450", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.77348970942, 53.833051514380003 ] } },
{ "type": "Feature", "properties": { "Name": "Shirebrook Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shirebrook Rail Station", "TIPLOC": "SHRBROK", "CRS": "SHB", "StopAreaCode": "910GSHRBROK", "AdministrativeAreaRef": "110", "code": "9100SHRBROK", "NPTG": "E0044989", "ATCO": "100", "CRS_code": "SHB" }, "geometry": { "type": "Point", "coordinates": [ -1.20244052935, 53.204242745990001 ] } },
{ "type": "Feature", "properties": { "Name": "Shoreditch High Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shoreditch High Street Rail Station", "TIPLOC": "SHRDHST", "CRS": "SDC", "StopAreaCode": "910GSHRDHST", "AdministrativeAreaRef": "110", "code": "9100SHRDHST", "NPTG": "E0034364", "ATCO": "490", "CRS_code": "SDC" }, "geometry": { "type": "Point", "coordinates": [ -0.07524610125, 51.523375248850002 ] } },
{ "type": "Feature", "properties": { "Name": "Sheringham Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sheringham Rail Station", "TIPLOC": "SHRGHAM", "CRS": "SHM", "StopAreaCode": "910GSHRGHAM", "AdministrativeAreaRef": "110", "code": "9100SHRGHAM", "NPTG": "E0048708", "ATCO": "290", "CRS_code": "SHM" }, "geometry": { "type": "Point", "coordinates": [ 1.21032031522, 52.941427212409998 ] } },
{ "type": "Feature", "properties": { "Name": "Shoreham-by-Sea (Sussex) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shoreham-by-Sea (Sussex) Rail Station", "TIPLOC": "SHRHMBS", "CRS": "SSE", "StopAreaCode": "910GSHRHMBS", "AdministrativeAreaRef": "110", "code": "9100SHRHMBS", "NPTG": "E0026317", "ATCO": "440", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.27172042417, 50.834427370290001 ] } },
{ "type": "Feature", "properties": { "Name": "Shireoaks Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shireoaks Rail Station", "TIPLOC": "SHRKSKS", "CRS": "SRO", "StopAreaCode": "910GSHRKSKS", "AdministrativeAreaRef": "110", "code": "9100SHRKSKS", "NPTG": "E0050068", "ATCO": "330", "CRS_code": "SRO" }, "geometry": { "type": "Point", "coordinates": [ -1.16799090157, 53.324774893929998 ] } },
{ "type": "Feature", "properties": { "Name": "Shoreham (Kent) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shoreham (Kent) Rail Station", "TIPLOC": "SHRMKT", "CRS": "SEH", "StopAreaCode": "910GSHRMKT", "AdministrativeAreaRef": "110", "code": "9100SHRMKT", "NPTG": "E0047256", "ATCO": "240", "CRS_code": "SEH" }, "geometry": { "type": "Point", "coordinates": [ 0.18888974054, 51.332218612529999 ] } },
{ "type": "Feature", "properties": { "Name": "Sheerness-on-Sea Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sheerness-on-Sea Rail Station", "TIPLOC": "SHRNSOS", "CRS": "SSS", "StopAreaCode": "910GSHRNSOS", "AdministrativeAreaRef": "110", "code": "9100SHRNSOS", "NPTG": "E0015366", "ATCO": "240", "CRS_code": "SSS" }, "geometry": { "type": "Point", "coordinates": [ 0.75853318132, 51.441061057779997 ] } },
{ "type": "Feature", "properties": { "Name": "Shortlands Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shortlands Rail Station", "TIPLOC": "SHRTLND", "CRS": "SRT", "StopAreaCode": "910GSHRTLND", "AdministrativeAreaRef": "110", "code": "9100SHRTLND", "NPTG": "E0034142", "ATCO": "490", "CRS_code": "SRT" }, "geometry": { "type": "Point", "coordinates": [ 0.00178410685, 51.405800742499999 ] } },
{ "type": "Feature", "properties": { "Name": "Shrewsbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shrewsbury Rail Station", "TIPLOC": "SHRWBY", "CRS": "SHR", "StopAreaCode": "910GSHRWBY", "AdministrativeAreaRef": "110", "code": "9100SHRWBY", "NPTG": "E0021804", "ATCO": "350", "CRS_code": "SHR" }, "geometry": { "type": "Point", "coordinates": [ -2.74976116738, 52.711928441689999 ] } },
{ "type": "Feature", "properties": { "Name": "Shettleston Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shettleston Rail Station", "TIPLOC": "SHTLSTN", "CRS": "SLS", "StopAreaCode": "910GSHTLSTN", "AdministrativeAreaRef": "110", "code": "9100SHTLSTN", "NPTG": "ES003301", "ATCO": "609", "CRS_code": "SLS" }, "geometry": { "type": "Point", "coordinates": [ -4.16004362664, 55.853536810530002 ] } },
{ "type": "Feature", "properties": { "Name": "Shotts Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shotts Rail Station", "TIPLOC": "SHTT", "CRS": "SHS", "StopAreaCode": "910GSHTT", "AdministrativeAreaRef": "110", "code": "9100SHTT", "NPTG": "ES003307", "ATCO": "616", "CRS_code": "SHS" }, "geometry": { "type": "Point", "coordinates": [ -3.79831915182, 55.818647473490003 ] } },
{ "type": "Feature", "properties": { "Name": "Stonehaven Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stonehaven Rail Station", "TIPLOC": "SHVN", "CRS": "STN", "StopAreaCode": "910GSHVN", "AdministrativeAreaRef": "110", "code": "9100SHVN", "NPTG": "ES003493", "ATCO": "630", "CRS_code": "STN" }, "geometry": { "type": "Point", "coordinates": [ -2.22529705069, 56.966823385280001 ] } },
{ "type": "Feature", "properties": { "Name": "Shawfair Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shawfair Rail Station", "TIPLOC": "SHWFAIR", "CRS": "SFI", "StopAreaCode": "910GSHWFAIR", "AdministrativeAreaRef": "110", "code": "9100SHWFAIR", "NPTG": "ES002825", "ATCO": "628", "CRS_code": "SFI" }, "geometry": { "type": "Point", "coordinates": [ -3.09022368414, 55.917896647569997 ] } },
{ "type": "Feature", "properties": { "Name": "Shawlands Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shawlands Rail Station", "TIPLOC": "SHWLNDS", "CRS": "SHL", "StopAreaCode": "910GSHWLNDS", "AdministrativeAreaRef": "110", "code": "9100SHWLNDS", "NPTG": "ES003296", "ATCO": "609", "CRS_code": "SHL" }, "geometry": { "type": "Point", "coordinates": [ -4.29234308935, 55.829212603030001 ] } },
{ "type": "Feature", "properties": { "Name": "Sidcup Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sidcup Rail Station", "TIPLOC": "SIDCUP", "CRS": "SID", "StopAreaCode": "910GSIDCUP", "AdministrativeAreaRef": "110", "code": "9100SIDCUP", "NPTG": "E0034030", "ATCO": "490", "CRS_code": "SID" }, "geometry": { "type": "Point", "coordinates": [ 0.10379465578, 51.433870145820002 ] } },
{ "type": "Feature", "properties": { "Name": "Silecroft Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Silecroft Rail Station", "TIPLOC": "SILCRFT", "CRS": "SIC", "StopAreaCode": "910GSILCRFT", "AdministrativeAreaRef": "110", "code": "9100SILCRFT", "NPTG": "E0005700", "ATCO": "090", "CRS_code": "SIC" }, "geometry": { "type": "Point", "coordinates": [ -3.33444147982, 54.225957178110001 ] } },
{ "type": "Feature", "properties": { "Name": "Sileby Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sileby Rail Station", "TIPLOC": "SILEBY", "CRS": "SIL", "StopAreaCode": "910GSILEBY", "AdministrativeAreaRef": "110", "code": "9100SILEBY", "NPTG": "E0047629", "ATCO": "260", "CRS_code": "SIL" }, "geometry": { "type": "Point", "coordinates": [ -1.10998863756, 52.731594067949999 ] } },
{ "type": "Feature", "properties": { "Name": "Singer Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Singer Rail Station", "TIPLOC": "SINGER", "CRS": "SIN", "StopAreaCode": "910GSINGER", "AdministrativeAreaRef": "110", "code": "9100SINGER", "NPTG": "ES000746", "ATCO": "608", "CRS_code": "SIN" }, "geometry": { "type": "Point", "coordinates": [ -4.40548605311, 55.907671647180003 ] } },
{ "type": "Feature", "properties": { "Name": "Silver Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Silver Street Rail Station", "TIPLOC": "SIVRST", "CRS": "SLV", "StopAreaCode": "910GSIVRST", "AdministrativeAreaRef": "110", "code": "9100SIVRST", "NPTG": "E0034293", "ATCO": "490", "CRS_code": "SLV" }, "geometry": { "type": "Point", "coordinates": [ -0.06723991626, 51.614688488020001 ] } },
{ "type": "Feature", "properties": { "Name": "Skegness Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Skegness Rail Station", "TIPLOC": "SKEGNES", "CRS": "SKG", "StopAreaCode": "910GSKEGNES", "AdministrativeAreaRef": "110", "code": "9100SKEGNES", "NPTG": "E0057556", "ATCO": "270", "CRS_code": "SKG" }, "geometry": { "type": "Point", "coordinates": [ 0.33434722275, 53.143179347710003 ] } },
{ "type": "Feature", "properties": { "Name": "South Kenton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Kenton Rail Station", "TIPLOC": "SKENTON", "CRS": "SOK", "StopAreaCode": "910GSKENTON", "AdministrativeAreaRef": "110", "code": "9100SKENTON", "NPTG": "N0077718", "ATCO": "490", "CRS_code": "SOK" }, "geometry": { "type": "Point", "coordinates": [ -0.30846236931, 51.570213972380003 ] } },
{ "type": "Feature", "properties": { "Name": "Skewen Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Skewen Rail Station", "TIPLOC": "SKEWEN", "CRS": "SKE", "StopAreaCode": "910GSKEWEN", "AdministrativeAreaRef": "110", "code": "9100SKEWEN", "NPTG": "E0039726", "ATCO": "582", "CRS_code": "SKE" }, "geometry": { "type": "Point", "coordinates": [ -3.84650869754, 51.661389879109997 ] } },
{ "type": "Feature", "properties": { "Name": "Skipton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Skipton Rail Station", "TIPLOC": "SKPT", "CRS": "SKI", "StopAreaCode": "910GSKPT", "AdministrativeAreaRef": "110", "code": "9100SKPT", "NPTG": "E0056332", "ATCO": "320", "CRS_code": "SKI" }, "geometry": { "type": "Point", "coordinates": [ -2.02587206385, 53.958686831839998 ] } },
{ "type": "Feature", "properties": { "Name": "Silkstone Common Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Silkstone Common Rail Station", "TIPLOC": "SKSCMN", "CRS": "SLK", "StopAreaCode": "910GSKSCMN", "AdministrativeAreaRef": "110", "code": "9100SKSCMN", "NPTG": "E0030527", "ATCO": "370", "CRS_code": "SLK" }, "geometry": { "type": "Point", "coordinates": [ -1.56347853949, 53.534917177 ] } },
{ "type": "Feature", "properties": { "Name": "Slade Green Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Slade Green Rail Station", "TIPLOC": "SLADEGN", "CRS": "SGR", "StopAreaCode": "910GSLADEGN", "AdministrativeAreaRef": "110", "code": "9100SLADEGN", "NPTG": "E0034031", "ATCO": "490", "CRS_code": "SGR" }, "geometry": { "type": "Point", "coordinates": [ 0.19049143204, 51.467786153219997 ] } },
{ "type": "Feature", "properties": { "Name": "Slateford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Slateford Rail Station", "TIPLOC": "SLATEFD", "CRS": "SLA", "StopAreaCode": "910GSLATEFD", "AdministrativeAreaRef": "110", "code": "9100SLATEFD", "NPTG": "N0078277", "ATCO": "620", "CRS_code": "SLA" }, "geometry": { "type": "Point", "coordinates": [ -3.24345652961, 55.926688238799997 ] } },
{ "type": "Feature", "properties": { "Name": "Saltcoats Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Saltcoats Rail Station", "TIPLOC": "SLCT", "CRS": "SLT", "StopAreaCode": "910GSLCT", "AdministrativeAreaRef": "110", "code": "9100SLCT", "NPTG": "ES003231", "ATCO": "617", "CRS_code": "SLT" }, "geometry": { "type": "Point", "coordinates": [ -4.78429036459, 55.633882240159998 ] } },
{ "type": "Feature", "properties": { "Name": "Sleaford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sleaford Rail Station", "TIPLOC": "SLEFD", "CRS": "SLR", "StopAreaCode": "910GSLEFD", "AdministrativeAreaRef": "110", "code": "9100SLEFD", "NPTG": "E0056238", "ATCO": "270", "CRS_code": "SLR" }, "geometry": { "type": "Point", "coordinates": [ -0.41034691104, 52.99547308036 ] } },
{ "type": "Feature", "properties": { "Name": "Sleights Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sleights Rail Station", "TIPLOC": "SLEGHTS", "CRS": "SLH", "StopAreaCode": "910GSLEGHTS", "AdministrativeAreaRef": "110", "code": "9100SLEGHTS", "NPTG": "E0056364", "ATCO": "320", "CRS_code": "SLH" }, "geometry": { "type": "Point", "coordinates": [ -0.66248076241, 54.461052769760002 ] } },
{ "type": "Feature", "properties": { "Name": "Stanford-le-Hope Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stanford-le-Hope Rail Station", "TIPLOC": "SLEHOPE", "CRS": "SFO", "StopAreaCode": "910GSLEHOPE", "AdministrativeAreaRef": "110", "code": "9100SLEHOPE", "NPTG": "E0042676", "ATCO": "159", "CRS_code": "SFO" }, "geometry": { "type": "Point", "coordinates": [ 0.42303584636, 51.514363605619998 ] } },
{ "type": "Feature", "properties": { "Name": "Salford Crescent Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Salford Crescent Rail Station", "TIPLOC": "SLFDCT", "CRS": "SLD", "StopAreaCode": "910GSLFDCT", "AdministrativeAreaRef": "110", "code": "9100SLFDCT", "NPTG": "N0076110", "ATCO": "180", "CRS_code": "SLD" }, "geometry": { "type": "Point", "coordinates": [ -2.27574930092, 53.486587284690003 ] } },
{ "type": "Feature", "properties": { "Name": "Salford Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Salford Central Rail Station", "TIPLOC": "SLFDORD", "CRS": "SFD", "StopAreaCode": "910GSLFDORD", "AdministrativeAreaRef": "110", "code": "9100SLFDORD", "NPTG": "N0076110", "ATCO": "180", "CRS_code": "SFD" }, "geometry": { "type": "Point", "coordinates": [ -2.25484069149, 53.483083299800001 ] } },
{ "type": "Feature", "properties": { "Name": "Slough Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Slough Rail Station", "TIPLOC": "SLOUGH", "CRS": "SLO", "StopAreaCode": "910GSLOUGH", "AdministrativeAreaRef": "110", "code": "9100SLOUGH", "NPTG": "E0057240", "ATCO": "037", "CRS_code": "SLO" }, "geometry": { "type": "Point", "coordinates": [ -0.59151035755, 51.511880410720003 ] } },
{ "type": "Feature", "properties": { "Name": "Salisbury Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Salisbury Rail Station", "TIPLOC": "SLSBRY", "CRS": "SAL", "StopAreaCode": "910GSLSBRY", "AdministrativeAreaRef": "110", "code": "9100SLSBRY", "NPTG": "E0056881", "ATCO": "460", "CRS_code": "SAL" }, "geometry": { "type": "Point", "coordinates": [ -1.80638673642, 51.070548396219998 ] } },
{ "type": "Feature", "properties": { "Name": "Slaithwaite Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Slaithwaite Rail Station", "TIPLOC": "SLTHWTE", "CRS": "SWT", "StopAreaCode": "910GSLTHWTE", "AdministrativeAreaRef": "110", "code": "9100SLTHWTE", "NPTG": "E0033571", "ATCO": "450", "CRS_code": "SWT" }, "geometry": { "type": "Point", "coordinates": [ -1.88157868142, 53.623829670820001 ] } },
{ "type": "Feature", "properties": { "Name": "Saltmarshe Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Saltmarshe Rail Station", "TIPLOC": "SLTMRSH", "CRS": "SAM", "StopAreaCode": "910GSLTMRSH", "AdministrativeAreaRef": "110", "code": "9100SLTMRSH", "NPTG": "E0037135", "ATCO": "220", "CRS_code": "SAM" }, "geometry": { "type": "Point", "coordinates": [ -0.80948561866, 53.721924454579998 ] } },
{ "type": "Feature", "properties": { "Name": "Silvertown & City Airport Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Silvertown & City Airport Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100SLVRTWN", "NPTG": "N0060463", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ 0.04590856441, 51.501981140600002 ] } },
{ "type": "Feature", "properties": { "Name": "Smallbrook Junction Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Smallbrook Junction Rail Station", "TIPLOC": "SMALBRK", "CRS": "SAB", "StopAreaCode": "910GSMALBRK", "AdministrativeAreaRef": "110", "code": "9100SMALBRK", "NPTG": "N0065253", "ATCO": "230", "CRS_code": "SAB" }, "geometry": { "type": "Point", "coordinates": [ -1.15419823937, 50.711102479440001 ] } },
{ "type": "Feature", "properties": { "Name": "St Margarets (Herts) Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "St Margarets (Herts) Rail Station", "TIPLOC": "SMARGRT", "CRS": "SMT", "StopAreaCode": "910GSMARGRT", "AdministrativeAreaRef": "110", "code": "9100SMARGRT", "NPTG": "E0047001", "ATCO": "210", "CRS_code": "SMT" }, "geometry": { "type": "Point", "coordinates": [ 0.00126921709, 51.787840531119997 ] } },
{ "type": "Feature", "properties": { "Name": "Smithy Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Smithy Bridge Rail Station", "TIPLOC": "SMBG", "CRS": "SMB", "StopAreaCode": "910GSMBG", "AdministrativeAreaRef": "110", "code": "9100SMBG", "NPTG": "E0029343", "ATCO": "180", "CRS_code": "SMB" }, "geometry": { "type": "Point", "coordinates": [ -2.11350247329, 53.633253576679998 ] } },
{ "type": "Feature", "properties": { "Name": "South Merton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Merton Rail Station", "TIPLOC": "SMERTON", "CRS": "SMO", "StopAreaCode": "910GSMERTON", "AdministrativeAreaRef": "110", "code": "9100SMERTON", "NPTG": "N0061138", "ATCO": "490", "CRS_code": "SMO" }, "geometry": { "type": "Point", "coordinates": [ -0.20515739927, 51.402993110159997 ] } },
{ "type": "Feature", "properties": { "Name": "South Milford Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "South Milford Rail Station", "TIPLOC": "SMILFD", "CRS": "SOM", "StopAreaCode": "910GSMILFD", "AdministrativeAreaRef": "110", "code": "9100SMILFD", "NPTG": "E0049578", "ATCO": "320", "CRS_code": "SOM" }, "geometry": { "type": "Point", "coordinates": [ -1.25052921973, 53.782326527579997 ] } },
{ "type": "Feature", "properties": { "Name": "Southminster Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Southminster Rail Station", "TIPLOC": "SMINSTR", "CRS": "SMN", "StopAreaCode": "910GSMINSTR", "AdministrativeAreaRef": "110", "code": "9100SMINSTR", "NPTG": "E0046323", "ATCO": "150", "CRS_code": "SMN" }, "geometry": { "type": "Point", "coordinates": [ 0.83519265623, 51.660624319139998 ] } },
{ "type": "Feature", "properties": { "Name": "Smitham (Coulsdon Town) Rail Station", "Status": "inactive", "Type": "RLY", "Station_Name": "Smitham (Coulsdon Town) Rail Station", "TIPLOC": "-", "CRS": "-", "StopAreaCode": "-", "AdministrativeAreaRef": "110", "code": "9100SMITHAM", "NPTG": "N0075224", "ATCO": "490", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.13447885824, 51.322033884429999 ] } },
{ "type": "Feature", "properties": { "Name": "Small Heath Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Small Heath Rail Station", "TIPLOC": "SMLHTH", "CRS": "SMA", "StopAreaCode": "910GSMLHTH", "AdministrativeAreaRef": "110", "code": "9100SMLHTH", "NPTG": "E0031963", "ATCO": "430", "CRS_code": "SMA" }, "geometry": { "type": "Point", "coordinates": [ -1.85939268957, 52.463761637899999 ] } },
{ "type": "Feature", "properties": { "Name": "Somerleyton Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Somerleyton Rail Station", "TIPLOC": "SMRLYTN", "CRS": "SYT", "StopAreaCode": "910GSMRLYTN", "AdministrativeAreaRef": "110", "code": "9100SMRLYTN", "NPTG": "E0025263", "ATCO": "390", "CRS_code": "SYT" }, "geometry": { "type": "Point", "coordinates": [ 1.65226028383, 52.510230738099999 ] } },
{ "type": "Feature", "properties": { "Name": "Smethwick Rolfe Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Smethwick Rolfe Street Rail Station", "TIPLOC": "SMTHKRS", "CRS": "SMR", "StopAreaCode": "910GSMTHKRS", "AdministrativeAreaRef": "110", "code": "9100SMTHKRS", "NPTG": "E0057928", "ATCO": "430", "CRS_code": "SMR" }, "geometry": { "type": "Point", "coordinates": [ -1.97064443919, 52.496384955140002 ] } },
{ "type": "Feature", "properties": { "Name": "Snaith Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Snaith Rail Station", "TIPLOC": "SNAITH", "CRS": "SNI", "StopAreaCode": "910GSNAITH", "AdministrativeAreaRef": "110", "code": "9100SNAITH", "NPTG": "E0037149", "ATCO": "220", "CRS_code": "SNI" }, "geometry": { "type": "Point", "coordinates": [ -1.02845972511, 53.693114049720002 ] } },
{ "type": "Feature", "properties": { "Name": "Sandhurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandhurst Rail Station", "TIPLOC": "SNDHRST", "CRS": "SND", "StopAreaCode": "910GSNDHRST", "AdministrativeAreaRef": "110", "code": "9100SNDHRST", "NPTG": "E0052956", "ATCO": "038", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -0.80459048715, 51.34693090447 ] } },
{ "type": "Feature", "properties": { "Name": "Sandown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandown Rail Station", "TIPLOC": "SNDOWN", "CRS": "SAN", "StopAreaCode": "910GSNDOWN", "AdministrativeAreaRef": "110", "code": "9100SNDOWN", "NPTG": "E0053417", "ATCO": "230", "CRS_code": "SAN" }, "geometry": { "type": "Point", "coordinates": [ -1.16238729309, 50.656871355450001 ] } },
{ "type": "Feature", "properties": { "Name": "Sundridge Park Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sundridge Park Rail Station", "TIPLOC": "SNDP", "CRS": "SUP", "StopAreaCode": "910GSNDP", "AdministrativeAreaRef": "110", "code": "9100SNDP", "NPTG": "E0034136", "ATCO": "490", "CRS_code": "SUP" }, "geometry": { "type": "Point", "coordinates": [ 0.02144640977, 51.413781572810002 ] } },
{ "type": "Feature", "properties": { "Name": "Sunderland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sunderland Rail Station", "TIPLOC": "SNDRLND", "CRS": "SUN", "StopAreaCode": "910GSNDRLND", "AdministrativeAreaRef": "110", "code": "9100SNDRLND", "NPTG": "E0057917", "ATCO": "410", "CRS_code": "SUN" }, "geometry": { "type": "Point", "coordinates": [ -1.38230426318, 54.90533967615 ] } },
{ "type": "Feature", "properties": { "Name": "St Peters Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "St Peters Rail Station", "TIPLOC": "SNDRMNK", "CRS": "STZ", "StopAreaCode": "910GSNDRMNK", "AdministrativeAreaRef": "110", "code": "9100SNDRMNK", "NPTG": "N0077869", "ATCO": "410", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.38380190882, 54.91144009976 ] } },
{ "type": "Feature", "properties": { "Name": "Sandwell & Dudley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandwell & Dudley Rail Station", "TIPLOC": "SNDWDUD", "CRS": "SAD", "StopAreaCode": "910GSNDWDUD", "AdministrativeAreaRef": "110", "code": "9100SNDWDUD", "NPTG": "E0031844", "ATCO": "430", "CRS_code": "SAD" }, "geometry": { "type": "Point", "coordinates": [ -2.01159594973, 52.508659181650003 ] } },
{ "type": "Feature", "properties": { "Name": "Sandy Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sandy Rail Station", "TIPLOC": "SNDY", "CRS": "SDY", "StopAreaCode": "910GSNDY", "AdministrativeAreaRef": "110", "code": "9100SNDY", "NPTG": "E0043911", "ATCO": "021", "CRS_code": "SDY" }, "geometry": { "type": "Point", "coordinates": [ -0.28119037129, 52.12473374735 ] } },
{ "type": "Feature", "properties": { "Name": "Stonegate Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stonegate Rail Station", "TIPLOC": "SNGT", "CRS": "SOG", "StopAreaCode": "910GSNGT", "AdministrativeAreaRef": "110", "code": "9100SNGT", "NPTG": "E0010680", "ATCO": "140", "CRS_code": "SOG" }, "geometry": { "type": "Point", "coordinates": [ 0.36386821978, 51.019967715550003 ] } },
{ "type": "Feature", "properties": { "Name": "Snodland Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Snodland Rail Station", "TIPLOC": "SNODLND", "CRS": "SDA", "StopAreaCode": "910GSNODLND", "AdministrativeAreaRef": "110", "code": "9100SNODLND", "NPTG": "E0047355", "ATCO": "240", "CRS_code": "SDA" }, "geometry": { "type": "Point", "coordinates": [ 0.44824133528, 51.33023071305 ] } },
{ "type": "Feature", "properties": { "Name": "Snowdown Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Snowdown Rail Station", "TIPLOC": "SNWDNAN", "CRS": "SWO", "StopAreaCode": "910GSNWDNAN", "AdministrativeAreaRef": "110", "code": "9100SNWDNAN", "NPTG": "E0014816", "ATCO": "240", "CRS_code": "SWO" }, "geometry": { "type": "Point", "coordinates": [ 1.21370524211, 51.2153001657 ] } },
{ "type": "Feature", "properties": { "Name": "Stratford-upon-Avon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stratford-upon-Avon Rail Station", "TIPLOC": "SOAV", "CRS": "SAV", "StopAreaCode": "910GSOAV", "AdministrativeAreaRef": "110", "code": "9100SOAV", "NPTG": "E0051992", "ATCO": "200", "CRS_code": "SAV" }, "geometry": { "type": "Point", "coordinates": [ -1.71628843305, 52.194248324210001 ] } },
{ "type": "Feature", "properties": { "Name": "Stratford-upon-Avon Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Stratford-upon-Avon Parkway Rail Station", "TIPLOC": "SOAVPWY", "CRS": "STY", "StopAreaCode": "910GSOAVPWY", "AdministrativeAreaRef": "110", "code": "9100SOAVPWY", "NPTG": "E0051992", "ATCO": "200", "CRS_code": "STY" }, "geometry": { "type": "Point", "coordinates": [ -1.73084236463, 52.206779055570003 ] } },
{ "type": "Feature", "properties": { "Name": "Sole Street Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Sole Street Rail Station", "TIPLOC": "SOLEST", "CRS": "SOR", "StopAreaCode": "910GSOLEST", "AdministrativeAreaRef": "110", "code": "9100SOLEST", "NPTG": "E0014901", "ATCO": "240", "CRS_code": "SOR" }, "geometry": { "type": "Point", "coordinates": [ 0.37809701189, 51.383145558850003 ] } },
{ "type": "Feature", "properties": { "Name": "Solihull Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Solihull Rail Station", "TIPLOC": "SOLIHUL", "CRS": "SOL", "StopAreaCode": "910GSOLIHUL", "AdministrativeAreaRef": "110", "code": "9100SOLIHUL", "NPTG": "E0057935", "ATCO": "430", "CRS_code": "SOL" }, "geometry": { "type": "Point", "coordinates": [ -1.78839054222, 52.414390700840002 ] } },
{ "type": "Feature", "properties": { "Name": "Southampton Town Quay", "Status": "inactive", "Type": "RLY", "Station_Name": "Southampton Town Quay", "TIPLOC": "SOTNTQ", "CRS": "STQ", "StopAreaCode": "910GSOTNTQ", "AdministrativeAreaRef": "110", "code": "9100SOTNTQ", "NPTG": "E0057247", "ATCO": "198", "CRS_code": "-" }, "geometry": { "type": "Point", "coordinates": [ -1.40583030391, 50.895152443599997 ] } },
{ "type": "Feature", "properties": { "Name": "Southampton Central Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Southampton Central Rail Station", "TIPLOC": "SOTON", "CRS": "SOU", "StopAreaCode": "910GSOTON", "AdministrativeAreaRef": "110", "code": "9100SOTON", "NPTG": "E0057247", "ATCO": "198", "CRS_code": "SOU" }, "geometry": { "type": "Point", "coordinates": [ -1.41359587161, 50.907448447599997 ] } },
{ "type": "Feature", "properties": { "Name": "Southampton Airport Parkway Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Southampton Airport Parkway Rail Station", "TIPLOC": "SOTPKWY", "CRS": "SOA", "StopAreaCode": "910GSOTPKWY", "AdministrativeAreaRef": "110", "code": "9100SOTPKWY", "NPTG": "E0013465", "ATCO": "190", "CRS_code": "SOA" }, "geometry": { "type": "Point", "coordinates": [ -1.36309685087, 50.950815426630001 ] } },
{ "type": "Feature", "properties": { "Name": "Southport Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Southport Rail Station", "TIPLOC": "SOUTHPT", "CRS": "SOP", "StopAreaCode": "910GSOUTHPT", "AdministrativeAreaRef": "110", "code": "9100SOUTHPT", "NPTG": "E0029882", "ATCO": "280", "CRS_code": "SOP" }, "geometry": { "type": "Point", "coordinates": [ -3.00243474538, 53.646519140990002 ] } },
{ "type": "Feature", "properties": { "Name": "Spalding Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Spalding Rail Station", "TIPLOC": "SPALDNG", "CRS": "SPA", "StopAreaCode": "910GSPALDNG", "AdministrativeAreaRef": "110", "code": "9100SPALDNG", "NPTG": "E0057562", "ATCO": "270", "CRS_code": "SPA" }, "geometry": { "type": "Point", "coordinates": [ -0.15688407005, 52.788806468730002 ] } },
{ "type": "Feature", "properties": { "Name": "Spondon Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Spondon Rail Station", "TIPLOC": "SPDN", "CRS": "SPO", "StopAreaCode": "910GSPDN", "AdministrativeAreaRef": "110", "code": "9100SPDN", "NPTG": "E0036836", "ATCO": "109", "CRS_code": "SPO" }, "geometry": { "type": "Point", "coordinates": [ -1.41109389596, 52.912219240619997 ] } },
{ "type": "Feature", "properties": { "Name": "Spean Bridge Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Spean Bridge Rail Station", "TIPLOC": "SPEANBD", "CRS": "SBR", "StopAreaCode": "910GSPEANBD", "AdministrativeAreaRef": "110", "code": "9100SPEANBD", "NPTG": "ES003381", "ATCO": "670", "CRS_code": "SBR" }, "geometry": { "type": "Point", "coordinates": [ -4.92160677334, 56.890013597909999 ] } },
{ "type": "Feature", "properties": { "Name": "Springfield Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Springfield Rail Station", "TIPLOC": "SPFD", "CRS": "SPF", "StopAreaCode": "910GSPFD", "AdministrativeAreaRef": "110", "code": "9100SPFD", "NPTG": "ES003389", "ATCO": "650", "CRS_code": "SPF" }, "geometry": { "type": "Point", "coordinates": [ -3.05244809002, 56.294970242239998 ] } },
{ "type": "Feature", "properties": { "Name": "Shippea Hill Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shippea Hill Rail Station", "TIPLOC": "SPHL", "CRS": "SPP", "StopAreaCode": "910GSPHL", "AdministrativeAreaRef": "110", "code": "9100SPHL", "NPTG": "E0000912", "ATCO": "050", "CRS_code": "SPP" }, "geometry": { "type": "Point", "coordinates": [ 0.41334527012, 52.430213420820003 ] } },
{ "type": "Feature", "properties": { "Name": "Staplehurst Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Staplehurst Rail Station", "TIPLOC": "SPHS", "CRS": "SPU", "StopAreaCode": "910GSPHS", "AdministrativeAreaRef": "110", "code": "9100SPHS", "NPTG": "E0047221", "ATCO": "240", "CRS_code": "SPU" }, "geometry": { "type": "Point", "coordinates": [ 0.55043851131, 51.171467438859999 ] } },
{ "type": "Feature", "properties": { "Name": "Spital Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Spital Rail Station", "TIPLOC": "SPITAL", "CRS": "SPI", "StopAreaCode": "910GSPITAL", "AdministrativeAreaRef": "110", "code": "9100SPITAL", "NPTG": "E0029884", "ATCO": "280", "CRS_code": "SPI" }, "geometry": { "type": "Point", "coordinates": [ -2.99390656946, 53.339937026800001 ] } },
{ "type": "Feature", "properties": { "Name": "Shepley Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Shepley Rail Station", "TIPLOC": "SPLY", "CRS": "SPY", "StopAreaCode": "910GSPLY", "AdministrativeAreaRef": "110", "code": "9100SPLY", "NPTG": "E0033552", "ATCO": "450", "CRS_code": "SPY" }, "geometry": { "type": "Point", "coordinates": [ -1.70492806467, 53.588740312890003 ] } },
{ "type": "Feature", "properties": { "Name": "Spooner Row Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Spooner Row Rail Station", "TIPLOC": "SPONRRW", "CRS": "SPN", "StopAreaCode": "910GSPONRRW", "AdministrativeAreaRef": "110", "code": "9100SPONRRW", "NPTG": "E0018371", "ATCO": "290", "CRS_code": "SPN" }, "geometry": { "type": "Point", "coordinates": [ 1.08647573814, 52.53499701426 ] } },
{ "type": "Feature", "properties": { "Name": "Spring Road Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Spring Road Rail Station", "TIPLOC": "SPRD", "CRS": "SRI", "StopAreaCode": "910GSPRD", "AdministrativeAreaRef": "110", "code": "9100SPRD", "NPTG": "E0031606", "ATCO": "430", "CRS_code": "SRI" }, "geometry": { "type": "Point", "coordinates": [ -1.83738948242, 52.4434160721 ] } },
{ "type": "Feature", "properties": { "Name": "Springburn Rail Station", "Status": "active", "Type": "RLY", "Station_Name": "Springburn Rail Station", "TIPLOC": "SPRNGBN", "CRS": "SPR", "StopAreaCode": "910GSPRNGBN", "AdministrativeAreaRef": "110", "code": "9100SPRNGBN", "NPTG": "ES003388", "ATCO": "609", "CRS_code": "SPR" }, "geome
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.)

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