Skip to content

Instantly share code, notes, and snippets.

@grenade
Last active January 30, 2024 11:00
Show Gist options
  • Save grenade/c61d4891ee4c879d1d31 to your computer and use it in GitHub Desktop.
Save grenade/c61d4891ee4c879d1d31 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using Newtonsoft.Json;
namespace metmon
{
class Program
{
private const string Api = "http://datapoint.metoffice.gov.uk/public/data/val/wxfcs/all/json";
private const string Key = "01234567-89ab-cdef-fedc-ba9876543210";
static void Main()
{
using (var wc = new WebClient())
{
var sites = JsonConvert.DeserializeObject<dynamic>(wc.DownloadString(string.Format("{0}/sitelist?key={1}", Api, Key)));
//var sites = JsonConvert.DeserializeObject<dynamic>(File.ReadAllText(@"c:\temp\metoffice.sitelist.json"));
var features = new {
type = "FeatureCollection",
features = ((IEnumerable<dynamic>)sites.Locations.Location).Select(x => new
{
type = "Feature",
geometry = new
{
type = "Point",
coordinates = new double?[]
{
x.longitude,
x.latitude,
x.elevation
}
},
properties = new
{
x.id,
x.name,
x.region,
x.unitaryAuthArea,
nationalPark = x.GetType().GetProperty("nationalPark") != null ? x.nationalPark : null
}
})};
File.WriteAllText(@"c:\temp\metoffice.sitelist.geojson", JsonConvert.SerializeObject(features));
}
}
}
}
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.42,56.879,933.0]},"properties":{"id":"3072","name":"Cairnwell","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.264,56.852,134.0]},"properties":{"id":"3088","name":"Inverbervie","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.121,57.698,4.0]},"properties":{"id":"3094","name":"Rosehearty Samos","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.729,56.326,35.0]},"properties":{"id":"3144","name":"Strathallan","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.875,55.862,277.0]},"properties":{"id":"3152","name":"Salsburgh","nationalPark":null,"region":"st","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.343,55.928,57.0]},"properties":{"id":"3166","name":"Edinburgh/Gogarbank","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6321,54.0849,16.0]},"properties":{"id":"3204","name":"Ronaldsway","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.615,54.518,124.0]},"properties":{"id":"3210","name":"St. Bees Head","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.963,54.933,28.0]},"properties":{"id":"3220","name":"Carlisle","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.553,55.05,285.0]},"properties":{"id":"3224","name":"Spadeadam","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.53,54.296,32.0]},"properties":{"id":"3257","name":"Leeming","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.414,54.134,33.0]},"properties":{"id":"3261","name":"Dishforth Airfield","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.433,53.867,7.0]},"properties":{"id":"3382","name":"Leconfield Sar","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.274,53.088,3.0]},"properties":{"id":"3392","name":"Wainfleet","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9392,50.9561,3.0]},"properties":{"id":"6","name":"Lydd","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3472,53.5797,24.0]},"properties":{"id":"22","name":"Humberside Airport","nationalPark":null,"region":"yh","unitaryAuthArea":"North Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2992,60.4322,20.0]},"properties":{"id":"33","name":"Scatsta","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.277,60.447,7.0]},"properties":{"id":"3006","name":"Sella Ness","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.628,59.527,57.0]},"properties":{"id":"3008","name":"Fair Isle","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.809,57.257,18.0]},"properties":{"id":"3037","name":"Skye/Lusa (Samos)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.689,57.4175,773.0]},"properties":{"id":"3039","name":"Bealach Na Ba","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.97,56.822,1130.0]},"properties":{"id":"3041","name":"Aonach Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.733,58.167,99.0]},"properties":{"id":"99003","name":"Cassley","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.25,52.833,48.0]},"properties":{"id":"99025","name":"Sutton Bonington","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6,52.017,89.0]},"properties":{"id":"99057","name":"Woburn","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.92619,52.456,140.0]},"properties":{"id":"99062","name":"Winterbourne","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.233,52.4,41.0]},"properties":{"id":"99078","name":"Monks Wood","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.75,54.667,43.0]},"properties":{"id":"99086","name":"Helens Bay","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.742,52.789,95.0]},"properties":{"id":"3405","name":"Aberdaron","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.583,52.917,163.0]},"properties":{"id":"3409","name":"Bala","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.663,52.794,72.0]},"properties":{"id":"3414","name":"Shawbury","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.654,52.727,138.0]},"properties":{"id":"3453","name":"Cottesmore","nationalPark":null,"region":"em","unitaryAuthArea":"Rutland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.569,52.651,21.0]},"properties":{"id":"3482","name":"Marham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.693,52.686,14.0]},"properties":{"id":"3496","name":"Hemsby","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.947,52.344,63.0]},"properties":{"id":"3503","name":"Trawsgoed","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.614,52.063,307.0]},"properties":{"id":"3507","name":"Sennybridge","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.055,51.708,44.0]},"properties":{"id":"3604","name":"Milford Haven C.B.","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.576,51.521,59.0]},"properties":{"id":"3628","name":"Filton","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.576,51.758,81.0]},"properties":{"id":"3649","name":"Brize Norton","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.415,51.548,40.0]},"properties":{"id":"3672","name":"Northolt","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.608,51.087,348.0]},"properties":{"id":"3710","name":"Liscombe","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.44,51.405,49.0]},"properties":{"id":"3716","name":"St-Athan","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.944,51.238,118.0]},"properties":{"id":"3761","name":"Odiham","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.449,51.479,25.0]},"properties":{"id":"3772","name":"Heathrow","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3461,51.3422,54.0]},"properties":{"id":"3797","name":"Manston","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.121,50.354,50.0]},"properties":{"id":"3827","name":"Mount Batten","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.403,50.901,19.0]},"properties":{"id":"3865","name":"Southampton W.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1955,49.2079,84.0]},"properties":{"id":"3895","name":"Jersey","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.153,55.181,156.0]},"properties":{"id":"3916","name":"Ballypatrick Forest","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.83,54.852,43.0]},"properties":{"id":"3928","name":"Larne","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5182,52.4065,79.0]},"properties":{"id":"310006","name":"Coventry","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2175,54.1088,9.0]},"properties":{"id":"310023","name":"Barrow-In-Furness","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3585,51.3754,50.0]},"properties":{"id":"310026","name":"Bath","nationalPark":null,"region":"sw","unitaryAuthArea":"Bath and North East Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8794,50.7187,22.0]},"properties":{"id":"310034","name":"Bournemouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6117,54.4862,1.0]},"properties":{"id":"320313","name":"Whitby","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8656,56.6218,89.0]},"properties":{"id":"321942","name":"Aberfeldy","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4778,51.7345,21.0]},"properties":{"id":"310046","name":"Chelmsford","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4424,53.1001,59.0]},"properties":{"id":"310056","name":"Crewe","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5327,50.7179,7.0]},"properties":{"id":"310069","name":"Exeter","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1711,51.0809,40.0]},"properties":{"id":"310071","name":"Folkestone","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5167,55.9007,157.0]},"properties":{"id":"310103","name":"Livingston","nationalPark":null,"region":"dg","unitaryAuthArea":"West Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7553,52.4807,15.0]},"properties":{"id":"310104","name":"Lowestoft","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4155,51.8783,111.0]},"properties":{"id":"310105","name":"Luton","nationalPark":null,"region":"ee","unitaryAuthArea":"Luton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3886,51.3892,10.0]},"properties":{"id":"310108","name":"Margate","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9866,50.7139,2.0]},"properties":{"id":"310121","name":"Poole","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7283,53.3418,11.0]},"properties":{"id":"310130","name":"Runcorn","nationalPark":null,"region":"nw","unitaryAuthArea":"Halton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7784,51.5556,131.0]},"properties":{"id":"310150","name":"Swindon","nationalPark":null,"region":"sw","unitaryAuthArea":"Swindon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0927,57.1498,19.0]},"properties":{"id":"310170","name":"Aberdeen","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2991,50.7623,22.0]},"properties":{"id":"310191","name":"Cowes","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0231,51.8157,17.0]},"properties":{"id":"322064","name":"Brightlingsea","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8904,55.8881,32.0]},"properties":{"id":"322944","name":"Wemyss Bay","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1605,52.666,1.0]},"properties":{"id":"322951","name":"Wisbech","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5414,54.6435,17.0]},"properties":{"id":"322953","name":"Workington","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.106,50.1686,50.0]},"properties":{"id":"322636","name":"Penryn","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7931,51.0683,46.0]},"properties":{"id":"320003","name":"Salisbury","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.6313,54.3446,52.0]},"properties":{"id":"322172","name":"Enniskillen","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9749,51.9936,62.0]},"properties":{"id":"322193","name":"Fishguard","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.853,55.2401,9.0]},"properties":{"id":"322230","name":"Girvan","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8748,53.7027,1.0]},"properties":{"id":"322234","name":"Goole","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.42,51.5,32.0]},"properties":{"id":"322281","name":"Hayes","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.71,51.45,1.0]},"properties":{"id":"322324","name":"Isle Of Grain","nationalPark":null,"region":"se","unitaryAuthArea":"Medway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0933,51.3775,55.0]},"properties":{"id":"324152","name":"Croydon","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2991,51.4119,4.0]},"properties":{"id":"324153","name":"Kingston Upon Thames","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7795,55.427,98.0]},"properties":{"id":"324157","name":"Hawick","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4946,52.0308,100.0]},"properties":{"id":"324162","name":"Ampthill","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2626,52.0857,31.0]},"properties":{"id":"324166","name":"Biggleswade","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9668,51.7181,112.0]},"properties":{"id":"324173","name":"Cirencester","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.896,53.2796,19.0]},"properties":{"id":"324181","name":"Ellesmere Port","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6798,57.1441,23.0]},"properties":{"id":"324185","name":"Fort Augustus","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6082,57.3306,217.0]},"properties":{"id":"324190","name":"Grantown-On-Spey","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3752,52.5451,116.0]},"properties":{"id":"324194","name":"Hinckley","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7287,52.396,71.0]},"properties":{"id":"324198","name":"Kettering","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3476,55.1222,97.0]},"properties":{"id":"324200","name":"Lockerbie","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8522,52.59,10.0]},"properties":{"id":"324203","name":"Machynlleth","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9439,53.3211,12.0]},"properties":{"id":"324215","name":"Retford","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4439,52.6781,154.0]},"properties":{"id":"324224","name":"Telford","nationalPark":null,"region":"wm","unitaryAuthArea":"Telford and Wrekin"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5044,53.6831,39.0]},"properties":{"id":"324229","name":"Wakefield","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7322,53.3608,9.0]},"properties":{"id":"324235","name":"Widnes","nationalPark":null,"region":"nw","unitaryAuthArea":"Halton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8772,51.9445,117.0]},"properties":{"id":"324237","name":"Winslow","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3036,52.9311,15.0]},"properties":{"id":"324251","name":"Cromer","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0674,53.558,8.0]},"properties":{"id":"324255","name":"Formby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5379,54.9828,164.0]},"properties":{"id":"324259","name":"Greenhead Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8007,51.9964,65.0]},"properties":{"id":"324262","name":"Llandovery","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.49,50.9016,61.0]},"properties":{"id":"324266","name":"Tiverton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1014,51.5859,86.0]},"properties":{"id":"324268","name":"Malmesbury","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.15,54.59,7.0]},"properties":{"id":"322847","name":"Teesport","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6772,54.6637,106.0]},"properties":{"id":"324049","name":"Bishop Auckland","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0796,51.7953,38.0]},"properties":{"id":"324059","name":"Hertford","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4819,54.9602,14.0]},"properties":{"id":"324064","name":"Newton Stewart","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.682,52.3252,12.0]},"properties":{"id":"324069","name":"Southwold","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1405,50.5506,82.0]},"properties":{"id":"324073","name":"Tavistock","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.75,58.567,26.0]},"properties":{"id":"324076","name":"Durness","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7449,54.3279,49.0]},"properties":{"id":"322372","name":"Kendal","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.23,51.97,93.0]},"properties":{"id":"322446","name":"Letchworth","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.79,56.54,66.0]},"properties":{"id":"322467","name":"Lochaline","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6731,51.7314,34.0]},"properties":{"id":"322494","name":"Maldon","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.08,52.92,35.0]},"properties":{"id":"322581","name":"Nottingham","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4216,56.0365,27.0]},"properties":{"id":"322718","name":"Rosyth","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2804,60.1381,4.0]},"properties":{"id":"322752","name":"Scalloway","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.551,58.611,27.0]},"properties":{"id":"322757","name":"Scrabster","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3359,54.8402,27.0]},"properties":{"id":"322758","name":"Seaham","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.47,51.72,16.0]},"properties":{"id":"322763","name":"Sharpness","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3881,54.8683,10.0]},"properties":{"id":"322774","name":"Silloth","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.165,51.5077,22.0]},"properties":{"id":"324387","name":"Hyde Park","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.167,54.1,391.0]},"properties":{"id":"99557","name":"Malham Tarn","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.569,52.26,75.0]},"properties":{"id":"99124","name":"Brooms Barn","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.009,51.534,5.0]},"properties":{"id":"99203","name":"London Olympic Park South","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.232,55.9828,9.0]},"properties":{"id":"322237","name":"Granton","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5858,55.9245,10.0]},"properties":{"id":"301777","name":"Langbank","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9597,50.9134,5.0]},"properties":{"id":"349","name":"Dungeness B","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.14,53.0333,128.0]},"properties":{"id":"350003","name":"Abbey Hulton","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1323,51.6459,128.0]},"properties":{"id":"350007","name":"Abercarn","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8456,53.289,4.0]},"properties":{"id":"350008","name":"Aberconwy House","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1432,57.145,81.0]},"properties":{"id":"350012","name":"Aberdeen Youth Hostel","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0449,52.5437,6.0]},"properties":{"id":"350014","name":"Aberdovey","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1336,51.7313,210.0]},"properties":{"id":"350020","name":"Abertillery","nationalPark":null,"region":"wl","unitaryAuthArea":"Blaenau Gwent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0817,52.415,9.0]},"properties":{"id":"350021","name":"Aberystwyth","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3707,53.7534,138.0]},"properties":{"id":"350023","name":"Accrington","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3,58.1699,9.0]},"properties":{"id":"350028","name":"Achmelvich Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1542,57.1825,1120.0]},"properties":{"id":"350029","name":"A'Chralaig","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6049,53.6108,93.0]},"properties":{"id":"350038","name":"Adlington","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7199,51.5322,1.0]},"properties":{"id":"350039","name":"Adventure Island","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5944,55.1954,161.0]},"properties":{"id":"350042","name":"Ae Mountain Bike Trail Centre","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9359,53.4791,16.0]},"properties":{"id":"350046","name":"Aintree","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8662,52.2149,40.0]},"properties":{"id":"350049","name":"Alcester","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4706,52.4487,86.0]},"properties":{"id":"350053","name":"Alderman's Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9143,52.6057,161.0]},"properties":{"id":"350055","name":"Aldridge","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.565,52.4241,110.0]},"properties":{"id":"350065","name":"Allesley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4372,54.8121,299.0]},"properties":{"id":"350070","name":"Alston","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4369,54.8052,308.0]},"properties":{"id":"350071","name":"Alston Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0006,52.2815,94.0]},"properties":{"id":"350073","name":"Althorp House","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3495,53.3899,42.0]},"properties":{"id":"350075","name":"Altrincham","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2465,53.479,36.0]},"properties":{"id":"310013","name":"Manchester","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2202,52.1933,22.0]},"properties":{"id":"310167","name":"Worcester","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2055,51.0162,28.0]},"properties":{"id":"310181","name":"Bideford","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.985,52.9846,162.0]},"properties":{"id":"324052","name":"Cheadle (Staffordshire)","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.533,55.907,59.0]},"properties":{"id":"3134","name":"Glasgow/Bishopton","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.206,55.311,242.0]},"properties":{"id":"3162","name":"Eskdalemuir","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.413,54.572,227.0]},"properties":{"id":"3226","name":"Warcop","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.154,53.473,8.0]},"properties":{"id":"3385","name":"Donna Nook","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0259,51.3606,1.0]},"properties":{"id":"310240","name":"Whitstable","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.917,58.233,103.0]},"properties":{"id":"99016","name":"Kinbrace","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.029,51.509,8.0]},"properties":{"id":"354377","name":"Excel","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.401,58.0223,89.0]},"properties":{"id":"352193","name":"Lairg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5301,51.5075,128.0]},"properties":{"id":"352198","name":"Lambourn","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.709,50.0641,63.0]},"properties":{"id":"352205","name":"Land's End","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6913,50.1134,102.0]},"properties":{"id":"352207","name":"Land's End Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0206,54.4374,159.0]},"properties":{"id":"352209","name":"Langdale Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9975,55.153,83.0]},"properties":{"id":"352211","name":"Langholm","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8274,51.0377,8.0]},"properties":{"id":"352213","name":"Langport","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6769,53.5032,259.0]},"properties":{"id":"352214","name":"Langsett Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9453,52.5336,117.0]},"properties":{"id":"352217","name":"Langton Hall","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.691,50.4402,76.0]},"properties":{"id":"352218","name":"Lanhydrock","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0747,50.9497,137.0]},"properties":{"id":"352223","name":"Larmer Tree Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7551,55.7229,182.0]},"properties":{"id":"352224","name":"Lauder","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0153,58.3753,3.0]},"properties":{"id":"352232","name":"Laxford Bridge","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.547,53.8011,44.0]},"properties":{"id":"352241","name":"Leeds","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0219,53.1089,168.0]},"properties":{"id":"352244","name":"Leek","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6549,51.4632,79.0]},"properties":{"id":"352248","name":"Legoland Windsor","nationalPark":null,"region":"se","unitaryAuthArea":"Windsor and Maidenhead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1407,52.6201,55.0]},"properties":{"id":"352249","name":"Leicester City F.C.","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2225,52.6225,101.0]},"properties":{"id":"352250","name":"Leicester Forest East","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.761,57.3584,189.0]},"properties":{"id":"352255","name":"Leith Hall Garden And Estate","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2052,52.9382,34.0]},"properties":{"id":"352259","name":"Lenton Abbey","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2534,51.0193,58.0]},"properties":{"id":"352261","name":"Leonardslee Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5365,55.0706,36.0]},"properties":{"id":"352265","name":"Leslie Hill Open Farm & Gardens","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2208,51.9792,77.0]},"properties":{"id":"352268","name":"Letchworth Garden City","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7761,54.2573,9.0]},"properties":{"id":"352271","name":"Levens Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1913,53.4509,53.0]},"properties":{"id":"352272","name":"Levenshulme","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0104,50.8734,32.0]},"properties":{"id":"352274","name":"Lewes","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7703,52.0553,102.0]},"properties":{"id":"352293","name":"Linford Wood","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0094,51.1674,54.0]},"properties":{"id":"352294","name":"Lingfield Park Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4269,52.3485,31.0]},"properties":{"id":"352296","name":"Linstead Parva","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.5352,54.3167,74.0]},"properties":{"id":"352299","name":"Lisbellaw","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9936,53.47,22.0]},"properties":{"id":"352304","name":"Litherland","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3189,53.4879,36.0]},"properties":{"id":"352305","name":"Little Bolton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8248,52.481,108.0]},"properties":{"id":"352306","name":"Little Bromwich","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7835,53.784,163.0]},"properties":{"id":"352307","name":"Little Horton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8485,51.9687,119.0]},"properties":{"id":"352308","name":"Little Horwood","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6367,50.7073,48.0]},"properties":{"id":"352316","name":"Litton Cheney Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9563,53.4312,52.0]},"properties":{"id":"352317","name":"Liverpool F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1478,53.3054,0.0]},"properties":{"id":"352328","name":"Llanddona","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.159,51.6805,8.0]},"properties":{"id":"352337","name":"Llanelli","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2745,52.7659,146.0]},"properties":{"id":"352340","name":"Llanfyllin","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1394,52.9616,130.0]},"properties":{"id":"352343","name":"Llangollen Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.736,51.9098,179.0]},"properties":{"id":"352344","name":"Llangolman","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7019,51.8826,621.0]},"properties":{"id":"352361","name":"Llyn Y Fan Fawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2753,58.239,null]},"properties":{"id":"352363","name":"Loch A' Tuath","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6248,55.9063,null]},"properties":{"id":"352367","name":"Loch Caolisport","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.49,57.3829,null]},"properties":{"id":"352368","name":"Loch Carron","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4777,57.242,null]},"properties":{"id":"352369","name":"Loch Duich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9693,57.1575,null]},"properties":{"id":"352372","name":"Loch Eishort","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.625,56.0168,36.0]},"properties":{"id":"352379","name":"Loch Lomond Youth Hostel","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8214,56.1351,null]},"properties":{"id":"352380","name":"Loch Long","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6714,56.7662,391.0]},"properties":{"id":"352386","name":"Loch Ossian Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2449,56.5117,null]},"properties":{"id":"352394","name":"Loch Tuath","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2848,56.3888,110.0]},"properties":{"id":"352395","name":"Lochearnhead","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5679,51.4863,61.0]},"properties":{"id":"352402","name":"Lockleaze","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6989,54.3016,131.0]},"properties":{"id":"352403","name":"Lockton Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8013,50.324,101.0]},"properties":{"id":"352404","name":"Loddiswell","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9573,54.7354,52.0]},"properties":{"id":"352408","name":"Logan Botanic Garden","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9454,50.9516,2.0]},"properties":{"id":"352410","name":"London Ashford Airport","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1768,51.1511,59.0]},"properties":{"id":"352414","name":"London Gatwick Airport","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8351,50.5771,99.0]},"properties":{"id":"352420","name":"Long Cross Victorian Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.718,52.0739,34.0]},"properties":{"id":"352422","name":"Long Melford","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.239,52.4871,44.0]},"properties":{"id":"352423","name":"Long Stratton","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2252,53.0454,179.0]},"properties":{"id":"352428","name":"Longbridge Hayes","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9777,50.7236,9.0]},"properties":{"id":"352430","name":"Longfleet","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8137,50.2867,93.0]},"properties":{"id":"352441","name":"Lost Gardens Of Heligan","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3794,55.6286,156.0]},"properties":{"id":"352445","name":"Loudon Castle Park","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4173,54.6132,10.0]},"properties":{"id":"352446","name":"Lough Neagh","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6271,54.9545,8.0]},"properties":{"id":"352453","name":"Low Team","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7087,52.3629,86.0]},"properties":{"id":"352459","name":"Ludlow Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2412,50.6215,131.0]},"properties":{"id":"352461","name":"Lulworth Cove Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1976,52.4556,121.0]},"properties":{"id":"352466","name":"Lutterworth","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.909,50.9507,3.0]},"properties":{"id":"352468","name":"Lydd","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.544,51.7256,35.0]},"properties":{"id":"352471","name":"Lydney Park","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6244,56.5057,null]},"properties":{"id":"352482","name":"Lynn Of Morven","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.031,53.7498,2.0]},"properties":{"id":"352485","name":"Lytham St. Anne's","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.193,51.5012,31.0]},"properties":{"id":"352490","name":"Maendy","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6592,51.6082,133.0]},"properties":{"id":"352492","name":"Maesteg","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6727,54.8441,71.0]},"properties":{"id":"352493","name":"Maghera","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5398,53.8632,145.0]},"properties":{"id":"350079","name":"Alwoodley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2254,56.6259,104.0]},"properties":{"id":"350080","name":"Alyth","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9823,56.7428,1032.0]},"properties":{"id":"350082","name":"Am Bodach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2929,56.859,975.0]},"properties":{"id":"350090","name":"A'Mharconaich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7491,56.9345,1006.0]},"properties":{"id":"350099","name":"An Sgarsoch","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.51,56.9055,944.0]},"properties":{"id":"350100","name":"An Socach (Glen Ey)","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2402,52.2377,6.0]},"properties":{"id":"350107","name":"Anglesey Abbey","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2069,54.7193,33.0]},"properties":{"id":"350114","name":"Antrim","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5266,56.8348,1114.0]},"properties":{"id":"350118","name":"Aonach Beag (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7086,53.8338,65.0]},"properties":{"id":"350121","name":"Apperley Bridge","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3237,50.9859,123.0]},"properties":{"id":"350123","name":"Appley","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3333,56.8664,39.0]},"properties":{"id":"350125","name":"Arbuthnott House","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.778,56.0226,19.0]},"properties":{"id":"350131","name":"Ardlussa","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9894,51.1445,165.0]},"properties":{"id":"350139","name":"Arlington Court","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0512,53.5369,10.0]},"properties":{"id":"350145","name":"Armthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5613,51.439,30.0]},"properties":{"id":"350147","name":"Arno's Vale","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5536,50.8547,18.0]},"properties":{"id":"350151","name":"Arundel","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7307,53.0163,118.0]},"properties":{"id":"350155","name":"Ashbourne","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7502,50.5153,78.0]},"properties":{"id":"350156","name":"Ashburton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4671,52.7489,129.0]},"properties":{"id":"350157","name":"Ashby De La Zouch","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6412,53.4867,51.0]},"properties":{"id":"350161","name":"Ashton-In-Makerfield","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.428,53.6064,129.0]},"properties":{"id":"350167","name":"Astley Bridge","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8838,52.5095,99.0]},"properties":{"id":"350169","name":"Aston Villa F.C.","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5423,52.5763,84.0]},"properties":{"id":"350170","name":"Atherstone","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4811,52.584,88.0]},"properties":{"id":"350173","name":"Atterton","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1312,54.4286,63.0]},"properties":{"id":"350179","name":"Augher","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8495,51.429,160.0]},"properties":{"id":"350183","name":"Avebury","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8093,51.326,87.0]},"properties":{"id":"350187","name":"Avon Ski Centre","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6073,55.465,18.0]},"properties":{"id":"350193","name":"Ayr Racecourse","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.531,53.9562,34.0]},"properties":{"id":"350207","name":"Bainton","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1877,51.9888,65.0]},"properties":{"id":"350212","name":"Baldock","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0424,57.0539,218.0]},"properties":{"id":"350217","name":"Ballater Ski Slope","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2777,54.8635,44.0]},"properties":{"id":"350222","name":"Ballymena","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5773,54.5133,12.0]},"properties":{"id":"352496","name":"Maghery Country Park","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1458,54.0619,218.0]},"properties":{"id":"352498","name":"Malham Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3389,52.5958,105.0]},"properties":{"id":"352501","name":"Mallory Park","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1996,53.4224,100.0]},"properties":{"id":"352504","name":"Maltby","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2668,53.3577,74.0]},"properties":{"id":"352508","name":"Manchester Airport","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2041,53.4835,52.0]},"properties":{"id":"352509","name":"Manchester City F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8229,52.5565,117.0]},"properties":{"id":"352512","name":"Maney","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5113,51.485,65.0]},"properties":{"id":"352513","name":"Mangotsfield","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0591,53.7101,210.0]},"properties":{"id":"352514","name":"Mankinholes Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0903,52.5514,5.0]},"properties":{"id":"352530","name":"March","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4063,52.6231,124.0]},"properties":{"id":"352534","name":"Market Bosworth","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0602,53.3971,142.0]},"properties":{"id":"352547","name":"Marple","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0827,51.1158,139.0]},"properties":{"id":"352556","name":"Marwood Hill Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4936,54.7143,8.0]},"properties":{"id":"352559","name":"Maryport","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6542,54.2232,79.0]},"properties":{"id":"352560","name":"Masham","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2147,53.0246,164.0]},"properties":{"id":"352568","name":"May Bank","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2587,56.5666,926.0]},"properties":{"id":"352577","name":"Meall A' Choire Leith","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.112,56.9616,951.0]},"properties":{"id":"352581","name":"Meall Chuaich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.198,56.635,968.0]},"properties":{"id":"352585","name":"Meall Garbh (968m)","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.928,56.9895,917.0]},"properties":{"id":"352591","name":"Meall Na Teanga","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0236,53.1511,220.0]},"properties":{"id":"352597","name":"Meerbrook Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1014,52.9772,198.0]},"properties":{"id":"352600","name":"Meir","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7204,55.5986,88.0]},"properties":{"id":"352605","name":"Melrose","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2664,53.1593,null]},"properties":{"id":"352609","name":"Menai Strait","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2789,53.4928,32.0]},"properties":{"id":"352617","name":"Mexborough","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0664,60.6004,29.0]},"properties":{"id":"352620","name":"Mid Yell","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5239,53.7477,106.0]},"properties":{"id":"352625","name":"Middleton (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2168,55.8812,426.0]},"properties":{"id":"352630","name":"Midlothian Ski Centre","nationalPark":null,"region":"dg","unitaryAuthArea":"Midlothian Council"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5227,55.2112,7.0]},"properties":{"id":"352636","name":"Mill Rest Youth Hostel","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0305,53.4909,139.0]},"properties":{"id":"352637","name":"Millbrook (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4484,50.9158,6.0]},"properties":{"id":"352638","name":"Millbrook (Southampton)","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.128,53.2271,17.0]},"properties":{"id":"350232","name":"Bangor (Gwynedd)","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6662,54.6509,39.0]},"properties":{"id":"350234","name":"Bangor Castle","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1134,53.2292,58.0]},"properties":{"id":"350235","name":"Bangor Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.907,56.0918,34.0]},"properties":{"id":"350239","name":"Bannockburn","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1071,53.5118,130.0]},"properties":{"id":"350242","name":"Bardsley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7462,55.2651,43.0]},"properties":{"id":"350243","name":"Bargany Gardens","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2284,51.6845,199.0]},"properties":{"id":"350244","name":"Bargoed","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0368,52.0272,97.0]},"properties":{"id":"350246","name":"Barley","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9222,54.5451,165.0]},"properties":{"id":"350249","name":"Barnard Castle","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3116,52.084,53.0]},"properties":{"id":"350259","name":"Bartlow","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4417,53.6864,8.0]},"properties":{"id":"350261","name":"Barton-Upon-Humber","nationalPark":null,"region":"yh","unitaryAuthArea":"North Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3412,51.3736,103.0]},"properties":{"id":"350267","name":"Bath Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Bath and North East Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6336,53.7168,59.0]},"properties":{"id":"350269","name":"Batley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7343,51.9996,195.0]},"properties":{"id":"350270","name":"Batsford Arboretum","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.276,55.821,32.0]},"properties":{"id":"350271","name":"Battlefield","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.459,57.4836,2.0]},"properties":{"id":"350279","name":"Beauly","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0907,53.2656,8.0]},"properties":{"id":"350281","name":"Beaumaris","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0582,51.5145,2.0]},"properties":{"id":"350286","name":"Beckton","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.453,51.0751,70.0]},"properties":{"id":"350290","name":"Bedgebury","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0025,50.8541,11.0]},"properties":{"id":"350292","name":"Bedhampton","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4674,52.481,100.0]},"properties":{"id":"350296","name":"Bedworth","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2109,52.9236,29.0]},"properties":{"id":"350299","name":"Beeston (Nottinghamshire)","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5636,53.7738,73.0]},"properties":{"id":"350300","name":"Beeston (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6039,56.3304,940.0]},"properties":{"id":"350310","name":"Beinn A' Chroin","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4284,56.8137,1019.0]},"properties":{"id":"350313","name":"Beinn Bheoil","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6457,56.3252,931.0]},"properties":{"id":"350317","name":"Beinn Chabhair","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.028,56.4502,988.0]},"properties":{"id":"350323","name":"Beinn Eunaich","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5628,56.8941,1045.0]},"properties":{"id":"350330","name":"Beinn Iutharn Mhor","nationalPark":null,"region":"ta","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4006,57.5163,925.0]},"properties":{"id":"350331","name":"Beinn Liath Mhor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9857,57.7059,954.0]},"properties":{"id":"350332","name":"Beinn Liath Mhor Fannaich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0127,56.519,957.0]},"properties":{"id":"350336","name":"Beinn Nan Aighenan","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7853,56.2207,926.0]},"properties":{"id":"350337","name":"Beinn Narnain","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1204,52.6576,52.0]},"properties":{"id":"350350","name":"Belgrave","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.549,56.001,0.0]},"properties":{"id":"350351","name":"Belhaven Bay","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5234,53.7632,72.0]},"properties":{"id":"350354","name":"Belle Isle","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.903,50.5768,330.0]},"properties":{"id":"350356","name":"Bellever Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6049,58.4136,927.0]},"properties":{"id":"350369","name":"Ben Hope","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5399,56.3877,1174.0]},"properties":{"id":"350375","name":"Ben More (Stirling)","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0492,56.5365,1078.0]},"properties":{"id":"350379","name":"Ben Starav","nationalPark":null,"region":"he","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4799,51.2038,25.0]},"properties":{"id":"352651","name":"Minehead","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.474,51.1918,100.0]},"properties":{"id":"352652","name":"Minehead Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4696,54.9647,50.0]},"properties":{"id":"352653","name":"Minnigaff Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6952,53.6799,79.0]},"properties":{"id":"352657","name":"Mirfield","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7108,50.9509,50.0]},"properties":{"id":"352667","name":"Montacute House","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7955,53.8321,120.0]},"properties":{"id":"352670","name":"Moor Head","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7659,53.7504,161.0]},"properties":{"id":"352671","name":"Moor Side","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0921,57.6067,56.0]},"properties":{"id":"352675","name":"Moray Monster Trails Mountain Bike Trail Centre","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8636,54.074,3.0]},"properties":{"id":"352678","name":"Morecambe","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1272,55.9105,113.0]},"properties":{"id":"352679","name":"Moredun","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1098,53.4003,12.0]},"properties":{"id":"352680","name":"Moreton","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5965,53.7443,141.0]},"properties":{"id":"352683","name":"Morley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6859,55.1687,28.0]},"properties":{"id":"352685","name":"Morpeth","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3596,53.3272,98.0]},"properties":{"id":"352687","name":"Mosborough","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4011,53.557,84.0]},"properties":{"id":"352691","name":"Moses Gate","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2133,51.0254,90.0]},"properties":{"id":"352697","name":"Motcombe","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3719,51.6812,109.0]},"properties":{"id":"352704","name":"Mountain Ash","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7396,51.536,4.0]},"properties":{"id":"352708","name":"Mr. B's Amusements Southend-On-Sea","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0651,55.5234,233.0]},"properties":{"id":"352715","name":"Muirkirk","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1855,57.2848,982.0]},"properties":{"id":"352720","name":"Mullach Na Dheiragain","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8642,50.761,14.0]},"properties":{"id":"352728","name":"Muscliff","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5227,53.0669,32.0]},"properties":{"id":"352739","name":"Nantwich","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7975,53.6696,219.0]},"properties":{"id":"352754","name":"Netheroyd Hill","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0142,51.3494,121.0]},"properties":{"id":"352758","name":"New Addington","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.044,53.1032,2.0]},"properties":{"id":"352760","name":"New Bolingbroke","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0421,53.4379,19.0]},"properties":{"id":"352762","name":"New Brighton (Merseyside)","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9993,53.3616,136.0]},"properties":{"id":"352769","name":"New Mills","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0107,53.2081,45.0]},"properties":{"id":"352772","name":"New Ollerton","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0539,53.4398,3.0]},"properties":{"id":"352773","name":"New Palace And Adventureland New Brighton","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1781,52.6465,94.0]},"properties":{"id":"352774","name":"New Parks","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3579,52.2152,14.0]},"properties":{"id":"352776","name":"New Quay","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2765,51.8452,0.0]},"properties":{"id":"352779","name":"New Walton Pier","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1428,51.6648,109.0]},"properties":{"id":"352783","name":"Newbridge","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.778,56.2497,916.0]},"properties":{"id":"350380","name":"Ben Vane","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7515,56.2746,943.0]},"properties":{"id":"350381","name":"Ben Vorlich (Argyll & Bute)","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2117,54.0202,10.0]},"properties":{"id":"350384","name":"Beningbrough Hall","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1446,53.5441,6.0]},"properties":{"id":"350389","name":"Bentley (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0222,52.5854,132.0]},"properties":{"id":"350390","name":"Bentley (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5277,53.3551,232.0]},"properties":{"id":"350393","name":"Bents Green","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1577,57.7196,1.0]},"properties":{"id":"350399","name":"Berneray Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7557,51.1288,40.0]},"properties":{"id":"350406","name":"Bethersden","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0576,53.1787,140.0]},"properties":{"id":"350407","name":"Bethesda","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4576,53.8498,28.0]},"properties":{"id":"350410","name":"Beverley Racecourse","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1487,51.4414,36.0]},"properties":{"id":"350413","name":"Bexley","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1702,53.1189,166.0]},"properties":{"id":"350417","name":"Biddulph","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1595,53.1296,160.0]},"properties":{"id":"350418","name":"Biddulph Grange Gardens","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0344,51.3116,170.0]},"properties":{"id":"350426","name":"Biggin Hill","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4499,51.0224,30.0]},"properties":{"id":"350431","name":"Billingshurst","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1786,53.4282,73.0]},"properties":{"id":"350433","name":"Binbrook","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7357,52.4533,93.0]},"properties":{"id":"350447","name":"Birmingham International Airport","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6611,53.7294,86.0]},"properties":{"id":"350450","name":"Birstall Smithies","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7758,51.5583,27.0]},"properties":{"id":"350453","name":"Bisham Abbey National Sports Centre","nationalPark":null,"region":"se","unitaryAuthArea":"Windsor and Maidenhead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2435,54.5011,305.0]},"properties":{"id":"350465","name":"Black Sail Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1707,50.9703,49.0]},"properties":{"id":"350466","name":"Blackboys Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4874,53.7294,103.0]},"properties":{"id":"350468","name":"Blackburn Rovers F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Blackburn with Darwen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3078,50.5821,64.0]},"properties":{"id":"350470","name":"Blackgang Chine","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0479,53.8056,5.0]},"properties":{"id":"350474","name":"Blackpool F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Blackpool"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1954,51.6677,179.0]},"properties":{"id":"350478","name":"Blackwood","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7326,56.055,120.0]},"properties":{"id":"350483","name":"Blairnairn","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6567,54.9913,100.0]},"properties":{"id":"350484","name":"Blakelaw","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0936,55.7939,65.0]},"properties":{"id":"350489","name":"Blantyre","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8061,52.4029,141.0]},"properties":{"id":"350496","name":"Blossomfield","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7955,53.2327,59.0]},"properties":{"id":"350502","name":"Bodnant Gardens","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.607,56.0172,12.0]},"properties":{"id":"350512","name":"Bo'Ness","nationalPark":null,"region":"ta","unitaryAuthArea":"Falkirk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1291,51.0239,61.0]},"properties":{"id":"350515","name":"Borde Hill Garden","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1494,54.5186,96.0]},"properties":{"id":"350518","name":"Borrowdale Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0496,52.4963,2.0]},"properties":{"id":"350521","name":"Borth Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2982,53.0329,null]},"properties":{"id":"350523","name":"Boston Deeps","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.614,55.0308,59.0]},"properties":{"id":"352791","name":"Newcastle Racecourse","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9309,51.0442,2.0]},"properties":{"id":"352799","name":"Newchurch","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4032,51.9289,40.0]},"properties":{"id":"352800","name":"Newent","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1279,51.8506,0.0]},"properties":{"id":"352801","name":"Newgale","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2899,52.4455,111.0]},"properties":{"id":"352808","name":"Newnham Paddox Art Park","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9392,56.4405,14.0]},"properties":{"id":"352815","name":"Newport-On-Tay","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3348,54.1707,5.0]},"properties":{"id":"352817","name":"Newry","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1839,53.0762,103.0]},"properties":{"id":"352818","name":"Newstead Abbey","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5927,50.5418,7.0]},"properties":{"id":"352823","name":"Newton Abbot Racecourse","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1832,53.4993,81.0]},"properties":{"id":"352825","name":"Newton Heath","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6914,53.6999,119.0]},"properties":{"id":"352843","name":"Norristhorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4476,55.0107,36.0]},"properties":{"id":"352852","name":"North Shields","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.212,51.0394,48.0]},"properties":{"id":"352858","name":"Northam","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8379,51.6649,22.0]},"properties":{"id":"352859","name":"Northend","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3386,51.4406,22.0]},"properties":{"id":"352864","name":"Northfleet","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2196,52.9775,120.0]},"properties":{"id":"352866","name":"Northwood (Staffordshire)","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7817,54.1326,21.0]},"properties":{"id":"352868","name":"Norton (North Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4673,53.3319,195.0]},"properties":{"id":"352869","name":"Norton (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5157,54.18,29.0]},"properties":{"id":"352871","name":"Norton Conyers","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4727,53.3428,156.0]},"properties":{"id":"352873","name":"Norton Woodseats","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1026,52.9444,21.0]},"properties":{"id":"352880","name":"Nottingham Racecourse","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1243,53.3937,86.0]},"properties":{"id":"352893","name":"Offerton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.286,53.4566,29.0]},"properties":{"id":"352898","name":"Old Trafford Lancashire C.C.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0145,52.5046,150.0]},"properties":{"id":"352899","name":"Oldbury","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.392,55.8488,26.0]},"properties":{"id":"352901","name":"Oldhall","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3842,54.9915,224.0]},"properties":{"id":"352908","name":"Once Brewed Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5096,53.7991,63.0]},"properties":{"id":"352915","name":"Osmondthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5774,53.6809,102.0]},"properties":{"id":"352917","name":"Ossett","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6903,53.9056,59.0]},"properties":{"id":"352921","name":"Otley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2791,50.7521,54.0]},"properties":{"id":"352922","name":"Ottery St. Mary","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7467,60.4257,9.0]},"properties":{"id":"352925","name":"Out Skerries Airstrip","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8764,53.743,183.0]},"properties":{"id":"352927","name":"Ovenden","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2295,51.7629,76.0]},"properties":{"id":"352933","name":"Oxford Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8133,53.6477,159.0]},"properties":{"id":"352937","name":"Paddock","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0714,55.8062,54.0]},"properties":{"id":"350529","name":"Bothwell","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2692,50.9148,8.0]},"properties":{"id":"350530","name":"Botley","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6729,52.4234,80.0]},"properties":{"id":"350531","name":"Boughton House","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3655,53.378,60.0]},"properties":{"id":"350539","name":"Bowgreen","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0377,51.4272,96.0]},"properties":{"id":"350543","name":"Bowood House & Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3874,51.757,39.0]},"properties":{"id":"350544","name":"Boyton Cross","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4055,57.3603,9.0]},"properties":{"id":"350545","name":"Bracadale","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7821,51.4142,67.0]},"properties":{"id":"350548","name":"Bracknell Ski & Snowboard Centre","nationalPark":null,"region":"se","unitaryAuthArea":"Bracknell Forest"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1736,53.0594,141.0]},"properties":{"id":"350549","name":"Bradeley","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8458,52.6396,57.0]},"properties":{"id":"350550","name":"Bradenham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3743,53.4329,44.0]},"properties":{"id":"350553","name":"Bradgate","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3679,53.5745,99.0]},"properties":{"id":"350554","name":"Bradley Fold","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7288,57.0749,1296.0]},"properties":{"id":"350560","name":"Braeriach","nationalPark":null,"region":"he","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7263,56.8332,1069.0]},"properties":{"id":"350562","name":"Braigh Coire Chruinn-Bhalgain","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7349,54.9425,69.0]},"properties":{"id":"350567","name":"Brampton","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4085,56.3929,92.0]},"properties":{"id":"350572","name":"Branklyn Gardens","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1764,52.6177,81.0]},"properties":{"id":"350577","name":"Braunstone","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3962,53.5825,75.0]},"properties":{"id":"350582","name":"Breightmet","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2935,51.5927,81.0]},"properties":{"id":"350585","name":"Brentwood Leisure Park","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7046,53.297,322.0]},"properties":{"id":"350587","name":"Bretton Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5757,51.5039,24.0]},"properties":{"id":"350592","name":"Bridgend (Bridgend)","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1971,54.0851,9.0]},"properties":{"id":"350597","name":"Bridlington","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5001,53.3631,148.0]},"properties":{"id":"350605","name":"Brincliffe","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1303,53.4305,86.0]},"properties":{"id":"350607","name":"Brinnington","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5501,51.4319,29.0]},"properties":{"id":"350608","name":"Brislington","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0016,52.4775,197.0]},"properties":{"id":"350609","name":"Bristnall Fields","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5802,51.5177,57.0]},"properties":{"id":"350611","name":"Bristol Filton Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.714,51.3829,185.0]},"properties":{"id":"350612","name":"Bristol International Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8231,51.6317,7.0]},"properties":{"id":"350615","name":"Briton Ferry","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0939,51.7853,20.0]},"properties":{"id":"350617","name":"Broad Haven Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5743,50.8184,18.0]},"properties":{"id":"350629","name":"Brockenhurst","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1278,51.405,60.0]},"properties":{"id":"350638","name":"Bromley Ski Centre","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2023,54.8938,65.0]},"properties":{"id":"350649","name":"Broughshane","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3934,52.0458,129.0]},"properties":{"id":"350650","name":"Broughton Castle","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0514,54.8372,2.0]},"properties":{"id":"350651","name":"Broughton House (Kirkcudbright)","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2099,54.2775,18.0]},"properties":{"id":"350652","name":"Broughton In Furness","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8411,53.1395,17.0]},"properties":{"id":"350658","name":"Bruera","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0293,56.1745,22.0]},"properties":{"id":"350665","name":"Buckhaven","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.319,50.6305,30.0]},"properties":{"id":"350668","name":"Budleigh Salterton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4457,52.4551,5.0]},"properties":{"id":"350670","name":"Bungay","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6892,50.8238,65.0]},"properties":{"id":"350677","name":"Burley Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0857,51.4818,41.0]},"properties":{"id":"352944","name":"Pangbourne","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.448,53.3831,100.0]},"properties":{"id":"352952","name":"Park Hill","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4273,55.9197,38.0]},"properties":{"id":"352954","name":"Parkhall","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3092,55.8742,17.0]},"properties":{"id":"352959","name":"Partick","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4322,51.0354,79.0]},"properties":{"id":"352962","name":"Pashley Manor Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5593,51.5357,65.0]},"properties":{"id":"352963","name":"Patchway","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0218,54.6953,113.0]},"properties":{"id":"352966","name":"Patterson's Spade Mill (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0036,50.7927,35.0]},"properties":{"id":"352969","name":"Peacehaven","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3806,53.4745,22.0]},"properties":{"id":"352973","name":"Peel Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5245,50.365,131.0]},"properties":{"id":"352975","name":"Pelynt","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1722,51.4384,49.0]},"properties":{"id":"352980","name":"Penarth","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6818,50.8895,51.0]},"properties":{"id":"352986","name":"Pendomer","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4109,50.9221,54.0]},"properties":{"id":"352987","name":"Penhurst","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.377,52.0523,103.0]},"properties":{"id":"352993","name":"Penrhiw-Llan","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1336,52.5002,134.0]},"properties":{"id":"352995","name":"Pensnett","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5584,50.1193,51.0]},"properties":{"id":"353002","name":"Penzance Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1585,50.3437,47.0]},"properties":{"id":"353005","name":"Perranporth Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3274,54.7623,110.0]},"properties":{"id":"353009","name":"Peterlee","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8317,55.1467,52.0]},"properties":{"id":"353019","name":"Pinwherry","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3369,51.9738,63.0]},"properties":{"id":"353020","name":"Pirton","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4569,53.4023,112.0]},"properties":{"id":"353026","name":"Pitsmoor","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2167,53.2015,26.0]},"properties":{"id":"353030","name":"Plas Newydd (Anglesey)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9151,53.1028,187.0]},"properties":{"id":"353032","name":"Plas-Y-Brenin National Centre For The Mountains","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7378,52.5945,1.0]},"properties":{"id":"353035","name":"Pleasure Beach Great Yarmouth","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7418,52.5045,9.0]},"properties":{"id":"353037","name":"Pleasurewood Hills Theme Park Lowestoft","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0037,52.5734,123.0]},"properties":{"id":"353038","name":"Pleck","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7773,53.9308,35.0]},"properties":{"id":"353046","name":"Pocklington","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2454,50.8235,20.0]},"properties":{"id":"353047","name":"Polegate","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3787,51.2568,123.0]},"properties":{"id":"353048","name":"Polesden Lacey","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2998,55.8191,19.0]},"properties":{"id":"353051","name":"Pollokshaws","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.852,51.72,38.0]},"properties":{"id":"353056","name":"Pontardawe","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0359,51.7119,17.0]},"properties":{"id":"353057","name":"Pontarddulais","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0272,51.6987,113.0]},"properties":{"id":"353064","name":"Pontypool Ski Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Torfaen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7381,54.076,39.0]},"properties":{"id":"353077","name":"Port St. Mary","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4445,54.4216,26.0]},"properties":{"id":"353078","name":"Portadown","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5472,54.3808,0.0]},"properties":{"id":"353079","name":"Portaferry","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4059,51.6131,96.0]},"properties":{"id":"353082","name":"Porth","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4153,53.565,86.0]},"properties":{"id":"350680","name":"Burnden","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5484,52.8224,74.0]},"properties":{"id":"350688","name":"Burton Coggles","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3569,51.6472,80.0]},"properties":{"id":"350694","name":"Bushey","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5214,55.2078,7.0]},"properties":{"id":"350695","name":"Bushmills","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6871,51.0991,27.0]},"properties":{"id":"350696","name":"Butleigh","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8857,52.4151,317.0]},"properties":{"id":"350701","name":"Bwlch Nant Yr Arian","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5826,57.138,1090.0]},"properties":{"id":"350704","name":"Bynack More","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3688,55.3132,237.0]},"properties":{"id":"350705","name":"Byrness Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.339,56.8955,1064.0]},"properties":{"id":"350715","name":"Cairn Of Claise","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7495,51.5911,10.0]},"properties":{"id":"350720","name":"Caldicot","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3146,50.5018,156.0]},"properties":{"id":"350723","name":"Callington","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0025,51.4389,71.0]},"properties":{"id":"350724","name":"Calne","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7413,51.3349,84.0]},"properties":{"id":"350726","name":"Camberley","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1425,51.5392,25.0]},"properties":{"id":"350734","name":"Camden Town","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6812,50.6216,219.0]},"properties":{"id":"350735","name":"Camelford","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5758,55.0425,67.0]},"properties":{"id":"350739","name":"Camperdown","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3582,53.4109,42.0]},"properties":{"id":"350742","name":"Canklow","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2018,51.4724,9.0]},"properties":{"id":"350759","name":"Cardiff City F.C.","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4658,56.8729,975.0]},"properties":{"id":"350776","name":"Carn A' Gheoidh","nationalPark":null,"region":"gr","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2223,56.6221,1029.0]},"properties":{"id":"350790","name":"Carn Gorm","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1442,56.6348,1042.0]},"properties":{"id":"350794","name":"Carn Mairg","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0223,57.3648,992.0]},"properties":{"id":"350798","name":"Carn Nan Gobhar (Loch Mullardoch)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7667,54.1272,22.0]},"properties":{"id":"350800","name":"Carnforth","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7017,56.5026,9.0]},"properties":{"id":"350801","name":"Carnoustie","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7238,56.4923,3.0]},"properties":{"id":"350802","name":"Carnoustie Golf Links","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3329,55.2387,55.0]},"properties":{"id":"350806","name":"Carrick-A-Rede Rope Bridge (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.7256,54.4765,68.0]},"properties":{"id":"350813","name":"Castle Archdale Country Park","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7903,52.5025,104.0]},"properties":{"id":"350815","name":"Castle Bromwich","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.6149,54.3373,53.0]},"properties":{"id":"350819","name":"Castle Coole (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6015,51.9941,60.0]},"properties":{"id":"350822","name":"Castle Hedingham Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0772,52.5813,130.0]},"properties":{"id":"353088","name":"Portobello (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1059,50.7983,1.0]},"properties":{"id":"353091","name":"Portsea","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2072,50.8297,10.0]},"properties":{"id":"353092","name":"Portslade-By-Sea","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0659,50.7967,6.0]},"properties":{"id":"353093","name":"Portsmouth F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9041,50.5948,356.0]},"properties":{"id":"353099","name":"Postbridge","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4981,50.9779,98.0]},"properties":{"id":"353107","name":"Poyntington","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4063,53.3363,4.0]},"properties":{"id":"353112","name":"Prestatyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1379,50.8404,54.0]},"properties":{"id":"353114","name":"Preston Manor","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1589,55.9331,49.0]},"properties":{"id":"353116","name":"Prestonfield","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3416,51.3626,157.0]},"properties":{"id":"353122","name":"Prior Park Bath","nationalPark":null,"region":"sw","unitaryAuthArea":"Bath and North East Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8457,54.9621,89.0]},"properties":{"id":"353126","name":"Prudhoe","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5091,50.9568,7.0]},"properties":{"id":"353128","name":"Pulborough","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.069,52.0067,143.0]},"properties":{"id":"353129","name":"Pwll Deri Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6919,51.5284,38.0]},"properties":{"id":"353131","name":"Pyle","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3976,55.99,21.0]},"properties":{"id":"353135","name":"Queensferry (Edinburgh)","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5682,51.6447,21.0]},"properties":{"id":"353142","name":"R.H.S. Garden Hyde Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3193,54.7501,32.0]},"properties":{"id":"353160","name":"Randalstown","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6065,51.5859,62.0]},"properties":{"id":"353174","name":"Rayleigh","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7114,51.2482,26.0]},"properties":{"id":"353176","name":"Redbridge","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0516,54.6155,1.0]},"properties":{"id":"353178","name":"Redcar","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0609,54.6057,9.0]},"properties":{"id":"353179","name":"Redcar Racecourse","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1683,51.2387,80.0]},"properties":{"id":"353184","name":"Redhill (Surrey)","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6797,57.9242,42.0]},"properties":{"id":"353196","name":"Rhenigidale Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3022,51.4609,9.0]},"properties":{"id":"353202","name":"Richmond (Greater London)","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4726,51.6383,47.0]},"properties":{"id":"353207","name":"Rickmansworth","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7834,50.8477,20.0]},"properties":{"id":"353212","name":"Ringwood","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0985,51.6108,65.0]},"properties":{"id":"353218","name":"Risca","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.008,53.4791,12.0]},"properties":{"id":"353223","name":"Robin Hood Doncaster Sheffield Airport","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5084,51.3875,6.0]},"properties":{"id":"353225","name":"Rochester","nationalPark":null,"region":"se","unitaryAuthArea":"Medway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7051,52.5141,130.0]},"properties":{"id":"353230","name":"Rockingham Motor Speedway","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1799,51.5766,12.0]},"properties":{"id":"353233","name":"Romford","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1737,54.2395,68.0]},"properties":{"id":"353238","name":"Rosslea","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5776,54.3666,54.0]},"properties":{"id":"350825","name":"Castle Ward (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7784,53.3377,312.0]},"properties":{"id":"350832","name":"Castleton Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0065,52.4847,176.0]},"properties":{"id":"350843","name":"Causeway Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8266,50.5445,11.0]},"properties":{"id":"350855","name":"Chapel Amble","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3128,53.5493,117.0]},"properties":{"id":"350856","name":"Chapel Field","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3387,53.2235,4.0]},"properties":{"id":"350858","name":"Chapel St. Leonards","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4783,51.8741,118.0]},"properties":{"id":"350863","name":"Charlbury","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1572,50.7836,29.0]},"properties":{"id":"350867","name":"Charleston Manor","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.09,51.2445,154.0]},"properties":{"id":"350870","name":"Chartwell","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1917,53.3799,59.0]},"properties":{"id":"350877","name":"Cheadle Hulme","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.696,50.2727,34.0]},"properties":{"id":"350902","name":"Chillington","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1147,51.4576,47.0]},"properties":{"id":"350904","name":"Chippenham","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9464,51.9217,100.0]},"properties":{"id":"350938","name":"Claydon House","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.384,53.7784,112.0]},"properties":{"id":"350942","name":"Clayton-Le-Moors","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.706,53.7228,74.0]},"properties":{"id":"350945","name":"Cleckheaton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8344,51.4424,84.0]},"properties":{"id":"350951","name":"Clevedon Court","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0259,52.4262,190.0]},"properties":{"id":"350961","name":"Clun Mill Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4035,55.9001,5.0]},"properties":{"id":"350964","name":"Clydebank","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3638,53.0203,32.0]},"properties":{"id":"350965","name":"Clynnog-Fawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3662,52.7242,162.0]},"properties":{"id":"350967","name":"Coalville","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3666,54.6631,44.0]},"properties":{"id":"350970","name":"Cockermouth","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4961,53.831,93.0]},"properties":{"id":"353248","name":"Roundhay","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6422,56.1603,28.0]},"properties":{"id":"353252","name":"Rowardennan Youth Hostel","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8706,53.2287,146.0]},"properties":{"id":"353253","name":"Rowen Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4919,54.9394,186.0]},"properties":{"id":"353254","name":"Rowfoot","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0446,52.4883,210.0]},"properties":{"id":"353255","name":"Rowley Regis","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2669,51.1318,112.0]},"properties":{"id":"353270","name":"Royal Tunbridge Wells","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0149,52.3958,201.0]},"properties":{"id":"353277","name":"Rubery","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9345,52.7612,77.0]},"properties":{"id":"353280","name":"Rugeley","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1229,51.5084,30.0]},"properties":{"id":"353281","name":"Rumney","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2303,52.3971,38.0]},"properties":{"id":"353283","name":"Rushall (Norfolk)","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6249,54.8164,158.0]},"properties":{"id":"353298","name":"Sacriston","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2114,50.3116,130.0]},"properties":{"id":"353303","name":"St Agnes Leisure Park","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2866,51.9011,57.0]},"properties":{"id":"353314","name":"St David's Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1025,49.1843,16.0]},"properties":{"id":"353319","name":"St Helier","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5613,50.8546,28.0]},"properties":{"id":"353323","name":"St Leonards","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7884,55.9574,63.0]},"properties":{"id":"353326","name":"St Mary's Pleasance Haddington","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5134,52.8258,28.0]},"properties":{"id":"353360","name":"Sandringham House","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9714,52.504,157.0]},"properties":{"id":"353361","name":"Sandwell","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4103,51.0975,66.0]},"properties":{"id":"353378","name":"Scotney Castle Garden","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7054,54.5734,7.0]},"properties":{"id":"353381","name":"Scrabo Golf Club","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.669,51.7378,47.0]},"properties":{"id":"350974","name":"Colby Woodland Garden","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5288,52.613,83.0]},"properties":{"id":"350985","name":"Collyweston","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7506,54.318,119.0]},"properties":{"id":"351004","name":"Constable Burton Hall","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.29,55.9431,49.0]},"properties":{"id":"351017","name":"Corstorphine","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2753,55.9536,124.0]},"properties":{"id":"351018","name":"Corstorphine Hill","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8193,53.83,110.0]},"properties":{"id":"351025","name":"Cottingley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4771,52.4288,88.0]},"properties":{"id":"351031","name":"Court House Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1897,52.416,11.0]},"properties":{"id":"351032","name":"Coveney","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3404,56.1144,127.0]},"properties":{"id":"351036","name":"Cowdenbeath","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4004,52.1203,100.0]},"properties":{"id":"351040","name":"Cradley (Herefordshire)","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0861,52.4595,129.0]},"properties":{"id":"351041","name":"Cradley (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7258,57.6102,53.0]},"properties":{"id":"351047","name":"Craig Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.372,54.4474,35.0]},"properties":{"id":"351048","name":"Craigavon","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2982,55.9752,27.0]},"properties":{"id":"351056","name":"Cramond","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9279,50.9194,58.0]},"properties":{"id":"351058","name":"Cranborne Manor Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5393,51.0951,70.0]},"properties":{"id":"351059","name":"Cranbrook","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8319,52.4398,118.0]},"properties":{"id":"351063","name":"Craven Arms","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1657,57.1216,947.0]},"properties":{"id":"351065","name":"Creag A' Mhaim","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4179,50.7046,27.0]},"properties":{"id":"351072","name":"Crealy Adventure Park Devon","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5328,51.4556,70.0]},"properties":{"id":"351077","name":"Crew's Hole","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6057,56.3889,181.0]},"properties":{"id":"351078","name":"Crianlarich Youth Hostel","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2324,52.9193,21.0]},"properties":{"id":"351079","name":"Criccieth","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1342,51.8561,83.0]},"properties":{"id":"351080","name":"Crickhowell","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9345,57.619,11.0]},"properties":{"id":"351083","name":"Crimonmogate","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3611,53.4573,21.0]},"properties":{"id":"351086","name":"Crofts Bank","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3905,58.3299,152.0]},"properties":{"id":"351087","name":"Crofts Of Benachielt","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0881,51.795,146.0]},"properties":{"id":"351099","name":"Cross Hands","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.955,53.6708,2.0]},"properties":{"id":"351101","name":"Crossens","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7326,51.9962,111.0]},"properties":{"id":"351105","name":"Crosswell","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.888,53.4414,21.0]},"properties":{"id":"351113","name":"Croxteth Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0702,51.4213,88.0]},"properties":{"id":"351119","name":"Crystal Palace National Sports Centre","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2336,57.2272,973.0]},"properties":{"id":"353417","name":"Sgurr A' Ghreadaidh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2357,57.214,986.0]},"properties":{"id":"353428","name":"Sgurr Dearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.257,57.7998,1059.0]},"properties":{"id":"353433","name":"Sgurr Fiona","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3486,57.0268,1003.0]},"properties":{"id":"353434","name":"Sgurr Mor (1003m)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4529,57.0127,1040.0]},"properties":{"id":"353440","name":"Sgurr Na Ciche","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4482,56.9347,956.0]},"properties":{"id":"353449","name":"Sgurr Nan Coireachan (Glen Finnan)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1005,57.1774,1110.0]},"properties":{"id":"353450","name":"Sgurr Nan Conbhairean","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7658,51.4396,1.0]},"properties":{"id":"353466","name":"Sheerness","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4686,53.3809,84.0]},"properties":{"id":"353467","name":"Sheffield","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4604,53.4246,124.0]},"properties":{"id":"353468","name":"Sheffield Lane Top","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4711,53.4,144.0]},"properties":{"id":"353470","name":"Sheffield Ski Village","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1616,51.4657,100.0]},"properties":{"id":"353475","name":"Sheldon Manor","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1668,52.9264,70.0]},"properties":{"id":"353483","name":"Sheringham Park","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8552,52.535,117.0]},"properties":{"id":"353508","name":"Short Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3904,50.8548,54.0]},"properties":{"id":"351127","name":"Cullompton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7021,54.8512,197.0]},"properties":{"id":"351133","name":"Cumrew","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4838,52.236,30.0]},"properties":{"id":"351135","name":"Curlew Green","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9354,52.5743,165.0]},"properties":{"id":"351143","name":"Daisy Bank","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5579,54.5235,50.0]},"properties":{"id":"351164","name":"Darlington","nationalPark":null,"region":"ne","unitaryAuthArea":"Darlington"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4632,50.5818,22.0]},"properties":{"id":"351177","name":"Dawlish","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6514,53.5743,160.0]},"properties":{"id":"351188","name":"Denby Dale","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6221,57.0652,1155.0]},"properties":{"id":"351197","name":"Derry Cairngorm","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2258,53.0317,156.0]},"properties":{"id":"351209","name":"Dimsdale","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2145,51.4334,13.0]},"properties":{"id":"351210","name":"Dinas Powys","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.379,52.8296,89.0]},"properties":{"id":"351225","name":"Donington Park","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0487,51.3295,139.0]},"properties":{"id":"351234","name":"Down House","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7846,50.825,141.0]},"properties":{"id":"351236","name":"Down St. Mary","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7266,54.3117,8.0]},"properties":{"id":"351240","name":"Downpatrick Racecourse","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3032,55.8362,29.0]},"properties":{"id":"351270","name":"Dumbreck","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9733,56.4759,81.0]},"properties":{"id":"351275","name":"Dundee F.C.","nationalPark":null,"region":"ta","unitaryAuthArea":"Dundee"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.6779,52.5215,19.0]},"properties":{"id":"353558","name":"Somerleyton Hall & Gardens","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.5999,56.8337,null]},"properties":{"id":"353568","name":"Sound Of Mingulay","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7942,50.7243,22.0]},"properties":{"id":"353599","name":"Southbourne","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0087,53.6455,4.0]},"properties":{"id":"353604","name":"Southport","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2295,55.8872,82.0]},"properties":{"id":"353626","name":"Springburn","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2746,54.1015,200.0]},"properties":{"id":"353640","name":"Stainforth (North Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3876,51.0383,64.0]},"properties":{"id":"353647","name":"Standon","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6179,50.2739,null]},"properties":{"id":"353663","name":"Start Bay","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7724,50.9931,39.0]},"properties":{"id":"353666","name":"Stedham","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2609,55.9333,49.0]},"properties":{"id":"353668","name":"Stenhouse","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.044,51.5175,12.0]},"properties":{"id":"353669","name":"Stepney","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.697,50.6818,100.0]},"properties":{"id":"353670","name":"Steps Bridge Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9445,56.1268,67.0]},"properties":{"id":"353676","name":"Stirling Youth Hostel (Union Street)","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.583,56.3128,59.0]},"properties":{"id":"351285","name":"Dunning","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5188,51.8852,144.0]},"properties":{"id":"351288","name":"Dunstable","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9,50.7564,34.0]},"properties":{"id":"351311","name":"East Howe","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4828,53.682,41.0]},"properties":{"id":"351318","name":"East Moor","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9616,53.3171,32.0]},"properties":{"id":"351326","name":"Eastham","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.307,53.0178,93.0]},"properties":{"id":"351330","name":"Eastwood (Nottinghamshire)","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7143,53.8224,144.0]},"properties":{"id":"351337","name":"Eccleshill","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5276,54.4808,47.0]},"properties":{"id":"351365","name":"Egremont","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8206,56.1905,10.0]},"properties":{"id":"351368","name":"Elie","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.659,53.1443,277.0]},"properties":{"id":"351380","name":"Elton Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2658,51.3356,43.0]},"properties":{"id":"351391","name":"Epsom","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4611,55.9093,19.0]},"properties":{"id":"351397","name":"Erskine","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0048,55.0758,78.0]},"properties":{"id":"351406","name":"Evertown","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6395,51.1308,286.0]},"properties":{"id":"351416","name":"Exford Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1862,52.6123,5.0]},"properties":{"id":"351419","name":"Eye (Peterborough)","nationalPark":null,"region":"ee","unitaryAuthArea":"Peterborough"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.163,53.5079,94.0]},"properties":{"id":"351423","name":"Failsworth","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2674,53.5969,99.0]},"properties":{"id":"351425","name":"Fairfield (Nr Bury)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5376,56.371,1165.0]},"properties":{"id":"353682","name":"Stob Binnein","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.95,56.6525,925.0]},"properties":{"id":"353684","name":"Stob Choire Raineach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0105,56.6379,1072.0]},"properties":{"id":"353689","name":"Stob Coire Sgreamhach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3729,53.5452,60.0]},"properties":{"id":"353710","name":"Stoneclough","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1052,52.6157,90.0]},"properties":{"id":"353717","name":"Stoneygate","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4528,50.9178,40.0]},"properties":{"id":"353721","name":"Storrington","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7244,52.1811,34.0]},"properties":{"id":"353733","name":"Stratford Racecourse","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7416,51.1242,19.0]},"properties":{"id":"353740","name":"Street","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3021,58.961,33.0]},"properties":{"id":"353746","name":"Stromness Youth Hostel","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6394,59.1549,12.0]},"properties":{"id":"353747","name":"Stronsay Airfield","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6152,53.4989,44.0]},"properties":{"id":"353753","name":"Stubshaw Cross","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3872,54.9141,24.0]},"properties":{"id":"353767","name":"Sunderland A.F.C.","nationalPark":null,"region":"ne","unitaryAuthArea":"Sunderland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4134,54.8812,60.0]},"properties":{"id":"353768","name":"Sunderland Ski Centre","nationalPark":null,"region":"ne","unitaryAuthArea":"Sunderland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.316,53.4883,43.0]},"properties":{"id":"353795","name":"Swinton (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3149,51.4749,4.0]},"properties":{"id":"353800","name":"Syon House","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8584,56.7151,85.0]},"properties":{"id":"353810","name":"Tannadice","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1568,51.6389,110.0]},"properties":{"id":"353832","name":"Tetbury","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7103,53.5324,90.0]},"properties":{"id":"351437","name":"Far Moor","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6008,53.7811,57.0]},"properties":{"id":"351438","name":"Far Royds","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5832,51.6581,100.0]},"properties":{"id":"351440","name":"Faringdon","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.265,52.9095,70.0]},"properties":{"id":"351450","name":"Felbrigg Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5211,52.486,8.0]},"properties":{"id":"351452","name":"Feltwell","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6214,55.9253,70.0]},"properties":{"id":"351465","name":"Finlaystone House","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1016,57.6101,933.0]},"properties":{"id":"351468","name":"Fionn Bheinn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9499,52.0146,null]},"properties":{"id":"351474","name":"Fishguard Bay","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2929,53.5855,84.0]},"properties":{"id":"351476","name":"Fishpool","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8876,56.6436,65.0]},"properties":{"id":"351502","name":"Forfar","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0522,60.1231,45.0]},"properties":{"id":"351510","name":"Foula Airstrip","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2175,51.4731,1.0]},"properties":{"id":"351527","name":"Fulham F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5362,53.3668,213.0]},"properties":{"id":"351529","name":"Fulwood","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2541,57.041,919.0]},"properties":{"id":"351533","name":"Gairich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2432,53.3926,39.0]},"properties":{"id":"351549","name":"Gatley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3725,57.0583,926.0]},"properties":{"id":"351555","name":"Geal Charn (926m)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8007,52.4607,134.0]},"properties":{"id":"351566","name":"Gilbertstone","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3696,56.8722,1068.0]},"properties":{"id":"351578","name":"Glas Maol","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5937,55.5082,7.0]},"properties":{"id":"351583","name":"Glasgow Prestwick Airport","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7328,53.8427,126.0]},"properties":{"id":"353837","name":"Thackley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7314,52.5591,77.0]},"properties":{"id":"353843","name":"The Belfry Golf Club","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1021,51.0172,15.0]},"properties":{"id":"353851","name":"The County Ground Somerset C.C.C.","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2735,55.66,30.0]},"properties":{"id":"353860","name":"The Hirsel","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3255,50.9233,58.0]},"properties":{"id":"353868","name":"Hampshire C.C.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0423,54.5596,464.0]},"properties":{"id":"353878","name":"Thirlmere Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3606,54.232,33.0]},"properties":{"id":"353879","name":"Thirsk Racecourse","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7678,55.2459,67.0]},"properties":{"id":"353885","name":"Thornhill (Dumfries & Galloway)","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3121,52.0822,58.0]},"properties":{"id":"353897","name":"Three Counties Showground","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6611,51.2393,110.0]},"properties":{"id":"353911","name":"Tidworth","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0067,57.3425,301.0]},"properties":{"id":"353937","name":"Tomatin Distillery","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1953,53.5586,108.0]},"properties":{"id":"353945","name":"Top Of Hebers","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1013,53.3784,94.0]},"properties":{"id":"353949","name":"Torkington","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9707,52.1294,88.0]},"properties":{"id":"353965","name":"Towcester Racecourse","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5359,51.6746,183.0]},"properties":{"id":"353974","name":"Treherbert","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2909,57.221,28.0]},"properties":{"id":"351594","name":"Glenbrittle Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8254,56.6246,617.0]},"properties":{"id":"351596","name":"Glencoe Mountain Resort","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1816,56.8694,258.0]},"properties":{"id":"351599","name":"Glendoll Youth Hostel","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1151,50.1062,40.0]},"properties":{"id":"351600","name":"Glendurgan Garden","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1382,55.6513,244.0]},"properties":{"id":"351604","name":"Glentress","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2347,57.0957,1035.0]},"properties":{"id":"351606","name":"Gleouraich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1637,51.8937,25.0]},"properties":{"id":"351609","name":"Gloucestershire Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0561,50.8798,53.0]},"properties":{"id":"351611","name":"Glyndebourne","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2545,52.7851,99.0]},"properties":{"id":"351612","name":"Gnosall","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6113,51.1853,46.0]},"properties":{"id":"351613","name":"Godalming","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5968,53.4752,38.0]},"properties":{"id":"351617","name":"Golborne","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0197,52.5395,140.0]},"properties":{"id":"351620","name":"Golds Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9747,57.9736,1.0]},"properties":{"id":"351622","name":"Golspie","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3176,53.2895,24.0]},"properties":{"id":"351623","name":"Goltho House Gardens","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6477,53.528,32.0]},"properties":{"id":"351628","name":"Goose Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2484,55.8517,2.0]},"properties":{"id":"351629","name":"Gorbals","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0417,51.6476,18.0]},"properties":{"id":"351639","name":"Gowerton","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9305,52.548,150.0]},"properties":{"id":"351657","name":"Great Barr","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9792,52.5366,50.0]},"properties":{"id":"351663","name":"Great Ellingham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7979,53.7838,186.0]},"properties":{"id":"351667","name":"Great Horton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4792,53.3283,184.0]},"properties":{"id":"351681","name":"Greenhill","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1891,53.1812,90.0]},"properties":{"id":"351684","name":"Greenwood Forest Park (Y Felinheli)","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5544,54.5345,18.0]},"properties":{"id":"351688","name":"Grey Abbey Physic Garden","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5131,57.8826,null]},"properties":{"id":"351695","name":"Gruinard Bay","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2204,57.4052,58.0]},"properties":{"id":"351716","name":"Haddo House","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.5044,52.3429,11.0]},"properties":{"id":"351728","name":"Halesworth","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8414,52.4271,140.0]},"properties":{"id":"351732","name":"Hall Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5048,51.6593,159.0]},"properties":{"id":"353981","name":"Treorchy","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0203,50.5269,20.0]},"properties":{"id":"353987","name":"Treyarnon Bay Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7981,50.7284,9.0]},"properties":{"id":"353995","name":"Tuckton","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3508,57.5846,87.0]},"properties":{"id":"354014","name":"Uig Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1567,57.8971,7.0]},"properties":{"id":"354015","name":"Ullapool Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4807,51.2958,117.0]},"properties":{"id":"354030","name":"Upton (Hampshire)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9217,53.882,122.0]},"properties":{"id":"354038","name":"Utley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8353,50.5162,5.0]},"properties":{"id":"354046","name":"Wadebridge","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3977,53.5236,85.0]},"properties":{"id":"354055","name":"Walkden","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5278,54.9914,26.0]},"properties":{"id":"354063","name":"Wallsend","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0043,51.6846,20.0]},"properties":{"id":"354070","name":"Waltham Abbey","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2044,51.4571,20.0]},"properties":{"id":"354075","name":"Wandsworth","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.425,51.5884,91.0]},"properties":{"id":"354077","name":"Wantage","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0772,53.5537,246.0]},"properties":{"id":"354100","name":"Watersheddings","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3888,51.6561,63.0]},"properties":{"id":"354101","name":"Watford (Hertfordshire)","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0206,52.5526,137.0]},"properties":{"id":"354109","name":"Wednesbury","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8581,56.5244,121.0]},"properties":{"id":"354112","name":"Wellbank","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7894,52.4488,103.0]},"properties":{"id":"354114","name":"Wells Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3033,51.5501,41.0]},"properties":{"id":"354121","name":"Wembley","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.085,50.317,0.0]},"properties":{"id":"354122","name":"Wembury","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1854,53.2889,150.0]},"properties":{"id":"351759","name":"Hare Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1066,52.8586,71.0]},"properties":{"id":"351764","name":"Harlech","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3404,51.5801,64.0]},"properties":{"id":"351771","name":"Harrow","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3802,53.6022,130.0]},"properties":{"id":"351775","name":"Harwood","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3887,53.6047,124.0]},"properties":{"id":"351776","name":"Harwood Lee","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2215,51.7629,85.0]},"properties":{"id":"351781","name":"Hatfield (Hertfordshire)","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9675,51.8015,10.0]},"properties":{"id":"351791","name":"Haverfordwest","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8235,52.4634,122.0]},"properties":{"id":"351800","name":"Hay Mills","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3628,53.5075,51.0]},"properties":{"id":"351810","name":"Hazelhurst","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5743,53.8179,79.0]},"properties":{"id":"351811","name":"Headingley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.178,53.6383,225.0]},"properties":{"id":"351815","name":"Healey","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8001,53.8156,193.0]},"properties":{"id":"351825","name":"Heaton (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9586,51.3392,74.0]},"properties":{"id":"351832","name":"Heckfield","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7274,52.0705,58.0]},"properties":{"id":"351854","name":"Hereford Racecourse","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0465,53.4952,169.0]},"properties":{"id":"351868","name":"Heyrod","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.693,50.737,1.0]},"properties":{"id":"351884","name":"Highcliffe","nationalPark":null,"region":"se","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9901,51.2759,81.0]},"properties":{"id":"354143","name":"West Lavington","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3171,51.1937,80.0]},"properties":{"id":"354149","name":"West Woodlands","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1323,51.4982,5.0]},"properties":{"id":"354160","name":"Westminster","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.221,53.0225,92.0]},"properties":{"id":"354166","name":"Westville","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6379,53.821,54.0]},"properties":{"id":"354192","name":"Whitecote","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2978,53.5519,110.0]},"properties":{"id":"354194","name":"Whitefield","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.414,55.2327,32.0]},"properties":{"id":"354199","name":"Whitepark Bay Youth Hostel","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1494,50.4181,61.0]},"properties":{"id":"354204","name":"Whitleigh","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.275,50.3338,null]},"properties":{"id":"354207","name":"Whitsand Bay","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7062,52.3815,57.0]},"properties":{"id":"354218","name":"Wicksteed Park","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0308,59.022,null]},"properties":{"id":"354220","name":"Wide Firth","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.811,50.5745,239.0]},"properties":{"id":"354221","name":"Widecombe In The Moor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7189,52.0626,63.0]},"properties":{"id":"354230","name":"Willen","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5053,55.0065,53.0]},"properties":{"id":"354235","name":"Willington (Tyne & Wear)","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.228,53.3277,71.0]},"properties":{"id":"354237","name":"Wilmslow","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8612,51.0785,52.0]},"properties":{"id":"354238","name":"Wilton","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9054,54.3805,114.0]},"properties":{"id":"354248","name":"Windermere","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5939,51.9841,132.0]},"properties":{"id":"354276","name":"Woburn Abbey","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4215,51.1954,160.0]},"properties":{"id":"351921","name":"Holmbury St. Mary Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8238,54.6428,25.0]},"properties":{"id":"351930","name":"Holywood","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8129,53.0378,38.0]},"properties":{"id":"351949","name":"Horton Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.331,58.9107,62.0]},"properties":{"id":"351964","name":"Hoy Youth Hostel","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7863,57.4461,120.0]},"properties":{"id":"351977","name":"Huntly","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8103,50.7398,3.0]},"properties":{"id":"351992","name":"Iford","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8213,53.9253,90.0]},"properties":{"id":"351999","name":"Ilkley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5167,56.9869,363.0]},"properties":{"id":"352016","name":"Inverey Youth Hostel","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7241,57.1035,12.0]},"properties":{"id":"352017","name":"Inverguseran","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2147,53.0297,170.0]},"properties":{"id":"354280","name":"Wolstanton","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1859,52.5332,85.0]},"properties":{"id":"354284","name":"Wombourne","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0107,55.5468,66.0]},"properties":{"id":"354304","name":"Wooler","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.327,53.6037,119.0]},"properties":{"id":"354307","name":"Woolfold","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3713,50.8174,6.0]},"properties":{"id":"354318","name":"Worthing","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2985,53.286,25.0]},"properties":{"id":"354322","name":"Wragby","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8787,54.8316,90.0]},"properties":{"id":"354324","name":"Wreay","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3938,52.0694,149.0]},"properties":{"id":"354328","name":"Wroxton Abbey","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7337,51.6158,133.0]},"properties":{"id":"354329","name":"Wycombe Summit Ski & Snowboarding Centre","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.632,50.9416,53.0]},"properties":{"id":"354349","name":"Yeovil","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6825,53.1719,150.0]},"properties":{"id":"354354","name":"Youlgreave Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0147,51.6744,108.0]},"properties":{"id":"352066","name":"Kemble","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7442,54.314,44.0]},"properties":{"id":"352071","name":"Kendal Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1785,55.1696,137.0]},"properties":{"id":"352072","name":"Kendoon Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5125,58.084,33.0]},"properties":{"id":"352078","name":"Kershader Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6847,55.7554,54.0]},"properties":{"id":"352092","name":"Kilbirnie","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4814,50.8766,164.0]},"properties":{"id":"352096","name":"Kilkhampton","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5551,54.9531,41.0]},"properties":{"id":"352105","name":"Kilrea","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5972,50.5486,10.0]},"properties":{"id":"352123","name":"Kingsteignton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3353,53.7453,2.0]},"properties":{"id":"352126","name":"Kingston Upon Hull","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2722,55.5508,97.0]},"properties":{"id":"352141","name":"Kirk Yetholm Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3795,53.107,15.0]},"properties":{"id":"352144","name":"Kirkby Green","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2137,51.8695,125.0]},"properties":{"id":"352168","name":"Knebworth House","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5632,51.433,76.0]},"properties":{"id":"352180","name":"Knowle (Bristol)","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7694,53.3648,476.0]},"properties":{"id":"371546","name":"Lose Hill","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3417,55.448,785.0]},"properties":{"id":"371569","name":"Molls Cleuch Dod","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.8493,54.8508,556.0]},"properties":{"id":"371578","name":"Mullaghmore","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0955,54.6926,654.0]},"properties":{"id":"371590","name":"Outberry Plain","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2798,54.4973,892.0]},"properties":{"id":"371602","name":"Pillar","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2339,54.5407,737.0]},"properties":{"id":"371612","name":"Robinson","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1057,54.5053,320.0]},"properties":{"id":"371614","name":"Roseberry Topping","nationalPark":null,"region":"ne","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0843,54.4062,454.0]},"properties":{"id":"371616","name":"Round Hill","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3095,56.9545,764.0]},"properties":{"id":"371629","name":"Sgurr Nan Gillean","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9616,50.4688,483.0]},"properties":{"id":"371630","name":"Shell Top","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0393,54.1599,674.0]},"properties":{"id":"371641","name":"Slieve Much","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2212,55.5871,676.0]},"properties":{"id":"371652","name":"Stob Law","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.90645,51.36386,5.0]},"properties":{"id":"371677","name":"Weston-Super-Mare No 2","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2653,53.6667,467.0]},"properties":{"id":"371686","name":"Whittle Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7447,52.9168,854.0]},"properties":{"id":"371336","name":"Arenig Fawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.152,52.2649,610.0]},"properties":{"id":"371340","name":"Bache Hill","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2687,54.4589,620.0]},"properties":{"id":"371343","name":"Bastifell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2415,55.6217,826.0]},"properties":{"id":"371347","name":"Beinn Tarsuinn","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.882,53.5385,582.0]},"properties":{"id":"371354","name":"Black Hill","nationalPark":null,"region":"yh","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1942,55.2489,710.0]},"properties":{"id":"371357","name":"Black Shoulder","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8742,53.3627,569.0]},"properties":{"id":"371371","name":"Brown Knoll","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9498,54.7726,564.0]},"properties":{"id":"371385","name":"Carnanelly","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0643,54.4002,430.0]},"properties":{"id":"371400","name":"Cockayne Ridge","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5013,55.5462,748.0]},"properties":{"id":"371420","name":"Culter Fell","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1353,54.3702,778.0]},"properties":{"id":"371431","name":"Dow Crag","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5855,51.1623,519.0]},"properties":{"id":"371440","name":"Dunkery Beacon","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9902,54.497,873.0]},"properties":{"id":"371450","name":"Fairfield","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8288,51.8452,616.0]},"properties":{"id":"371469","name":"Garreg Lwyd","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0279,53.1012,1001.0]},"properties":{"id":"371474","name":"Glyder Fawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8331,50.6098,527.0]},"properties":{"id":"371493","name":"Hameldown Tor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3202,54.4844,797.0]},"properties":{"id":"371501","name":"Haycock","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0888,55.4719,714.0]},"properties":{"id":"371502","name":"Hedgehope Hill","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1099,54.4758,762.0]},"properties":{"id":"371507","name":"High Raise","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8524,54.5132,802.0]},"properties":{"id":"371508","name":"High Raise","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1024,54.5525,608.0]},"properties":{"id":"371510","name":"High Seat","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9061,53.2897,507.0]},"properties":{"id":"371516","name":"Hob Tor","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3662,51.6254,51.0]},"properties":{"id":"371527","name":"Kingswood","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4785,55.1523,786.0]},"properties":{"id":"371530","name":"Kirriereoch Hill","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2494,55.1622,517.0]},"properties":{"id":"371531","name":"Knocklayd","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3171,50.0851,0.0]},"properties":{"id":"354555","name":"Porthleven - West (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7904,50.2342,0.0]},"properties":{"id":"354563","name":"Gorran Haven - Vault Beach (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7821,50.2884,0.0]},"properties":{"id":"354566","name":"Pentewan Sands (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.225,51.1032,0.0]},"properties":{"id":"354582","name":"Saunton Sands (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.858,50.2604,0.0]},"properties":{"id":"354588","name":"Thurlestone - South (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5567,50.4431,0.0]},"properties":{"id":"354599","name":"Paignton - Preston Sands (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5154,50.4959,0.0]},"properties":{"id":"354604","name":"Watcombe (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3554,50.6311,0.0]},"properties":{"id":"354623","name":"Ringstead Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.953,50.6534,0.0]},"properties":{"id":"354627","name":"Studland - Knoll Beach (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0071,50.7103,0.0]},"properties":{"id":"354630","name":"Poole Harbour - Hamworthy Park (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5353,50.6918,0.0]},"properties":{"id":"354648","name":"Colwell Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0969,50.6699,0.0]},"properties":{"id":"354653","name":"Whitecliff Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5981,50.7225,0.0]},"properties":{"id":"354659","name":"Milford-On-Sea (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2038,50.8008,0.0]},"properties":{"id":"354663","name":"Lee-On-Solent (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8604,50.7609,0.0]},"properties":{"id":"354670","name":"Bracklesham Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.78,50.7278,0.0]},"properties":{"id":"354671","name":"Selsey (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5282,50.8022,0.0]},"properties":{"id":"354676","name":"Littlehampton (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3516,50.8109,0.0]},"properties":{"id":"354685","name":"Pevensey Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0836,51.0653,0.0]},"properties":{"id":"354692","name":"Hythe (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3801,51.2819,0.0]},"properties":{"id":"354697","name":"Sandwich Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.759,51.528,0.0]},"properties":{"id":"354709","name":"Southend - Thorpe Bay (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0127,51.8058,0.0]},"properties":{"id":"354712","name":"Brightlingsea (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.737,52.646,0.0]},"properties":{"id":"354727","name":"Caister Point (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7115,52.6921,0.0]},"properties":{"id":"354728","name":"Hemsby (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3399,53.2237,0.0]},"properties":{"id":"354736","name":"Chapel St Leonards (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3111,53.2826,0.0]},"properties":{"id":"354738","name":"Moggs Eye (Huttoft Beach) (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2656,53.3429,0.0]},"properties":{"id":"354740","name":"Mablethorpe Town (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2498,54.169,0.0]},"properties":{"id":"354748","name":"Reighton (Beach)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4056,54.293,0.0]},"properties":{"id":"354751","name":"Scarborough North Bay (Beach)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6241,54.4921,0.0]},"properties":{"id":"354752","name":"Whitby (Beach)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6678,54.5016,0.0]},"properties":{"id":"354753","name":"Sandsend (Beach)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.64,53.2947,0.0]},"properties":{"id":"354788","name":"Llanddulas (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5563,53.3738,0.0]},"properties":{"id":"354799","name":"Church Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0838,51.9692,0.0]},"properties":{"id":"354829","name":"Aber Mawr Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0334,49.1878,0.0]},"properties":{"id":"354390","name":"Grouville (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1689,49.1802,0.0]},"properties":{"id":"354392","name":"Portelet (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9987,57.9156,0.0]},"properties":{"id":"354400","name":"Embo Beach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3061,58.17,0.0]},"properties":{"id":"354405","name":"Achmelvich Bay (Beach)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.837,57.6947,0.0]},"properties":{"id":"354407","name":"Cullen (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7586,55.407,0.0]},"properties":{"id":"354416","name":"Dunure (Beach)","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7982,55.6377,0.0]},"properties":{"id":"354418","name":"Saltcoats (Beach)","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7916,55.9635,0.0]},"properties":{"id":"354421","name":"Gourock (Beach)","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8094,55.346,0.0]},"properties":{"id":"354422","name":"Culzean (Beach)","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7912,57.5021,0.0]},"properties":{"id":"354444","name":"Peterhead Lido (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7019,56.5005,0.0]},"properties":{"id":"354451","name":"Carnoustie (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1852,56.0641,0.0]},"properties":{"id":"354454","name":"Kinghorn - Pettycur (Beach)","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.843,56.0391,0.0]},"properties":{"id":"354458","name":"Gullane (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6364,56.052,0.0]},"properties":{"id":"354460","name":"Seacliff (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7251,51.4886,0.0]},"properties":{"id":"354472","name":"Porthcawl - Rest Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6918,51.7156,0.0]},"properties":{"id":"354481","name":"Coppet Hall (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1037,51.7818,0.0]},"properties":{"id":"354502","name":"Broadhaven (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2965,51.8953,0.0]},"properties":{"id":"354505","name":"Whitesands (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2402,51.1308,0.0]},"properties":{"id":"354507","name":"Croyde (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2147,51.16,0.0]},"properties":{"id":"354509","name":"Woolacombe (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9661,51.3732,0.0]},"properties":{"id":"354515","name":"Weston Super Mare - Sand Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0054,51.2398,0.0]},"properties":{"id":"354517","name":"Burnham-On-Sea - Jetty (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1002,50.4164,0.0]},"properties":{"id":"354538","name":"Newquay - Fistral (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4075,50.2124,0.0]},"properties":{"id":"354544","name":"The Towans - Godrevy (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.374,54.3843,708.0]},"properties":{"id":"354840","name":"Wild Boar Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1888,54.0956,30.0]},"properties":{"id":"354854","name":"Kilbroney Park Rostrevor","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8305,51.6985,2.0]},"properties":{"id":"354860","name":"Carew Castle And Tidal Mill","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1361,51.9994,650.0]},"properties":{"id":"354878","name":"Lord Hereford's Knob","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3704,51.8191,312.0]},"properties":{"id":"354881","name":"Pontsticill Reservoir","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6517,52.947,268.0]},"properties":{"id":"354897","name":"National White Water Centre (Bala)","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6833,51.9702,343.0]},"properties":{"id":"354910","name":"Foel Drygarn","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0364,51.9447,219.0]},"properties":{"id":"354920","name":"Llanantony Priory","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8916,53.9814,94.0]},"properties":{"id":"354929","name":"Bolton Abbey","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9711,54.079,294.0]},"properties":{"id":"354934","name":"Gassington Moor","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3369,54.1774,289.0]},"properties":{"id":"354940","name":"Long Churns","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2549,54.0197,150.0]},"properties":{"id":"354941","name":"Long Preston","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3607,54.2058,308.0]},"properties":{"id":"354944","name":"Ribblehead","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8756,50.4168,378.0]},"properties":{"id":"354966","name":"Ugborough Beacon","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8065,50.5435,222.0]},"properties":{"id":"354969","name":"Buckland In The Moor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0375,50.5001,226.0]},"properties":{"id":"354970","name":"Burrator Reservoir","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0396,50.7024,263.0]},"properties":{"id":"354971","name":"Meldon Reservoir","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4443,51.1846,34.0]},"properties":{"id":"354985","name":"Dunster","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7017,50.8264,70.0]},"properties":{"id":"354992","name":"Burley","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5835,56.003,6.0]},"properties":{"id":"354999","name":"Balloch","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5606,57.6494,7.0]},"properties":{"id":"3066","name":"Kinloss","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.089,58.454,36.0]},"properties":{"id":"3075","name":"Wick Airport","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.836,57.077,140.0]},"properties":{"id":"3080","name":"Aboyne","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.256,55.681,17.0]},"properties":{"id":"3105","name":"Islay/Port Ellen","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.32,56.423,564.0]},"properties":{"id":"3148","name":"Glen Ogle","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.88,55.02,146.0]},"properties":{"id":"3238","name":"Albemarle","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.863,54.563,158.0]},"properties":{"id":"3275","name":"Loftus (Samos)","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.673,54.362,262.0]},"properties":{"id":"3281","name":"Fylingdales","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.941,53.093,216.0]},"properties":{"id":"3305","name":"Capel Curig Saws","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.077,53.068,1040.0]},"properties":{"id":"3308","name":"Snowdon Summit","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6267,52.0703,109.0]},"properties":{"id":"7","name":"Cranfield","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.85,53.3336,22.0]},"properties":{"id":"26","name":"Liverpool John Lennon Airport","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3886,53.3944,63.0]},"properties":{"id":"34","name":"Sheffield Airport","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.459,52.611,73.0]},"properties":{"id":"3462","name":"Wittering","nationalPark":null,"region":"ee","unitaryAuthArea":"Peterborough"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.356,52.756,17.0]},"properties":{"id":"3495","name":"Coltishall","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8,52.083,75.0]},"properties":{"id":"3522","name":"Hereford","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.04,52.148,35.0]},"properties":{"id":"3529","name":"Pershore","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.097,51.62,57.0]},"properties":{"id":"3658","name":"Benson","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.83,51.554,2.0]},"properties":{"id":"3693","name":"Shoeburyness","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.57,51.149,91.0]},"properties":{"id":"3749","name":"Middle Wallop","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.348,51.133,117.0]},"properties":{"id":"3796","name":"Langdon Bay","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.301,49.913,31.0]},"properties":{"id":"3803","name":"Scilly St Marys","nationalPark":null,"region":"sw","unitaryAuthArea":"Isles of Scilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.33,50.218,87.0]},"properties":{"id":"3808","name":"Camborne","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.999,50.438,103.0]},"properties":{"id":"3817","name":"St Mawgan","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.667,50.502,200.0]},"properties":{"id":"3823","name":"Cardinham","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.239,50.86,252.0]},"properties":{"id":"3840","name":"Dunkeswell Aerodrome","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.835,50.779,10.0]},"properties":{"id":"3862","name":"Hurn","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.923,50.815,4.0]},"properties":{"id":"3872","name":"Thorney Island","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.319,50.89,52.0]},"properties":{"id":"3882","name":"Herstmonceux West End","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.008,55.057,4.0]},"properties":{"id":"3908","name":"Ballykelly Samos","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.889,52.4859,120.0]},"properties":{"id":"310002","name":"Birmingham","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1348,50.3713,15.0]},"properties":{"id":"310016","name":"Plymouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6716,50.7825,3.0]},"properties":{"id":"310031","name":"Bognor Regis","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7525,51.4156,67.0]},"properties":{"id":"310035","name":"Bracknell","nationalPark":null,"region":"se","unitaryAuthArea":"Bracknell Forest"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8069,51.8152,78.0]},"properties":{"id":"320282","name":"Aylesbury","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3383,52.0625,99.0]},"properties":{"id":"320283","name":"Banbury","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0571,51.0777,2.0]},"properties":{"id":"320284","name":"Barnstaple","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7993,54.0464,19.0]},"properties":{"id":"320301","name":"Lancaster","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0734,52.1096,19.0]},"properties":{"id":"320305","name":"Pershore","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8106,55.6439,6.0]},"properties":{"id":"321979","name":"Ardrossan","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6822,52.4902,102.0]},"properties":{"id":"310054","name":"Corby","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.484,54.1518,43.0]},"properties":{"id":"310060","name":"Douglas (Isle Of Man)","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5531,51.3858,40.0]},"properties":{"id":"310073","name":"Gillingham (Medway)","nationalPark":null,"region":"se","unitaryAuthArea":"Medway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2368,51.8638,15.0]},"properties":{"id":"310074","name":"Gloucester","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7707,55.9565,19.0]},"properties":{"id":"310078","name":"Greenock","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0791,53.5672,4.0]},"properties":{"id":"310079","name":"Grimsby","nationalPark":null,"region":"yh","unitaryAuthArea":"North East Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2991,52.6305,11.0]},"properties":{"id":"310115","name":"Norwich","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2388,52.569,2.0]},"properties":{"id":"310120","name":"Peterborough","nationalPark":null,"region":"ee","unitaryAuthArea":"Peterborough"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0949,50.7922,2.0]},"properties":{"id":"310122","name":"Portsmouth","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6042,55.4241,5.0]},"properties":{"id":"310184","name":"Campbeltown","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.317,57.6496,18.0]},"properties":{"id":"310193","name":"Elgin","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4853,50.9169,81.0]},"properties":{"id":"322018","name":"Battle","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.714,50.4681,96.0]},"properties":{"id":"322041","name":"Bodmin","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.84,52.95,26.0]},"properties":{"id":"322049","name":"Bottesford","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5,55.95,254.0]},"properties":{"id":"322052","name":"Bowling","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.757,50.7331,11.0]},"properties":{"id":"322063","name":"Bridport","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.113545,57.10085,83.0]},"properties":{"id":"322099","name":"Charlestown","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0726,50.415,30.0]},"properties":{"id":"310216","name":"Newquay","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4813,50.2113,24.0]},"properties":{"id":"310233","name":"St. Ives","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0343,53.9165,4.0]},"properties":{"id":"322194","name":"Fleetwood","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0134,51.7596,43.0]},"properties":{"id":"322294","name":"Hoddesdon","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7529,51.2491,91.0]},"properties":{"id":"324149","name":"Aldershot","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7905,56.1141,12.0]},"properties":{"id":"324159","name":"Alloa","nationalPark":null,"region":"ta","unitaryAuthArea":"Clackmannanshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7994,53.0897,23.0]},"properties":{"id":"324165","name":"Betws-Y-Coed","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4231,52.5341,53.0]},"properties":{"id":"324167","name":"Bridgnorth","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9934,51.3485,130.0]},"properties":{"id":"324176","name":"Devizes","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5403,53.9919,115.0]},"properties":{"id":"324192","name":"Harrogate","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5165,51.4119,120.0]},"properties":{"id":"324196","name":"Hungerford","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1178,53.2584,144.0]},"properties":{"id":"324202","name":"Macclesfield","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1971,53.1469,110.0]},"properties":{"id":"324204","name":"Mansfield","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7182,56.0584,10.0]},"properties":{"id":"324209","name":"North Berwick","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3071,53.6915,60.0]},"properties":{"id":"324212","name":"Pontefract","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8094,56.0289,25.0]},"properties":{"id":"324220","name":"Stenhousemuir","nationalPark":null,"region":"ta","unitaryAuthArea":"Falkirk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1566,51.9919,10.0]},"properties":{"id":"324225","name":"Tewkesbury","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5594,51.3156,37.0]},"properties":{"id":"324239","name":"Woking","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4673,53.6952,161.0]},"properties":{"id":"324242","name":"Darwen","nationalPark":null,"region":"nw","unitaryAuthArea":"Blackburn with Darwen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4272,53.5842,99.0]},"properties":{"id":"324246","name":"Bolton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9375,51.0071,69.0]},"properties":{"id":"324248","name":"Petersfield","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6892,52.6471,74.0]},"properties":{"id":"324250","name":"Swaffham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9611,50.867,120.0]},"properties":{"id":"324267","name":"Chard","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.83,51.23,100.0]},"properties":{"id":"324276","name":"Lynmouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.08,54.3145,220.0]},"properties":{"id":"324281","name":"Askrigg","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2776,51.7435,39.0]},"properties":{"id":"322818","name":"Stonehouse","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3295,51.2322,64.0]},"properties":{"id":"324055","name":"Dorking","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3243,51.0624,50.0]},"properties":{"id":"324060","name":"Horsham","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2569,52.2425,5.0]},"properties":{"id":"324077","name":"Aberaeron","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6,51.43,1.0]},"properties":{"id":"322381","name":"Kingsnorth","nationalPark":null,"region":"se","unitaryAuthArea":"Medway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5371,50.8105,3.0]},"properties":{"id":"322462","name":"Littlehampton","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4216,51.3351,15.0]},"properties":{"id":"322690","name":"Ramsgate","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.405,50.737,27.0]},"properties":{"id":"3839","name":"Exeter Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.483,53.383,131.0]},"properties":{"id":"99107","name":"Sheffield Cdl","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.641,54.105,175.0]},"properties":{"id":"99116","name":"High Mowthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.83,54.245,12.0]},"properties":{"id":"99130","name":"Murlough","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.527,56.6239,10.0]},"properties":{"id":"324306","name":"Arinagour Isle Of Coll","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.57112,55.8062,42.0]},"properties":{"id":"300689","name":"Howwood","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.611,50.6602,14.0]},"properties":{"id":"350006","name":"Abbotsbury Sub-Tropical Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3138,57.9968,21.0]},"properties":{"id":"350027","name":"Achininver Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.185,53.263,5.0]},"properties":{"id":"350058","name":"Alford (Lincolnshire)","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8197,53.8029,226.0]},"properties":{"id":"350064","name":"Allerton (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1173,53.5443,197.0]},"properties":{"id":"324245","name":"Oldham","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1809,52.3311,11.0]},"properties":{"id":"324061","name":"Huntingdon","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.521,53.175,68.0]},"properties":{"id":"3377","name":"Waddington","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.59,56.5592,15.0]},"properties":{"id":"321976","name":"Arbroath","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.433,56.45,3.0]},"properties":{"id":"99006","name":"Dunstaffnage","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.39939,56.46341,8.0]},"properties":{"id":"301886","name":"Oban Airport","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.05096,51.48593,15.0]},"properties":{"id":"354363","name":"Millwall F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.08371,50.86157,80.0]},"properties":{"id":"354366","name":"Brighton And Hove Albion","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.52188,55.88596,105.0]},"properties":{"id":"354375","name":"Livingston F.C.","nationalPark":null,"region":"dg","unitaryAuthArea":"West Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.283,51.558,38.0]},"properties":{"id":"354380","name":"Wembley Arena","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7305,53.7813,178.0]},"properties":{"id":"354382","name":"Bowling","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.716,53.7921,170.0]},"properties":{"id":"352194","name":"Laisterdyke","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3381,52.6965,6.0]},"properties":{"id":"352216","name":"Langtoft","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0231,52.4513,187.0]},"properties":{"id":"352219","name":"Lapal","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9703,55.7377,110.0]},"properties":{"id":"352222","name":"Larkhall","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4035,54.2283,103.0]},"properties":{"id":"352230","name":"Laxey","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4159,54.2309,112.0]},"properties":{"id":"352231","name":"Laxey Glen","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4222,52.0335,65.0]},"properties":{"id":"352240","name":"Ledbury","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6253,51.2436,91.0]},"properties":{"id":"352242","name":"Leeds Castle Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0939,52.6008,87.0]},"properties":{"id":"352251","name":"Leicester Racecourse","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7414,52.2253,84.0]},"properties":{"id":"352260","name":"Leominster","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9951,56.1964,9.0]},"properties":{"id":"352270","name":"Leven","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.086,53.0064,3.0]},"properties":{"id":"352273","name":"Leverton","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8302,52.6813,82.0]},"properties":{"id":"352280","name":"Lichfield","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9439,50.7075,8.0]},"properties":{"id":"352286","name":"Lilliput","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9509,55.0518,20.0]},"properties":{"id":"352287","name":"Limavady","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6955,53.7098,85.0]},"properties":{"id":"352319","name":"Liversedge","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1263,53.1178,126.0]},"properties":{"id":"352322","name":"Llanberis","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1318,53.1127,210.0]},"properties":{"id":"352323","name":"Llanberis Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2132,51.4923,19.0]},"properties":{"id":"352324","name":"Llandaff","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9865,51.889,28.0]},"properties":{"id":"352330","name":"Llandeilo","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8371,53.3286,73.0]},"properties":{"id":"352334","name":"Llandudno Ski & Snowboard Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3081,52.0428,92.0]},"properties":{"id":"352335","name":"Llandysul","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.325,52.6451,139.0]},"properties":{"id":"352338","name":"Llanfair Caereinion","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6446,57.824,null]},"properties":{"id":"352375","name":"Loch Ewe","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6155,57.13,null]},"properties":{"id":"352377","name":"Loch Hourn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0601,56.4627,null]},"properties":{"id":"352383","name":"Loch Na Keal","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3046,56.1302,136.0]},"properties":{"id":"352396","name":"Lochgelly","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2442,56.9571,1155.0]},"properties":{"id":"352399","name":"Lochnagar","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3708,51.8746,160.0]},"properties":{"id":"352416","name":"London Luton Airport","nationalPark":null,"region":"ee","unitaryAuthArea":"Luton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6955,51.5696,12.0]},"properties":{"id":"352417","name":"London Southend Airport","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1215,52.789,2.0]},"properties":{"id":"352424","name":"Long Sutton","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9499,52.275,67.0]},"properties":{"id":"352425","name":"Long Thurlow","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8211,52.6521,120.0]},"properties":{"id":"352429","name":"Longden","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6058,51.2158,63.0]},"properties":{"id":"352439","name":"Loseley House","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3156,53.8157,58.0]},"properties":{"id":"352444","name":"Lotherton Hall","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6027,53.4222,158.0]},"properties":{"id":"352450","name":"Low Bradfield","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2242,57.413,986.0]},"properties":{"id":"352463","name":"Lurg Mhor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4786,53.3815,21.0]},"properties":{"id":"352477","name":"Lymm","nationalPark":null,"region":"nw","unitaryAuthArea":"Warrington"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5754,50.8721,50.0]},"properties":{"id":"352478","name":"Lyndhurst","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1797,53.1409,344.0]},"properties":{"id":"352491","name":"Maeshafn Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.2848,54.1968,66.0]},"properties":{"id":"352495","name":"Magheraveely","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2007,57.2474,935.0]},"properties":{"id":"350081","name":"Am Basteir","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1679,57.2574,920.0]},"properties":{"id":"350101","name":"An Socach (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9508,56.7981,1238.0]},"properties":{"id":"350117","name":"Aonach Beag (1238m)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4433,53.365,150.0]},"properties":{"id":"350124","name":"Arbourthorne","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0916,56.3751,53.0]},"properties":{"id":"350126","name":"Ardanaiseig Gardens","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2885,56.4648,27.0]},"properties":{"id":"350127","name":"Ardchattan Gardens","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0348,55.8391,94.0]},"properties":{"id":"350128","name":"Ardencraig Gardens","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7686,54.8073,57.0]},"properties":{"id":"350143","name":"Armathwaite","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2973,55.4734,161.0]},"properties":{"id":"350175","name":"Auchinleck","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2346,56.2923,59.0]},"properties":{"id":"350177","name":"Auchtermuchty","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8224,57.1946,210.0]},"properties":{"id":"350185","name":"Aviemore","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1129,54.5527,364.0]},"properties":{"id":"350211","name":"Baldersdale Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0169,55.1058,null]},"properties":{"id":"350215","name":"Ballantrae Bay","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.508,55.0716,43.0]},"properties":{"id":"350223","name":"Ballymoney","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6645,53.7357,39.0]},"properties":{"id":"350227","name":"Bamber Bridge","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7963,54.1366,31.0]},"properties":{"id":"352505","name":"Malton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3312,52.0927,142.0]},"properties":{"id":"352506","name":"Malvern Hills Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.345,51.9553,1.0]},"properties":{"id":"352516","name":"Mannings Amusement Park","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2505,57.1258,981.0]},"properties":{"id":"352525","name":"Maol Chinn-Dearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6966,50.7926,115.0]},"properties":{"id":"352529","name":"Mapperton Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.004,51.477,47.0]},"properties":{"id":"352533","name":"Greenwich Park","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5201,54.2954,92.0]},"properties":{"id":"352540","name":"Markethill","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2156,51.7247,50.0]},"properties":{"id":"352545","name":"Marloes Sands Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.388,54.9781,40.0]},"properties":{"id":"352548","name":"Marsden (Tyne & Wear)","nationalPark":null,"region":"ne","unitaryAuthArea":"South Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3015,55.8982,42.0]},"properties":{"id":"352557","name":"Maryhill","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6268,53.5576,63.0]},"properties":{"id":"352558","name":"Marylebone","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0377,53.1778,84.0]},"properties":{"id":"352565","name":"Mavis Enderby","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2478,56.8508,928.0]},"properties":{"id":"352569","name":"Mayar","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0465,55.7636,45.0]},"properties":{"id":"352574","name":"Mcarthur's Head Lighthouse","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5411,57.0352,946.0]},"properties":{"id":"352579","name":"Meall Buidhe (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.939,56.5599,926.0]},"properties":{"id":"352594","name":"Meall Nan Eun","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7308,52.0831,49.0]},"properties":{"id":"352603","name":"Melford Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1643,53.2224,21.0]},"properties":{"id":"352608","name":"Menai Bridge","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2656,51.09,104.0]},"properties":{"id":"352610","name":"Mere","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7863,50.2696,5.0]},"properties":{"id":"352616","name":"Mevagissey","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2005,53.5457,77.0]},"properties":{"id":"352623","name":"Middleton (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5883,50.7252,5.0]},"properties":{"id":"352634","name":"Milford On Sea","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5005,53.3476,123.0]},"properties":{"id":"352640","name":"Millhouses","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2715,54.2119,10.0]},"properties":{"id":"352641","name":"Millom","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1151,53.6105,151.0]},"properties":{"id":"352644","name":"Milnrow","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6619,54.6629,17.0]},"properties":{"id":"350233","name":"Bangor (North Down)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9291,52.9947,16.0]},"properties":{"id":"350236","name":"Bangor-On-Dee Racecourse","nationalPark":null,"region":"wl","unitaryAuthArea":"Wrexham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.4442,57.0232,0.0]},"properties":{"id":"350255","name":"Barra (Traigh Mhòr) Airport","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.377,50.9892,44.0]},"properties":{"id":"350265","name":"Bateman's","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6417,55.9024,141.0]},"properties":{"id":"350268","name":"Bathgate","nationalPark":null,"region":"dg","unitaryAuthArea":"West Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7446,50.8101,63.0]},"properties":{"id":"350274","name":"Beaminster","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3342,55.9217,59.0]},"properties":{"id":"350275","name":"Bearsden","nationalPark":null,"region":"st","unitaryAuthArea":"East Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3342,55.9299,67.0]},"properties":{"id":"350276","name":"Bearsden Ski Centre","nationalPark":null,"region":"st","unitaryAuthArea":"East Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4892,53.3316,171.0]},"properties":{"id":"350278","name":"Beauchief","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4583,51.0759,69.0]},"properties":{"id":"350291","name":"Bedgebury National Pinetum","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5979,55.1316,59.0]},"properties":{"id":"350293","name":"Bedlington","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6021,51.4382,22.0]},"properties":{"id":"350294","name":"Bedminster","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9706,52.4721,188.0]},"properties":{"id":"350297","name":"Beech Lane","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6451,56.5563,1081.0]},"properties":{"id":"350309","name":"Beinn A' Chreachain","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7187,57.0071,1157.0]},"properties":{"id":"350315","name":"Beinn Bhrotain","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5379,56.8261,1101.0]},"properties":{"id":"350322","name":"Beinn Eibhinn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2825,57.221,1032.0]},"properties":{"id":"350324","name":"Beinn Fhada","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1116,56.5998,959.0]},"properties":{"id":"350325","name":"Beinn Fhionnlaidh (Argyll & Bute)","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2353,56.5378,1103.0]},"properties":{"id":"350327","name":"Beinn Ghlas","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5778,56.5122,1076.0]},"properties":{"id":"350328","name":"Beinn Heasgarnich","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3269,56.8338,1010.0]},"properties":{"id":"350343","name":"Beinn Udlamain","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6305,55.7538,86.0]},"properties":{"id":"350344","name":"Beith","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0143,56.423,966.0]},"properties":{"id":"350374","name":"Ben More (Argyll & Bute)","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0709,53.5642,284.0]},"properties":{"id":"352672","name":"Moorside (Nr Oldham)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6273,53.8178,104.0]},"properties":{"id":"352674","name":"Moorside (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2464,53.3651,73.0]},"properties":{"id":"352693","name":"Moss Nook","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1846,53.512,89.0]},"properties":{"id":"352696","name":"Moston","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5344,51.044,30.0]},"properties":{"id":"352699","name":"Mottisfont Abbey","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9709,56.9699,939.0]},"properties":{"id":"352701","name":"Mount Keen","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1232,55.845,50.0]},"properties":{"id":"352703","name":"Mount Vernon","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.867,57.5866,11.0]},"properties":{"id":"352738","name":"Nairn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4922,53.3581,121.0]},"properties":{"id":"352753","name":"Nether Edge","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8493,54.9433,47.0]},"properties":{"id":"352768","name":"New Luce","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.809,51.8952,195.0]},"properties":{"id":"352771","name":"New Moat","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1977,57.5921,151.0]},"properties":{"id":"352775","name":"New Pitsligo","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8901,54.2163,5.0]},"properties":{"id":"352787","name":"Newcastle","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2246,53.3216,49.0]},"properties":{"id":"350386","name":"Benllech","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5304,55.0243,69.0]},"properties":{"id":"350392","name":"Benton Square","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0497,51.1578,171.0]},"properties":{"id":"350394","name":"Bentworth","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6613,54.9739,97.0]},"properties":{"id":"350396","name":"Benwell","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4335,53.8417,14.0]},"properties":{"id":"350408","name":"Beverley","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3156,52.3752,28.0]},"properties":{"id":"350411","name":"Bewdley","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1521,51.8992,72.0]},"properties":{"id":"350414","name":"Bicester","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5168,50.8465,83.0]},"properties":{"id":"350415","name":"Bickleigh Castle","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0321,56.6437,1150.0]},"properties":{"id":"350420","name":"Bidean Nam Bian","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2483,57.8079,1062.0]},"properties":{"id":"350421","name":"Bidein A' Ghlas Thuill","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7306,53.7669,200.0]},"properties":{"id":"350422","name":"Bierley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9218,56.7557,1128.0]},"properties":{"id":"350438","name":"Binnein Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2123,50.9522,38.0]},"properties":{"id":"350459","name":"Bishop's Waltham","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6893,53.467,41.0]},"properties":{"id":"350467","name":"Blackbrook","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2896,53.5658,77.0]},"properties":{"id":"350469","name":"Blackford Bridge","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1302,52.5731,158.0]},"properties":{"id":"350486","name":"Blakenhall","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1049,55.8749,103.0]},"properties":{"id":"350513","name":"Bonnyrigg","nationalPark":null,"region":"dg","unitaryAuthArea":"Midlothian Council"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6162,54.9781,55.0]},"properties":{"id":"352793","name":"Newcastle Upon Tyne","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2786,55.8146,30.0]},"properties":{"id":"352804","name":"Newlands","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3238,52.6148,8.0]},"properties":{"id":"352840","name":"Norfolk Ski Centre","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.626,58.348,0.0]},"properties":{"id":"352844","name":"North Bragar","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1125,53.3561,31.0]},"properties":{"id":"352845","name":"North Carlton","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.081,50.8164,2.0]},"properties":{"id":"352846","name":"North End","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1186,53.55,183.0]},"properties":{"id":"352903","name":"Oldham Edge","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0958,51.3744,68.0]},"properties":{"id":"352912","name":"Orpington","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7074,53.5408,82.0]},"properties":{"id":"352913","name":"Orrell","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2618,51.2427,91.0]},"properties":{"id":"352929","name":"Overton","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4936,53.4049,62.0]},"properties":{"id":"352930","name":"Owlerton","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.136,52.6126,120.0]},"properties":{"id":"352934","name":"Oxley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9182,54.3646,50.0]},"properties":{"id":"350542","name":"Bowness-On-Windermere","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2807,54.1453,260.0]},"properties":{"id":"350546","name":"Brackenbottom","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1416,52.027,114.0]},"properties":{"id":"350547","name":"Brackley","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3868,57.0006,355.0]},"properties":{"id":"350559","name":"Braemar Youth Hostel","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6192,54.7481,96.0]},"properties":{"id":"350569","name":"Brandon (Durham)","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.326,53.7895,6.0]},"properties":{"id":"350575","name":"Bransholme","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1598,51.1076,15.0]},"properties":{"id":"350578","name":"Braunton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2353,53.8214,151.0]},"properties":{"id":"350598","name":"Brierfield","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4317,51.3578,42.0]},"properties":{"id":"350626","name":"Broadstairs Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4073,53.6129,132.0]},"properties":{"id":"350637","name":"Bromley Cross","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9296,52.6457,150.0]},"properties":{"id":"350654","name":"Brownhills","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0247,53.041,157.0]},"properties":{"id":"350661","name":"Bryn Gwynant Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1743,51.7947,343.0]},"properties":{"id":"350662","name":"Brynmawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Blaenau Gwent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2405,53.1617,17.0]},"properties":{"id":"350676","name":"Burgh Le Marsh","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.977,52.5734,136.0]},"properties":{"id":"352943","name":"Palfrey","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0475,50.1478,54.0]},"properties":{"id":"352983","name":"Pendennis Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9194,53.2663,67.0]},"properties":{"id":"352991","name":"Penmaenmawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.5668,52.5767,12.0]},"properties":{"id":"353011","name":"Pettitts Animal Adventure Park Reedham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1611,57.3096,89.0]},"properties":{"id":"353012","name":"Pettymuick","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7283,56.7045,110.0]},"properties":{"id":"353023","name":"Pitlochry","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5622,50.5159,122.0]},"properties":{"id":"353028","name":"Plant World","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.161,52.9648,110.0]},"properties":{"id":"353031","name":"Plas Newydd (Llangollen)","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0692,50.9288,40.0]},"properties":{"id":"353039","name":"Plumpton Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0501,50.3856,14.0]},"properties":{"id":"353044","name":"Plympton","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.346,50.8194,60.0]},"properties":{"id":"353045","name":"Plymtree","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3462,55.8336,16.0]},"properties":{"id":"353050","name":"Pollok","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6884,55.9961,40.0]},"properties":{"id":"353053","name":"Polmonthill Ski Slope","nationalPark":null,"region":"ta","unitaryAuthArea":"Falkirk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2602,51.7924,43.0]},"properties":{"id":"353055","name":"Pontantwn","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3372,53.7017,32.0]},"properties":{"id":"353058","name":"Pontefract Racecourse","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0374,51.6973,152.0]},"properties":{"id":"353063","name":"Pontypool","nationalPark":null,"region":"wl","unitaryAuthArea":"Torfaen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9192,52.5999,157.0]},"properties":{"id":"353066","name":"Pool Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7039,51.4786,10.0]},"properties":{"id":"353084","name":"Porthcawl","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8162,51.6279,6.0]},"properties":{"id":"350682","name":"Burnham-On-Crouch","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1155,52.6187,133.0]},"properties":{"id":"350693","name":"Bushbury","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8359,54.6278,200.0]},"properties":{"id":"350697","name":"Butterknowle","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5289,53.154,314.0]},"properties":{"id":"350703","name":"Bylchau","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.711,57.0516,1291.0]},"properties":{"id":"350716","name":"Cairn Toul","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3138,53.4972,88.0]},"properties":{"id":"350718","name":"Caistor","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2103,56.2451,78.0]},"properties":{"id":"350722","name":"Callander","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3325,58.5477,null]},"properties":{"id":"350749","name":"Caol Raineach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4204,53.4054,34.0]},"properties":{"id":"350757","name":"Carbrook","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6533,57.0364,1037.0]},"properties":{"id":"350777","name":"Carn A' Mhaim","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3592,56.9094,1019.0]},"properties":{"id":"350781","name":"Carn An Tuirc","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5873,56.7625,939.0]},"properties":{"id":"350785","name":"Carn Dearg (939m)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9898,54.7075,217.0]},"properties":{"id":"350809","name":"Carrock Fell Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5428,53.8209,100.0]},"properties":{"id":"353100","name":"Potternewton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4475,52.4341,81.0]},"properties":{"id":"353102","name":"Potter's Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7839,54.9205,149.0]},"properties":{"id":"353105","name":"Powerline Mountain Bike Trail","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.037,53.3722,50.0]},"properties":{"id":"353110","name":"Prenton","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0038,52.2717,156.0]},"properties":{"id":"353113","name":"Presteigne","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.983,55.9595,8.0]},"properties":{"id":"353117","name":"Prestonpans","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8542,52.1704,107.0]},"properties":{"id":"353140","name":"Quinton Green","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3158,51.6864,70.0]},"properties":{"id":"353148","name":"Radlett","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4447,51.2916,65.0]},"properties":{"id":"353150","name":"Radstock","nationalPark":null,"region":"sw","unitaryAuthArea":"Bath and North East Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8971,52.1973,70.0]},"properties":{"id":"353151","name":"Ragley Hall","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2496,52.5252,15.0]},"properties":{"id":"353155","name":"Rainthorpe Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9816,51.4216,38.0]},"properties":{"id":"353175","name":"Reading F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Reading"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3902,55.8753,6.0]},"properties":{"id":"353192","name":"Renfrew","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3433,53.3021,78.0]},"properties":{"id":"353193","name":"Renishaw Hall & Gardens","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3901,53.3662,101.0]},"properties":{"id":"353204","name":"Richmond (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.701,53.6992,133.0]},"properties":{"id":"353221","name":"Roberttown","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7082,51.5816,10.0]},"properties":{"id":"353227","name":"Rochford","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6557,54.0761,15.0]},"properties":{"id":"350833","name":"Castletown (Isle Of Man)","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.944,54.2571,112.0]},"properties":{"id":"350835","name":"Castlewellan","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0299,51.5667,0.0]},"properties":{"id":"350836","name":"Caswell Bay","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5843,52.2968,25.0]},"properties":{"id":"350844","name":"Cavenham","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7112,53.4896,69.0]},"properties":{"id":"350850","name":"Chadwick Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8391,50.6726,190.0]},"properties":{"id":"350851","name":"Chagford","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1838,53.4033,50.0]},"properties":{"id":"350876","name":"Cheadle Heath","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7819,51.2727,9.0]},"properties":{"id":"350879","name":"Cheddar Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0544,51.921,60.0]},"properties":{"id":"350883","name":"Cheltenham Racecourse","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6108,51.709,105.0]},"properties":{"id":"350887","name":"Chesham (Buckinghamshire)","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5691,54.8593,14.0]},"properties":{"id":"350893","name":"Chester-Le-Street","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7734,50.8371,14.0]},"properties":{"id":"350896","name":"Chichester","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0823,51.6258,62.0]},"properties":{"id":"350898","name":"Chigwell","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5012,51.2681,135.0]},"properties":{"id":"350899","name":"Chilcompton","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8815,53.3964,52.0]},"properties":{"id":"350900","name":"Childwall","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2401,52.9121,30.0]},"properties":{"id":"350903","name":"Chilwell","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4697,55.009,49.0]},"properties":{"id":"350910","name":"Chirton","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6578,56.8282,1047.0]},"properties":{"id":"350911","name":"Chno Dearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5777,51.2609,43.0]},"properties":{"id":"350918","name":"Christ's College Ski Club Guildford","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4506,51.9243,135.0]},"properties":{"id":"350921","name":"Church Enstone","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7854,53.8803,12.0]},"properties":{"id":"350922","name":"Churchtown","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1548,51.7891,12.0]},"properties":{"id":"350931","name":"Clacton-On-Sea","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1185,52.6147,80.0]},"properties":{"id":"350935","name":"Clarendon Park","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4133,53.1635,140.0]},"properties":{"id":"350937","name":"Clay Cross","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.182,53.4845,73.0]},"properties":{"id":"350939","name":"Clayton (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.221,52.9875,152.0]},"properties":{"id":"350940","name":"Clayton (Staffordshire)","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3991,54.955,36.0]},"properties":{"id":"350943","name":"Cleadon","nationalPark":null,"region":"ne","unitaryAuthArea":"South Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8549,51.4417,31.0]},"properties":{"id":"350950","name":"Clevedon","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0407,53.8757,5.0]},"properties":{"id":"350952","name":"Cleveleys","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3439,53.5297,82.0]},"properties":{"id":"350954","name":"Clifton (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.018,55.8623,99.0]},"properties":{"id":"350968","name":"Coatbridge","nationalPark":null,"region":"st","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.908,55.3104,83.0]},"properties":{"id":"353240","name":"Rothbury","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9678,50.6023,546.0]},"properties":{"id":"353246","name":"Rough Tor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8076,52.591,153.0]},"properties":{"id":"353247","name":"Roughley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5037,52.4471,100.0]},"properties":{"id":"353256","name":"Rowley's Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0778,57.1892,15.0]},"properties":{"id":"353257","name":"Royal Aberdeen Golf Club","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2116,55.9661,23.0]},"properties":{"id":"353259","name":"Royal Botanic Gardens Edinburgh","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3721,55.9445,32.0]},"properties":{"id":"353262","name":"Royal Highland Showground","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0112,53.7485,10.0]},"properties":{"id":"353265","name":"Royal Lytham & St. Anne's Golf Club","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.37,51.2917,4.0]},"properties":{"id":"353268","name":"Royal St. Georges Golf Club","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6397,55.5284,4.0]},"properties":{"id":"353269","name":"Royal Troon Golf Club","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4524,53.5995,71.0]},"properties":{"id":"353272","name":"Royston (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1199,53.5669,160.0]},"properties":{"id":"353273","name":"Royton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5281,54.2333,50.0]},"properties":{"id":"353288","name":"Ruston","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.844,50.7491,173.0]},"properties":{"id":"353291","name":"Ryall","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1618,50.7294,29.0]},"properties":{"id":"353293","name":"Ryde","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7642,54.9764,54.0]},"properties":{"id":"353296","name":"Ryton","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.202,50.3122,88.0]},"properties":{"id":"353302","name":"St Agnes","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3379,51.7523,113.0]},"properties":{"id":"353304","name":"St Albans","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.795,56.3394,20.0]},"properties":{"id":"353305","name":"St Andrews","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8114,56.3525,2.0]},"properties":{"id":"353306","name":"St Andrews Links","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5482,54.9642,33.0]},"properties":{"id":"353307","name":"St Anthony's","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.112,56.3956,179.0]},"properties":{"id":"353316","name":"St Fillans","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7357,53.4561,36.0]},"properties":{"id":"353318","name":"St Helens","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4793,50.2107,23.0]},"properties":{"id":"353321","name":"St Ives (Cornwall)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6782,50.124,125.0]},"properties":{"id":"353322","name":"St Just","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0779,51.5339,10.0]},"properties":{"id":"353328","name":"St Mellons Golf Club","nationalPark":null,"region":"wl","unitaryAuthArea":"Newport"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2629,52.227,15.0]},"properties":{"id":"353330","name":"St Neots","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1887,53.2843,14.0]},"properties":{"id":"353338","name":"Saleby","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9735,54.5814,52.0]},"properties":{"id":"353344","name":"Saltburn-By-The-Sea","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8572,52.492,97.0]},"properties":{"id":"353346","name":"Saltley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.366,53.1463,66.0]},"properties":{"id":"353351","name":"Sandbach","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.744,57.685,0.0]},"properties":{"id":"353352","name":"Sandend","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1479,50.6586,5.0]},"properties":{"id":"353355","name":"Sandown","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3391,51.2735,3.0]},"properties":{"id":"353362","name":"Sandwich","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.557,50.861,0.0]},"properties":{"id":"353365","name":"Sandymouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6986,51.709,24.0]},"properties":{"id":"353367","name":"Saundersfoot","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5998,51.4299,64.0]},"properties":{"id":"353368","name":"Savill Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0955,56.6652,1083.0]},"properties":{"id":"353377","name":"Schiehallion","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6925,54.9729,31.0]},"properties":{"id":"353380","name":"Scotswood","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6951,53.5878,6.0]},"properties":{"id":"353382","name":"Scunthorpe United F.C.","nationalPark":null,"region":"yh","unitaryAuthArea":"North Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.6124,52.7879,0.0]},"properties":{"id":"353384","name":"Sea Palling","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8921,52.8233,151.0]},"properties":{"id":"350973","name":"Coed Y Brenin Forest Park","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6118,51.795,180.0]},"properties":{"id":"350979","name":"Coleford","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.705,52.4993,100.0]},"properties":{"id":"350980","name":"Coleshill","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9468,60.5606,null]},"properties":{"id":"350982","name":"Colgrave Sound","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6191,52.8031,109.0]},"properties":{"id":"350987","name":"Colsterworth","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4418,53.7874,59.0]},"properties":{"id":"350988","name":"Colton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.038,55.9828,72.0]},"properties":{"id":"350989","name":"Colzium House","nationalPark":null,"region":"st","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3254,51.1207,204.0]},"properties":{"id":"350990","name":"Combe Sydenham Hall","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7444,54.5505,11.0]},"properties":{"id":"350991","name":"Comber","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9267,50.7062,31.0]},"properties":{"id":"350993","name":"Compton Acres","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9068,57.789,980.0]},"properties":{"id":"350994","name":"Cona Mheall","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0745,54.3689,57.0]},"properties":{"id":"350998","name":"Coniston","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0813,54.3747,213.0]},"properties":{"id":"350999","name":"Coniston Coppermines Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8418,53.2785,63.0]},"properties":{"id":"351006","name":"Conwy Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7455,54.6454,79.0]},"properties":{"id":"351007","name":"Cookstown","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0406,53.4871,142.0]},"properties":{"id":"351009","name":"Copley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.016,54.9739,38.0]},"properties":{"id":"351012","name":"Corbridge","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0729,52.5476,149.0]},"properties":{"id":"351020","name":"Coseley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0623,50.8448,9.0]},"properties":{"id":"351021","name":"Cosham","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2242,50.4952,69.0]},"properties":{"id":"351022","name":"Cotehele","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4566,52.9291,48.0]},"properties":{"id":"351028","name":"County Ground Derbyshire C.C.C.","nationalPark":null,"region":"em","unitaryAuthArea":"Derby"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1623,50.8299,24.0]},"properties":{"id":"351029","name":"County Ground Sussex C.C.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4483,51.4617,23.0]},"properties":{"id":"351035","name":"Cowbridge","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6365,55.0085,78.0]},"properties":{"id":"351037","name":"Coxlodge","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4654,53.4033,139.0]},"properties":{"id":"351038","name":"Crabtree","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8821,55.3149,162.0]},"properties":{"id":"351044","name":"Cragside","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2754,57.4889,52.0]},"properties":{"id":"351045","name":"Craig","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4921,55.5596,137.0]},"properties":{"id":"351051","name":"Craigie","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9019,58.4829,30.0]},"properties":{"id":"351053","name":"Craigtown","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4354,57.0635,69.0]},"properties":{"id":"351062","name":"Crathes Castle Grounds","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4597,53.8076,80.0]},"properties":{"id":"351098","name":"Cross Gates","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7633,54.3988,19.0]},"properties":{"id":"351102","name":"Crossgar","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8306,53.6111,8.0]},"properties":{"id":"351110","name":"Crowle","nationalPark":null,"region":"yh","unitaryAuthArea":"North Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1261,50.4093,85.0]},"properties":{"id":"351111","name":"Crownhill","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.795,51.3657,87.0]},"properties":{"id":"351112","name":"Crowthorne","nationalPark":null,"region":"se","unitaryAuthArea":"Bracknell Forest"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1076,56.1276,481.0]},"properties":{"id":"351116","name":"Cruach Nan Capull","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9859,51.7906,11.0]},"properties":{"id":"351121","name":"Cudmore Grove","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4135,53.5776,70.0]},"properties":{"id":"351122","name":"Cudworth","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8204,57.6918,20.0]},"properties":{"id":"351124","name":"Cullen","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0708,50.7048,16.0]},"properties":{"id":"353391","name":"Seaton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1217,52.5433,220.0]},"properties":{"id":"353395","name":"Sedgley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0656,53.7833,2.0]},"properties":{"id":"353397","name":"Selby","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8371,55.5506,169.0]},"properties":{"id":"353398","name":"Selkirk","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9362,52.4424,140.0]},"properties":{"id":"353399","name":"Selly Oak","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5461,56.7755,952.0]},"properties":{"id":"353407","name":"Sgor Gaibhre","nationalPark":null,"region":"he","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.815,57.0625,1118.0]},"properties":{"id":"353408","name":"Sgor Gaoith","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2532,57.1751,1038.0]},"properties":{"id":"353414","name":"Sgurr A' Bhealaich Dheirg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8975,57.4452,1083.0]},"properties":{"id":"353416","name":"Sgurr A' Choire Ghlais","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3263,57.1058,1027.0]},"properties":{"id":"353420","name":"Sgurr A' Mhaoraich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2925,57.1386,1004.0]},"properties":{"id":"353423","name":"Sgurr An Lochain","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0914,57.6899,1000.0]},"properties":{"id":"353425","name":"Sgurr Breac","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2135,57.2049,944.0]},"properties":{"id":"353429","name":"Sgurr Dubh Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3431,57.1929,1068.0]},"properties":{"id":"353431","name":"Sgurr Fhuaran","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8393,57.4455,993.0]},"properties":{"id":"353443","name":"Sgurr Na Ruaidhe","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1951,57.4836,915.0]},"properties":{"id":"353445","name":"Sgurr Nan Ceannaichean","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2256,57.2548,1151.0]},"properties":{"id":"353446","name":"Sgurr Nan Ceathreamhnan","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0434,57.6822,923.0]},"properties":{"id":"353451","name":"Sgurr Nan Each","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2084,57.1964,924.0]},"properties":{"id":"353452","name":"Sgurr Nan Eag","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3904,56.9352,963.0]},"properties":{"id":"353454","name":"Sgurr Thuilm","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2533,53.3936,43.0]},"properties":{"id":"353461","name":"Sharston","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.09,53.5799,179.0]},"properties":{"id":"353462","name":"Shaw","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1711,53.6281,154.0]},"properties":{"id":"353463","name":"Shawclough","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0154,50.9992,37.0]},"properties":{"id":"353469","name":"Sheffield Park","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3308,52.0368,36.0]},"properties":{"id":"353473","name":"Shefford","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7807,52.4514,98.0]},"properties":{"id":"353474","name":"Sheldon","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2909,52.7698,72.0]},"properties":{"id":"353479","name":"Shepshed","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2129,52.938,27.0]},"properties":{"id":"353484","name":"Sheringham Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.068,53.1977,75.0]},"properties":{"id":"353485","name":"Sherwood Forest Amusement Park","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0846,53.1747,81.0]},"properties":{"id":"353487","name":"Sherwood Pines Forest Park","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8231,52.3958,142.0]},"properties":{"id":"353502","name":"Shirley Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2751,50.8339,2.0]},"properties":{"id":"353507","name":"Shoreham-By-Sea","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7313,52.6954,64.0]},"properties":{"id":"353509","name":"Shrewsbury Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9359,53.9154,115.0]},"properties":{"id":"353518","name":"Silsden","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1076,58.5003,null]},"properties":{"id":"353521","name":"Sinclair's Bay","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9083,52.6153,191.0]},"properties":{"id":"353528","name":"Skeffington","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7906,55.3495,39.0]},"properties":{"id":"351129","name":"Culzean Castle Garden","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2645,55.4535,110.0]},"properties":{"id":"351132","name":"Cumnock","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2089,53.624,187.0]},"properties":{"id":"351137","name":"Cutgate","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1478,51.54,10.0]},"properties":{"id":"351142","name":"Dagenham","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8212,54.9341,14.0]},"properties":{"id":"351145","name":"Dalbeattie","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6927,51.8366,413.0]},"properties":{"id":"351158","name":"Dan Yr Ogof Ski Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.549,52.2739,16.0]},"properties":{"id":"351166","name":"Darsham","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6893,50.4547,47.0]},"properties":{"id":"351168","name":"Dartington Hall Grounds","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7139,50.4474,23.0]},"properties":{"id":"351169","name":"Dartington Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8741,50.5423,225.0]},"properties":{"id":"351170","name":"Dartmeet","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1505,53.3882,79.0]},"properties":{"id":"351174","name":"Davenport","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1025,57.1349,19.0]},"properties":{"id":"351175","name":"David Welch Winter Gardens","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4034,51.222,2.0]},"properties":{"id":"351179","name":"Deal","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4717,53.5708,119.0]},"properties":{"id":"351181","name":"Deane","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4237,53.1837,97.0]},"properties":{"id":"351187","name":"Denbigh","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5445,52.3742,56.0]},"properties":{"id":"351189","name":"Denford","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0424,55.7287,408.0]},"properties":{"id":"351203","name":"Dewar","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2434,51.6076,67.0]},"properties":{"id":"351206","name":"Didcot","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.233,53.4138,30.0]},"properties":{"id":"351207","name":"Didsbury","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.119,52.7149,31.0]},"properties":{"id":"351212","name":"Dinosaur Adventure Park Norfolk","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0406,53.3581,178.0]},"properties":{"id":"351214","name":"Disley","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0201,54.6138,483.0]},"properties":{"id":"351216","name":"Divis","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0376,52.1091,16.0]},"properties":{"id":"351217","name":"Docwra's Manor Gardens","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4713,53.5906,172.0]},"properties":{"id":"351218","name":"Doffcocker","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5351,54.6417,9.0]},"properties":{"id":"351222","name":"Donaghadee","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0924,53.5179,9.0]},"properties":{"id":"351223","name":"Doncaster Racecourse","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1095,53.5077,6.0]},"properties":{"id":"351224","name":"Doncaster Rovers Fc","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3871,52.6063,31.0]},"properties":{"id":"351238","name":"Downham Market","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7156,54.328,4.0]},"properties":{"id":"351239","name":"Downpatrick","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0388,50.8455,10.0]},"properties":{"id":"351243","name":"Drayton (Portsmouth)","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7288,52.6033,80.0]},"properties":{"id":"351245","name":"Drayton Manor Park","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1383,52.9788,142.0]},"properties":{"id":"351246","name":"Dresden","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1954,56.8478,947.0]},"properties":{"id":"351247","name":"Driesh","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4417,54.0058,20.0]},"properties":{"id":"351248","name":"Driffield","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.017,54.3794,125.0]},"properties":{"id":"351250","name":"Dromara","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1464,54.4155,82.0]},"properties":{"id":"351251","name":"Dromore","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5029,53.3035,213.0]},"properties":{"id":"351253","name":"Dronfield Woodhouse","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1473,53.4805,93.0]},"properties":{"id":"351254","name":"Droylsden","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8603,56.3382,95.0]},"properties":{"id":"351257","name":"Drummond Castle Gardens","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1249,52.0121,120.0]},"properties":{"id":"351260","name":"Duddenhoe End","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0675,54.2363,78.0]},"properties":{"id":"351273","name":"Duncombe Park Garden","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0124,56.4522,1.0]},"properties":{"id":"351274","name":"Dundee Airport","nationalPark":null,"region":"ta","unitaryAuthArea":"Dundee"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9684,56.4759,82.0]},"properties":{"id":"351276","name":"Dundee United F.C.","nationalPark":null,"region":"ta","unitaryAuthArea":"Dundee"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7983,54.5878,24.0]},"properties":{"id":"351277","name":"Dundonald","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1054,54.6516,483.0]},"properties":{"id":"353534","name":"Skiddaw House Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4491,53.9671,190.0]},"properties":{"id":"353536","name":"Slaidburn Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8542,52.4738,129.0]},"properties":{"id":"353544","name":"Small Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1714,53.0519,157.0]},"properties":{"id":"353546","name":"Smallthorne","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1885,53.367,75.0]},"properties":{"id":"353548","name":"Smithy Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.951,52.463,38.0]},"properties":{"id":"353549","name":"Snetterton Motor Racing Circuit","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6908,52.6263,59.0]},"properties":{"id":"353552","name":"Snowdome Tamworth","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8714,52.0048,195.0]},"properties":{"id":"353554","name":"Snowshill Manor","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0929,57.1893,1002.0]},"properties":{"id":"353556","name":"Sóil Chaorainn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.3837,57.0714,null]},"properties":{"id":"353563","name":"Sound Of Barra","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4106,57.0469,null]},"properties":{"id":"353564","name":"Sound Of Canna","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.571,57.5473,null]},"properties":{"id":"353569","name":"Sound Of Monach","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4966,51.4746,85.0]},"properties":{"id":"353575","name":"Soundwell","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8362,50.4294,119.0]},"properties":{"id":"353577","name":"South Brent","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2817,53.5975,51.0]},"properties":{"id":"353579","name":"South Elmsall","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4366,54.9035,66.0]},"properties":{"id":"353582","name":"South Hylton","nationalPark":null,"region":"ne","unitaryAuthArea":"Sunderland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0012,52.3934,41.0]},"properties":{"id":"353583","name":"South Lopham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.296,51.5207,20.0]},"properties":{"id":"353586","name":"South Ockendon","nationalPark":null,"region":"ee","unitaryAuthArea":"Thurrock"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8529,53.3613,20.0]},"properties":{"id":"353590","name":"South Wheatley","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4071,54.9234,46.0]},"properties":{"id":"353608","name":"Southwick (Tyne & Wear)","nationalPark":null,"region":"ne","unitaryAuthArea":"Sunderland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.684,52.325,1.0]},"properties":{"id":"353610","name":"Southwold (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8406,53.3408,29.0]},"properties":{"id":"353614","name":"Speke","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4649,57.5661,1054.0]},"properties":{"id":"353618","name":"Spidean A' Choire Leith","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5389,50.7763,21.0]},"properties":{"id":"353622","name":"Spinners Boldre","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1534,55.8597,41.0]},"properties":{"id":"353625","name":"Springboig","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2046,58.0444,613.0]},"properties":{"id":"353634","name":"Stac Pollaidh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8,54.5794,108.0]},"properties":{"id":"353637","name":"Staindrop","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0338,53.598,2.0]},"properties":{"id":"353639","name":"Stainforth","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4786,52.6509,24.0]},"properties":{"id":"353644","name":"Stamford","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5339,53.394,196.0]},"properties":{"id":"353655","name":"Stannington","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4988,53.0539,47.0]},"properties":{"id":"353659","name":"Stapeley Water Gardens & Palms Tropical Oasis","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2712,52.9283,49.0]},"properties":{"id":"353661","name":"Stapleford","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8061,52.4836,104.0]},"properties":{"id":"353665","name":"Stechford","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.195,51.9033,93.0]},"properties":{"id":"353671","name":"Stevenage","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7591,55.6418,16.0]},"properties":{"id":"353672","name":"Stevenston","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5123,55.68,91.0]},"properties":{"id":"353673","name":"Stewarton","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3251,50.8869,16.0]},"properties":{"id":"353674","name":"Steyning","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9465,56.1224,50.0]},"properties":{"id":"353675","name":"Stirling Youth Hostel (St. John Street)","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8339,56.5694,947.0]},"properties":{"id":"353679","name":"Stob A' Choire Odhair","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.925,55.951,7.0]},"properties":{"id":"351286","name":"Dunoon","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3419,55.7778,131.0]},"properties":{"id":"351287","name":"Duns","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1886,57.2036,55.0]},"properties":{"id":"351294","name":"Dyce","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3075,51.4415,53.0]},"properties":{"id":"351295","name":"Dyffryn House Gardens","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.368,51.4801,152.0]},"properties":{"id":"351296","name":"Dyrham Park","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3023,51.5117,31.0]},"properties":{"id":"351297","name":"Ealing","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2701,52.2214,31.0]},"properties":{"id":"351300","name":"Earl Soham","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6979,54.9854,72.0]},"properties":{"id":"351306","name":"East Denton","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2257,53.4095,31.0]},"properties":{"id":"351307","name":"East Didsbury","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0129,51.1282,125.0]},"properties":{"id":"351309","name":"East Grinstead","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7985,50.9661,16.0]},"properties":{"id":"351313","name":"East Lambrook Manor","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7601,57.866,null]},"properties":{"id":"351315","name":"East Loch Tarbert","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.328,52.8304,90.0]},"properties":{"id":"351317","name":"East Midlands Airport","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2841,51.0034,80.0]},"properties":{"id":"351319","name":"East Stour","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.255,50.769,88.0]},"properties":{"id":"351323","name":"Eastbourne Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6653,51.5685,29.0]},"properties":{"id":"351332","name":"Eastwood (Southend-On-Sea)","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2048,51.7771,298.0]},"properties":{"id":"351333","name":"Ebbw Vale","nationalPark":null,"region":"wl","unitaryAuthArea":"Blaenau Gwent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.465,53.4417,83.0]},"properties":{"id":"351335","name":"Ecclesfield","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2516,52.8584,92.0]},"properties":{"id":"351336","name":"Eccleshall","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.791,53.3787,342.0]},"properties":{"id":"351339","name":"Edale Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7679,59.182,31.0]},"properties":{"id":"351341","name":"Eday Youth Hostel","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1797,55.9453,74.0]},"properties":{"id":"351356","name":"Edinburgh Pleasance Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5463,51.4284,17.0]},"properties":{"id":"351362","name":"Egham","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8985,53.2109,35.0]},"properties":{"id":"351364","name":"Egmanton","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8434,53.6833,123.0]},"properties":{"id":"351369","name":"Elland","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7344,54.2479,230.0]},"properties":{"id":"351373","name":"Ellingstring Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5229,50.968,140.0]},"properties":{"id":"351377","name":"Elmscott Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3114,53.5969,101.0]},"properties":{"id":"351379","name":"Elton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2376,51.4829,14.0]},"properties":{"id":"351382","name":"Ely (Cardiff)","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1169,51.2506,196.0]},"properties":{"id":"351383","name":"Emmetts Garden","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2377,52.6439,2.0]},"properties":{"id":"351384","name":"Emneth Hungate","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0814,51.654,30.0]},"properties":{"id":"351387","name":"Enfield","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1103,51.6999,100.0]},"properties":{"id":"351389","name":"Epping","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0058,53.0228,92.0]},"properties":{"id":"351394","name":"Erddig","nationalPark":null,"region":"wl","unitaryAuthArea":"Wrexham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1739,50.4188,35.0]},"properties":{"id":"351396","name":"Ernesettle","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0926,52.5637,143.0]},"properties":{"id":"351404","name":"Ettingshall","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4815,52.4613,100.0]},"properties":{"id":"351417","name":"Exhall","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7837,51.7071,87.0]},"properties":{"id":"351427","name":"Fairford","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0262,56.7467,999.0]},"properties":{"id":"353681","name":"Stob Ban (Mamores)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0935,56.4291,998.0]},"properties":{"id":"353692","name":"Stob Diamh","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5841,56.9644,1053.0]},"properties":{"id":"353696","name":"Stob Poite Coire Ardair","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1574,53.4065,67.0]},"properties":{"id":"353698","name":"Stockport","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5922,53.4825,163.0]},"properties":{"id":"353699","name":"Stocksbridge","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5386,51.4131,90.0]},"properties":{"id":"353701","name":"Stockwood","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8388,51.1788,110.0]},"properties":{"id":"353714","name":"Stonehenge","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8475,52.0566,69.0]},"properties":{"id":"353718","name":"Stony Stratford","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9985,51.3518,49.0]},"properties":{"id":"353732","name":"Stratfield Saye House","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.063,55.6756,190.0]},"properties":{"id":"353736","name":"Strathaven","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.882,52.5755,162.0]},"properties":{"id":"353743","name":"Streetly","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.043,57.5027,49.0]},"properties":{"id":"353751","name":"Stuartfield","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4902,53.3062,193.0]},"properties":{"id":"353752","name":"Stubley","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4083,52.1615,80.0]},"properties":{"id":"353758","name":"Suckley","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.149,52.0277,28.0]},"properties":{"id":"353761","name":"Suffolk Ski Centre","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3125,60.4517,null]},"properties":{"id":"353763","name":"Sullom Voe","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2931,59.8786,5.0]},"properties":{"id":"353764","name":"Sumburgh Airport","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3223,55.9264,57.0]},"properties":{"id":"353771","name":"Suntrap","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.261,53.1266,156.0]},"properties":{"id":"353774","name":"Sutton In Ashfield","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3047,53.7705,7.0]},"properties":{"id":"353775","name":"Sutton Ings","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7089,53.4238,46.0]},"properties":{"id":"353776","name":"Sutton Leach","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5483,52.7638,113.0]},"properties":{"id":"353781","name":"Swadlincote Ski Centre","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6847,54.9584,1.0]},"properties":{"id":"353783","name":"Swalwell","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4004,51.2519,79.0]},"properties":{"id":"353784","name":"Swampton","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0156,52.5249,144.0]},"properties":{"id":"353785","name":"Swan Village","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9594,50.6078,17.0]},"properties":{"id":"353786","name":"Swanage","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9334,51.6424,11.0]},"properties":{"id":"353789","name":"Swansea City Fc","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3215,52.0847,39.0]},"properties":{"id":"353796","name":"Swiss Garden","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8659,54.6104,4.0]},"properties":{"id":"353798","name":"Sydenham","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1593,53.6316,171.0]},"properties":{"id":"353799","name":"Syke","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.238,58.359,63.0]},"properties":{"id":"353801","name":"Syre","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2593,53.8833,10.0]},"properties":{"id":"353803","name":"Tadcaster","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0538,57.8117,30.0]},"properties":{"id":"353804","name":"Tain","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0851,50.9842,51.0]},"properties":{"id":"353817","name":"Taunton Racecourse","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.014,51.0885,105.0]},"properties":{"id":"353821","name":"Teffont Magna","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4352,52.6709,130.0]},"properties":{"id":"353823","name":"Telford Wonderland","nationalPark":null,"region":"wm","unitaryAuthArea":"Telford and Wrekin"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3358,55.8943,28.0]},"properties":{"id":"353825","name":"Temple","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2979,52.7575,4.0]},"properties":{"id":"353831","name":"Terrington St. Clement","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5016,51.8614,734.0]},"properties":{"id":"351435","name":"Fan Fawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3534,53.19,3.0]},"properties":{"id":"351436","name":"Fantasy Island Ingoldmells","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1817,50.8556,20.0]},"properties":{"id":"351439","name":"Fareham","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0286,50.8467,11.0]},"properties":{"id":"351441","name":"Farlington","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7524,51.2863,70.0]},"properties":{"id":"351442","name":"Farnborough","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6061,53.7869,47.0]},"properties":{"id":"351444","name":"Farnley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4025,53.5456,110.0]},"properties":{"id":"351445","name":"Farnworth","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6701,53.8117,114.0]},"properties":{"id":"351446","name":"Farsley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2226,56.581,41.0]},"properties":{"id":"351447","name":"Fasnacloich","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1567,52.9979,140.0]},"properties":{"id":"351455","name":"Fenton","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4474,51.6622,236.0]},"properties":{"id":"351457","name":"Ferndale","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8984,50.8069,27.0]},"properties":{"id":"351458","name":"Ferndown","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5516,54.6879,152.0]},"properties":{"id":"351461","name":"Ferryhill","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5751,51.5074,87.0]},"properties":{"id":"351464","name":"Filton","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2729,55.8621,20.0]},"properties":{"id":"351466","name":"Finnieston","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.3191,54.4977,101.0]},"properties":{"id":"351467","name":"Fintona","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3688,56.325,19.0]},"properties":{"id":"351469","name":"Fionnphort","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5223,51.4812,66.0]},"properties":{"id":"351475","name":"Fishponds","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.897,55.2611,157.0]},"properties":{"id":"351501","name":"Forestburn Gate","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8368,58.9185,24.0]},"properties":{"id":"351509","name":"Foubister","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8473,52.5884,171.0]},"properties":{"id":"351511","name":"Four Oaks","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7424,51.3155,66.0]},"properties":{"id":"351519","name":"Frimley","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7952,53.8207,174.0]},"properties":{"id":"351521","name":"Frizinghall","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1995,51.4789,1.0]},"properties":{"id":"351525","name":"Fulham","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2071,51.4748,22.0]},"properties":{"id":"351526","name":"Fulham","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9753,52.5674,119.0]},"properties":{"id":"351528","name":"Fullbrook","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6092,50.9002,74.0]},"properties":{"id":"351530","name":"Furzey Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7437,57.7168,null]},"properties":{"id":"351532","name":"Gair Loch","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4432,57.0083,1013.0]},"properties":{"id":"351538","name":"Garbh Chioch Mhor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7855,58.2975,50.0]},"properties":{"id":"351540","name":"Garenin Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.81,54.462,170.0]},"properties":{"id":"351550","name":"Gayles","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5633,52.7431,20.0]},"properties":{"id":"351551","name":"Gayton","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8704,54.6249,4.0]},"properties":{"id":"351557","name":"George Best Belfast City Airport","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5061,55.239,80.0]},"properties":{"id":"351559","name":"Giant's Causeway","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9203,52.4998,139.0]},"properties":{"id":"351560","name":"Gib Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.201,53.3562,79.0]},"properties":{"id":"351565","name":"Gilbent","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2808,55.8691,28.0]},"properties":{"id":"351585","name":"Glasgow Youth Hostel","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9044,52.8871,91.0]},"properties":{"id":"353833","name":"Tetchill","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.265,51.4054,77.0]},"properties":{"id":"353839","name":"Thatcham","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1164,51.4846,1.0]},"properties":{"id":"353846","name":"The Oval Surrey C.C.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9283,51.6059,90.0]},"properties":{"id":"353848","name":"The Celtic Manor Golf Club","nationalPark":null,"region":"wl","unitaryAuthArea":"Newport"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8699,52.2447,91.0]},"properties":{"id":"353850","name":"The County Ground Northamptonshire C.C.C.","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2273,52.188,15.0]},"properties":{"id":"353852","name":"The County Ground Worcestershire C.C.C.","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.69,57.0362,1004.0]},"properties":{"id":"353855","name":"The Devil's Point","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2655,50.0788,34.0]},"properties":{"id":"353856","name":"The Flambards Experience","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4709,51.7334,24.0]},"properties":{"id":"353857","name":"The Ford County Ground Essex C.C.C.","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1231,50.4957,128.0]},"properties":{"id":"353858","name":"The Garden House Buckland Monachorum","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0017,51.7354,78.0]},"properties":{"id":"353863","name":"The Oxfordshire Golf Club","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4425,51.5644,136.0]},"properties":{"id":"353866","name":"The Ridgeway Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.597,51.416,62.0]},"properties":{"id":"353872","name":"The Valley Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0925,51.3065,72.0]},"properties":{"id":"353873","name":"The Vyne","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3161,55.8047,45.0]},"properties":{"id":"353888","name":"Thornliebank","nationalPark":null,"region":"st","unitaryAuthArea":"East Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5122,51.4054,13.0]},"properties":{"id":"353895","name":"Thorpe Park","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9424,54.924,119.0]},"properties":{"id":"353896","name":"Threave Gardens","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5958,51.2103,91.0]},"properties":{"id":"353900","name":"Thruxton Motor Racing Circuit","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3704,52.7354,11.0]},"properties":{"id":"353903","name":"Thurlby Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0936,52.6721,59.0]},"properties":{"id":"353904","name":"Thurmaston","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7388,56.154,22.0]},"properties":{"id":"353915","name":"Tillicoultry","nationalPark":null,"region":"ta","unitaryAuthArea":"Clackmannanshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6192,53.8553,164.0]},"properties":{"id":"353918","name":"Tinshill","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7534,51.77,22.0]},"properties":{"id":"353932","name":"Tolleshunt Major","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5806,57.5817,922.0]},"properties":{"id":"353936","name":"Tom Na Gruagaich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7469,53.8527,96.0]},"properties":{"id":"353940","name":"Tong Park","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4568,51.6239,139.0]},"properties":{"id":"353944","name":"Tonypandy","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4654,50.6841,3.0]},"properties":{"id":"353946","name":"Topsham","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5089,50.4296,null]},"properties":{"id":"353947","name":"Tor Bay","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6875,56.4562,16.0]},"properties":{"id":"353950","name":"Torosay Castle","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1932,50.3748,11.0]},"properties":{"id":"353951","name":"Torpoint","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5512,50.4913,92.0]},"properties":{"id":"353952","name":"Torquay Ski Slope","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5381,50.4647,18.0]},"properties":{"id":"353953","name":"Torre Abbey Grounds","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5354,50.6765,37.0]},"properties":{"id":"353955","name":"Totland Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5394,53.3152,190.0]},"properties":{"id":"353956","name":"Totley","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5283,53.3188,140.0]},"properties":{"id":"353957","name":"Totley Brook","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5205,53.3184,142.0]},"properties":{"id":"353958","name":"Totley Rise","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6846,50.4332,7.0]},"properties":{"id":"353959","name":"Totnes","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4297,52.6703,9.0]},"properties":{"id":"353962","name":"Tottenhill","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4899,50.9233,1.0]},"properties":{"id":"353963","name":"Totton","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.81,54.7427,305.0]},"properties":{"id":"353964","name":"Tow Law","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9531,55.9445,87.0]},"properties":{"id":"353966","name":"Tranent","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0141,53.3777,15.0]},"properties":{"id":"353967","name":"Tranmere","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0985,52.8304,178.0]},"properties":{"id":"353972","name":"Trefonen","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1884,57.2305,264.0]},"properties":{"id":"351590","name":"Glen Affric Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1604,52.5848,77.0]},"properties":{"id":"351592","name":"Glen Parva","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9612,54.9621,19.0]},"properties":{"id":"351593","name":"Glenarm Castle Walled Garden","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4322,55.8258,40.0]},"properties":{"id":"351595","name":"Glenburn","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6251,56.2273,271.0]},"properties":{"id":"351598","name":"Glendevon Youth Hostel","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6339,51.6761,330.0]},"properties":{"id":"351610","name":"Glyncorrwg Mountain Bike Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6462,50.3699,66.0]},"properties":{"id":"351616","name":"Golant Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3057,53.5344,52.0]},"properties":{"id":"351621","name":"Goldthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7322,50.8986,149.0]},"properties":{"id":"351625","name":"Goodwood Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0446,55.8367,147.0]},"properties":{"id":"351630","name":"Gorebridge","nationalPark":null,"region":"dg","unitaryAuthArea":"Midlothian Council"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1758,53.4626,65.0]},"properties":{"id":"351634","name":"Gorton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2139,51.785,73.0]},"properties":{"id":"351636","name":"Gosling Sports Park","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3115,55.8626,2.0]},"properties":{"id":"351638","name":"Govan","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1637,55.9041,120.0]},"properties":{"id":"351641","name":"Gracemount","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.642,52.9122,52.0]},"properties":{"id":"351645","name":"Grantham","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0236,54.4629,86.0]},"properties":{"id":"351646","name":"Grasmere Butterlip How Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0318,54.4668,90.0]},"properties":{"id":"351647","name":"Grasmere Thorney How Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.4542,54.8148,8.0]},"properties":{"id":"351652","name":"Gray's Printing Press (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9705,54.3151,98.0]},"properties":{"id":"351653","name":"Graythwaite Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3634,51.8725,72.0]},"properties":{"id":"351662","name":"Great Dunmow","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1394,50.9515,90.0]},"properties":{"id":"351672","name":"Great Torrington","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7322,53.8334,149.0]},"properties":{"id":"351679","name":"Greengates","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4091,53.3953,54.0]},"properties":{"id":"351682","name":"Greenland","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.01,51.4779,6.0]},"properties":{"id":"351683","name":"Greenwich","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4955,53.439,183.0]},"properties":{"id":"351686","name":"Grenoside","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9503,51.5471,107.0]},"properties":{"id":"351689","name":"Grey's Court","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9256,54.374,262.0]},"properties":{"id":"351693","name":"Grinton Lodge Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9669,52.7908,38.0]},"properties":{"id":"351701","name":"Guist","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0605,50.1428,0.0]},"properties":{"id":"351711","name":"Gyllyngvase","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9544,52.0447,20.0]},"properties":{"id":"351720","name":"Hadleigh (Suffolk)","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3182,53.3687,58.0]},"properties":{"id":"351726","name":"Hale Barns","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8196,53.3703,9.0]},"properties":{"id":"351729","name":"Halewood","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8593,53.7398,277.0]},"properties":{"id":"351730","name":"Halifax Ski & Snowboard Centre","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4902,58.5144,40.0]},"properties":{"id":"351731","name":"Halkirk","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2094,51.1955,38.0]},"properties":{"id":"351733","name":"Hall Place Garden (Leigh)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5449,53.3727,288.0]},"properties":{"id":"351734","name":"Hallam Head","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.246,50.1379,120.0]},"properties":{"id":"353978","name":"Trenear","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.129,52.9364,21.0]},"properties":{"id":"353980","name":"Trent Bridge Nottinghamshire C.C.C.","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3336,49.9463,6.0]},"properties":{"id":"353983","name":"Tresco Abbey Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Isles of Scilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4923,53.8445,123.0]},"properties":{"id":"353991","name":"Tropical World Roundhay","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2678,50.8816,180.0]},"properties":{"id":"353994","name":"Truleigh Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8617,51.4764,44.0]},"properties":{"id":"353999","name":"Twyford","nationalPark":null,"region":"se","unitaryAuthArea":"Wokingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7159,53.7884,180.0]},"properties":{"id":"354001","name":"Tyersal","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7012,53.784,188.0]},"properties":{"id":"354002","name":"Tyersal Gate","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.824,52.1635,305.0]},"properties":{"id":"354004","name":"Tyncornel Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4242,55.0179,30.0]},"properties":{"id":"354005","name":"Tynemouth","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.348,51.9541,182.0]},"properties":{"id":"354007","name":"Ty'N-Y-Caeau Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0814,52.9147,180.0]},"properties":{"id":"354008","name":"Tyn-Y-Rhos Hall","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.086,52.5867,9.0]},"properties":{"id":"354010","name":"Tywyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8758,52.5296,110.0]},"properties":{"id":"354027","name":"Upper Witton","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3396,51.0613,143.0]},"properties":{"id":"354047","name":"Wadhurst","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9572,51.5724,4.0]},"properties":{"id":"354054","name":"Wales National Velodrome","nationalPark":null,"region":"wl","unitaryAuthArea":"Newport"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0648,53.4263,12.0]},"properties":{"id":"354059","name":"Wallasey","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9125,50.7473,55.0]},"properties":{"id":"354062","name":"Wallisdown","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3933,51.1927,29.0]},"properties":{"id":"354064","name":"Walmer Castle Garden","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0266,51.81,32.0]},"properties":{"id":"354081","name":"Ware","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0543,51.3088,183.0]},"properties":{"id":"354088","name":"Warlingham","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5962,52.2792,55.0]},"properties":{"id":"354091","name":"Warwick Racecourse","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0288,53.4743,9.0]},"properties":{"id":"354095","name":"Waterloo (Merseyside)","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0273,50.8898,51.0]},"properties":{"id":"354097","name":"Waterlooville","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.093,51.7477,59.0]},"properties":{"id":"354099","name":"Waterperry","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8507,52.9543,11.0]},"properties":{"id":"354115","name":"Wells-Next-The-Sea","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3128,51.7044,6.0]},"properties":{"id":"354117","name":"Welsh Motor Sports Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5964,51.393,45.0]},"properties":{"id":"354124","name":"Wentworth Club","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5018,51.3363,23.0]},"properties":{"id":"354129","name":"West Byfleet","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2504,55.824,30.0]},"properties":{"id":"351745","name":"Hampden Park","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3829,53.3708,121.0]},"properties":{"id":"351752","name":"Handsworth (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.937,52.5091,130.0]},"properties":{"id":"351753","name":"Handsworth (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9735,52.6077,139.0]},"properties":{"id":"351756","name":"Harden","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4564,51.0114,19.0]},"properties":{"id":"351761","name":"Haremere Hall","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6254,53.8283,54.0]},"properties":{"id":"351798","name":"Hawksworth","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6824,53.3844,17.0]},"properties":{"id":"351817","name":"Heapham","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.582,54.984,38.0]},"properties":{"id":"351824","name":"Heaton (Tyne & Wear)","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4685,53.3598,86.0]},"properties":{"id":"351839","name":"Heeley","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1987,52.1718,51.0]},"properties":{"id":"351842","name":"Helmingham Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0561,54.2508,66.0]},"properties":{"id":"351845","name":"Helmsley Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2739,50.1011,32.0]},"properties":{"id":"351846","name":"Helston","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4616,51.7466,123.0]},"properties":{"id":"351849","name":"Hemel Ski Centre","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6277,51.5058,38.0]},"properties":{"id":"351851","name":"Henbury","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4332,53.7236,7.0]},"properties":{"id":"351860","name":"Hessle","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0815,51.0553,110.0]},"properties":{"id":"351861","name":"Hestercombe Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0974,53.3281,89.0]},"properties":{"id":"351862","name":"Heswall","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3251,51.9623,27.0]},"properties":{"id":"351863","name":"Hethelpit Cross","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0992,53.5658,182.0]},"properties":{"id":"351869","name":"Heyside","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1728,51.0595,114.0]},"properties":{"id":"351874","name":"High Beeches (Handcross)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8574,50.344,161.0]},"properties":{"id":"351878","name":"High Street","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7467,51.6282,67.0]},"properties":{"id":"351879","name":"High Wycombe","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2242,53.5307,90.0]},"properties":{"id":"351885","name":"Higher Blackley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3044,53.607,101.0]},"properties":{"id":"351887","name":"Higher Woodhill","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9564,52.3964,172.0]},"properties":{"id":"354138","name":"West Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9363,58.2474,null]},"properties":{"id":"354144","name":"West Loch Roag","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9499,52.6785,130.0]},"properties":{"id":"354151","name":"Westbury (Shropshire)","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4081,51.8184,9.0]},"properties":{"id":"354153","name":"Westbury Court Garden","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2845,52.6895,105.0]},"properties":{"id":"354162","name":"Weston Park","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4577,51.3692,18.0]},"properties":{"id":"354170","name":"Weybridge","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2168,51.5123,30.0]},"properties":{"id":"354189","name":"Whitchurch (Cardiff)","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.275,52.9755,141.0]},"properties":{"id":"354206","name":"Whitmore Hall","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0922,58.4392,16.0]},"properties":{"id":"354214","name":"Wick (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5223,51.6109,6.0]},"properties":{"id":"354217","name":"Wickford","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3087,51.0593,33.0]},"properties":{"id":"354245","name":"Winchester","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6193,51.8929,52.0]},"properties":{"id":"351891","name":"Hill Court Ross-On-Wye","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.993,50.7528,22.0]},"properties":{"id":"351895","name":"Hillbourne","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0639,50.8245,4.0]},"properties":{"id":"351901","name":"Hilsea","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5197,52.4457,106.0]},"properties":{"id":"351913","name":"Holbrooks","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9859,54.1893,10.0]},"properties":{"id":"351916","name":"Holker Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7848,53.5715,148.0]},"properties":{"id":"351924","name":"Holmfirth","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3962,53.7043,20.0]},"properties":{"id":"351937","name":"Hopetown","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6172,53.8341,82.0]},"properties":{"id":"351947","name":"Horsforth Woodside","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.398,54.9881,26.0]},"properties":{"id":"351948","name":"Horsley Hill","nationalPark":null,"region":"ne","unitaryAuthArea":"South Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5908,51.9709,86.0]},"properties":{"id":"351958","name":"How Caple Court","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7567,53.4688,387.0]},"properties":{"id":"351960","name":"Howden Moors","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1748,53.393,9.0]},"properties":{"id":"351965","name":"Hoylake","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.439,53.4982,119.0]},"properties":{"id":"351966","name":"Hoyland","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2279,52.3348,13.0]},"properties":{"id":"351976","name":"Huntingdon Racecourse","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3725,55.8191,37.0]},"properties":{"id":"351979","name":"Hurlet","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7349,53.8366,169.0]},"properties":{"id":"351990","name":"Idle","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3915,51.6733,70.0]},"properties":{"id":"352004","name":"Ingatestone","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1715,51.0543,65.0]},"properties":{"id":"352008","name":"Instow Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0437,55.9341,9.0]},"properties":{"id":"352014","name":"Inveresk Lodge Garden","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2138,57.4948,2.0]},"properties":{"id":"352020","name":"Inverness Caledonian Thistle Fc","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6115,52.3252,55.0]},"properties":{"id":"352029","name":"Irthlingborough","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7265,55.5821,null]},"properties":{"id":"352030","name":"Irvine Bay","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6268,54.0865,17.0]},"properties":{"id":"352033","name":"Isle Of Man Airport","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1887,50.652,36.0]},"properties":{"id":"352035","name":"Isle Of Wight (Sandown) Airport","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.102,51.5353,47.0]},"properties":{"id":"352036","name":"Islington","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8824,54.7324,140.0]},"properties":{"id":"354279","name":"Wolsingham","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1326,52.5938,128.0]},"properties":{"id":"354282","name":"Wolverhampton Wanderers F.C.","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6751,50.3536,189.0]},"properties":{"id":"354294","name":"Woodlands Leisure Park Dartmouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0413,52.5618,130.0]},"properties":{"id":"354296","name":"Woods Bank","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0425,53.5896,8.0]},"properties":{"id":"354300","name":"Woodvale","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2054,51.1721,16.0]},"properties":{"id":"354302","name":"Woolacombe","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3756,50.8918,14.0]},"properties":{"id":"354309","name":"Woolston","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3531,51.6349,100.0]},"properties":{"id":"354320","name":"Wotton-Under-Edge","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4066,52.0028,52.0]},"properties":{"id":"354326","name":"Wrest Park","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1171,52.569,38.0]},"properties":{"id":"354336","name":"Wymondham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.996,53.8939,null]},"properties":{"id":"354337","name":"Wyre","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.851,52.4151,126.0]},"properties":{"id":"354340","name":"Yardley Wood","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.095,53.9675,11.0]},"properties":{"id":"354353","name":"York Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"York"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7912,52.767,67.0]},"properties":{"id":"354356","name":"Yoxall","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2088,51.4218,29.0]},"properties":{"id":"354361","name":"Wimbledon","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.525,54.3603,26.0]},"properties":{"id":"352052","name":"Jurby Motor Racing Circuit","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7035,54.2483,157.0]},"properties":{"id":"352055","name":"Keady","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9109,53.8676,118.0]},"properties":{"id":"352057","name":"Keighley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1333,54.6012,86.0]},"properties":{"id":"352079","name":"Keswick","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4069,55.9134,52.0]},"properties":{"id":"352093","name":"Kilbowie","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7018,55.6559,17.0]},"properties":{"id":"352107","name":"Kilwinning","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5092,52.1554,82.0]},"properties":{"id":"352111","name":"Kineton","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9269,52.4066,155.0]},"properties":{"id":"352117","name":"King's Norton","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7473,52.4913,89.0]},"properties":{"id":"352120","name":"Kingshurst","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.501,51.4612,102.0]},"properties":{"id":"352128","name":"Kingswood","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.03,52.2023,157.0]},"properties":{"id":"352129","name":"Kington","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9,50.7682,17.0]},"properties":{"id":"352136","name":"Kinson","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6996,53.6083,141.0]},"properties":{"id":"352142","name":"Kirkburton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0475,54.8375,4.0]},"properties":{"id":"352151","name":"Kirkcudbright","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8704,53.782,20.0]},"properties":{"id":"352152","name":"Kirkham","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.464,52.1752,102.0]},"properties":{"id":"352162","name":"Kirtling Green","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6725,53.5447,44.0]},"properties":{"id":"352165","name":"Kitt Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0456,52.3407,206.0]},"properties":{"id":"352171","name":"Knighton (Powys)","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7121,57.2813,9.0]},"properties":{"id":"352184","name":"Kyle Of Lochalsh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1265,55.9034,null]},"properties":{"id":"352187","name":"Kyles Of Bute","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3617,49.4386,94.0]},"properties":{"id":"352188","name":"La Seigneurie (Sark)","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3165,55.6821,null]},"properties":{"id":"352190","name":"Laggan Bay","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4131,54.3222,676.0]},"properties":{"id":"371533","name":"Knoutberry Haw","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3389,54.5953,748.0]},"properties":{"id":"371539","name":"Little Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1998,53.2234,59.0]},"properties":{"id":"371540","name":"Llanfairpwll","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7516,55.3779,725.0]},"properties":{"id":"371549","name":"Lowther Hill","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0266,50.6069,517.0]},"properties":{"id":"371550","name":"Lynch Tor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3556,55.1903,695.0]},"properties":{"id":"371555","name":"Meaul","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9533,54.8295,628.0]},"properties":{"id":"371556","name":"Meenard Mountain","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.10167,52.42142,-2.0]},"properties":{"id":"371559","name":"Mepal","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1317,54.8058,636.0]},"properties":{"id":"371576","name":"Mullaghcloga","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.22773,59.11257,28.0]},"properties":{"id":"371588","name":"Orkney: Loch Of Hundland","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1484,51.9929,713.0]},"properties":{"id":"371610","name":"Rhos Dirion","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3971,54.7195,686.0]},"properties":{"id":"371615","name":"Round Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5818,56.176,137.0]},"properties":{"id":"371617","name":"Rumbling Bridge","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.0365,54.8191,683.0]},"properties":{"id":"371622","name":"Sawel Mountain","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2233,54.4474,964.0]},"properties":{"id":"371623","name":"Sca Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1597,52.36458,27.0]},"properties":{"id":"371625","name":"Scole","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9885,54.1872,730.0]},"properties":{"id":"371635","name":"Slieve Bearnagh","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7605,54.7311,528.0]},"properties":{"id":"371639","name":"Slieve Gallion","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1628,54.0942,485.0]},"properties":{"id":"371645","name":"Slievemartin","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8112,51.116,493.0]},"properties":{"id":"371649","name":"Span Head","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3889,55.3895,729.0]},"properties":{"id":"371656","name":"Swatte Fell","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0971,54.7029,56.0]},"properties":{"id":"371658","name":"Templepatrick","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1102,54.4368,668.0]},"properties":{"id":"371672","name":"Water Crag","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3639,51.8769,769.0]},"properties":{"id":"371674","name":"Waun Rydd","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1939,54.2757,614.0]},"properties":{"id":"371678","name":"Wether Fell","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6812,52.8036,885.0]},"properties":{"id":"371334","name":"Aran Benllyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.47829,53.16221,178.0]},"properties":{"id":"371338","name":"Ashover No 2","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0905,55.7235,651.0]},"properties":{"id":"371360","name":"Blackhope Scar","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0484,54.6398,868.0]},"properties":{"id":"371363","name":"Blencathra","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5464,51.5318,56.0]},"properties":{"id":"371369","name":"Bradley Stoke","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.217,57.2501,804.0]},"properties":{"id":"371384","name":"Carn Mor","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7602,54.8962,464.0]},"properties":{"id":"371390","name":"Carntogher","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4855,54.703,893.0]},"properties":{"id":"371419","name":"Cross Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1134,55.4172,615.0]},"properties":{"id":"371421","name":"Cushat Law","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.588,55.0473,50.0]},"properties":{"id":"371437","name":"Dumfries, Chrichton Royal No 2","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0748,53.1305,924.0]},"properties":{"id":"371446","name":"Elidyr Fawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8633,53.4252,544.0]},"properties":{"id":"371458","name":"Featherbed Top","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0507,53.1299,831.0]},"properties":{"id":"371462","name":"Foel Goch","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1617,54.4847,781.0]},"properties":{"id":"371472","name":"Glaramara","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2765,54.5715,851.0]},"properties":{"id":"371478","name":"Grasmoor","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0161,54.5269,950.0]},"properties":{"id":"371503","name":"Helvellyn","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3044,54.4061,709.0]},"properties":{"id":"371509","name":"High Seat","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9505,50.5903,527.0]},"properties":{"id":"371514","name":"Higher White Tor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5494,55.5282,626.0]},"properties":{"id":"371517","name":"Hudderstone","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8675,55.9073,29.0]},"properties":{"id":"371522","name":"Inverkip","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2843,50.7617,28.0]},"properties":{"id":"370092","name":"Eastbourne (Aurn)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9963,51.5837,46.0]},"properties":{"id":"310113","name":"Newport (Newport)","nationalPark":null,"region":"wl","unitaryAuthArea":"Newport"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7836,50.275,0.0]},"properties":{"id":"354565","name":"Polstreath (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.766,50.3235,0.0]},"properties":{"id":"354567","name":"Porthpean (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7614,50.3277,0.0]},"properties":{"id":"354568","name":"Duporth Beach (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.348,50.3609,0.0]},"properties":{"id":"354573","name":"Downderry (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2205,51.1485,0.0]},"properties":{"id":"354580","name":"Putsborough Sands (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5235,50.4576,0.0]},"properties":{"id":"354600","name":"Beacon Cove (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0397,50.719,0.0]},"properties":{"id":"354629","name":"Poole - Harbour Rockley Sand (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7278,50.733,0.0]},"properties":{"id":"354645","name":"Christchurch - Friar's Cliff (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7137,50.7361,0.0]},"properties":{"id":"354646","name":"Christchurch - Highcliffe Castle (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2231,50.8129,0.0]},"properties":{"id":"354662","name":"Hill Head (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0892,50.7743,0.0]},"properties":{"id":"354682","name":"Seaford Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2878,50.7626,0.0]},"properties":{"id":"354684","name":"Eastbourne (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.431,50.8327,0.0]},"properties":{"id":"354687","name":"Cooden Beach (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0122,51.0339,0.0]},"properties":{"id":"354691","name":"Dymchurch (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4279,51.3348,0.0]},"properties":{"id":"354698","name":"Ramsgate - Pegwell Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7241,51.5319,0.0]},"properties":{"id":"354708","name":"Southend - Jubilee Beach (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1935,51.8004,0.0]},"properties":{"id":"354716","name":"Holland-On-Sea (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7464,52.4667,0.0]},"properties":{"id":"354724","name":"Lowestoft - North Of Claremont Pier (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2846,53.314,0.0]},"properties":{"id":"354739","name":"Sutton-On-Sea (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1414,54.1042,0.0]},"properties":{"id":"354747","name":"Flamborough - Danes Dyke (Beach)","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2836,54.2083,0.0]},"properties":{"id":"354749","name":"Filey (Beach)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4245,55.0238,0.0]},"properties":{"id":"354764","name":"Tynemouth - Long Sands South (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4447,55.0475,0.0]},"properties":{"id":"354766","name":"Whitley Bay (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5547,55.3255,0.0]},"properties":{"id":"354771","name":"Amble Links (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6163,55.5126,1.0]},"properties":{"id":"354773","name":"Low Newton, Newton Haven (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6684,55.5915,0.0]},"properties":{"id":"354775","name":"Seahouses North (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1599,53.4058,0.0]},"properties":{"id":"354781","name":"Meols (Beach)","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4328,53.3383,0.0]},"properties":{"id":"354786","name":"Prestatyn Ffrith Beach (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5241,53.314,0.0]},"properties":{"id":"354787","name":"Kinmel Bay (Sandy Cove) (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5234,53.228,0.0]},"properties":{"id":"354807","name":"Rhosneigr - Traeth Crigyll (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4622,53.1818,0.0]},"properties":{"id":"354810","name":"Aberffraw Bay (Traeth Mawr) (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0576,52.7207,0.0]},"properties":{"id":"354817","name":"Barmouth (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1648,51.4398,0.0]},"properties":{"id":"354832","name":"Penarth (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1636,49.1938,0.0]},"properties":{"id":"354384","name":"Le Haule (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6184,57.6652,0.0]},"properties":{"id":"354403","name":"Findhorn (Beach)","nationalPark":null,"region":"he","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4693,56.4388,0.0]},"properties":{"id":"354413","name":"Ganavan (Beach)","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.8632,55.1667,0.0]},"properties":{"id":"354424","name":"Magilligan - Downhill (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8102,54.2533,0.0]},"properties":{"id":"354432","name":"Tyrella Beach (Clough) (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5576,49.4231,0.0]},"properties":{"id":"354434","name":"Saints Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6631,49.4347,0.0]},"properties":{"id":"354435","name":"Portelet Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6507,49.4523,0.0]},"properties":{"id":"354436","name":"Leree (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5059,56.6509,0.0]},"properties":{"id":"354448","name":"Lunan Bay (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9174,55.9763,0.0]},"properties":{"id":"354456","name":"Seton Sands, Longniddry (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6953,51.4774,0.0]},"properties":{"id":"354471","name":"Porthcawl - Sandy Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9762,51.5665,0.0]},"properties":{"id":"354473","name":"Bracelet Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2487,51.6785,0.0]},"properties":{"id":"354478","name":"Burry Port Beach - East","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6563,51.7313,0.0]},"properties":{"id":"354480","name":"Amroth (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6811,51.6913,0.0]},"properties":{"id":"354482","name":"Monkstone Beach","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8259,51.6463,0.0]},"properties":{"id":"354490","name":"Swanlake Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8623,51.6453,0.0]},"properties":{"id":"354492","name":"Freshwater East (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9034,51.6176,0.0]},"properties":{"id":"354494","name":"Barafundle Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9205,51.608,0.0]},"properties":{"id":"354495","name":"Broadhaven South (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2446,51.7361,0.0]},"properties":{"id":"354497","name":"Martins Haven (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3048,51.8861,0.0]},"properties":{"id":"354498","name":"Porthselau (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2112,51.7218,0.0]},"properties":{"id":"354500","name":"Marloes Sands (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2063,51.9367,0.0]},"properties":{"id":"354506","name":"Blue Lagoon - Abereiddy Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4318,50.1971,0.0]},"properties":{"id":"354513","name":"Hayle (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8962,51.4102,0.0]},"properties":{"id":"354514","name":"Clevedon Beach (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9979,50.5409,0.0]},"properties":{"id":"354528","name":"Harlyn Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0844,50.4153,0.0]},"properties":{"id":"354537","name":"Newquay - Towan (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1476,50.3711,0.0]},"properties":{"id":"354540","name":"Perranporth - Penhale Sands (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4823,50.2158,0.0]},"properties":{"id":"354547","name":"St Ives - Porthmeor (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6237,56.1143,4.0]},"properties":{"id":"354838","name":"Loch Lomond","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2215,54.0058,143.0]},"properties":{"id":"354842","name":"Hellifield","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2324,52.9162,14.0]},"properties":{"id":"354846","name":"Criccieth Castle","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1974,51.8741,26.0]},"properties":{"id":"354864","name":"Solva","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4061,52.7043,8.0]},"properties":{"id":"354867","name":"Wroxham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.575,52.7205,11.0]},"properties":{"id":"354868","name":"Potter Heigham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.682,51.8258,185.0]},"properties":{"id":"354875","name":"Craig Y Nos Country Park","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4791,51.8723,436.0]},"properties":{"id":"354877","name":"Storey Arms","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6237,51.883,314.0]},"properties":{"id":"354882","name":"Crai Reservoir","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1688,55.2588,217.0]},"properties":{"id":"354889","name":"Otterburn Camp","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3225,55.0797,205.0]},"properties":{"id":"354890","name":"Stonehaugh","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6636,52.8561,171.0]},"properties":{"id":"354891","name":"Bala Lake Railway","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0216,53.1235,294.0]},"properties":{"id":"354895","name":"Ogwen Warden Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2559,54.468,83.0]},"properties":{"id":"354916","name":"Wasdale Head","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.988,54.2899,221.0]},"properties":{"id":"354927","name":"Aysgarth","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4622,54.1899,272.0]},"properties":{"id":"354939","name":"Kingsdale","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3369,54.1774,289.0]},"properties":{"id":"354946","name":"Selside","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7825,51.2429,25.0]},"properties":{"id":"354956","name":"Caddow Combe","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5801,51.0899,370.0]},"properties":{"id":"354978","name":"Winsford Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4817,51.0476,347.0]},"properties":{"id":"354980","name":"Haddon Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8273,51.1551,394.0]},"properties":{"id":"354981","name":"Pinkery Centre","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.539,51.1383,279.0]},"properties":{"id":"354984","name":"Wheddon Cross","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8625,53.4599,636.0]},"properties":{"id":"354989","name":"Bleaklow","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7449,53.4158,230.0]},"properties":{"id":"354991","name":"Derwent Valley","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9322,57.127,234.0]},"properties":{"id":"354994","name":"Kincraig","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.585,55.515,27.0]},"properties":{"id":"3136","name":"Prestwick Rnas","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.383,55.709,112.0]},"properties":{"id":"3158","name":"Charterhall","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.157,54.614,81.0]},"properties":{"id":"3212","name":"Keswick","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.415,55.018,33.0]},"properties":{"id":"3262","name":"Tynemouth","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.39,54.204,25.0]},"properties":{"id":"3265","name":"Topcliffe","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.174,54.094,15.0]},"properties":{"id":"3292","name":"Bridlington Mrsc","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.056,53.497,9.0]},"properties":{"id":"3316","name":"Crosby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.97993,53.12755,298.0]},"properties":{"id":"3330","name":"Leek","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.197,53.836,8.0]},"properties":{"id":"3355","name":"Church Fenton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.546,53.307,57.0]},"properties":{"id":"3373","name":"Scampton","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.502,53.031,62.0]},"properties":{"id":"3379","name":"Cranwell","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.171,53.094,6.0]},"properties":{"id":"3391","name":"Coningsby","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8854,53.7446,15.0]},"properties":{"id":"98","name":"Warton","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.854,60.749,15.0]},"properties":{"id":"3002","name":"Baltasound","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.183,60.139,82.0]},"properties":{"id":"3005","name":"Lerwick (S. Screen)","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.896,57.725,265.0]},"properties":{"id":"3031","name":"Loch Glascarnoch Saws","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.442,58.288,81.0]},"properties":{"id":"3044","name":"Altnaharra Saws","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.45,51.283,33.0]},"properties":{"id":"99008","name":"East Malling","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.383,57.45,55.0]},"properties":{"id":"99010","name":"Fyvie Castle","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1,54.3,91.0]},"properties":{"id":"99014","name":"Katesbridge","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.183,54.067,4.0]},"properties":{"id":"99015","name":"Killowen","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.467,53.85,115.0]},"properties":{"id":"99060","name":"Stonyhurst","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.308,57.613,25.0]},"properties":{"id":"99092","name":"Kinlochewe","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.27,52.99,178.0]},"properties":{"id":"99093","name":"Keele","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.124,52.802,9.0]},"properties":{"id":"3407","name":"Llanbedr","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.571,52.139,133.0]},"properties":{"id":"3502","name":"Aberporth","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.33,52.358,107.0]},"properties":{"id":"3544","name":"Church Lawford","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.368,51.713,3.0]},"properties":{"id":"3605","name":"Pembrey Sands Samos","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.802,51.68,204.0]},"properties":{"id":"3660","name":"High Wycombe","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4,51.6169,113.0]},"properties":{"id":"3670","name":"Northwood","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.453,51.896,87.0]},"properties":{"id":"3684","name":"Andrewsfield","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.283,51.854,5.0]},"properties":{"id":"3696","name":"Walton-On-Naze (Codet2)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.805,51.201,132.0]},"properties":{"id":"3743","name":"Larkhill","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.754,51.161,126.0]},"properties":{"id":"3746","name":"Boscombe Down","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2333,51.15,67.0]},"properties":{"id":"3769","name":"Charlwood","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.257,50.085,78.0]},"properties":{"id":"3809","name":"Culdrose","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.64,51.006,20.0]},"properties":{"id":"3853","name":"Yeovilton","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.454,50.522,52.0]},"properties":{"id":"3857","name":"Isle Of Portland","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.208,50.807,9.0]},"properties":{"id":"3874","name":"Solent Mrsc","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.292,50.836,13.0]},"properties":{"id":"3876","name":"Shoreham","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.577,54.707,49.0]},"properties":{"id":"3904","name":"Castlederg","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.457,54.865,64.0]},"properties":{"id":"3915","name":"Portglenone Samos","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.502,54.237,161.0]},"properties":{"id":"3923","name":"Glenanne","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7579,53.7958,124.0]},"properties":{"id":"310003","name":"Bradford","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4731,52.9222,46.0]},"properties":{"id":"310007","name":"Derby","nationalPark":null,"region":"em","unitaryAuthArea":"Derby"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1382,52.6365,60.0]},"properties":{"id":"310011","name":"Leicester","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4861,53.7484,108.0]},"properties":{"id":"310029","name":"Blackburn","nationalPark":null,"region":"nw","unitaryAuthArea":"Blackburn with Darwen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4798,51.2066,56.0]},"properties":{"id":"320281","name":"Andover","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0104,53.9634,123.0]},"properties":{"id":"320309","name":"Skipton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2,51.05,34.0]},"properties":{"id":"321971","name":"Appledore","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6512,54.3463,42.0]},"properties":{"id":"321983","name":"Armagh","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.239,55.2058,4.0]},"properties":{"id":"322002","name":"Ballycastle","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1356,50.822,8.0]},"properties":{"id":"310037","name":"Brighton","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.124,52.2075,7.0]},"properties":{"id":"310042","name":"Cambridge","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5238,51.3805,21.0]},"properties":{"id":"310045","name":"Chatham","nationalPark":null,"region":"se","unitaryAuthArea":"Medway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0742,51.8972,58.0]},"properties":{"id":"310047","name":"Cheltenham","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4201,53.2348,77.0]},"properties":{"id":"310049","name":"Chesterfield","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1913,51.1149,76.0]},"properties":{"id":"310055","name":"Crawley","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4507,56.0718,93.0]},"properties":{"id":"310064","name":"Dunfermline","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3724,51.4414,18.0]},"properties":{"id":"310076","name":"Gravesend","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2113,54.6916,12.0]},"properties":{"id":"310086","name":"Hartlepool","nationalPark":null,"region":"ne","unitaryAuthArea":"Hartlepool"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5751,50.8537,10.0]},"properties":{"id":"310087","name":"Hastings","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5243,51.2699,10.0]},"properties":{"id":"310106","name":"Maidstone","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2334,54.5741,6.0]},"properties":{"id":"310109","name":"Middlesbrough","nationalPark":null,"region":"ne","unitaryAuthArea":"Middlesbrough"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1604,53.6139,132.0]},"properties":{"id":"310126","name":"Rochdale","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2635,52.3705,113.0]},"properties":{"id":"310129","name":"Rugby","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7132,51.5408,27.0]},"properties":{"id":"310137","name":"Southend-On-Sea","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3357,51.7529,113.0]},"properties":{"id":"310139","name":"St. Albans","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1192,52.8064,76.0]},"properties":{"id":"310141","name":"Stafford","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5241,50.4614,4.0]},"properties":{"id":"310153","name":"Torquay","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4907,57.7021,7.0]},"properties":{"id":"322075","name":"Burghead","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0333,57.6808,7.0]},"properties":{"id":"322125","name":"Cromarty","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.45,51.52,43.0]},"properties":{"id":"322958","name":"Yiewsley","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7513,54.664,131.0]},"properties":{"id":"322635","name":"Penrith","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4903,53.3189,1.0]},"properties":{"id":"310223","name":"Rhyl","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7911,56.34,19.0]},"properties":{"id":"310230","name":"St. Andrews","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2233,57.4779,13.0]},"properties":{"id":"320002","name":"Inverness","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8511,52.831,41.0]},"properties":{"id":"322183","name":"Fakenham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0652,50.152,9.0]},"properties":{"id":"322185","name":"Falmouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1991,51.6528,132.0]},"properties":{"id":"324151","name":"Barnet","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3807,53.0972,133.0]},"properties":{"id":"324158","name":"Alfreton","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8021,52.5404,189.0]},"properties":{"id":"324172","name":"Church Stretton","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5152,56.0021,20.0]},"properties":{"id":"324178","name":"Dunbar","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0895,55.869,14.0]},"properties":{"id":"324182","name":"Eyemouth","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.785,56.0,30.0]},"properties":{"id":"324183","name":"Falkirk","nationalPark":null,"region":"ta","unitaryAuthArea":"Falkirk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4389,55.3352,115.0]},"properties":{"id":"324207","name":"Moffat","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8226,52.5701,142.0]},"properties":{"id":"324223","name":"Sutton Coldfield","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1212,53.309,40.0]},"properties":{"id":"324241","name":"Worksop","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3916,53.8709,111.0]},"properties":{"id":"324243","name":"Clitheroe","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3398,54.2337,30.0]},"properties":{"id":"322856","name":"Thirsk","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.617,52.9,78.0]},"properties":{"id":"324053","name":"Docking","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4381,50.7138,71.0]},"properties":{"id":"324054","name":"Dorchester","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7146,52.056,51.0]},"properties":{"id":"324058","name":"Hereford","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8856,52.7661,74.0]},"properties":{"id":"324062","name":"Melton Mowbray","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3216,51.401,74.0]},"properties":{"id":"324063","name":"Newbury","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5267,54.3235,129.0]},"properties":{"id":"324067","name":"Sedbergh","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.612,51.4813,23.0]},"properties":{"id":"324075","name":"Windsor","nationalPark":null,"region":"se","unitaryAuthArea":"Windsor and Maidenhead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3153,51.8571,26.0]},"properties":{"id":"324079","name":"Carmarthen","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7263,53.2929,37.0]},"properties":{"id":"324080","name":"Colwyn Bay","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4019,52.7561,5.0]},"properties":{"id":"322380","name":"King's Lynn","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.83,51.66,10.0]},"properties":{"id":"322568","name":"Neath Abbey","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.44,50.55,104.0]},"properties":{"id":"322666","name":"Portland","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3922,51.947,129.0]},"properties":{"id":"322056","name":"Brecon","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5127,50.3946,3.0]},"properties":{"id":"322065","name":"Brixham","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5879,54.5496,3.0]},"properties":{"id":"322948","name":"Whitehaven","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1969,56.8716,936.0]},"properties":{"id":"350001","name":"A' Bhuidheanach Bheag","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2032,57.2073,64.0]},"properties":{"id":"350010","name":"Aberdeen Airport","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1065,54.9955,75.0]},"properties":{"id":"350033","name":"Acomb Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4886,51.3689,14.0]},"properties":{"id":"350036","name":"Addlestone","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5929,53.8543,145.0]},"properties":{"id":"350037","name":"Adel","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8417,50.7734,10.0]},"properties":{"id":"350040","name":"Adventure Wonderland","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2358,53.3013,81.0]},"properties":{"id":"350052","name":"Alderley Edge","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5848,55.9841,42.0]},"properties":{"id":"350056","name":"Alexandria","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1566,50.8024,1.0]},"properties":{"id":"350060","name":"Alfriston Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8433,51.1656,115.0]},"properties":{"id":"350061","name":"Alice Holt","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9882,52.1347,87.0]},"properties":{"id":"324227","name":"Towcester","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.279,55.285,211.0]},"properties":{"id":"3230","name":"Redesdale Camp (Samos)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.509,53.259,77.0]},"properties":{"id":"3313","name":"Rhyl","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.814,54.721,225.0]},"properties":{"id":"3911","name":"Lough Fea Samos","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.224,54.664,63.0]},"properties":{"id":"3917","name":"Aldergrove","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5366,50.1183,33.0]},"properties":{"id":"310218","name":"Penzance","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.08,51.9444,10.0]},"properties":{"id":"322523","name":"Mistley","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.433,52.767,66.0]},"properties":{"id":"99068","name":"Winterbourne","nationalPark":null,"region":"wm","unitaryAuthArea":"Telford and Wrekin"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1685,56.09984,25.0]},"properties":{"id":"354372","name":"Raith Rovers F.C.","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4191,57.5959,5.0]},"properties":{"id":"354373","name":"Ross County F.C.","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.003,51.503,5.0]},"properties":{"id":"354378","name":"North Greenwich Arena","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7284,52.0406,31.0]},"properties":{"id":"354381","name":"Sudbury","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2378,52.539,2.0]},"properties":{"id":"352195","name":"Lakes End","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0857,50.8122,1.0]},"properties":{"id":"352204","name":"Landport","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0027,52.4891,171.0]},"properties":{"id":"352212","name":"Langley Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4647,51.9023,127.0]},"properties":{"id":"352236","name":"Leagrave","nationalPark":null,"region":"ee","unitaryAuthArea":"Luton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1154,57.6238,146.0]},"properties":{"id":"352237","name":"Learnie Red Rock Mountain Bike Trail Centre","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7196,54.9807,41.0]},"properties":{"id":"352256","name":"Lemington","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2016,55.9743,64.0]},"properties":{"id":"352257","name":"Lennoxtown","nationalPark":null,"region":"st","unitaryAuthArea":"East Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.176,52.9475,29.0]},"properties":{"id":"352258","name":"Lenton","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8852,55.6376,169.0]},"properties":{"id":"352266","name":"Lesmahagow","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4377,57.6838,6.0]},"properties":{"id":"352269","name":"Letterewe","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4032,58.2094,39.0]},"properties":{"id":"352276","name":"Lews Castle Gardens","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2954,53.6076,109.0]},"properties":{"id":"352289","name":"Limefield","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9981,54.0563,222.0]},"properties":{"id":"352297","name":"Linton Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.4413,54.2518,63.0]},"properties":{"id":"352302","name":"Lisnaskea","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.245,53.1242,100.0]},"properties":{"id":"352311","name":"Little Moreton Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.309,52.4563,6.0]},"properties":{"id":"352315","name":"Littleport","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0983,52.8163,67.0]},"properties":{"id":"352321","name":"Llanbedr Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2253,51.5053,22.0]},"properties":{"id":"352325","name":"Llandaff North","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3094,52.3091,233.0]},"properties":{"id":"352327","name":"Llanddewi Ystradenni","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1703,52.9689,85.0]},"properties":{"id":"352342","name":"Llangollen","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3729,51.5403,111.0]},"properties":{"id":"352352","name":"Llantrisant","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4579,52.7617,257.0]},"properties":{"id":"352354","name":"Llanwddyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8914,56.3313,null]},"properties":{"id":"352366","name":"Loch Buie","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2372,56.8483,null]},"properties":{"id":"352371","name":"Loch Eil","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2172,56.447,null]},"properties":{"id":"352374","name":"Loch Etive","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5738,57.2305,273.0]},"properties":{"id":"352384","name":"Loch Ness Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1447,57.16,null]},"properties":{"id":"352387","name":"Loch Scavaig","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7067,57.9581,null]},"properties":{"id":"352389","name":"Loch Seaforth","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2828,55.6989,22.0]},"properties":{"id":"352400","name":"Lochranza Youth Hostel","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7823,52.4165,129.0]},"properties":{"id":"352406","name":"Lode Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1248,51.5081,11.0]},"properties":{"id":"352409","name":"London","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4487,51.473,26.0]},"properties":{"id":"352415","name":"London Heathrow Airport","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9842,52.4857,185.0]},"properties":{"id":"352419","name":"Londonderry (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1317,52.9873,150.0]},"properties":{"id":"352435","name":"Longton","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.17284,51.52944,40.0]},"properties":{"id":"352438","name":"Lord's Marylebone C.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2852,53.5153,64.0]},"properties":{"id":"352454","name":"Lower Kersal","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4648,53.3656,68.0]},"properties":{"id":"352456","name":"Lowfield","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6664,51.1712,134.0]},"properties":{"id":"352462","name":"Lundy Island","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7562,55.0473,119.0]},"properties":{"id":"352480","name":"Lyneholmeford","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3728,53.0043,null]},"properties":{"id":"352481","name":"Lynn Deeps","nationalPark":null,"region":"ee","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.798,56.153,23.0]},"properties":{"id":"350077","name":"Alva","nationalPark":null,"region":"ta","unitaryAuthArea":"Clackmannanshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.149,52.4679,70.0]},"properties":{"id":"350085","name":"Amblecote","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.961,54.419,37.0]},"properties":{"id":"350087","name":"Ambleside Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3445,53.4104,29.0]},"properties":{"id":"350091","name":"Amlwch","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9872,51.7925,38.0]},"properties":{"id":"350092","name":"Ammanford","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0103,56.4655,139.0]},"properties":{"id":"350105","name":"Ancrum Outdoor Education Centre","nationalPark":null,"region":"ta","unitaryAuthArea":"Dundee"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7308,54.8564,238.0]},"properties":{"id":"350110","name":"Annfield Plain","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5309,50.8581,10.0]},"properties":{"id":"350152","name":"Arundel Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.677,51.4139,79.0]},"properties":{"id":"350153","name":"Ascot Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"Windsor and Maidenhead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1026,53.494,111.0]},"properties":{"id":"350162","name":"Ashton-Under-Lyne","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1542,53.617,21.0]},"properties":{"id":"350163","name":"Askern","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4908,53.5238,58.0]},"properties":{"id":"350171","name":"Atherton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9738,54.4132,51.0]},"properties":{"id":"350180","name":"Aughnacloy","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2541,52.7963,29.0]},"properties":{"id":"350190","name":"Aylsham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2754,53.3991,38.0]},"properties":{"id":"350204","name":"Baguley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.11,55.8458,62.0]},"properties":{"id":"350206","name":"Baillieston","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6805,53.2166,161.0]},"properties":{"id":"350208","name":"Bakewell Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3475,57.9143,119.0]},"properties":{"id":"350210","name":"Balblair Trails","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5123,53.3989,84.0]},"properties":{"id":"352499","name":"Malinbridge","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2548,53.4776,30.0]},"properties":{"id":"352511","name":"Manchester Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7707,53.8064,147.0]},"properties":{"id":"352515","name":"Manningham","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4477,53.8093,78.0]},"properties":{"id":"352522","name":"Manston","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1093,57.4655,1007.0]},"properties":{"id":"352523","name":"Maoile Lunndaidh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.267,53.7509,2.0]},"properties":{"id":"352531","name":"Marfleet","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1892,53.5991,130.0]},"properties":{"id":"352543","name":"Marland","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3983,51.1297,61.0]},"properties":{"id":"352544","name":"Marle Place Brenchley","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7728,51.5732,33.0]},"properties":{"id":"352546","name":"Marlow","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5616,53.1238,213.0]},"properties":{"id":"352562","name":"Matlock Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0458,57.7131,934.0]},"properties":{"id":"352578","name":"Meall A' Chrasgaidh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2034,56.5665,1118.0]},"properties":{"id":"352584","name":"Meall Garbh (1118m)","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5476,56.4559,957.0]},"properties":{"id":"352587","name":"Meall Glas","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5626,53.8383,119.0]},"properties":{"id":"352596","name":"Meanwood","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4167,52.8185,49.0]},"properties":{"id":"352602","name":"Melbourne Hall","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8498,53.5921,180.0]},"properties":{"id":"352607","name":"Meltham","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0149,56.1849,20.0]},"properties":{"id":"352615","name":"Methil","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6583,51.0969,141.0]},"properties":{"id":"352621","name":"Middle Winterslow","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2035,51.3217,160.0]},"properties":{"id":"350240","name":"Banstead","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1854,53.9128,180.0]},"properties":{"id":"350251","name":"Barnoldswick","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0456,52.0873,29.0]},"properties":{"id":"350264","name":"Bassingbourn Snowsports Centre","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4057,51.4118,185.0]},"properties":{"id":"350266","name":"Bath Racecourse","nationalPark":null,"region":"sw","unitaryAuthArea":"Bath and North East Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3532,57.4971,null]},"properties":{"id":"350280","name":"Beauly Firth","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6546,56.9255,1050.0]},"properties":{"id":"350304","name":"Beinn A' Chaorainn (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2592,57.7464,914.0]},"properties":{"id":"350306","name":"Beinn A' Chlaidheimh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6897,56.5496,1038.0]},"properties":{"id":"350311","name":"Beinn Achaladair","nationalPark":null,"region":"st","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9298,57.7856,1084.0]},"properties":{"id":"350318","name":"Beinn Dearg (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5761,57.1544,981.0]},"properties":{"id":"350338","name":"Beinn Sgritheall","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1703,56.5673,932.0]},"properties":{"id":"350339","name":"Beinn Sgulaird","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2988,57.7034,936.0]},"properties":{"id":"350340","name":"Beinn Tarsuinn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5694,56.34,946.0]},"properties":{"id":"350342","name":"Beinn Tulaichean","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6277,52.0441,70.0]},"properties":{"id":"350345","name":"Belchamp Otten","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2422,55.1472,161.0]},"properties":{"id":"350358","name":"Bellingham Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7041,54.9756,20.0]},"properties":{"id":"350359","name":"Bell's Close","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4624,56.8127,1148.0]},"properties":{"id":"350365","name":"Ben Alder","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1314,56.4257,1126.0]},"properties":{"id":"350368","name":"Ben Cruachan","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8577,58.1384,998.0]},"properties":{"id":"350376","name":"Ben More Assynt","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0013,56.7965,1344.0]},"properties":{"id":"350377","name":"Ben Nevis","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7711,52.5275,83.0]},"properties":{"id":"352656","name":"Minworth","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7524,57.0278,1113.0]},"properties":{"id":"352661","name":"Monadh Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7132,51.8157,18.0]},"properties":{"id":"352665","name":"Monmouth","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7482,50.8548,148.0]},"properties":{"id":"352676","name":"Morchard Bishop","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7045,51.9907,128.0]},"properties":{"id":"352682","name":"Moreton-In-Marsh","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1691,57.5009,928.0]},"properties":{"id":"352686","name":"Moruisg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0962,52.5836,137.0]},"properties":{"id":"352689","name":"Moseley (Nr Wolverhampton)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7318,53.4787,75.0]},"properties":{"id":"352692","name":"Moss Bank","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6053,54.5506,0.0]},"properties":{"id":"352702","name":"Mount Stewart (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8384,57.0099,1019.0]},"properties":{"id":"352717","name":"Mullach Clach A' Bhlair","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1543,57.203,1102.0]},"properties":{"id":"352719","name":"Mullach Fraoch-Choire","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0662,51.675,25.0]},"properties":{"id":"352731","name":"Myddelton House","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8075,53.8316,107.0]},"properties":{"id":"352735","name":"Nab Wood","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8683,53.3946,25.0]},"properties":{"id":"352744","name":"National Wildflower Centre Liverpool","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8042,51.6566,7.0]},"properties":{"id":"352745","name":"Neath","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0513,52.1552,25.0]},"properties":{"id":"352746","name":"Needham Market","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1834,54.9491,112.0]},"properties":{"id":"352751","name":"Ness Wood Country Park","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9677,53.4953,13.0]},"properties":{"id":"352755","name":"Netherton","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1597,51.0901,81.0]},"properties":{"id":"352759","name":"New Alresford","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0369,52.6066,150.0]},"properties":{"id":"352766","name":"New Invention","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9411,50.9846,5.0]},"properties":{"id":"352777","name":"New Romney","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8034,53.0747,15.0]},"properties":{"id":"352781","name":"Newark-On-Trent","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.889,54.21,0.0]},"properties":{"id":"352788","name":"Newcastle (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5152,55.1385,29.0]},"properties":{"id":"350395","name":"Benvarden","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5663,51.7593,127.0]},"properties":{"id":"350398","name":"Berkhamsted","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.623,50.8164,4.0]},"properties":{"id":"350400","name":"Berri Court","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7187,52.2676,100.0]},"properties":{"id":"350401","name":"Berrington Hall","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3173,50.6689,32.0]},"properties":{"id":"350416","name":"Bicton Park Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9244,50.2651,null]},"properties":{"id":"350423","name":"Bigbury Bay","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.42,51.6275,90.0]},"properties":{"id":"350428","name":"Billericay","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7119,53.4928,80.0]},"properties":{"id":"350429","name":"Billinge","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2894,54.6124,18.0]},"properties":{"id":"350430","name":"Billingham","nationalPark":null,"region":"ne","unitaryAuthArea":"Stockton-on-Tees"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9546,52.9508,26.0]},"properties":{"id":"350434","name":"Bingham","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0384,52.4758,180.0]},"properties":{"id":"350472","name":"Blackheath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2131,53.5207,56.0]},"properties":{"id":"350473","name":"Blackley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8818,52.234,262.0]},"properties":{"id":"350481","name":"Blaencaron Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7486,52.0018,88.0]},"properties":{"id":"350493","name":"Bletchley","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5268,54.4216,35.0]},"properties":{"id":"350504","name":"Boggle Hole Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4675,54.9504,29.0]},"properties":{"id":"350507","name":"Boldon Colliery","nationalPark":null,"region":"ne","unitaryAuthArea":"South Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0952,53.2964,146.0]},"properties":{"id":"350508","name":"Bollington","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2882,53.2308,172.0]},"properties":{"id":"350509","name":"Bolsover","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2707,51.6573,89.0]},"properties":{"id":"350516","name":"Borehamwood","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6035,54.9915,56.0]},"properties":{"id":"352794","name":"Newcastle Upon Tyne Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0028,50.4407,95.0]},"properties":{"id":"352816","name":"Newquay Cornwall International Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1248,52.7099,2.0]},"properties":{"id":"352819","name":"Newton (Cambridgeshire)","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6337,53.4527,32.0]},"properties":{"id":"352827","name":"Newton-Le-Willows","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9169,54.6785,54.0]},"properties":{"id":"352830","name":"Newtownabbey","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6896,54.5912,4.0]},"properties":{"id":"352831","name":"Newtownards","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.3771,54.7184,51.0]},"properties":{"id":"352833","name":"Newtownstewart","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.356,54.8568,317.0]},"properties":{"id":"352835","name":"Ninebanks Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0724,53.3864,27.0]},"properties":{"id":"352837","name":"Noctorum","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2199,53.6262,179.0]},"properties":{"id":"352839","name":"Norden","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3905,53.3557,83.0]},"properties":{"id":"352842","name":"Normanton Spring","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8034,51.0515,190.0]},"properties":{"id":"352849","name":"North Molton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7325,55.0047,78.0]},"properties":{"id":"352855","name":"North Walbottle","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.258,53.4104,27.0]},"properties":{"id":"352860","name":"Northenden","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9612,52.4079,149.0]},"properties":{"id":"352863","name":"Northfield (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4716,53.4119,131.0]},"properties":{"id":"352878","name":"Norwood","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9702,50.7354,17.0]},"properties":{"id":"352885","name":"Oakdale","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.545,50.9827,173.0]},"properties":{"id":"352886","name":"Oakfordbridge","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7997,51.7779,89.0]},"properties":{"id":"352888","name":"Oakwood Leisure Park Cross Hands","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9905,53.8373,288.0]},"properties":{"id":"352900","name":"Oldfield","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4546,54.1751,77.0]},"properties":{"id":"352909","name":"Onchan","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2852,54.3741,208.0]},"properties":{"id":"352916","name":"Osmotherly Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6122,53.1781,67.0]},"properties":{"id":"352923","name":"Oulton Park","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9493,51.2967,30.0]},"properties":{"id":"350532","name":"Boughton Street","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8285,50.7814,6.0]},"properties":{"id":"350534","name":"Bournemouth Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9313,52.4234,148.0]},"properties":{"id":"350535","name":"Bournville","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3632,53.8673,71.0]},"properties":{"id":"350566","name":"Bramham Park","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2636,51.3554,144.0]},"properties":{"id":"350571","name":"Brands Hatch","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5764,55.8566,50.0]},"properties":{"id":"350590","name":"Bridge Of Weir","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8856,52.5623,270.0]},"properties":{"id":"350594","name":"Bridges Long Mynd Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1107,53.4989,23.0]},"properties":{"id":"350604","name":"Brigsley","nationalPark":null,"region":"yh","unitaryAuthArea":"North East Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1345,52.4859,115.0]},"properties":{"id":"350630","name":"Brockmoor","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8326,52.5099,92.0]},"properties":{"id":"350634","name":"Bromford","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1313,52.4946,122.0]},"properties":{"id":"350636","name":"Bromley (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5073,52.1904,129.0]},"properties":{"id":"350639","name":"Bromyard","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0457,53.5239,259.0]},"properties":{"id":"350641","name":"Brook Bottom","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4558,52.0864,172.0]},"properties":{"id":"350642","name":"Brook Cottage Gardens (Alkerton)","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7781,50.4813,40.0]},"properties":{"id":"350664","name":"Buckfastleigh","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0801,53.1698,154.0]},"properties":{"id":"350666","name":"Buckley","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8947,54.9408,85.0]},"properties":{"id":"352941","name":"Painshawfield","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8989,59.3529,23.0]},"properties":{"id":"352946","name":"Papa Westray Airfield","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.472,53.4275,100.0]},"properties":{"id":"352958","name":"Parson Cross","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5544,50.9513,24.0]},"properties":{"id":"352967","name":"Paulton's Park","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.131,52.4433,110.0]},"properties":{"id":"352971","name":"Pedmore","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6902,54.2223,24.0]},"properties":{"id":"352972","name":"Peel","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3203,51.6835,8.0]},"properties":{"id":"352977","name":"Pembrey Ski Slope","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3522,53.8436,272.0]},"properties":{"id":"352984","name":"Pendle Ski Club","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2231,55.8309,188.0]},"properties":{"id":"352988","name":"Penicuik","nationalPark":null,"region":"dg","unitaryAuthArea":"Midlothian Council"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.142,51.53,36.0]},"properties":{"id":"352997","name":"Pentwyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1142,49.1902,27.0]},"properties":{"id":"353003","name":"People's Park St Helier","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9055,52.5295,105.0]},"properties":{"id":"353006","name":"Perry","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0086,53.5394,4.0]},"properties":{"id":"353036","name":"Pleasure Island Cleethorpes","nationalPark":null,"region":"yh","unitaryAuthArea":"North East Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5938,51.2086,36.0]},"properties":{"id":"353072","name":"Porlock","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1878,55.6294,1.0]},"properties":{"id":"353073","name":"Port Ellen","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2091,51.5399,15.0]},"properties":{"id":"353075","name":"Port Eynon Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0028,51.0727,38.0]},"properties":{"id":"353076","name":"Port Lympne","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1273,50.8395,1.0]},"properties":{"id":"353080","name":"Portchester","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4014,57.3275,50.0]},"properties":{"id":"353086","name":"Portnalong","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2549,51.6831,8.0]},"properties":{"id":"350686","name":"Burry Port","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6462,51.6652,99.0]},"properties":{"id":"350692","name":"Buscot Park","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4774,51.4466,40.0]},"properties":{"id":"350706","name":"Cadbury Heath","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2168,51.5784,80.0]},"properties":{"id":"350711","name":"Caerphilly","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2833,56.9274,1012.0]},"properties":{"id":"350712","name":"Cairn Bannoch","nationalPark":null,"region":"gr","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3109,50.8123,1.0]},"properties":{"id":"350725","name":"Calshot Activities Centre","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6957,55.4445,14.0]},"properties":{"id":"350738","name":"Campbeltown Airport","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0865,51.2685,41.0]},"properties":{"id":"350747","name":"Canterbury Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5801,51.5166,2.0]},"properties":{"id":"350748","name":"Canvey Island","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3195,51.1533,89.0]},"properties":{"id":"350750","name":"Capel","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0562,51.6779,33.0]},"properties":{"id":"350752","name":"Capel Manor","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0923,51.9847,535.0]},"properties":{"id":"350753","name":"Capel-Y-Ffin Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1826,51.4781,8.0]},"properties":{"id":"350761","name":"Millennium Stadium","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.155,55.8315,22.0]},"properties":{"id":"350773","name":"Carmyle","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2704,56.9457,1110.0]},"properties":{"id":"350775","name":"Carn A' Coire Bhoidheach","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3013,56.9433,1047.0]},"properties":{"id":"350780","name":"Carn An T-Sagairt Mor","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2608,57.0984,945.0]},"properties":{"id":"350786","name":"Carn Dearg (945m)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9838,56.8056,1223.0]},"properties":{"id":"350793","name":"Carn Mor Dearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8715,57.4529,992.0]},"properties":{"id":"350797","name":"Carn Nan Gobhar (Glen Strathfarrar)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4807,55.5838,3.0]},"properties":{"id":"350805","name":"Carradale Garden","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9587,54.2024,47.0]},"properties":{"id":"350812","name":"Cartmel Racecourse","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9023,54.118,73.0]},"properties":{"id":"350823","name":"Castle Howard","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.657,55.201,0.0]},"properties":{"id":"353089","name":"Portrush (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6513,55.205,15.0]},"properties":{"id":"353090","name":"Portrush (Coleraine)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6868,57.6812,23.0]},"properties":{"id":"353095","name":"Portsoy","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9849,53.8438,12.0]},"properties":{"id":"353103","name":"Poulton-Le-Fylde","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.17,52.6505,230.0]},"properties":{"id":"353106","name":"Powis Castle Garden","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9984,56.2449,171.0]},"properties":{"id":"353109","name":"Pratis","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.833,51.724,106.0]},"properties":{"id":"353121","name":"Princes Risborough","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.715,55.5936,177.0]},"properties":{"id":"353123","name":"Priorwood Garden","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.101,52.4717,116.0]},"properties":{"id":"353133","name":"Quarry Bank","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8411,53.7697,330.0]},"properties":{"id":"353134","name":"Queensbury","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0125,52.4604,214.0]},"properties":{"id":"353139","name":"Quinton","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.319,53.6482,157.0]},"properties":{"id":"353157","name":"Ramsbottom","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5395,52.3413,50.0]},"properties":{"id":"353167","name":"Raunds","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2426,55.954,50.0]},"properties":{"id":"353168","name":"Ravelston","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6593,53.6774,40.0]},"properties":{"id":"353169","name":"Ravensthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7667,53.2558,225.0]},"properties":{"id":"353170","name":"Ravenstor Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6826,53.8517,169.0]},"properties":{"id":"353171","name":"Rawdon","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2897,53.6994,169.0]},"properties":{"id":"353173","name":"Rawtenstall","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6396,52.1733,112.0]},"properties":{"id":"353182","name":"Rede","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1368,53.0102,85.0]},"properties":{"id":"353183","name":"Redhill (Nottinghamshire)","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6041,51.4731,77.0]},"properties":{"id":"353187","name":"Redland","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2256,50.2325,114.0]},"properties":{"id":"353190","name":"Redruth","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1125,52.7621,37.0]},"properties":{"id":"353191","name":"Reepham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5094,52.3012,219.0]},"properties":{"id":"353195","name":"Rhayader","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0594,53.4908,153.0]},"properties":{"id":"353210","name":"Ridge Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1451,50.8702,17.0]},"properties":{"id":"353213","name":"Ripe","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5258,54.1355,30.0]},"properties":{"id":"353216","name":"Ripon","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4222,53.7683,140.0]},"properties":{"id":"353220","name":"Rishton","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8515,53.4122,34.0]},"properties":{"id":"353224","name":"Roby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0911,52.5385,174.0]},"properties":{"id":"353236","name":"Roseville","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3049,53.7063,340.0]},"properties":{"id":"353237","name":"Rossendale Ski Centre","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9382,54.4629,161.0]},"properties":{"id":"350831","name":"Castleton (North Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9338,52.4668,144.0]},"properties":{"id":"350848","name":"Chad Valley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.615,56.6223,31.0]},"properties":{"id":"350860","name":"Chapelton","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4643,53.4596,84.0]},"properties":{"id":"350861","name":"Chapeltown","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.042,51.4862,31.0]},"properties":{"id":"350868","name":"Charlton Athletic F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.61,53.2336,114.0]},"properties":{"id":"350873","name":"Chatsworth House","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7754,51.2797,22.0]},"properties":{"id":"350878","name":"Cheddar","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6725,51.6414,27.0]},"properties":{"id":"350884","name":"Chepstow","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5082,51.3866,16.0]},"properties":{"id":"350886","name":"Chertsey","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2458,51.705,45.0]},"properties":{"id":"350907","name":"Chipping Ongar","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6312,53.6533,82.0]},"properties":{"id":"350913","name":"Chorley","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1103,52.5472,214.0]},"properties":{"id":"350923","name":"Cinder Hill","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4996,51.8249,186.0]},"properties":{"id":"350924","name":"Cinderford","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1995,52.9829,56.0]},"properties":{"id":"350925","name":"Cinderhill","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0969,51.5103,1.0]},"properties":{"id":"350929","name":"City Of London Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7516,56.1077,39.0]},"properties":{"id":"350930","name":"Clackmannan","nationalPark":null,"region":"ta","unitaryAuthArea":"Clackmannanshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5117,51.2526,67.0]},"properties":{"id":"350932","name":"Clandon Park","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2745,55.7845,95.0]},"properties":{"id":"350936","name":"Clarkston","nationalPark":null,"region":"st","unitaryAuthArea":"East Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0278,53.5571,9.0]},"properties":{"id":"350947","name":"Cleethorpes","nationalPark":null,"region":"yh","unitaryAuthArea":"North East Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6169,51.4632,64.0]},"properties":{"id":"350953","name":"Clifton (Bristol)","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5047,50.7242,41.0]},"properties":{"id":"350957","name":"Clifton Hill Ski Slope Exeter","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2637,53.2739,133.0]},"properties":{"id":"350960","name":"Clowne","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4078,51.3284,23.0]},"properties":{"id":"350969","name":"Cobham","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2059,57.528,71.0]},"properties":{"id":"353242","name":"Rothes","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8017,52.4223,118.0]},"properties":{"id":"353244","name":"Rothwell (Northamptonshire)","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8242,54.4478,91.0]},"properties":{"id":"353251","name":"Rowallane Garden (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5265,51.1561,90.0]},"properties":{"id":"353258","name":"Royal Bath & West Showground","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3009,51.4743,2.0]},"properties":{"id":"353260","name":"Royal Botanic Gardens Kew","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8772,54.2232,9.0]},"properties":{"id":"353261","name":"Royal County Down Golf Club","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1894,53.3845,8.0]},"properties":{"id":"353264","name":"Royal Liverpool Golf Club","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6249,55.2027,18.0]},"properties":{"id":"353267","name":"Royal Portrush Golf Club","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0394,52.9863,114.0]},"properties":{"id":"353274","name":"Ruabon","nationalPark":null,"region":"wl","unitaryAuthArea":"Wrexham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2086,53.4528,43.0]},"properties":{"id":"353286","name":"Rusholme","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9806,54.4499,110.0]},"properties":{"id":"353292","name":"Rydal Mount","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2378,52.0248,48.0]},"properties":{"id":"353300","name":"Saffron Walden Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7869,50.3367,79.0]},"properties":{"id":"353309","name":"St Austell","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6432,51.7353,186.0]},"properties":{"id":"353310","name":"St Briavels Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2632,51.8836,124.0]},"properties":{"id":"353332","name":"St Paul's Walden","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7857,50.2226,93.0]},"properties":{"id":"353336","name":"Salcombe Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8471,51.0528,113.0]},"properties":{"id":"353341","name":"Salisbury Racecourse","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2153,50.4087,70.0]},"properties":{"id":"353343","name":"Saltash","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4141,55.8494,18.0]},"properties":{"id":"353348","name":"Sanaigmore","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1488,51.8151,69.0]},"properties":{"id":"353369","name":"Sawbridgeworth","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4898,52.2154,22.0]},"properties":{"id":"353372","name":"Saxmundham","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.988,57.5194,154.0]},"properties":{"id":"353375","name":"Scardroy","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.059,53.4083,10.0]},"properties":{"id":"353385","name":"Seacombe","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9006,51.9219,49.0]},"properties":{"id":"350975","name":"Colchester United F.C.","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.758,53.1466,13.0]},"properties":{"id":"350984","name":"Collingham","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1755,53.8554,162.0]},"properties":{"id":"350986","name":"Colne","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1279,50.3895,85.0]},"properties":{"id":"350992","name":"Compton","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0436,52.4702,172.0]},"properties":{"id":"351008","name":"Coombeswood","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9629,50.4207,124.0]},"properties":{"id":"351013","name":"Cornwood","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0442,52.3454,153.0]},"properties":{"id":"351023","name":"Coton Manor Wildlife Garden","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2641,56.548,58.0]},"properties":{"id":"351030","name":"Coupar Angus","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.631,53.8343,107.0]},"properties":{"id":"351043","name":"Cragg Hill","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9527,55.8337,20.0]},"properties":{"id":"351050","name":"Craighouse","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2344,55.9216,89.0]},"properties":{"id":"351052","name":"Craiglockhart","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3296,57.1445,918.0]},"properties":{"id":"351069","name":"Creag Nan Damh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7958,50.8821,83.0]},"properties":{"id":"351076","name":"Crewkerne","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8406,56.3766,88.0]},"properties":{"id":"351082","name":"Crieff","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.247,55.8127,57.0]},"properties":{"id":"351085","name":"Croftfoot","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4961,53.3855,166.0]},"properties":{"id":"351094","name":"Crookesmoor","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3625,55.8436,15.0]},"properties":{"id":"351095","name":"Crookston","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1318,52.2552,207.0]},"properties":{"id":"351100","name":"Cross Inn","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0848,51.3971,50.0]},"properties":{"id":"351118","name":"Crystal Palace F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1027,50.7729,9.0]},"properties":{"id":"353387","name":"Seaford","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4648,54.6425,103.0]},"properties":{"id":"353394","name":"Sedgefield Racecourse","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7491,51.9786,170.0]},"properties":{"id":"353403","name":"Sezincote House","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2787,57.133,1010.0]},"properties":{"id":"353422","name":"Sgurr An Doire Leathain","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9009,56.8002,1095.0]},"properties":{"id":"353427","name":"Sgurr Choinnich Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8981,56.7473,1008.0]},"properties":{"id":"353430","name":"Sgurr Eilde Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9412,57.4495,1049.0]},"properties":{"id":"353432","name":"Sgurr Fhuar-Thuill","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2415,57.2215,965.0]},"properties":{"id":"353438","name":"Sgurr Na Banachdich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3458,57.1858,1002.0]},"properties":{"id":"353439","name":"Sgurr Na Carnach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1924,57.2483,965.0]},"properties":{"id":"353453","name":"Sgurr Nan Gillean","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7244,52.2001,43.0]},"properties":{"id":"353456","name":"Shakespeare's Birthplace","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1836,54.1917,80.0]},"properties":{"id":"353457","name":"Shandy Hall","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7721,52.49,92.0]},"properties":{"id":"353460","name":"Shard End","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5131,50.9473,60.0]},"properties":{"id":"353481","name":"Sherborne","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4621,51.0122,50.0]},"properties":{"id":"353523","name":"Sir Harold Hillier Gardens And Arboretum Ampfield","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3546,53.1417,0.0]},"properties":{"id":"353529","name":"Skegness Central Beach","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6494,53.5917,161.0]},"properties":{"id":"353530","name":"Skelmanthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2474,57.6516,69.0]},"properties":{"id":"351126","name":"Cullicudden","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8155,54.9228,14.0]},"properties":{"id":"351146","name":"Dalbeattie Mountain Bike Trail Centre","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4229,55.9131,23.0]},"properties":{"id":"351154","name":"Dalmuir","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1768,54.1567,36.0]},"properties":{"id":"351157","name":"Dalton-In-Furness","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4071,53.3923,57.0]},"properties":{"id":"351165","name":"Darnall","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3198,55.6007,216.0]},"properties":{"id":"351178","name":"Dawyck Botanic Garden","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9396,52.6813,48.0]},"properties":{"id":"351196","name":"Dereham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.821,52.4411,123.0]},"properties":{"id":"351201","name":"Desborough","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2492,55.9666,50.0]},"properties":{"id":"351259","name":"Drylaw","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4826,54.6173,191.0]},"properties":{"id":"351266","name":"Dufton Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7705,54.5046,106.0]},"properties":{"id":"351280","name":"Dungannon","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3846,51.7352,8.0]},"properties":{"id":"353541","name":"Slimbridge Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7325,51.0546,40.0]},"properties":{"id":"353560","name":"Somerton","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6979,55.676,null]},"properties":{"id":"353566","name":"Sound Of Gigha","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1891,54.5768,7.0]},"properties":{"id":"353589","name":"South Tees Motorsports Park","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1258,52.5802,76.0]},"properties":{"id":"353591","name":"South Wigston","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.262,51.1576,115.0]},"properties":{"id":"353598","name":"Southborough","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0856,50.6743,312.0]},"properties":{"id":"353602","name":"Southerly","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1052,51.504,6.0]},"properties":{"id":"353605","name":"Southwark","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2367,50.8348,7.0]},"properties":{"id":"353609","name":"Southwick (West Sussex)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9119,53.7065,77.0]},"properties":{"id":"353611","name":"Sowerby Bridge","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.584,54.6976,115.0]},"properties":{"id":"353615","name":"Spennymoor","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4041,57.5807,993.0]},"properties":{"id":"353619","name":"Spidean Coire Nan Clach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6326,59.1199,null]},"properties":{"id":"353633","name":"St Catherine's Bay","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9504,54.4198,182.0]},"properties":{"id":"353636","name":"Stagshaw Garden","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6646,53.5866,109.0]},"properties":{"id":"353646","name":"Standish","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1915,53.055,171.0]},"properties":{"id":"353648","name":"Stanfield","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6973,54.8688,224.0]},"properties":{"id":"353653","name":"Stanley","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9798,50.7355,7.0]},"properties":{"id":"353654","name":"Stanley Green","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2003,51.8974,80.0]},"properties":{"id":"353656","name":"Stansted Mountfitchet","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5147,52.3873,90.0]},"properties":{"id":"353677","name":"Stivichall","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8355,56.8095,977.0]},"properties":{"id":"353680","name":"Stob Ban (Grey Corries)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0034,54.5513,26.0]},"properties":{"id":"351284","name":"Dunmurry","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5833,54.7751,70.0]},"properties":{"id":"351290","name":"Durham","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0362,50.9939,106.0]},"properties":{"id":"351316","name":"East Meon","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.992,51.0834,153.0]},"properties":{"id":"351321","name":"East Tisted","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5558,51.4774,18.0]},"properties":{"id":"351329","name":"Eastville","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3412,53.438,32.0]},"properties":{"id":"351331","name":"Eastwood (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7241,53.6464,28.0]},"properties":{"id":"351338","name":"Eccleston","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4717,51.2432,179.0]},"properties":{"id":"351346","name":"Edford","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.111,50.398,29.0]},"properties":{"id":"351361","name":"Egg Buckland","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0902,51.2119,196.0]},"properties":{"id":"351374","name":"Ellisfield","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7643,52.4257,121.0]},"properties":{"id":"351376","name":"Elmdon Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2518,51.307,137.0]},"properties":{"id":"351392","name":"Epsom Downs Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1239,54.9655,48.0]},"properties":{"id":"351398","name":"Ervie","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9654,53.4377,44.0]},"properties":{"id":"351405","name":"Everton F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9453,52.0918,38.0]},"properties":{"id":"351407","name":"Evesham","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4201,50.7354,22.0]},"properties":{"id":"351413","name":"Exeter International Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8996,56.6483,1022.0]},"properties":{"id":"353691","name":"Stob Dearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9519,56.6311,956.0]},"properties":{"id":"353695","name":"Stob Na Broige","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.458,52.4097,78.0]},"properties":{"id":"353702","name":"Stoke","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1426,52.9076,110.0]},"properties":{"id":"353708","name":"Stone","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3308,58.2171,2.0]},"properties":{"id":"353720","name":"Stornoway Airport","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1473,52.4566,78.0]},"properties":{"id":"353722","name":"Stourbridge","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9994,52.1885,29.0]},"properties":{"id":"353728","name":"Stowmarket","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2164,51.7453,57.0]},"properties":{"id":"353749","name":"Stroud","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3033,50.9247,60.0]},"properties":{"id":"353757","name":"Sturminster Newton","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1785,53.5981,130.0]},"properties":{"id":"353759","name":"Sudden","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9669,51.9488,100.0]},"properties":{"id":"353760","name":"Sudeley Castle Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4109,51.4046,10.0]},"properties":{"id":"353766","name":"Sunbury","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1923,51.3617,53.0]},"properties":{"id":"353773","name":"Sutton","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2997,53.7795,5.0]},"properties":{"id":"353779","name":"Sutton-On-Hull","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5535,52.771,109.0]},"properties":{"id":"353780","name":"Swadlincote","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7836,53.8023,24.0]},"properties":{"id":"353792","name":"Swillbrook","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6416,56.9608,34.0]},"properties":{"id":"353797","name":"Swordland","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3749,52.676,11.0]},"properties":{"id":"353805","name":"Tallington Lakes Leisure Centre","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6896,52.6333,62.0]},"properties":{"id":"353807","name":"Tamworth","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6415,54.0157,114.0]},"properties":{"id":"353809","name":"Tang","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3793,53.332,55.0]},"properties":{"id":"353816","name":"Tatton Park","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5816,54.4326,223.0]},"properties":{"id":"353819","name":"Tebay Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.891,51.3155,9.0]},"properties":{"id":"351448","name":"Faversham","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5628,54.9502,74.0]},"properties":{"id":"351451","name":"Felling","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8104,54.2107,28.0]},"properties":{"id":"351480","name":"Flamingo Land Theme Park And Zoo Kirby Misperton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5958,50.8549,1.0]},"properties":{"id":"351481","name":"Flamingo Park Hastings","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9741,52.7502,130.0]},"properties":{"id":"351492","name":"Follow The Dog Trail","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6998,54.4043,187.0]},"properties":{"id":"351498","name":"Forest Hall (Cumbria)","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5673,55.0208,55.0]},"properties":{"id":"351499","name":"Forest Hall (Tyne & Wear)","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6589,52.4647,101.0]},"properties":{"id":"351500","name":"Forest Of Arden Golf & Country Club","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1293,57.5817,25.0]},"properties":{"id":"351507","name":"Fortrose","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4668,55.8216,70.0]},"properties":{"id":"351512","name":"Foxbar","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.202,51.4994,15.0]},"properties":{"id":"351531","name":"Gabalfa","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1829,54.8824,10.0]},"properties":{"id":"351548","name":"Gatehouse Of Fleet","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7315,54.92,55.0]},"properties":{"id":"351561","name":"Gibside","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2846,53.5822,74.0]},"properties":{"id":"351563","name":"Gigg","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1621,53.3629,66.0]},"properties":{"id":"351567","name":"Gildingwells","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2765,51.0363,70.0]},"properties":{"id":"351570","name":"Gillingham (Dorset)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9248,51.8065,89.0]},"properties":{"id":"351575","name":"Glanaman","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6973,51.9457,281.0]},"properties":{"id":"351580","name":"Glasfynydd Family Mountain Bike Route","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6549,54.4639,24.0]},"properties":{"id":"353842","name":"The Argory (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9888,51.8752,27.0]},"properties":{"id":"353844","name":"The Beth Chatto Gardens Elmstead Market","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1956,51.348,29.0]},"properties":{"id":"353853","name":"The Courts Holt","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.032,53.6256,11.0]},"properties":{"id":"353869","name":"The Royal Birkdale Golf Club","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6268,52.4353,29.0]},"properties":{"id":"353876","name":"Thetford Forest Park","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7129,54.0393,138.0]},"properties":{"id":"353880","name":"Thixendale Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4169,55.8197,58.0]},"properties":{"id":"353889","name":"Thornly Park","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5991,54.2621,50.0]},"properties":{"id":"353892","name":"Thorp Perrow Arboretum","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5976,51.5683,70.0]},"properties":{"id":"353901","name":"Thundersley","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2464,60.1924,20.0]},"properties":{"id":"353917","name":"Tingwall (Lerwick) Airport","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0646,52.5259,138.0]},"properties":{"id":"353922","name":"Tipton","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7482,51.8117,53.0]},"properties":{"id":"353923","name":"Tiptree","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0419,52.5108,163.0]},"properties":{"id":"353927","name":"Tividale","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7096,53.7682,210.0]},"properties":{"id":"353941","name":"Tong Street","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1684,52.3175,10.0]},"properties":{"id":"351615","name":"Godmanchester","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5909,53.8731,143.0]},"properties":{"id":"351618","name":"Golden Acre Park","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4986,52.4698,107.0]},"properties":{"id":"351627","name":"Goodyers End","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2905,53.4562,29.0]},"properties":{"id":"351632","name":"Gorse Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0403,51.6691,21.0]},"properties":{"id":"351633","name":"Gorseinon","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6213,55.0072,65.0]},"properties":{"id":"351635","name":"Gosforth","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1412,52.6075,68.0]},"properties":{"id":"351640","name":"Grace Road Leicestershire C.C.C.","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.907,53.361,24.0]},"properties":{"id":"351648","name":"Grassendale","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.122,53.3727,34.0]},"properties":{"id":"351655","name":"Greasby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0401,51.9512,102.0]},"properties":{"id":"351666","name":"Great Hormead","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3258,52.1121,125.0]},"properties":{"id":"351670","name":"Great Malvern","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1401,52.1481,18.0]},"properties":{"id":"351671","name":"Great Shelford","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2485,52.1118,24.0]},"properties":{"id":"351696","name":"Grundisburgh","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5936,49.4349,101.0]},"properties":{"id":"351697","name":"Guernsey Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1096,53.4816,99.0]},"properties":{"id":"351698","name":"Guide Bridge","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1506,52.3585,34.0]},"properties":{"id":"351714","name":"Haddenham","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7734,55.9587,39.0]},"properties":{"id":"351715","name":"Haddington","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6485,53.1987,175.0]},"properties":{"id":"351717","name":"Haddon Hall","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4823,51.0763,118.0]},"properties":{"id":"351721","name":"Hadspen House","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5871,50.656,220.0]},"properties":{"id":"351724","name":"Haldon","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3421,53.3787,41.0]},"properties":{"id":"351725","name":"Hale","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0491,52.4495,120.0]},"properties":{"id":"351727","name":"Halesowen","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4533,53.5884,141.0]},"properties":{"id":"351735","name":"Halliwell","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8278,50.4044,192.0]},"properties":{"id":"353988","name":"Trezaise","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2075,51.3192,38.0]},"properties":{"id":"353992","name":"Trowbridge","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.841,52.4477,120.0]},"properties":{"id":"354009","name":"Tyseley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1285,53.011,157.0]},"properties":{"id":"354011","name":"Ubberley","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0913,54.195,19.0]},"properties":{"id":"354017","name":"Ulverston","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2765,53.5624,81.0]},"properties":{"id":"354020","name":"Unsworth","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3588,53.4728,96.0]},"properties":{"id":"354023","name":"Upper Haugh","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4855,52.4169,89.0]},"properties":{"id":"354026","name":"Upper Stoke","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0068,53.5515,196.0]},"properties":{"id":"354028","name":"Uppermill","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7169,52.5909,133.0]},"properties":{"id":"354029","name":"Uppingham","nationalPark":null,"region":"em","unitaryAuthArea":"Rutland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9022,51.7049,43.0]},"properties":{"id":"354037","name":"Usk","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2046,50.595,38.0]},"properties":{"id":"354043","name":"Ventnor","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.23,50.5874,14.0]},"properties":{"id":"354044","name":"Ventnor Botanic Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9286,51.8419,117.0]},"properties":{"id":"354045","name":"Waddesdon Manor","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5776,50.7299,164.0]},"properties":{"id":"354049","name":"Wainhouse Corner","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.098,51.071,89.0]},"properties":{"id":"354051","name":"Wakehurst Place","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4248,52.9002,39.0]},"properties":{"id":"354052","name":"Walcot","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8765,50.8903,40.0]},"properties":{"id":"354053","name":"Walderton","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5518,54.9745,32.0]},"properties":{"id":"354056","name":"Walker","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1272,51.5983,50.0]},"properties":{"id":"354060","name":"Wallingford","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0198,51.5901,19.0]},"properties":{"id":"354071","name":"Walthamstow","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7775,55.4031,512.0]},"properties":{"id":"354076","name":"Wanlockhead Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3103,53.3636,60.0]},"properties":{"id":"354078","name":"Warburton Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8204,52.4927,111.0]},"properties":{"id":"354079","name":"Ward End","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3606,53.5189,80.0]},"properties":{"id":"354080","name":"Wardley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1096,50.6891,10.0]},"properties":{"id":"354082","name":"Wareham","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1729,52.1738,60.0]},"properties":{"id":"354084","name":"Waresley","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2194,55.0877,89.0]},"properties":{"id":"354085","name":"Wark","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5158,54.8973,53.0]},"properties":{"id":"354092","name":"Washington","nationalPark":null,"region":"ne","unitaryAuthArea":"Sunderland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7219,51.9863,80.0]},"properties":{"id":"354094","name":"Water Eaton","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4001,51.6488,69.0]},"properties":{"id":"354103","name":"Watford F.C.","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8098,51.2283,18.0]},"properties":{"id":"354108","name":"Wedmore","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2071,51.8027,92.0]},"properties":{"id":"354119","name":"Welwyn Garden City","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7253,52.8533,80.0]},"properties":{"id":"354120","name":"Wem","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1325,52.9354,21.0]},"properties":{"id":"354127","name":"West Bridgford","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9642,52.5089,161.0]},"properties":{"id":"354128","name":"West Bromwich Albion F.C.","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0523,55.7776,67.0]},"properties":{"id":"351741","name":"Hamilton","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8639,54.6699,227.0]},"properties":{"id":"351750","name":"Hamsterley","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3141,53.1703,116.0]},"properties":{"id":"351757","name":"Hardwick Hall","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3145,53.165,109.0]},"properties":{"id":"351758","name":"Hardwick Hall Garden (Nt)","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1027,51.582,19.0]},"properties":{"id":"351763","name":"Haringey","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7545,52.7931,113.0]},"properties":{"id":"351767","name":"Harmer Hill","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2055,51.7634,79.0]},"properties":{"id":"351784","name":"Hatfield House","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.11,53.5239,162.0]},"properties":{"id":"351787","name":"Hathershaw","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5111,51.0462,71.0]},"properties":{"id":"351796","name":"Hawkhurst","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2482,54.9757,70.0]},"properties":{"id":"351803","name":"Haydon Bridge","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0866,52.4387,148.0]},"properties":{"id":"351805","name":"Hayley Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7394,50.5819,310.0]},"properties":{"id":"351807","name":"Haytor Vale","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8191,51.1268,63.0]},"properties":{"id":"351814","name":"Heale House & Garden","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3522,53.0135,121.0]},"properties":{"id":"351816","name":"Heanor","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4679,53.5789,140.0]},"properties":{"id":"351823","name":"Heaton (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1766,53.4148,71.0]},"properties":{"id":"351829","name":"Heaton Norris","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0115,53.7431,105.0]},"properties":{"id":"351831","name":"Hebden Bridge","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3052,50.9108,38.0]},"properties":{"id":"351836","name":"Hedge End","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7327,56.0024,0.0]},"properties":{"id":"351840","name":"Helensburgh","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2432,52.2185,173.0]},"properties":{"id":"351841","name":"Hellidon","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0597,54.2462,57.0]},"properties":{"id":"351844","name":"Helmsley","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9778,54.5484,313.0]},"properties":{"id":"351847","name":"Helvellyn Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.268,50.9293,32.0]},"properties":{"id":"351852","name":"Henfield","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1251,51.1933,44.0]},"properties":{"id":"351865","name":"Hever Castle Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1106,54.9726,65.0]},"properties":{"id":"351866","name":"Hexham","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7908,55.1587,31.0]},"properties":{"id":"351871","name":"Hezlett House (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1657,55.9639,22.0]},"properties":{"id":"351872","name":"Hibernian F.C.","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9769,51.2181,1.0]},"properties":{"id":"351881","name":"Highbridge","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8891,52.4073,155.0]},"properties":{"id":"351888","name":"Highter's Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3333,52.2991,81.0]},"properties":{"id":"351890","name":"Hill","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9283,51.2964,69.0]},"properties":{"id":"354135","name":"West Green House","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9245,50.7579,58.0]},"properties":{"id":"354139","name":"West Howe","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9077,57.9237,null]},"properties":{"id":"354145","name":"West Loch Tarbert","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2145,51.6072,131.0]},"properties":{"id":"354163","name":"Westonbirt - The National Arboretum","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9807,53.3288,160.0]},"properties":{"id":"354171","name":"Whaley Bridge","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4062,53.8224,48.0]},"properties":{"id":"354172","name":"Whalley","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9324,60.3725,43.0]},"properties":{"id":"354174","name":"Whalsay Airport","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7443,54.3739,193.0]},"properties":{"id":"354176","name":"Wheeldale Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0708,53.1126,96.0]},"properties":{"id":"354177","name":"Wheelgate Park Farnsfield","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5401,52.009,134.0]},"properties":{"id":"354180","name":"Whichford","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5252,53.3424,207.0]},"properties":{"id":"354183","name":"Whirlow","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6061,54.4876,53.0]},"properties":{"id":"354187","name":"Whitby Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8341,51.8783,130.0]},"properties":{"id":"354188","name":"Whitchurch (Buckinghamshire)","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4011,55.9035,10.0]},"properties":{"id":"354193","name":"Whitecrook","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3478,55.8793,7.0]},"properties":{"id":"354197","name":"Whiteinch","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4497,55.0463,19.0]},"properties":{"id":"354205","name":"Whitley Bay","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8166,50.9699,92.0]},"properties":{"id":"354208","name":"Whitsbury","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.171,53.6602,240.0]},"properties":{"id":"354211","name":"Whitworth","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2742,53.4228,145.0]},"properties":{"id":"354216","name":"Wickersley","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6563,53.5452,28.0]},"properties":{"id":"354222","name":"Wigan Athletic F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1044,52.5866,98.0]},"properties":{"id":"354224","name":"Wigston","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9831,50.8002,19.0]},"properties":{"id":"354240","name":"Wimborne Minster","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9678,51.9568,104.0]},"properties":{"id":"354244","name":"Winchcombe","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9175,54.4037,121.0]},"properties":{"id":"354249","name":"Windermere Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.945,50.8554,170.0]},"properties":{"id":"354254","name":"Winkleigh","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6392,53.139,296.0]},"properties":{"id":"354258","name":"Winster Market House","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3438,51.4484,100.0]},"properties":{"id":"354261","name":"Winterbourne (West Berkshire)","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.918,55.7735,140.0]},"properties":{"id":"354265","name":"Wishaw","nationalPark":null,"region":"st","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9603,54.3594,156.0]},"properties":{"id":"351893","name":"Hill Top (Near Sawrey)","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4527,51.5334,51.0]},"properties":{"id":"351897","name":"Hillingdon","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7238,51.1201,171.0]},"properties":{"id":"351903","name":"Hindhead Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1513,51.04,79.0]},"properties":{"id":"351905","name":"Hinton Ampner Garden","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0759,51.0154,57.0]},"properties":{"id":"351906","name":"Hiscott","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8183,52.4976,112.0]},"properties":{"id":"351908","name":"Hodgehill","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0151,52.8037,2.0]},"properties":{"id":"351911","name":"Holbeach","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0384,52.6918,3.0]},"properties":{"id":"351912","name":"Holbeach Drove","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0763,52.9501,18.0]},"properties":{"id":"351922","name":"Holme Pierrepont National Water Sports Centre","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3528,50.8087,143.0]},"properties":{"id":"351925","name":"Holsworthy","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2238,53.2758,100.0]},"properties":{"id":"351928","name":"Holywell","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9629,51.2777,87.0]},"properties":{"id":"351935","name":"Hook","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5506,53.6608,69.0]},"properties":{"id":"351939","name":"Horbury","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1705,51.173,54.0]},"properties":{"id":"351941","name":"Horley","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0008,50.9154,90.0]},"properties":{"id":"351943","name":"Horndean","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1661,53.8941,13.0]},"properties":{"id":"351945","name":"Hornsea Freeport","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5533,53.5982,125.0]},"properties":{"id":"351950","name":"Horwich","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4671,54.8409,66.0]},"properties":{"id":"351952","name":"Houghton Le Spring","nationalPark":null,"region":"ne","unitaryAuthArea":"Sunderland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5044,51.0981,33.0]},"properties":{"id":"351953","name":"Houghton Lodge","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5232,51.9034,136.0]},"properties":{"id":"351954","name":"Houghton Regis","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5913,55.7186,218.0]},"properties":{"id":"351955","name":"Houndslow","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3605,51.4655,20.0]},"properties":{"id":"351956","name":"Hounslow","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8673,53.7457,5.0]},"properties":{"id":"351959","name":"Howden","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6065,55.4519,34.0]},"properties":{"id":"351961","name":"Howick Hall Garden","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2014,53.0339,80.0]},"properties":{"id":"351967","name":"Hucknall","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5489,53.7741,62.0]},"properties":{"id":"351973","name":"Hunslet Carr","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4927,52.9386,28.0]},"properties":{"id":"351974","name":"Hunstanton","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4955,52.9419,32.0]},"properties":{"id":"351975","name":"Hunstanton Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0819,53.498,151.0]},"properties":{"id":"351980","name":"Hurst","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8348,54.7142,166.0]},"properties":{"id":"351983","name":"Hutton-In-The-Forest","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8375,53.4127,32.0]},"properties":{"id":"351984","name":"Huyton","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6619,52.2186,96.0]},"properties":{"id":"351988","name":"Ickworth","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5609,51.1525,26.0]},"properties":{"id":"351989","name":"Iden Croft Herbs Staplehurst","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0234,53.1209,382.0]},"properties":{"id":"351991","name":"Idwal Cottage Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2939,51.3252,87.0]},"properties":{"id":"351993","name":"Iford Manor","nationalPark":null,"region":"sw","unitaryAuthArea":"Bath and North East Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0635,55.624,161.0]},"properties":{"id":"352006","name":"Innerleithen","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6681,56.871,44.0]},"properties":{"id":"352010","name":"Inverailort","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5997,57.776,7.0]},"properties":{"id":"352015","name":"Inverewe Gardens","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.42,53.444,16.0]},"properties":{"id":"352026","name":"Irlam","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4851,52.6331,131.0]},"properties":{"id":"352028","name":"Ironbridge Gorge Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Telford and Wrekin"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2563,55.6824,10.0]},"properties":{"id":"352031","name":"Islay Airport","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0058,53.2889,114.0]},"properties":{"id":"354301","name":"Woody's Top Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6645,50.8669,136.0]},"properties":{"id":"354306","name":"Woolfardisworthy","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2293,52.2005,16.0]},"properties":{"id":"354314","name":"Worcester Racecourse","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1199,53.0373,3.0]},"properties":{"id":"354323","name":"Wrangle","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9396,51.1814,44.0]},"properties":{"id":"354330","name":"Wye","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7651,53.7375,169.0]},"properties":{"id":"354331","name":"Wyke","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8235,52.5485,140.0]},"properties":{"id":"354335","name":"Wylde Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4975,50.7048,1.0]},"properties":{"id":"354343","name":"Yarmouth","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7387,52.6316,2.0]},"properties":{"id":"354344","name":"Yarmouth Racecourse","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2442,60.5747,null]},"properties":{"id":"354347","name":"Yell Sound","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6211,50.9347,92.0]},"properties":{"id":"354350","name":"Yeovil Alpine Village","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0944,53.935,22.0]},"properties":{"id":"354352","name":"York Racecourse","nationalPark":null,"region":"yh","unitaryAuthArea":"York"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2347,51.6396,102.0]},"properties":{"id":"354357","name":"Ystrad Mynach","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5283,52.2885,50.0]},"properties":{"id":"352043","name":"Jephson Gardens Royal Leamington Spa","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2498,53.6006,131.0]},"properties":{"id":"352044","name":"Jericho","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0937,55.9484,14.0]},"properties":{"id":"352048","name":"Joppa","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5832,51.6086,95.0]},"properties":{"id":"352049","name":"Jordans Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8003,50.7477,4.0]},"properties":{"id":"352050","name":"Jumpers Common","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.285,55.9054,131.0]},"properties":{"id":"352051","name":"Juniper Green","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4296,55.6142,56.0]},"properties":{"id":"352061","name":"Kelso Racecourse","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5793,52.3492,79.0]},"properties":{"id":"352073","name":"Kenilworth","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1465,50.2003,26.0]},"properties":{"id":"352074","name":"Kennall Vale","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7234,52.0995,80.0]},"properties":{"id":"352077","name":"Kentwell Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9959,52.5369,117.0]},"properties":{"id":"352084","name":"Kibworth Beauchamp","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2483,52.3883,37.0]},"properties":{"id":"352085","name":"Kidderminster","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2469,53.0743,170.0]},"properties":{"id":"352088","name":"Kidsgrove Ski Centre","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0061,54.063,25.0]},"properties":{"id":"352095","name":"Kilkeel","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3122,53.3202,91.0]},"properties":{"id":"352097","name":"Killamarsh","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3272,56.4755,150.0]},"properties":{"id":"352099","name":"Killin Youth Hostel","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5634,55.0364,74.0]},"properties":{"id":"352100","name":"Killingworth","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8822,52.5447,135.0]},"properties":{"id":"352122","name":"Kingstanding","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3842,57.1089,5.0]},"properties":{"id":"352131","name":"Kinloch Hourn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4074,56.2025,111.0]},"properties":{"id":"352135","name":"Kinross House","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5099,56.7341,22.0]},"properties":{"id":"352153","name":"Kirkhill","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0592,52.9264,3.0]},"properties":{"id":"352163","name":"Kirton","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1728,53.3575,79.0]},"properties":{"id":"352166","name":"Kitt's Moss","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4808,50.9293,159.0]},"properties":{"id":"352172","name":"Knightshayes Court","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2341,50.8651,14.0]},"properties":{"id":"352174","name":"Knockhatch Ski & Snowboarding Centre","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2422,53.7069,17.0]},"properties":{"id":"352178","name":"Knottingley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8894,53.4136,42.0]},"properties":{"id":"352179","name":"Knotty Ash","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1901,57.2709,788.0]},"properties":{"id":"371537","name":"Letterach","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3003,54.6156,790.0]},"properties":{"id":"371561","name":"Mickle Fell","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.04066,52.55429,46.0]},"properties":{"id":"371570","name":"Morley St Botolph","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.07182,56.45699,31.0]},"properties":{"id":"371580","name":"Mylnefield","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9712,54.8085,480.0]},"properties":{"id":"371589","name":"Oughtvabeg","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7449,52.4749,741.0]},"properties":{"id":"371594","name":"Pen Pumlumon-Arwystli","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2971,53.8683,557.0]},"properties":{"id":"371596","name":"Pendle Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2473,54.1558,694.0]},"properties":{"id":"371597","name":"Pen-Y-Ghent","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9193,54.5442,657.0]},"properties":{"id":"371603","name":"Place Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.84043,52.72429,71.0]},"properties":{"id":"371604","name":"Preston Montford","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6175,55.8671,61.0]},"properties":{"id":"371606","name":"Quarriers Homes","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2978,54.5272,755.0]},"properties":{"id":"371609","name":"Red Pike","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8902,50.5054,515.0]},"properties":{"id":"371619","name":"Ryder's Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2238,59.9964,33.0]},"properties":{"id":"371621","name":"Sandwick","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.30356,57.46763,67.0]},"properties":{"id":"371633","name":"Skye: Prabost","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9823,54.1447,747.0]},"properties":{"id":"371636","name":"Slieve Binnian","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.974,54.3399,535.0]},"properties":{"id":"371637","name":"Slieve Croob","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1781,55.0272,543.0]},"properties":{"id":"371646","name":"Slievenanee","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8673,53.4326,512.0]},"properties":{"id":"371647","name":"Snake Pass","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1123,50.697,28.0]},"properties":{"id":"371650","name":"St Helens","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2979,54.4908,841.0]},"properties":{"id":"371651","name":"Steeple","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0159,54.561,843.0]},"properties":{"id":"371655","name":"Stybarrow Dodd","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1439,55.4785,815.0]},"properties":{"id":"371660","name":"The Cheviot","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1524,55.0456,554.0]},"properties":{"id":"371667","name":"Trostan","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1295,52.0081,690.0]},"properties":{"id":"371669","name":"Twmpa","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3276,54.6931,649.0]},"properties":{"id":"371671","name":"Viewing Hill","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1419,51.9624,811.0]},"properties":{"id":"371673","name":"Waun Fach","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6592,55.3116,668.0]},"properties":{"id":"371675","name":"Wedder Law","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4012,54.2276,736.0]},"properties":{"id":"371680","name":"Whernside","nationalPark":null,"region":"nw","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.38053,53.3598,35.0]},"properties":{"id":"3351","name":"Rostherne No 2","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9358,54.8466,476.0]},"properties":{"id":"371330","name":"Agnew's Hill","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2905,56.9747,812.0]},"properties":{"id":"371339","name":"Askival","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6021,52.5914,57.0]},"properties":{"id":"371342","name":"Barrowden","nationalPark":null,"region":"em","unitaryAuthArea":"Rutland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2472,55.6096,792.0]},"properties":{"id":"371346","name":"Beinn Nuis","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2843,55.4029,623.0]},"properties":{"id":"371349","name":"Bell Craig","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1213,55.3138,681.0]},"properties":{"id":"371362","name":"Blacklorg Hill","nationalPark":null,"region":"st","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1545,55.4229,610.0]},"properties":{"id":"371364","name":"Bloodybush Edge","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3102,55.3806,665.0]},"properties":{"id":"371365","name":"Bodesbeck Law","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.54399,50.99523,22.0]},"properties":{"id":"371366","name":"Bodiam","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1068,53.8167,517.0]},"properties":{"id":"371367","name":"Boulsworth Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3513,55.4981,840.0]},"properties":{"id":"371370","name":"Broad Law","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3294,54.7323,746.0]},"properties":{"id":"371373","name":"Burnhope Seat","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3875,52.8758,827.0]},"properties":{"id":"371374","name":"Cadair Berwyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2285,55.4306,619.0]},"properties":{"id":"371691","name":"Windy Gyle","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4839,54.3812,639.0]},"properties":{"id":"371694","name":"Yarlside","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9076,52.6993,893.0]},"properties":{"id":"371376","name":"Cadair Idris","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5152,54.265,610.0]},"properties":{"id":"371379","name":"Calf Top","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1931,54.7064,696.0]},"properties":{"id":"371394","name":"Chapelfell Top","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2221,55.639,799.0]},"properties":{"id":"371396","name":"Cir Mhor","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1545,54.9133,113.0]},"properties":{"id":"371397","name":"Claudy","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.031,54.5935,726.0]},"properties":{"id":"371398","name":"Clough Head","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0221,50.5924,501.0]},"properties":{"id":"371401","name":"Cocks Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.23914,56.0745,9.0]},"properties":{"id":"371403","name":"Colonsay: Homefield","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6671,55.3483,645.0]},"properties":{"id":"371405","name":"Comb Law","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5101,55.499,635.0]},"properties":{"id":"371406","name":"Coomb Dod","nationalPark":null,"region":"st","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3579,55.1551,814.0]},"properties":{"id":"371410","name":"Corserine","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4725,54.2445,683.0]},"properties":{"id":"371412","name":"Crag Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7241,52.7598,780.0]},"properties":{"id":"371413","name":"Craig Y Ffynnon","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1847,57.4906,103.0]},"properties":{"id":"371414","name":"Craigellachie","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9766,50.6548,568.0]},"properties":{"id":"371415","name":"Cranmere Pool","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.8869,54.8042,528.0]},"properties":{"id":"371417","name":"Crockbrack","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9341,53.2074,770.0]},"properties":{"id":"371432","name":"Drum","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7789,56.4608,766.0]},"properties":{"id":"371438","name":"Dun Da Ghaoithe","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1846,55.5719,744.0]},"properties":{"id":"371439","name":"Dun Rig","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0951,54.1397,635.0]},"properties":{"id":"371441","name":"Eagle Mountain","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0891,54.4829,324.0]},"properties":{"id":"371443","name":"Easby Moor","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1362,51.20346,45.0]},"properties":{"id":"371444","name":"Edenbridge","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7616,56.0184,3.0]},"properties":{"id":"371451","name":"Falkirk, S Wks","nationalPark":null,"region":"ta","unitaryAuthArea":"Falkirk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5417,51.8555,632.0]},"properties":{"id":"371454","name":"Fan Llia","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8535,55.7554,19.0]},"properties":{"id":"371456","name":"Fairlie","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.92726,56.68342,91.0]},"properties":{"id":"371466","name":"Forfar No 3","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5925,54.9433,114.0]},"properties":{"id":"371470","name":"Gateshead","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4908,55.5159,688.0]},"properties":{"id":"371471","name":"Gathersnow Hill","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.01929,52.43193,31.0]},"properties":{"id":"371476","name":"Gogerddan","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2179,54.482,899.0]},"properties":{"id":"371483","name":"Great Gable","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2407,54.5916,791.0]},"properties":{"id":"371492","name":"Grisedale Pike","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4,55.4081,808.0]},"properties":{"id":"371496","name":"Hart Fell","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8349,54.4722,764.0]},"properties":{"id":"371498","name":"Harter Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8635,54.4916,828.0]},"properties":{"id":"371512","name":"High Street","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.01,50.6847,621.0]},"properties":{"id":"371513","name":"High Willhays","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1911,55.5927,686.0]},"properties":{"id":"371518","name":"Hundleshope Heights","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8694,54.4619,757.0]},"properties":{"id":"371519","name":"Ill Bell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7381,54.7467,496.0]},"properties":{"id":"371521","name":"Iniscarn Forest","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8812,53.3801,632.0]},"properties":{"id":"371526","name":"Kinder Low","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2435,54.4834,802.0]},"properties":{"id":"371529","name":"Kirk Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8458,55.5573,197.0]},"properties":{"id":"322148","name":"Douglas (South Lanarkshire)","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1049,52.4464,5.0]},"properties":{"id":"322689","name":"Ramsey (Cambridgeshire)","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1614,50.0051,0.0]},"properties":{"id":"354559","name":"Kennack Sands (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0971,50.0245,0.0]},"properties":{"id":"354560","name":"Coverack (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9407,50.2061,0.0]},"properties":{"id":"354562","name":"Pendower Beach (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7856,50.262,0.0]},"properties":{"id":"354564","name":"Port Mellon (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7546,50.3316,0.0]},"properties":{"id":"354569","name":"Charlestown (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6957,50.347,0.0]},"properties":{"id":"354571","name":"Par (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1286,51.2098,0.0]},"properties":{"id":"354577","name":"Ilfracombe - Tunnels Beach (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2127,51.1688,0.0]},"properties":{"id":"354579","name":"Woolacombe - Village (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2404,51.1304,0.0]},"properties":{"id":"354581","name":"Croyde Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2332,51.0519,0.0]},"properties":{"id":"354583","name":"Westward Ho! (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1204,50.3356,0.0]},"properties":{"id":"354585","name":"Bovisand Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8595,50.2438,0.0]},"properties":{"id":"354589","name":"Hope Cove (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5547,50.4065,0.0]},"properties":{"id":"354597","name":"Broadsands Beach (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5021,50.473,0.0]},"properties":{"id":"354602","name":"Ansteys Cove (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5033,50.5402,0.0]},"properties":{"id":"354607","name":"Shaldon (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4911,50.5476,0.0]},"properties":{"id":"354608","name":"Teignmouth (Town) (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2517,50.6747,0.0]},"properties":{"id":"354611","name":"Sidmouth - Jacobs Ladder (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0903,50.6964,0.0]},"properties":{"id":"354612","name":"Beer (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9087,50.7063,0.0]},"properties":{"id":"354635","name":"Poole - Branksome Chine (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8755,50.7157,0.0]},"properties":{"id":"354638","name":"Bournemouth - Pier (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7906,50.7188,0.0]},"properties":{"id":"354642","name":"Bournemouth - Southbourne (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7427,50.7186,0.0]},"properties":{"id":"354643","name":"Christchurch - Mudeford Sandbank East (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1068,50.7157,0.0]},"properties":{"id":"354651","name":"Seagrove (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3528,50.784,0.0]},"properties":{"id":"354660","name":"Lepe (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3186,50.809,0.0]},"properties":{"id":"354661","name":"Calshot (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.108,50.7901,0.0]},"properties":{"id":"354664","name":"Old Portsmouth Beach (Victoria Pier) (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0469,50.7849,0.0]},"properties":{"id":"354665","name":"Eastney (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9974,50.7845,0.0]},"properties":{"id":"354666","name":"Hayling Island - West Hayling (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9671,50.781,0.0]},"properties":{"id":"354668","name":"Hayling Island - West Of Eastoke (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9104,50.7768,0.0]},"properties":{"id":"354669","name":"West Wittering (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6409,50.7876,0.0]},"properties":{"id":"354674","name":"Felpham (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1592,50.8223,0.0]},"properties":{"id":"354679","name":"Hove West (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2004,50.743,0.0]},"properties":{"id":"354683","name":"Birling Gap (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1348,51.0721,0.0]},"properties":{"id":"354693","name":"Sandgate Beach","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7719,51.4404,0.0]},"properties":{"id":"354703","name":"Sheerness (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8041,51.4332,0.0]},"properties":{"id":"354704","name":"Minster Leas (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6774,51.5366,0.0]},"properties":{"id":"354705","name":"Southend - Chalkwell Beach (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7126,51.5331,0.0]},"properties":{"id":"354707","name":"Southend - Three Shells (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7735,51.5237,0.0]},"properties":{"id":"354710","name":"Shoeburyness (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Southend-on-Sea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1229,51.7754,0.0]},"properties":{"id":"354713","name":"Jaywick (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1403,51.7799,0.0]},"properties":{"id":"354714","name":"Clacton - Martello Tower (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2521,51.8319,0.0]},"properties":{"id":"354717","name":"Frinton-On-Sea (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2721,51.8472,0.0]},"properties":{"id":"354718","name":"Walton-On-The-Naze (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2724,51.9271,0.0]},"properties":{"id":"354719","name":"Dovercourt Bay (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.6774,52.3181,0.0]},"properties":{"id":"354722","name":"Southwold - The Denes (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2733,52.9376,0.0]},"properties":{"id":"354730","name":"East Runton (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4836,52.9367,0.0]},"properties":{"id":"354734","name":"Hunstanton - Main Beach","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.355,53.1912,0.0]},"properties":{"id":"354735","name":"Ingoldmells South (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0081,53.5353,0.0]},"properties":{"id":"354741","name":"Humberston Fitties (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"North East Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0256,53.5596,0.0]},"properties":{"id":"354742","name":"Cleethorpes (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"North East Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0131,53.77,0.0]},"properties":{"id":"354743","name":"Tunstall (Beach)","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0171,54.5981,0.0]},"properties":{"id":"354754","name":"Sea At Marske Sands (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0629,54.6189,0.0]},"properties":{"id":"354756","name":"Redcar - Lifeboat Station (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.506,55.1855,0.0]},"properties":{"id":"354768","name":"Newbiggin - North (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5698,55.2792,0.0]},"properties":{"id":"354769","name":"Druridge Bay North (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6344,55.5414,0.0]},"properties":{"id":"354774","name":"Beadnell Bay (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6303,54.0752,0.0]},"properties":{"id":"354782","name":"Derbyhaven (Beach)","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4033,53.3456,0.0]},"properties":{"id":"354785","name":"Prestatyn Barkby Beach (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6996,53.2941,0.0]},"properties":{"id":"354789","name":"Old Colwyn (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8265,53.3254,0.0]},"properties":{"id":"354790","name":"Llandudno - North Shore (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0899,53.2625,0.0]},"properties":{"id":"354792","name":"Beaumaris (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2352,53.351,0.0]},"properties":{"id":"354796","name":"Moelfre (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6166,53.2787,0.0]},"properties":{"id":"354803","name":"Trearddur Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1251,52.7849,0.0]},"properties":{"id":"354815","name":"Dyffryn (Llanenddwyn) (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0576,52.6963,0.0]},"properties":{"id":"354818","name":"Fairbourne (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0803,52.435,0.0]},"properties":{"id":"354819","name":"Clarach - South (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0898,52.4121,0.0]},"properties":{"id":"354820","name":"Aberystwyth - South (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5175,52.1354,0.0]},"properties":{"id":"354823","name":"Tresaith (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2059,51.9363,0.0]},"properties":{"id":"354830","name":"Abereiddy Bay - Slipway (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6346,51.4648,0.0]},"properties":{"id":"354831","name":"Ogmore-By-Sea (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2343,49.2567,0.0]},"properties":{"id":"354385","name":"Plemont (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2078,49.1794,0.0]},"properties":{"id":"354394","name":"Beauport (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2267,49.214,0.0]},"properties":{"id":"354396","name":"St. Ouens Bay - Le Braye (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0182,57.8567,0.0]},"properties":{"id":"354399","name":"Dornoch - Burn Mouth (Beach)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9457,57.979,0.0]},"properties":{"id":"354401","name":"Golspie - North (Beach)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.001,58.5673,0.0]},"properties":{"id":"354404","name":"Strathy Bay (Beach)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.434,57.7107,0.0]},"properties":{"id":"354406","name":"Hopeman East (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8706,55.7957,0.0]},"properties":{"id":"354415","name":"Largs - Main (Beach)","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7735,55.363,0.0]},"properties":{"id":"354417","name":"Croy (Beach)","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.655,55.2045,0.0]},"properties":{"id":"354426","name":"Portrush - Mill (West) Strand (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8589,54.8992,0.0]},"properties":{"id":"354429","name":"Ballygally (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7342,54.672,0.0]},"properties":{"id":"354430","name":"Helens Bay (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6876,54.5681,0.0]},"properties":{"id":"354431","name":"Murlough (Tyrella), Newcastle (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6075,49.4694,0.0]},"properties":{"id":"354437","name":"Vazon (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4531,56.7046,0.0]},"properties":{"id":"354447","name":"Montrose (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.665,56.5158,0.0]},"properties":{"id":"354450","name":"Easthaven (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.826,56.1897,0.0]},"properties":{"id":"354453","name":"Elie (Woodhaven And Ruby Bay) (Beach)","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1015,55.9515,0.0]},"properties":{"id":"354455","name":"Portobello - Central (James Street) (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.901,55.9852,0.0]},"properties":{"id":"354457","name":"Longniddry (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4658,55.9885,0.0]},"properties":{"id":"354462","name":"Whitesands Bay (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3341,55.9321,0.0]},"properties":{"id":"354464","name":"Pease Bay (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.298,51.3898,0.0]},"properties":{"id":"354467","name":"Cold Knap, Barry (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0107,51.5672,0.0]},"properties":{"id":"354474","name":"Langland Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.209,51.5434,0.0]},"properties":{"id":"354476","name":"Port Eynon (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3136,51.6738,0.0]},"properties":{"id":"354479","name":"Pembrey Beach - Llanelli (Cefn Sidan) (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6945,51.7095,0.0]},"properties":{"id":"354483","name":"Saundersfoot (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7601,51.6509,0.0]},"properties":{"id":"354489","name":"Lydstep Haven (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8052,51.6419,0.0]},"properties":{"id":"354491","name":"Manorbier Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0623,51.6564,0.0]},"properties":{"id":"354496","name":"Freshwater West (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1869,51.708,0.0]},"properties":{"id":"354499","name":"Westdale (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1218,51.8483,0.0]},"properties":{"id":"354503","name":"Newgale Sands (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2539,51.8724,0.0]},"properties":{"id":"354504","name":"Caerfai Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2232,51.0989,0.0]},"properties":{"id":"354508","name":"Saunton Sands (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.018,51.293,0.0]},"properties":{"id":"354516","name":"Berrow - North Of Unity Farm (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4635,51.2074,0.0]},"properties":{"id":"354519","name":"Minehead - Terminus (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5914,51.223,0.0]},"properties":{"id":"354520","name":"Porlock Weir - Porlock Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0254,50.5094,0.0]},"properties":{"id":"354532","name":"Porthcothan (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0778,50.416,0.0]},"properties":{"id":"354535","name":"Newquay - Great Western (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.073,50.4175,0.0]},"properties":{"id":"354536","name":"Newquay - Tolcarne (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4624,50.1984,0.0]},"properties":{"id":"354545","name":"Carbis Bay Beach (Station) (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.501,50.1281,0.0]},"properties":{"id":"354551","name":"Mounts Bay - Little Hogus (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8318,54.0707,406.0]},"properties":{"id":"354841","name":"Greenhow Hill","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6839,53.5002,269.0]},"properties":{"id":"354845","name":"Langsett Barn","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1216,53.1187,94.0]},"properties":{"id":"354847","name":"Electric Mountain Llanberis","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0177,51.82,48.0]},"properties":{"id":"354849","name":"Abergavenny Castle","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5943,51.7561,64.0]},"properties":{"id":"354850","name":"Pont Nedd Fechan (Waterfalls)","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1062,51.7719,392.0]},"properties":{"id":"354851","name":"Big Pit National Coal Museum","nationalPark":null,"region":"wl","unitaryAuthArea":"Torfaen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9457,54.2185,110.0]},"properties":{"id":"354853","name":"Tolleymore Forest Park","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8994,54.2026,63.0]},"properties":{"id":"354855","name":"Donard Park Newcastle","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2972,51.7379,53.0]},"properties":{"id":"354861","name":"Skomer Island","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2607,51.8804,52.0]},"properties":{"id":"354863","name":"Oriel Y Parc","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.6596,52.5871,7.0]},"properties":{"id":"354870","name":"Burgh Castle","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3558,55.3384,469.0]},"properties":{"id":"354884","name":"Windy Crag","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1053,55.3361,146.0]},"properties":{"id":"354886","name":"Harbottle","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5236,55.1962,124.0]},"properties":{"id":"354887","name":"Kielder Water","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9356,51.8543,231.0]},"properties":{"id":"354899","name":"Carreg Cennen","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7162,51.9435,341.0]},"properties":{"id":"354900","name":"Glasfynydd (Usk Reservoir)","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.711,56.4362,229.0]},"properties":{"id":"354904","name":"Tyndrum","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4525,56.0671,44.0]},"properties":{"id":"354905","name":"Drymen","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3793,57.2517,328.0]},"properties":{"id":"354908","name":"Tomintoul","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7445,52.0165,52.0]},"properties":{"id":"354909","name":"Castell Henllys","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9257,51.6138,8.0]},"properties":{"id":"354912","name":"Bosherton Lily Ponds","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9204,51.8606,73.0]},"properties":{"id":"354913","name":"Scolton Manor","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0231,54.3407,103.0]},"properties":{"id":"354915","name":"Grizedale Forest Visitor Centre","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8191,54.6127,143.0]},"properties":{"id":"354919","name":"Pooley Bridge","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0578,51.8626,575.0]},"properties":{"id":"354921","name":"Sugar Loaf","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9964,51.7512,100.0]},"properties":{"id":"354923","name":"Goytre Wharf (Abergavenny)","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1059,54.1422,213.0]},"properties":{"id":"354924","name":"Arncliffe","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1033,54.3068,215.0]},"properties":{"id":"354928","name":"Bainbridge","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0903,54.1904,228.0]},"properties":{"id":"354930","name":"Buckden","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2051,54.0863,427.0]},"properties":{"id":"354932","name":"Embsay Moor","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9114,54.0781,348.0]},"properties":{"id":"354935","name":"Grimwith Reservoir","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1848,54.1847,305.0]},"properties":{"id":"354936","name":"Halton Gill","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1243,54.2805,262.0]},"properties":{"id":"354947","name":"Semerwater","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0949,54.3979,364.0]},"properties":{"id":"354948","name":"Swaledale","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.918,54.3011,97.0]},"properties":{"id":"354954","name":"Hutton-Le-Hole","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9904,50.544,412.0]},"properties":{"id":"354957","name":"Princetown","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7551,50.5803,457.0]},"properties":{"id":"354958","name":"Haytor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9755,50.5791,513.0]},"properties":{"id":"354964","name":"Beardown Tors","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8543,50.522,304.0]},"properties":{"id":"354975","name":"Venford Reservoir","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8665,50.473,325.0]},"properties":{"id":"354976","name":"Avon Dam Reservoir","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7545,51.1395,319.0]},"properties":{"id":"354983","name":"Simonsbath","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6761,57.1644,327.0]},"properties":{"id":"354995","name":"Glenmore Lodge","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8824,50.9698,64.0]},"properties":{"id":"354996","name":"South Harting","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4329,51.7935,269.0]},"properties":{"id":"355000","name":"Garwnant Visitor Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Merthyr Tydfil"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.887,56.497,9.0]},"properties":{"id":"3100","name":"Tiree","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6,55.421,23.0]},"properties":{"id":"3240","name":"Boulmer","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.154,53.34,88.0]},"properties":{"id":"3348","name":"Woodford","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3567,50.9503,11.0]},"properties":{"id":"3","name":"Southampton Airport","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.058,51.5048,2.0]},"properties":{"id":"5","name":"London City Airport","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9,58.954,26.0]},"properties":{"id":"3017","name":"Kirkwall","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.397,57.358,4.0]},"properties":{"id":"3023","name":"South Uist Range","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.325,58.214,15.0]},"properties":{"id":"3026","name":"Stornoway","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.233,56.933,351.0]},"properties":{"id":"99005","name":"Dalwhinnie","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.583,54.767,102.0]},"properties":{"id":"99049","name":"Durham","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9,50.767,177.0]},"properties":{"id":"99081","name":"North Wyke","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.464,52.757,360.0]},"properties":{"id":"3410","name":"Lake Vyrnwy Saws","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.141,52.873,3.0]},"properties":{"id":"3469","name":"Holbeach","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.127,52.949,21.0]},"properties":{"id":"3488","name":"Weybourne","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.149,51.089,6.0]},"properties":{"id":"3707","name":"Chivenor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9924,51.5031,145.0]},"properties":{"id":"3740","name":"Lyneham","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.772,51.279,65.0]},"properties":{"id":"3768","name":"Farnborough","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.314,51.464,3.0]},"properties":{"id":"3784","name":"Gravesend-Broadness","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.202,49.96,55.0]},"properties":{"id":"3815","name":"Lizard Lighthouse","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9887,53.4113,19.0]},"properties":{"id":"310012","name":"Liverpool","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1565,52.9545,61.0]},"properties":{"id":"310015","name":"Nottingham","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0228,54.9033,7.0]},"properties":{"id":"320322","name":"Stranraer","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2865,51.6704,52.0]},"properties":{"id":"321943","name":"Abingdon","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8936,51.8955,4.0]},"properties":{"id":"310053","name":"Colchester","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2921,50.7675,7.0]},"properties":{"id":"310066","name":"Eastbourne","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7314,52.6091,2.0]},"properties":{"id":"310077","name":"Great Yarmouth","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0894,51.7674,69.0]},"properties":{"id":"310084","name":"Harlow","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4687,51.758,91.0]},"properties":{"id":"310089","name":"Hemel Hempstead","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7479,51.631,81.0]},"properties":{"id":"310090","name":"High Wycombe","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3471,53.7492,2.0]},"properties":{"id":"310093","name":"Hull","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1499,52.0563,6.0]},"properties":{"id":"310094","name":"Ipswich","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9011,52.2401,69.0]},"properties":{"id":"310114","name":"Northampton","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4388,55.8473,16.0]},"properties":{"id":"310119","name":"Paisley","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7017,53.763,30.0]},"properties":{"id":"310123","name":"Preston","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6528,53.5884,41.0]},"properties":{"id":"310132","name":"Scunthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"North Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7513,52.7066,66.0]},"properties":{"id":"310133","name":"Shrewsbury","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5425,50.8262,7.0]},"properties":{"id":"310182","name":"Bude","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5087,55.1269,2.0]},"properties":{"id":"322040","name":"Blyth","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2325,56.0588,12.0]},"properties":{"id":"322076","name":"Burntisland","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.13,56.85,109.0]},"properties":{"id":"322124","name":"Corpach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3621,51.4626,2.0]},"properties":{"id":"322858","name":"Tilbury","nationalPark":null,"region":"ee","unitaryAuthArea":"Thurrock"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4563,50.6139,1.0]},"properties":{"id":"322947","name":"Weymouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9084,51.6731,9.0]},"properties":{"id":"310217","name":"Pembroke","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3396,53.1461,5.0]},"properties":{"id":"310228","name":"Skegness","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7024,51.6724,23.0]},"properties":{"id":"310236","name":"Tenby","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4125,50.6195,3.0]},"properties":{"id":"322179","name":"Exmouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.38,51.68,64.0]},"properties":{"id":"322216","name":"Garston","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8137,55.9602,3.0]},"properties":{"id":"322235","name":"Gourock","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.262,51.9343,21.0]},"properties":{"id":"322276","name":"Harwich","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.86,55.74,9.0]},"properties":{"id":"322308","name":"Hunterston","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2143,53.6138,5.0]},"properties":{"id":"322315","name":"Immingham","nationalPark":null,"region":"yh","unitaryAuthArea":"North East Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6679,55.6173,11.0]},"properties":{"id":"322322","name":"Irvine","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8767,51.146,45.0]},"properties":{"id":"324150","name":"Ashford","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8891,52.9869,170.0]},"properties":{"id":"324160","name":"Alton Towers Leisure Park","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.081146,51.53926,12.0]},"properties":{"id":"324164","name":"Barking","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0605,52.3352,87.0]},"properties":{"id":"324168","name":"Bromsgrove","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9861,51.9989,81.0]},"properties":{"id":"324169","name":"Buckingham","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9661,56.1839,61.0]},"properties":{"id":"324179","name":"Dunblane","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7973,51.2138,68.0]},"properties":{"id":"324184","name":"Farnham","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0993,56.6848,10.0]},"properties":{"id":"324188","name":"Glencoe","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1584,56.2009,66.0]},"properties":{"id":"324189","name":"Glenrothes","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.856,53.7268,128.0]},"properties":{"id":"324191","name":"Halifax","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4307,55.6,38.0]},"properties":{"id":"324197","name":"Kelso","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.805,53.075,15.0]},"properties":{"id":"324208","name":"Newark","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1922,55.6531,162.0]},"properties":{"id":"324211","name":"Peebles","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7998,53.2985,8.0]},"properties":{"id":"324214","name":"Rampton","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7762,52.4115,130.0]},"properties":{"id":"324219","name":"Solihull","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9409,56.117,25.0]},"properties":{"id":"324221","name":"Stirling","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7068,52.1914,37.0]},"properties":{"id":"324222","name":"Stratford-Upon-Avon","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5206,58.5938,11.0]},"properties":{"id":"324226","name":"Thurso","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8643,52.8978,87.0]},"properties":{"id":"324228","name":"Uttoxeter","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9815,52.5859,121.0]},"properties":{"id":"324230","name":"Walsall","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5835,52.282,63.0]},"properties":{"id":"324232","name":"Warwick","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6924,52.302,62.0]},"properties":{"id":"324233","name":"Wellingborough","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9937,52.5173,162.0]},"properties":{"id":"324234","name":"West Bromwich","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7102,51.0893,145.0]},"properties":{"id":"324247","name":"Haslemere","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1773,55.2692,200.0]},"properties":{"id":"324261","name":"Eskdalemuir","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6003,52.9096,168.0]},"properties":{"id":"324263","name":"Bala","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.33,50.83,150.0]},"properties":{"id":"324270","name":"Ansty","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3574,50.6396,71.0]},"properties":{"id":"324272","name":"Launceston","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0031,50.7378,155.0]},"properties":{"id":"324273","name":"Okehampton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7759,54.2437,34.0]},"properties":{"id":"324280","name":"Pickering","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9134,53.2588,289.0]},"properties":{"id":"324051","name":"Buxton","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7922,50.7305,6.0]},"properties":{"id":"324068","name":"Selsey","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.75,52.867,70.0]},"properties":{"id":"324071","name":"Sudbury","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3804,51.7483,175.0]},"properties":{"id":"324081","name":"Merthyr Tydfil","nationalPark":null,"region":"wl","unitaryAuthArea":"Merthyr Tydfil"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1517,56.1147,6.0]},"properties":{"id":"322383","name":"Kirkcaldy","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.3227,54.9952,35.0]},"properties":{"id":"322472","name":"Londonderry (Derry)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4963,57.6708,7.0]},"properties":{"id":"322488","name":"Macduff","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.37,53.7,2.0]},"properties":{"id":"322572","name":"New Holland","nationalPark":null,"region":"yh","unitaryAuthArea":"North Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.72,50.35,34.0]},"properties":{"id":"322621","name":"Par","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6785,55.9323,18.0]},"properties":{"id":"322659","name":"Port Glasgow","nationalPark":null,"region":"st","unitaryAuthArea":"Inverclyde"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1949,57.4127,5.0]},"properties":{"id":"322675","name":"Portree","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0536,55.8374,4.0]},"properties":{"id":"322720","name":"Rothesay","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3981,54.2829,38.0]},"properties":{"id":"322753","name":"Scarborough","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0418,53.2131,10.0]},"properties":{"id":"322767","name":"Shotton","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.012,52.0744,158.0]},"properties":{"id":"400002","name":"Silverstone Motor Racing Circuit","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.27956,51.55602,36.0]},"properties":{"id":"324377","name":"Wembley Stadium","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.062,51.486,38.0]},"properties":{"id":"324382","name":"The Royal Artillery Barracks","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2141,51.4337,26.0]},"properties":{"id":"324383","name":"All England Tennis Club Wimbledon","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1283,51.5047,3.0]},"properties":{"id":"324386","name":"Horseguards Parade","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.879,52.273,127.0]},"properties":{"id":"99115","name":"Northampton Moulton Park","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.254,55.048,213.0]},"properties":{"id":"99121","name":"Altnahinch Filters","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.966,54.885,216.0]},"properties":{"id":"99131","name":"Banagher Caugh Hill","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.484,57.329,48.0]},"properties":{"id":"99132","name":"Drumnadrochit","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.42,56.67,277.0]},"properties":{"id":"322192","name":"Finnart","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1451,52.66,80.0]},"properties":{"id":"322943","name":"Welshpool","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8842,51.9716,117.0]},"properties":{"id":"350002","name":"Abbey Dore Court Garden","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5091,53.3353,110.0]},"properties":{"id":"350004","name":"Abbeydale","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0885,57.1588,13.0]},"properties":{"id":"350011","name":"Aberdeen F.C.(Pittodrie)","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5801,53.2841,16.0]},"properties":{"id":"350017","name":"Abergele","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7788,57.0768,129.0]},"properties":{"id":"350022","name":"Aboyne","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8285,52.4428,132.0]},"properties":{"id":"350032","name":"Acock's Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7012,51.6374,224.0]},"properties":{"id":"350043","name":"Afan Forest","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3033,57.2549,918.0]},"properties":{"id":"350044","name":"A'Ghlas-Bheinn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0365,53.6022,11.0]},"properties":{"id":"350045","name":"Ainsdale","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9339,53.474,20.0]},"properties":{"id":"350047","name":"Aintree Racecourse","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3696,53.4929,27.0]},"properties":{"id":"350051","name":"Alder Forest","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7467,53.6263,121.0]},"properties":{"id":"350066","name":"Almondbury","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2554,57.6962,17.0]},"properties":{"id":"350067","name":"Alness","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7477,51.2598,82.0]},"properties":{"id":"350068","name":"Alpine Snowsports Farnborough","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0786,53.526,159.0]},"properties":{"id":"350072","name":"Alt","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9749,51.1501,109.0]},"properties":{"id":"350074","name":"Alton","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8308,52.4867,112.0]},"properties":{"id":"350076","name":"Alum Rock","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.037,53.776,10.0]},"properties":{"id":"3318","name":"Blackpool Squires Gate","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4904,51.5756,20.0]},"properties":{"id":"310024","name":"Basildon","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6971,51.503,4.0]},"properties":{"id":"310176","name":"Avonmouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7824,57.5083,14.0]},"properties":{"id":"322641","name":"Peterhead","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1797,51.2042,112.0]},"properties":{"id":"324231","name":"Warminster","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1274,52.5866,156.0]},"properties":{"id":"324240","name":"Wolverhampton","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1101,52.3761,28.0]},"properties":{"id":"324252","name":"Diss","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4671,54.1544,131.0]},"properties":{"id":"324256","name":"Ingleton Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1239,52.0759,87.0]},"properties":{"id":"324265","name":"Hay-On-Wye","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.725,51.931,223.0]},"properties":{"id":"324269","name":"Stow-On-The-Wold","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.006,53.3657,30.0]},"properties":{"id":"324279","name":"Louth","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7534,52.4125,17.0]},"properties":{"id":"324074","name":"Thetford","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5042,52.8242,9.0]},"properties":{"id":"324078","name":"Abersoch","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3118,52.5118,116.0]},"properties":{"id":"324082","name":"Newtown (Powys)","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.008,54.803,113.0]},"properties":{"id":"3153","name":"Dundrennan","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.25,54.045,14.0]},"properties":{"id":"3266","name":"Linton On Ouse","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.986,53.174,10.0]},"properties":{"id":"3321","name":"Hawarden","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.63,53.28,72.0]},"properties":{"id":"322466","name":"Llanddulas","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.36,54.749,125.0]},"properties":{"id":"354362","name":"Shotton","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.23218,51.50927,10.0]},"properties":{"id":"354365","name":"Qpr F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2404,52.56469,10.0]},"properties":{"id":"354367","name":"Peterborough United F.C.","nationalPark":null,"region":"ee","unitaryAuthArea":"Peterborough"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.62004,55.46968,15.0]},"properties":{"id":"354374","name":"Ayr United F.C.","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.95875,50.61359,10.0]},"properties":{"id":"99159","name":"Swanage","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2918,57.0129,268.0]},"properties":{"id":"352191","name":"Laggan Wolftrax Mountain Bike Trail Centre","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.103,50.3841,8.0]},"properties":{"id":"352192","name":"Laira","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7808,55.6739,194.0]},"properties":{"id":"352200","name":"Lanark","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7388,54.8222,114.0]},"properties":{"id":"352201","name":"Lanchester","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6702,50.1015,120.0]},"properties":{"id":"352206","name":"Land's End Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0343,52.5979,139.0]},"properties":{"id":"352208","name":"Lane Head","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8367,56.0224,36.0]},"properties":{"id":"352220","name":"Larbert","nationalPark":null,"region":"ta","unitaryAuthArea":"Falkirk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.471,56.8314,81.0]},"properties":{"id":"352227","name":"Laurencekirk","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6582,51.4996,22.0]},"properties":{"id":"352228","name":"Lawrence Weston","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5706,53.7767,40.0]},"properties":{"id":"352243","name":"Leeds United F.C.","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.5759,52.2086,14.0]},"properties":{"id":"352254","name":"Leiston","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1435,60.1536,18.0]},"properties":{"id":"352262","name":"Lerwick","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2129,56.2005,124.0]},"properties":{"id":"352264","name":"Leslie","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.5521,52.7996,0.0]},"properties":{"id":"352267","name":"Lessingham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0076,51.463,8.0]},"properties":{"id":"352275","name":"Lewisham","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8253,54.3094,191.0]},"properties":{"id":"352277","name":"Leyburn","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1586,55.9132,106.0]},"properties":{"id":"352279","name":"Liberton","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1127,52.9699,194.0]},"properties":{"id":"352284","name":"Lightwood","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3896,52.7321,92.0]},"properties":{"id":"352285","name":"Lilleshall National Sports Centre","nationalPark":null,"region":"wm","unitaryAuthArea":"Telford and Wrekin"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.126,53.518,127.0]},"properties":{"id":"352288","name":"Lime Side","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3762,53.5638,82.0]},"properties":{"id":"352310","name":"Little Lever","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9718,53.3811,10.0]},"properties":{"id":"352318","name":"Liverpool Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7821,51.906,238.0]},"properties":{"id":"352326","name":"Llanddeusant Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3867,53.1393,0.0]},"properties":{"id":"352329","name":"Llanddwyn (Newborough)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3764,52.2414,212.0]},"properties":{"id":"352332","name":"Llandrindod Wells","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1519,51.5161,40.0]},"properties":{"id":"352336","name":"Llanedeyrn","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9738,53.2526,40.0]},"properties":{"id":"352339","name":"Llanfairfechan","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3102,53.2555,13.0]},"properties":{"id":"352341","name":"Llangefni","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0341,52.1594,137.0]},"properties":{"id":"352347","name":"Llangybi","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5389,52.4475,167.0]},"properties":{"id":"352348","name":"Llanidloes","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1892,51.5291,48.0]},"properties":{"id":"352349","name":"Llanishen","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1194,51.5214,44.0]},"properties":{"id":"352350","name":"Llanrumney","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7944,53.1368,5.0]},"properties":{"id":"352351","name":"Llanrwst","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.484,51.4088,46.0]},"properties":{"id":"352353","name":"Llantwit Major","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6596,52.1182,238.0]},"properties":{"id":"352355","name":"Llanwrtyd","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8654,53.0658,162.0]},"properties":{"id":"352357","name":"Lledr Valley Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4913,51.8905,309.0]},"properties":{"id":"352359","name":"Llwyn-Y-Celyn Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4568,51.6332,245.0]},"properties":{"id":"352360","name":"Llwynypia Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Rhondda Cynon Taff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1479,55.8764,148.0]},"properties":{"id":"352362","name":"Loanhead","nationalPark":null,"region":"dg","unitaryAuthArea":"Midlothian Council"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6443,57.2705,null]},"properties":{"id":"352364","name":"Loch Alsh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6522,57.4773,null]},"properties":{"id":"352370","name":"Loch Dunvegan","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8945,56.1284,null]},"properties":{"id":"352376","name":"Loch Goil","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0573,57.3267,247.0]},"properties":{"id":"352382","name":"Loch Mullardoch","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6674,56.9894,null]},"properties":{"id":"352385","name":"Loch Nevis","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1152,56.3554,null]},"properties":{"id":"352388","name":"Loch Scridain","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9748,55.9587,null]},"properties":{"id":"352392","name":"Loch Tarbert","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7719,57.5915,null]},"properties":{"id":"352393","name":"Loch Torridon","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4311,56.0383,5.0]},"properties":{"id":"352397","name":"Lochgilphead","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6266,55.7934,31.0]},"properties":{"id":"352401","name":"Lochwinnoch","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4849,52.5321,9.0]},"properties":{"id":"352405","name":"Loddon","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8883,54.5529,69.0]},"properties":{"id":"352407","name":"Loftus","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0322,51.3264,176.0]},"properties":{"id":"352411","name":"London Biggin Hill Airport","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1112,52.5133,142.0]},"properties":{"id":"352413","name":"London Fields","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2434,51.8832,98.0]},"properties":{"id":"352418","name":"London Stansted Airport","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2683,52.8981,29.0]},"properties":{"id":"352421","name":"Long Eaton","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5821,55.0123,56.0]},"properties":{"id":"352426","name":"Longbenton","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9767,52.3928,181.0]},"properties":{"id":"352427","name":"Longbridge","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2081,53.0441,131.0]},"properties":{"id":"352432","name":"Longport","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5974,53.8317,131.0]},"properties":{"id":"352433","name":"Longridge","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2788,57.7218,9.0]},"properties":{"id":"352440","name":"Lossiemouth","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4957,53.5711,102.0]},"properties":{"id":"352442","name":"Lostock Junction","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6739,50.4055,48.0]},"properties":{"id":"352443","name":"Lostwithiel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2046,52.7718,43.0]},"properties":{"id":"352447","name":"Loughborough","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0698,51.6555,52.0]},"properties":{"id":"352448","name":"Loughton","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2751,50.5393,44.0]},"properties":{"id":"352457","name":"Luckett","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5128,57.053,939.0]},"properties":{"id":"352460","name":"Luinne Bheinn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3356,54.4639,45.0]},"properties":{"id":"352464","name":"Lurgan","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4291,51.8848,110.0]},"properties":{"id":"352465","name":"Luton Town F.C.","nationalPark":null,"region":"ee","unitaryAuthArea":"Luton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1044,53.5686,172.0]},"properties":{"id":"352467","name":"Luzley Brook","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1977,51.1776,99.0]},"properties":{"id":"352469","name":"Lydden Motor Racing Circuit","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5291,51.7287,15.0]},"properties":{"id":"352470","name":"Lydney","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7563,51.6463,0.0]},"properties":{"id":"352472","name":"Lydstep","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5405,50.758,22.0]},"properties":{"id":"352476","name":"Lymington","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7778,52.4647,95.0]},"properties":{"id":"352479","name":"Lyndon Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8389,51.2292,155.0]},"properties":{"id":"352483","name":"Lynton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8418,51.226,230.0]},"properties":{"id":"352484","name":"Lynton Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2628,53.3406,2.0]},"properties":{"id":"352487","name":"Mablethorpe","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.459,55.782,0.0]},"properties":{"id":"352488","name":"Machir Bay","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7241,50.78,46.0]},"properties":{"id":"352489","name":"Macpenny's Nursery","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6061,54.755,74.0]},"properties":{"id":"352494","name":"Magherafelt","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9599,54.4286,60.0]},"properties":{"id":"350086","name":"Ambleside","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6282,56.3384,995.0]},"properties":{"id":"350094","name":"An Caisteal","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.638,56.2961,91.0]},"properties":{"id":"350095","name":"An Cala Garden","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9664,56.7602,982.0]},"properties":{"id":"350097","name":"An Gearanach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0992,57.3647,1129.0]},"properties":{"id":"350098","name":"An Riabhachan","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1563,57.3508,1069.0]},"properties":{"id":"350102","name":"An Socach (Loch Mullardoch)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2172,53.4849,50.0]},"properties":{"id":"350104","name":"Ancoats","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1425,50.778,1.0]},"properties":{"id":"350106","name":"Anglesey","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2584,54.9902,15.0]},"properties":{"id":"350108","name":"Annan","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7388,52.1894,65.0]},"properties":{"id":"350109","name":"Anne Hathaway's Cottage","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2288,50.3847,26.0]},"properties":{"id":"350113","name":"Antony House","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2228,57.123,1021.0]},"properties":{"id":"350116","name":"Aonach Air Chrith","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9575,56.8122,1219.0]},"properties":{"id":"350119","name":"Aonach Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2325,57.1709,1003.0]},"properties":{"id":"350120","name":"Aonach Meadhoin","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9313,56.2522,137.0]},"properties":{"id":"350130","name":"Ardkinglas Woodland Garden","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5604,56.2341,28.0]},"properties":{"id":"350135","name":"Arduaine Gardens","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.951,54.7682,22.0]},"properties":{"id":"350136","name":"Ardwell House","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4887,53.3199,59.0]},"properties":{"id":"350138","name":"Arley Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7008,55.8978,179.0]},"properties":{"id":"350140","name":"Armadale","nationalPark":null,"region":"dg","unitaryAuthArea":"West Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8939,57.0647,8.0]},"properties":{"id":"350141","name":"Armadale Pier","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6603,54.3481,50.0]},"properties":{"id":"350142","name":"Armagh Youth Hostel","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5731,53.7973,50.0]},"properties":{"id":"350144","name":"Armley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1303,53.0004,65.0]},"properties":{"id":"350146","name":"Arnold","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8076,51.1312,64.0]},"properties":{"id":"350158","name":"Ashcott","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5644,55.1829,34.0]},"properties":{"id":"350159","name":"Ashington","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3317,54.7633,76.0]},"properties":{"id":"350164","name":"Aspatria","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5869,53.568,127.0]},"properties":{"id":"350166","name":"Aspull","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8838,52.4956,104.0]},"properties":{"id":"350168","name":"Aston","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4327,53.3946,47.0]},"properties":{"id":"350172","name":"Attercliffe","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6986,56.3007,87.0]},"properties":{"id":"350176","name":"Auchterarder","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4383,53.7961,89.0]},"properties":{"id":"350182","name":"Austhorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8276,57.1809,206.0]},"properties":{"id":"350186","name":"Aviemore Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2261,50.8095,116.0]},"properties":{"id":"350188","name":"Awliscombe","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9936,50.7822,52.0]},"properties":{"id":"350189","name":"Axminster","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9756,54.2913,187.0]},"properties":{"id":"350195","name":"Aysgarth Falls Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4625,50.5107,null]},"properties":{"id":"350196","name":"Babbacombe Bay","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0089,52.2643,58.0]},"properties":{"id":"350197","name":"Bacton","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1998,53.7069,269.0]},"properties":{"id":"350198","name":"Bacup","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1791,52.2218,141.0]},"properties":{"id":"350199","name":"Badby Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9838,51.7598,152.0]},"properties":{"id":"350201","name":"Bagendon","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7666,53.8525,167.0]},"properties":{"id":"350205","name":"Baildon","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1599,53.0723,182.0]},"properties":{"id":"350213","name":"Ball Green","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4395,54.2225,155.0]},"properties":{"id":"350214","name":"Ballaheannagh","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0022,54.7524,81.0]},"properties":{"id":"350220","name":"Ballyclare","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1598,55.8182,58.0]},"properties":{"id":"350221","name":"Ballygrant","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8963,54.4025,74.0]},"properties":{"id":"350224","name":"Ballynahinch","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5785,57.3348,118.0]},"properties":{"id":"350225","name":"Balnain Bike Park","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2142,55.8892,93.0]},"properties":{"id":"350226","name":"Balornock","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1188,57.2814,1180.0]},"properties":{"id":"352507","name":"Mam Sodhail","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1814,52.8438,31.0]},"properties":{"id":"352517","name":"Mannington Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0638,51.945,6.0]},"properties":{"id":"352518","name":"Manningtree","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3005,55.8132,55.0]},"properties":{"id":"352520","name":"Mansewood","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4678,57.4965,933.0]},"properties":{"id":"352524","name":"Maol Chean-Dearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1285,52.9853,109.0]},"properties":{"id":"352526","name":"Mapperley","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1441,52.9751,75.0]},"properties":{"id":"352527","name":"Mapperley Park","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3689,51.3838,14.0]},"properties":{"id":"352532","name":"Margate Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3316,53.3875,25.0]},"properties":{"id":"352536","name":"Market Rasen","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1544,53.2038,61.0]},"properties":{"id":"352538","name":"Market Warsop","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1303,56.2036,70.0]},"properties":{"id":"352541","name":"Markinch","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6741,53.5504,36.0]},"properties":{"id":"352550","name":"Marsh Green","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0181,54.5918,20.0]},"properties":{"id":"352551","name":"Marske-By-The-Sea","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7431,52.4662,91.0]},"properties":{"id":"352552","name":"Marston Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3641,52.238,88.0]},"properties":{"id":"352553","name":"Martley","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7641,50.9709,20.0]},"properties":{"id":"352554","name":"Martock","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9477,51.3154,65.0]},"properties":{"id":"352563","name":"Mattingley","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6778,55.353,65.0]},"properties":{"id":"352570","name":"Maybole","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5807,50.382,94.0]},"properties":{"id":"352572","name":"Maypool Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4086,53.4241,74.0]},"properties":{"id":"352575","name":"Meadowhall","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8486,56.6121,1108.0]},"properties":{"id":"352576","name":"Meall A' Bhuiridh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4461,56.616,931.0]},"properties":{"id":"352580","name":"Meall Buidhe (Perth & Kinross)","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2531,56.5425,1069.0]},"properties":{"id":"352582","name":"Meall Corranaich","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0043,56.6818,951.0]},"properties":{"id":"352583","name":"Meall Dearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9825,57.6828,949.0]},"properties":{"id":"352588","name":"Meall Gorm","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1568,56.5678,1001.0]},"properties":{"id":"352589","name":"Meall Greigh","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3013,56.5201,1043.0]},"properties":{"id":"352595","name":"Meall Nan Tarmachan","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1362,51.37,34.0]},"properties":{"id":"352604","name":"Melksham","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8192,52.5867,150.0]},"properties":{"id":"352611","name":"Mere Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6073,55.5792,72.0]},"properties":{"id":"352614","name":"Mertoun House","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2231,50.8621,19.0]},"properties":{"id":"352618","name":"Michelham Priory Grounds","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1269,52.2125,61.0]},"properties":{"id":"352619","name":"Mickfield","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8419,55.6156,56.0]},"properties":{"id":"352624","name":"Middleton (Northumberland)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0839,54.6264,241.0]},"properties":{"id":"352626","name":"Middleton-In-Teesdale","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4424,53.1923,30.0]},"properties":{"id":"352627","name":"Middlewich","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7358,50.9864,31.0]},"properties":{"id":"352629","name":"Midhurst","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0909,51.0709,80.0]},"properties":{"id":"352639","name":"Millennium Seed Bank Wakehurst Place","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3157,55.9433,59.0]},"properties":{"id":"352643","name":"Milngavie","nationalPark":null,"region":"st","unitaryAuthArea":"East Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7374,53.8254,198.0]},"properties":{"id":"350237","name":"Bank Top","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3171,53.2103,10.0]},"properties":{"id":"350241","name":"Bardney","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0548,52.7226,5.0]},"properties":{"id":"350248","name":"Barmouth","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4649,53.5544,78.0]},"properties":{"id":"350253","name":"Barnsley Fc","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3964,55.7967,61.0]},"properties":{"id":"350256","name":"Barrhead","nationalPark":null,"region":"st","unitaryAuthArea":"East Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.86,50.9608,21.0]},"properties":{"id":"350257","name":"Barrington Court","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2645,51.3897,30.0]},"properties":{"id":"350258","name":"Barry Island Pleasure Park","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2066,53.0165,150.0]},"properties":{"id":"350262","name":"Basford","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0169,53.431,9.0]},"properties":{"id":"350272","name":"Bawtry","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.5678,52.4589,10.0]},"properties":{"id":"350284","name":"Beccles","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.6159,52.4326,22.0]},"properties":{"id":"350285","name":"Beccles Heliport","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1002,53.0125,56.0]},"properties":{"id":"350288","name":"Beddgelert","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1005,50.7012,59.0]},"properties":{"id":"350298","name":"Beer Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5755,57.0959,1082.0]},"properties":{"id":"350303","name":"Beinn A' Chaorainn (Aberdeenshire)","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5081,56.8683,1087.0]},"properties":{"id":"350305","name":"Beinn A' Chlachair","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.832,56.3907,917.0]},"properties":{"id":"350307","name":"Beinn A' Chleibh","nationalPark":null,"region":"st","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0666,56.4478,980.0]},"properties":{"id":"350308","name":"Beinn A' Chochuil","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8816,56.8787,1008.0]},"properties":{"id":"350319","name":"Beinn Dearg (Perth & Kinross)","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1289,57.3061,1005.0]},"properties":{"id":"350326","name":"Beinn Fhionnlaidh (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8131,56.234,1011.0]},"properties":{"id":"350329","name":"Beinn Ime","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6447,56.5323,953.0]},"properties":{"id":"350333","name":"Beinn Mhanach","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6093,57.0981,1182.0]},"properties":{"id":"350334","name":"Beinn Mheadhoin","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6543,56.7896,937.0]},"properties":{"id":"350335","name":"Beinn Na Lap","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9301,54.596,13.0]},"properties":{"id":"350347","name":"Belfast","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9388,54.5912,4.0]},"properties":{"id":"350349","name":"Belfast International Youth Hostel","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4702,52.434,80.0]},"properties":{"id":"350353","name":"Bell Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0726,52.4567,113.0]},"properties":{"id":"350355","name":"Belle Vale","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2526,55.1457,123.0]},"properties":{"id":"350357","name":"Bellingham","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4761,53.0241,92.0]},"properties":{"id":"350361","name":"Belper","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8641,55.1026,120.0]},"properties":{"id":"350363","name":"Belsay Hall Castle And Gardens","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6146,52.9401,47.0]},"properties":{"id":"350364","name":"Belton House","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6229,56.1896,974.0]},"properties":{"id":"350371","name":"Ben Lomond","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.668,57.0724,1309.0]},"properties":{"id":"350373","name":"Ben Macdui","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2519,55.9004,62.0]},"properties":{"id":"352646","name":"Milton (Glasgow)","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1457,53.0483,131.0]},"properties":{"id":"352647","name":"Milton (Stoke-On-Trent)","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7555,52.0382,100.0]},"properties":{"id":"352648","name":"Milton Keynes","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6523,51.2188,110.0]},"properties":{"id":"352649","name":"Milton Lodge","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2997,51.6306,57.0]},"properties":{"id":"352650","name":"Milton Manor House","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.476,50.8301,160.0]},"properties":{"id":"352655","name":"Minterne Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1406,53.1669,113.0]},"properties":{"id":"352660","name":"Mold","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8178,56.4802,9.0]},"properties":{"id":"352662","name":"Monifieth","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1045,52.5746,140.0]},"properties":{"id":"352664","name":"Monmore Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.148,52.5625,196.0]},"properties":{"id":"352668","name":"Montgomery","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3405,53.5063,53.0]},"properties":{"id":"352673","name":"Moorside (Nr Salford)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1889,51.4004,16.0]},"properties":{"id":"352677","name":"Morden Hall Park","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7667,50.6592,202.0]},"properties":{"id":"352681","name":"Moretonhampstead","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2087,55.9277,79.0]},"properties":{"id":"352684","name":"Morningside","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8888,52.4469,138.0]},"properties":{"id":"352688","name":"Moseley (Nr Birmingham)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2396,53.4534,32.0]},"properties":{"id":"352694","name":"Moss Side","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9789,55.7783,83.0]},"properties":{"id":"352698","name":"Motherwell F.C.","nationalPark":null,"region":"st","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0902,53.6137,null]},"properties":{"id":"352705","name":"Mouth Of The Humber","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9537,51.4604,null]},"properties":{"id":"352706","name":"Mouth Of The Severn","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5579,52.5968,155.0]},"properties":{"id":"352709","name":"Much Wenlock","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8238,56.0446,20.0]},"properties":{"id":"352712","name":"Muirfield (Hon Company Of Edinburgh Golfers)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0684,56.497,139.0]},"properties":{"id":"352713","name":"Muirhead (Angus)","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3851,54.3541,100.0]},"properties":{"id":"352723","name":"Muncaster Castle Gardens & Owl Centre","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2336,55.9429,43.0]},"properties":{"id":"352726","name":"Murrayfield (Stadium)","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3855,54.8145,103.0]},"properties":{"id":"352727","name":"Murton","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2002,51.5054,30.0]},"properties":{"id":"352732","name":"Mynachdy","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5656,50.667,50.0]},"properties":{"id":"352747","name":"Needles Pleasure Park","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5189,52.9354,40.0]},"properties":{"id":"352748","name":"Nefyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2179,53.835,140.0]},"properties":{"id":"352749","name":"Nelson","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6101,53.7493,140.0]},"properties":{"id":"352763","name":"New Brighton (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0946,52.6418,61.0]},"properties":{"id":"352764","name":"New Humberstone","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6665,50.7568,41.0]},"properties":{"id":"352770","name":"New Milton","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.24,56.3506,24.0]},"properties":{"id":"352784","name":"Newburgh","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4615,54.1018,22.0]},"properties":{"id":"352786","name":"Newby Hall","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.467,52.0403,22.0]},"properties":{"id":"352789","name":"Newcastle Emlyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6913,55.0353,72.0]},"properties":{"id":"352790","name":"Newcastle International Airport","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2136,56.3462,985.0]},"properties":{"id":"350382","name":"Ben Vorlich (Perth & Kinross)","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1198,51.8956,112.0]},"properties":{"id":"350385","name":"Benington Lordship","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4996,50.6198,31.0]},"properties":{"id":"350387","name":"Bennetts Water Garden","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.444,51.682,19.0]},"properties":{"id":"350397","name":"Berkeley Castle Grounds","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0834,53.5062,17.0]},"properties":{"id":"350404","name":"Bessacarr","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4774,50.8412,20.0]},"properties":{"id":"350412","name":"Bexhill","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2521,57.4203,945.0]},"properties":{"id":"350419","name":"Bidean A' Choire Sheasgaich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5226,55.6234,212.0]},"properties":{"id":"350425","name":"Biggar","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2183,52.9636,63.0]},"properties":{"id":"350427","name":"Bilborough","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4451,52.4021,80.0]},"properties":{"id":"350436","name":"Binley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2074,51.5183,39.0]},"properties":{"id":"350440","name":"Birchgrove","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3082,51.3729,21.0]},"properties":{"id":"350441","name":"Birchington","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9829,52.5389,147.0]},"properties":{"id":"350442","name":"Bird End","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0216,53.3898,8.0]},"properties":{"id":"350443","name":"Birkenhead","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9295,52.4646,136.0]},"properties":{"id":"350445","name":"Birmingham Botanical Gardens","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3171,59.13,0.0]},"properties":{"id":"350448","name":"Birsay Bay","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5759,54.9009,46.0]},"properties":{"id":"350451","name":"Birtley","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9948,52.4947,206.0]},"properties":{"id":"350456","name":"Bishop's Castle","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1602,51.8686,71.0]},"properties":{"id":"350458","name":"Bishop's Stortford","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1384,51.7519,231.0]},"properties":{"id":"350461","name":"Bisley","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0905,57.2207,928.0]},"properties":{"id":"350463","name":"Bla Bheinn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5588,53.856,124.0]},"properties":{"id":"350464","name":"Black Moor","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9436,52.9981,208.0]},"properties":{"id":"350479","name":"Blaenau Ffestiniog","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3444,56.5889,79.0]},"properties":{"id":"350482","name":"Blairgowrie","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9922,52.612,155.0]},"properties":{"id":"350485","name":"Blakenall Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0863,52.0994,36.0]},"properties":{"id":"350487","name":"Blakenham Woodland Garden","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1684,50.857,35.0]},"properties":{"id":"350488","name":"Blandford Forum","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4615,52.1601,17.0]},"properties":{"id":"350490","name":"Blaxhall Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7171,54.9629,52.0]},"properties":{"id":"350491","name":"Blaydon","nationalPark":null,"region":"ne","unitaryAuthArea":"Gateshead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0017,52.6115,160.0]},"properties":{"id":"350497","name":"Bloxwich","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1633,50.7488,51.0]},"properties":{"id":"350498","name":"Bloxworth","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4393,54.9446,43.0]},"properties":{"id":"350506","name":"Boldon","nationalPark":null,"region":"ne","unitaryAuthArea":"South Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5339,53.5807,109.0]},"properties":{"id":"350511","name":"Bolton Wanderers F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.05,52.4884,1.0]},"properties":{"id":"350519","name":"Borth","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6921,50.6931,79.0]},"properties":{"id":"350522","name":"Boscastle Harbour Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8133,50.2328,40.0]},"properties":{"id":"350524","name":"Boswinger Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2445,51.7479,55.0]},"properties":{"id":"350526","name":"Oxford Botanic Garden","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4972,53.3741,136.0]},"properties":{"id":"350527","name":"Sheffield Botanical Gardens","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4367,51.3908,0.0]},"properties":{"id":"350528","name":"Botany Bay (Broadstairs)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.62162,54.97554,79.0]},"properties":{"id":"352792","name":"St James Park","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.883,54.2216,7.0]},"properties":{"id":"352795","name":"Newcastle Youth Hostel","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7825,55.1776,191.0]},"properties":{"id":"352797","name":"Newcastleton (Mountain Bike Trail Centre)","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2226,53.0126,128.0]},"properties":{"id":"352798","name":"Newcastle-Under-Lyme","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3524,53.7681,3.0]},"properties":{"id":"352803","name":"Newland","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4096,52.2445,29.0]},"properties":{"id":"352805","name":"Newmarket","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3672,52.2337,30.0]},"properties":{"id":"352806","name":"Newmarket Racecourse","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.334,55.6121,117.0]},"properties":{"id":"352807","name":"Newmilns Snow & Sport Complex","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2902,50.7003,1.0]},"properties":{"id":"352809","name":"Newport (Isle Of Wight)","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9545,52.5415,112.0]},"properties":{"id":"352821","name":"Newton (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3374,53.5235,84.0]},"properties":{"id":"352828","name":"Newtown (Nr Salford)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.3597,54.1819,54.0]},"properties":{"id":"352832","name":"Newtownbutler","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9472,51.7046,2.0]},"properties":{"id":"352834","name":"Neyland","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3622,55.8156,37.0]},"properties":{"id":"352836","name":"Nitshill","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.121,53.3698,84.0]},"properties":{"id":"352838","name":"Norbury Moor","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4156,53.7006,41.0]},"properties":{"id":"352841","name":"Normanton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0235,54.3429,130.0]},"properties":{"id":"352848","name":"North Face Mountain Bike Trail","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3882,59.3286,null]},"properties":{"id":"352851","name":"North Ronaldsay Firth","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5016,57.0868,1197.0]},"properties":{"id":"352853","name":"North Top","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0167,52.6816,38.0]},"properties":{"id":"352854","name":"North Tuddenham","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4284,54.3378,43.0]},"properties":{"id":"352857","name":"Northallerton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2821,53.4087,32.0]},"properties":{"id":"352861","name":"Northern Moor","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4208,53.73,5.0]},"properties":{"id":"352862","name":"Northfield (Kingston Upon Hull)","nationalPark":null,"region":"yh","unitaryAuthArea":"Kingston upon Hull"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1612,53.0285,159.0]},"properties":{"id":"352867","name":"Northwood (Stoke-On-Trent)","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1564,52.4459,84.0]},"properties":{"id":"352870","name":"Norton (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1558,53.0619,173.0]},"properties":{"id":"352872","name":"Norton In The Moors","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3165,52.6211,2.0]},"properties":{"id":"352875","name":"Norwich City F.C.","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2865,52.6729,32.0]},"properties":{"id":"352876","name":"Norwich International Airport","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2712,52.6391,7.0]},"properties":{"id":"352877","name":"Norwich Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1834,51.0476,92.0]},"properties":{"id":"352882","name":"Nymans Garden","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6224,51.1324,70.0]},"properties":{"id":"352887","name":"Oakhurst Cottage Hambledon","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.479,56.4205,5.0]},"properties":{"id":"352890","name":"Oban Youth Hostel","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5001,53.3163,1.0]},"properties":{"id":"352891","name":"Ocean Beach Amusement Park Rhyl","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.99,50.7289,304.0]},"properties":{"id":"352896","name":"Okehampton Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.468,51.4376,47.0]},"properties":{"id":"352904","name":"Oldland","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6998,52.1544,52.0]},"properties":{"id":"352906","name":"Olney","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8036,52.4366,121.0]},"properties":{"id":"352907","name":"Olton","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2766,53.4738,30.0]},"properties":{"id":"352910","name":"Ordsall","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8837,53.5687,51.0]},"properties":{"id":"352911","name":"Ormskirk","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.794,50.2233,132.0]},"properties":{"id":"352928","name":"Overbeck's Garden Salcombe","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1367,51.5149,27.0]},"properties":{"id":"352932","name":"Oxford Street Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0,51.2556,94.0]},"properties":{"id":"352935","name":"Oxted","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6714,50.593,38.0]},"properties":{"id":"350537","name":"Bovey Tracey","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2869,55.7568,8.0]},"properties":{"id":"350541","name":"Bowmore","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7956,51.6685,146.0]},"properties":{"id":"350551","name":"Bradenham Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7886,52.0482,70.0]},"properties":{"id":"350558","name":"Bradwell Village Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.188,55.8428,19.0]},"properties":{"id":"350561","name":"Braidfauld","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.407,51.9006,73.0]},"properties":{"id":"350568","name":"Bran End","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9201,50.7265,42.0]},"properties":{"id":"350573","name":"Branksome","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4582,54.6107,90.0]},"properties":{"id":"350576","name":"Branthwaite","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1123,53.4233,92.0]},"properties":{"id":"350581","name":"Bredbury","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9225,53.7966,4.0]},"properties":{"id":"350583","name":"Breighton","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3088,51.62,104.0]},"properties":{"id":"350584","name":"Brentwood","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5742,56.9634,158.0]},"properties":{"id":"350589","name":"Bridge Of Dye","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4249,53.0024,80.0]},"properties":{"id":"350591","name":"Bridgemere Garden World","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2147,55.8465,11.0]},"properties":{"id":"350595","name":"Bridgeton","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.781,53.6995,54.0]},"properties":{"id":"350601","name":"Brighouse","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1477,50.859,62.0]},"properties":{"id":"350603","name":"Brighton Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6162,51.4382,7.0]},"properties":{"id":"350610","name":"Bristol City F.C.","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0635,52.8537,54.0]},"properties":{"id":"350614","name":"Briston","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8442,51.4842,182.0]},"properties":{"id":"350618","name":"Broad Hinton","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9144,57.2496,49.0]},"properties":{"id":"350621","name":"Broadford Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3575,53.3992,25.0]},"properties":{"id":"350622","name":"Broadheath","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9144,55.5636,375.0]},"properties":{"id":"350624","name":"Broadmeadows Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8531,52.0351,102.0]},"properties":{"id":"350628","name":"Broadway","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9766,53.3346,29.0]},"properties":{"id":"350633","name":"Bromborough","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3159,53.4115,26.0]},"properties":{"id":"350644","name":"Brooklands","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5419,51.488,41.0]},"properties":{"id":"350646","name":"Broomhill","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5716,53.7298,7.0]},"properties":{"id":"350648","name":"Brough","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1948,54.3054,41.0]},"properties":{"id":"350653","name":"Broughton Mills","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2085,57.2462,958.0]},"properties":{"id":"350657","name":"Bruach Na Frithe","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.88,58.859,0.0]},"properties":{"id":"350663","name":"Bu Sands","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1998,53.0022,47.0]},"properties":{"id":"350669","name":"Bulwell","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.199,51.792,160.0]},"properties":{"id":"352942","name":"Painswick Rococo Gardens","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6908,60.3227,21.0]},"properties":{"id":"352945","name":"Papa Stour Airstrip","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8902,59.3464,7.0]},"properties":{"id":"352947","name":"Papa Westray Youth Hostel","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0558,50.8026,7.0]},"properties":{"id":"352948","name":"Paradise Park Newhaven","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4869,50.915,37.0]},"properties":{"id":"352950","name":"Parham House","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1113,52.5648,159.0]},"properties":{"id":"352953","name":"Parkfield","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1927,55.8516,28.0]},"properties":{"id":"352955","name":"Parkhead (Glasgow)","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5231,53.3482,216.0]},"properties":{"id":"352956","name":"Parkhead (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2723,55.8824,58.0]},"properties":{"id":"352960","name":"Partick Thistle F.C.","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4267,53.4181,12.0]},"properties":{"id":"352961","name":"Partington","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7537,54.0848,154.0]},"properties":{"id":"352964","name":"Pateley Bridge","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9197,53.25,320.0]},"properties":{"id":"352968","name":"Pavilion Gardens Buxton","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6797,53.5417,61.0]},"properties":{"id":"352976","name":"Pemberton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1881,51.1772,35.0]},"properties":{"id":"352994","name":"Penshurst Place","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2824,53.0543,111.0]},"properties":{"id":"352999","name":"Penygroes","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4491,56.4272,14.0]},"properties":{"id":"353007","name":"Perth Racecourse","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4562,56.3917,68.0]},"properties":{"id":"353008","name":"Perth Youth Hostel","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2791,51.7504,59.0]},"properties":{"id":"353015","name":"Pickerells","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2824,53.5901,88.0]},"properties":{"id":"353018","name":"Pimhole","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6174,52.8247,113.0]},"properties":{"id":"353033","name":"Plas-Yn-Rhiw","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.281,55.8456,19.0]},"properties":{"id":"353052","name":"Pollokshields","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1125,55.9529,9.0]},"properties":{"id":"353087","name":"Portobello (Edinburgh)","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6766,52.3655,70.0]},"properties":{"id":"350689","name":"Burton Latimer","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2957,53.5948,90.0]},"properties":{"id":"350690","name":"Bury","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5706,54.9717,51.0]},"properties":{"id":"350702","name":"Byker","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.058,53.3085,103.0]},"properties":{"id":"350707","name":"Cadwell Park","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2727,53.1393,10.0]},"properties":{"id":"350710","name":"Caernarfon","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1765,52.2054,11.0]},"properties":{"id":"350730","name":"Cambridge City Airport","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1268,52.1937,11.0]},"properties":{"id":"350731","name":"Cambridge University Botanic Gardens","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1358,52.1994,14.0]},"properties":{"id":"350732","name":"Cambridge Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9721,50.7488,10.0]},"properties":{"id":"350741","name":"Canford Heath","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5454,52.3872,92.0]},"properties":{"id":"350743","name":"Canley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7896,52.1384,93.0]},"properties":{"id":"350745","name":"Canon Pyon","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1595,52.1539,160.0]},"properties":{"id":"350746","name":"Canons Ashby House","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9012,53.1059,233.0]},"properties":{"id":"350751","name":"Capel Curig Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1778,51.4812,11.0]},"properties":{"id":"350758","name":"Cardiff","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3489,51.3973,66.0]},"properties":{"id":"350760","name":"Cardiff International Airport","nationalPark":null,"region":"wl","unitaryAuthArea":"Vale of Glamorgan"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9315,54.8924,21.0]},"properties":{"id":"350766","name":"Carlisle","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0818,52.9663,29.0]},"properties":{"id":"350770","name":"Carlton (Nottinghamshire)","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4476,53.5873,65.0]},"properties":{"id":"350771","name":"Carlton (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7812,56.8668,963.0]},"properties":{"id":"350774","name":"Carn A' Chlamain","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4259,56.8963,917.0]},"properties":{"id":"350782","name":"Carn Aosda","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4549,56.8533,1034.0]},"properties":{"id":"350784","name":"Carn Dearg (1034m)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5111,56.9794,1006.0]},"properties":{"id":"350791","name":"Carn Liath (Highland)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2684,55.8851,70.0]},"properties":{"id":"353098","name":"Possil Park","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8999,55.4397,94.0]},"properties":{"id":"353104","name":"Powburn","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6129,55.4956,7.0]},"properties":{"id":"353119","name":"Prestwick","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0768,52.4858,143.0]},"properties":{"id":"353120","name":"Primrose Hill","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1984,55.8751,59.0]},"properties":{"id":"353125","name":"Provanmill","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6612,53.7953,164.0]},"properties":{"id":"353127","name":"Pudsey","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4164,52.8885,4.0]},"properties":{"id":"353130","name":"Pwllheli","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0187,53.208,2.0]},"properties":{"id":"353136","name":"Queensferry (Flintshire)","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0753,57.3636,38.0]},"properties":{"id":"353145","name":"Raasay Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3253,53.5612,72.0]},"properties":{"id":"353146","name":"Radcliffe","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7857,53.5012,40.0]},"properties":{"id":"353153","name":"Rainford","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3082,53.5177,40.0]},"properties":{"id":"353154","name":"Rainsough","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.367,54.3364,null]},"properties":{"id":"353159","name":"Ramsey Bay","nationalPark":null,"region":"nw","unitaryAuthArea":null}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.1595,54.2376,156.0]},"properties":{"id":"353164","name":"Rathfriland","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3434,53.4636,88.0]},"properties":{"id":"353172","name":"Rawmarsh","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1582,53.4418,78.0]},"properties":{"id":"353180","name":"Reddish","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9395,52.3086,122.0]},"properties":{"id":"353181","name":"Redditch","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1411,51.2103,61.0]},"properties":{"id":"353185","name":"Redhill Aerodrome & Heliport","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9951,52.3922,181.0]},"properties":{"id":"353189","name":"Rednal","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2124,51.5279,50.0]},"properties":{"id":"353197","name":"Rhiwbina","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.467,53.2917,9.0]},"properties":{"id":"353199","name":"Rhuddlan","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3045,56.9923,135.0]},"properties":{"id":"353205","name":"Rickarton","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2362,50.6924,80.0]},"properties":{"id":"353222","name":"Robin Hill Countryside Adventure Park","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0756,53.4147,121.0]},"properties":{"id":"353234","name":"Romiley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2236,55.8096,71.0]},"properties":{"id":"350829","name":"Castlemilk","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.08,51.2798,135.0]},"properties":{"id":"350837","name":"Caterham","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0222,51.2544,15.0]},"properties":{"id":"350869","name":"Chartham","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6322,51.9617,166.0]},"properties":{"id":"350871","name":"Chastleton House","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0557,52.4557,5.0]},"properties":{"id":"350874","name":"Chatteris","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2521,53.0403,160.0]},"properties":{"id":"350894","name":"Chesterton","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5407,51.9431,207.0]},"properties":{"id":"350906","name":"Chipping Norton","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0566,52.9326,106.0]},"properties":{"id":"350909","name":"Chirk","nationalPark":null,"region":"wl","unitaryAuthArea":"Wrexham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.816,50.791,10.0]},"properties":{"id":"350917","name":"Christchurch Ski Centre","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1576,55.0413,1.0]},"properties":{"id":"350927","name":"City Of Derry Airport","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0837,51.5102,10.0]},"properties":{"id":"350928","name":"City Of London","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6008,52.3734,340.0]},"properties":{"id":"350946","name":"Cleehill","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1907,52.6278,120.0]},"properties":{"id":"350972","name":"Codsall","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.533,52.2872,48.0]},"properties":{"id":"353263","name":"Royal Leamington Spa","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0187,52.0519,60.0]},"properties":{"id":"353271","name":"Royston (Hertfordshire)","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5988,52.2887,58.0]},"properties":{"id":"353285","name":"Rushden","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3768,52.4047,23.0]},"properties":{"id":"353312","name":"St Cross South Elmham","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2649,51.8809,59.0]},"properties":{"id":"353313","name":"St David's","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5361,51.4594,69.0]},"properties":{"id":"353317","name":"St George","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2918,49.9171,10.0]},"properties":{"id":"353325","name":"St Mary's Heliport","nationalPark":null,"region":"sw","unitaryAuthArea":"Isles of Scilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4443,55.8503,10.0]},"properties":{"id":"353329","name":"St Mirren Fc","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8028,51.3458,58.0]},"properties":{"id":"353353","name":"Sandhurst","nationalPark":null,"region":"se","unitaryAuthArea":"Bracknell Forest"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3582,51.3744,20.0]},"properties":{"id":"353356","name":"Sandown Active Sports","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1321,50.6492,null]},"properties":{"id":"353357","name":"Sandown Bay","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3638,51.3741,28.0]},"properties":{"id":"353358","name":"Sandown Park Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8343,53.8142,224.0]},"properties":{"id":"353364","name":"Sandy Lane","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1734,52.1207,23.0]},"properties":{"id":"353370","name":"Sawston","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2804,52.4339,8.0]},"properties":{"id":"353371","name":"Sawtry","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.249,55.9078,118.0]},"properties":{"id":"350983","name":"Colinton","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2824,52.7104,232.0]},"properties":{"id":"351011","name":"Copt Oak Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4702,52.3676,80.0]},"properties":{"id":"351033","name":"Coventry Airport","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0806,52.4715,101.0]},"properties":{"id":"351042","name":"Cradley Heath","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3167,55.8221,9.0]},"properties":{"id":"351049","name":"Craigens","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2144,56.5297,810.0]},"properties":{"id":"351064","name":"Creach Bheinn","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.388,56.8527,987.0]},"properties":{"id":"351066","name":"Creag Leacach","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0415,53.4882,11.0]},"properties":{"id":"351096","name":"Crosby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2378,51.0964,148.0]},"properties":{"id":"351107","name":"Crowcombe Heathfield","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9002,57.8464,927.0]},"properties":{"id":"353389","name":"Seana Bhraigh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8131,53.8592,5.0]},"properties":{"id":"353392","name":"Seaton Ross","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4969,56.4545,921.0]},"properties":{"id":"353405","name":"Sgaith Chuil","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7203,57.0565,1258.0]},"properties":{"id":"353406","name":"Sgor An Lochain Uaine","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0852,56.6197,994.0]},"properties":{"id":"353409","name":"Sgor Na H-Ulaidh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0398,56.682,966.0]},"properties":{"id":"353412","name":"Sgorr Nam Fiannaidh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2244,57.2076,993.0]},"properties":{"id":"353421","name":"Sgurr Alasdair","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2127,57.4519,999.0]},"properties":{"id":"353426","name":"Sgurr Choinnich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.394,57.1447,945.0]},"properties":{"id":"353444","name":"Sgurr Na Sgine","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1737,50.6341,31.0]},"properties":{"id":"353458","name":"Shanklin","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8306,59.0044,null]},"properties":{"id":"353459","name":"Shapinsay Sound","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7688,55.0661,100.0]},"properties":{"id":"353464","name":"Shawhead","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7958,52.015,109.0]},"properties":{"id":"353477","name":"Shenley Brook End","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8371,53.7261,175.0]},"properties":{"id":"353489","name":"Shibden Hall","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3732,52.6676,89.0]},"properties":{"id":"353491","name":"Shifnal","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5044,53.0655,175.0]},"properties":{"id":"353493","name":"Shining Cliff Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1172,53.648,188.0]},"properties":{"id":"353505","name":"Shore","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2926,50.8362,4.0]},"properties":{"id":"353506","name":"Shoreham Airport","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2363,50.6782,1.0]},"properties":{"id":"353513","name":"Sidmouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2712,53.0146,144.0]},"properties":{"id":"353519","name":"Silverdale","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5818,51.1201,38.0]},"properties":{"id":"353524","name":"Sissinghurst Castle Garden","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7812,54.2838,77.0]},"properties":{"id":"353526","name":"Sizergh Castle Gardens","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3452,59.0485,18.0]},"properties":{"id":"353527","name":"Skara Brae Heart Of Neolithic Orkney","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.775,53.5501,52.0]},"properties":{"id":"353531","name":"Skelmersdale","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0849,57.4801,150.0]},"properties":{"id":"351130","name":"Cumberland Stone","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9912,55.9457,142.0]},"properties":{"id":"351131","name":"Cumbernauld","nationalPark":null,"region":"st","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0087,56.3203,20.0]},"properties":{"id":"351134","name":"Cupar","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3096,55.8989,130.0]},"properties":{"id":"351136","name":"Currie","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.693,58.339,162.0]},"properties":{"id":"351149","name":"Dalganachan","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3491,56.0349,12.0]},"properties":{"id":"351150","name":"Dalgety Bay","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8315,55.1544,46.0]},"properties":{"id":"351151","name":"Daljarrock","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0652,55.8931,55.0]},"properties":{"id":"351152","name":"Dalkeith","nationalPark":null,"region":"dg","unitaryAuthArea":"Midlothian Council"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7219,55.7111,42.0]},"properties":{"id":"351155","name":"Dalry","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9515,55.3961,180.0]},"properties":{"id":"351180","name":"Deanburnhaugh","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3495,54.2606,306.0]},"properties":{"id":"351193","name":"Dentdale Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4415,52.9141,41.0]},"properties":{"id":"351195","name":"Derby County F.C.","nationalPark":null,"region":"em","unitaryAuthArea":"Derby"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.818,54.4189,65.0]},"properties":{"id":"351198","name":"Derrygonnelly","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1336,52.7495,111.0]},"properties":{"id":"351202","name":"Deuddwr","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6282,53.6896,37.0]},"properties":{"id":"351204","name":"Dewsbury","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6639,53.6952,48.0]},"properties":{"id":"351205","name":"Dewsbury Moor","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7789,56.0396,31.0]},"properties":{"id":"351213","name":"Dirleton Castle Garden","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6762,56.164,42.0]},"properties":{"id":"351221","name":"Dollar","nationalPark":null,"region":"ta","unitaryAuthArea":"Clackmannanshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9647,57.8583,null]},"properties":{"id":"351229","name":"Dornoch Firth","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7737,52.6226,111.0]},"properties":{"id":"351231","name":"Dorrington","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3394,50.6871,39.0]},"properties":{"id":"351232","name":"Dorset Snowsport Centre","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3748,55.9108,26.0]},"properties":{"id":"351256","name":"Drumchapel","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4061,55.9098,42.0]},"properties":{"id":"351258","name":"Drumry","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1346,55.9455,33.0]},"properties":{"id":"351261","name":"Duddingston","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1269,57.4438,203.0]},"properties":{"id":"351265","name":"Dufftown","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0931,53.4785,113.0]},"properties":{"id":"351267","name":"Dukinfield","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8909,57.6444,170.0]},"properties":{"id":"353538","name":"Slate Haugh","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5737,54.0654,123.0]},"properties":{"id":"353540","name":"Sledmere House","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6343,51.4733,74.0]},"properties":{"id":"353551","name":"Sneyd Park","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3364,52.3334,6.0]},"properties":{"id":"353555","name":"Soham","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.189,51.4881,9.0]},"properties":{"id":"353561","name":"Glamorgan C.C.C.","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.5611,56.8671,null]},"properties":{"id":"353571","name":"Sound Of Pabbay","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8064,57.0826,null]},"properties":{"id":"353573","name":"Sound Of Sleat","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9138,56.8958,76.0]},"properties":{"id":"353612","name":"Spean Bridge","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.0388,54.8073,322.0]},"properties":{"id":"353616","name":"Sperrin Mountains","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1596,52.1798,47.0]},"properties":{"id":"353617","name":"Spetchley Park","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1517,51.4816,10.0]},"properties":{"id":"353623","name":"Splott","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6528,54.6877,107.0]},"properties":{"id":"353629","name":"Springhill (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0232,50.8718,49.0]},"properties":{"id":"353641","name":"Stakes","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4302,51.5137,13.0]},"properties":{"id":"353650","name":"Stanford-Le-Hope","nationalPark":null,"region":"ee","unitaryAuthArea":"Thurrock"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5296,52.4003,100.0]},"properties":{"id":"351302","name":"Earlsdon","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6059,51.4897,59.0]},"properties":{"id":"351325","name":"Eastfield","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0517,50.7877,2.0]},"properties":{"id":"351328","name":"Eastney","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3392,53.4822,27.0]},"properties":{"id":"351334","name":"Eccles","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7697,59.1932,5.0]},"properties":{"id":"351340","name":"Eday Airfield","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.067,51.1958,41.0]},"properties":{"id":"351344","name":"Edenbridge","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9135,52.4605,143.0]},"properties":{"id":"351347","name":"Edgbaston","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3447,55.9483,33.0]},"properties":{"id":"351352","name":"Edinburgh Airport","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.183,55.9506,67.0]},"properties":{"id":"351354","name":"Edinburgh Central Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9075,50.9045,61.0]},"properties":{"id":"351357","name":"Edmondsham House","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.899,52.9064,95.0]},"properties":{"id":"351371","name":"Ellesmere","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3357,58.0928,null]},"properties":{"id":"351386","name":"Enard Bay","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0323,51.6668,67.0]},"properties":{"id":"351390","name":"Epping Forest Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2965,50.7747,60.0]},"properties":{"id":"351399","name":"Escot","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2411,54.3992,80.0]},"properties":{"id":"351402","name":"Eskdale Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4963,50.6986,13.0]},"properties":{"id":"351415","name":"Exeter Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6309,59.531,62.0]},"properties":{"id":"351424","name":"Fair Isle Airstrip","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.867,52.8223,40.0]},"properties":{"id":"351430","name":"Fakenham Racecourse","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1992,56.2591,49.0]},"properties":{"id":"351432","name":"Falkland Palace & Garden","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9681,56.7516,981.0]},"properties":{"id":"353686","name":"Stob Coire A' Chairn","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.773,56.8168,1116.0]},"properties":{"id":"353688","name":"Stob Coire Easain","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.692,56.8294,976.0]},"properties":{"id":"353690","name":"Stob Coire Sgriodain","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4829,51.1161,50.0]},"properties":{"id":"353697","name":"Stockbridge","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6326,51.4795,34.0]},"properties":{"id":"353703","name":"Stoke Bishop","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.167,52.9864,130.0]},"properties":{"id":"353704","name":"Stoke City F.C.","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5422,51.5165,59.0]},"properties":{"id":"353705","name":"Stoke Gifford","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2077,56.9638,1.0]},"properties":{"id":"353712","name":"Stonehaven","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.783,52.8111,151.0]},"properties":{"id":"353716","name":"Stonesby","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7176,51.9332,215.0]},"properties":{"id":"353726","name":"Stowe-On-The-Wold Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5397,57.02,80.0]},"properties":{"id":"353731","name":"Strachan","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5402,57.5793,114.0]},"properties":{"id":"353737","name":"Strathpeffer","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3073,53.4464,25.0]},"properties":{"id":"353744","name":"Stretford","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2949,58.9665,28.0]},"properties":{"id":"353745","name":"Stromness","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4714,56.5688,960.0]},"properties":{"id":"353755","name":"Stuchd An Lochain","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8089,53.3099,9.0]},"properties":{"id":"353770","name":"Sundown Adventure Land Rampton","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0927,52.549,40.0]},"properties":{"id":"353772","name":"Suton","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1067,54.07,27.0]},"properties":{"id":"353778","name":"Sutton Park","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9678,50.6043,75.0]},"properties":{"id":"353787","name":"Swanage Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0118,50.8084,99.0]},"properties":{"id":"353824","name":"Telscombe Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3626,52.5474,1.0]},"properties":{"id":"353828","name":"Ten Mile Bank","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6908,51.0688,60.0]},"properties":{"id":"353830","name":"Tenterden","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3735,52.1367,134.0]},"properties":{"id":"351443","name":"Farnborough Hall","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8609,60.6023,62.0]},"properties":{"id":"351462","name":"Fetlar Airport","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2889,54.2099,34.0]},"properties":{"id":"351463","name":"Filey","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8411,51.2768,78.0]},"properties":{"id":"351482","name":"Fleet","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3839,53.4415,17.0]},"properties":{"id":"351484","name":"Flixton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0976,57.6154,31.0]},"properties":{"id":"351487","name":"Fochabers","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0317,51.092,68.0]},"properties":{"id":"351490","name":"Folkestone Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3192,50.7823,1.0]},"properties":{"id":"351506","name":"Fort Fun Eastbourne","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4409,50.5587,48.0]},"properties":{"id":"351508","name":"Fortuneswell","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2774,53.6005,110.0]},"properties":{"id":"351516","name":"Free Town","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5234,51.4983,50.0]},"properties":{"id":"351517","name":"Frenchay","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5217,50.6802,11.0]},"properties":{"id":"351518","name":"Freshwater","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3187,51.2303,69.0]},"properties":{"id":"351523","name":"Frome","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3668,54.7791,15.0]},"properties":{"id":"351535","name":"Galloway House Gardens","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8111,56.0363,null]},"properties":{"id":"351539","name":"Gare Loch","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3883,53.7919,66.0]},"properties":{"id":"351541","name":"Garforth","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1,53.9841,108.0]},"properties":{"id":"351542","name":"Gargrave","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0667,53.4398,150.0]},"properties":{"id":"351556","name":"Gee Cross","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7999,53.8029,165.0]},"properties":{"id":"351573","name":"Girlington","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0061,56.5405,993.0]},"properties":{"id":"351576","name":"Glas Bheinn Mhor","nationalPark":null,"region":"he","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5753,57.6816,1046.0]},"properties":{"id":"351577","name":"Glas Leathad Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4282,55.87,6.0]},"properties":{"id":"351581","name":"Glasgow Airport","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1593,52.5979,108.0]},"properties":{"id":"353835","name":"Tettenhall","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6982,55.4136,53.0]},"properties":{"id":"353841","name":"The Alnwick Garden","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2117,52.1841,28.0]},"properties":{"id":"353849","name":"The Commandery Worcester","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7597,56.2736,149.0]},"properties":{"id":"353859","name":"The Gleneagles Hotel","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5629,54.8505,14.0]},"properties":{"id":"353867","name":"Durham I.C.G.","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0901,51.2675,39.0]},"properties":{"id":"353871","name":"The St. Lawrence Ground Kent C.C.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0905,53.354,67.0]},"properties":{"id":"353877","name":"Thingwall","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3289,50.9084,47.0]},"properties":{"id":"353886","name":"Thornhill (Southampton)","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6239,53.6722,48.0]},"properties":{"id":"353887","name":"Thornhill Lees","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8182,53.9839,20.0]},"properties":{"id":"353905","name":"Thurnham Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3178,53.3965,30.0]},"properties":{"id":"353916","name":"Timperley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0973,53.7161,137.0]},"properties":{"id":"353930","name":"Todmorden","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5534,50.4403,0.0]},"properties":{"id":"353948","name":"Torbay","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5035,57.5447,19.0]},"properties":{"id":"353954","name":"Torridon Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0619,51.605,11.0]},"properties":{"id":"353961","name":"Tottenham Hotspur F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1221,50.1039,48.0]},"properties":{"id":"353969","name":"Trebah Garden","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0326,50.2138,19.0]},"properties":{"id":"353975","name":"Trelissick Garden","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7227,51.7412,213.0]},"properties":{"id":"353976","name":"Trelleck","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4233,56.8832,850.0]},"properties":{"id":"351603","name":"Glenshee Ski Centre","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5549,55.0766,80.0]},"properties":{"id":"351605","name":"Glentrool Mountain Bike Centre","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9446,53.4423,147.0]},"properties":{"id":"351607","name":"Glossop","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8691,57.5788,131.0]},"properties":{"id":"351643","name":"Grange Crossroads","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1386,54.4909,87.0]},"properties":{"id":"351656","name":"Great Ayton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3475,51.2836,114.0]},"properties":{"id":"351659","name":"Great Comp Garden","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0238,53.4917,11.0]},"properties":{"id":"351660","name":"Great Crosby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5918,50.9978,40.0]},"properties":{"id":"351661","name":"Great Dixter","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.734,52.6138,2.0]},"properties":{"id":"351674","name":"Great Yarmouth Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.565,52.0154,51.0]},"properties":{"id":"351675","name":"Great Yeldham","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0805,53.5447,232.0]},"properties":{"id":"351678","name":"Greenacres","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0479,54.5361,95.0]},"properties":{"id":"351699","name":"Guisborough","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8256,56.0364,30.0]},"properties":{"id":"351702","name":"Gullane","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8028,53.1298,138.0]},"properties":{"id":"351710","name":"Gwydyr Cycle Trail","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8093,52.5233,100.0]},"properties":{"id":"354000","name":"Tyburn","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5837,57.5458,null]},"properties":{"id":"354024","name":"Upper Loch Torridon","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7362,51.6886,185.0]},"properties":{"id":"354042","name":"Veddw House Garden Devauden","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2973,53.6202,125.0]},"properties":{"id":"354065","name":"Walmersley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4425,52.4248,78.0]},"properties":{"id":"354069","name":"Walsgrave On Sowe","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8403,51.0574,20.0]},"properties":{"id":"354083","name":"Warehorne","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9952,52.4707,206.0]},"properties":{"id":"354087","name":"Warley","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1813,53.4984,41.0]},"properties":{"id":"354090","name":"Warmsworth","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.115,52.3144,126.0]},"properties":{"id":"354102","name":"Watford (Northamptonshire)","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3403,53.5013,40.0]},"properties":{"id":"354104","name":"Wath Upon Dearne","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5912,51.8547,24.0]},"properties":{"id":"354116","name":"Welsh Bicknor Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1844,52.6047,130.0]},"properties":{"id":"354126","name":"Wergs","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7734,50.9051,49.0]},"properties":{"id":"354130","name":"West Dean Gardens","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4785,53.8,34.0]},"properties":{"id":"351738","name":"Halton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4594,54.9721,127.0]},"properties":{"id":"351739","name":"Haltwhistle","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.159,50.3997,31.0]},"properties":{"id":"351740","name":"Ham","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.937,52.5366,113.0]},"properties":{"id":"351749","name":"Hamstead","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.96,52.457,159.0]},"properties":{"id":"351754","name":"Harborne","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0668,52.4519,143.0]},"properties":{"id":"351777","name":"Hasbury","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.209,51.8128,82.0]},"properties":{"id":"351783","name":"Hatfield Heath","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.027,53.1834,63.0]},"properties":{"id":"351793","name":"Hawarden","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2062,54.2998,271.0]},"properties":{"id":"351795","name":"Hawes Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6645,53.4669,47.0]},"properties":{"id":"351801","name":"Haydock","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6223,53.4787,42.0]},"properties":{"id":"351802","name":"Haydock Park Racecourse","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1048,50.9985,74.0]},"properties":{"id":"351808","name":"Haywards Heath","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1105,53.376,86.0]},"properties":{"id":"351809","name":"Hazel Grove","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5802,53.8153,70.0]},"properties":{"id":"351812","name":"Headingley Yorkshire C.C.C.","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1031,52.5919,141.0]},"properties":{"id":"351820","name":"Heath Town","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0496,52.202,230.0]},"properties":{"id":"351855","name":"Hergest Croft Gardens","nationalPark":null,"region":"wm","unitaryAuthArea":"Herefordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1295,51.3704,3.0]},"properties":{"id":"351856","name":"Herne Bay","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3219,53.4252,69.0]},"properties":{"id":"351858","name":"Herringthorpe","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1069,53.583,203.0]},"properties":{"id":"351877","name":"High Crompton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8845,50.8316,20.0]},"properties":{"id":"351882","name":"Highbury Garden (West Moors)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2511,53.4219,24.0]},"properties":{"id":"354132","name":"West Didsbury","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0397,51.5313,3.0]},"properties":{"id":"354137","name":"West Ham United F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1844,51.2562,78.0]},"properties":{"id":"354152","name":"Westbury (Wiltshire)","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6185,51.492,33.0]},"properties":{"id":"354154","name":"Westbury On Trym","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0742,51.2655,109.0]},"properties":{"id":"354155","name":"Westerham","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7108,54.9961,122.0]},"properties":{"id":"354156","name":"Westerhope","nationalPark":null,"region":"ne","unitaryAuthArea":"Newcastle upon Tyne"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5245,53.5487,100.0]},"properties":{"id":"354159","name":"Westhoughton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3833,53.9268,18.0]},"properties":{"id":"354168","name":"Wetherby","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3158,53.7303,40.0]},"properties":{"id":"354178","name":"Wheldale","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6138,53.5561,63.0]},"properties":{"id":"354179","name":"Whelley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4136,54.7347,61.0]},"properties":{"id":"354200","name":"Whithorn","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1252,52.5592,4.0]},"properties":{"id":"354209","name":"Whittlesey","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3414,51.3324,166.0]},"properties":{"id":"354210","name":"Whitway","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2002,52.5869,120.0]},"properties":{"id":"354223","name":"Wightwick Manor","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1598,54.8254,30.0]},"properties":{"id":"354225","name":"Wigton","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.673,52.53,208.0]},"properties":{"id":"354228","name":"Wilderhope Manor Youth Hostel","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0562,52.5847,136.0]},"properties":{"id":"354232","name":"Willenhall (Nr Walsall)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7857,54.0492,55.0]},"properties":{"id":"354233","name":"Williamson Park Lancaster","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2995,51.0591,76.0]},"properties":{"id":"354246","name":"Winchester Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4222,53.417,122.0]},"properties":{"id":"354247","name":"Wincobank","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6414,51.4889,20.0]},"properties":{"id":"354251","name":"Windsor Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"Windsor and Maidenhead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6297,51.4864,21.0]},"properties":{"id":"354252","name":"Windsor Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Windsor and Maidenhead"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9079,53.0587,247.0]},"properties":{"id":"354253","name":"Winkhill","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2005,50.7819,181.0]},"properties":{"id":"354257","name":"Winsford Walled Garden (Halwill Junction)","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2616,50.8388,132.0]},"properties":{"id":"354259","name":"Winterborne Houghton","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5692,53.0825,148.0]},"properties":{"id":"354263","name":"Wirksworth","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6389,51.7974,17.0]},"properties":{"id":"354266","name":"Witham","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.967,51.8576,15.0]},"properties":{"id":"354275","name":"Wivenhoe","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5068,53.4077,107.0]},"properties":{"id":"351900","name":"Hillsborough (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2765,53.5205,75.0]},"properties":{"id":"351902","name":"Hilton Park","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2818,51.9488,70.0]},"properties":{"id":"351907","name":"Hitchin","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5806,52.8506,98.0]},"properties":{"id":"351909","name":"Hodnet Hall Gardens","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8061,52.9522,8.0]},"properties":{"id":"351917","name":"Holkham Hall","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1998,51.502,24.0]},"properties":{"id":"351918","name":"Holland House Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6323,53.3582,null]},"properties":{"id":"351927","name":"Holyhead Bay","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1265,50.3797,57.0]},"properties":{"id":"351929","name":"Holywell Bay Fun Park","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1945,54.51,377.0]},"properties":{"id":"351932","name":"Honister Hause Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6052,52.9423,116.0]},"properties":{"id":"351994","name":"Ightfield","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3055,52.9698,95.0]},"properties":{"id":"351998","name":"Ilkeston","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6181,53.5362,38.0]},"properties":{"id":"352002","name":"Ince-In-Makerfield","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1599,55.9218,56.0]},"properties":{"id":"352003","name":"Inch","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4086,53.3595,163.0]},"properties":{"id":"352009","name":"Intake","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0777,56.2307,17.0]},"properties":{"id":"352012","name":"Inveraray Youth Hostel","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3974,56.0301,31.0]},"properties":{"id":"352018","name":"Inverkeithing","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2294,57.4709,2.0]},"properties":{"id":"352021","name":"Inverness Millburn Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3724,57.2836,58.0]},"properties":{"id":"352022","name":"Inverurie","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1166,53.3522,80.0]},"properties":{"id":"352024","name":"Irby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2139,52.9517,48.0]},"properties":{"id":"354278","name":"Wollaton","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1082,51.6001,32.0]},"properties":{"id":"354286","name":"Wood Green","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9009,51.541,122.0]},"properties":{"id":"354313","name":"Wootton Bassett","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7231,52.0313,70.0]},"properties":{"id":"354321","name":"Woughton On The Green","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3492,52.5532,41.0]},"properties":{"id":"354333","name":"Wyken (Shropshire)","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5599,51.8034,298.0]},"properties":{"id":"354358","name":"Ystradfellte Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.178,51.56,137.0]},"properties":{"id":"99139","name":"Hampstead","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.421,54.273,110.0]},"properties":{"id":"99142","name":"Scarborough","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3765,56.1331,135.0]},"properties":{"id":"352062","name":"Kelty","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4032,52.6364,105.0]},"properties":{"id":"352065","name":"Kemberton","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1348,54.6023,81.0]},"properties":{"id":"352080","name":"Keswick Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.108,53.7093,7.0]},"properties":{"id":"352082","name":"Keyingham","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.289,51.823,64.0]},"properties":{"id":"352086","name":"Kidlington","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3063,51.7359,7.0]},"properties":{"id":"352089","name":"Kidwelly","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9128,57.2303,312.0]},"properties":{"id":"352094","name":"Kildrummy Castle Gardens","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5155,55.6055,30.0]},"properties":{"id":"352103","name":"Kilmarnock F.C.","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1729,56.0713,37.0]},"properties":{"id":"352113","name":"Kinghorn","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3989,52.7511,5.0]},"properties":{"id":"352116","name":"King's Lynn Youth Hostel","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9851,53.0199,192.0]},"properties":{"id":"352121","name":"Kingsley","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0531,57.0815,240.0]},"properties":{"id":"352130","name":"Kingussie","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9625,56.7133,6.0]},"properties":{"id":"352132","name":"Kinlochleven","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3339,54.9992,30.0]},"properties":{"id":"352133","name":"Kinmount Gardens","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8896,53.481,22.0]},"properties":{"id":"352143","name":"Kirkby","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6067,54.9144,55.0]},"properties":{"id":"352150","name":"Kirkcowan","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5953,53.8156,68.0]},"properties":{"id":"352155","name":"Kirkstall","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1171,52.6025,68.0]},"properties":{"id":"352170","name":"Knighton (Leicester)","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4985,56.1255,232.0]},"properties":{"id":"352175","name":"Knockhill Motor Racing Circuit","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4374,58.4913,null]},"properties":{"id":"352185","name":"Kyle Of Tongue","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3168,55.4454,801.0]},"properties":{"id":"371544","name":"Lochcraig Head","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2403,58.1495,5.0]},"properties":{"id":"371545","name":"Lochinver","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8082,53.349,517.0]},"properties":{"id":"371552","name":"Mam Tor","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.26151,51.10244,85.0]},"properties":{"id":"371554","name":"Martyr Worthy","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3829,55.0501,657.0]},"properties":{"id":"371565","name":"Millfore","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9989,52.984,770.0]},"properties":{"id":"371568","name":"Moelwyn Mawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0141,53.6149,466.0]},"properties":{"id":"371572","name":"Moss Moor","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.2038,54.6742,542.0]},"properties":{"id":"371575","name":"Mullaghcarn","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.1767,54.7982,577.0]},"properties":{"id":"371577","name":"Mullaghclogher","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.76541,53.85361,14.0]},"properties":{"id":"371579","name":"Myerscough","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1537,51.9439,663.0]},"properties":{"id":"371581","name":"Mynydd Llysiau","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2692,54.4499,662.0]},"properties":{"id":"371585","name":"Nine Standards Rigg","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.153,51.9112,720.0]},"properties":{"id":"371591","name":"Pen Allt-Mawr","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7654,52.3782,610.0]},"properties":{"id":"371595","name":"Pen Y Garn","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1241,54.4227,672.0]},"properties":{"id":"371613","name":"Rogan's Seat","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9928,54.4739,615.0]},"properties":{"id":"371618","name":"Rydal Fell","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.65074,50.29223,32.0]},"properties":{"id":"371634","name":"Slapton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.9174,54.7736,488.0]},"properties":{"id":"371643","name":"Slieveavaddy","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.99046,58.56132,68.0]},"properties":{"id":"371653","name":"Strathy East","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1201,54.3705,803.0]},"properties":{"id":"371661","name":"The Old Man Of Coniston","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8684,53.3849,636.0]},"properties":{"id":"371662","name":"The Peak","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2573,54.7034,651.0]},"properties":{"id":"371664","name":"Three Pikes","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6618,55.5917,710.0]},"properties":{"id":"371665","name":"Tinto","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.4545,54.7512,18.0]},"properties":{"id":"371666","name":"Toome Bridge","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9963,53.1147,917.0]},"properties":{"id":"371668","name":"Tryfan","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.47594,50.59468,33.0]},"properties":{"id":"371679","name":"Weymouth, Wyke Regis","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.8453,54.8611,536.0]},"properties":{"id":"371682","name":"White Mountain","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0031,55.9025,785.0]},"properties":{"id":"371345","name":"Beinn An Oir","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2593,54.3446,400.0]},"properties":{"id":"371353","name":"Black Hambleton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5873,55.87207,131.0]},"properties":{"id":"371358","name":"Blackburn S Wks","nationalPark":null,"region":"dg","unitaryAuthArea":"West Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7193,53.3621,462.0]},"properties":{"id":"371688","name":"Win Hill","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2949,55.3422,665.0]},"properties":{"id":"371689","name":"Wind Fell","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0094,50.6931,619.0]},"properties":{"id":"371695","name":"Yes Tor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2282,55.6499,859.0]},"properties":{"id":"371378","name":"Caisteal Abhail","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.9124,54.1643,655.0]},"properties":{"id":"371395","name":"Chimney Rock","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3434,55.2147,623.0]},"properties":{"id":"371407","name":"Coran Of Portmark","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9318,50.7065,550.0]},"properties":{"id":"371411","name":"Cosdon Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2009,54.5271,753.0]},"properties":{"id":"371424","name":"Dale Head","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.0608,54.8112,619.0]},"properties":{"id":"371425","name":"Dart Mountain","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2442,54.2565,668.0]},"properties":{"id":"371428","name":"Dodd Fell","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0098,54.5086,858.0]},"properties":{"id":"371430","name":"Dollywagon Pike","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3486,55.5671,668.0]},"properties":{"id":"371434","name":"Drumelzier Law","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.182,54.4619,756.0]},"properties":{"id":"371448","name":"Esk Hause","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.962,53.1738,976.0]},"properties":{"id":"371463","name":"Foel Grach","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.952,53.1939,942.0]},"properties":{"id":"371464","name":"Foel-Fras","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6474,55.292,668.0]},"properties":{"id":"371468","name":"Gana Hill","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9965,50.6549,568.0]},"properties":{"id":"371484","name":"Great Kneeset","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3247,54.2795,672.0]},"properties":{"id":"371485","name":"Great Knoutberry Hill","nationalPark":null,"region":"nw","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.233,54.3707,716.0]},"properties":{"id":"371488","name":"Great Shunner Fell","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3781,51.41194,12.0]},"properties":{"id":"371494","name":"Hampton W Wks","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9568,50.6578,603.0]},"properties":{"id":"371495","name":"Hangingstone Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6571,53.3642,458.0]},"properties":{"id":"371505","name":"High Neb","nationalPark":null,"region":"em","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8127,51.1644,486.0]},"properties":{"id":"371515","name":"Hoaroak Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.6331,54.4748,97.0]},"properties":{"id":"371523","name":"Invinestown","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2678,50.0376,0.0]},"properties":{"id":"354558","name":"Lizard Church Cove (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4396,50.3594,0.0]},"properties":{"id":"354572","name":"Millendreath (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5135,50.5062,0.0]},"properties":{"id":"354605","name":"Torbay - Maidencombe (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8223,50.7217,0.0]},"properties":{"id":"354615","name":"Seatown (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7771,50.7142,0.0]},"properties":{"id":"354616","name":"Eypemouth (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.274,50.622,0.0]},"properties":{"id":"354624","name":"Durdle Door - East (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9578,50.6126,0.0]},"properties":{"id":"354626","name":"Swanage - Central (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8906,50.7125,0.0]},"properties":{"id":"354637","name":"Bournemouth - Alum Chine (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Bournemouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3079,50.7672,0.0]},"properties":{"id":"354649","name":"Cowes (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2084,50.5931,0.0]},"properties":{"id":"354656","name":"Ventnor (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7375,50.7675,0.0]},"properties":{"id":"354672","name":"Pagham (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3832,50.8223,0.0]},"properties":{"id":"354686","name":"Normans Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5534,50.8505,0.0]},"properties":{"id":"354688","name":"St. Leonards (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.387,51.1493,0.0]},"properties":{"id":"354696","name":"St Margarets Bay (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9174,51.4024,0.0]},"properties":{"id":"354702","name":"Leysdown-On-Sea (Beach)","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.1756,51.7949,0.0]},"properties":{"id":"354715","name":"Clacton (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.354,51.9603,0.0]},"properties":{"id":"354721","name":"Felixstowe - North (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7438,52.6292,0.0]},"properties":{"id":"354726","name":"Great Yarmouth North (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3002,52.9328,0.0]},"properties":{"id":"354729","name":"Cromer (Beach)","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3257,53.2597,0.0]},"properties":{"id":"354737","name":"Anderby (Beach)","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0339,54.6048,0.0]},"properties":{"id":"354755","name":"Redcar - Stray (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1838,54.658,0.0]},"properties":{"id":"354758","name":"Seaton Carew - North Gare (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Hartlepool"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.378,54.9778,0.0]},"properties":{"id":"354761","name":"Marsden (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"South Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4199,55.019,0.0]},"properties":{"id":"354763","name":"Tynemouth - King Edwards Bay (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4293,55.0297,0.0]},"properties":{"id":"354765","name":"Tynemouth - Long Sands North (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7036,55.6109,0.0]},"properties":{"id":"354776","name":"Bamburgh Castle (Beach)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2122,53.3176,0.0]},"properties":{"id":"354795","name":"Benllech (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5605,53.3593,0.0]},"properties":{"id":"354800","name":"Porth Trwyn (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6508,53.2878,0.0]},"properties":{"id":"354802","name":"Porth Dafarch (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Isle of Anglesey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1665,52.9063,0.0]},"properties":{"id":"354813","name":"Morfa Bychan (Craig Du) (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4703,52.1619,0.0]},"properties":{"id":"354822","name":"Cilborth (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5473,52.1349,0.0]},"properties":{"id":"354824","name":"Aberporth (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9897,52.0008,0.0]},"properties":{"id":"354828","name":"Goodwick Sands (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0305,49.1955,0.0]},"properties":{"id":"354388","name":"Archirondel (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1951,49.1846,0.0]},"properties":{"id":"354393","name":"St Brelade's Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2396,49.2335,0.0]},"properties":{"id":"354395","name":"St. Ouens Bay - Watersplash (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Jersey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3554,58.6029,0.0]},"properties":{"id":"354402","name":"Dunnet Bay - Murkle Bay/Dunnet (Beach)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3363,59.9702,0.0]},"properties":{"id":"354409","name":"St Ninians Isle (Beach)","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2947,59.8753,0.0]},"properties":{"id":"354410","name":"West Voe Sands (Beach)","nationalPark":null,"region":"os","unitaryAuthArea":"Shetland Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5244,55.2238,0.0]},"properties":{"id":"354428","name":"Portrush - Curran (East) Strand (Beach)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9345,57.3477,0.0]},"properties":{"id":"354443","name":"Collieston (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9548,57.6766,0.0]},"properties":{"id":"354445","name":"Fraserburgh (Beach)","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8095,56.3927,0.0]},"properties":{"id":"354452","name":"Tentsmuir (Beach)","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7798,56.0639,0.0]},"properties":{"id":"354459","name":"Broadsands (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6103,56.0348,0.0]},"properties":{"id":"354461","name":"Peffersands (Beach)","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6848,51.476,0.0]},"properties":{"id":"354470","name":"Porthcawl - Trecco Bay (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6985,51.6739,0.0]},"properties":{"id":"354484","name":"Tenby - North (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5546,50.8316,0.0]},"properties":{"id":"354522","name":"Bude - Summerleaze (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5595,50.7914,0.0]},"properties":{"id":"354523","name":"Widemouth Sand (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6366,50.7422,0.0]},"properties":{"id":"354524","name":"Crackington Haven (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7614,50.6447,0.0]},"properties":{"id":"354525","name":"Trebarwith Strand (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9208,50.5603,0.0]},"properties":{"id":"354526","name":"Daymer Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.024,50.5262,0.0]},"properties":{"id":"354531","name":"Treyarnon Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0426,50.4467,0.0]},"properties":{"id":"354533","name":"Watergate Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0647,50.4219,0.0]},"properties":{"id":"354534","name":"Lusty Glaze (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1455,50.3916,0.0]},"properties":{"id":"354539","name":"Holywell Bay (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2418,50.2873,0.0]},"properties":{"id":"354542","name":"Porthtowan (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6937,50.0814,0.0]},"properties":{"id":"354548","name":"Sennen Cove (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5181,50.1263,0.0]},"properties":{"id":"354550","name":"Mounts Bay - Penzance (Beach)","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8257,53.28,6.0]},"properties":{"id":"354848","name":"Conwy Castle","nationalPark":null,"region":"wl","unitaryAuthArea":"Conwy"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0875,51.773,311.0]},"properties":{"id":"354852","name":"Blaenavon Ironworks Heritage Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Torfaen"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0792,51.6757,16.0]},"properties":{"id":"354862","name":"Angle","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0383,51.2064,16.0]},"properties":{"id":"354866","name":"Combe Martin","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2298,57.0406,266.0]},"properties":{"id":"354873","name":"Balmoral Castle","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4644,51.92,201.0]},"properties":{"id":"354876","name":"Brecon Beacons Visitor Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.214,55.4167,483.0]},"properties":{"id":"354885","name":"Windy Gyle","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2448,54.6702,63.0]},"properties":{"id":"354914","name":"Lakeside","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2014,54.6062,199.0]},"properties":{"id":"354917","name":"Whinlatter Visitor Centre","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1822,54.4991,129.0]},"properties":{"id":"354918","name":"Seathwaite","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0851,54.3362,477.0]},"properties":{"id":"354925","name":"Askrigg Common","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2922,54.1446,228.0]},"properties":{"id":"354938","name":"Horton In Ribblesdale","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6799,54.3339,270.0]},"properties":{"id":"354951","name":"The Hole Of Horcum","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0621,54.2469,59.0]},"properties":{"id":"354955","name":"Helmsley","nationalPark":null,"region":"he","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9992,50.6308,572.0]},"properties":{"id":"354962","name":"Fur Tor","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0523,50.5573,294.0]},"properties":{"id":"354965","name":"Merrivale","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.758,50.6131,247.0]},"properties":{"id":"354968","name":"Manaton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6925,50.6456,237.0]},"properties":{"id":"354974","name":"Kennick Reservoir","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6572,50.9257,178.0]},"properties":{"id":"354997","name":"Littleton Down","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.0618,54.1747,334.0]},"properties":{"id":"355001","name":"Spelga Dam","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7857,53.06934,205.0]},"properties":{"id":"355003","name":"Dovedale","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.966,57.819,4.0]},"properties":{"id":"3062","name":"Tain Range","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.827,57.206,228.0]},"properties":{"id":"3063","name":"Aviemore","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.642,57.116,1245.0]},"properties":{"id":"3065","name":"Cairn Gorm Summit","nationalPark":null,"region":"he","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.322,57.712,6.0]},"properties":{"id":"3068","name":"Lossiemouth","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.226,55.601,221.0]},"properties":{"id":"3139","name":"Saughall","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.684,54.501,255.0]},"properties":{"id":"3225","name":"Shap","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.45,54.684,847.0]},"properties":{"id":"3227","name":"Great Dun Fell 2","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.865,53.811,262.0]},"properties":{"id":"3344","name":"Bingley Samos","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.25,53.005,117.0]},"properties":{"id":"3354","name":"Watnall","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8092,54.9375,50.0]},"properties":{"id":"14","name":"Carlisle Airport","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.636,57.859,11.0]},"properties":{"id":"3034","name":"Aultbea","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.183,53.6,110.0]},"properties":{"id":"99063","name":"Rochdale","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.467,51.317,38.0]},"properties":{"id":"99080","name":"Wisley","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.689,52.48,96.0]},"properties":{"id":"3535","name":"Coleshill","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.464,52.225,85.0]},"properties":{"id":"3560","name":"Bedford","nationalPark":null,"region":"ee","unitaryAuthArea":"Bedford"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.09,51.303,170.0]},"properties":{"id":"3781","name":"Kenley","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.297,50.577,16.0]},"properties":{"id":"3866","name":"St Catherines Pt.","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.65,54.4,47.0]},"properties":{"id":"3903","name":"St Angelo","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.655,55.208,8.0]},"properties":{"id":"3914","name":"Portrush","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.065,51.153,11.0]},"properties":{"id":"301168","name":"Cannington","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2505,55.8643,23.0]},"properties":{"id":"310009","name":"Glasgow","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0921,51.2621,85.0]},"properties":{"id":"310025","name":"Basingstoke","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0541,53.8211,12.0]},"properties":{"id":"310030","name":"Blackpool","nationalPark":null,"region":"nw","unitaryAuthArea":"Blackpool"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1269,53.5226,16.0]},"properties":{"id":"310059","name":"Doncaster","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3179,51.1259,2.0]},"properties":{"id":"310061","name":"Dover","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9692,56.4621,10.0]},"properties":{"id":"310063","name":"Dundee","nationalPark":null,"region":"ta","unitaryAuthArea":"Dundee"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5699,51.2362,51.0]},"properties":{"id":"310080","name":"Guildford","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4975,55.6147,49.0]},"properties":{"id":"310097","name":"Kilmarnock","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4639,52.5201,81.0]},"properties":{"id":"310116","name":"Nuneaton","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9424,51.621,10.0]},"properties":{"id":"310149","name":"Swansea","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2651,51.1338,113.0]},"properties":{"id":"310154","name":"Tunbridge Wells","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0789,53.9621,11.0]},"properties":{"id":"310169","name":"York","nationalPark":null,"region":"yh","unitaryAuthArea":"York"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.006,57.6935,14.0]},"properties":{"id":"310197","name":"Fraserburgh","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9658,57.6776,20.0]},"properties":{"id":"322071","name":"Buckie","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4024,52.1496,125.0]},"properties":{"id":"322073","name":"Builth Wells","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0806,51.2797,8.0]},"properties":{"id":"322089","name":"Canterbury","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.05,50.2627,3.0]},"properties":{"id":"322880","name":"Truro","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2543,54.101,5.0]},"properties":{"id":"322937","name":"Warrenpoint","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6433,51.2089,44.0]},"properties":{"id":"322942","name":"Wells","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4294,56.3951,3.0]},"properties":{"id":"310219","name":"Perth","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3275,53.7052,228.0]},"properties":{"id":"322278","name":"Haslingden","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1715,57.6883,2.0]},"properties":{"id":"322319","name":"Invergordon","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6057,51.6751,150.0]},"properties":{"id":"324161","name":"Amersham","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1634,52.2571,143.0]},"properties":{"id":"324175","name":"Daventry","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.104,56.8199,7.0]},"properties":{"id":"324186","name":"Fort William","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9014,51.5353,35.0]},"properties":{"id":"324193","name":"Henley On Thames","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3241,51.2916,54.0]},"properties":{"id":"324199","name":"Leatherhead","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.92,52.4754,77.0]},"properties":{"id":"324205","name":"Market Harborough","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7256,51.4196,124.0]},"properties":{"id":"324206","name":"Marlborough","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7251,52.6692,103.0]},"properties":{"id":"324210","name":"Oakham","nationalPark":null,"region":"em","unitaryAuthArea":"Rutland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3575,53.4294,24.0]},"properties":{"id":"324217","name":"Rotherham","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6209,51.9878,120.0]},"properties":{"id":"324238","name":"Woburn","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4328,52.0869,72.0]},"properties":{"id":"324253","name":"Haverhill","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3095,53.1145,71.0]},"properties":{"id":"324254","name":"Ruthin","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.408,53.0,18.0]},"properties":{"id":"324278","name":"Sleaford","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4954,50.5465,7.0]},"properties":{"id":"322848","name":"Teignmouth","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9255,55.368,138.0]},"properties":{"id":"324066","name":"Sanquhar","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1056,51.0149,16.0]},"properties":{"id":"324072","name":"Taunton","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4646,56.707,1.0]},"properties":{"id":"322537","name":"Montrose","nationalPark":null,"region":"ta","unitaryAuthArea":"Angus"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.25,53.31,4.0]},"properties":{"id":"322543","name":"Mostyn","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.48,55.94,207.0]},"properties":{"id":"322595","name":"Old Kilpatrick","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.3043,54.6003,81.0]},"properties":{"id":"322597","name":"Omagh","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7829,51.5943,7.0]},"properties":{"id":"322661","name":"Port Talbot","nationalPark":null,"region":"wl","unitaryAuthArea":"Neath Port Talbot"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.021,51.695,20.0]},"properties":{"id":"324378","name":"Lee Valley White Water Centre","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4527,50.571,3.0]},"properties":{"id":"324379","name":"Weymouth And Portland","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.017,51.542,21.0]},"properties":{"id":"99204","name":"London Olympic Park North","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8807,52.8177,110.0]},"properties":{"id":"350005","name":"Abbots Bromley","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1328,57.6926,999.0]},"properties":{"id":"350024","name":"A'Chailleach (Fannaich Region)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8569,52.4583,112.0]},"properties":{"id":"350030","name":"Ackers Trust Ski Centre","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.5524,52.6379,4.0]},"properties":{"id":"350031","name":"Acle","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.6022,52.1549,12.0]},"properties":{"id":"350050","name":"Aldeburgh","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2137,49.7092,70.0]},"properties":{"id":"350054","name":"Alderney Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.353,51.9613,20.0]},"properties":{"id":"310195","name":"Felixstowe","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7047,55.4127,63.0]},"properties":{"id":"324048","name":"Alnwick","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1433,52.7868,1.0]},"properties":{"id":"324070","name":"Spalding","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.35,51.8,128.0]},"properties":{"id":"99058","name":"Rothamsted No2","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.13288,52.93991,25.0]},"properties":{"id":"354364","name":"Nottingham Forest F.C.","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.47681,56.40991,25.0]},"properties":{"id":"354369","name":"St Johnstone F.C.","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6246,55.0702,20.0]},"properties":{"id":"354371","name":"Queen Of The South F.C.","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3265,50.8277,8.0]},"properties":{"id":"352202","name":"Lancing","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0126,51.0597,27.0]},"properties":{"id":"352203","name":"Landkey","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1981,54.6671,438.0]},"properties":{"id":"352210","name":"Langdon Beck Youth Hostel","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.866,55.7934,6.0]},"properties":{"id":"352221","name":"Largs","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7251,53.4665,7.0]},"properties":{"id":"352225","name":"Laughton","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7916,51.8206,30.0]},"properties":{"id":"352233","name":"Layer Marney Tower","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6906,51.6917,72.0]},"properties":{"id":"352238","name":"Lechlade-On-Thames","nationalPark":null,"region":"sw","unitaryAuthArea":"Swindon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2662,57.215,559.0]},"properties":{"id":"352239","name":"Lecht Ski Centre","nationalPark":null,"region":"gr","unitaryAuthArea":"Moray"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0681,53.5386,190.0]},"properties":{"id":"352246","name":"Lees","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6557,55.6827,190.0]},"properties":{"id":"352247","name":"Legerwood","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6941,53.6977,33.0]},"properties":{"id":"352278","name":"Leyland","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9164,52.4204,132.0]},"properties":{"id":"352281","name":"Lifford","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2816,50.6451,84.0]},"properties":{"id":"352282","name":"Lifton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.103,53.5101,127.0]},"properties":{"id":"352290","name":"Limehurst","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.531,53.2132,60.0]},"properties":{"id":"352291","name":"Lincoln Youth Hostel","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6014,55.974,72.0]},"properties":{"id":"352295","name":"Linlithgow","nationalPark":null,"region":"dg","unitaryAuthArea":"West Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4636,50.455,136.0]},"properties":{"id":"352301","name":"Liskeard","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2966,53.4211,134.0]},"properties":{"id":"352303","name":"Listerdale","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4227,53.5317,102.0]},"properties":{"id":"352309","name":"Little Hulton","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5454,51.0296,45.0]},"properties":{"id":"352312","name":"Little Weston","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4796,51.8122,144.0]},"properties":{"id":"352314","name":"Littledean Hall","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2341,51.4852,105.0]},"properties":{"id":"352320","name":"Living Rainforest","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2632,51.9286,156.0]},"properties":{"id":"352345","name":"Llangorse Lake","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4488,52.1661,102.0]},"properties":{"id":"352346","name":"Llangrannog Ski Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1546,52.0726,119.0]},"properties":{"id":"352356","name":"Llanybydder","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1744,52.6247,112.0]},"properties":{"id":"352358","name":"Llwynderw","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2065,57.911,null]},"properties":{"id":"352365","name":"Loch Broom","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6962,57.1684,327.0]},"properties":{"id":"352381","name":"Loch Morlich Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4404,55.1291,53.0]},"properties":{"id":"352398","name":"Lochmaben","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4686,53.4162,117.0]},"properties":{"id":"352431","name":"Longley","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2736,55.9206,70.0]},"properties":{"id":"352434","name":"Longstone","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9705,55.0092,12.0]},"properties":{"id":"352436","name":"Longtown","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9634,54.3462,121.0]},"properties":{"id":"352451","name":"Low Mill","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7467,52.3937,93.0]},"properties":{"id":"352458","name":"Ludlow Racecourse","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1161,52.4582,98.0]},"properties":{"id":"352473","name":"Lye","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0499,53.334,276.0]},"properties":{"id":"352474","name":"Lyme Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6448,55.023,39.0]},"properties":{"id":"352486","name":"Mabie Mountain Bike Trail Centre","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5837,55.3314,11.0]},"properties":{"id":"350084","name":"Amble","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7777,51.1745,80.0]},"properties":{"id":"350088","name":"Amesbury","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9476,57.6686,923.0]},"properties":{"id":"350096","name":"An Coileachan","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4882,54.5782,123.0]},"properties":{"id":"350122","name":"Appleby-In-Westmorland","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.5843,54.4417,18.0]},"properties":{"id":"350132","name":"Ardress House (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Armagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8418,54.1952,38.0]},"properties":{"id":"350149","name":"Arnside Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1033,51.5535,32.0]},"properties":{"id":"350150","name":"Arsenal F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.201,52.9725,58.0]},"properties":{"id":"350165","name":"Aspley","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.0173,52.5177,38.0]},"properties":{"id":"350174","name":"Attleborough","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6279,55.4585,10.0]},"properties":{"id":"350191","name":"Ayr","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6386,55.4554,3.0]},"properties":{"id":"350194","name":"Ayr Youth Hostel","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8923,52.0836,37.0]},"properties":{"id":"350200","name":"Badsey","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6967,51.3602,71.0]},"properties":{"id":"350202","name":"Bagshot","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0351,57.0501,197.0]},"properties":{"id":"350216","name":"Ballater","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.657,56.6555,144.0]},"properties":{"id":"350218","name":"Ballinluig","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2055,53.6105,142.0]},"properties":{"id":"350228","name":"Bamford","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2659,54.3518,55.0]},"properties":{"id":"350229","name":"Banbridge","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4894,57.054,71.0]},"properties":{"id":"350230","name":"Banchory","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3326,55.8865,162.0]},"properties":{"id":"352500","name":"Malleny House","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.29134,53.46306,27.0]},"properties":{"id":"352510","name":"Old Trafford","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1347,50.7876,40.0]},"properties":{"id":"352528","name":"Mapperton","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4821,52.9033,92.0]},"properties":{"id":"352535","name":"Market Drayton","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.349,59.099,0.0]},"properties":{"id":"352555","name":"Marwick","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3765,55.5159,145.0]},"properties":{"id":"352564","name":"Mauchline","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9664,52.5711,126.0]},"properties":{"id":"352566","name":"Maw Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.8026,52.1958,84.0]},"properties":{"id":"352571","name":"Maypole Green","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1219,56.6209,981.0]},"properties":{"id":"352590","name":"Meall Na Aighean","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9327,57.7986,977.0]},"properties":{"id":"352592","name":"Meall Nan Ceapraichean","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4075,58.2351,961.0]},"properties":{"id":"352593","name":"Meall Nan Con","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7057,55.5996,89.0]},"properties":{"id":"352606","name":"Melrose Youth Hostel","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1719,52.5745,124.0]},"properties":{"id":"352612","name":"Merry Hill","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2126,54.5777,2.0]},"properties":{"id":"352622","name":"Middlesbrough F.C.","nationalPark":null,"region":"ne","unitaryAuthArea":"Middlesbrough"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2138,53.4907,56.0]},"properties":{"id":"352632","name":"Miles Platting","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0416,51.7139,10.0]},"properties":{"id":"352633","name":"Milford Haven","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3778,50.9799,202.0]},"properties":{"id":"352635","name":"Milky Way Adventure Park Clovelly","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2659,53.4271,31.0]},"properties":{"id":"350247","name":"Barlow Moor","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1924,50.4037,25.0]},"properties":{"id":"350250","name":"Barne Barton","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6528,52.6832,128.0]},"properties":{"id":"350252","name":"Barnsdale Gardens (Oakham)","nationalPark":null,"region":"em","unitaryAuthArea":"Rutland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4038,50.9437,76.0]},"properties":{"id":"350263","name":"Bassett","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9292,50.7678,30.0]},"properties":{"id":"350277","name":"Bearwood","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.168,52.6703,88.0]},"properties":{"id":"350282","name":"Beaumont Leys","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4614,52.1339,24.0]},"properties":{"id":"350289","name":"Bedford","nationalPark":null,"region":"ee","unitaryAuthArea":"Bedford"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1985,51.5924,67.0]},"properties":{"id":"350295","name":"Bedwas","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.714,56.5286,1002.0]},"properties":{"id":"350312","name":"Beinn An Dothaidh","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9067,56.326,948.0]},"properties":{"id":"350316","name":"Beinn Bhuidhe","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6958,56.9363,915.0]},"properties":{"id":"350341","name":"Beinn Teallach","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2144,54.6561,71.0]},"properties":{"id":"350348","name":"Belfast International Airport","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0252,55.8168,74.0]},"properties":{"id":"350360","name":"Bellshill","nationalPark":null,"region":"st","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6194,56.4536,1022.0]},"properties":{"id":"350366","name":"Ben Challum","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2186,56.5467,1214.0]},"properties":{"id":"350370","name":"Ben Lawers","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8092,56.3969,1130.0]},"properties":{"id":"350372","name":"Ben Lui","nationalPark":null,"region":"st","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.773,56.3893,1028.0]},"properties":{"id":"350378","name":"Ben Oss","nationalPark":null,"region":"ta","unitaryAuthArea":"Stirling"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8192,53.6374,120.0]},"properties":{"id":"352645","name":"Milnsbridge","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0587,55.9315,20.0]},"properties":{"id":"352663","name":"Monktonhall","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7221,51.8184,33.0]},"properties":{"id":"352666","name":"Monmouth Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5299,53.8482,149.0]},"properties":{"id":"352669","name":"Moor Allerton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2763,55.8101,37.0]},"properties":{"id":"352711","name":"Muirend","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0679,56.7518,939.0]},"properties":{"id":"352721","name":"Mullach Nan Coirean","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4407,52.8799,0.0]},"properties":{"id":"352724","name":"Mundesley","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2537,55.9478,92.0]},"properties":{"id":"352725","name":"Murrayfield (Edinburgh)","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0389,55.9473,1.0]},"properties":{"id":"352730","name":"Musselburgh Racecourse","nationalPark":null,"region":"dg","unitaryAuthArea":"East Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9376,56.7446,1055.0]},"properties":{"id":"352734","name":"Na Gruagaichean","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2149,51.6935,74.0]},"properties":{"id":"352737","name":"Nailsworth","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7425,51.8,95.0]},"properties":{"id":"352740","name":"Narberth","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1403,51.8443,54.0]},"properties":{"id":"352741","name":"National Botanic Garden Of Wales","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7197,52.7271,50.0]},"properties":{"id":"352743","name":"National Memorial Arboretum Alrewas","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0436,53.2698,34.0]},"properties":{"id":"352750","name":"Ness Gardens (Liverpool Uni Botanic Gardens)","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0677,53.2903,24.0]},"properties":{"id":"352752","name":"Neston","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6526,57.2638,220.0]},"properties":{"id":"352756","name":"Nethy Bridge","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.972,56.8365,650.0]},"properties":{"id":"352757","name":"Nevis Range Ski Centre","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5124,55.1854,10.0]},"properties":{"id":"352782","name":"Newbiggin-By-The-Sea","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9971,52.5712,120.0]},"properties":{"id":"350402","name":"Bescot","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1332,52.0999,28.0]},"properties":{"id":"350403","name":"Besford","nationalPark":null,"region":"wm","unitaryAuthArea":"Worcestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4243,53.84,8.0]},"properties":{"id":"350409","name":"Beverley Friary Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8323,53.8472,84.0]},"properties":{"id":"350435","name":"Bingley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4319,51.8995,118.0]},"properties":{"id":"350452","name":"Biscot","nationalPark":null,"region":"ee","unitaryAuthArea":"Luton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2272,55.9042,63.0]},"properties":{"id":"350454","name":"Bishopbriggs","nationalPark":null,"region":"st","unitaryAuthArea":"East Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9459,51.3779,137.0]},"properties":{"id":"350455","name":"Bishops Cannings","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4335,52.2149,110.0]},"properties":{"id":"350457","name":"Bishop's Itchington","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0542,53.7909,5.0]},"properties":{"id":"350476","name":"Blackpool Pleasure Beach","nationalPark":null,"region":"nw","unitaryAuthArea":"Blackpool"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6099,50.3193,0.0]},"properties":{"id":"350477","name":"Blackpool Sands","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0729,52.5355,145.0]},"properties":{"id":"350495","name":"Bloomfield","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1574,52.9742,135.0]},"properties":{"id":"350500","name":"Blurton","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4358,53.3002,19.0]},"properties":{"id":"350503","name":"Bodrhyddan Hall","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3928,54.0961,14.0]},"properties":{"id":"350517","name":"Boroughbridge","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0586,52.4942,0.0]},"properties":{"id":"350520","name":"Borth (Beach)","nationalPark":null,"region":"wl","unitaryAuthArea":"Ceredigion"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5698,54.7606,56.0]},"properties":{"id":"350525","name":"Durham Botanic Garden","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8119,55.1793,96.0]},"properties":{"id":"352796","name":"Newcastleton","nationalPark":null,"region":"dg","unitaryAuthArea":"Scottish Borders"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8676,52.0342,null]},"properties":{"id":"352812","name":"Newport Bay","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.733,52.0842,59.0]},"properties":{"id":"352813","name":"Newport Pagnell","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8352,52.0172,23.0]},"properties":{"id":"352814","name":"Newport Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.065,53.4656,143.0]},"properties":{"id":"352820","name":"Newton (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6071,50.5284,13.0]},"properties":{"id":"352822","name":"Newton Abbot","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0944,52.6355,64.0]},"properties":{"id":"352847","name":"North Evington","nationalPark":null,"region":"em","unitaryAuthArea":"Leicester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4341,59.368,15.0]},"properties":{"id":"352850","name":"North Ronaldsay Airfield","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5169,53.2595,19.0]},"properties":{"id":"352865","name":"Northwich","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8511,53.1464,18.0]},"properties":{"id":"352874","name":"Norwell","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1567,50.6833,45.0]},"properties":{"id":"352881","name":"Nunwell","nationalPark":null,"region":"se","unitaryAuthArea":"Isle of Wight"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4698,56.4152,9.0]},"properties":{"id":"352889","name":"Oban","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0354,52.5398,124.0]},"properties":{"id":"352892","name":"Ocker Hill","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1776,52.9858,41.0]},"properties":{"id":"352897","name":"Old Basford","nationalPark":null,"region":"em","unitaryAuthArea":"Nottingham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3497,51.4883,24.0]},"properties":{"id":"352918","name":"Osterley Park","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4711,52.4798,26.0]},"properties":{"id":"352924","name":"Oundle","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0117,53.3593,27.0]},"properties":{"id":"352926","name":"Oval Ski Club","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7478,52.3468,123.0]},"properties":{"id":"352936","name":"Packwood House","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3769,52.7683,11.0]},"properties":{"id":"350533","name":"Bourne","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3625,53.3768,61.0]},"properties":{"id":"350538","name":"Bowdon","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1575,52.5786,130.0]},"properties":{"id":"350555","name":"Bradmore","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3993,53.6072,111.0]},"properties":{"id":"350556","name":"Bradshaw","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5073,53.3166,208.0]},"properties":{"id":"350557","name":"Bradway","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5526,51.8797,70.0]},"properties":{"id":"350563","name":"Braintree","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2413,52.9339,76.0]},"properties":{"id":"350564","name":"Bramcote","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.6242,52.4462,9.0]},"properties":{"id":"350570","name":"Brandon (Suffolk)","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9142,50.7167,27.0]},"properties":{"id":"350574","name":"Branksome Park","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8738,51.0945,178.0]},"properties":{"id":"350579","name":"Brayford","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9782,56.2963,77.0]},"properties":{"id":"350593","name":"Bridgend (Fife)","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0023,51.1274,11.0]},"properties":{"id":"350596","name":"Bridgwater","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4903,53.5516,3.0]},"properties":{"id":"350600","name":"Brigg","nationalPark":null,"region":"yh","unitaryAuthArea":"North Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1011,50.8319,109.0]},"properties":{"id":"350602","name":"Brighton Racecourse","nationalPark":null,"region":"se","unitaryAuthArea":"Brighton and Hove"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5934,51.4466,0.0]},"properties":{"id":"350613","name":"Bristol Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4338,51.3597,42.0]},"properties":{"id":"350625","name":"Broadstairs","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9907,50.7566,30.0]},"properties":{"id":"350627","name":"Broadstone","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1662,55.5934,27.0]},"properties":{"id":"350632","name":"Brodick Castle Garden","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.0148,51.4056,65.0]},"properties":{"id":"350635","name":"Bromley (Greater London)","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.4058,54.3141,74.0]},"properties":{"id":"350643","name":"Brookeborough","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3253,53.417,88.0]},"properties":{"id":"350645","name":"Broom","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8511,58.0124,1.0]},"properties":{"id":"350647","name":"Brora","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9264,52.5222,126.0]},"properties":{"id":"350655","name":"Brown's Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4663,55.9342,65.0]},"properties":{"id":"350656","name":"Broxburn","nationalPark":null,"region":"dg","unitaryAuthArea":"West Lothian"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.3306,52.277,45.0]},"properties":{"id":"350659","name":"Brundish","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0169,51.9458,90.0]},"properties":{"id":"350671","name":"Buntingford","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6353,51.8067,118.0]},"properties":{"id":"350673","name":"Burford","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2011,53.4279,48.0]},"properties":{"id":"350678","name":"Burnage","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.3864,51.1808,18.0]},"properties":{"id":"352938","name":"Paddock Wood","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3143,53.8019,89.0]},"properties":{"id":"352939","name":"Padiham","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.563,50.4346,3.0]},"properties":{"id":"352940","name":"Paignton","nationalPark":null,"region":"sw","unitaryAuthArea":"Torbay"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9075,54.0374,166.0]},"properties":{"id":"352949","name":"Parcevall Hall Gardens Appletreewick","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0868,53.5199,158.0]},"properties":{"id":"352951","name":"Park Bridge","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9283,54.5315,150.0]},"properties":{"id":"352965","name":"Patterdale Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1463,52.6682,2.0]},"properties":{"id":"352970","name":"Peckover House","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9701,52.631,147.0]},"properties":{"id":"352974","name":"Pelsall","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9426,51.6915,18.0]},"properties":{"id":"352978","name":"Pembroke Dock","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4375,51.8839,886.0]},"properties":{"id":"352979","name":"Pen Y Fan","nationalPark":null,"region":"wl","unitaryAuthArea":"Powys"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4971,51.5207,31.0]},"properties":{"id":"352982","name":"Pencoed","nationalPark":null,"region":"wl","unitaryAuthArea":"Bridgend"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.624,53.5259,214.0]},"properties":{"id":"352989","name":"Penistone","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1149,52.7248,82.0]},"properties":{"id":"352990","name":"Penkridge","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7312,51.7215,82.0]},"properties":{"id":"352996","name":"Pentlepoir Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1113,51.882,102.0]},"properties":{"id":"352998","name":"Penycwm Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0201,53.0822,394.0]},"properties":{"id":"353000","name":"Pen-Y-Pass Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.5147,50.1311,16.0]},"properties":{"id":"353001","name":"Penzance Heliport","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4736,54.9978,30.0]},"properties":{"id":"353004","name":"Percy Main","nationalPark":null,"region":"ne","unitaryAuthArea":"North Tyneside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.885,51.7857,44.0]},"properties":{"id":"353017","name":"Picton Castle Gardens","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.7216,56.7069,140.0]},"properties":{"id":"353024","name":"Pitlochry Youth Hostel","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7308,56.214,23.0]},"properties":{"id":"353027","name":"Pittenweem","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9448,51.6233,34.0]},"properties":{"id":"353029","name":"Plantasia Swansea","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7236,52.9224,99.0]},"properties":{"id":"353034","name":"Platt Lane","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1451,50.3873,33.0]},"properties":{"id":"353040","name":"Plymouth Argyle F.C.","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1592,50.38,52.0]},"properties":{"id":"353043","name":"Plymouth Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Plymouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7648,58.4497,7.0]},"properties":{"id":"353049","name":"Polla","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1723,51.7774,52.0]},"properties":{"id":"353061","name":"Pontyberem","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9127,50.672,null]},"properties":{"id":"353067","name":"Poole Bay","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.013,50.6961,null]},"properties":{"id":"353068","name":"Poole Harbour","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6412,53.5338,29.0]},"properties":{"id":"353069","name":"Poolstock","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7081,52.106,65.0]},"properties":{"id":"353070","name":"Poppit Sands Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1208,52.9794,96.0]},"properties":{"id":"353071","name":"Porchester","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7666,51.4847,9.0]},"properties":{"id":"353085","name":"Portishead","nationalPark":null,"region":"sw","unitaryAuthArea":"North Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7286,52.9449,8.0]},"properties":{"id":"350681","name":"Burnham Market","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9926,51.2397,4.0]},"properties":{"id":"350683","name":"Burnham-On-Sea","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2291,53.7912,120.0]},"properties":{"id":"350685","name":"Burnley F.C.","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1953,53.0454,150.0]},"properties":{"id":"350687","name":"Burslem","nationalPark":null,"region":"wm","unitaryAuthArea":"Stoke-on-Trent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2777,55.7786,90.0]},"properties":{"id":"350691","name":"Busby","nationalPark":null,"region":"st","unitaryAuthArea":"East Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8074,53.7673,280.0]},"properties":{"id":"350699","name":"Buttershaw","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9509,51.6107,11.0]},"properties":{"id":"350709","name":"Caerleon","nationalPark":null,"region":"wl","unitaryAuthArea":"Newport"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6749,57.1292,647.0]},"properties":{"id":"350714","name":"Cairn Gorm Base Station","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.7262,52.6483,8.0]},"properties":{"id":"350717","name":"Caister-On-Sea","nationalPark":null,"region":"ee","unitaryAuthArea":"Norfolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6958,52.0058,70.0]},"properties":{"id":"350719","name":"Caldecotte","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6531,56.2952,28.0]},"properties":{"id":"350728","name":"Cambo Estate","nationalPark":null,"region":"ta","unitaryAuthArea":"Fife"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1636,55.821,20.0]},"properties":{"id":"350733","name":"Cambuslang","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.7033,53.6424,44.0]},"properties":{"id":"350736","name":"Camelot Theme Park (Charnock Richard)","nationalPark":null,"region":"nw","unitaryAuthArea":"Lancashire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5531,53.8516,136.0]},"properties":{"id":"350737","name":"Camp Town","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7607,57.3423,58.0]},"properties":{"id":"350744","name":"Cannich Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2362,53.2538,94.0]},"properties":{"id":"350754","name":"Capesthorne Hall","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4242,57.9227,106.0]},"properties":{"id":"350756","name":"Carbisdale Trails","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2378,51.4925,35.0]},"properties":{"id":"350762","name":"Cardiff Ski Centre","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6889,55.1631,50.0]},"properties":{"id":"350767","name":"Carlisle Park (Morpeth)","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.9445,54.8978,10.0]},"properties":{"id":"350769","name":"Carlisle Snowsports Club","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8352,55.7354,200.0]},"properties":{"id":"350772","name":"Carluke","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8009,56.9384,994.0]},"properties":{"id":"350778","name":"Carn An Fhidhleir","nationalPark":null,"region":"ta","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5595,56.9296,946.0]},"properties":{"id":"350783","name":"Carn Bhac","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.7578,57.7332,38.0]},"properties":{"id":"350787","name":"Carn Dearg Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0661,57.1655,957.0]},"properties":{"id":"350789","name":"Carn Ghluasaid","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.742,56.8073,975.0]},"properties":{"id":"350792","name":"Carn Liath (Perth & Kinross)","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1761,56.9107,941.0]},"properties":{"id":"350795","name":"Carn Na Caim","nationalPark":null,"region":"he","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6862,56.8403,1121.0]},"properties":{"id":"350796","name":"Carn Nan Gabhar","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1747,57.125,920.0]},"properties":{"id":"350799","name":"Carn Sgulain","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1966,55.8609,37.0]},"properties":{"id":"350803","name":"Carntyne","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0581,56.0293,224.0]},"properties":{"id":"350810","name":"Carron Valley Mountain Bike Trails","nationalPark":null,"region":"ta","unitaryAuthArea":"North Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8875,54.5192,119.0]},"properties":{"id":"350811","name":"Carryduff","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.9792,54.4843,54.0]},"properties":{"id":"350816","name":"Castle Caldwell","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5118,51.0882,89.0]},"properties":{"id":"350817","name":"Castle Cary","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2058,51.4874,124.0]},"properties":{"id":"350818","name":"Castle Combe Motor Racing Circuit","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9301,54.9403,51.0]},"properties":{"id":"350820","name":"Castle Douglas","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0722,50.8443,8.0]},"properties":{"id":"353094","name":"Portsmouth Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7156,55.1836,12.0]},"properties":{"id":"353096","name":"Portstewart","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3892,50.927,20.0]},"properties":{"id":"353097","name":"Portswood","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8032,53.4284,76.0]},"properties":{"id":"353111","name":"Prescot","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2792,53.5268,76.0]},"properties":{"id":"353118","name":"Prestwich","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2225,51.1635,204.0]},"properties":{"id":"353132","name":"Quantock Hills Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8986,52.5538,154.0]},"properties":{"id":"353137","name":"Queslett","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5738,53.9837,136.0]},"properties":{"id":"353141","name":"R.H.S. Garden Harlow Carr Harrogate","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4719,51.3158,20.0]},"properties":{"id":"353144","name":"R.H.S. Garden Wisley","nationalPark":null,"region":"se","unitaryAuthArea":"Surrey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5173,52.4183,90.0]},"properties":{"id":"353147","name":"Radford","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4153,55.9147,40.0]},"properties":{"id":"353149","name":"Radnor Park","nationalPark":null,"region":"st","unitaryAuthArea":"West Dunbartonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.525,53.3716,197.0]},"properties":{"id":"353162","name":"Ranmoor","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.447,57.2222,10.0]},"properties":{"id":"353163","name":"Ratagan Youth Hostel","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.806,57.5826,null]},"properties":{"id":"353165","name":"Rattray Bay","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.965,54.7998,101.0]},"properties":{"id":"353166","name":"Raughton Head","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.71,50.9882,79.0]},"properties":{"id":"353188","name":"Redlynch","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1527,55.9616,27.0]},"properties":{"id":"353194","name":"Restalrig","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.776,52.7809,124.0]},"properties":{"id":"353200","name":"Rhydymain","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2841,51.7591,280.0]},"properties":{"id":"353201","name":"Rhymney","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7311,54.4033,89.0]},"properties":{"id":"353203","name":"Richmond (North Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.9933,52.3358,31.0]},"properties":{"id":"353206","name":"Rickinghall","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.49562,52.44811,94.0]},"properties":{"id":"353208","name":"City Of Coventry Stadium","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1933,55.8727,70.0]},"properties":{"id":"353209","name":"Riddrie","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.1086,54.2547,163.0]},"properties":{"id":"353211","name":"Rievaulx Terrace","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5748,54.0373,78.0]},"properties":{"id":"353215","name":"Ripley Castle Gardens","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4941,54.1192,18.0]},"properties":{"id":"353217","name":"Ripon Racecourse","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1926,52.8519,3.0]},"properties":{"id":"353219","name":"Risegate","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4793,51.4772,69.0]},"properties":{"id":"353231","name":"Rodway Hill","nationalPark":null,"region":"sw","unitaryAuthArea":"South Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.9477,54.907,32.0]},"properties":{"id":"350824","name":"Castle Kennedy Gardens","nationalPark":null,"region":"dg","unitaryAuthArea":"Dumfries and Galloway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.4856,56.9547,4.0]},"properties":{"id":"350826","name":"Castlebay","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.5909,54.7063,45.0]},"properties":{"id":"350827","name":"Castlederg","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4374,55.8364,30.0]},"properties":{"id":"350828","name":"Castlehead","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1712,53.5931,147.0]},"properties":{"id":"350830","name":"Castleton (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1984,55.8064,115.0]},"properties":{"id":"350839","name":"Cathkin","nationalPark":null,"region":"st","unitaryAuthArea":"South Lanarkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2233,50.8528,27.0]},"properties":{"id":"350840","name":"Catisfield","nationalPark":null,"region":"se","unitaryAuthArea":"Hampshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3465,51.519,177.0]},"properties":{"id":"350841","name":"Catmore","nationalPark":null,"region":"se","unitaryAuthArea":"West Berkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6501,54.385,62.0]},"properties":{"id":"350842","name":"Catterick Bridge Racecourse","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9148,57.5242,64.0]},"properties":{"id":"350845","name":"Cawdor Castle Grounds","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2067,55.8506,20.0]},"properties":{"id":"350847","name":"Celtic F.C.","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5528,51.6046,59.0]},"properties":{"id":"350852","name":"Chalfont St. Peter","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9003,50.2852,0.0]},"properties":{"id":"350853","name":"Challaborough","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5344,53.8296,115.0]},"properties":{"id":"350854","name":"Chapel Allerton","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6213,52.2067,37.0]},"properties":{"id":"350865","name":"Charlecote Park","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4196,55.8329,25.0]},"properties":{"id":"350866","name":"Charleston","nationalPark":null,"region":"st","unitaryAuthArea":"Renfrewshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.559,51.3532,95.0]},"properties":{"id":"350872","name":"Chatham Ski Centre","nationalPark":null,"region":"se","unitaryAuthArea":"Medway"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2127,53.3941,41.0]},"properties":{"id":"350875","name":"Cheadle (Greater Manchester)","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7205,52.4747,101.0]},"properties":{"id":"350880","name":"Chelmsley Wood","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1752,51.4847,4.0]},"properties":{"id":"350881","name":"Chelsea","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1918,51.4816,4.0]},"properties":{"id":"350882","name":"Chelsea F.C.","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6844,51.655,94.0]},"properties":{"id":"350885","name":"Chepstow Racecourse","nationalPark":null,"region":"wl","unitaryAuthArea":"Monmouthshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0269,51.6994,22.0]},"properties":{"id":"350889","name":"Cheshunt","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3221,51.3466,69.0]},"properties":{"id":"350890","name":"Chessington World Of Adventures","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8987,53.1846,1.0]},"properties":{"id":"350891","name":"Chester Racecourse","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.903,53.1798,20.0]},"properties":{"id":"350892","name":"Chester Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.682,52.1022,76.0]},"properties":{"id":"350895","name":"Chicheley","nationalPark":null,"region":"se","unitaryAuthArea":"Milton Keynes"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1418,51.1822,49.0]},"properties":{"id":"350897","name":"Chiddingstone Castle","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7769,52.054,147.0]},"properties":{"id":"350905","name":"Chipping Campden","nationalPark":null,"region":"sw","unitaryAuthArea":"Gloucestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5146,51.6552,106.0]},"properties":{"id":"350914","name":"Chorleywood","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2768,53.4446,26.0]},"properties":{"id":"350915","name":"Chorlton-Cum-Hardy","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7772,50.7353,2.0]},"properties":{"id":"350916","name":"Christchurch","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6,50.6064,68.0]},"properties":{"id":"350919","name":"Chudleigh","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.208,57.1989,982.0]},"properties":{"id":"350926","name":"Ciste Dhubh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.5832,52.0784,50.0]},"properties":{"id":"350933","name":"Clare","nationalPark":null,"region":"ee","unitaryAuthArea":"Suffolk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8168,53.7828,222.0]},"properties":{"id":"350941","name":"Clayton (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7484,51.3887,199.0]},"properties":{"id":"350948","name":"Clench Common","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.2895,55.9568,74.0]},"properties":{"id":"350949","name":"Clermiston","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3507,53.4307,42.0]},"properties":{"id":"350956","name":"Clifton (South Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6846,51.5568,59.0]},"properties":{"id":"350959","name":"Cliveden","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8288,56.6444,174.0]},"properties":{"id":"350962","name":"Cluny House Gardens","nationalPark":null,"region":"ta","unitaryAuthArea":"Perth and Kinross"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8976,51.6939,21.0]},"properties":{"id":"350963","name":"Clydach","nationalPark":null,"region":"wl","unitaryAuthArea":"Swansea"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.6989,54.5404,31.0]},"properties":{"id":"350966","name":"Coalisland","nationalPark":null,"region":"ni","unitaryAuthArea":"County Tyrone"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3692,54.6533,59.0]},"properties":{"id":"350971","name":"Cockermouth Youth Hostel","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0357,51.5033,3.0]},"properties":{"id":"353241","name":"Rotherhithe Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Greater London"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.4642,57.4133,121.0]},"properties":{"id":"353243","name":"Rothienorman","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4739,53.7511,42.0]},"properties":{"id":"353245","name":"Rothwell (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.371,51.7256,101.0]},"properties":{"id":"353266","name":"Royal National Rose Society Gardens","nationalPark":null,"region":"ee","unitaryAuthArea":"Hertfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4284,57.5939,1010.0]},"properties":{"id":"353276","name":"Ruadh-Stac Mor","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.676,53.3232,58.0]},"properties":{"id":"353282","name":"Runcorn Ski Centre","nationalPark":null,"region":"nw","unitaryAuthArea":"Halton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9581,52.6066,133.0]},"properties":{"id":"353284","name":"Rushall (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.511,50.8025,1.0]},"properties":{"id":"353287","name":"Rustington","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2039,52.9161,24.0]},"properties":{"id":"353295","name":"Rylands","nationalPark":null,"region":"em","unitaryAuthArea":"Nottinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4107,52.3661,73.0]},"properties":{"id":"353297","name":"Ryton Organic Gardens","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2425,52.0258,61.0]},"properties":{"id":"353299","name":"Saffron Walden","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4424,53.2577,20.0]},"properties":{"id":"353308","name":"St Asaph","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4995,51.8183,20.0]},"properties":{"id":"353311","name":"St Clears","nationalPark":null,"region":"wl","unitaryAuthArea":"Carmarthenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2984,51.8931,0.0]},"properties":{"id":"353315","name":"St Davids White Sands","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.0648,52.3272,6.0]},"properties":{"id":"353320","name":"St Ives (Cambridgeshire)","nationalPark":null,"region":"ee","unitaryAuthArea":"Cambridgeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2892,49.9125,30.0]},"properties":{"id":"353324","name":"St Mary's Airport","nationalPark":null,"region":"sw","unitaryAuthArea":"Isles of Scilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0135,50.158,3.0]},"properties":{"id":"353327","name":"St Mawes","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5176,49.485,7.0]},"properties":{"id":"353334","name":"St Sampson","nationalPark":null,"region":"sw","unitaryAuthArea":"Guernsey"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.8301,54.4605,73.0]},"properties":{"id":"353335","name":"Saintfield","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3223,53.4253,24.0]},"properties":{"id":"353337","name":"Sale","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2969,53.4882,40.0]},"properties":{"id":"353339","name":"Salford","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7819,51.0706,57.0]},"properties":{"id":"353342","name":"Salisbury Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Wiltshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.7822,55.6377,13.0]},"properties":{"id":"353345","name":"Saltcoats","nationalPark":null,"region":"st","unitaryAuthArea":"North Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4843,53.658,53.0]},"properties":{"id":"353349","name":"Sandal Magna","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5746,59.25,14.0]},"properties":{"id":"353350","name":"Sanday Airfield","nationalPark":null,"region":"os","unitaryAuthArea":"Orkney Islands"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4143,54.2317,29.0]},"properties":{"id":"353354","name":"Sandhutton","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2919,52.1309,23.0]},"properties":{"id":"353363","name":"Sandy","nationalPark":null,"region":"ee","unitaryAuthArea":"Central Bedfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6117,52.2423,92.0]},"properties":{"id":"353366","name":"Santa Pod Raceway","nationalPark":null,"region":"ee","unitaryAuthArea":"Bedford"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4247,54.3042,43.0]},"properties":{"id":"353374","name":"Scarborough Youth Hostel","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.044,57.829,1.0]},"properties":{"id":"353376","name":"Scarista","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3601,55.8836,9.0]},"properties":{"id":"353379","name":"Scotstoun","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6409,51.486,14.0]},"properties":{"id":"353383","name":"Sea Mills","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0343,52.3806,196.0]},"properties":{"id":"350976","name":"Cold Ashby","nationalPark":null,"region":"em","unitaryAuthArea":"Northamptonshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.74681,50.78644,123.0]},"properties":{"id":"350978","name":"Colebrooke","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.5318,50.3479,138.0]},"properties":{"id":"350981","name":"Coleton Fishacre Garden","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-8.5744,57.8205,430.0]},"properties":{"id":"350995","name":"Conachair","nationalPark":null,"region":"he","unitaryAuthArea":"Na h-Eileanan Siar"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2175,53.1626,96.0]},"properties":{"id":"350996","name":"Congleton","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire East"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2262,53.479,39.0]},"properties":{"id":"350997","name":"Conisbrough","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.8804,58.1362,987.0]},"properties":{"id":"351001","name":"Conival","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0573,53.2191,8.0]},"properties":{"id":"351002","name":"Connah's Quay","nationalPark":null,"region":"wl","unitaryAuthArea":"Flintshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8315,54.8517,266.0]},"properties":{"id":"351003","name":"Consett","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.0632,50.8156,4.0]},"properties":{"id":"351010","name":"Copnor","nationalPark":null,"region":"se","unitaryAuthArea":"Portsmouth"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.4637,51.5219,12.0]},"properties":{"id":"351014","name":"Corringham","nationalPark":null,"region":"ee","unitaryAuthArea":"Thurrock"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8378,52.6576,146.0]},"properties":{"id":"351015","name":"Corris Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3679,52.9798,138.0]},"properties":{"id":"351019","name":"Corwen","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.4123,53.7818,8.0]},"properties":{"id":"351024","name":"Cottingham","nationalPark":null,"region":"yh","unitaryAuthArea":"East Riding of Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6511,55.829,35.0]},"properties":{"id":"351026","name":"Coulaghailtro","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5395,52.4307,122.0]},"properties":{"id":"351027","name":"Coundon","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1005,50.0225,37.0]},"properties":{"id":"351034","name":"Coverack Youth Hostel","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2481,53.0484,176.0]},"properties":{"id":"351039","name":"Crackley","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.6795,55.4311,16.0]},"properties":{"id":"351046","name":"Craig Tara (Ayr)","nationalPark":null,"region":"st","unitaryAuthArea":"South Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.3186,55.962,31.0]},"properties":{"id":"351057","name":"Cramond Bridge","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2429,56.1279,35.0]},"properties":{"id":"351061","name":"Crarae Gardens","nationalPark":null,"region":"st","unitaryAuthArea":"Argyll and Bute"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.4872,56.8996,924.0]},"properties":{"id":"351070","name":"Creag Pitridh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6503,50.7921,66.0]},"properties":{"id":"351073","name":"Crediton","nationalPark":null,"region":"sw","unitaryAuthArea":"Devon"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0106,50.7436,12.0]},"properties":{"id":"351074","name":"Creekmoor","nationalPark":null,"region":"sw","unitaryAuthArea":"Poole"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6033,52.6335,50.0]},"properties":{"id":"351075","name":"Cressage","nationalPark":null,"region":"wm","unitaryAuthArea":"Shropshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5612,54.4593,55.0]},"properties":{"id":"351084","name":"Croft Motor Racing Circuit","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.4396,54.1657,43.0]},"properties":{"id":"351088","name":"Crom Estate (Nt)","nationalPark":null,"region":"ni","unitaryAuthArea":"County Fermanagh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5067,53.3857,223.0]},"properties":{"id":"351093","name":"Crookes","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1675,51.0604,185.0]},"properties":{"id":"351106","name":"Crowborough","nationalPark":null,"region":"se","unitaryAuthArea":"East Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1671,52.6764,2.0]},"properties":{"id":"351109","name":"Crowland","nationalPark":null,"region":"em","unitaryAuthArea":"Lincolnshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.7573,52.8552,145.0]},"properties":{"id":"351114","name":"Croxton Kerrial","nationalPark":null,"region":"em","unitaryAuthArea":"Leicestershire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2167,54.6206,73.0]},"properties":{"id":"351117","name":"Crumlin","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5212,53.4517,30.0]},"properties":{"id":"351123","name":"Culcheth","nationalPark":null,"region":"nw","unitaryAuthArea":"Warrington"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.0172,53.468,11.0]},"properties":{"id":"353388","name":"Seaforth","nationalPark":null,"region":"nw","unitaryAuthArea":"Merseyside"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.4803,54.3966,17.0]},"properties":{"id":"353390","name":"Seascale","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4486,54.653,109.0]},"properties":{"id":"353393","name":"Sedgefield","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.3025,53.4908,61.0]},"properties":{"id":"353396","name":"Seedley","nationalPark":null,"region":"nw","unitaryAuthArea":"Greater Manchester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2762,54.0681,153.0]},"properties":{"id":"353400","name":"Settle","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.1925,51.2719,145.0]},"properties":{"id":"353401","name":"Sevenoaks","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1723,56.6531,1024.0]},"properties":{"id":"353410","name":"Sgorr Dhearg","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.1992,56.6497,1001.0]},"properties":{"id":"353411","name":"Sgorr Dhonuil","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2266,57.2313,918.0]},"properties":{"id":"353418","name":"Sgurr A' Mhadaidh","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0015,56.7569,1098.0]},"properties":{"id":"353419","name":"Sgurr A' Mhaim","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.2695,57.7184,989.0]},"properties":{"id":"353424","name":"Sgurr Ban","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0137,57.6999,1110.0]},"properties":{"id":"353435","name":"Sgurr Mor (1110m)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2248,57.211,948.0]},"properties":{"id":"353437","name":"Sgurr Mhic Choinnich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.3329,57.1778,1027.0]},"properties":{"id":"353441","name":"Sgurr Na Ciste Duibhe","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.0583,57.3705,1150.0]},"properties":{"id":"353442","name":"Sgurr Na Lapaich","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.4025,57.0051,953.0]},"properties":{"id":"353448","name":"Sgurr Nan Coireachan (Glen Dessary)","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.1967,51.0041,209.0]},"properties":{"id":"353455","name":"Shaftesbury","nationalPark":null,"region":"sw","unitaryAuthArea":"Dorset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4735,53.3718,69.0]},"properties":{"id":"353471","name":"Sheffield United F.C.","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9555,52.616,132.0]},"properties":{"id":"353476","name":"Shelfield","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9727,52.425,177.0]},"properties":{"id":"353478","name":"Shenley Fields","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.5465,51.1904,137.0]},"properties":{"id":"353480","name":"Shepton Mallet","nationalPark":null,"region":"sw","unitaryAuthArea":"Somerset"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.1592,55.8514,33.0]},"properties":{"id":"353488","name":"Shettleston","nationalPark":null,"region":"st","unitaryAuthArea":"Glasgow"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6534,54.6333,141.0]},"properties":{"id":"353492","name":"Shildon","nationalPark":null,"region":"ne","unitaryAuthArea":"Durham"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7755,53.8357,68.0]},"properties":{"id":"353494","name":"Shipley","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6214,52.0603,64.0]},"properties":{"id":"353495","name":"Shipston On Stour","nationalPark":null,"region":"wm","unitaryAuthArea":"Warwickshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.2164,53.2016,99.0]},"properties":{"id":"353496","name":"Shirebrook","nationalPark":null,"region":"em","unitaryAuthArea":"Derbyshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6721,51.4901,50.0]},"properties":{"id":"353499","name":"Shirehampton","nationalPark":null,"region":"sw","unitaryAuthArea":"Bristol"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4235,50.9231,23.0]},"properties":{"id":"353500","name":"Shirley (Southampton)","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8179,52.4101,141.0]},"properties":{"id":"353501","name":"Shirley (West Midlands)","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4445,50.934,26.0]},"properties":{"id":"353503","name":"Shirley Warren","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.3527,50.8993,33.0]},"properties":{"id":"353504","name":"Sholing","nationalPark":null,"region":"se","unitaryAuthArea":"Southampton"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0095,52.7943,76.0]},"properties":{"id":"353510","name":"Shugborough Estate","nationalPark":null,"region":"wm","unitaryAuthArea":"Staffordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4861,52.0381,189.0]},"properties":{"id":"353511","name":"Sibford Gower","nationalPark":null,"region":"se","unitaryAuthArea":"Oxfordshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.592,51.9804,49.0]},"properties":{"id":"353512","name":"Sible Hedingham","nationalPark":null,"region":"ee","unitaryAuthArea":"Essex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.349,54.217,0.0]},"properties":{"id":"353515","name":"Silecroft","nationalPark":null,"region":"nw","unitaryAuthArea":"Cumbria"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.271,55.9715,45.0]},"properties":{"id":"353520","name":"Silverknowes","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2377,54.8649,300.0]},"properties":{"id":"353522","name":"Sinderhope","nationalPark":null,"region":"ne","unitaryAuthArea":"Northumberland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.7333,51.3399,20.0]},"properties":{"id":"353525","name":"Sittingbourne","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.9879,54.5618,90.0]},"properties":{"id":"353532","name":"Skelton","nationalPark":null,"region":"ne","unitaryAuthArea":"Redcar and Cleveland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.3507,54.8877,68.0]},"properties":{"id":"351128","name":"Cullybackey","nationalPark":null,"region":"ni","unitaryAuthArea":"County Antrim"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1187,51.6393,128.0]},"properties":{"id":"351139","name":"Cwmcarn Forest Drive","nationalPark":null,"region":"wl","unitaryAuthArea":"Caerphilly"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1628,51.5211,57.0]},"properties":{"id":"351140","name":"Cyncoed","nationalPark":null,"region":"wl","unitaryAuthArea":"Cardiff"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.396,52.9527,250.0]},"properties":{"id":"351141","name":"Cynwyd Youth Hostel","nationalPark":null,"region":"wl","unitaryAuthArea":"Denbighshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8148,53.8062,215.0]},"properties":{"id":"351144","name":"Daisy Hill","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6895,54.2778,120.0]},"properties":{"id":"351147","name":"Dalby Forest","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.164,51.7072,0.0]},"properties":{"id":"351148","name":"Dale","nationalPark":null,"region":"wl","unitaryAuthArea":"Pembrokeshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.3982,55.3239,171.0]},"properties":{"id":"351153","name":"Dalmellington","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5892,55.3972,51.0]},"properties":{"id":"351156","name":"Dalrymple","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.375,53.5349,63.0]},"properties":{"id":"351161","name":"Darfield","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0314,52.5672,138.0]},"properties":{"id":"351162","name":"Darlaston","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.0326,52.5759,130.0]},"properties":{"id":"351163","name":"Darlaston Green","nationalPark":null,"region":"wm","unitaryAuthArea":"West Midlands Conurbation"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2185,51.4457,4.0]},"properties":{"id":"351167","name":"Dartford","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.2852,55.6098,100.0]},"properties":{"id":"351171","name":"Darvel","nationalPark":null,"region":"st","unitaryAuthArea":"East Ayrshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.273,55.9649,56.0]},"properties":{"id":"351176","name":"Davidson's Mains","nationalPark":null,"region":"dg","unitaryAuthArea":"Edinburgh"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4125,54.4106,75.0]},"properties":{"id":"351183","name":"Deighton (North Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"North Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.7567,53.6727,124.0]},"properties":{"id":"351184","name":"Deighton (West Yorkshire)","nationalPark":null,"region":"yh","unitaryAuthArea":"West Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.6683,53.2349,73.0]},"properties":{"id":"351185","name":"Delamere","nationalPark":null,"region":"nw","unitaryAuthArea":"Cheshire West and Chester"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.6794,54.3784,16.0]},"properties":{"id":"351186","name":"Delamont Country Park","nationalPark":null,"region":"ni","unitaryAuthArea":"County Down"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.9988,57.5624,60.0]},"properties":{"id":"351190","name":"Denhead","nationalPark":null,"region":"gr","unitaryAuthArea":"Aberdeenshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6703,50.8516,20.0]},"properties":{"id":"351191","name":"Denmans","nationalPark":null,"region":"se","unitaryAuthArea":"West Sussex"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.9055,56.0215,45.0]},"properties":{"id":"351192","name":"Denny","nationalPark":null,"region":"ta","unitaryAuthArea":"Falkirk"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.427,57.5955,5.0]},"properties":{"id":"351211","name":"Dingwall","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.8831,52.7419,14.0]},"properties":{"id":"351219","name":"Dolgellau","nationalPark":null,"region":"wl","unitaryAuthArea":"Gwynedd"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5354,53.3321,206.0]},"properties":{"id":"351226","name":"Dore","nationalPark":null,"region":"yh","unitaryAuthArea":"South Yorkshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.6695,51.5005,21.0]},"properties":{"id":"351227","name":"Dorney Court","nationalPark":null,"region":"se","unitaryAuthArea":"Buckinghamshire"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.0266,57.8793,8.0]},"properties":{"id":"351228","name":"Dornoch","nationalPark":null,"region":"he","unitaryAuthArea":"Highland"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.2975,51.1334,23.0]},"properties":{"id":"351233","name":"Dover Youth Hostel","nationalPark":null,"region":"se","unitaryAuthArea":"Kent"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.7855,54.7933,76.0]},"properties":{"id":"351241","name":"Draperstown","nationalPark":null,"region":"ni","unitaryAuthArea":"County Londonderry"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.5155,50.4923,188.0]},"properties":{"id":"351242","name":"Draynes","nationalPark":null,"region":"sw","unitaryAuthArea":"Cornwall"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.8494,51.0197,16.0]},"propert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment