Skip to content

Instantly share code, notes, and snippets.

@harry-wood
Forked from Zverik/changed_tags.lst
Last active November 4, 2017 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harry-wood/1c590b852dd2f43569c085dc554b9abd to your computer and use it in GitHub Desktop.
Save harry-wood/1c590b852dd2f43569c085dc554b9abd to your computer and use it in GitHub Desktop.
Fuel stations import in the UK
2 "tags_changed.brand": "BP -> Shell",
3 "tags_changed.brand": "Esso -> Shell",
3 "tags_changed.brand": "Jet -> Shell",
1 "tags_changed.brand": "Murco -> Shell",
1 "tags_changed.brand": "Red House Garage -> Shell",
1 "tags_changed.brand": "Texaco -> Shell",
16 "tags_changed.brand": "Total -> Shell",
1 "tags_changed.brand": "Tove Service Station -> Shell",
9 "tags_changed.brand": "shell -> Shell",
1 "tags_changed.opening_hours": "05:00-22:00 -> Mo-Su 05:00-22:00",
2 "tags_changed.opening_hours": "06:00-22:00 -> Mo-Su 06:00-22:00",
1 "tags_changed.opening_hours": "06:30-23:00 -> Mo-Su 06:30-22:00",
1 "tags_changed.opening_hours": "24 -> 24/7",
1 "tags_changed.opening_hours": "24/7 -> Mo-Sa 06:00-22:00; Su 07:00-21:00",
1 "tags_changed.opening_hours": "24/7 -> Mo-Su 06:00-23:00",
1 "tags_changed.opening_hours": "24/7 -> Mo-Su 07:00-22:00",
1 "tags_changed.opening_hours": "Mo-Fr 10:00-18:00 -> 24/7",
1 "tags_changed.opening_hours": "Mo-Sa 06:30-22:00;Su 08:00-19:00 -> Mo-Sa 06:30-22:00; Su 07:00-20:00",
1 "tags_changed.opening_hours": "Mo-Su 07:00-23:00 -> Mo-Sa 07:00-23:00; Su 08:00-21:00",
1 "tags_changed.phone": "+44 (0)1332 794127 -> +44 78 8007 8248",
1 "tags_changed.phone": "+44 1766 512934 -> +44 1766 510920",
1 "tags_changed.phone": "+44 2380 552612 -> +44 23 8055 2612",
1 "tags_changed.phone": "+44 2392 413810 -> +44 23 9241 3810",
1 "tags_changed.phone": "+44 2392 693995 -> +44 23 9269 3995",
1 "tags_changed.phone": "+441329845431 -> +44 1329 845431",
1 "tags_changed.phone": "+441428724169 -> +44 1428 724169",
1 "tags_changed.phone": "+442086070900 -> +44 20 8744 0174",
1 "tags_changed.phone": "+442088940700 -> +44 20 8894 0700",
1 "tags_changed.phone": "+442392372014 -> +44 23 9237 2014",
1 "tags_changed.phone": "01606 305890 -> +44 1606 882194",
1 "tags_changed.phone": "01606 590561 -> +44 1606 590561",
1 "tags_changed.phone": "02083482719 -> +44 20 8348 2719",
<!DOCTYPE html>
<html>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
.marker-properties {
border-collapse:collapse;
/*border:1px solid #eee;*/
font-size:11px;
margin:0;
}
.marker-properties th {
white-space:nowrap;
border:1px solid #eee;
padding:5px 10px;
}
.marker-properties td {
border:1px solid #eee;
padding:5px 10px;
}
.marker-properties tr:last-child td,
.marker-properties tr:last-child th {
border-bottom:none;
}
.marker-properties tr:nth-child(even) th,
.marker-properties tr:nth-child(even) td {
background-color:#f7f7f7;
}
.tag-type-heading td {
padding-top: 20px;
padding-left: 2px;
border-style: none;
font-weight:bold;
font-size:1.1em;
}
</style>
<script src='//api.tiles.mapbox.com/mapbox.js/v2.2.2/mapbox.js'></script>
<script src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' ></script>
<script src='//unpkg.com/leaflet-hash@0.2.1/leaflet-hash.js'></script>
<link href='//api.tiles.mapbox.com/mapbox.js/v2.2.2/mapbox.css' rel='stylesheet' />
</head>
<body>
<div id='map'></div>
<script type='text/javascript'>
L.mapbox.accessToken = 'pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXFhYTA2bTMyeW44ZG0ybXBkMHkifQ.gUGbDOPUN1v1fTs5SeOR4A';
var map = L.mapbox.map('map');
var layers = {
'Satellite': L.mapbox.tileLayer('mapbox.satellite'),
'OpenStreetMap': L.tileLayer('https://a.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
})
};
layers['OpenStreetMap'].addTo(map);
L.control.layers(layers, null, {collapsed: false}).addTo(map);
$.getJSON('map.geojson', function(geojson) {
var geojsonLayer = L.mapbox.featureLayer(geojson).addTo(map);
var bounds = geojsonLayer.getBounds();
if (bounds.isValid()) {
map.fitBounds(geojsonLayer.getBounds());
} else {
map.setView([0, 0], 2);
}
var hash = new L.Hash(map);
geojsonLayer.eachLayer(function(l) {
showProperties(l);
});
});
function showProperties(l) {
var properties = l.toGeoJSON().properties;
var popupContent = $("<div></div>");
osm_object_link = 'new node';
if (properties['action'] == 'modify') {
osm_id = properties['osm_type'] + '/' + properties['osm_id'];
osm_object_link = '<a href="http://www.openstreetmap.org/'+osm_id+'">' +
osm_id + '</a></p>'
}
popupContent.html(
'<p><span style="color:' + properties['marker-color'] + ';">' +
properties['action'] +
'</span> ' + osm_object_link + '</p>'
);
if (properties['ref_coords'])
popupContent.append('<p>ref_coords:' + properties['ref_coords'] + '</p>');
if (properties['ref_distance'])
popupContent.append('<p>ref_distance:' + properties['ref_distance'] + '</p>');
var table = document.createElement('table');
table.setAttribute('class', 'marker-properties display')
lastTagType = '';
for (var key in properties) {
if (key.startsWith('tag')) {
parts = key.split('.');
tag_type = parts[0];
osm_key = parts[1];
if (tag_type!=lastTagType) {
var tr = createTableHeading(tag_type);
table.appendChild(tr);
lastTagType = tag_type;
}
var tr = createTableRows(osm_key, properties[key]);
table.appendChild(tr);
}
}
if (table) popupContent.append(table);
l.bindPopup(popupContent[0]);
}
function createTableHeading(tag_type) {
if (tag_type == 'tags') {
headingText = 'Tags:';
} else if (tag_type == 'tags_changed') {
headingText = 'Tags to change:';
} else if (tag_type == 'tags_new') {
headingText = 'New tags to add:';
} else {
headingText = tag_type; //unknown type
}
var tr = document.createElement('tr');
var att = document.createAttribute('class');
att.value = 'tag-type-heading';
tr.setAttributeNode(att);
var td = document.createElement('td');
heading = document.createTextNode(headingText);
td.appendChild(heading);
var att = document.createAttribute("colspan");
att.value = "2";
td.setAttributeNode(att);
tr.appendChild(td);
return tr;
}
function createTableRows(key, value) {
var tr = document.createElement('tr');
var th = document.createElement('th');
var td = document.createElement('td');
key = document.createTextNode(key);
value = document.createTextNode(value);
th.appendChild(key);
td.appendChild(value);
tr.appendChild(th);
tr.appendChild(td);
return tr
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"features": [
{
"geometry": {
"coordinates": [
-1.1405036,
53.5130312
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 451935923,
"osm_type": "way",
"ref_coords": [
-1.140504,
53.513031
],
"ref_distance": 0.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.layer": "1",
"tags.name": "Shell",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "DN4 0RA",
"tags_new.addr:street": "Balby Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1302 341474",
"tags_new.ref:navads_shell": "NVDS353-10019378"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6217791,
50.7614787
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1241085708,
"osm_type": "node",
"ref_coords": [
-1.621778,
50.761479
],
"ref_distance": 0.1,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Hordle",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SO41 0FF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:30-20:00; Sa 07:00-19:00; Su 08:00-18:00",
"tags_new.phone": "+44 1425 620165",
"tags_new.ref:navads_shell": "NVDS353-11306541"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1887676,
53.0273982
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 221248243,
"osm_type": "way",
"ref_coords": [
-2.188763,
53.027397
],
"ref_distance": 0.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags.shop": "kiosk",
"tags_new.addr:postcode": "ST1 5JQ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1782 200950",
"tags_new.ref:navads_shell": "NVDS353-10019107"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3705363,
52.8677766
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 271200685,
"osm_type": "node",
"ref_coords": [
-1.370533,
52.867779
],
"ref_distance": 0.3,
"tags.addr:county": "Derbyshire",
"tags.addr:postcode": "DE72 2WA",
"tags.addr:street": "A50 West Bound",
"tags.addr:town": "Shardlow",
"tags.amenity": "fuel",
"tags.designation": "1800",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shardlow South",
"tags_changed.phone": "+44 (0)1332 794127 -> +44 78 8007 8248",
"tags_new.brand": "Shell",
"tags_new.ref:navads_shell": "NVDS353-10019718"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4422325,
51.5667891
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 544316316,
"osm_type": "node",
"ref_coords": [
-0.44223502,
51.56679183
],
"ref_distance": 0.4,
"tags.amenity": "fuel",
"tags.atm": "yes",
"tags.food": "yes",
"tags.off_license": "yes",
"tags.operator": "Total",
"tags.shop": "spar",
"tags_new.addr:housenumber": "55",
"tags_new.addr:postcode": "UB10 8LF",
"tags_new.addr:street": "High Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1895 676009",
"tags_new.ref:navads_shell": "NVDS353-12038519"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.6220956,
55.477068
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 96083504,
"osm_type": "way",
"ref_coords": [
-4.62209,
55.477069
],
"ref_distance": 0.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KA8 8JT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:00",
"tags_new.phone": "+44 1292 290671",
"tags_new.ref:navads_shell": "NVDS353-11073222"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.9019574,
51.3063205
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 52761656,
"osm_type": "node",
"ref_coords": [
0.901958,
51.306316
],
"ref_distance": 0.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags_changed.opening_hours": "06:00-22:00 -> Mo-Su 06:00-22:00",
"tags_new.addr:postcode": "ME13 8XA",
"tags_new.phone": "+44 1795 590676",
"tags_new.ref:navads_shell": "NVDS353-10018985"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8957637,
53.5790881
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 183319995,
"osm_type": "way",
"ref_coords": [
-2.895768,
53.579092
],
"ref_distance": 0.5,
"tags.amenity": "fuel",
"tags.name": "Shell Ormskirk",
"tags_new.addr:housenumber": "242",
"tags_new.addr:postcode": "L39 1LZ",
"tags_new.addr:street": "Southport Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1695 805500",
"tags_new.ref:navads_shell": "NVDS353-12301844"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7602931,
53.661216
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 365761480,
"osm_type": "node",
"ref_coords": [
-1.760287,
53.661219
],
"ref_distance": 0.5,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags_new.addr:housenumber": "519",
"tags_new.addr:postcode": "HD2 1YJ",
"tags_new.addr:street": "Leeds Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1484 300656",
"tags_new.ref:navads_shell": "NVDS353-12217114"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4655993,
52.6935404
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 493065080,
"osm_type": "way",
"ref_coords": [
-2.465607,
52.693541
],
"ref_distance": 0.5,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Ketley Service Station",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "TF1 5DY",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1952 618716",
"tags_new.ref:navads_shell": "NVDS353-10019158"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.2988967,
52.0977427
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 375900189,
"osm_type": "way",
"ref_coords": [
1.29889,
52.097745
],
"ref_distance": 0.5,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.layer": "1",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags_new.addr:housenumber": "24",
"tags_new.addr:postcode": "IP12 4LH",
"tags_new.addr:street": "Grove Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1394 385951",
"tags_new.ref:navads_shell": "NVDS353-10019193"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3919344,
51.5361966
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2323007443,
"osm_type": "node",
"ref_coords": [
-0.391942,
51.536199
],
"ref_distance": 0.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "529",
"tags_new.addr:postcode": "UB5 6LN",
"tags_new.addr:street": "Yeading Lane",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8845 9308",
"tags_new.ref:navads_shell": "NVDS353-11849718"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1823979,
51.46429
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 280975098,
"osm_type": "way",
"ref_coords": [
-0.182405,
51.464293
],
"ref_distance": 0.6,
"tags.addr:housenumber": "262",
"tags.addr:postcode": "SW18 1TP",
"tags.addr:street": "York Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fhrs:id": "298294",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7350 1361",
"tags_new.ref:navads_shell": "NVDS353-10018887"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6068204,
56.5666119
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4095887329,
"osm_type": "node",
"ref_coords": [
-2.60681173,
56.56660936
],
"ref_distance": 0.6,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "DD11 3DZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1241 872029",
"tags_new.ref:navads_shell": "NVDS353-10019580"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9495129,
53.8479593
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1600919659,
"osm_type": "node",
"ref_coords": [
-2.949522,
53.84796
],
"ref_distance": 0.6,
"tags.addr:postcode": "FY6 7SX",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "96531",
"tags.name": "Five Lane Ends",
"tags.operator": "Shell",
"tags.shop": "convenience",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1253 895458",
"tags_new.ref:navads_shell": "NVDS353-10019270"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2736626,
53.4352175
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 27312661,
"osm_type": "node",
"ref_coords": [
-2.273671,
53.435215
],
"ref_distance": 0.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "423",
"tags_new.addr:postcode": "M21 8ER",
"tags_new.addr:street": "Barlow Moor Road",
"tags_new.phone": "+44 161 881 2155",
"tags_new.ref:navads_shell": "NVDS353-10348194"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6838649,
53.7614431
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 224883206,
"osm_type": "way",
"ref_coords": [
-1.68386,
53.761448
],
"ref_distance": 0.6,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BD4 0SB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 00:00-24:00; Sa 08:00-18:00; Su 09:00-18:00",
"tags_new.phone": "+44 1274 651763",
"tags_new.ref:navads_shell": "NVDS353-10019748"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.7263142,
51.5563463
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 629231332,
"osm_type": "node",
"ref_coords": [
0.726305,
51.556347
],
"ref_distance": 0.6,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_changed.opening_hours": "Mo-Sa 06:30-22:00;Su 08:00-19:00 -> Mo-Sa 06:30-22:00; Su 07:00-20:00",
"tags_new.addr:postcode": "SS2 4DQ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1702 603403",
"tags_new.ref:navads_shell": "NVDS353-12140984"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9881624,
51.5912946
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 503047416,
"osm_type": "node",
"ref_coords": [
-2.988159,
51.5913
],
"ref_distance": 0.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Chepstow Road",
"tags.operator": "Shell",
"tags.wheelchair": "unknown",
"tags_new.addr:housenumber": "17-25",
"tags_new.addr:postcode": "NP19 8BW",
"tags_new.addr:street": "Chepstow Road",
"tags_new.phone": "+44 1633 263176",
"tags_new.ref:navads_shell": "NVDS353-10019666"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6494293,
51.9015838
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2504945742,
"osm_type": "node",
"ref_coords": [
-0.649427,
51.901578
],
"ref_distance": 0.7,
"tags.amenity": "fuel",
"tags.name": "Grovebury Service Station",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "LU7 9HH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1525 851167",
"tags_new.ref:navads_shell": "NVDS353-12038507"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0429258,
51.5925719
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2129413695,
"osm_type": "node",
"ref_coords": [
0.04292,
51.592577
],
"ref_distance": 0.7,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "IG8 8QH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8550 4610",
"tags_new.ref:navads_shell": "NVDS353-10018841"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4908207,
51.5044583
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 60705133,
"osm_type": "node",
"ref_coords": [
-2.490822,
51.504452
],
"ref_distance": 0.7,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "BS36 1AH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-22:30; Su 08:00-22:00",
"tags_new.phone": "+44 117 910 4903",
"tags_new.ref:navads_shell": "NVDS353-10019098"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5572373,
51.4739357
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 294418962,
"osm_type": "way",
"ref_coords": [
-2.557239,
51.473942
],
"ref_distance": 0.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags_new.addr:postcode": "BS5 6PX",
"tags_new.phone": "+44 117 951 8347",
"tags_new.ref:navads_shell": "NVDS353-10019055"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2562288,
53.4244316
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1114671422,
"osm_type": "node",
"ref_coords": [
-1.256227,
53.424425
],
"ref_distance": 0.7,
"tags.amenity": "fuel",
"tags.source": "Bing",
"tags_new.addr:postcode": "S66 2TP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1709 547200",
"tags_new.ref:navads_shell": "NVDS353-12038610"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5167347,
53.7720236
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 173273548,
"osm_type": "way",
"ref_coords": [
-1.516725,
53.77202
],
"ref_distance": 0.8,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Queens Service Station",
"tags_new.addr:postcode": "LS10 1DP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 00:00-24:00; Su 08:00-22:00",
"tags_new.phone": "+44 113 270 9842",
"tags_new.ref:navads_shell": "NVDS353-12217118"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1982701,
52.6578286
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 200523446,
"osm_type": "way",
"ref_coords": [
-1.19828,
52.657832
],
"ref_distance": 0.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.name": "Branting Hill Service Station",
"tags_new.addr:postcode": "LE3 8GJ",
"tags_new.opening_hours": "Mo-Fr 08:00-16:00; Sa-Su 10:00-18:00",
"tags_new.phone": "+44 116 287 2167",
"tags_new.ref:navads_shell": "NVDS353-10019150"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8013112,
56.3382864
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 405998483,
"osm_type": "way",
"ref_coords": [
-2.801299,
56.338285
],
"ref_distance": 0.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KY16 9EX",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1334 478809",
"tags_new.ref:navads_shell": "NVDS353-10019481"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2586792,
51.2453528
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 20610863,
"osm_type": "node",
"ref_coords": [
-0.258673,
51.245359
],
"ref_distance": 0.8,
"tags.amenity": "fuel",
"tags.name": "Shell Petrol Station",
"tags.operator": "Shell",
"tags.wheelchair": "limited",
"tags.wheelchair:description": "Automatic sliding door. High counter. Outside ATM inaccessible due to obstacles/kerb.",
"tags_new.addr:postcode": "RH3 7ET",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1737 845000",
"tags_new.ref:navads_shell": "NVDS353-10018948"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8475627,
52.4966214
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 126029115,
"osm_type": "way",
"ref_coords": [
-1.847552,
52.496618
],
"ref_distance": 0.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.source": "bing",
"tags_new.addr:housenumber": "288",
"tags_new.addr:postcode": "B8 2UL",
"tags_new.addr:street": "Washwood Heath Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 121 327 1778",
"tags_new.ref:navads_shell": "NVDS353-12038627"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3961724,
51.902539
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 663950097,
"osm_type": "node",
"ref_coords": [
-0.396161,
51.902542
],
"ref_distance": 0.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LU2 7UP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1582 729196",
"tags_new.ref:navads_shell": "NVDS353-12038598"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3627048,
54.1976457
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 752902690,
"osm_type": "node",
"ref_coords": [
-1.36270564,
54.197638
],
"ref_distance": 0.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "YO7 3HN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1845 578152",
"tags_new.ref:navads_shell": "NVDS353-12038543"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9032236,
52.2269763
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1214180356,
"osm_type": "node",
"ref_coords": [
-0.903215,
52.226982
],
"ref_distance": 0.9,
"ref_unused_tags.addr:postcode": "NN4 8LA",
"tags.addr:city": "Northampton",
"tags.addr:country": "GB",
"tags.addr:postcode": "NN4 9LA",
"tags.addr:street": "Towcester Rd",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Northampton",
"tags.fhrs:id": "176653",
"tags.fhrs:local_authority_id": "PI/000038260",
"tags.name": "Shell Far Cotton",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1604 660702",
"tags_new.ref:navads_shell": "NVDS353-12038620"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.2141035,
54.127707
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 330830638,
"osm_type": "way",
"ref_coords": [
-3.214116,
54.12771
],
"ref_distance": 0.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "LA14 5LF",
"tags_new.phone": "+44 1229 870927",
"tags_new.ref:navads_shell": "NVDS353-10019264"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2098502,
53.0054762
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 454635516,
"osm_type": "node",
"ref_coords": [
-1.209842,
53.00547
],
"ref_distance": 0.9,
"tags.addr:postcode": "NG6 8GE",
"tags.addr:street": "Camberley Road",
"tags.amenity": "fuel",
"tags.name": "Sellers Wood Service Station",
"tags.operator": "Shell",
"tags.source": "survey",
"tags.source:name": "NCC open data",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 115 975 4371",
"tags_new.ref:navads_shell": "NVDS353-12038581"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.8254315,
55.5855495
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 53959062,
"osm_type": "node",
"ref_coords": [
-3.825442,
55.585544
],
"ref_distance": 0.9,
"tags.amenity": "fuel",
"tags.name": "Shell Happendon",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "ML11 0JU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 00:00-24:00; Su 08:00-22:00",
"tags_new.phone": "+44 1555 851185",
"tags_new.ref:navads_shell": "NVDS353-10019672"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6300329,
52.8176073
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 513794529,
"osm_type": "node",
"ref_coords": [
-1.630027,
52.8176
],
"ref_distance": 0.9,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "DE14 1RY",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1283 545129",
"tags_new.ref:navads_shell": "NVDS353-12038477"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3505681,
53.7289859
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4339748154,
"osm_type": "node",
"ref_coords": [
-1.350557,
53.728991
],
"ref_distance": 0.9,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "WF10 2JU",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1977 604301",
"tags_new.ref:navads_shell": "NVDS353-10019229"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.2221744,
52.6026711
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 32487995,
"osm_type": "way",
"ref_coords": [
1.222184,
52.602665
],
"ref_distance": 0.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_97": "yes",
"tags.layer": "1",
"tags.name": "Shell Cringleford",
"tags_new.addr:postcode": "NR9 3AU",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1603 507460",
"tags_new.ref:navads_shell": "NVDS353-12038615"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1006299,
51.9121041
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 329352303,
"osm_type": "node",
"ref_coords": [
-2.100617,
51.912101
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GL51 7PA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1242 510562",
"tags_new.ref:navads_shell": "NVDS353-10019525"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1502342,
52.4140498
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 103363358,
"osm_type": "way",
"ref_coords": [
-2.150222,
52.414054
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags_new.addr:postcode": "DY9 0JL",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1562 885962",
"tags_new.ref:navads_shell": "NVDS353-10019009"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9387949,
53.3263201
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 356017902,
"osm_type": "node",
"ref_coords": [
-0.938803,
53.326313
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "48",
"tags_new.addr:postcode": "DN22 6RN",
"tags_new.addr:street": "Moorgate",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1777 700997",
"tags_new.ref:navads_shell": "NVDS353-12038547"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3820158,
52.7709949
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 296053006,
"osm_type": "node",
"ref_coords": [
-2.382002,
52.770997
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "TF10 7JA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1952 815900",
"tags_new.ref:navads_shell": "NVDS353-10019157"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8220453,
52.401024
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 104116306,
"osm_type": "way",
"ref_coords": [
-1.822032,
52.401027
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "visual survey;bing",
"tags_new.addr:postcode": "B90 4AU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 744 6674",
"tags_new.ref:navads_shell": "NVDS353-10019129"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9385679,
50.9337565
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 123648885,
"osm_type": "way",
"ref_coords": [
-2.938554,
50.933757
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags_new.addr:postcode": "TA19 9PT",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1460 258995",
"tags_new.ref:navads_shell": "NVDS353-10019493"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0784087,
52.5842432
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 385154760,
"osm_type": "node",
"ref_coords": [
-2.078414,
52.584235
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags_new.addr:postcode": "WV13 3LP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1902 631686",
"tags_new.ref:navads_shell": "NVDS353-11849743"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8789497,
53.199252
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 393380791,
"osm_type": "node",
"ref_coords": [
-2.878935,
53.19925248
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags_new.addr:postcode": "CH2 3NH",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1244 312347",
"tags_new.ref:navads_shell": "NVDS353-12038462"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.2127084,
55.9181892
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2307513130,
"osm_type": "node",
"ref_coords": [
-3.212701,
55.918197
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.name": "Shell Braidburn",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "277",
"tags_new.addr:postcode": "EH10 6AP",
"tags_new.addr:street": "Comiston Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 131 447 1872",
"tags_new.ref:navads_shell": "NVDS353-10019663"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5591523,
52.5937312
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 493074708,
"osm_type": "way",
"ref_coords": [
-2.55914,
52.593736
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "TF13 6AG",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1952 727257",
"tags_new.ref:navads_shell": "NVDS353-11230540"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2108393,
51.7931627
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 257935362,
"osm_type": "node",
"ref_coords": [
-0.210843,
51.793154
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "AL8 6XA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1707 326972",
"tags_new.ref:navads_shell": "NVDS353-12038629"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1850765,
57.180216
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 132564699,
"osm_type": "way",
"ref_coords": [
-2.185093,
57.180217
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Propellor Filling Station",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "AB21 9BB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 79 3390 8099",
"tags_new.ref:navads_shell": "NVDS353-10019427"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8756486,
54.8574297
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 90583490,
"osm_type": "way",
"ref_coords": [
-2.875633,
54.857431
],
"ref_distance": 1.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Golden Fleece Service Station",
"tags_new.addr:postcode": "CA4 0AN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 78 0824 9434",
"tags_new.ref:navads_shell": "NVDS353-12281666"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9482539,
52.3635048
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 59002343,
"osm_type": "way",
"ref_coords": [
-1.948241,
52.36351
],
"ref_distance": 1.1,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell Hopwood Park",
"tags.operator": "Shell",
"tags_new.addr:postcode": "B48 7AU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 445 6662",
"tags_new.ref:navads_shell": "NVDS353-10045882"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5334525,
51.3641335
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2452261956,
"osm_type": "node",
"ref_coords": [
-0.533462,
51.364141
],
"ref_distance": 1.1,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "KT16 0NZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1932 877231",
"tags_new.ref:navads_shell": "NVDS353-10018976"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2233868,
51.4290249
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3050525477,
"osm_type": "node",
"ref_coords": [
0.223402,
51.429023
],
"ref_distance": 1.1,
"tags.addr:city": "Dartford",
"tags.addr:postcode": "DA1 1PU",
"tags.addr:street": "Hawley Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Hawley",
"tags_new.phone": "+44 1322 221158",
"tags_new.ref:navads_shell": "NVDS353-10018924"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5824864,
51.0280689
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 270799838,
"osm_type": "way",
"ref_coords": [
-2.582502,
51.02807
],
"ref_distance": 1.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.shop": "kiosk",
"tags_new.addr:postcode": "BA22 7PH",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1935 851628",
"tags_new.ref:navads_shell": "NVDS353-10019096"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.665,
52.0500291
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 148046673,
"osm_type": "way",
"ref_coords": [
-1.665014,
52.050024
],
"ref_distance": 1.1,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Rowborough Filling Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GL56 9RE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-21:00",
"tags_new.phone": "+44 1608 663298",
"tags_new.ref:navads_shell": "NVDS353-10019750"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1140522,
51.2500782
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 252947184,
"osm_type": "node",
"ref_coords": [
-1.114066,
51.250084
],
"ref_distance": 1.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "RG22 6HT",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1256 376922",
"tags_new.ref:navads_shell": "NVDS353-10019036"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1382481,
53.3892262
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1432511773,
"osm_type": "node",
"ref_coords": [
-2.13823105,
53.3892288
],
"ref_distance": 1.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "297-309",
"tags_new.addr:postcode": "SK2 7NR",
"tags_new.addr:street": "Buxton Road",
"tags_new.phone": "+44 161 456 4359",
"tags_new.ref:navads_shell": "NVDS353-10019319"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5940946,
51.2566293
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 72666977,
"osm_type": "way",
"ref_coords": [
-0.594098,
51.256619
],
"ref_distance": 1.2,
"tags.addr:street": "Worplesdon Road",
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.layer": "1",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source": "sas",
"tags_new.addr:housenumber": "200-202",
"tags_new.addr:postcode": "GU2 9UY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1483 459887",
"tags_new.ref:navads_shell": "NVDS353-12038599"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5744271,
54.9783698
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 301906535,
"osm_type": "node",
"ref_coords": [
-1.57441,
54.978366
],
"ref_distance": 1.2,
"tags.addr:city": "Newcastle Upon Tyne",
"tags.addr:housenumber": "308",
"tags.addr:postcode": "NE6 2UU",
"tags.addr:street": "Shields Road",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 276 7084",
"tags_new.ref:navads_shell": "NVDS353-10019224"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.7430928,
56.2681626
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1832111208,
"osm_type": "node",
"ref_coords": [
-3.743104,
56.268154
],
"ref_distance": 1.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "PH3 1PH",
"tags_new.opening_hours": "Mo-Su 06:30-22:00",
"tags_new.phone": "+44 1764 682428",
"tags_new.ref:navads_shell": "NVDS353-10045876"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.6878344,
52.6564274
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 192622581,
"osm_type": "way",
"ref_coords": [
0.687843,
52.656418
],
"ref_distance": 1.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.note": "Converted from Waitrose to Shell filling station in Nov 2012. Waitrose shop retained",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PE37 7HT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-21:00; Su 08:00-21:00",
"tags_new.phone": "+44 1760 723571",
"tags_new.ref:navads_shell": "NVDS353-12140985"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0888978,
53.1972814
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 154098461,
"osm_type": "way",
"ref_coords": [
-3.08889891,
53.19729221
],
"ref_distance": 1.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.source": "Bing",
"tags_new.addr:postcode": "CH7 6HF",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1244 810674",
"tags_new.ref:navads_shell": "NVDS353-12038489"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3240022,
51.3902249
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3673948244,
"osm_type": "node",
"ref_coords": [
-0.32402,
51.390224
],
"ref_distance": 1.2,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "122",
"tags_new.addr:postcode": "KT7 0XF",
"tags_new.addr:street": "Portsmouth Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 20 8398 7978",
"tags_new.ref:navads_shell": "NVDS353-12038536"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1270173,
52.6905924
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 297893921,
"osm_type": "way",
"ref_coords": [
-1.127024,
52.690582
],
"ref_distance": 1.2,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Thurcaston A46/A6",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LE4 3LH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 116 267 7664",
"tags_new.ref:navads_shell": "NVDS353-10957046"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3728904,
50.9882986
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 142496057,
"osm_type": "way",
"ref_coords": [
-1.372908,
50.988301
],
"ref_distance": 1.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags_new.addr:housenumber": "130",
"tags_new.addr:postcode": "SO53 2DS",
"tags_new.addr:street": "Winchester Road",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 23 8025 2445",
"tags_new.ref:navads_shell": "NVDS353-10019045"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0217724,
52.4941332
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1789178940,
"osm_type": "node",
"ref_coords": [
-2.021754,
52.494131
],
"ref_distance": 1.3,
"tags.amenity": "fuel",
"tags.name": "Total Fuels",
"tags_new.addr:postcode": "B69 2BD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 544 9425",
"tags_new.ref:navads_shell": "NVDS353-12038431"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.581668,
51.4610397
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 332983381,
"osm_type": "way",
"ref_coords": [
-2.581671,
51.461051
],
"ref_distance": 1.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BS2 9LU",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 117 941 1491",
"tags_new.ref:navads_shell": "NVDS353-11930306"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.167362,
53.3576295
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 406379937,
"osm_type": "way",
"ref_coords": [
-2.16737,
53.357619
],
"ref_distance": 1.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "SK7 2BE",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 439 8187",
"tags_new.ref:navads_shell": "NVDS353-10019296"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0832959,
51.4239336
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 364852624,
"osm_type": "node",
"ref_coords": [
-0.083314,
51.423936
],
"ref_distance": 1.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "112-122",
"tags_new.addr:postcode": "SE19 1PL",
"tags_new.addr:street": "Gipsy Hill",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8655 7400",
"tags_new.ref:navads_shell": "NVDS353-10019641"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1267259,
53.5374774
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 286960315,
"osm_type": "node",
"ref_coords": [
-2.126717,
53.537467
],
"ref_distance": 1.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "289",
"tags_new.addr:postcode": "OL8 1SY",
"tags_new.addr:street": "Manchester Street",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 79 6727 2660",
"tags_new.ref:navads_shell": "NVDS353-10047893"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6270302,
52.2950253
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3311017661,
"osm_type": "node",
"ref_coords": [
-1.62704,
52.295015
],
"ref_distance": 1.3,
"tags.addr:place": "Hertford Hill",
"tags.addr:postcode": "CV35 7DZ",
"tags.addr:street": "Birmingham Road",
"tags.amenity": "fuel",
"tags.name": "Shell Hatton",
"tags.phone": "+44 1926 409230",
"tags_new.brand": "Shell",
"tags_new.ref:navads_shell": "NVDS353-10019144"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4792102,
53.386594
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 107028443,
"osm_type": "way",
"ref_coords": [
-1.479197,
53.386603
],
"ref_distance": 1.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "S3 7EZ",
"tags_new.phone": "+44 114 272 8745",
"tags_new.ref:navads_shell": "NVDS353-10019377"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6898675,
53.6320557
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 204381643,
"osm_type": "way",
"ref_coords": [
-2.689849,
53.632061
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "welocme Break Southbound",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PR7 5LR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1257 791494",
"tags_new.ref:navads_shell": "NVDS353-10019301"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.251178,
51.5559768
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 317083821,
"osm_type": "way",
"ref_coords": [
0.251159,
51.55598
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.shop": "yes",
"tags_new.addr:housenumber": "168-170",
"tags_new.addr:postcode": "RM14 3BS",
"tags_new.addr:street": "St Mary'S Lane",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1708 251330",
"tags_new.ref:navads_shell": "NVDS353-10018845"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1924039,
53.3305759
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4281302173,
"osm_type": "node",
"ref_coords": [
-2.192385,
53.330571
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SK9 2LN",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1625 536810",
"tags_new.ref:navads_shell": "NVDS353-10019293"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.4634187,
51.6774553
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2159936525,
"osm_type": "node",
"ref_coords": [
0.463402,
51.677462
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Stock Road",
"tags.operator": "Shell",
"tags_changed.opening_hours": "05:00-22:00 -> Mo-Su 05:00-22:00",
"tags_new.addr:postcode": "CM2 8LA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1277 841465",
"tags_new.ref:navads_shell": "NVDS353-12038647"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3323051,
52.058106
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 676397030,
"osm_type": "node",
"ref_coords": [
-1.332286,
52.05811
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags_changed.brand": "Jet -> Shell",
"tags_new.addr:postcode": "OX16 5AQ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1295 369081",
"tags_new.ref:navads_shell": "NVDS353-12594535"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4448081,
53.5835128
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2525252125,
"osm_type": "node",
"ref_coords": [
-2.444821,
53.583503
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "77",
"tags_new.addr:postcode": "BL1 5SX",
"tags_new.addr:street": "Chorley Old Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1204 386494",
"tags_new.ref:navads_shell": "NVDS353-10019243"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5229481,
54.7280399
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 393728587,
"osm_type": "node",
"ref_coords": [
-1.52297,
54.728042
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:postcode": "DH6 5NP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 377 1910",
"tags_new.ref:navads_shell": "NVDS353-12043628"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9768552,
52.2352806
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 29161542,
"osm_type": "node",
"ref_coords": [
-0.976875,
52.235276
],
"ref_distance": 1.4,
"ref_unused_tags.addr:postcode": "NN7 4DE",
"tags.addr:city": "Northampton",
"tags.addr:country": "GB",
"tags.addr:place": "Harpole",
"tags.addr:postcode": "NN7 4AW",
"tags.addr:street": "Weedon Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "South Northamptonshire",
"tags.fhrs:id": "552434",
"tags.fhrs:local_authority_id": "PI/000028691",
"tags.name": "Shell Kislingbury",
"tags_new.phone": "+44 1604 831043",
"tags_new.ref:navads_shell": "NVDS353-12038528"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1488667,
53.6216138
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4235449323,
"osm_type": "node",
"ref_coords": [
-2.148885,
53.621621
],
"ref_distance": 1.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "OL16 2DR",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1706 645534",
"tags_new.ref:navads_shell": "NVDS353-10943394"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4215654,
52.598315
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 482018484,
"osm_type": "node",
"ref_coords": [
-0.421587,
52.598317
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PE8 6HA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1780 784020",
"tags_new.ref:navads_shell": "NVDS353-10019185"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5259549,
53.7809648
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 201078242,
"osm_type": "way",
"ref_coords": [
-1.525967,
53.780976
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Shell",
"tags_new.addr:postcode": "LS10 1QH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 113 271 3219",
"tags_new.ref:navads_shell": "NVDS353-10019749"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9280445,
53.3896279
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 193757991,
"osm_type": "way",
"ref_coords": [
-2.928035,
53.38964
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "224",
"tags_new.addr:postcode": "L15 5AH",
"tags_new.addr:street": "Smithdown Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 734 3023",
"tags_new.ref:navads_shell": "NVDS353-12038587"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1242157,
52.8155043
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 138746307,
"osm_type": "way",
"ref_coords": [
-2.124205,
52.815516
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Total",
"tags_new.addr:housenumber": "59",
"tags_new.addr:postcode": "ST16 2SL",
"tags_new.addr:street": "Eccleshall Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1785 256456",
"tags_new.ref:navads_shell": "NVDS353-12038449"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5865452,
51.4848334
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 272161233,
"osm_type": "way",
"ref_coords": [
-2.586556,
51.484845
],
"ref_distance": 1.5,
"ref_unused_tags.addr:housenumber": "410-422",
"tags.addr:city": "Bristol",
"tags.addr:housename": "Gloucester Road Service Station",
"tags.addr:housenumber": "410-424",
"tags.addr:postcode": "BS7 8TX",
"tags.addr:street": "Gloucester Road",
"tags.addr:suburb": "Horfield",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fhrs:id": "895583",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 117 942 0485",
"tags_new.ref:navads_shell": "NVDS353-12038502"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0012433,
51.6090114
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 240823318,
"osm_type": "way",
"ref_coords": [
-0.001241,
51.608998
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Shell",
"tags.source": "survey",
"tags_new.addr:housenumber": "470",
"tags_new.addr:postcode": "E4 9HH",
"tags_new.addr:street": "Larkshall Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8527 2600",
"tags_new.ref:navads_shell": "NVDS353-12038530"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4331447,
53.1953337
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 200027840,
"osm_type": "way",
"ref_coords": [
-2.433133,
53.195322
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags.building": "canopy",
"tags.name": "Shell",
"tags.source": "bing;survey",
"tags_new.addr:postcode": "CW10 0JB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1606 837038",
"tags_new.ref:navads_shell": "NVDS353-10019682"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2742933,
53.2662632
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 158569170,
"osm_type": "way",
"ref_coords": [
-2.274313,
53.266256
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags.name": "Shell Garage",
"tags_new.addr:postcode": "SK11 9AH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1625 890468",
"tags_new.ref:navads_shell": "NVDS353-10019292"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0996281,
53.2082058
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 154635148,
"osm_type": "way",
"ref_coords": [
-0.099609,
53.208198
],
"ref_distance": 1.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LN9 6NH",
"tags_new.opening_hours": "Mo-Su 07:00-20:00",
"tags_new.phone": "+44 1507 522533",
"tags_new.ref:navads_shell": "NVDS353-10019355"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2262236,
53.4565286
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 188335850,
"osm_type": "way",
"ref_coords": [
-2.226203,
53.456522
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags_new.addr:housenumber": "10",
"tags_new.addr:postcode": "M14 5TQ",
"tags_new.addr:street": "Wilmslow Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 249 0442",
"tags_new.ref:navads_shell": "NVDS353-12038579"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0482313,
52.8544151
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 171894130,
"osm_type": "way",
"ref_coords": [
-3.04821,
52.854421
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "SY11 2RL",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1691 661968",
"tags_new.ref:navads_shell": "NVDS353-10019664"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1501064,
55.9711973
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2267605813,
"osm_type": "node",
"ref_coords": [
-3.150084,
55.971204
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.name": "Shell Leith",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "7",
"tags_new.addr:postcode": "EH6 7LE",
"tags_new.addr:street": "Seafield Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 131 553 8958",
"tags_new.ref:navads_shell": "NVDS353-10019696"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2887921,
53.5376912
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 143905305,
"osm_type": "way",
"ref_coords": [
-2.288769,
53.537687
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "M25 3AJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 798 6337",
"tags_new.ref:navads_shell": "NVDS353-10954519"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1702007,
51.2159344
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 32120883,
"osm_type": "node",
"ref_coords": [
-0.1702,
51.21592
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "19",
"tags_new.addr:postcode": "RH1 5AL",
"tags_new.addr:street": "Horley Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1737 773247",
"tags_new.ref:navads_shell": "NVDS353-10018969"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2571212,
53.6929214
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 361841845,
"osm_type": "way",
"ref_coords": [
-2.257097,
53.692923
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "BB4 7HB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 79 2191 5471",
"tags_new.ref:navads_shell": "NVDS353-12281482"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0257443,
57.6920041
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2002366202,
"osm_type": "node",
"ref_coords": [
-2.025723,
57.692013
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags_new.addr:postcode": "AB43 7ED",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1346 519910",
"tags_new.ref:navads_shell": "NVDS353-10019426"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4365396,
55.0251997
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 452556064,
"osm_type": "way",
"ref_coords": [
-1.436561,
55.025192
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.landuse": "retail",
"tags.name": "shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "NE30 2TU",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 191 257 2791",
"tags_new.ref:navads_shell": "NVDS353-10019381"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3458632,
51.0448016
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 458890020,
"osm_type": "way",
"ref_coords": [
-0.345883,
51.044794
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.layer": "1",
"tags_new.addr:postcode": "RH13 0AR",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1403 730199",
"tags_new.ref:navads_shell": "NVDS353-10019007"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4090654,
53.1912207
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1811911981,
"osm_type": "node",
"ref_coords": [
-3.409048,
53.191231
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.name": "Shell Castleview",
"tags_new.addr:postcode": "LL16 5SU",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1745 816524",
"tags_new.ref:navads_shell": "NVDS353-10019280"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3691205,
50.9672288
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 260729463,
"osm_type": "way",
"ref_coords": [
-1.36914,
50.967237
],
"ref_distance": 1.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.layer": "1",
"tags_new.addr:postcode": "SO50 9NH",
"tags_new.opening_hours": "Mo-Su 05:00-24:00",
"tags_new.phone": "+44 23 8064 1722",
"tags_new.ref:navads_shell": "NVDS353-12042107"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0801459,
52.1193867
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1428330097,
"osm_type": "node",
"ref_coords": [
-4.080141,
52.119372
],
"ref_distance": 1.7,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "SA48 7JA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 07:30-21:00; Sa 08:00-20:00; Su 09:00-19:30",
"tags_new.phone": "+44 1570 422549",
"tags_new.ref:navads_shell": "NVDS353-10019086"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7856837,
51.3300162
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3197123489,
"osm_type": "node",
"ref_coords": [
-0.785707,
51.33002
],
"ref_distance": 1.7,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:housenumber": "86",
"tags_new.addr:postcode": "GU17 0AE",
"tags_new.addr:street": "London Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44127634749",
"tags_new.ref:navads_shell": "NVDS353-12038436"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1023944,
51.5407231
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 305488463,
"osm_type": "node",
"ref_coords": [
-0.102396,
51.540708
],
"ref_distance": 1.7,
"tags.amenity": "fuel",
"tags.created_by": "Merkaartor 0.11",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "276",
"tags_new.addr:postcode": "N1 2TZ",
"tags_new.addr:street": "Upper Street",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7288 0453",
"tags_new.ref:navads_shell": "NVDS353-10018902"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9380654,
52.5591332
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 249277075,
"osm_type": "node",
"ref_coords": [
-1.938044,
52.559141
],
"ref_distance": 1.7,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "333",
"tags_new.addr:postcode": "B43 7AP",
"tags_new.addr:street": "Birmingham Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 121 358 7832",
"tags_new.ref:navads_shell": "NVDS353-12038505"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5983236,
51.301184
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 250123742,
"osm_type": "node",
"ref_coords": [
0.598334,
51.301198
],
"ref_distance": 1.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags_new.addr:postcode": "ME14 3HT",
"tags_new.phone": "+44 1622 632800",
"tags_new.ref:navads_shell": "NVDS353-10018983"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3427644,
53.1927311
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 298006841,
"osm_type": "node",
"ref_coords": [
-1.342752,
53.192745
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.name": "Red House Service Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "S44 5QS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-21:00; Sa-Su 08:00-20:00",
"tags_new.phone": "+44 1246 858488",
"tags_new.ref:navads_shell": "NVDS353-10019370"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.912145,
52.4725957
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 79515893,
"osm_type": "way",
"ref_coords": [
-1.912134,
52.47261
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:1_25": "no",
"tags.fuel:1_50": "no",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:cng": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:e10": "no",
"tags.fuel:e85": "no",
"tags.fuel:electricity": "no",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:hgv_diesel": "no",
"tags.fuel:lpg": "no",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "no",
"tags.source": "survey",
"tags_new.addr:postcode": "B15 1LS",
"tags_new.phone": "+44 121 643 2348",
"tags_new.ref:navads_shell": "NVDS353-10019138"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2447273,
51.4958546
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 256508628,
"osm_type": "node",
"ref_coords": [
-0.244702,
51.495853
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "372",
"tags_new.addr:postcode": "W6 0XF",
"tags_new.addr:street": "Goldhawk Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8741 2549",
"tags_new.ref:navads_shell": "NVDS353-12038569"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3542521,
51.6387882
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 407064956,
"osm_type": "way",
"ref_coords": [
-2.354227,
51.638785
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.layer": "1",
"tags_new.addr:postcode": "GL12 7DF",
"tags_new.opening_hours": "Mo-Su 07:00-20:00",
"tags_new.phone": "+44 1453 843687",
"tags_new.ref:navads_shell": "NVDS353-10019517"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.2996238,
51.3688106
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 343457270,
"osm_type": "node",
"ref_coords": [
1.29964573,
51.36880249
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:e10": "no",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "361",
"tags_new.addr:postcode": "CT7 9TZ",
"tags_new.addr:street": "Canterbury Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1843 846959",
"tags_new.ref:navads_shell": "NVDS353-12038580"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2821573,
51.5617282
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2256219332,
"osm_type": "node",
"ref_coords": [
-0.28217368,
51.56171582
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HA9 0EW",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8902 8928",
"tags_new.ref:navads_shell": "NVDS353-12038630"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.3314924,
51.3051859
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 393199212,
"osm_type": "node",
"ref_coords": [
0.331475,
51.305174
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Pilgrims Way",
"tags_new.addr:postcode": "TN15 7RR",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1732 780508",
"tags_new.ref:navads_shell": "NVDS353-12038649"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6517283,
52.8175763
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 319518250,
"osm_type": "node",
"ref_coords": [
-1.651709,
52.817565
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "DE13 0RF",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1283 541797",
"tags_new.ref:navads_shell": "NVDS353-10019149"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3572671,
51.6620067
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4278237549,
"osm_type": "node",
"ref_coords": [
-0.35724086,
51.66200504
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "WD25 0EH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1923 630412",
"tags_new.ref:navads_shell": "NVDS353-12038485"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7379575,
53.3899313
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 17415835,
"osm_type": "node",
"ref_coords": [
-2.737954,
53.389915
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "184-186",
"tags_new.addr:postcode": "WA8 5AZ",
"tags_new.addr:street": "Lunts Heath Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 422 0994",
"tags_new.ref:navads_shell": "NVDS353-12038640"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3445722,
54.4964998
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 368200875,
"osm_type": "node",
"ref_coords": [
-1.344564,
54.496484
],
"ref_distance": 1.8,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TS15 9LJ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1642 793900",
"tags_new.ref:navads_shell": "NVDS353-10019363"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4934861,
50.7008453
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 292019900,
"osm_type": "node",
"ref_coords": [
-3.493477,
50.700861
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "399",
"tags_new.addr:postcode": "EX2 6HD",
"tags_new.addr:street": "Topsham Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1392 875499",
"tags_new.ref:navads_shell": "NVDS353-10019068"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.9875398,
51.3255105
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 167355546,
"osm_type": "way",
"ref_coords": [
0.987566,
51.325514
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags_new.addr:postcode": "ME13 9EL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1227 750216",
"tags_new.ref:navads_shell": "NVDS353-10018987"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.094383,
53.542222
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5092387280,
"osm_type": "node",
"ref_coords": [
-2.094403,
53.54221
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.source": "survey",
"tags_new.addr:housenumber": "129-131",
"tags_new.addr:postcode": "OL4 1JW",
"tags_new.addr:street": "Lees Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 161 628 7320",
"tags_new.ref:navads_shell": "NVDS353-12038532"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8944173,
53.2846784
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 696096963,
"osm_type": "node",
"ref_coords": [
-2.89441,
53.284662
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CH65 4AX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 356 0670",
"tags_new.ref:navads_shell": "NVDS353-10019670"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4646959,
53.4961177
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1780664493,
"osm_type": "node",
"ref_coords": [
-1.464685,
53.496102
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "S74 0DP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1226 746475",
"tags_new.ref:navads_shell": "NVDS353-10019747"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7865927,
50.7367335
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 303820870,
"osm_type": "node",
"ref_coords": [
-1.786581,
50.736718
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.wheelchair": "limited",
"tags.wheelchair:description": "Steep ramp up to door",
"tags_new.addr:housenumber": "58",
"tags_new.addr:postcode": "BH23 1PQ",
"tags_new.addr:street": "Barrack Rd",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1202 476382",
"tags_new.ref:navads_shell": "NVDS353-10019048"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2492471,
51.5068598
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 276091914,
"osm_type": "node",
"ref_coords": [
-0.24925,
51.506877
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:housenumber": "30",
"tags_new.addr:postcode": "W3 7RS",
"tags_new.addr:street": "The Vale",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8749 9096",
"tags_new.ref:navads_shell": "NVDS353-12038411"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.4353631,
51.3186643
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 260128447,
"osm_type": "node",
"ref_coords": [
0.435336,
51.318668
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Ham Hill",
"tags.operator": "Shell",
"tags_new.addr:postcode": "ME6 5LB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1634 241639",
"tags_new.ref:navads_shell": "NVDS353-10018858"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0670866,
55.9773498
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 416475809,
"osm_type": "node",
"ref_coords": [
-4.067061,
55.97734
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Duncansfield",
"tags.operator": "Shell",
"tags.shop": "yes",
"tags_new.addr:postcode": "G65 9AE",
"tags_new.phone": "+44 1236 827277",
"tags_new.ref:navads_shell": "NVDS353-10019450"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.2980812,
52.0976814
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 375900191,
"osm_type": "way",
"ref_coords": [
1.298055,
52.097688
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.layer": "1",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags_new.addr:postcode": "IP12 4LQ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1394 445070",
"tags_new.ref:navads_shell": "NVDS353-10019194"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4618394,
50.9189707
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 172706159,
"osm_type": "way",
"ref_coords": [
-1.461812,
50.918973
],
"ref_distance": 1.9,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.operator": "Shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "SO15 0LT",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 23 8077 8375",
"tags_new.ref:navads_shell": "NVDS353-10019032"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0167545,
54.9736035
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1570090276,
"osm_type": "node",
"ref_coords": [
-2.016783,
54.97361
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "NE45 5LB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-21:00; Su 07:30-20:00",
"tags_new.phone": "+44 1434 632068",
"tags_new.ref:navads_shell": "NVDS353-10019361"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2585887,
52.2284002
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 416626357,
"osm_type": "node",
"ref_coords": [
-0.25861738,
52.22840208
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.operator": "Murco",
"tags_new.addr:postcode": "PE19 7JZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1480 472353",
"tags_new.ref:navads_shell": "NVDS353-12492210"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1373181,
51.8601522
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 247469794,
"osm_type": "node",
"ref_coords": [
-3.137343,
51.860161
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "NP8 1DE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1873 811745",
"tags_new.ref:navads_shell": "NVDS353-10019675"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2135672,
53.4199013
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 307747197,
"osm_type": "node",
"ref_coords": [
-2.213543,
53.419891
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "M19 1RD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 432 5708",
"tags_new.ref:navads_shell": "NVDS353-10019248"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.0528812,
52.5330058
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 248030653,
"osm_type": "way",
"ref_coords": [
1.052885,
52.532988
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.branch_ref": "0684",
"tags.building": "canopy",
"tags.layer": "1",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NR17 1PU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-23:00; Sa-Su 06:00-22:00",
"tags_new.phone": "+44 1953 455550",
"tags_new.ref:navads_shell": "NVDS353-10019002"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6424096,
51.5231189
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4360884473,
"osm_type": "node",
"ref_coords": [
-0.642423,
51.523103
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "survey",
"tags_new.addr:housenumber": "56",
"tags_new.addr:postcode": "SL1 6JY",
"tags_new.addr:street": "Burnham Lane",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-22:00",
"tags_new.phone": "+44 1628 667320",
"tags_new.ref:navads_shell": "NVDS353-10019501"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.619845,
53.5936442
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1717746124,
"osm_type": "node",
"ref_coords": [
-1.619871,
53.593635
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.maxheight": "4.4",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HD8 9HU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1484 863584",
"tags_new.ref:navads_shell": "NVDS353-12281658"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8325222,
55.5436258
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3454469789,
"osm_type": "node",
"ref_coords": [
-2.832536,
55.543642
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "TD7 4BA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1750 725999",
"tags_new.ref:navads_shell": "NVDS353-11292511"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1838939,
53.0114151
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 243309400,
"osm_type": "way",
"ref_coords": [
-2.183892,
53.011397
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "ST4 2QX",
"tags_new.phone": "+44 1782 413824",
"tags_new.ref:navads_shell": "NVDS353-12038486"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2555912,
51.3324499
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 427504822,
"osm_type": "node",
"ref_coords": [
-1.255598,
51.332432
],
"ref_distance": 2.0,
"tags.amenity": "fuel",
"tags.source": "GPS",
"tags_new.addr:postcode": "RG20 4TA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1635 299437",
"tags_new.ref:navads_shell": "NVDS353-12247112"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1174637,
51.3009908
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 159089720,
"osm_type": "way",
"ref_coords": [
-0.117479,
51.300975
],
"ref_distance": 2.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags_new.addr:housenumber": "215",
"tags_new.addr:postcode": "CR5 1EN",
"tags_new.addr:street": "Coulsdon Road",
"tags_new.opening_hours": "Mo-Su 06:30-22:30",
"tags_new.phone": "+44 1737 550320",
"tags_new.ref:navads_shell": "NVDS353-10018935"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4357226,
51.6500312
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2961163693,
"osm_type": "node",
"ref_coords": [
-0.43571,
51.650048
],
"ref_distance": 2.1,
"tags.amenity": "fuel",
"tags.name": "Shell Petrol Station",
"tags_new.addr:housenumber": "185-187",
"tags_new.addr:postcode": "WD3 3ED",
"tags_new.addr:street": "Watford Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1923 246199",
"tags_new.ref:navads_shell": "NVDS353-10018879"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.996012,
53.4390164
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 296084337,
"osm_type": "way",
"ref_coords": [
-2.995995,
53.439032
],
"ref_distance": 2.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "74-80",
"tags_new.addr:postcode": "L20 1AD",
"tags_new.addr:street": "Derby Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 944 5330",
"tags_new.ref:navads_shell": "NVDS353-11054992"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4105419,
53.5971448
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 469236682,
"osm_type": "node",
"ref_coords": [
-2.410549,
53.597163
],
"ref_distance": 2.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "BL2 3BH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1204 595026",
"tags_new.ref:navads_shell": "NVDS353-10019311"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.3851098,
55.9066496
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 275056048,
"osm_type": "node",
"ref_coords": [
-4.38508,
55.906658
],
"ref_distance": 2.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "G81 2XT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 141 952 7149",
"tags_new.ref:navads_shell": "NVDS353-10395625"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.065555,
55.8570338
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 668749098,
"osm_type": "node",
"ref_coords": [
-3.065556,
55.857015
],
"ref_distance": 2.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "EH23 4LZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1875 823336",
"tags_new.ref:navads_shell": "NVDS353-10019459"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2474068,
53.5278359
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 294023948,
"osm_type": "node",
"ref_coords": [
-2.247375,
53.527832
],
"ref_distance": 2.1,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10b",
"tags_new.addr:postcode": "M8 4LY",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 740 6893",
"tags_new.ref:navads_shell": "NVDS353-10954892"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2681383,
51.7551117
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 400903640,
"osm_type": "node",
"ref_coords": [
-0.268109,
51.755105
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "608",
"tags_new.addr:postcode": "AL4 0HP",
"tags_new.addr:street": "Hatfield Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1727 860804",
"tags_new.ref:navads_shell": "NVDS353-10018922"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1476268,
51.892939
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 26519552,
"osm_type": "node",
"ref_coords": [
-1.147634,
51.892958
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags.name": "Shell",
"tags_new.addr:postcode": "OX26 6HB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1869 253983",
"tags_new.ref:navads_shell": "NVDS353-10019125"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1696326,
56.1974883
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 27273341,
"osm_type": "node",
"ref_coords": [
-3.169638,
56.197469
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KY7 5PS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1592 750151",
"tags_new.ref:navads_shell": "NVDS353-10019478"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3504678,
51.5673084
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 224756246,
"osm_type": "way",
"ref_coords": [
-0.350479,
51.56729
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "140",
"tags_new.addr:postcode": "HA2 0EG",
"tags_new.addr:street": "Northolt Road",
"tags_new.opening_hours": "Mo-Sa 06:30-22:00; Su 08:00-19:00",
"tags_new.phone": "+44 20 8423 1955",
"tags_new.ref:navads_shell": "NVDS353-12140982"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2317687,
53.415062
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 33114950,
"osm_type": "node",
"ref_coords": [
-2.231792,
53.415076
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "761-765",
"tags_new.addr:postcode": "M20 6RN",
"tags_new.addr:street": "Wilmslow Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-24:00",
"tags_new.phone": "+44 161 448 9557",
"tags_new.ref:navads_shell": "NVDS353-10019236"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2872143,
50.8284466
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 352783561,
"osm_type": "node",
"ref_coords": [
-0.28719072,
50.82845953
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags_new.addr:postcode": "BN43 5LD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-23:00; Sa-Su 07:00-22:00",
"tags_new.phone": "+44 1273 462140",
"tags_new.ref:navads_shell": "NVDS353-12038413"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.3541185,
50.916377
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 157539474,
"osm_type": "way",
"ref_coords": [
-3.354127,
50.916396
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "no",
"tags.shop": "yes",
"tags_new.addr:postcode": "EX16 7HD",
"tags_new.opening_hours": "Mo-Su 05:00-22:00",
"tags_new.phone": "+44 1884 820062",
"tags_new.ref:navads_shell": "NVDS353-10019120"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4343401,
52.725122
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 149627557,
"osm_type": "way",
"ref_coords": [
-2.434354,
52.72514
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "TF2 8JY",
"tags_new.phone": "+44 1952 677166",
"tags_new.ref:navads_shell": "NVDS353-10019665"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1125685,
52.1986417
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 430531668,
"osm_type": "way",
"ref_coords": [
0.112557,
52.198623
],
"ref_distance": 2.2,
"tags.addr:city": "Cambridge",
"tags.addr:housenumber": "54",
"tags.addr:postcode": "CB3 9EY",
"tags.addr:street": "Newnham Road",
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fhrs:id": "569438",
"tags.layer": "1",
"tags.name": "Shell Newnham",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-23:00; Su 08:00-23:00",
"tags_new.phone": "+44 1223 356475",
"tags_new.ref:navads_shell": "NVDS353-10019209"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9520366,
53.3803845
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 250043505,
"osm_type": "node",
"ref_coords": [
-2.952058,
53.3804
],
"ref_distance": 2.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "L17 4JP",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 727 8185",
"tags_new.ref:navads_shell": "NVDS353-10019541"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5330138,
51.3639151
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2452261963,
"osm_type": "node",
"ref_coords": [
-0.53304,
51.363927
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "KT16 0PG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 08:00-22:00",
"tags_new.phone": "+44 1932 873758",
"tags_new.ref:navads_shell": "NVDS353-10018904"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6305851,
53.6621276
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 570762758,
"osm_type": "node",
"ref_coords": [
-2.630612,
53.662115
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.name": "Texaco",
"tags_new.addr:postcode": "PR7 1PZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1257 275577",
"tags_new.ref:navads_shell": "NVDS353-12404694"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4747394,
56.7071299
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4110839690,
"osm_type": "node",
"ref_coords": [
-2.47476,
56.707147
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "DD10 8AJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:45",
"tags_new.phone": "+44 1674 671525",
"tags_new.ref:navads_shell": "NVDS353-10019470"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.6942699,
55.5066284
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 392170826,
"osm_type": "way",
"ref_coords": [
-3.694297,
55.506642
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags_new.addr:postcode": "ML12 6RG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1864 502850",
"tags_new.ref:navads_shell": "NVDS353-10019611"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4197686,
51.5394827
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 300464567,
"osm_type": "way",
"ref_coords": [
-2.419798,
51.539492
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Stanshawe Service Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BS37 4BG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-22:00; Sa-Su 08:00-22:00",
"tags_new.phone": "+44 1454 318962",
"tags_new.ref:navads_shell": "NVDS353-10019099"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3888857,
53.3720101
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 692243182,
"osm_type": "node",
"ref_coords": [
-1.388918,
53.372003
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell Crest",
"tags_new.addr:housenumber": "320",
"tags_new.addr:postcode": "S13 9BX",
"tags_new.addr:street": "Handsworth Road",
"tags_new.phone": "+44 114 269 6895",
"tags_new.ref:navads_shell": "NVDS353-10019347"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3358084,
53.0688806
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 220717859,
"osm_type": "way",
"ref_coords": [
-2.335774,
53.068882
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Total",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "CW2 5PS",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1270 878451",
"tags_new.ref:navads_shell": "NVDS353-12038425"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6699785,
53.6765462
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 317269265,
"osm_type": "node",
"ref_coords": [
-1.670011,
53.676554
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:housenumber": "791",
"tags_new.addr:postcode": "WF13 3LR",
"tags_new.addr:street": "Huddersfield Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1924 496366",
"tags_new.ref:navads_shell": "NVDS353-12038417"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5016394,
52.0160473
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 339586410,
"osm_type": "way",
"ref_coords": [
-0.501611,
52.016036
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "roof",
"tags.layer": "1",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "101",
"tags_new.addr:postcode": "MK45 1BE",
"tags_new.addr:street": "Ampthill Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 77 7183 4164",
"tags_new.ref:navads_shell": "NVDS353-10019639"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7953715,
53.8352347
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 343106523,
"osm_type": "node",
"ref_coords": [
-1.79536,
53.835215
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.name": "Shell Saltaire",
"tags_new.addr:postcode": "BD18 4DJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1274 592644",
"tags_new.ref:navads_shell": "NVDS353-10019339"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0844117,
53.3220429
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 515955665,
"osm_type": "node",
"ref_coords": [
-3.084409,
53.322022
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "CH60 3RY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 342 7512",
"tags_new.ref:navads_shell": "NVDS353-10019287"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.097329,
53.5750544
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5092559660,
"osm_type": "node",
"ref_coords": [
-2.097294,
53.575051
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "OL2 8RD",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1706 841354",
"tags_new.ref:navads_shell": "NVDS353-12038471"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2853656,
51.9545874
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1743760752,
"osm_type": "node",
"ref_coords": [
-0.285392,
51.954574
],
"ref_distance": 2.3,
"tags.amenity": "fuel",
"tags.name": "shell petrol station",
"tags_new.addr:postcode": "SG5 2TY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1462 450277",
"tags_new.ref:navads_shell": "NVDS353-10019011"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.2809839,
52.6104283
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 282467830,
"osm_type": "way",
"ref_coords": [
1.280971,
52.610448
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags.fuel:octane_95": "yes",
"tags.source": "Bing",
"tags_new.addr:postcode": "NR4 6LA",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1603 504047",
"tags_new.ref:navads_shell": "NVDS353-10019208"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1425031,
52.9554064
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 539358498,
"osm_type": "node",
"ref_coords": [
-1.14247102,
52.95541534
],
"ref_distance": 2.4,
"tags.addr:street": "Huntingdon Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "320",
"tags_new.addr:postcode": "NG1 3LH",
"tags_new.phone": "+44 115 958 7461",
"tags_new.ref:navads_shell": "NVDS353-12038625"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5927731,
51.9766125
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 302039184,
"osm_type": "node",
"ref_coords": [
0.592795,
51.976596
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CO9 3HP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-22:00",
"tags_new.phone": "+44 1787 462795",
"tags_new.ref:navads_shell": "NVDS353-10019017"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2661656,
51.632132
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 763082275,
"osm_type": "node",
"ref_coords": [
-0.266172,
51.632111
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.name": "Shell London Gateway",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NW7 3HB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 00:00-24:00; Sa 08:00-17:30; Su 10:00-17:00",
"tags_new.phone": "+44 20 8959 4514",
"tags_new.ref:navads_shell": "NVDS353-10018912"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5830059,
51.446252
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 128553819,
"osm_type": "way",
"ref_coords": [
-2.583032,
51.446238
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BS3 4AB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 117 933 2972",
"tags_new.ref:navads_shell": "NVDS353-11035557"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.747292,
54.6600056
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 337616130,
"osm_type": "way",
"ref_coords": [
-2.74727,
54.660023
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Tynefield Filling Station",
"tags_new.addr:postcode": "CA11 8HU",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1768 892492",
"tags_new.ref:navads_shell": "NVDS353-10019322"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3193886,
51.5608455
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2377798823,
"osm_type": "node",
"ref_coords": [
-0.319411,
51.560829
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags_changed.brand": "Esso -> Shell",
"tags_new.addr:housenumber": "154",
"tags_new.addr:postcode": "HA0 3HB",
"tags_new.addr:street": "Watford Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 3653 0762",
"tags_new.ref:navads_shell": "NVDS353-12430240"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.633701,
52.7974423
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 274837164,
"osm_type": "way",
"ref_coords": [
-1.63373,
52.797455
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "Bing",
"tags_new.addr:postcode": "DE15 9AW",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-24:00",
"tags_new.phone": "+44 1283 541575",
"tags_new.ref:navads_shell": "NVDS353-10019116"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2277515,
51.4110306
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 134292456,
"osm_type": "way",
"ref_coords": [
-0.227717,
51.411028
],
"ref_distance": 2.4,
"tags.addr:housenumber": "187",
"tags.addr:postcode": "SW20 8RE",
"tags.addr:street": "Worple Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fhrs:id": "703974",
"tags.name": "Shell",
"tags.toilets": "yes",
"tags_changed.opening_hours": "Mo-Fr 10:00-18:00 -> 24/7",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8946 5426",
"tags_new.ref:navads_shell": "NVDS353-10018859"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9985971,
52.0301591
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1847344550,
"osm_type": "node",
"ref_coords": [
-1.998631,
52.030165
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "WR11 7QP",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1745 353320",
"tags_new.ref:navads_shell": "NVDS353-12193938"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.531811,
52.3993086
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3602878293,
"osm_type": "node",
"ref_coords": [
-0.531834,
52.399292
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.source": "Personal Knowledge",
"tags_new.addr:postcode": "NN14 4PB",
"tags_new.opening_hours": "Mo-Su 08:00-22:00",
"tags_new.phone": "+44 1832 734082",
"tags_new.ref:navads_shell": "NVDS353-11313365"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5710319,
53.7551083
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 402813509,
"osm_type": "node",
"ref_coords": [
-1.571006,
53.755124
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "LS27 8PU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 113 252 5997",
"tags_new.ref:navads_shell": "NVDS353-12279126"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1471947,
51.4656787
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1298882387,
"osm_type": "node",
"ref_coords": [
0.14723,
51.465679
],
"ref_distance": 2.4,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "132-136",
"tags_new.addr:postcode": "DA7 5AH",
"tags_new.addr:street": "Long Lane",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-22:00; Sa-Su 07:00-22:00",
"tags_new.phone": "+44 20 8303 5239",
"tags_new.ref:navads_shell": "NVDS353-12038614"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0571108,
52.607276
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 519388313,
"osm_type": "way",
"ref_coords": [
0.057126,
52.607296
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "PE13 4AA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1945 450222",
"tags_new.ref:navads_shell": "NVDS353-10019755"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5617201,
51.4428033
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 204611157,
"osm_type": "way",
"ref_coords": [
-2.561697,
51.44282
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.operator": "Shell",
"tags.source": "survey",
"tags.source:outline": "Bing",
"tags_new.addr:postcode": "BS4 3EX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 117 933 2536",
"tags_new.ref:navads_shell": "NVDS353-10019673"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0634347,
51.4436987
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 263037188,
"osm_type": "way",
"ref_coords": [
0.063467,
51.443708
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.source": "Bing",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "176",
"tags_new.addr:postcode": "SE9 2TD",
"tags_new.addr:street": "Footscray Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 20 8294 2477",
"tags_new.ref:navads_shell": "NVDS353-12038551"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3912241,
51.7929003
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3189329545,
"osm_type": "node",
"ref_coords": [
-0.39125068,
51.79291552
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "AL3 6LB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1582 794942",
"tags_new.ref:navads_shell": "NVDS353-10018880"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0127888,
53.3799715
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2100648679,
"osm_type": "node",
"ref_coords": [
-3.012765,
53.379989
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.source": "photograph",
"tags_new.addr:housenumber": "117",
"tags_new.addr:postcode": "CH41 9BW",
"tags_new.addr:street": "New Chester Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 647 0245",
"tags_new.ref:navads_shell": "NVDS353-10019699"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4492682,
51.6179744
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 104418409,
"osm_type": "way",
"ref_coords": [
-3.44927,
51.617997
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.source": "Bing;survey",
"tags_new.addr:postcode": "CF40 1JR",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1443 432319",
"tags_new.ref:navads_shell": "NVDS353-10019090"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6201736,
51.5210174
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 106196206,
"osm_type": "way",
"ref_coords": [
-2.620138,
51.521012
],
"ref_distance": 2.5,
"tags.addr:city": "Bristol",
"tags.addr:postcode": "BS10 7TG",
"tags.addr:street": "Cribbs Causeway",
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fhrs:id": "128177",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags.payment:cash": "yes",
"tags.source:outline": "Bing",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 117 950 4324",
"tags_new.ref:navads_shell": "NVDS353-10019091"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4275924,
53.5859103
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 691382250,
"osm_type": "node",
"ref_coords": [
-2.427596,
53.585933
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "BL1 2EX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1204 532758",
"tags_new.ref:navads_shell": "NVDS353-10019230"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1870475,
51.9063588
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 119710963,
"osm_type": "node",
"ref_coords": [
-0.187084,
51.906355
],
"ref_distance": 2.5,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SG1 5ES",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1483 745486",
"tags_new.ref:navads_shell": "NVDS353-12038554"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.232166,
55.90021
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 33131575,
"osm_type": "node",
"ref_coords": [
-3.232126,
55.900215
],
"ref_distance": 2.6,
"ref_unused_tags.addr:street": "Dreghorn Link",
"tags.addr:county": "Lothian",
"tags.addr:housenumber": "50",
"tags.addr:postcode": "EH13 9QR",
"tags.addr:street": "Dreghorn Link, City By Pass",
"tags.addr:town": "Edinburgh",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.designation": "685",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Dreghorn",
"tags.operator": "Shell",
"tags.telephone": "+44 (0)131 4410000",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 131 441 1792",
"tags_new.ref:navads_shell": "NVDS353-10018823"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3451106,
52.7127327
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3721812310,
"osm_type": "node",
"ref_coords": [
-1.345087,
52.712751
],
"ref_distance": 2.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "survey",
"tags_new.addr:housenumber": "250",
"tags_new.addr:postcode": "LE67 4BL",
"tags_new.addr:street": "Bardon Road",
"tags_new.phone": "+44 1530 839280",
"tags_new.ref:navads_shell": "NVDS353-12038466"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0109983,
52.2699598
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 363712285,
"osm_type": "way",
"ref_coords": [
-0.010976,
52.269941
],
"ref_distance": 2.6,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CB3 8WU",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1954 267682",
"tags_new.ref:navads_shell": "NVDS353-10367812"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2619057,
51.4147895
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 43169774,
"osm_type": "way",
"ref_coords": [
-2.261941,
51.414782
],
"ref_distance": 2.6,
"tags.amenity": "fuel",
"tags.name": "Box Garage",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "SN13 8AA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1225 744123",
"tags_new.ref:navads_shell": "NVDS353-12449960"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.147408,
51.4507618
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 286315792,
"osm_type": "node",
"ref_coords": [
-0.14742,
51.450784
],
"ref_distance": 2.6,
"tags.addr:housenumber": "75",
"tags.addr:postcode": "SW12 9DP",
"tags.addr:street": "Balham Hill",
"tags.amenity": "fuel",
"tags.fhrs:id": "298293",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8673 6549",
"tags_new.ref:navads_shell": "NVDS353-10018831"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7675585,
51.4855647
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 275802994,
"osm_type": "way",
"ref_coords": [
-2.767521,
51.485567
],
"ref_distance": 2.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BS20 7DE",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-21:00",
"tags_new.phone": "+44 1275 847907",
"tags_new.ref:navads_shell": "NVDS353-12140980"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5025169,
51.4363783
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5082555259,
"osm_type": "node",
"ref_coords": [
-0.502479,
51.436378
],
"ref_distance": 2.6,
"tags.addr:city": "Staines",
"tags.addr:housenumber": "93-101",
"tags.addr:postcode": "TW18 4HN",
"tags.addr:street": "London Road",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.phone": "+44 1784 454476",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10018913"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0048999,
56.1922618
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 133269459,
"osm_type": "way",
"ref_coords": [
-3.004885,
56.192284
],
"ref_distance": 2.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell Bawbee",
"tags_new.addr:postcode": "KY8 3AB",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1333 439931",
"tags_new.ref:navads_shell": "NVDS353-10019473"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4039541,
50.9531451
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 28179497,
"osm_type": "node",
"ref_coords": [
-1.403917,
50.953141
],
"ref_distance": 2.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_102": "yes",
"tags.fuel:octane_91": "yes",
"tags.operator": "Shell UK",
"tags.shop": "yes",
"tags_new.addr:postcode": "SO16 7LQ",
"tags_new.phone": "+44 23 8076 6377",
"tags_new.ref:navads_shell": "NVDS353-12038465"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9043934,
53.2776846
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 696096252,
"osm_type": "node",
"ref_coords": [
-2.904371,
53.277665
],
"ref_distance": 2.6,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "118",
"tags_new.addr:postcode": "CH65 6TF",
"tags_new.addr:street": "Whitby Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 355 2523",
"tags_new.ref:navads_shell": "NVDS353-10019316"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.833467,
51.2892144
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 216445891,
"osm_type": "way",
"ref_coords": [
-0.833472,
51.289238
],
"ref_distance": 2.7,
"tags.addr:city": "Fleet",
"tags.addr:country": "GB",
"tags.addr:housenumber": "22",
"tags.addr:postcode": "GU51 4QG",
"tags.addr:street": "Fleet Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Fleet",
"tags.operator": "Shell",
"tags.shop": "convenience",
"tags.store_ref": "424",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1252 617577",
"tags_new.ref:navads_shell": "NVDS353-10019021"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0477001,
55.8712254
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 355845730,
"osm_type": "node",
"ref_coords": [
-3.04766,
55.871217
],
"ref_distance": 2.7,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "EH22 4DN",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 131 660 5892",
"tags_new.ref:navads_shell": "NVDS353-10019584"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6764918,
57.23239
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1750768501,
"osm_type": "node",
"ref_coords": [
-2.676536,
57.232387
],
"ref_distance": 2.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Lonenwell",
"tags_new.addr:postcode": "AB33 8ED",
"tags_new.opening_hours": "Mo-Sa 07:00-22:00; Su 08:00-22:00",
"tags_new.phone": "+44 1975 562215",
"tags_new.ref:navads_shell": "NVDS353-10019418"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.2721741,
54.2108487
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 314794313,
"osm_type": "way",
"ref_coords": [
-3.272148,
54.21083
],
"ref_distance": 2.7,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:diesel": "2",
"tags.fuel:gas": "no",
"tags.fuel:solid": "5",
"tags.fuel:unleaded": "2",
"tags.name": "Wharton's Garage",
"tags_new.addr:postcode": "LA18 5BB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 00:00-24:00; Su 07:00-22:00",
"tags_new.phone": "+44 1229 773771",
"tags_new.ref:navads_shell": "NVDS353-11305451"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3690075,
51.4078376
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2073075814,
"osm_type": "node",
"ref_coords": [
-0.369031,
51.407857
],
"ref_distance": 2.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Parkhurst",
"tags.operator": "Shell",
"tags.source": "Shell.com",
"tags_new.addr:housenumber": "193",
"tags_new.addr:postcode": "KT8 1SE",
"tags_new.addr:street": "Hurst Road",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 20 8979 0409",
"tags_new.ref:navads_shell": "NVDS353-10018900"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.426703,
52.6314673
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 283566566,
"osm_type": "node",
"ref_coords": [
1.426701,
52.631443
],
"ref_distance": 2.7,
"tags.amenity": "fuel",
"tags.fuel:lpg": "no",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NR13 5AR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1603 713734",
"tags_new.ref:navads_shell": "NVDS353-12038447"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1561124,
52.9690429
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 216699239,
"osm_type": "way",
"ref_coords": [
-1.156122,
52.969019
],
"ref_distance": 2.7,
"tags.addr:postcode": "NG7 6JN",
"tags.addr:street": "Sherwood Rise",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source:postcode": "ONS",
"tags_new.phone": "+44 115 962 4306",
"tags_new.ref:navads_shell": "NVDS353-12038584"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0888994,
57.1145687
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 172461426,
"osm_type": "way",
"ref_coords": [
-2.088872,
57.114549
],
"ref_distance": 2.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.shop": "yes",
"tags_new.addr:postcode": "AB12 3JX",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1224 874629",
"tags_new.ref:navads_shell": "NVDS353-10019430"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0428303,
52.9135318
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2347257289,
"osm_type": "node",
"ref_coords": [
-3.042793,
52.913542
],
"ref_distance": 2.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SY11 3EN",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1691 671953",
"tags_new.ref:navads_shell": "NVDS353-10019214"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0905611,
50.9888095
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 429192746,
"osm_type": "way",
"ref_coords": [
0.090599,
50.988816
],
"ref_distance": 2.8,
"tags.addr:city": "Maresfield",
"tags.addr:postcode": "TN22 5EP",
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1825 767883",
"tags_new.ref:navads_shell": "NVDS353-12038419"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3034721,
51.3754518
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 189196569,
"osm_type": "way",
"ref_coords": [
-0.303433,
51.375456
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Ace of Spades",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KT6 5AT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8397 5170",
"tags_new.ref:navads_shell": "NVDS353-10018860"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.6962023,
51.5581658
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 316936004,
"osm_type": "node",
"ref_coords": [
0.696233,
51.55815
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "96-118",
"tags_new.addr:postcode": "SS2 6PL",
"tags_new.addr:street": "Prince Avenue",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1702 436065",
"tags_new.ref:navads_shell": "NVDS353-10018848"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2640893,
52.5822418
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 90848936,
"osm_type": "way",
"ref_coords": [
-0.264052,
52.582252
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Westwood Filling Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PE3 9TX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1733 331640",
"tags_new.ref:navads_shell": "NVDS353-10019212"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3939696,
51.5978911
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1312678803,
"osm_type": "node",
"ref_coords": [
-0.39393868,
51.597907
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "21",
"tags_new.addr:postcode": "HA5 2AF",
"tags_new.addr:street": "Pinner Green",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8966 9754",
"tags_new.ref:navads_shell": "NVDS353-10018874"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3639185,
52.7453342
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 624669328,
"osm_type": "node",
"ref_coords": [
-1.363955,
52.745346
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "LE67 5AW",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1530 832442",
"tags_new.ref:navads_shell": "NVDS353-12458981"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.9151415,
56.225235
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 560053094,
"osm_type": "node",
"ref_coords": [
-3.91513359,
56.22525975
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "FK15 0NB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1786 822696",
"tags_new.ref:navads_shell": "NVDS353-10019599"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.022431,
51.3770958
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 246488125,
"osm_type": "node",
"ref_coords": [
-0.022414,
51.377073
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.7",
"tags_new.addr:housenumber": "171",
"tags_new.addr:postcode": "BR4 0LU",
"tags_new.addr:street": "High Street",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 20 8777 2757",
"tags_new.ref:navads_shell": "NVDS353-12038639"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7303446,
52.4023282
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3887367217,
"osm_type": "node",
"ref_coords": [
-0.730356,
52.402304
],
"ref_distance": 2.8,
"tags.addr:city": "Kettering",
"tags.addr:country": "GB",
"tags.addr:postcode": "NN16 8HR",
"tags.addr:street": "Bayes Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Kettering",
"tags.fhrs:id": "55061",
"tags.fhrs:local_authority_id": "1242",
"tags.name": "Chrysler Garage",
"tags.shop": "convenience",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1536 417600",
"tags_new.ref:navads_shell": "NVDS353-10392815"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.135227,
52.575474
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 295735997,
"osm_type": "way",
"ref_coords": [
-2.135259,
52.57549
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.name": "Shell",
"tags.source": "bing",
"tags_new.addr:postcode": "WV2 4NJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-22:00; Su 09:00-17:00",
"tags_new.phone": "+44 1902 423142",
"tags_new.ref:navads_shell": "NVDS353-12140967"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6644144,
51.8515417
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1318536196,
"osm_type": "node",
"ref_coords": [
-2.664453,
51.85155023
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.source": "survey",
"tags_changed.brand": "Murco -> Shell",
"tags_new.addr:postcode": "HR9 6DP",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1600 890219",
"tags_new.ref:navads_shell": "NVDS353-12585656"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7062282,
52.0485733
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 577928810,
"osm_type": "node",
"ref_coords": [
-0.706256,
52.048592
],
"ref_distance": 2.8,
"tags.addr:city": "Broughton, Milton Keynes",
"tags.addr:postcode": "MK10 9AB",
"tags.addr:street": "Childs Way",
"tags.amenity": "fuel",
"tags.atm": "yes",
"tags.brand": "Shell",
"tags.designation": "2324",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Broughton",
"tags.telephone": "+44 (0)1908 239291",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1908 239291",
"tags_new.ref:navads_shell": "NVDS353-12038450"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7105987,
51.6156434
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 285467849,
"osm_type": "way",
"ref_coords": [
-0.71055846,
51.615639
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "722",
"tags_new.addr:postcode": "HP11 1HE",
"tags_new.addr:street": "London Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1494 513452",
"tags_new.ref:navads_shell": "NVDS353-10019500"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3419676,
51.3476093
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 28930108,
"osm_type": "way",
"ref_coords": [
-1.341933,
51.347596
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "RG20 9BX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1635 278147",
"tags_new.ref:navads_shell": "NVDS353-10019659"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.021599,
51.5345479
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 533670759,
"osm_type": "way",
"ref_coords": [
-0.021605,
51.534573
],
"ref_distance": 2.8,
"ref_unused_tags.addr:housenumber": "445-453",
"tags.addr:housenumber": "445",
"tags.addr:postcode": "E3 2TB",
"tags.addr:street": "Wick Lane",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fhrs:id": "150032",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8983 4568",
"tags_new.ref:navads_shell": "NVDS353-10018930"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6982306,
52.1899196
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 161602858,
"osm_type": "way",
"ref_coords": [
-1.698219,
52.189944
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.source": "visual survey; bing",
"tags_new.addr:postcode": "CV37 7LP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1789 201900",
"tags_new.ref:navads_shell": "NVDS353-10019137"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.2566115,
55.9297057
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3639543928,
"osm_type": "node",
"ref_coords": [
-3.256616,
55.929731
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "EH11 3LW",
"tags_new.addr:street": "Stenhouse Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 131 443 7664",
"tags_new.ref:navads_shell": "NVDS353-10019458"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1610526,
50.9941987
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 479473936,
"osm_type": "way",
"ref_coords": [
-0.161092,
50.994193
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "RH17 5AG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-22:30; Sa 06:30-22:30; Su 07:00-22:30",
"tags_new.phone": "+44 1444 416642",
"tags_new.ref:navads_shell": "NVDS353-10019708"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2386818,
53.6266355
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 394953590,
"osm_type": "way",
"ref_coords": [
-1.23867,
53.626611
],
"ref_distance": 2.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Barnsdale Bar (North)",
"tags_new.addr:postcode": "WF8 3JF",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1977 621304",
"tags_new.ref:navads_shell": "NVDS353-10019349"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.1364409,
52.5795092
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 148388127,
"osm_type": "way",
"ref_coords": [
1.136462,
52.579487
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.building": "canopy",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NR18 0SH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-21:00",
"tags_new.phone": "+44 1953 607772",
"tags_new.ref:navads_shell": "NVDS353-12140973"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2450217,
53.4488092
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4653929094,
"osm_type": "node",
"ref_coords": [
-2.24503,
53.448784
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "M14 7LU",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 226 0285",
"tags_new.ref:navads_shell": "NVDS353-10019648"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.2362601,
55.9678281
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2266852717,
"osm_type": "node",
"ref_coords": [
-3.236271,
55.967803
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Crewe Toll",
"tags.operator": "Shell",
"tags_new.addr:postcode": "EH4 2NT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 131 332 6796",
"tags_new.ref:navads_shell": "NVDS353-10019455"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4825395,
51.4968027
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 204188726,
"osm_type": "way",
"ref_coords": [
-2.482581,
51.496803
],
"ref_distance": 2.9,
"tags.addr:place": "Emersons Green",
"tags.addr:postcode": "BS16 7AN",
"tags.addr:street": "Westerleigh Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fhrs:id": "960761",
"tags.name": "Blackhorse Garage",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 117 956 9611",
"tags_new.ref:navads_shell": "NVDS353-12215325"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2521262,
52.5392213
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2041652138,
"osm_type": "node",
"ref_coords": [
-1.252121,
52.539247
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "LE9 6QD",
"tags_new.phone": "+44 1455 289897",
"tags_new.ref:navads_shell": "NVDS353-10019140"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4802852,
51.4818994
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 182481569,
"osm_type": "way",
"ref_coords": [
-0.480244,
51.481903
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Total",
"tags_new.addr:housenumber": "400",
"tags_new.addr:postcode": "UB7 0HB",
"tags_new.addr:street": "Colnbrook Bypass",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1753 686756",
"tags_new.ref:navads_shell": "NVDS353-12038563"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.4480992,
52.1883696
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 305036082,
"osm_type": "node",
"ref_coords": [
1.44809,
52.188395
],
"ref_distance": 2.9,
"tags.addr:postcode": "IP17 1LF",
"tags.addr:street": "Main Road",
"tags.amenity": "fuel",
"tags.name": "Stratford Service Station Shell",
"tags.source:addr": "FSA Food Hygiene Ratings Database",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1728 602322",
"tags_new.ref:navads_shell": "NVDS353-12286063"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1066769,
51.695898
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1321759895,
"osm_type": "node",
"ref_coords": [
0.10665,
51.695878
],
"ref_distance": 2.9,
"tags.addr:housenumber": "24-36",
"tags.addr:postcode": "CM16 4AE",
"tags.addr:street": "High Street",
"tags.amenity": "fuel",
"tags.name": "Shell Station",
"tags.source": "visit",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1992 575773",
"tags_new.ref:navads_shell": "NVDS353-10019637"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2837135,
51.4681014
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4837607138,
"osm_type": "node",
"ref_coords": [
-0.283746,
51.468085
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "22-24",
"tags_new.addr:postcode": "TW9 4LJ",
"tags_new.addr:street": "Lower Richmond Road",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 07:00-22:00",
"tags_new.phone": "+44 20 8878 8768",
"tags_new.ref:navads_shell": "NVDS353-12038570"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3135878,
51.7550101
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 129742575,
"osm_type": "node",
"ref_coords": [
-2.313561,
51.75499
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "GL10 3SJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1453 827309",
"tags_new.ref:navads_shell": "NVDS353-10019118"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.276156,
51.8304406
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 247262791,
"osm_type": "way",
"ref_coords": [
-2.276196,
51.830449
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source": "Geograph",
"tags.source:building": "Bing;Geograph",
"tags.source:geograph:id": "3404109",
"tags_new.addr:housenumber": "121",
"tags_new.addr:postcode": "GL2 4NB",
"tags_new.addr:street": "Old Bristol Road",
"tags_new.opening_hours": "Mo-Su 06:30-23:00",
"tags_new.phone": "+44 1452 720332",
"tags_new.ref:navads_shell": "NVDS353-10019519"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2875674,
53.7069756
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 569996373,
"osm_type": "node",
"ref_coords": [
-2.287607,
53.706964
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "BB4 8EW",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1706 214512",
"tags_new.ref:navads_shell": "NVDS353-11335024"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0954896,
51.5033601
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 99869626,
"osm_type": "way",
"ref_coords": [
-0.095515,
51.503381
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "101-103",
"tags_new.addr:postcode": "SE1 0AX",
"tags_new.addr:street": "Southwark Bridge Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7357 9743",
"tags_new.ref:navads_shell": "NVDS353-10018907"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.525147,
51.389201
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 183352994,
"osm_type": "node",
"ref_coords": [
0.525187,
51.389193
],
"ref_distance": 2.9,
"tags.addr:city": "Rochester",
"tags.addr:postcode": "ME4 4SU",
"tags.addr:street": "Dock Road",
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.name": "Shell Medway",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1634 880939",
"tags_new.ref:navads_shell": "NVDS353-12038460"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.1280748,
52.925084
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 289769074,
"osm_type": "way",
"ref_coords": [
-4.128051,
52.925062
],
"ref_distance": 2.9,
"tags.addr:postcode": "LL49 9NG",
"tags.addr:street": "High Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "no",
"tags.fuel:octane_80": "no",
"tags.fuel:octane_92": "no",
"tags.fuel:octane_98": "no",
"tags.name": "Shell Porthmadoc",
"tags.operator": "Shell",
"tags.shop": "yes",
"tags.source": "survey;receipt",
"tags_changed.phone": "+44 1766 512934 -> +44 1766 510920",
"tags_new.opening_hours": "Mo-Su 05:30-23:00",
"tags_new.ref:navads_shell": "NVDS353-10019233"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9611678,
51.283847
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2277851291,
"osm_type": "node",
"ref_coords": [
-0.961206,
51.283836
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags_new.addr:postcode": "RG27 9DZ",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1256 763617",
"tags_new.ref:navads_shell": "NVDS353-12038414"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5461708,
53.2418709
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4530550885,
"osm_type": "node",
"ref_coords": [
-0.546185,
53.241846
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.source": "approx",
"tags_new.addr:postcode": "LN1 3ND",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1522 511012",
"tags_new.ref:navads_shell": "NVDS353-10019353"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.7043799,
55.9941325
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 254413014,
"osm_type": "way",
"ref_coords": [
-4.70438728,
55.9941585
],
"ref_distance": 2.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "G84 7LB",
"tags_new.opening_hours": "Mo-Sa 07:00-21:00; Su 08:00-20:00",
"tags_new.phone": "+44 1436 370392",
"tags_new.ref:navads_shell": "NVDS353-12247109"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5902489,
51.3521119
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 187218091,
"osm_type": "node",
"ref_coords": [
0.590288,
51.352102
],
"ref_distance": 2.9,
"tags.addr:housenumber": "400",
"tags.addr:postcode": "ME8 0JA",
"tags.addr:street": "Maidstone Road",
"tags.amenity": "fuel",
"tags.fhrs:authority": "Medway",
"tags.fhrs:id": "769882",
"tags.fhrs:inspectiondate": "2015-05-20",
"tags.fhrs:rating": "5",
"tags.name": "Shell Lonsdale",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1634 376201",
"tags_new.ref:navads_shell": "NVDS353-12038641"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2137116,
51.40353
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 36932093,
"osm_type": "node",
"ref_coords": [
-0.21375,
51.403541
],
"ref_distance": 2.9,
"tags.addr:housenumber": "262",
"tags.addr:postcode": "SM4 4AW",
"tags.addr:street": "Martin Way",
"tags.amenity": "fuel",
"tags.fhrs:id": "564626",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 07:00-22:00",
"tags_new.phone": "+44 20 8544 9225",
"tags_new.ref:navads_shell": "NVDS353-12038541"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1044516,
52.2284749
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 32520875,
"osm_type": "node",
"ref_coords": [
-0.104408,
52.228475
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.name": "Caxton Gibbet",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CB3 8PD",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1954 715177",
"tags_new.ref:navads_shell": "NVDS353-10019187"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2147572,
51.1158318
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 44041685,
"osm_type": "way",
"ref_coords": [
-0.214743,
51.115857
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "Yahoo WMS",
"tags_new.addr:postcode": "RH11 0JP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1293 541691",
"tags_new.ref:navads_shell": "NVDS353-12038520"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.3951166,
51.4320439
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 249491717,
"osm_type": "node",
"ref_coords": [
0.395157,
51.432053
],
"ref_distance": 3.0,
"tags.addr:city": "Gravesend",
"tags.addr:country": "GB",
"tags.addr:postcode": "DA12 4TN",
"tags.addr:street": "Rochester Road",
"tags.amenity": "fuel",
"tags.name": "Shell Chalk",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1474 532685",
"tags_new.ref:navads_shell": "NVDS353-10018886"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2078258,
51.7325583
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 30725454,
"osm_type": "way",
"ref_coords": [
-1.207835,
51.732532
],
"ref_distance": 3.0,
"tags.addr:housenumber": "44-48",
"tags.addr:postcode": "OX4 2LG",
"tags.addr:street": "Garsington Road",
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1865 718692",
"tags_new.ref:navads_shell": "NVDS353-12038469"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8648655,
51.1086726
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 326870057,
"osm_type": "way",
"ref_coords": [
-0.864857,
51.108699
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Bordon Service Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GU35 0AW",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 07:00-23:00",
"tags_new.phone": "+44 1420 488707",
"tags_new.ref:navads_shell": "NVDS353-10019512"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0309351,
51.624595
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2476680757,
"osm_type": "node",
"ref_coords": [
0.030933,
51.624568
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "18-22",
"tags_new.addr:postcode": "IG9 5HP",
"tags_new.addr:street": "High Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8505 4563",
"tags_new.ref:navads_shell": "NVDS353-12038451"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0925778,
57.1096893
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 129414130,
"osm_type": "way",
"ref_coords": [
-2.092622,
57.109702
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell, Redmoss",
"tags.operator": "Shell",
"tags_new.addr:postcode": "AB12 3JG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1224 871980",
"tags_new.ref:navads_shell": "NVDS353-10019627"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.1870107,
52.0235347
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 309880598,
"osm_type": "node",
"ref_coords": [
1.186989,
52.023511
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.highway": "service",
"tags.name": "Shell Petrol Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "IP10 0JN",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1473 321070",
"tags_new.ref:navads_shell": "NVDS353-10018971"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1840934,
50.896134
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1654247295,
"osm_type": "node",
"ref_coords": [
-1.184064,
50.896114
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.ethanol": "no",
"tags.fuel:biodiesel": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "no",
"tags.fuel:octane_100": "no",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.source": "survey",
"tags_new.addr:postcode": "PO17 5BY",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1329 833656",
"tags_new.ref:navads_shell": "NVDS353-10019047"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.3005962,
51.3986557
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1572836956,
"osm_type": "node",
"ref_coords": [
0.300632,
51.39864
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Longfield",
"tags_new.addr:housenumber": "1-3",
"tags_new.addr:postcode": "DA3 7QD",
"tags_new.addr:street": "Station Road",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1474 708376",
"tags_new.ref:navads_shell": "NVDS353-10019707"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6913323,
51.5226494
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 30695576,
"osm_type": "node",
"ref_coords": [
-0.691355,
51.522626
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "237",
"tags_new.addr:postcode": "SL6 0AR",
"tags_new.addr:street": "Bath Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1628 644000",
"tags_new.ref:navads_shell": "NVDS353-10019618"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0719998,
50.8346894
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4532971390,
"osm_type": "node",
"ref_coords": [
-1.072039,
50.834701
],
"ref_distance": 3.0,
"tags.addr:city": "Hilsea, Portsmouth",
"tags.addr:street": "London Road",
"tags.amenity": "fuel",
"tags.note": "This store has Night Pay overnight. And annoyingly, this petrol station has no ATM or cashback.",
"tags.operator": "Shell",
"tags_changed.phone": "+44 2392 693995 -> +44 23 9269 3995",
"tags_new.addr:postcode": "PO2 9RR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10019030"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4148758,
52.6195413
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 118777601,
"osm_type": "way",
"ref_coords": [
-2.414831,
52.619538
],
"ref_distance": 3.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "bing",
"tags_new.addr:postcode": "TF11 9ND",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1952 730591",
"tags_new.ref:navads_shell": "NVDS353-10019155"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.361146,
51.417086
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 462016767,
"osm_type": "node",
"ref_coords": [
0.361138,
51.417113
],
"ref_distance": 3.1,
"tags.addr:city": "Gravesend",
"tags.addr:street": "Rathgar Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Tollgate Services",
"tags.opening_hours": "24/7",
"tags.postal_code": "DA11 7NP",
"tags_new.addr:postcode": "DA11 7NP",
"tags_new.phone": "+44 1474 564481",
"tags_new.ref:navads_shell": "NVDS353-12433056"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1351463,
52.475317
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 410458855,
"osm_type": "node",
"ref_coords": [
-2.135136,
52.47529
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.source": "GPS Survey",
"tags_new.addr:postcode": "DY5 3JP",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1384 573838",
"tags_new.ref:navads_shell": "NVDS353-12038444"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.1980509,
57.4729198
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 309318930,
"osm_type": "way",
"ref_coords": [
-4.1981,
57.472911
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Kingswell Service Station",
"tags.shop": "yes",
"tags_new.addr:housenumber": "36",
"tags_new.addr:postcode": "IV2 3RH",
"tags_new.addr:street": "Old Perth Road",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1463 248993",
"tags_new.ref:navads_shell": "NVDS353-10019469"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3046329,
52.1858987
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 306027647,
"osm_type": "node",
"ref_coords": [
-0.304646,
52.185872
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:postcode": "MK44 3BE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1480 476835",
"tags_new.ref:navads_shell": "NVDS353-12038434"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1452694,
51.5952294
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 293655955,
"osm_type": "node",
"ref_coords": [
-0.145303,
51.595248
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.name": "Shell",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "11",
"tags_new.addr:postcode": "N10 1QB",
"tags_new.addr:street": "Colney Hatch Lane",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8883 4576",
"tags_new.ref:navads_shell": "NVDS353-10018928"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8534574,
53.7026547
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 947020869,
"osm_type": "node",
"ref_coords": [
-1.853486,
53.702677
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.operator": "Shell",
"tags.shop": "convenience",
"tags_new.addr:postcode": "HX3 0QE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1422 347612",
"tags_new.ref:navads_shell": "NVDS353-10019341"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.8429708,
50.4149149
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 529813458,
"osm_type": "way",
"ref_coords": [
-3.842975,
50.414887
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Carew",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TQ10 9ER",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44136472328",
"tags_new.ref:navads_shell": "NVDS353-10019079"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0871962,
50.8097029
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 20841929,
"osm_type": "node",
"ref_coords": [
-1.08718,
50.809729
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10f",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PO2 7SB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 23 9282 8653",
"tags_new.ref:navads_shell": "NVDS353-10018885"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3286587,
53.7250753
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1223978851,
"osm_type": "node",
"ref_coords": [
-2.328704,
53.725067
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "BB5 2SB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1706 233910",
"tags_new.ref:navads_shell": "NVDS353-10019216"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.7852463,
51.8794661
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 456640409,
"osm_type": "way",
"ref_coords": [
0.785246,
51.879438
],
"ref_distance": 3.1,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.layer": "1",
"tags.name": "Shell",
"tags_changed.opening_hours": "24/7 -> Mo-Sa 06:00-22:00; Su 07:00-21:00",
"tags_new.addr:housenumber": "85",
"tags_new.addr:postcode": "CO6 1EB",
"tags_new.addr:street": "London Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1206 210266",
"tags_new.ref:navads_shell": "NVDS353-10018826"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9752156,
52.4079646
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 140322820,
"osm_type": "way",
"ref_coords": [
-1.975195,
52.40799
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "visual survey; bing",
"tags_new.addr:housenumber": "1020",
"tags_new.addr:postcode": "B31 2QU",
"tags_new.addr:street": "Bristol Road South",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 121 477 1000",
"tags_new.ref:navads_shell": "NVDS353-10019174"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2879526,
51.413587
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 116804485,
"osm_type": "way",
"ref_coords": [
-0.28796,
51.413615
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:housenumber": "187-201",
"tags_new.addr:postcode": "KT2 6PQ",
"tags_new.addr:street": "London Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8541 1873",
"tags_new.ref:navads_shell": "NVDS353-12038527"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.3013871,
55.8202737
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2822395211,
"osm_type": "node",
"ref_coords": [
-4.301339,
55.820265
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "265",
"tags_new.addr:postcode": "G43 1LS",
"tags_new.addr:street": "Nether Auldhouse Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 141 649 8392",
"tags_new.ref:navads_shell": "NVDS353-10019477"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4483648,
52.5288304
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1394788563,
"osm_type": "node",
"ref_coords": [
-1.448318,
52.528831
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:housenumber": "118",
"tags_new.addr:postcode": "CV11 6LS",
"tags_new.addr:street": "Hinckley Road",
"tags_new.phone": "+44 24 7632 2942",
"tags_new.ref:navads_shell": "NVDS353-12038513"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3594732,
53.7360043
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 122262650,
"osm_type": "way",
"ref_coords": [
-0.359485,
53.736032
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Total",
"tags_new.addr:housenumber": "181",
"tags_new.addr:postcode": "HU3 4AA",
"tags_new.addr:street": "Hessle Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1482 599990",
"tags_new.ref:navads_shell": "NVDS353-12038511"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8519063,
51.7345715
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 161636890,
"osm_type": "way",
"ref_coords": [
-0.851885,
51.734546
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "Bing",
"tags_new.addr:postcode": "HP27 9RZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-22:00; Sa 07:00-23:00; Su 08:00-22:00",
"tags_new.phone": "+44 1844 342687",
"tags_new.ref:navads_shell": "NVDS353-12038567"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1137792,
52.8168991
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 333631166,
"osm_type": "node",
"ref_coords": [
-2.113745,
52.816879
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "90-100",
"tags_new.addr:postcode": "ST16 3HY",
"tags_new.addr:street": "Sandon Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1785 258694",
"tags_new.ref:navads_shell": "NVDS353-10019527"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.2155888,
53.2655558
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 313481710,
"osm_type": "node",
"ref_coords": [
-3.215605,
53.265583
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CH8 7SG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1352 710343",
"tags_new.ref:navads_shell": "NVDS353-10019680"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4754445,
53.3152246
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 280904531,
"osm_type": "way",
"ref_coords": [
-3.475483,
53.315207
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:housenumber": "193",
"tags_new.addr:postcode": "LL18 2PH",
"tags_new.addr:street": "Vale Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1745 345385",
"tags_new.ref:navads_shell": "NVDS353-10019281"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2301608,
54.7006284
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 482691369,
"osm_type": "way",
"ref_coords": [
-1.230137,
54.700654
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TS24 9AG",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1429 270930",
"tags_new.ref:navads_shell": "NVDS353-10019366"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8054771,
51.2932061
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 216445876,
"osm_type": "way",
"ref_coords": [
-0.805445,
51.293185
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.brand": "Shell",
"tags.operator": "Rontec",
"tags_new.addr:housenumber": "171",
"tags_new.addr:postcode": "GU51 2SH",
"tags_new.addr:street": "Cove Road",
"tags_new.phone": "+44 1252 615686",
"tags_new.ref:navads_shell": "NVDS353-12038494"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0756759,
51.4251108
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 297380180,
"osm_type": "way",
"ref_coords": [
-0.07569,
51.425083
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.layer": "2",
"tags.name": "Shell",
"tags_new.addr:housenumber": "4",
"tags_new.addr:postcode": "SE19 1UN",
"tags_new.addr:street": "Crystal Palace Parade",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8670 2495",
"tags_new.ref:navads_shell": "NVDS353-10018893"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4309492,
51.2623333
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 308196787,
"osm_type": "node",
"ref_coords": [
-0.430968,
51.26236
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:postcode": "KT24 6TA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-22:00; Su 09:00-20:00",
"tags_new.phone": "+44 1483 270759",
"tags_new.ref:navads_shell": "NVDS353-12038516"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2117969,
50.7563929
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 245490839,
"osm_type": "way",
"ref_coords": [
-2.211762,
50.756412
],
"ref_distance": 3.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "BH20 7LA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1929 472995",
"tags_new.ref:navads_shell": "NVDS353-10019632"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8303693,
52.4535366
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 57831702,
"osm_type": "way",
"ref_coords": [
-1.83040205,
52.45351527
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.name": "Shell",
"tags.source": "OS_OpenData_StreetView",
"tags_new.addr:postcode": "B27 6AR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 765 4950",
"tags_new.ref:navads_shell": "NVDS353-10019169"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7582532,
52.7169365
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 181896157,
"osm_type": "way",
"ref_coords": [
-1.758264,
52.716965
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "WS13 8RD",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1283 791798",
"tags_new.ref:navads_shell": "NVDS353-12038497"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4753885,
53.5621335
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 583055847,
"osm_type": "node",
"ref_coords": [
-2.475428,
53.562151
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "BL3 4RB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1204 653041",
"tags_new.ref:navads_shell": "NVDS353-10019313"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4819172,
53.7005457
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 76278887,
"osm_type": "way",
"ref_coords": [
-1.481956,
53.700564
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Total",
"tags.source": "OS_OpenData_StreetView",
"tags_new.addr:postcode": "WF3 4NF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-23:00; Sa 07:00-21:00; Su 08:00-21:00",
"tags_new.phone": "+44 1924 374555",
"tags_new.ref:navads_shell": "NVDS353-12038575"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2720987,
50.8635177
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 243472487,
"osm_type": "node",
"ref_coords": [
-1.272102,
50.863547
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "83",
"tags_new.addr:postcode": "SO31 6DX",
"tags_new.addr:street": "Locks Road",
"tags_new.opening_hours": "Mo-Su 07:00-20:00",
"tags_new.phone": "+44 1489 578696",
"tags_new.ref:navads_shell": "NVDS353-12282468"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1115458,
53.1811711
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 287102755,
"osm_type": "node",
"ref_coords": [
-3.111588,
53.181156
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.source": "survey",
"tags_new.addr:postcode": "CH7 1UE",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1352 751491",
"tags_new.ref:navads_shell": "NVDS353-10019491"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5425166,
52.8864224
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 260852249,
"osm_type": "way",
"ref_coords": [
-2.54253,
52.886394
],
"ref_distance": 3.3,
"tags.addr:street": "Chester Road",
"tags.addr:town": "Ternhill, Market Drayton",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.designation": "2486",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.layer": "1",
"tags.name": "Shell Ternhill",
"tags.telephone": "+44 (0)1630 639834",
"tags_new.addr:postcode": "TF9 2JQ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1630 639834",
"tags_new.ref:navads_shell": "NVDS353-12038612"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6964381,
52.3073827
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 446630674,
"osm_type": "way",
"ref_coords": [
-0.696469,
52.30736
],
"ref_distance": 3.3,
"tags.addr:city": "Wellingborough",
"tags.addr:country": "GB",
"tags.addr:housenumber": "59",
"tags.addr:postcode": "NN8 4QY",
"tags.addr:street": "Gold Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Wellingborough",
"tags.fhrs:id": "167481",
"tags.fhrs:local_authority_id": "PI/000011530",
"tags.fhrs:rating": "5",
"tags.fhrs:rating_date": "2015-01-27",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1933 223468",
"tags_new.ref:navads_shell": "NVDS353-12038504"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5736854,
52.3377402
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 274452329,
"osm_type": "way",
"ref_coords": [
-1.573702,
52.337768
],
"ref_distance": 3.3,
"tags.addr:city": "Kenilworth",
"tags.addr:housenumber": "173",
"tags.addr:postcode": "CV8 1HY",
"tags.addr:street": "Warwick Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fhrs:id": "242530",
"tags.operator": "Shell",
"tags_changed.opening_hours": "06:30-23:00 -> Mo-Su 06:30-22:00",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1926 850590",
"tags_new.ref:navads_shell": "NVDS353-10019142"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0688555,
54.5334452
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 643728918,
"osm_type": "node",
"ref_coords": [
-1.068805,
54.53345
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.source": "survey",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "TS14 6RL",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1287 619254",
"tags_new.ref:navads_shell": "NVDS353-10019364"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1773291,
51.3752431
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 82538438,
"osm_type": "node",
"ref_coords": [
-0.177376,
51.375238
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "123-125",
"tags_new.addr:postcode": "SM5 2RT",
"tags_new.addr:street": "Wrythe Lane",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8644 6894",
"tags_new.ref:navads_shell": "NVDS353-12038593"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4639269,
53.8089567
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 147518982,
"osm_type": "way",
"ref_coords": [
-1.463907,
53.808984
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:housenumber": "644",
"tags_new.addr:postcode": "LS14 6UJ",
"tags_new.addr:street": "York Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 113 264 1623",
"tags_new.ref:navads_shell": "NVDS353-12038481"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.7457359,
51.8178981
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 540307101,
"osm_type": "node",
"ref_coords": [
0.745756,
51.817871
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CO5 0EN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 05:00-22:00; Sa 06:00-22:00; Su 07:00-22:00",
"tags_new.phone": "+44 1621 817406",
"tags_new.ref:navads_shell": "NVDS353-10019010"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4501709,
51.3713417
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 149780182,
"osm_type": "way",
"ref_coords": [
-0.450129,
51.371327
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:housenumber": "181",
"tags_new.addr:postcode": "KT13 9DJ",
"tags_new.addr:street": "Oatlands Drive",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1932 841405",
"tags_new.ref:navads_shell": "NVDS353-12038634"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7309447,
50.8542741
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 451974479,
"osm_type": "way",
"ref_coords": [
-1.73099,
50.854265
],
"ref_distance": 3.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.note": "check tags",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BH24 3HN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 07:00-22:00",
"tags_new.phone": "+44 1425 479158",
"tags_new.ref:navads_shell": "NVDS353-10019051"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8604908,
52.7133175
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 120171597,
"osm_type": "node",
"ref_coords": [
-2.860467,
52.713291
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.name": "BP",
"tags_new.addr:postcode": "SY5 9LE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 08:00-22:00",
"tags_new.phone": "+44 1743 850830",
"tags_new.ref:navads_shell": "NVDS353-11230938"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7465897,
53.714146
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1067451352,
"osm_type": "node",
"ref_coords": [
-1.746635,
53.71416
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.name": "Hartshead Moor Services",
"tags_new.addr:postcode": "HD6 4JX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1274 876584",
"tags_new.ref:navads_shell": "NVDS353-10018821"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7557543,
51.2752162
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 833732712,
"osm_type": "node",
"ref_coords": [
-0.75573836,
51.27524478
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "TotalElfFina",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "22",
"tags_new.addr:postcode": "GU14 6AY",
"tags_new.addr:street": "Farnborough Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1252 547640",
"tags_new.ref:navads_shell": "NVDS353-12038492"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.6464003,
50.7840144
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 322082495,
"osm_type": "node",
"ref_coords": [
-3.646359,
50.78403
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "EX17 3BN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1363 776814",
"tags_new.ref:navads_shell": "NVDS353-10019067"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5434664,
52.471779
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 191577715,
"osm_type": "way",
"ref_coords": [
-1.543515,
52.471786
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "CV7 8NR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1676 540111",
"tags_new.ref:navads_shell": "NVDS353-10019179"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6206827,
53.7421013
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 305074292,
"osm_type": "node",
"ref_coords": [
-1.620694,
53.742131
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.name": "Victoria Filling Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LS27 0LF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 113 252 7538",
"tags_new.ref:navads_shell": "NVDS353-10019342"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0628544,
51.4348009
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 262599731,
"osm_type": "way",
"ref_coords": [
0.062903,
51.434796
],
"ref_distance": 3.4,
"tags.addr:city": "New Eltham",
"tags.addr:housenumber": "728",
"tags.addr:postcode": "SE9 3AL",
"tags.addr:street": "Sidcup Road",
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8851 1142",
"tags_new.ref:navads_shell": "NVDS353-10018856"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.1247987,
52.0805026
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 285890402,
"osm_type": "node",
"ref_coords": [
1.124749,
52.080499
],
"ref_distance": 3.4,
"tags.addr:housenumber": "665",
"tags.addr:postcode": "IP1 6JZ",
"tags.addr:street": "Norwich Road",
"tags.amenity": "fuel",
"tags.fhrs:id": "499996",
"tags.name": "Whitehouse Service Station",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1473 238950",
"tags_new.ref:navads_shell": "NVDS353-10019199"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.1699365,
55.9382805
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2415333092,
"osm_type": "node",
"ref_coords": [
-4.169887,
55.938267
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "31",
"tags_new.addr:postcode": "G66 1BG",
"tags_new.addr:street": "Glasgow Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 141 775 1753",
"tags_new.ref:navads_shell": "NVDS353-10019414"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4022625,
55.9845731
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2266712401,
"osm_type": "node",
"ref_coords": [
-3.40226168,
55.984604
],
"ref_distance": 3.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "EH30 9SF",
"tags_new.addr:street": "Ferrymuir Gait",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 131 319 1241",
"tags_new.ref:navads_shell": "NVDS353-10019583"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3227744,
51.7669293
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 349942539,
"osm_type": "way",
"ref_coords": [
-0.322791,
51.7669
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:housenumber": "2",
"tags_new.addr:postcode": "AL3 5AS",
"tags_new.addr:street": "Beech Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1727 858069",
"tags_new.ref:navads_shell": "NVDS353-12038539"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3624048,
53.4092672
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 386019397,
"osm_type": "way",
"ref_coords": [
-1.362445,
53.409287
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "S60 5ND",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1709 374516",
"tags_new.ref:navads_shell": "NVDS353-12038455"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4825638,
54.2499075
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4176360600,
"osm_type": "node",
"ref_coords": [
-0.482575,
54.249877
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "YO13 9HL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1723 865112",
"tags_new.ref:navads_shell": "NVDS353-11376844"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.17827,
51.4125127
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 130222631,
"osm_type": "node",
"ref_coords": [
-0.178282,
51.412543
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.5c",
"tags_new.addr:housenumber": "231",
"tags_new.addr:postcode": "SW19 2QD",
"tags_new.addr:street": "Western Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8640 7043",
"tags_new.ref:navads_shell": "NVDS353-12038632"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1306504,
51.5392485
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 25653358,
"osm_type": "way",
"ref_coords": [
-3.130667,
51.539219
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.highway": "service",
"tags.oneway": "yes",
"tags.surface": "concrete",
"tags_new.addr:postcode": "CF23 8RA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 29 2073 2741",
"tags_new.ref:navads_shell": "NVDS353-12038456"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5544527,
52.065382
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 345292413,
"osm_type": "node",
"ref_coords": [
-0.554472,
52.065353
],
"ref_distance": 3.5,
"tags.addr:postcode": "MK43 0PZ",
"tags.addr:street": "Beancroft Road",
"tags.amenity": "fuel",
"tags.name": "Total",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1234 767183",
"tags_new.ref:navads_shell": "NVDS353-12038540"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5518202,
51.3766653
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 300936357,
"osm_type": "way",
"ref_coords": [
0.551771,
51.376672
],
"ref_distance": 3.5,
"tags.addr:city": "Gillingham",
"tags.addr:housenumber": "246-254",
"tags.addr:postcode": "ME7 4NA",
"tags.addr:street": "Nelson Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fhrs:authority": "Medway",
"tags.fhrs:id": "898256;732109",
"tags.fhrs:inspectiondate": "2016-06-30;2014-12-17",
"tags.fhrs:rating": "5",
"tags.name": "Motor Fuel Group",
"tags.operator": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:00",
"tags_new.phone": "+44 1634 572280",
"tags_new.ref:navads_shell": "NVDS353-10018943"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.29597,
51.0702541
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 21507849,
"osm_type": "node",
"ref_coords": [
-1.29602,
51.070252
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SO23 7SL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1962 877847",
"tags_new.ref:navads_shell": "NVDS353-10019052"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8698078,
52.4130489
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 153322903,
"osm_type": "node",
"ref_coords": [
-1.869771,
52.413071
],
"ref_distance": 3.5,
"tags.addr:city": "Birmingham",
"tags.addr:country": "GB",
"tags.addr:place": "Yardley Wood",
"tags.addr:postcode": "B14 4QA",
"tags.addr:street": "Yardley Wood Road",
"tags.amenity": "fuel",
"tags.store_ref": "2364",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 121 430 2367",
"tags_new.ref:navads_shell": "NVDS353-12038490"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2001994,
51.3612725
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 681498922,
"osm_type": "node",
"ref_coords": [
-0.20021232,
51.361303
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.name": "Shell Filling Station",
"tags.operator": "Shell",
"tags.postal_code": "SM1 2SS",
"tags_new.addr:housenumber": "56-58",
"tags_new.addr:postcode": "SM1 2SS",
"tags_new.addr:street": "Cheam Rd",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8915 0589",
"tags_new.ref:navads_shell": "NVDS353-12038601"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1519023,
51.9988428
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 469428393,
"osm_type": "node",
"ref_coords": [
-2.151851,
51.998843
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "GL20 5DA",
"tags_new.opening_hours": "Mo-Sa 06:30-22:00; Su 07:00-22:00",
"tags_new.phone": "+44 1684 294223",
"tags_new.ref:navads_shell": "NVDS353-10019711"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9337535,
54.8980696
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 560081202,
"osm_type": "node",
"ref_coords": [
-2.93371547,
54.89804675
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "CA1 1JE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1228 543965",
"tags_new.ref:navads_shell": "NVDS353-10019321"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6584169,
51.7956164
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 490729674,
"osm_type": "way",
"ref_coords": [
-0.658464,
51.795604
],
"ref_distance": 3.5,
"tags.addr:street": "Brook Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.contact:phone": "+441442890471",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.layer": "1",
"tags.maxheight": "3.2",
"tags.name": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:00",
"tags.operator": "Shell",
"tags.ref": "12038623",
"tags_new.addr:postcode": "HP23 5ED",
"tags_new.phone": "+44 1442 890471",
"tags_new.ref:navads_shell": "NVDS353-12038623"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4818848,
52.4798391
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 233945027,
"osm_type": "way",
"ref_coords": [
-1.48193,
52.479855
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Total",
"tags_new.addr:postcode": "CV12 8QB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Th,Sa-Su 06:00-22:00; Fr 06:00-23:00",
"tags_new.phone": "+44 24 7649 0683",
"tags_new.ref:navads_shell": "NVDS353-12038429"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4872631,
52.9072926
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1599891951,
"osm_type": "node",
"ref_coords": [
-2.487279,
52.907323
],
"ref_distance": 3.5,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "TF9 3AA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1630 657822",
"tags_new.ref:navads_shell": "NVDS353-10019591"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5660698,
51.5018078
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2458414980,
"osm_type": "node",
"ref_coords": [
-0.566059,
51.501839
],
"ref_distance": 3.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_91": "yes",
"tags.fuel:octane_98": "yes",
"tags.shop": "kiosk",
"tags_new.addr:housenumber": "85",
"tags_new.addr:postcode": "SL3 7RS",
"tags_new.addr:street": "London Road",
"tags_new.opening_hours": "Mo-Fr 06:00-23:00; Sa 06:00-22:00; Su 07:00-22:00",
"tags_new.phone": "+44 1753 516772",
"tags_new.ref:navads_shell": "NVDS353-12038586"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1406932,
52.4466562
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 278875395,
"osm_type": "way",
"ref_coords": [
-2.140715,
52.446627
],
"ref_distance": 3.6,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.name": "Shell",
"tags.source": "visual survey; bing",
"tags_new.addr:postcode": "DY8 2JL",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1384 444657",
"tags_new.ref:navads_shell": "NVDS353-10019642"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2875637,
52.9938405
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 90647910,
"osm_type": "way",
"ref_coords": [
-2.287616,
52.993834
],
"ref_distance": 3.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "ST5 5HG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1782 626221",
"tags_new.ref:navads_shell": "NVDS353-10018822"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9997209,
51.5973681
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 425764856,
"osm_type": "node",
"ref_coords": [
-2.999675,
51.597353
],
"ref_distance": 3.6,
"tags.addr:housenumber": "1",
"tags.addr:street": "Malpas Road",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NP20 5PA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1633 850033",
"tags_new.ref:navads_shell": "NVDS353-10019063"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5761102,
53.8041494
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 234003769,
"osm_type": "way",
"ref_coords": [
-1.576057,
53.804142
],
"ref_distance": 3.6,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.name": "Shell",
"tags_new.addr:housenumber": "217",
"tags_new.addr:postcode": "LS4 2AH",
"tags_new.addr:street": "Kirkstall Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 113 244 2058",
"tags_new.ref:navads_shell": "NVDS353-10019337"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6163987,
54.9581069
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1461563342,
"osm_type": "node",
"ref_coords": [
-1.616371,
54.958135
],
"ref_distance": 3.6,
"tags.addr:postcode": "NE8 2JX",
"tags.addr:street": "Askew Road West",
"tags.amenity": "fuel",
"tags.name": "Shell Redheugh Bridge",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 478 7311",
"tags_new.ref:navads_shell": "NVDS353-10019222"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4967093,
52.114084
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 13797391,
"osm_type": "node",
"ref_coords": [
-0.496678,
52.114058
],
"ref_distance": 3.6,
"tags.addr:postcode": "MK42 7QA",
"tags.amenity": "fuel",
"tags.fhrs:id": "547193",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 05:00-23:00",
"tags_new.phone": "+44 1234 841767",
"tags_new.ref:navads_shell": "NVDS353-12038524"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.7163817,
52.4782034
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 370408664,
"osm_type": "way",
"ref_coords": [
1.716343,
52.478181
],
"ref_distance": 3.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.layer": "1",
"tags.name": "Shell",
"tags_new.addr:postcode": "NR32 2PY",
"tags_new.phone": "+44 1502 538816",
"tags_new.ref:navads_shell": "NVDS353-10019205"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8621187,
52.44928
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 68635610,
"osm_type": "way",
"ref_coords": [
-1.862162,
52.449299
],
"ref_distance": 3.6,
"tags.addr:city": "Birmingham",
"tags.addr:postcode": "B11 4AR",
"tags.addr:street": "Stratford Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "OS_OpenData_StreetView",
"tags_new.addr:housenumber": "636",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 121 777 0692",
"tags_new.ref:navads_shell": "NVDS353-12038592"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.9698178,
55.967588
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 401290124,
"osm_type": "node",
"ref_coords": [
-3.969859,
55.967565
],
"ref_distance": 3.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Old Inns",
"tags.shop": "yes",
"tags.source": "survey",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "G68 0JB",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1236 455155",
"tags_new.ref:navads_shell": "NVDS353-10019434"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.7243568,
51.7321083
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3200016968,
"osm_type": "node",
"ref_coords": [
-4.724398,
51.732088
],
"ref_distance": 3.6,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "SA68 0YH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr,Su 08:00-19:00; Sa 08:00-18:00",
"tags_new.phone": "+44 1834 812276",
"tags_new.ref:navads_shell": "NVDS353-10019088"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1488169,
51.3604332
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 207711413,
"osm_type": "node",
"ref_coords": [
-1.148822,
51.360466
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "RG26 4QY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 118 981 4632",
"tags_new.ref:navads_shell": "NVDS353-10019502"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2892358,
53.7005099
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 361842113,
"osm_type": "way",
"ref_coords": [
-2.289196,
53.700533
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "BB4 6QX",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1706 216482",
"tags_new.ref:navads_shell": "NVDS353-10019488"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1480175,
51.813875
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 608445802,
"osm_type": "node",
"ref_coords": [
0.148019,
51.813908
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "50",
"tags_new.addr:postcode": "CM21 9JN",
"tags_new.addr:street": "London Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:30",
"tags_new.phone": "+44 1279 725955",
"tags_new.ref:navads_shell": "NVDS353-12038637"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4925922,
51.7741825
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 253401696,
"osm_type": "node",
"ref_coords": [
-1.49257827,
51.77421455
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source": "Local Knowledge",
"tags_new.addr:postcode": "OX28 4TT",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1993 706968",
"tags_new.ref:navads_shell": "NVDS353-12038479"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.3209465,
51.4492019
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 251777060,
"osm_type": "node",
"ref_coords": [
0.320969,
51.449232
],
"ref_distance": 3.7,
"tags.addr:city": "Gravesend",
"tags.addr:country": "GB",
"tags.addr:postcode": "DA11 9BJ",
"tags.addr:street": "Eagle Way",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "100470",
"tags.name": "Shell Northfleet",
"tags.operator": "Shell",
"tags.source": "survey",
"tags.source:address": "card_reciept",
"tags_new.phone": "+44 1474 351046",
"tags_new.ref:navads_shell": "NVDS353-10018958"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.553369,
50.7507679
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1109788193,
"osm_type": "node",
"ref_coords": [
-1.553317,
50.750763
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags.name": "Shell Lymington",
"tags_new.addr:housenumber": "33",
"tags_new.addr:postcode": "SO41 8DH",
"tags_new.addr:street": "Milford Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:30",
"tags_new.phone": "+44 1590 688700",
"tags_new.ref:navads_shell": "NVDS353-10019049"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2169661,
52.9385659
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 206298391,
"osm_type": "node",
"ref_coords": [
-1.216926,
52.938543
],
"ref_distance": 3.7,
"tags.addr:postcode": "NG9 2TA",
"tags.amenity": "fuel",
"tags.fhrs:id": "217472",
"tags.is_in": "Nottingham,Nottinghamshire,United Kingdom",
"tags.is_in:city": "Nottingham",
"tags.is_in:county": "Nottinghamshire",
"tags.name": "Priory Service Station",
"tags.operator": "Shell",
"tags.source:addr": "FSA Food Hygiene Open Data",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 115 922 3830",
"tags_new.ref:navads_shell": "NVDS353-10019146"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4925369,
51.3766444
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 116884434,
"osm_type": "way",
"ref_coords": [
-0.492526,
51.376677
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags.building": "canopy",
"tags.layer": "1",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KT15 2ED",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1932 850032",
"tags_new.ref:navads_shell": "NVDS353-12038412"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0066192,
51.2586062
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 27676408,
"osm_type": "way",
"ref_coords": [
-0.006655,
51.258631
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "RH8 9NB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:30",
"tags_new.phone": "+44 1883 734657",
"tags_new.ref:navads_shell": "NVDS353-12038560"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3845364,
51.883143
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 368617145,
"osm_type": "way",
"ref_coords": [
-0.384482,
51.883143
],
"ref_distance": 3.7,
"tags.addr:city": "Luton",
"tags.addr:street": "Eaton Green Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "shell",
"tags_new.addr:postcode": "LU2 9HD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1582 390900",
"tags_new.ref:navads_shell": "NVDS353-10019189"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.653059,
53.791978
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 766837258,
"osm_type": "node",
"ref_coords": [
-2.653003,
53.791972
],
"ref_distance": 3.7,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PR2 5PZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1772 651653",
"tags_new.ref:navads_shell": "NVDS353-11230482"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2467349,
51.3545233
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2404202662,
"osm_type": "node",
"ref_coords": [
-0.246783,
51.354508
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KT17 2PU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8786 8518",
"tags_new.ref:navads_shell": "NVDS353-10018861"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.850708,
50.7328822
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2098001683,
"osm_type": "node",
"ref_coords": [
-1.850666,
50.732903
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags_changed.brand": "Esso -> Shell",
"tags_new.addr:housenumber": "341-345",
"tags_new.addr:postcode": "BH8 8BS",
"tags_new.addr:street": "Holdenhurst Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1202 612316",
"tags_new.ref:navads_shell": "NVDS353-12430512"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.1105416,
55.8537237
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3964982276,
"osm_type": "node",
"ref_coords": [
-4.110601,
55.853729
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags.source": "survey",
"tags_new.addr:housenumber": "61",
"tags_new.addr:postcode": "G69 6DD",
"tags_new.addr:street": "Edinburgh Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 141 771 3995",
"tags_new.ref:navads_shell": "NVDS353-10019582"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0503725,
51.7117891
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 267942024,
"osm_type": "node",
"ref_coords": [
-0.050408,
51.711763
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags.fixme": "name?",
"tags_new.addr:housenumber": "47",
"tags_new.addr:postcode": "EN8 0JA",
"tags_new.addr:street": "Flamstead End Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1992 626942",
"tags_new.ref:navads_shell": "NVDS353-12038493"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2628016,
51.5964974
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5022667745,
"osm_type": "node",
"ref_coords": [
-0.262855,
51.596506
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.name:en": "Shell",
"tags_new.addr:housenumber": "421",
"tags_new.addr:postcode": "NW9 0HS",
"tags_new.addr:street": "Edgware Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8205 9099",
"tags_new.ref:navads_shell": "NVDS353-10018873"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9464135,
52.4473905
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 121276190,
"osm_type": "way",
"ref_coords": [
-1.946382,
52.447362
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.source": "bing",
"tags_new.addr:housenumber": "295",
"tags_new.addr:postcode": "B17 0NT",
"tags_new.addr:street": "Harborne Lane",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 471 4963",
"tags_new.ref:navads_shell": "NVDS353-10019173"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2826359,
53.4689051
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 126383073,
"osm_type": "way",
"ref_coords": [
-2.282686,
53.468888
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "Bing",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "M5 4QD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 848 9708",
"tags_new.ref:navads_shell": "NVDS353-10019312"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2069781,
52.6192214
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1819394053,
"osm_type": "node",
"ref_coords": [
-1.206949,
52.61919176
],
"ref_distance": 3.8,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags_new.addr:postcode": "LE3 3GB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1908 299700",
"tags_new.ref:navads_shell": "3f7ea85a-2509-4746-8168-e305cf4de301"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.7969886,
53.0854737
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 315913920,
"osm_type": "node",
"ref_coords": [
-3.796953,
53.085501
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.name": "Shell station",
"tags.operator": "Shell",
"tags.source": "photograph",
"tags_new.addr:postcode": "LL24 0AR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1690 710961",
"tags_new.ref:navads_shell": "NVDS353-10019276"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0426245,
53.2942349
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 673476483,
"osm_type": "node",
"ref_coords": [
-3.042575,
53.294253
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "CH64 7TA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 336 4460",
"tags_new.ref:navads_shell": "NVDS353-10019554"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8548224,
51.4188924
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 72625305,
"osm_type": "way",
"ref_coords": [
-0.854815,
51.418927
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source:building": "OS_OpenData_StreetView",
"tags_new.addr:postcode": "RG41 1HB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-23:00; Su 08:00-22:00",
"tags_new.phone": "+44 118 936 1000",
"tags_new.ref:navads_shell": "NVDS353-10019614"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.849113,
53.4200589
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 472107888,
"osm_type": "way",
"ref_coords": [
-2.849171,
53.420064
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Shell",
"tags_new.addr:postcode": "L36 3RN",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 480 7446",
"tags_new.ref:navads_shell": "NVDS353-10019252"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0164873,
51.4520468
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2924051729,
"osm_type": "node",
"ref_coords": [
-0.016438,
51.45203
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "357-361",
"tags_new.addr:postcode": "SE13 6NZ",
"tags_new.addr:street": "Lewisham High Street",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8690 5569",
"tags_new.ref:navads_shell": "NVDS353-10019647"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2993322,
53.6969468
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1877687240,
"osm_type": "node",
"ref_coords": [
-1.299348,
53.696913
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "WF8 2JP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1977 780622",
"tags_new.ref:navads_shell": "NVDS353-10019326"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0328606,
53.3840593
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2137275856,
"osm_type": "node",
"ref_coords": [
-3.032912,
53.384042
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "413",
"tags_new.addr:postcode": "CH42 0HA",
"tags_new.addr:street": "Borough Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 653 4183",
"tags_new.ref:navads_shell": "NVDS353-10019289"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.164728,
51.8605088
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 426552933,
"osm_type": "node",
"ref_coords": [
0.164731,
51.860544
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "CM23 3LA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1279 466161",
"tags_new.ref:navads_shell": "NVDS353-12038433"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3655527,
51.7097019
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 366893944,
"osm_type": "way",
"ref_coords": [
-2.365498,
51.709692
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "GL11 5DH",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1453 549742",
"tags_new.ref:navads_shell": "NVDS353-10019092"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1418414,
53.2538101
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 298453039,
"osm_type": "node",
"ref_coords": [
-3.141788,
53.253795
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CH6 5RR",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1352 733717",
"tags_new.ref:navads_shell": "NVDS353-10019317"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.1204248,
52.3708898
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 282829700,
"osm_type": "node",
"ref_coords": [
1.120396,
52.370859
],
"ref_distance": 3.9,
"tags.amenity": "fuel",
"tags.name": "Diss Shell",
"tags.operator": "Shell",
"tags.postal_code": "IP22 4GA",
"tags_new.addr:postcode": "IP22 4GY",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1379 644024",
"tags_new.ref:navads_shell": "NVDS353-10019206"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2537207,
51.6432083
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 206177866,
"osm_type": "node",
"ref_coords": [
-0.253687,
51.643237
],
"ref_distance": 4.0,
"tags.amenity": "fuel",
"tags.name": "Shell Stirling Corner",
"tags.operator": "Shell",
"tags_new.addr:postcode": "EN5 3JT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8364 9497",
"tags_new.ref:navads_shell": "NVDS353-10018878"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8822161,
52.9086674
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 126261278,
"osm_type": "way",
"ref_coords": [
-1.882179,
52.908695
],
"ref_distance": 4.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.landuse": "retail",
"tags.source": "Bing;survey",
"tags_new.addr:postcode": "ST14 7DB",
"tags_new.phone": "+44 1889 569000",
"tags_new.ref:navads_shell": "NVDS353-10019154"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0589109,
52.2929945
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 204798491,
"osm_type": "way",
"ref_coords": [
-0.058964,
52.29298
],
"ref_distance": 4.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Fenstanton",
"tags.shop": "yes",
"tags.shop:name": "Shell Shop",
"tags_new.addr:postcode": "PE28 9HS",
"tags_new.phone": "+44 1954 232460",
"tags_new.ref:navads_shell": "NVDS353-10019004"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9443871,
50.8533557
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 59970514,
"osm_type": "node",
"ref_coords": [
-0.944412,
50.853388
],
"ref_distance": 4.0,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:postcode": "PO10 7RB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1243 379256",
"tags_new.ref:navads_shell": "NVDS353-12038487"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2381789,
51.4492364
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2748506881,
"osm_type": "node",
"ref_coords": [
-0.238142,
51.449264
],
"ref_distance": 4.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "237-239",
"tags_new.addr:postcode": "SW15 4LB",
"tags_new.addr:street": "Roehampton Lane",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8785 2056",
"tags_new.ref:navads_shell": "NVDS353-10018869"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5329306,
53.7254706
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 98330909,
"osm_type": "way",
"ref_coords": [
-0.532942,
53.725506
],
"ref_distance": 4.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Grandale Garage",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HU14 3HG",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1482 635900",
"tags_new.ref:navads_shell": "NVDS353-10019376"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0885148,
52.9665492
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 387490542,
"osm_type": "node",
"ref_coords": [
-1.088465,
52.966529
],
"ref_distance": 4.0,
"tags.addr:postcode": "NG4 1BG",
"tags.addr:street": "Carlton Hill",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.note": "FHRS name is 'Carlton Square Service Station'",
"tags.operator": "Shell",
"tags.source": "survey",
"tags.source:addr:postcode": "FHRS Open Data",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 115 987 1452",
"tags_new.ref:navads_shell": "NVDS353-12038458"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9795977,
54.9507922
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 334478948,
"osm_type": "way",
"ref_coords": [
-2.979601,
54.950756
],
"ref_distance": 4.0,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Todhills",
"tags_new.addr:postcode": "CA6 4HA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1228 673900",
"tags_new.ref:navads_shell": "NVDS353-10019590"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1756202,
50.838739
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 205283677,
"osm_type": "node",
"ref_coords": [
-0.175567,
50.838725
],
"ref_distance": 4.1,
"ref_unused_tags.addr:housenumber": "132-134",
"tags.addr:city": "Hove",
"tags.addr:housenumber": "132/134",
"tags.addr:postcode": "BN3 7BD",
"tags.addr:street": "Old Shoreham Road",
"tags.amenity": "fuel",
"tags.fhrs:id": "207078",
"tags.name": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:30",
"tags_new.phone": "+44 1273 744990",
"tags_new.ref:navads_shell": "NVDS353-10019645"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6797924,
52.9668749
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 493079403,
"osm_type": "way",
"ref_coords": [
-2.679732,
52.966877
],
"ref_distance": 4.1,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.layer": "1",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "SY13 1QD",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 08:00-22:00",
"tags_new.phone": "+44 1948 663333",
"tags_new.ref:navads_shell": "NVDS353-10019539"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7828043,
53.0951793
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 437435658,
"osm_type": "way",
"ref_coords": [
-0.78282,
53.095144
],
"ref_distance": 4.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NG24 2NY",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1636 706423",
"tags_new.ref:navads_shell": "NVDS353-12038644"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4612216,
53.7496228
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 46816178,
"osm_type": "node",
"ref_coords": [
-2.461283,
53.749618
],
"ref_distance": 4.1,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "BB1 3HQ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1254 260581",
"tags_new.ref:navads_shell": "NVDS353-11234848"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1120786,
53.4773086
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1199180016,
"osm_type": "node",
"ref_coords": [
-2.112083,
53.477272
],
"ref_distance": 4.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "188",
"tags_new.addr:postcode": "OL7 0NS",
"tags_new.addr:street": "Stockport Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 339 5777",
"tags_new.ref:navads_shell": "NVDS353-10019306"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.7912342,
53.2789395
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 920497936,
"osm_type": "node",
"ref_coords": [
-3.79128,
53.278964
],
"ref_distance": 4.1,
"tags.addr:county": "Clwyd",
"tags.addr:postcode": "LL28 5LE",
"tags.addr:street": "Glan Conway Corner",
"tags.addr:town": "Colwyn Bay",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.designation": "974",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Black Cat",
"tags.operator": "Shell",
"tags.telephone": "+44 (0)1492 562140",
"tags_new.phone": "+44 1492 562140",
"tags_new.ref:navads_shell": "NVDS353-10019275"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8379767,
52.2897909
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 108008582,
"osm_type": "node",
"ref_coords": [
-0.838012,
52.289761
],
"ref_distance": 4.1,
"ref_unused_tags.addr:postcode": "NN3 7TP",
"tags.addr:city": "Northampton",
"tags.addr:country": "GB",
"tags.addr:housenumber": "45",
"tags.addr:place": "Moulton",
"tags.addr:postcode": "NN3 7UZ",
"tags.addr:street": "Park View",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Daventry",
"tags.fhrs:id": "167042",
"tags.fhrs:local_authority_id": "PI/000010648",
"tags.name": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1604 494237",
"tags_new.ref:navads_shell": "NVDS353-12038548"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.8743153,
52.3229652
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 283229220,
"osm_type": "node",
"ref_coords": [
0.874289,
52.322932
],
"ref_distance": 4.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "IP31 2BZ",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1359 251190",
"tags_new.ref:navads_shell": "NVDS353-12286062"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7117621,
51.6517516
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1038040414,
"osm_type": "node",
"ref_coords": [
-0.71177,
51.651715
],
"ref_distance": 4.1,
"tags.amenity": "fuel",
"tags.name": "Cross Roads",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HP15 7LG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1494 716854",
"tags_new.ref:navads_shell": "NVDS353-10018998"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1142364,
52.4406601
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 693745601,
"osm_type": "node",
"ref_coords": [
-0.114238,
52.440623
],
"ref_distance": 4.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PE26 1NE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-22:00; Sa-Su 07:00-22:00",
"tags_new.phone": "+44 1487 813545",
"tags_new.ref:navads_shell": "NVDS353-10019184"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3065068,
51.8102816
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 240355570,
"osm_type": "node",
"ref_coords": [
-1.306477,
51.810249
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.operator": "Texaco",
"tags_new.addr:housenumber": "98",
"tags_new.addr:postcode": "OX5 1PL",
"tags_new.addr:street": "Woodstock Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1865 841591",
"tags_new.ref:navads_shell": "NVDS353-12372193"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.074493,
51.3876794
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4488950797,
"osm_type": "node",
"ref_coords": [
0.074478,
51.387643
],
"ref_distance": 4.2,
"tags.addr:city": "Petts Wood, Orpington",
"tags.addr:housenumber": "52",
"tags.addr:postcode": "BR5 1DH",
"tags.addr:street": "Queensway",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1689 873031",
"tags_new.ref:navads_shell": "NVDS353-10018857"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-5.0260296,
50.3468756
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 352648307,
"osm_type": "node",
"ref_coords": [
-5.026033,
50.346838
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.fuel:lpg": "yes",
"tags_new.addr:postcode": "TR8 5AY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1872 519352",
"tags_new.ref:navads_shell": "NVDS353-10019597"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-5.3963914,
50.1984344
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 634469103,
"osm_type": "node",
"ref_coords": [
-5.396334,
50.198443
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.fuel:lpg": "yes",
"tags.name": "Carwin Rise Service Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TR27 5DG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1736 753125",
"tags_new.ref:navads_shell": "NVDS353-10019075"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2380766,
53.6269575
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 394953591,
"osm_type": "way",
"ref_coords": [
-1.23802,
53.626975
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags.name": "Shell Barnsdale Bar (South)",
"tags_new.addr:postcode": "WF8 3JF",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1977 620372",
"tags_new.ref:navads_shell": "NVDS353-10019386"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5461026,
55.4868742
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 71338042,
"osm_type": "way",
"ref_coords": [
-2.546056,
55.486847
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.shop": "kiosk",
"tags.source": "Bing;survey",
"tags_new.addr:postcode": "TD8 6EB",
"tags_new.phone": "+44 1835 863378",
"tags_new.ref:navads_shell": "NVDS353-10019579"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7138572,
55.0376315
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 171959947,
"osm_type": "way",
"ref_coords": [
-1.71382,
55.0376
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:1_25": "no",
"tags.fuel:1_50": "no",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:e10": "no",
"tags.fuel:e85": "no",
"tags.fuel:electricity": "no",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.name": "Skyway Filling Station",
"tags.shop": "convenience",
"tags_new.addr:postcode": "NE13 8BZ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1661 822277",
"tags_new.ref:navads_shell": "NVDS353-11064054"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9776527,
56.4609546
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 290165108,
"osm_type": "node",
"ref_coords": [
-2.977713,
56.460973
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DD1 1QP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1382 204298",
"tags_new.ref:navads_shell": "NVDS353-10047881"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0944984,
51.019188
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 476105546,
"osm_type": "way",
"ref_coords": [
-3.094445,
51.01917
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.shop": "convenience",
"tags_new.addr:postcode": "TA1 1QD",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1823 325022",
"tags_new.ref:navads_shell": "NVDS353-10019060"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0933848,
52.5326725
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1666049273,
"osm_type": "node",
"ref_coords": [
-2.093403,
52.532709
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DY1 4LQ",
"tags_new.phone": "+44 1902 672549",
"tags_new.ref:navads_shell": "NVDS353-12038648"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0210603,
51.6927233
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 397759015,
"osm_type": "way",
"ref_coords": [
-3.021,
51.692731
],
"ref_distance": 4.2,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags_changed.brand": "Texaco -> Shell",
"tags_new.addr:postcode": "NP4 0XB",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1495 764983",
"tags_new.ref:navads_shell": "NVDS353-12038576"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2174073,
51.84253
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 250749308,
"osm_type": "node",
"ref_coords": [
-2.217466,
51.842542
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags.operator": "Total",
"tags_new.addr:housenumber": "191",
"tags_new.addr:postcode": "GL4 4BS",
"tags_new.addr:street": "Painswick Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1452 416771",
"tags_new.ref:navads_shell": "NVDS353-12038561"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5471323,
51.1090625
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 299128157,
"osm_type": "node",
"ref_coords": [
0.547144,
51.1091
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "TN17 2HR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 06:30-22:00",
"tags_new.phone": "+44 1580 720918",
"tags_new.ref:navads_shell": "NVDS353-10019713"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2225118,
53.3497162
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1995023582,
"osm_type": "node",
"ref_coords": [
-1.222562,
53.34974
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "20",
"tags_new.addr:postcode": "S25 5ER",
"tags_new.addr:street": "Worksop Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1909 569039",
"tags_new.ref:navads_shell": "NVDS353-10019351"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.13387,
52.0573198
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 239774804,
"osm_type": "way",
"ref_coords": [
1.133926,
52.057303
],
"ref_distance": 4.3,
"tags.addr:postcode": "IP2 0DX",
"tags.addr:street": "London Road",
"tags.amenity": "fuel",
"tags.branch": "Ranelagh",
"tags.building": "yes",
"tags.fhrs:id": "409668",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1473 235010",
"tags_new.ref:navads_shell": "NVDS353-10019200"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3203023,
54.4044184
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 340354787,
"osm_type": "node",
"ref_coords": [
-1.320253,
54.404393
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_91": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Exelby Services (Northbound)",
"tags.operator": "Shell",
"tags.shop": "kiosk",
"tags_new.addr:postcode": "DL6 3JX",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 78 0824 9433",
"tags_new.ref:navads_shell": "NVDS353-12281487"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3780061,
53.5797731
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 469756006,
"osm_type": "node",
"ref_coords": [
-2.378014,
53.579735
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "1041",
"tags_new.addr:postcode": "BL2 6PY",
"tags_new.addr:street": "Bury Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1204 371468",
"tags_new.ref:navads_shell": "NVDS353-10954751"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4725151,
53.3769838
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 463054749,
"osm_type": "way",
"ref_coords": [
-2.472575,
53.376998
],
"ref_distance": 4.3,
"tags.addr:city": "Lymm",
"tags.addr:postcode": "WA13 0BA",
"tags.addr:street": "Higher Lane",
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Shell",
"tags.opening_hours": "Mo-Su 07:00-22:00",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1925 755972",
"tags_new.ref:navads_shell": "NVDS353-10019295"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1224912,
52.960866
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 411204554,
"osm_type": "way",
"ref_coords": [
-1.122518,
52.960831
],
"ref_distance": 4.3,
"ref_unused_tags.addr:postcode": "NG3 2NJ",
"tags.addr:postcode": "NG3 2NT",
"tags.addr:street": "Carlton Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source:postcode": "NCC Open Data",
"tags_new.phone": "+44 115 924 0608",
"tags_new.ref:navads_shell": "NVDS353-10019163"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4817297,
53.5117868
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2400949069,
"osm_type": "node",
"ref_coords": [
-1.48177,
53.511817
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Hilltop Service Station",
"tags_new.addr:postcode": "S70 5XB",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1226 242595",
"tags_new.ref:navads_shell": "NVDS353-11234687"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0953415,
53.5149242
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 285972498,
"osm_type": "node",
"ref_coords": [
-1.095311,
53.51489
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.name": "Jet",
"tags_new.addr:housenumber": "4",
"tags_new.addr:postcode": "DN4 5NW",
"tags_new.addr:street": "Bawtry Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1302 535241",
"tags_new.ref:navads_shell": "NVDS353-12427229"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1087148,
51.5502141
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 359851003,
"osm_type": "node",
"ref_coords": [
-0.108713,
51.550253
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "104-116",
"tags_new.addr:postcode": "N7 8JE",
"tags_new.addr:street": "Holloway Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7700 8900",
"tags_new.ref:navads_shell": "NVDS353-10018830"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2073121,
52.6851699
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 413959200,
"osm_type": "way",
"ref_coords": [
0.207259,
52.685148
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.building": "canopy",
"tags.operator": "Total",
"tags_new.addr:postcode": "PE14 7BD",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1945 583630",
"tags_new.ref:navads_shell": "NVDS353-12038645"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4106196,
50.6316114
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1479186265,
"osm_type": "node",
"ref_coords": [
-3.410594,
50.631576
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "223",
"tags_new.addr:postcode": "EX8 3DZ",
"tags_new.addr:street": "Exeter Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1395 265194",
"tags_new.ref:navads_shell": "NVDS353-10019089"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.8993872,
53.280562
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 152798535,
"osm_type": "way",
"ref_coords": [
-3.899386,
53.280601
],
"ref_distance": 4.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.source": "Bing",
"tags_new.addr:postcode": "LL34 6UN",
"tags_new.phone": "+44 1492 621130",
"tags_new.ref:navads_shell": "NVDS353-10019274"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2478965,
53.4230067
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3282863635,
"osm_type": "node",
"ref_coords": [
-1.247962,
53.423004
],
"ref_distance": 4.4,
"tags.amenity": "fuel",
"tags.fixme": "Needs mapping properly - what other outlets (coffee etc.) are there here?",
"tags.name": "Shell",
"tags_new.addr:postcode": "S66 8EY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1709 543124",
"tags_new.ref:navads_shell": "NVDS353-12038596"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2381456,
53.3263665
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 431764716,
"osm_type": "way",
"ref_coords": [
-2.23821,
53.326374
],
"ref_distance": 4.4,
"tags.addr:city": "Wilmslow",
"tags.addr:postcode": "SK9 5EH",
"tags.addr:street": "Hawthorn Street",
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1625 520752",
"tags_new.ref:navads_shell": "NVDS353-10019304"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4283528,
51.7563614
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 29276141,
"osm_type": "node",
"ref_coords": [
-0.428406,
51.75634
],
"ref_distance": 4.4,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HP2 4TZ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1442 216933",
"tags_new.ref:navads_shell": "NVDS353-10018896"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0597924,
51.492616
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 417375806,
"osm_type": "way",
"ref_coords": [
-0.059784,
51.492577
],
"ref_distance": 4.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "297-309",
"tags_new.addr:postcode": "SE16 2JN",
"tags_new.addr:street": "Southwark Park Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7252 2762",
"tags_new.ref:navads_shell": "NVDS353-10018833"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6025442,
51.677915
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 347281655,
"osm_type": "way",
"ref_coords": [
-0.6026064,
51.67792335
],
"ref_distance": 4.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Jet",
"tags_new.addr:housenumber": "40-42",
"tags_new.addr:postcode": "HP6 6AJ",
"tags_new.addr:street": "Woodside Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:30",
"tags_new.phone": "+44 1494 724425",
"tags_new.ref:navads_shell": "NVDS353-12577721"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2045963,
52.6191155
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1819394055,
"osm_type": "node",
"ref_coords": [
-1.20453601,
52.61913089
],
"ref_distance": 4.4,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags_new.addr:postcode": "LE3 3GB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 116 239 0528",
"tags_new.ref:navads_shell": "c9a75284-8058-4004-a7a0-1fed057e4b35"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5271339,
50.8202742
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 471432118,
"osm_type": "way",
"ref_coords": [
-0.527071,
50.820271
],
"ref_distance": 4.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "BN17 6LE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1903 732445",
"tags_new.ref:navads_shell": "NVDS353-10019507"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3465873,
51.5351036
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 32544819,
"osm_type": "node",
"ref_coords": [
-0.346525,
51.535113
],
"ref_distance": 4.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "744-748",
"tags_new.addr:postcode": "UB6 8QQ",
"tags_new.addr:street": "Greenford Road",
"tags_new.phone": "+44 20 8813 4190",
"tags_new.ref:navads_shell": "NVDS353-10018868"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6193914,
51.0764191
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 598723471,
"osm_type": "node",
"ref_coords": [
-2.619349,
51.076449
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.name": "Lydford Services",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TA11 7EY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-22:00; Sa-Su 07:00-22:00",
"tags_new.phone": "+44 1963 240107",
"tags_new.ref:navads_shell": "NVDS353-11532454"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1601354,
53.2595544
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 383036490,
"osm_type": "way",
"ref_coords": [
-2.160192,
53.259533
],
"ref_distance": 4.5,
"tags.addr:city": "Macclesfield",
"tags.addr:housenumber": "147",
"tags.addr:postcode": "SK11 8TU",
"tags.addr:street": "Broken Cross",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell Station",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1625 500168",
"tags_new.ref:navads_shell": "NVDS353-10019291"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8052557,
52.5184363
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 142617209,
"osm_type": "way",
"ref_coords": [
-1.805299,
52.518406
],
"ref_distance": 4.5,
"tags.addr:city": "Birmingham",
"tags.addr:housenumber": "912",
"tags.addr:postcode": "B24 9PY",
"tags.addr:street": "Kingsbury Road",
"tags.addr:town": "Erdington",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.designation": "2242",
"tags.fuel:1_25": "no",
"tags.fuel:1_50": "no",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:cng": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:e10": "no",
"tags.fuel:e85": "no",
"tags.fuel:electricity": "no",
"tags.fuel:gtl_diesel": "no",
"tags.fuel:hgv_diesel": "no",
"tags.fuel:lpg": "no",
"tags.fuel:octane_100": "no",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Kingsbury Road",
"tags.operator": "Shell",
"tags.source": "survey",
"tags.telephone": "+44 (0)121 373 4103",
"tags_new.phone": "+44 121 373 4103",
"tags_new.ref:navads_shell": "NVDS353-12038568"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5736305,
51.7631516
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 465936989,
"osm_type": "way",
"ref_coords": [
-0.573572,
51.763134
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.atm": "yes",
"tags.brand": "Shell",
"tags.car_wash": "yes",
"tags.name": "Shell Berkhamsted",
"tags.operator": "Total",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "345",
"tags_new.addr:postcode": "HP4 1AL",
"tags_new.addr:street": "High Street",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1442 879839",
"tags_new.ref:navads_shell": "NVDS353-12038472"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0714464,
51.5376594
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4159646532,
"osm_type": "node",
"ref_coords": [
0.071508,
51.537647
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "IG11 8BU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8507 3772",
"tags_new.ref:navads_shell": "NVDS353-10019005"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5987567,
51.3007043
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1419639927,
"osm_type": "node",
"ref_coords": [
0.598716,
51.300673
],
"ref_distance": 4.5,
"tags.addr:city": "Maidstone",
"tags.addr:postcode": "ME14 3HT",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Highland",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1622 638200",
"tags_new.ref:navads_shell": "NVDS353-10018984"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0209803,
51.1749989
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 384966503,
"osm_type": "node",
"ref_coords": [
-0.020916,
51.174997
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "RH7 6BN",
"tags_new.addr:street": "Godstone Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1342 836685",
"tags_new.ref:navads_shell": "NVDS353-12038535"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0831032,
52.6417075
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 27149106,
"osm_type": "node",
"ref_coords": [
-1.083117,
52.641747
],
"ref_distance": 4.5,
"tags.addr:city": "Leicester",
"tags.addr:postcode": "LE5 2BE",
"tags.addr:street": "Uppingham Road",
"tags.amenity": "fuel",
"tags.name": "Trocadero",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 116 246 0366",
"tags_new.ref:navads_shell": "NVDS353-10019171"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4287959,
52.6545816
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 63619522,
"osm_type": "way",
"ref_coords": [
-2.428732,
52.65457
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "OS_OpenData_StreetView",
"tags_new.addr:postcode": "TF3 1QU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1952 661000",
"tags_new.ref:navads_shell": "NVDS353-10019684"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.0675713,
51.359535
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 167363931,
"osm_type": "way",
"ref_coords": [
1.067604,
51.3595
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.layer": "1",
"tags.name": "Shell Service Station",
"tags_new.addr:postcode": "CT5 3JB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1227 794094",
"tags_new.ref:navads_shell": "NVDS353-12038463"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3945364,
51.6811308
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 263928082,
"osm_type": "node",
"ref_coords": [
-0.394577,
51.681099
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.name": "Shell Petrol Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "WD24 7RU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1923 800920",
"tags_new.ref:navads_shell": "NVDS353-10018899"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1363135,
51.4852672
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 564862659,
"osm_type": "node",
"ref_coords": [
-0.13637,
51.485247
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.car_wash": "no",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "SW1V 3JY",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 7828 1295",
"tags_new.ref:navads_shell": "NVDS353-11589596"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1636604,
51.1806894
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1958208982,
"osm_type": "node",
"ref_coords": [
-0.163636,
51.180727
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "BP",
"tags_new.addr:postcode": "RH6 7JU",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1293 785646",
"tags_new.ref:navads_shell": "NVDS353-10018932"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9400578,
53.4091064
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2402697329,
"osm_type": "node",
"ref_coords": [
-2.940101,
53.409075
],
"ref_distance": 4.5,
"tags.addr:postcode": "L7 9LD",
"tags.addr:street": "Edge Lane",
"tags.addr:town": "Liverpool",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Edge Lane",
"tags.operator": "Shell",
"tags.ref": "2356",
"tags.telephone": "+44 (0)151 263 1779",
"tags_new.phone": "+44 151 263 1779",
"tags_new.ref:navads_shell": "NVDS353-12038482"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.628484,
51.4797262
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 701255514,
"osm_type": "node",
"ref_coords": [
-0.628423,
51.479741
],
"ref_distance": 4.5,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "SL4 5AE",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1753 869827",
"tags_new.ref:navads_shell": "NVDS353-10018961"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0824428,
51.5636025
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2325908514,
"osm_type": "node",
"ref_coords": [
0.082498,
51.563625
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags_new.addr:housenumber": "296-306",
"tags_new.addr:postcode": "IG1 4BS",
"tags_new.addr:street": "Ley Street",
"tags_new.phone": "+44 20 8553 4591",
"tags_new.ref:navads_shell": "NVDS353-12038521"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.79122,
55.8181068
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 174140178,
"osm_type": "way",
"ref_coords": [
-3.791163,
55.818081
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.layer": "1",
"tags_new.addr:postcode": "ML7 5DZ",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1501 821011",
"tags_new.ref:navads_shell": "NVDS353-10019687"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4140746,
53.5654058
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 506673256,
"osm_type": "way",
"ref_coords": [
-2.414102,
53.565368
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "BL3 2NZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1204 520959",
"tags_new.ref:navads_shell": "NVDS353-10019661"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7932867,
52.0001021
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 515736650,
"osm_type": "way",
"ref_coords": [
-2.793303,
52.000062
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.layer": "1",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source": "DigitalGlobe-Premium",
"tags_new.addr:postcode": "HR2 9AS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 00:00-05:00,07:00-24:00",
"tags_new.phone": "+44 1981 570206",
"tags_new.ref:navads_shell": "NVDS353-10019690"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.4712571,
51.8251293
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 452154890,
"osm_type": "way",
"ref_coords": [
-4.471198,
51.825149
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.source": "survey;Bing",
"tags_new.addr:postcode": "SA33 4NA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-23:00",
"tags_new.phone": "+44 1994 231930",
"tags_new.ref:navads_shell": "NVDS353-10019084"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2972376,
53.1118301
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 300925144,
"osm_type": "way",
"ref_coords": [
-1.29729,
53.111803
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:housenumber": "367-369",
"tags_new.addr:postcode": "NG17 6JG",
"tags_new.addr:street": "Alfreton Road",
"tags_new.phone": "+44 1623 512689",
"tags_new.ref:navads_shell": "NVDS353-12038498"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5324963,
53.8027605
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 426157920,
"osm_type": "way",
"ref_coords": [
-1.532552,
53.802786
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags.operator": "shell",
"tags_new.addr:housenumber": "24",
"tags_new.addr:postcode": "LS2 7QA",
"tags_new.addr:street": "Regent Street",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 113 244 0705",
"tags_new.ref:navads_shell": "NVDS353-10019219"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2227728,
52.1270493
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 26531408,
"osm_type": "node",
"ref_coords": [
0.222803,
52.127012
],
"ref_distance": 4.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CB1 6AR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1223 837949",
"tags_new.ref:navads_shell": "NVDS353-10019190"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6059807,
53.7033942
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 357521360,
"osm_type": "node",
"ref_coords": [
-1.606013,
53.703357
],
"ref_distance": 4.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "WF12 7HP",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1924 466542",
"tags_new.ref:navads_shell": "NVDS353-12038582"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0772305,
52.3324614
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 273275804,
"osm_type": "way",
"ref_coords": [
-0.077162,
52.332459
],
"ref_distance": 4.7,
"tags.addr:city": "St Ives",
"tags.addr:postcode": "PE27 6RG",
"tags.addr:street": "Ramsey Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.building:levels": "1",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_changed.opening_hours": "06:00-22:00 -> Mo-Su 06:00-22:00",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1480 493850",
"tags_new.ref:navads_shell": "NVDS353-10019182"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3847539,
53.930957
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 27475930,
"osm_type": "node",
"ref_coords": [
-1.38475,
53.930915
],
"ref_distance": 4.7,
"tags.addr:city": "Wetherby",
"tags.addr:housenumber": "31",
"tags.addr:postcode": "LS22 6NU",
"tags.addr:street": "North Street",
"tags.amenity": "fuel",
"tags.fhrs:id": "553199",
"tags.name": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1937 580689",
"tags_new.ref:navads_shell": "NVDS353-12038633"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2426497,
53.0795223
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 312375469,
"osm_type": "node",
"ref_coords": [
-1.242692,
53.079556
],
"ref_distance": 4.7,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10f",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NG17 9BX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 05:00-23:00",
"tags_new.phone": "+44 1623 753257",
"tags_new.ref:navads_shell": "NVDS353-10392000"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6489775,
50.8554596
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 156082388,
"osm_type": "way",
"ref_coords": [
-0.649044,
50.855454
],
"ref_distance": 4.7,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BN18 0SB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1243 543714",
"tags_new.ref:navads_shell": "NVDS353-10018981"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.552654,
51.4314817
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 134709713,
"osm_type": "way",
"ref_coords": [
-0.552586,
51.431482
],
"ref_distance": 4.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "no",
"tags.name": "Shell Egham",
"tags.shop": "yes",
"tags_new.addr:housenumber": "186-187",
"tags_new.addr:postcode": "TW20 9DY",
"tags_new.addr:street": "High Street",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1784 430930",
"tags_new.ref:navads_shell": "NVDS353-10018962"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7581376,
51.4210702
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 344362027,
"osm_type": "node",
"ref_coords": [
-0.758101,
51.421106
],
"ref_distance": 4.7,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10f",
"tags.operator": "Total",
"tags_new.addr:housenumber": "78-82",
"tags_new.addr:postcode": "RG42 2AS",
"tags_new.addr:street": "Binfield Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1344 304232",
"tags_new.ref:navads_shell": "NVDS353-12038441"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7533387,
52.0213004
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1869906467,
"osm_type": "node",
"ref_coords": [
-0.753403,
52.021285
],
"ref_distance": 4.7,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "MK6 1LJ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1908 242333",
"tags_new.ref:navads_shell": "NVDS353-10019617"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5702059,
54.5300778
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 92788122,
"osm_type": "way",
"ref_coords": [
-1.570133,
54.530083
],
"ref_distance": 4.7,
"tags.addr:city": "Darlington",
"tags.addr:street": "Woodland Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "DL3 9NQ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1325 382208",
"tags_new.ref:navads_shell": "NVDS353-10019368"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0813729,
51.6107133
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 469251548,
"osm_type": "node",
"ref_coords": [
0.081442,
51.610713
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "124",
"tags_new.addr:postcode": "IG7 5PP",
"tags_new.addr:street": "Manor Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8500 4727",
"tags_new.ref:navads_shell": "NVDS353-10018842"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0421678,
50.8364593
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 94948050,
"osm_type": "node",
"ref_coords": [
-1.042234,
50.836469
],
"ref_distance": 4.8,
"tags.addr:city": "Portsmouth",
"tags.addr:place": "Farlington",
"tags.addr:postcode": "PO6 1UW",
"tags.addr:street": "Easten Road",
"tags.alt_name": "Farlington Services",
"tags.amenity": "fuel",
"tags.branch_ref": "0655",
"tags.brand": "Shell",
"tags.name": "Shell Farlington",
"tags.shop": "convenience",
"tags_changed.phone": "+442392372014 -> +44 23 9237 2014",
"tags_new.ref:navads_shell": "NVDS353-10018952"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6012626,
53.7521539
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2059658303,
"osm_type": "node",
"ref_coords": [
-1.601334,
53.752162
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.name": "Brookfields",
"tags_new.addr:postcode": "LS27 9NU",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 113 238 2500",
"tags_new.ref:navads_shell": "NVDS353-12271741"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8929483,
52.2014231
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 514602551,
"osm_type": "way",
"ref_coords": [
-0.893012,
52.201405
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.building": "y",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NN4 0JN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1604 675071",
"tags_new.ref:navads_shell": "NVDS353-10019170"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7507336,
53.8684098
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 390544208,
"osm_type": "node",
"ref_coords": [
-2.750784,
53.868441
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PR3 0GA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-23:00",
"tags_new.phone": "+44 1995 640231",
"tags_new.ref:navads_shell": "NVDS353-11299682"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.106547,
51.082646
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 329614598,
"osm_type": "way",
"ref_coords": [
-1.106602,
51.082672
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "SO24 0BG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1962 773056",
"tags_new.ref:navads_shell": "NVDS353-10019035"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9627991,
51.7074421
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 373914886,
"osm_type": "way",
"ref_coords": [
-1.962772,
51.707482
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "GL7 1YE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1285 659227",
"tags_new.ref:navads_shell": "NVDS353-11359870"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5247943,
51.9513054
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 165298059,
"osm_type": "way",
"ref_coords": [
-1.524861,
51.951319
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "OX7 5SX",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1608 641645",
"tags_new.ref:navads_shell": "NVDS353-10019127"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2090048,
51.4725433
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1138172496,
"osm_type": "node",
"ref_coords": [
-0.209002,
51.4725
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "923-931",
"tags_new.addr:postcode": "SW6 5HY",
"tags_new.addr:street": "Fulham Road",
"tags_new.opening_hours": "Mo-Sa 07:00-23:00; Su 08:00-22:00",
"tags_new.phone": "+44 20 7731 3958",
"tags_new.ref:navads_shell": "NVDS353-10018937"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9868371,
53.4594384
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 311020545,
"osm_type": "way",
"ref_coords": [
-2.986867,
53.459478
],
"ref_distance": 4.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "13",
"tags_new.addr:postcode": "L20 5AG",
"tags_new.addr:street": "Linacre Lane",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 922 0432",
"tags_new.ref:navads_shell": "NVDS353-12038534"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9367497,
53.5221093
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 665872300,
"osm_type": "node",
"ref_coords": [
-2.936823,
53.522111
],
"ref_distance": 4.9,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_91": "yes",
"tags.fuel:octane_95": "no",
"tags.operator": "Shell",
"tags_new.addr:postcode": "L31 0BW",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 526 6871",
"tags_new.ref:navads_shell": "NVDS353-10019653"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1256188,
52.5785702
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1516056764,
"osm_type": "node",
"ref_coords": [
-2.125652,
52.578609
],
"ref_distance": 4.9,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "WV2 3LH",
"tags_new.phone": "+44 1902 452075",
"tags_new.ref:navads_shell": "NVDS353-12038432"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4328111,
51.6875364
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 220013148,
"osm_type": "way",
"ref_coords": [
-0.432764,
51.687569
],
"ref_distance": 4.9,
"tags.addr:postcode": "WD4 8RD",
"tags.addr:street": "Watford Road",
"tags.amenity": "fuel",
"tags.maxheight": "4.5",
"tags.operator": "Shell",
"tags.website": "http://www.shell.co.uk/",
"tags.wikipedia": "en:Shell Oil Company",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1923 262293",
"tags_new.ref:navads_shell": "NVDS353-12038518"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8959892,
52.6239865
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 260299192,
"osm_type": "node",
"ref_coords": [
-1.89598,
52.62403
],
"ref_distance": 4.9,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:postcode": "WS9 9HS",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1922 452378",
"tags_new.ref:navads_shell": "NVDS353-12038597"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3906408,
52.245588
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 322517174,
"osm_type": "node",
"ref_coords": [
-1.390615,
52.245547
],
"ref_distance": 4.9,
"tags.amenity": "fuel",
"tags.name": "TCS SOUTHAM",
"tags.operator": "Total",
"tags_new.addr:postcode": "CV47 2BJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1926 816310",
"tags_new.ref:navads_shell": "NVDS353-12038590"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1917458,
50.9678203
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 98944908,
"osm_type": "way",
"ref_coords": [
-0.191811,
50.967804
],
"ref_distance": 4.9,
"tags.amenity": "fuel",
"tags.name": "BP",
"tags.source": "Bing",
"tags_new.addr:postcode": "RH17 5NZ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1444 882142",
"tags_new.ref:navads_shell": "NVDS353-10019620"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9232263,
52.7717058
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1408499056,
"osm_type": "node",
"ref_coords": [
-2.923244,
52.771749
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.source": "survey",
"tags_changed.brand": "Esso -> Shell",
"tags_new.addr:postcode": "SY4 1BZ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1743 741645",
"tags_new.ref:navads_shell": "NVDS353-12203964"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4629407,
51.3465894
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 222782554,
"osm_type": "way",
"ref_coords": [
-0.46301182,
51.34658618
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KT13 0RP",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1932 336920",
"tags_new.ref:navads_shell": "NVDS353-10018975"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8391278,
50.7895475
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 30892691,
"osm_type": "node",
"ref_coords": [
-0.839182,
50.789576
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:postcode": "PO20 7HU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1243 512760",
"tags_new.ref:navads_shell": "NVDS353-12042051"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7172776,
51.8061971
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1318535898,
"osm_type": "node",
"ref_coords": [
-2.717344,
51.806179
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "NP25 5EZ",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1600 712632",
"tags_new.ref:navads_shell": "NVDS353-11544508"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.4075399,
55.8623505
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2287979592,
"osm_type": "node",
"ref_coords": [
-4.407597,
55.862382
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags_new.addr:postcode": "PA4 8XD",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 141 848 5132",
"tags_new.ref:navads_shell": "NVDS353-10019463"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0091767,
51.4334367
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 408016860,
"osm_type": "way",
"ref_coords": [
0.009136,
51.433474
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Total",
"tags.wheelchair": "yes",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:housenumber": "360",
"tags_new.addr:postcode": "SE6 1TP",
"tags_new.addr:street": "Verdant Lane",
"tags_new.phone": "+44 20 8285 1502",
"tags_new.ref:navads_shell": "NVDS353-12038459"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0073101,
52.5249762
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 269293257,
"osm_type": "way",
"ref_coords": [
-2.007243,
52.524957
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.source": "bing",
"tags_new.addr:postcode": "B70 9LS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 500 5778",
"tags_new.ref:navads_shell": "NVDS353-10019166"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.5225203,
55.8942649
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 251191199,
"osm_type": "node",
"ref_coords": [
-3.522564,
55.894227
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "EH54 6AA",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1506 414814",
"tags_new.ref:navads_shell": "NVDS353-10019485"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6286187,
52.2973389
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1069774813,
"osm_type": "node",
"ref_coords": [
-0.628568,
52.297306
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Croyland Motors",
"tags_new.addr:postcode": "NN10 6GA",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1933 413415",
"tags_new.ref:navads_shell": "NVDS353-10019123"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8505319,
53.3901087
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 735970959,
"osm_type": "node",
"ref_coords": [
-2.850596,
53.390133
],
"ref_distance": 5.0,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "L25 2RJ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 487 5163",
"tags_new.ref:navads_shell": "NVDS353-11605172"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4013405,
52.6774068
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 493047809,
"osm_type": "way",
"ref_coords": [
-2.401415,
52.677412
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.layer": "1",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "TF11 8TG",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1952 238409",
"tags_new.ref:navads_shell": "NVDS353-10045883"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9787816,
51.9898157
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2354009433,
"osm_type": "node",
"ref_coords": [
-0.978715,
51.989836
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "MK18 1AS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1280 823539",
"tags_new.ref:navads_shell": "NVDS353-12038549"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.1503412,
51.7974481
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 73029814,
"osm_type": "way",
"ref_coords": [
1.150383,
51.797486
],
"ref_distance": 5.1,
"ref_unused_tags.addr:postcode": "CO15 1HX",
"tags.addr:postcode": "CO15 3LX",
"tags.addr:street": "Old Road",
"tags.amenity": "fuel",
"tags.building": "shop",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Old Rd (212)",
"tags.operator": "Shell",
"tags.source:building": "OS_OpenData_StreetView",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1255 222856",
"tags_new.ref:navads_shell": "NVDS353-10019609"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7810147,
52.3641081
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 157553578,
"osm_type": "way",
"ref_coords": [
-1.781012,
52.364154
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.source": "visual survey; bing",
"tags_new.addr:postcode": "B94 6NS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:30",
"tags_new.phone": "+44 1564 785134",
"tags_new.ref:navads_shell": "NVDS353-12038440"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2310941,
50.8797245
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 833453765,
"osm_type": "node",
"ref_coords": [
0.231024,
50.879712
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey; bing",
"tags_new.addr:postcode": "BN27 4DP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1323 449569",
"tags_new.ref:navads_shell": "NVDS353-12038437"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1124392,
52.1732296
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 21642224,
"osm_type": "node",
"ref_coords": [
0.112396,
52.173192
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CB2 2LS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1223 841081",
"tags_new.ref:navads_shell": "NVDS353-10019188"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5155866,
53.6559115
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 451877050,
"osm_type": "way",
"ref_coords": [
-1.515509,
53.65591
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.name": "Grange Service Station",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "WF4 3BB",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 78 2803 7253",
"tags_new.ref:navads_shell": "NVDS353-12281483"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0969531,
53.5757061
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1447545799,
"osm_type": "node",
"ref_coords": [
-0.096999,
53.575669
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Garage",
"tags_new.addr:postcode": "DN31 2SY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1472 354066",
"tags_new.ref:navads_shell": "NVDS353-10019226"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1272953,
53.2364467
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 331076060,
"osm_type": "node",
"ref_coords": [
-2.127242,
53.23648
],
"ref_distance": 5.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "no",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Service Station",
"tags_new.addr:postcode": "SK11 0JX",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1260 253695",
"tags_new.ref:navads_shell": "NVDS353-12038538"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.2555346,
55.8867805
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 370058050,
"osm_type": "way",
"ref_coords": [
-4.255575,
55.88674
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "25",
"tags_new.addr:postcode": "G22 6HY",
"tags_new.addr:street": "Hawthorn Street",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 141 336 8767",
"tags_new.ref:navads_shell": "NVDS353-12272133"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1794268,
51.4917193
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 300425854,
"osm_type": "node",
"ref_coords": [
-0.179379,
51.491755
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Filling Station",
"tags_new.addr:housenumber": "106",
"tags_new.addr:postcode": "SW7 3RA",
"tags_new.addr:street": "Old Brompton Road",
"tags_new.opening_hours": "Mo-Sa 07:00-23:00; Su 08:00-23:00",
"tags_new.phone": "+44 20 7835 0158",
"tags_new.ref:navads_shell": "NVDS353-10018827"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1040164,
51.6630247
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 364428198,
"osm_type": "node",
"ref_coords": [
-0.10407,
51.662992
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Lavender Hill Garage Ltd",
"tags_new.addr:housenumber": "78",
"tags_new.addr:postcode": "EN2 8JF",
"tags_new.addr:street": "The Ridgeway",
"tags_new.opening_hours": "Mo-Su 06:30-23:00",
"tags_new.phone": "+44 20 8367 7005",
"tags_new.ref:navads_shell": "NVDS353-10018884"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4671884,
51.7363978
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 453030730,
"osm_type": "way",
"ref_coords": [
-0.467236,
51.736434
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:petrol": "yes",
"tags_new.addr:housenumber": "14",
"tags_new.addr:postcode": "HP3 9SP",
"tags_new.addr:street": "London Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-22:00",
"tags_new.phone": "+44 1442 215317",
"tags_new.ref:navads_shell": "NVDS353-10018895"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1959688,
52.3428248
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 107254191,
"osm_type": "way",
"ref_coords": [
-0.195944,
52.342869
],
"ref_distance": 5.2,
"tags.addr:city": "Huntingdon",
"tags.addr:postcode": "PE29 6HG",
"tags.addr:street": "Stukeley Road",
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.opening_hours": "0:00-23:59",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1480 432160",
"tags_new.ref:navads_shell": "NVDS353-10018941"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4778814,
53.3721154
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 93499498,
"osm_type": "way",
"ref_coords": [
-1.47780781,
53.3721314
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Waitrose",
"tags.operator": "Shell",
"tags.source": "Bing",
"tags_new.addr:housenumber": "1-3",
"tags_new.addr:postcode": "S11 8HY",
"tags_new.addr:street": "Ecclesall Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:30; Su 08:00-19:00",
"tags_new.phone": "+44 114 275 7241",
"tags_new.ref:navads_shell": "NVDS353-12140972"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.2385983,
53.1301169
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1506479120,
"osm_type": "node",
"ref_coords": [
-4.238644,
53.130079
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "LL55 2SS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-22:00",
"tags_new.phone": "+44 1286 673096",
"tags_new.ref:navads_shell": "NVDS353-10019754"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0595904,
53.9540448
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 86056768,
"osm_type": "node",
"ref_coords": [
-1.059529,
53.954015
],
"ref_distance": 5.2,
"tags.addr:postcode": "YO10 3JG",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "26-30",
"tags_new.addr:street": "Hull Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1904 870982",
"tags_new.ref:navads_shell": "NVDS353-10019346"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0392549,
55.7688267
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 338527430,
"osm_type": "way",
"ref_coords": [
-4.039338,
55.768831
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.landuse": "retail",
"tags.name": "Shell",
"tags.shop": "convenience",
"tags.source": "survey",
"tags_new.addr:housenumber": "45-47",
"tags_new.addr:postcode": "ML3 7JU",
"tags_new.addr:street": "Portland Place",
"tags_new.opening_hours": "Mo-Su 06:30-22:30",
"tags_new.phone": "+44 1698 892520",
"tags_new.ref:navads_shell": "NVDS353-10019435"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3480965,
51.5809989
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 215055095,
"osm_type": "node",
"ref_coords": [
-0.348048,
51.581035
],
"ref_distance": 5.2,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "103-105",
"tags_new.addr:postcode": "HA2 6EQ",
"tags_new.addr:street": "Pinner Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8424 9856",
"tags_new.ref:navads_shell": "NVDS353-12038566"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3618963,
51.6698049
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 449301143,
"osm_type": "way",
"ref_coords": [
-1.361943,
51.669767
],
"ref_distance": 5.3,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "OX13 6QL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 04:00-22:00",
"tags_new.phone": "+44 1865 391440",
"tags_new.ref:navads_shell": "NVDS353-10019740"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7713769,
53.7010937
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 368341662,
"osm_type": "node",
"ref_coords": [
-1.771457,
53.701099
],
"ref_distance": 5.3,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HD6 1QH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-21:00; Sa-Su 07:30-21:00",
"tags_new.phone": "+44 1484 720371",
"tags_new.ref:navads_shell": "NVDS353-10019703"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.4180829,
55.8405551
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 370412805,
"osm_type": "way",
"ref_coords": [
-4.418086,
55.840603
],
"ref_distance": 5.3,
"tags.addr:city": "Paisley",
"tags.addr:postcode": "PA1 1SU",
"tags.addr:street": "Lonend",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell Charleston",
"tags.opening_hours": "24/7",
"tags.phone": "+44 141 840 6160",
"tags_new.brand": "Shell",
"tags_new.ref:navads_shell": "NVDS353-10019588"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2709836,
52.6041781
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4467077033,
"osm_type": "node",
"ref_coords": [
-0.271052,
52.604154
],
"ref_distance": 5.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Northmead LPG",
"tags_new.addr:postcode": "PE4 6AX",
"tags_new.phone": "+44 1733 575426",
"tags_new.ref:navads_shell": "NVDS353-10019183"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0514171,
51.438918
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 262471846,
"osm_type": "way",
"ref_coords": [
0.051412,
51.438966
],
"ref_distance": 5.4,
"tags.addr:city": "Mottingham",
"tags.addr:housenumber": "551",
"tags.addr:postcode": "SE9 3AF",
"tags.addr:street": "Sidcup Road",
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8851 2982",
"tags_new.ref:navads_shell": "NVDS353-10018906"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.241375,
51.4135761
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 284971119,
"osm_type": "way",
"ref_coords": [
-3.24129795,
51.41357867
],
"ref_distance": 5.4,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags_new.addr:postcode": "CF63 2PE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-21:00; Su 09:00-18:00",
"tags_new.phone": "+44 1446 743138",
"tags_new.ref:navads_shell": "NVDS353-12140976"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6451195,
51.0886124
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 190049120,
"osm_type": "way",
"ref_coords": [
-0.645071,
51.088575
],
"ref_distance": 5.4,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.operator": "Harvest",
"tags_new.addr:postcode": "GU8 4SP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-21:30",
"tags_new.phone": "+44 1428 652566",
"tags_new.ref:navads_shell": "NVDS353-12347935"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6283953,
51.5903698
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2074601739,
"osm_type": "node",
"ref_coords": [
-0.628376,
51.590323
],
"ref_distance": 5.4,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "HP9 2SE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1494 730807",
"tags_new.ref:navads_shell": "NVDS353-11310710"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5442129,
52.2460261
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2178644668,
"osm_type": "node",
"ref_coords": [
-0.54426325,
52.24598888
],
"ref_distance": 5.4,
"tags.addr:postcode": "MK44 1HJ",
"tags.addr:street": "Rushden Road",
"tags.amenity": "fuel",
"tags.fhrs:id": "110395",
"tags.name": "Souldrop Turn Filling Station",
"tags_changed.brand": "BP -> Shell",
"tags_new.opening_hours": "Mo-Su 05:30-21:00",
"tags_new.phone": "+44 1234 783170",
"tags_new.ref:navads_shell": "NVDS353-10396291"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1964476,
56.1949857
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4301528689,
"osm_type": "node",
"ref_coords": [
-3.196361,
56.19499
],
"ref_distance": 5.4,
"tags.amenity": "fuel",
"tags.name": "Shell Petrol Station",
"tags.opening_hours": "24/7",
"tags.operator": "Royal Douch Shell",
"tags.website": "http://www.shell.com/",
"tags.wikidata": "Q154950",
"tags.wikipedia": "en:Royal Dutch Shell",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "KY6 1PB",
"tags_new.addr:street": "Roxburgh Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1592 755018",
"tags_new.ref:navads_shell": "NVDS353-10019668"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.8385561,
52.839177
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 391449950,
"osm_type": "way",
"ref_coords": [
0.838519,
52.839134
],
"ref_distance": 5.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.layer": "1",
"tags.source": "OS_OpenData_VectorMapLocal",
"tags_new.addr:postcode": "NR21 9HT",
"tags_new.opening_hours": "Mo-Su 06:00-24:00",
"tags_new.phone": "+44 1328 862127",
"tags_new.ref:navads_shell": "NVDS353-10019167"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5948654,
52.1985559
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 312680967,
"osm_type": "node",
"ref_coords": [
-1.594839,
52.19851
],
"ref_distance": 5.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CV35 9LX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-21:30",
"tags_new.phone": "+44 1789 470123",
"tags_new.ref:navads_shell": "NVDS353-10019651"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.486842,
51.771291
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4736873846,
"osm_type": "node",
"ref_coords": [
0.48690513,
51.7712615
],
"ref_distance": 5.4,
"ref_unused_tags.addr:street": "Eagle Way Little Waltham",
"tags.addr:housenumber": "3",
"tags.addr:street": "Eagle Way",
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CM3 3FY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1245 441626",
"tags_new.ref:navads_shell": "NVDS353-12529090"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7753809,
53.2632076
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1069027853,
"osm_type": "node",
"ref_coords": [
-2.775411,
53.263162
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "28",
"tags_new.addr:postcode": "WA6 0EZ",
"tags_new.addr:street": "Chester Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1928 722705",
"tags_new.ref:navads_shell": "NVDS353-12038616"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5592602,
51.4825277
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 424540680,
"osm_type": "way",
"ref_coords": [
-1.55923708,
51.48248066
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.shop": "convenience",
"tags_new.addr:postcode": "RG17 7TZ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1908 299700",
"tags_new.ref:navads_shell": "NVDS353-12573647"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6765896,
52.3130064
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 446404562,
"osm_type": "way",
"ref_coords": [
-0.676653,
52.312976
],
"ref_distance": 5.5,
"tags.addr:city": "Wellingborough",
"tags.addr:country": "GB",
"tags.addr:housenumber": "115",
"tags.addr:postcode": "NN8 4AL",
"tags.addr:street": "Finedon Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Wellingborough",
"tags.fhrs:id": "167204",
"tags.fhrs:local_authority_id": "PI/000010943",
"tags.fhrs:rating": "5",
"tags.fhrs:rating_date": "2013-06-27",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1933 445240",
"tags_new.ref:navads_shell": "NVDS353-10019139"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.117202,
57.1114449
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 103633084,
"osm_type": "way",
"ref_coords": [
-2.11717,
57.111491
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags_new.addr:postcode": "AB12 5UT",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1224 891352",
"tags_new.ref:navads_shell": "NVDS353-10047880"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3601624,
54.8041952
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 752870301,
"osm_type": "node",
"ref_coords": [
-1.360245,
54.804208
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.name": "Shell Easington (North)",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SR7 8SS",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 191 527 9184",
"tags_new.ref:navads_shell": "NVDS353-10019385"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4940395,
51.786181
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 283364681,
"osm_type": "node",
"ref_coords": [
-1.493968,
51.786159
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags_new.addr:postcode": "OX28 6JL",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1993 700265",
"tags_new.ref:navads_shell": "NVDS353-12038611"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0409578,
53.1106267
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 52734428,
"osm_type": "node",
"ref_coords": [
-2.040993,
53.110582
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags.name": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "ST13 8LD",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1538 384250",
"tags_new.ref:navads_shell": "NVDS353-10019232"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.278466,
51.737581
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 482385882,
"osm_type": "node",
"ref_coords": [
-0.278545,
51.737573
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:postcode": "AL4 0NG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1727 822150",
"tags_new.ref:navads_shell": "NVDS353-12038467"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.538088,
50.6598305
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 320154072,
"osm_type": "node",
"ref_coords": [
-3.538035,
50.659867
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "EX6 7UD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1392 832973",
"tags_new.ref:navads_shell": "NVDS353-10019097"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1282156,
51.5826894
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 247328351,
"osm_type": "node",
"ref_coords": [
-0.12828,
51.58266
],
"ref_distance": 5.5,
"tags.addr:housenumber": "93-113",
"tags.addr:postcode": "N8 8JN",
"tags.addr:street": "Park Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.shell:site_id": "10019640",
"tags.shop": "convenience",
"tags_changed.phone": "02083482719 -> +44 20 8348 2719",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10019640"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1376316,
53.30297
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 73919126,
"osm_type": "way",
"ref_coords": [
-1.13761,
53.302922
],
"ref_distance": 5.5,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "Bing",
"tags_new.addr:postcode": "S80 3QD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1909 489861",
"tags_new.ref:navads_shell": "NVDS353-12038480"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2769552,
51.2052214
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 236533696,
"osm_type": "way",
"ref_coords": [
0.277035,
51.205222
],
"ref_distance": 5.6,
"tags.addr:city": "Tonbridge",
"tags.addr:street": "Shipbourne Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.shop": "convenience",
"tags.source": "survey",
"tags.survey:date": "2013-09-03",
"tags_new.addr:postcode": "TN10 3ED",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1732 373910",
"tags_new.ref:navads_shell": "NVDS353-10018997"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.268013,
51.1879021
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 35132517,
"osm_type": "node",
"ref_coords": [
0.268052,
51.187946
],
"ref_distance": 5.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "54",
"tags_new.addr:postcode": "TN9 2SA",
"tags_new.addr:street": "Quarry Hill Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1732 360521",
"tags_new.ref:navads_shell": "NVDS353-10018989"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8193464,
51.0837388
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 732522516,
"osm_type": "node",
"ref_coords": [
-0.819298,
51.083779
],
"ref_distance": 5.6,
"tags.addr:country": "GB",
"tags.addr:place": "Liphook Services",
"tags.addr:postcode": "GU30 7TT",
"tags.addr:state": "Hampshire",
"tags.addr:street": "A3 North",
"tags.amenity": "fuel",
"tags.name": "Shell Liphook (North)",
"tags.operator": "Shell",
"tags.store_ref": "399",
"tags_changed.phone": "+441428724169 -> +44 1428 724169",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10019615"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1839532,
51.5107234
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 300954348,
"osm_type": "node",
"ref_coords": [
-0.183985,
51.510677
],
"ref_distance": 5.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "104-105",
"tags_new.addr:postcode": "W2 3HT",
"tags_new.addr:street": "Bayswater Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7262 3714",
"tags_new.ref:navads_shell": "NVDS353-10018889"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9239259,
52.6173189
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 446058185,
"osm_type": "way",
"ref_coords": [
-1.923906,
52.617368
],
"ref_distance": 5.6,
"tags.amenity": "fuel",
"tags.name": "Northgate Service Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "WS9 8TH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1922 454150",
"tags_new.ref:navads_shell": "NVDS353-12038556"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0251291,
55.8198631
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 282290632,
"osm_type": "node",
"ref_coords": [
-4.025162,
55.819816
],
"ref_distance": 5.6,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "ML4 1QZ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1698 840088",
"tags_new.ref:navads_shell": "NVDS353-10019436"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3403901,
51.4084883
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 479518084,
"osm_type": "node",
"ref_coords": [
-1.340309,
51.408486
],
"ref_distance": 5.6,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "RG14 1QT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44163534568",
"tags_new.ref:navads_shell": "NVDS353-10019026"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1823356,
51.4803538
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 443666768,
"osm_type": "node",
"ref_coords": [
-0.1823,
51.480308
],
"ref_distance": 5.7,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "49",
"tags_new.addr:postcode": "SW10 0NY",
"tags_new.addr:street": "Tadema Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7352 3205",
"tags_new.ref:navads_shell": "NVDS353-10019497"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6458881,
53.7660936
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 318838304,
"osm_type": "way",
"ref_coords": [
-0.645945,
53.766055
],
"ref_distance": 5.7,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HU15 1SA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1430 421831",
"tags_new.ref:navads_shell": "NVDS353-10019220"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3017145,
51.4196288
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 223308983,
"osm_type": "way",
"ref_coords": [
-0.301731,
51.419679
],
"ref_distance": 5.7,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "164",
"tags_new.addr:postcode": "KT2 5HD",
"tags_new.addr:street": "Richmond Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-23:00; Su 08:00-22:00",
"tags_new.phone": "+44 20 8546 0991",
"tags_new.ref:navads_shell": "NVDS353-10018865"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.1493842,
51.0870345
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 33389680,
"osm_type": "node",
"ref_coords": [
1.149456,
51.08701
],
"ref_distance": 5.7,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:housenumber": "336",
"tags_new.addr:postcode": "CT19 4DP",
"tags_new.addr:street": "Cheriton Road",
"tags_new.phone": "+44 1303 270576",
"tags_new.ref:navads_shell": "NVDS353-12038495"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.9418,
50.3786226
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 64366700,
"osm_type": "way",
"ref_coords": [
-4.941856,
50.378585
],
"ref_distance": 5.8,
"tags.amenity": "fuel",
"tags.name": "Kingsley Travel Services",
"tags.source": "OS_OpenData_StreetView;survey",
"tags_changed.brand": "Jet -> Shell",
"tags_new.addr:postcode": "TR9 6NA",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1726 861224",
"tags_new.ref:navads_shell": "NVDS353-11787281"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8221215,
52.6723343
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 234099960,
"osm_type": "way",
"ref_coords": [
-1.822151,
52.672383
],
"ref_distance": 5.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "WS14 9EQ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1543 416146",
"tags_new.ref:navads_shell": "NVDS353-10019153"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.260732,
51.1395895
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 164695283,
"osm_type": "way",
"ref_coords": [
0.260678,
51.13955
],
"ref_distance": 5.8,
"ref_unused_tags.addr:street": "St Johns Road",
"tags.addr:county": "Kent",
"tags.addr:housenumber": "37",
"tags.addr:postcode": "TN4 9TP",
"tags.addr:street": "Saint John's Road",
"tags.addr:town": "Royal Tunbridge Wells",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.designation": "1238",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.telephone": "+44 (0)1892 618602",
"tags_new.phone": "+44 1892 618602",
"tags_new.ref:navads_shell": "NVDS353-10018911"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9283463,
52.5301254
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 83194654,
"osm_type": "way",
"ref_coords": [
-1.928326,
52.530176
],
"ref_distance": 5.8,
"tags.addr:city": "Birmingham",
"tags.addr:postcode": "B42 1DT",
"tags.addr:street": "Old Walsall Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source": "OS_OpenData_StreetView",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 358 2585",
"tags_new.ref:navads_shell": "NVDS353-10019536"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9633044,
56.463504
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 289685119,
"osm_type": "node",
"ref_coords": [
-2.963358,
56.463461
],
"ref_distance": 5.8,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DD1 3HE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1382 205266",
"tags_new.ref:navads_shell": "NVDS353-10019622"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7478633,
51.4050508
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4357467798,
"osm_type": "node",
"ref_coords": [
-0.74784,
51.405101
],
"ref_distance": 5.8,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "RG12 9RP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1344 860293",
"tags_new.ref:navads_shell": "NVDS353-10018951"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6294848,
53.7035355
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 190310392,
"osm_type": "way",
"ref_coords": [
-1.629549,
53.703499
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "WF17 6JQ",
"tags_new.phone": "+44 1924 451404",
"tags_new.ref:navads_shell": "NVDS353-10398594"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.253917,
51.5578407
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 305084385,
"osm_type": "node",
"ref_coords": [
-0.253951,
51.557889
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "369",
"tags_new.addr:postcode": "NW10 0SH",
"tags_new.addr:street": "North Circular Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8830 7350",
"tags_new.ref:navads_shell": "NVDS353-10019504"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2197866,
51.3062841
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 300852237,
"osm_type": "node",
"ref_coords": [
-0.219842,
51.306324
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.name": "Shell Burgh heath",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KT20 6SU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 00:00-24:00; Su 08:00-22:00",
"tags_new.phone": "+44 1737 362577",
"tags_new.ref:navads_shell": "NVDS353-10018863"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5494073,
52.4709163
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 33708667,
"osm_type": "way",
"ref_coords": [
-1.549327,
52.470896
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "CV7 8NR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1676 540111",
"tags_new.ref:navads_shell": "NVDS353-10019178"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7150367,
52.1885276
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 336856986,
"osm_type": "way",
"ref_coords": [
-1.715105,
52.188495
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "CV37 9AS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1789 263055",
"tags_new.ref:navads_shell": "NVDS353-10019136"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.397563,
52.2409911
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 242588008,
"osm_type": "node",
"ref_coords": [
0.39750732,
52.24095043
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "220",
"tags_new.addr:postcode": "CB8 9AP",
"tags_new.addr:street": "High Street",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1638 660845",
"tags_new.ref:navads_shell": "NVDS353-12038553"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9335229,
56.4305342
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 295015896,
"osm_type": "node",
"ref_coords": [
-2.933617,
56.430545
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10b",
"tags_new.addr:postcode": "DD6 8RB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-22:00; Sa-Su 06:00-23:00",
"tags_new.phone": "+44 1382 542544",
"tags_new.ref:navads_shell": "NVDS353-10047883"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7139366,
51.5803628
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 740599471,
"osm_type": "node",
"ref_coords": [
-0.713975,
51.580315
],
"ref_distance": 5.9,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SL8 5SE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1628 526270",
"tags_new.ref:navads_shell": "NVDS353-10019008"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0443433,
51.4097257
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 302432867,
"osm_type": "node",
"ref_coords": [
-0.044416,
51.409754
],
"ref_distance": 6.0,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:housenumber": "128-136",
"tags_new.addr:postcode": "BR3 4RH",
"tags_new.addr:street": "Beckenham Road",
"tags_new.opening_hours": "Mo-Su 06:00-24:00",
"tags_new.phone": "+44 20 8676 0436",
"tags_new.ref:navads_shell": "NVDS353-12038428"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0836406,
54.1990407
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 785480753,
"osm_type": "node",
"ref_coords": [
-3.083606,
54.198991
],
"ref_distance": 6.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "no",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Oubas Hill",
"tags_new.addr:postcode": "LA12 7LA",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1229 581951",
"tags_new.ref:navads_shell": "NVDS353-10019309"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8932385,
52.4302713
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 85547920,
"osm_type": "way",
"ref_coords": [
-1.893157,
52.430251
],
"ref_distance": 6.0,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.source": "OS_OpenData_StreetView",
"tags_new.addr:housenumber": "78",
"tags_new.addr:postcode": "B14 7PT",
"tags_new.addr:street": "Alcester Road South",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 121 441 6960",
"tags_new.ref:navads_shell": "NVDS353-10019165"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7151784,
54.9659634
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 43734669,
"osm_type": "node",
"ref_coords": [
-1.715219,
54.966012
],
"ref_distance": 6.0,
"tags.addr:city": "Blaydon on Tyne",
"tags.addr:street": "Blaydon Roundabout",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "NE21 4JB",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 191 499 1900",
"tags_new.ref:navads_shell": "NVDS353-10019593"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8013789,
53.2682352
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5190184562,
"osm_type": "node",
"ref_coords": [
-2.801322,
53.268277
],
"ref_distance": 6.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags_new.addr:postcode": "CH2 4QZ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1928 726515",
"tags_new.ref:navads_shell": "NVDS353-10019629"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.148267,
51.478355
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2250387247,
"osm_type": "node",
"ref_coords": [
-0.148327,
51.478394
],
"ref_distance": 6.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "326",
"tags_new.addr:postcode": "SW8 4LT",
"tags_new.addr:street": "Queenstown Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7720 9871",
"tags_new.ref:navads_shell": "NVDS353-10018832"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9208694,
51.2677045
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 121636486,
"osm_type": "way",
"ref_coords": [
-2.92082,
51.267749
],
"ref_distance": 6.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "BS26 2UF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1934 750562",
"tags_new.ref:navads_shell": "NVDS353-12039810"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2804201,
52.9975186
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 328439818,
"osm_type": "way",
"ref_coords": [
-1.280442,
52.997466
],
"ref_distance": 6.0,
"tags.addr:city": "Nottingham",
"tags.addr:postcode": "NG16 2TA",
"tags.addr:street": "Gin Close Way",
"tags.addr:suburb": "Awsworth",
"tags.amenity": "fuel",
"tags.fhrs:id": "656701",
"tags.landuse": "retail",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source": "survey",
"tags.source:addr": "Food Hygiene Open Data",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 115 944 4537",
"tags_new.ref:navads_shell": "NVDS353-12038422"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0064393,
53.0519289
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 660129074,
"osm_type": "node",
"ref_coords": [
-3.006356,
53.051908
],
"ref_distance": 6.0,
"tags.amenity": "fuel",
"tags.name": "Shell Wrexham",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LL11 2AF",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1978 365139",
"tags_new.ref:navads_shell": "NVDS353-10019546"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1782234,
51.9203173
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 333290987,
"osm_type": "node",
"ref_coords": [
-0.17819,
51.920267
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:postcode": "SG1 5RE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1438 740548",
"tags_new.ref:navads_shell": "NVDS353-12038565"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0279068,
51.4755215
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 244444886,
"osm_type": "node",
"ref_coords": [
0.02799,
51.475538
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags_new.addr:housenumber": "165",
"tags_new.addr:postcode": "SE3 8UQ",
"tags_new.addr:street": "Shooters Hill Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8269 2215",
"tags_new.ref:navads_shell": "NVDS353-10018853"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.995115,
53.7537838
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 963190537,
"osm_type": "node",
"ref_coords": [
-2.995072,
53.753832
],
"ref_distance": 6.1,
"tags.addr:postcode": "FY8 3RQ",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "201743",
"tags.name": "Shell Heyhouses",
"tags_new.opening_hours": "Mo-Su 07:00-22:30",
"tags_new.phone": "+44 1253 724972",
"tags_new.ref:navads_shell": "NVDS353-10019261"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.9559906,
51.9428978
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 235796969,
"osm_type": "way",
"ref_coords": [
0.956016,
51.94295
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CO7 6HU",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1206 321000",
"tags_new.ref:navads_shell": "NVDS353-10019003"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9743965,
52.5807274
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 823774178,
"osm_type": "node",
"ref_coords": [
-1.97439,
52.580673
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "GPS Survey",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "WS1 2LN",
"tags_new.addr:street": "Springhill Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1922 748500",
"tags_new.ref:navads_shell": "NVDS353-10019535"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.2632624,
55.8421014
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1692343568,
"osm_type": "node",
"ref_coords": [
-4.263242,
55.842048
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "48",
"tags_new.addr:postcode": "G42 7AA",
"tags_new.addr:street": "Victoria Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 141 423 7831",
"tags_new.ref:navads_shell": "NVDS353-10019587"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2551052,
51.6221613
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 249400366,
"osm_type": "node",
"ref_coords": [
-0.255151,
51.622208
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.7b",
"tags_new.addr:postcode": "NW7 3ET",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8906 4360",
"tags_new.ref:navads_shell": "NVDS353-10018876"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.494041,
53.4878976
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 156072748,
"osm_type": "way",
"ref_coords": [
-1.494072,
53.487846
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags_new.addr:postcode": "S75 3DL",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1226 350479",
"tags_new.ref:navads_shell": "NVDS353-10019746"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2673755,
53.4760728
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2701230857,
"osm_type": "node",
"ref_coords": [
-2.267393,
53.476019
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "M5 4TS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 831 7394",
"tags_new.ref:navads_shell": "NVDS353-10019660"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2301345,
52.9555961
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 257550868,
"osm_type": "node",
"ref_coords": [
-1.230203,
52.95556
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:housenumber": "110",
"tags_new.addr:postcode": "NG8 2DH",
"tags_new.addr:street": "Trowell Road",
"tags_new.opening_hours": "Mo-Sa 07:00-22:00; Su 09:00-17:00",
"tags_new.phone": "+44 115 928 9592",
"tags_new.ref:navads_shell": "NVDS353-12402393"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6399353,
54.9597246
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 343463939,
"osm_type": "way",
"ref_coords": [
-2.639964,
54.959777
],
"ref_distance": 6.1,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Low Row Service Station",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "CA8 2JE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1697 746344",
"tags_new.ref:navads_shell": "NVDS353-11589228"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.2337814,
52.4856593
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 497865674,
"osm_type": "way",
"ref_coords": [
1.233783,
52.485604
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags_new.addr:postcode": "NR15 2XJ",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1508 530491",
"tags_new.ref:navads_shell": "NVDS353-10019204"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0989273,
53.3815635
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 291183508,
"osm_type": "node",
"ref_coords": [
-3.09902,
53.381566
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CH49 0UE",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 604 0452",
"tags_new.ref:navads_shell": "NVDS353-10019288"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9792579,
52.949739
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4095701129,
"osm_type": "node",
"ref_coords": [
-0.979307,
52.949692
],
"ref_distance": 6.2,
"tags.addr:postcode": "NG13 8AY",
"tags.addr:street": "Grantham Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:lpg": "yes",
"tags.name": "Shell Saxondale",
"tags.operator": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags.source:name": "FHRS open data",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1949 831818",
"tags_new.ref:navads_shell": "NVDS353-10019151"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.344165,
53.1006771
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 245390956,
"osm_type": "way",
"ref_coords": [
-1.344144,
53.100623
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "DE55 2AS",
"tags_new.phone": "+44 1773 860028",
"tags_new.ref:navads_shell": "NVDS353-11374476"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6976407,
53.3214722
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 108946430,
"osm_type": "way",
"ref_coords": [
-2.697734,
53.321473
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.name": "Shell Hallwood Link",
"tags_new.addr:postcode": "WA7 2HQ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1928 719840",
"tags_new.ref:navads_shell": "NVDS353-10019679"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6398593,
53.7021597
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 30136488,
"osm_type": "node",
"ref_coords": [
-2.639922,
53.702118
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags.name": "Shell",
"tags_new.addr:postcode": "PR6 7JD",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1772 695870",
"tags_new.ref:navads_shell": "NVDS353-10019256"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7948521,
53.6314363
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 333368973,
"osm_type": "way",
"ref_coords": [
-1.794764,
53.631456
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.landuse": "retail",
"tags.old_operator": "Jet",
"tags_new.addr:postcode": "HD4 6EP",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 79 7621 1023",
"tags_new.ref:navads_shell": "NVDS353-12286065"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4999209,
51.8975678
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 390780858,
"osm_type": "way",
"ref_coords": [
-0.499837,
51.897589
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LU5 4SN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1582 475624",
"tags_new.ref:navads_shell": "NVDS353-10019210"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7573346,
53.7823266
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 358505198,
"osm_type": "node",
"ref_coords": [
-1.75726738,
53.78236614
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "BD5 7JX",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1274 733991",
"tags_new.ref:navads_shell": "NVDS353-10019323"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2247061,
51.8521322
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 424575130,
"osm_type": "way",
"ref_coords": [
-1.22476,
51.852087
],
"ref_distance": 6.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.shop": "convenience",
"tags_new.addr:postcode": "OX25 3QQ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1869 350704",
"tags_new.ref:navads_shell": "NVDS353-10019115"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1506407,
51.4924941
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 618696223,
"osm_type": "node",
"ref_coords": [
-0.150649,
51.49255
],
"ref_distance": 6.2,
"tags.addr:city": "London",
"tags.addr:country": "GB",
"tags.addr:postcode": "SW1W 9QJ",
"tags.addr:street": "Ebury Street, Semley Place",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.contact:phone": "+44 20 7824 1900",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Victoria",
"tags.operator": "Shell",
"tags.shop": "yes",
"tags_new.opening_hours": "Mo-Sa 06:30-22:30; Su 08:00-22:00",
"tags_new.phone": "+44 20 7823 4552",
"tags_new.ref:navads_shell": "NVDS353-10018905"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1052308,
51.894719
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 512282496,
"osm_type": "node",
"ref_coords": [
-2.105153,
51.894689
],
"ref_distance": 6.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "352-356",
"tags_new.addr:postcode": "GL51 7AY",
"tags_new.addr:street": "Gloucester Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1242 511158",
"tags_new.ref:navads_shell": "NVDS353-10019070"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3961751,
53.786212
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 647068339,
"osm_type": "node",
"ref_coords": [
-1.39624,
53.78617
],
"ref_distance": 6.3,
"ref_unused_tags.addr:postcode": "LS25 1LS",
"tags.addr:postcode": "LS25 1LP",
"tags.addr:street": "Selby Road",
"tags.addr:town": "Garforth",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.designation": "2373",
"tags.fhrs:id": "551542",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Garforth West",
"tags.operator": "Shell",
"tags.source": "GPS",
"tags.telephone": "+44(0)113 232 0303",
"tags_new.phone": "+44 113 287 0826",
"tags_new.ref:navads_shell": "NVDS353-12038499"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3883867,
51.4340888
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 243794318,
"osm_type": "way",
"ref_coords": [
-0.388302,
51.43411
],
"ref_distance": 6.3,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "74",
"tags_new.addr:postcode": "TW13 6QN",
"tags_new.addr:street": "Country Way",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8894 0754",
"tags_new.ref:navads_shell": "NVDS353-10018925"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5004172,
51.6575019
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4277463838,
"osm_type": "node",
"ref_coords": [
-0.500435,
51.657558
],
"ref_distance": 6.4,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "WD3 5SE",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1923 284043",
"tags_new.ref:navads_shell": "NVDS353-10018888"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5496996,
54.0047075
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 283812806,
"osm_type": "way",
"ref_coords": [
-1.549785,
54.00468
],
"ref_distance": 6.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "HG1 2BS",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1423 858102",
"tags_new.ref:navads_shell": "NVDS353-10019325"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8646886,
51.4345898
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 188101233,
"osm_type": "way",
"ref_coords": [
-2.86475686,
51.43462828
],
"ref_distance": 6.4,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "BS21 7TU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1275 872037",
"tags_new.ref:navads_shell": "NVDS353-12528950"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5487373,
53.7714413
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 288347983,
"osm_type": "node",
"ref_coords": [
-1.548651,
53.771415
],
"ref_distance": 6.4,
"tags.amenity": "fuel",
"tags.operator": "shell",
"tags_new.addr:housenumber": "303",
"tags_new.addr:postcode": "LS11 5LQ",
"tags_new.addr:street": "Dewsbury Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 113 270 1619",
"tags_new.ref:navads_shell": "NVDS353-10019375"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0857595,
51.9022929
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 166123735,
"osm_type": "way",
"ref_coords": [
-2.0857715,
51.90223597
],
"ref_distance": 6.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Waitrose",
"tags_new.addr:postcode": "GL50 3QW",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:30-21:30; Su 09:00-17:00",
"tags_new.phone": "+44 1242 254633",
"tags_new.ref:navads_shell": "NVDS353-12140977"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4912286,
55.8814369
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 380092274,
"osm_type": "way",
"ref_coords": [
-3.49133,
55.881429
],
"ref_distance": 6.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "EH54 6LN",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1506 435073",
"tags_new.ref:navads_shell": "NVDS353-10019569"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2649208,
51.6090223
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 240386485,
"osm_type": "way",
"ref_coords": [
0.265002,
51.60905
],
"ref_distance": 6.4,
"ref_unused_tags.addr:postcode": "CM14 5LU",
"tags.addr:postcode": "CM14 5NF",
"tags.addr:street": "Brook Street",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_changed.brand": "Total -> Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1277 221048",
"tags_new.ref:navads_shell": "NVDS353-12038589"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7752622,
53.4181708
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 371118080,
"osm_type": "node",
"ref_coords": [
-2.775359,
53.418176
],
"ref_distance": 6.4,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10f",
"tags_new.addr:postcode": "L35 9JB",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 426 5641",
"tags_new.ref:navads_shell": "NVDS353-10019303"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1296261,
51.4062835
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1813131559,
"osm_type": "node",
"ref_coords": [
-1.129688,
51.406327
],
"ref_distance": 6.5,
"tags.amenity": "fuel",
"tags.name": "Windrush",
"tags.operator": "Total",
"tags_new.addr:postcode": "RG7 5HT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-23:00",
"tags_new.phone": "+44 118 971 4143",
"tags_new.ref:navads_shell": "NVDS353-12038643"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2931816,
53.4005364
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 310685413,
"osm_type": "way",
"ref_coords": [
-2.293085,
53.400526
],
"ref_distance": 6.5,
"tags.addr:street": "Altrincham Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "M23 9AA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 945 6581",
"tags_new.ref:navads_shell": "NVDS353-10019299"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6812806,
53.588599
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 136015828,
"osm_type": "way",
"ref_coords": [
-2.681372,
53.588621
],
"ref_distance": 6.5,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "WN6 0SR",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1257 425671",
"tags_new.ref:navads_shell": "NVDS353-12038594"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1797235,
51.2777221
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 216453138,
"osm_type": "way",
"ref_coords": [
0.179799,
51.277757
],
"ref_distance": 6.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_changed.opening_hours": "Mo-Su 07:00-23:00 -> Mo-Sa 07:00-23:00; Su 08:00-21:00",
"tags_new.addr:postcode": "TN13 1DH",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1732 465298",
"tags_new.ref:navads_shell": "NVDS353-10018990"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7994225,
52.0497615
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 397432232,
"osm_type": "way",
"ref_coords": [
-0.799438,
52.049703
],
"ref_distance": 6.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "MK12 6HU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1908 321577",
"tags_new.ref:navads_shell": "NVDS353-10019104"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.9512327,
51.9384542
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 385454413,
"osm_type": "way",
"ref_coords": [
0.951239,
51.938395
],
"ref_distance": 6.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CO4 5NQ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1206 230162",
"tags_new.ref:navads_shell": "NVDS353-10018972"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5561926,
55.1700665
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 241334620,
"osm_type": "way",
"ref_coords": [
-1.556089,
55.170062
],
"ref_distance": 6.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_91": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Ashington",
"tags.shop": "convenience",
"tags.source": "Bing",
"tags_new.addr:postcode": "NE63 0TQ",
"tags_new.phone": "+44 1670 813370",
"tags_new.ref:navads_shell": "NVDS353-10019335"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1524021,
52.6254282
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 288379451,
"osm_type": "way",
"ref_coords": [
-1.15230433,
52.62542681
],
"ref_distance": 6.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.landuse": "retail",
"tags.opening_hours": "24/7",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "153",
"tags_new.addr:postcode": "LE3 0PD",
"tags_new.addr:street": "Narborough Road",
"tags_new.phone": "+44 116 254 6188",
"tags_new.ref:navads_shell": "NVDS353-12038533"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.048673,
51.2193158
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 260148021,
"osm_type": "node",
"ref_coords": [
-0.048752,
51.219283
],
"ref_distance": 6.6,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "RH9 8EZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1342 892530",
"tags_new.ref:navads_shell": "NVDS353-12038588"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8767136,
51.5388975
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2927941560,
"osm_type": "node",
"ref_coords": [
-0.876629,
51.538925
],
"ref_distance": 6.6,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.wheelchair": "limited",
"tags.wheelchair:description": "Single step to payment desk.\r\nStaff say \"Toot for non self-service\" fuel delivery. \r\nNo service call. No hearing loop.",
"tags_new.addr:postcode": "RG9 3EP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:30-20:00; Sa 08:00-20:00; Su 09:00-19:30",
"tags_new.phone": "+44 1491 573430",
"tags_new.ref:navads_shell": "NVDS353-10019024"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5913614,
53.7933416
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 522934602,
"osm_type": "way",
"ref_coords": [
-1.591399,
53.793397
],
"ref_distance": 6.6,
"tags.amenity": "fuel",
"tags.landuse": "retail",
"tags.name": "Shell",
"tags_new.addr:housenumber": "147",
"tags_new.addr:postcode": "LS12 1QJ",
"tags_new.addr:street": "Tong Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 113 263 4163",
"tags_new.ref:navads_shell": "NVDS353-12038618"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4480327,
53.1131395
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 332909851,
"osm_type": "way",
"ref_coords": [
-2.448105,
53.113181
],
"ref_distance": 6.7,
"tags.amenity": "fuel",
"tags.landuse": "retail",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CW1 3RA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1270 584561",
"tags_new.ref:navads_shell": "NVDS353-12038470"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7246591,
53.6860949
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 146935848,
"osm_type": "way",
"ref_coords": [
-1.724755,
53.686115
],
"ref_distance": 6.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "WF14 0BY",
"tags_new.opening_hours": "Mo-Su 06:00-21:00",
"tags_new.phone": "+44 1924 481000",
"tags_new.ref:navads_shell": "NVDS353-10019348"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.325337,
51.4484304
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 319810512,
"osm_type": "node",
"ref_coords": [
-0.325308,
51.448488
],
"ref_distance": 6.7,
"tags.addr:city": "Twickenham",
"tags.addr:housenumber": "5-11",
"tags.addr:postcode": "TW1 3AB",
"tags.addr:street": "Richmond Road",
"tags.amenity": "fuel",
"tags.fhrs:id": "353063",
"tags.name": "Oak Lane",
"tags.operator": "Shell",
"tags.website": "http://www.shell.co.uk/",
"tags_changed.phone": "+442086070900 -> +44 20 8744 0174",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-23:00; Su 08:00-22:00",
"tags_new.ref:navads_shell": "NVDS353-10018864"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0119643,
55.7815471
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 533735380,
"osm_type": "way",
"ref_coords": [
-2.011904,
55.781497
],
"ref_distance": 6.7,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.source": "Bing",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "TD15 1QQ",
"tags_new.phone": "+44 1289 309861",
"tags_new.ref:navads_shell": "NVDS353-10019461"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7683198,
52.7097623
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 424137229,
"osm_type": "node",
"ref_coords": [
-1.768418,
52.709751
],
"ref_distance": 6.7,
"tags.amenity": "fuel",
"tags.fuel:lpg": "yes",
"tags.operator": "Total",
"tags_new.addr:postcode": "WS13 8RD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1543 415689",
"tags_new.ref:navads_shell": "NVDS353-12038496"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.4248141,
56.036212
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 98066956,
"osm_type": "way",
"ref_coords": [
-3.424713,
56.036234
],
"ref_distance": 6.7,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KY11 2BN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1383 414022",
"tags_new.ref:navads_shell": "NVDS353-10019466"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0690337,
50.7946358
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 179947056,
"osm_type": "node",
"ref_coords": [
-1.068948,
50.794664
],
"ref_distance": 6.8,
"tags.addr:postcode": "PO4 8BH",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Fratton",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 23 9285 5000",
"tags_new.ref:navads_shell": "NVDS353-10019029"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3436667,
51.1571621
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 61723877,
"osm_type": "way",
"ref_coords": [
-1.343731,
51.157116
],
"ref_distance": 6.8,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.name": "Shell Sutton Scotney (South)",
"tags.operator": "Shell",
"tags.surface": "concrete",
"tags_new.addr:postcode": "SO21 3JY",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1962 760335",
"tags_new.ref:navads_shell": "NVDS353-10018954"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6490368,
51.4097511
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 330079042,
"osm_type": "node",
"ref_coords": [
-2.648984,
51.409699
],
"ref_distance": 6.9,
"tags.amenity": "fuel",
"tags.name": "Spar",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BS41 8JP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1275 392212",
"tags_new.ref:navads_shell": "NVDS353-10047875"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9220513,
51.2701348
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 121635479,
"osm_type": "way",
"ref_coords": [
-2.9221,
51.270081
],
"ref_distance": 6.9,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "BS24 0JL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1934 750659",
"tags_new.ref:navads_shell": "NVDS353-10019119"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8236316,
52.5144586
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1482448548,
"osm_type": "node",
"ref_coords": [
-1.823534,
52.514441
],
"ref_distance": 6.9,
"tags.amenity": "fuel",
"tags.fuel:1_25": "no",
"tags.fuel:1_50": "no",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:cng": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:e10": "no",
"tags.fuel:e85": "no",
"tags.fuel:electricity": "no",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "no",
"tags.name": "Shell",
"tags_new.addr:housenumber": "829",
"tags_new.addr:postcode": "B24 9NY",
"tags_new.addr:street": "Tyburn Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 373 0390",
"tags_new.ref:navads_shell": "NVDS353-11770355"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2910646,
51.5164921
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1493499917,
"osm_type": "node",
"ref_coords": [
-0.291038,
51.516552
],
"ref_distance": 6.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags_new.addr:housenumber": "29-31",
"tags_new.addr:postcode": "W5 3HJ",
"tags_new.addr:street": "Hanger Lane",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8991 9560",
"tags_new.ref:navads_shell": "NVDS353-10018871"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7148937,
52.5079429
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 616356312,
"osm_type": "node",
"ref_coords": [
-1.714843,
52.507997
],
"ref_distance": 6.9,
"tags.amenity": "fuel",
"tags.atm": "yes",
"tags.brand": "Shell",
"tags.shop": "convenience",
"tags_new.addr:postcode": "B46 1LD",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1675 465933",
"tags_new.ref:navads_shell": "NVDS353-10019133"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.6633166,
50.5589837
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 170090149,
"osm_type": "way",
"ref_coords": [
-3.66329,
50.559044
],
"ref_distance": 7.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:1_25": "no",
"tags.fuel:1_50": "no",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:cng": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:e10": "no",
"tags.fuel:e85": "no",
"tags.fuel:electricity": "no",
"tags.fuel:gtl_diesel": "no",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:lpg": "no",
"tags.fuel:octane_100": "no",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "no",
"tags.name": "Trago Mills Filling Station",
"tags.operator": "Trago Mills",
"tags.source": "Bing",
"tags_new.addr:postcode": "TQ12 6JD",
"tags_new.opening_hours": "Mo-Fr 07:30-20:15; Sa 07:30-18:30; Su 09:15-17:00",
"tags_new.phone": "+44 1626 821111",
"tags_new.ref:navads_shell": "NVDS353-10396292"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.3845751,
50.8621247
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 7083836,
"osm_type": "relation",
"ref_coords": [
-3.384574,
50.862062
],
"ref_distance": 7.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell Cullompton Services",
"tags.operator": "Shell",
"tags.type": "multipolygon",
"tags_new.addr:postcode": "EX15 1NS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44188433118",
"tags_new.ref:navads_shell": "NVDS353-10367750"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.176776,
55.8390134
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2156102753,
"osm_type": "node",
"ref_coords": [
-4.17671,
55.839064
],
"ref_distance": 7.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.shop": "yes",
"tags_new.addr:housenumber": "2101",
"tags_new.addr:postcode": "G32 8XQ",
"tags_new.addr:street": "London Road",
"tags_new.phone": "+44 141 778 5214",
"tags_new.ref:navads_shell": "NVDS353-10019467"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1857601,
51.4299537
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 188541083,
"osm_type": "way",
"ref_coords": [
-0.185833,
51.429997
],
"ref_distance": 7.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "59",
"tags_new.addr:postcode": "SW17 0BW",
"tags_new.addr:street": "Plough Lane",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8946 9275",
"tags_new.ref:navads_shell": "NVDS353-10018936"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1040887,
54.9739944
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 349048402,
"osm_type": "way",
"ref_coords": [
-2.104151,
54.974046
],
"ref_distance": 7.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "NE46 3QQ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-22:00; Su 08:00-22:00",
"tags_new.phone": "+44 1434 600715",
"tags_new.ref:navads_shell": "NVDS353-11526811"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8343957,
53.3580198
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 286405436,
"osm_type": "node",
"ref_coords": [
-2.834488,
53.35805
],
"ref_distance": 7.0,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10b",
"tags_new.addr:housenumber": "195",
"tags_new.addr:postcode": "L26 1UN",
"tags_new.addr:street": "Higher Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 448 7902",
"tags_new.ref:navads_shell": "NVDS353-12038606"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7954001,
54.0255297
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 97126584,
"osm_type": "node",
"ref_coords": [
-2.795336,
54.02558
],
"ref_distance": 7.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "166",
"tags_new.addr:postcode": "LA1 4NS",
"tags_new.addr:street": "Scotforth Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 06:00-22:00",
"tags_new.phone": "+44 1524 846991",
"tags_new.ref:navads_shell": "NVDS353-12193230"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.537453,
52.2937824
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 475570480,
"osm_type": "node",
"ref_coords": [
-1.537473,
52.29372
],
"ref_distance": 7.1,
"tags.addr:city": "Leamington Spa",
"tags.addr:postcode": "CV32 5PY",
"tags.addr:street": "Clarendon Avenue",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "241880",
"tags.fuel:1_25": "no",
"tags.fuel:1_50": "no",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:cng": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:e10": "no",
"tags.fuel:e85": "no",
"tags.fuel:electricity": "no",
"tags.fuel:gtl_diesel": "no",
"tags.fuel:hgv_diesel": "no",
"tags.fuel:lpg": "no",
"tags.fuel:octane_100": "no",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "no",
"tags.operator": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1926 424613",
"tags_new.ref:navads_shell": "NVDS353-10019168"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7922494,
54.99723
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 485807046,
"osm_type": "way",
"ref_coords": [
-1.792359,
54.99724
],
"ref_distance": 7.1,
"tags.amenity": "fuel",
"tags.landuse": "retail",
"tags.operator": "Shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "NE15 0BG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-21:00",
"tags_new.phone": "+44 1661 852276",
"tags_new.ref:navads_shell": "NVDS353-10019721"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0486016,
51.6804855
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3108092954,
"osm_type": "node",
"ref_coords": [
-0.048622,
51.680423
],
"ref_distance": 7.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "233",
"tags_new.addr:postcode": "EN1 4SB",
"tags_new.addr:street": "Bullsmoor Lane",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1992 765716",
"tags_new.ref:navads_shell": "NVDS353-12038452"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0252367,
51.6445595
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 734701735,
"osm_type": "node",
"ref_coords": [
-3.025258,
51.644622
],
"ref_distance": 7.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "NP44 3JA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1633 860205",
"tags_new.ref:navads_shell": "NVDS353-10019524"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8241998,
51.4119035
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1815548895,
"osm_type": "node",
"ref_coords": [
-0.824229,
51.411842
],
"ref_distance": 7.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "109-111",
"tags_new.addr:postcode": "RG40 1YD",
"tags_new.addr:street": "London Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 118 989 2195",
"tags_new.ref:navads_shell": "NVDS353-10019054"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0818924,
53.1929389
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 154098496,
"osm_type": "way",
"ref_coords": [
-3.081794,
53.192913
],
"ref_distance": 7.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "CH7 6HF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1244 548123",
"tags_new.ref:navads_shell": "NVDS353-10019227"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0336391,
53.9135688
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 274879663,
"osm_type": "way",
"ref_coords": [
-3.033648,
53.913633
],
"ref_distance": 7.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "FY7 7DZ",
"tags_new.phone": "+44 1253 779878",
"tags_new.ref:navads_shell": "NVDS353-10019268"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0952644,
52.6070208
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 662560820,
"osm_type": "node",
"ref_coords": [
-1.095369,
52.60701
],
"ref_distance": 7.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "LE2 5DL",
"tags_new.phone": "+44 116 270 1878",
"tags_new.ref:navads_shell": "NVDS353-10019164"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.2612401,
52.6499877
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 116106293,
"osm_type": "way",
"ref_coords": [
1.261166,
52.650034
],
"ref_distance": 7.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "canopy",
"tags.layer": "1",
"tags.source": "Bing",
"tags_new.addr:postcode": "NR6 5AL",
"tags_new.phone": "+44 1603 486052",
"tags_new.ref:navads_shell": "NVDS353-10019211"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5212982,
54.7949526
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 367828249,
"osm_type": "way",
"ref_coords": [
-1.521214,
54.79491
],
"ref_distance": 7.2,
"tags.amenity": "fuel",
"tags.name": "Shell Durham",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DH1 1LU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 374 1982",
"tags_new.ref:navads_shell": "NVDS353-10019371"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.3231261,
55.8947345
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 324275703,
"osm_type": "way",
"ref_coords": [
-4.323168,
55.894674
],
"ref_distance": 7.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "289",
"tags_new.addr:postcode": "G13 1EQ",
"tags_new.addr:street": "Bearsden Road",
"tags_new.phone": "+44 141 954 7751",
"tags_new.ref:navads_shell": "NVDS353-10019479"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0913251,
57.1739229
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1742809312,
"osm_type": "node",
"ref_coords": [
-2.091332,
57.173858
],
"ref_distance": 7.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "792",
"tags_new.addr:postcode": "AB24 1XN",
"tags_new.addr:street": "King Street",
"tags_new.phone": "+44 1224 484205",
"tags_new.ref:navads_shell": "NVDS353-10019428"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5760779,
51.2479413
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 60954747,
"osm_type": "way",
"ref_coords": [
-0.575974,
51.247935
],
"ref_distance": 7.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:name": "P151-0235 on 2011-06-07",
"tags_new.addr:housenumber": "14",
"tags_new.addr:postcode": "GU1 1DL",
"tags_new.addr:street": "Ladymead Road",
"tags_new.phone": "+44 1483 458442",
"tags_new.ref:navads_shell": "NVDS353-10018977"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.7638039,
50.5099112
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 360880469,
"osm_type": "node",
"ref_coords": [
-3.763733,
50.509959
],
"ref_distance": 7.3,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "TQ13 7RB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:30-21:00",
"tags_new.phone": "+44 1364 652302",
"tags_new.ref:navads_shell": "NVDS353-10019080"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3713631,
51.4883407
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 62056030,
"osm_type": "node",
"ref_coords": [
-0.371468,
51.488332
],
"ref_distance": 7.3,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags_new.addr:housenumber": "270",
"tags_new.addr:postcode": "TW5 0RG",
"tags_new.addr:street": "Heston Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8570 0928",
"tags_new.ref:navads_shell": "NVDS353-10018914"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0371839,
51.487669
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 271047647,
"osm_type": "node",
"ref_coords": [
-0.037193,
51.487603
],
"ref_distance": 7.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.note": "Store - Sainsbury's Local",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SE8 5RJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8694 8927",
"tags_new.ref:navads_shell": "NVDS353-10018855"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2223432,
51.547132
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 326233946,
"osm_type": "way",
"ref_coords": [
-0.222449,
51.547143
],
"ref_distance": 7.4,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.layer": "1",
"tags.name": "Total",
"tags.operator": "Total",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:housenumber": "290",
"tags_new.addr:postcode": "NW2 5HS",
"tags_new.addr:street": "Willesden Lane",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 06:00-22:00",
"tags_new.phone": "+44 20 8459 2534",
"tags_new.ref:navads_shell": "NVDS353-12038642"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7471381,
52.0830158
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 140996254,
"osm_type": "way",
"ref_coords": [
-0.747246,
52.083025
],
"ref_distance": 7.5,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "MK16 8DS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1908 217396",
"tags_new.ref:navads_shell": "NVDS353-10045320"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0011902,
53.4476124
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 33066282,
"osm_type": "node",
"ref_coords": [
-3.001145,
53.447551
],
"ref_distance": 7.5,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "100",
"tags_new.addr:postcode": "L20 1BP",
"tags_new.addr:street": "Derby Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 955 3700",
"tags_new.ref:navads_shell": "NVDS353-10019592"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1999098,
51.2887361
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 411685667,
"osm_type": "node",
"ref_coords": [
0.199804,
51.288725
],
"ref_distance": 7.5,
"tags.addr:housenumber": "128",
"tags.addr:street": "Seal Road",
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.postal_code": "TN14 5AX",
"tags_new.addr:postcode": "TN14 5AX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1732 740015",
"tags_new.ref:navads_shell": "NVDS353-10019000"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4047641,
51.3373941
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 12136172,
"osm_type": "node",
"ref_coords": [
-0.404792,
51.337329
],
"ref_distance": 7.5,
"tags.addr:city": "Cobham",
"tags.addr:street": "Portsmouth Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "270",
"tags_new.addr:postcode": "KT11 1HU",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1932 590146",
"tags_new.ref:navads_shell": "NVDS353-10018970"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1378917,
51.6757815
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 975386710,
"osm_type": "node",
"ref_coords": [
-3.13797,
51.675829
],
"ref_distance": 7.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.wheelchair": "no",
"tags_new.addr:postcode": "NP11 4QJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 05:30-22:30; Su 06:30-22:30",
"tags_new.phone": "+44 1495 245713",
"tags_new.ref:navads_shell": "NVDS353-10019692"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0272085,
53.2000648
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 498494727,
"osm_type": "node",
"ref_coords": [
-1.027284,
53.200014
],
"ref_distance": 7.6,
"tags.amenity": "fuel",
"tags.name": "Shell Ollerton",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NG22 9DT",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1623 823260",
"tags_new.ref:navads_shell": "NVDS353-10019357"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6069306,
51.7169571
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 16060346,
"osm_type": "node",
"ref_coords": [
-0.606848,
51.717002
],
"ref_distance": 7.6,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags_new.addr:postcode": "HP5 2AU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1494 794568",
"tags_new.ref:navads_shell": "NVDS353-12038461"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3697584,
51.4582687
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 159510248,
"osm_type": "way",
"ref_coords": [
-2.369683,
51.458318
],
"ref_distance": 7.6,
"tags.amenity": "fuel",
"tags.name": "Pennsylvania Filling Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SN14 8LB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1225 891460",
"tags_new.ref:navads_shell": "NVDS353-10019056"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5748671,
57.0926905
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1055570471,
"osm_type": "node",
"ref_coords": [
-2.574895,
57.092624
],
"ref_distance": 7.6,
"tags.amenity": "fuel",
"tags.name": "Campfield Filling Station",
"tags.operator": "Shell",
"tags_new.addr:postcode": "AB31 4DN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 05:00-22:00",
"tags_new.phone": "+44 1339 882250",
"tags_new.ref:navads_shell": "NVDS353-10019715"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0888808,
51.5253041
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 302962886,
"osm_type": "node",
"ref_coords": [
-0.08899,
51.525313
],
"ref_distance": 7.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "198-208",
"tags_new.addr:postcode": "EC1V 9BP",
"tags_new.addr:street": "Old Street",
"tags_new.phone": "+44 20 7490 7965",
"tags_new.ref:navads_shell": "NVDS353-10018892"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1804103,
52.5846418
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 462272493,
"osm_type": "way",
"ref_coords": [
-2.180303,
52.584663
],
"ref_distance": 7.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Total",
"tags_new.addr:postcode": "WV6 8AQ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1902 765783",
"tags_new.ref:navads_shell": "NVDS353-12038468"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7439057,
53.7120646
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 843387811,
"osm_type": "node",
"ref_coords": [
-1.74379,
53.712057
],
"ref_distance": 7.7,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Hartshead Moor Services",
"tags.shop": "kiosk",
"tags_new.addr:postcode": "HD6 4JX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1274 876584",
"tags_new.ref:navads_shell": "NVDS353-10018820"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.8544708,
51.6250182
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 252131278,
"osm_type": "node",
"ref_coords": [
-3.85457,
51.624987
],
"ref_distance": 7.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.wheelchair": "limited",
"tags_new.addr:postcode": "SA10 6JW",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1792 815296",
"tags_new.ref:navads_shell": "NVDS353-10019685"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2881025,
52.9926287
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 100063286,
"osm_type": "way",
"ref_coords": [
-2.28812,
52.992697
],
"ref_distance": 7.7,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "ST5 5HG",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1782 626221",
"tags_new.ref:navads_shell": "NVDS353-10045875"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.7604618,
51.8776702
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 273388875,
"osm_type": "way",
"ref_coords": [
0.76035,
51.877681
],
"ref_distance": 7.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "CO6 1LT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1206 215040",
"tags_new.ref:navads_shell": "NVDS353-10019015"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9517174,
56.480418
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 514353499,
"osm_type": "way",
"ref_coords": [
-2.951738,
56.480487
],
"ref_distance": 7.8,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.name": "Shell",
"tags_new.addr:housenumber": "61",
"tags_new.addr:postcode": "DD4 9BS",
"tags_new.addr:street": "Forfar Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1382 454197",
"tags_new.ref:navads_shell": "NVDS353-10019440"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6987718,
51.991641
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 441748874,
"osm_type": "way",
"ref_coords": [
-0.698838,
51.991584
],
"ref_distance": 7.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "MK17 9NE",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1908 270029",
"tags_new.ref:navads_shell": "NVDS353-12038545"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7529037,
53.8050176
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 126434158,
"osm_type": "way",
"ref_coords": [
-1.75301495,
53.804993
],
"ref_distance": 7.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "photograph; Bing",
"tags_new.addr:postcode": "BD1 4SP",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1274 304478",
"tags_new.ref:navads_shell": "NVDS353-11228771"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1005261,
52.3035434
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 54608918,
"osm_type": "way",
"ref_coords": [
-2.100641,
52.303548
],
"ref_distance": 7.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags_new.addr:postcode": "B61 7ER",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1527 861892",
"tags_new.ref:navads_shell": "NVDS353-12193939"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3623586,
51.4394164
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 278616088,
"osm_type": "way",
"ref_coords": [
-0.362257,
51.439385
],
"ref_distance": 7.9,
"tags.addr:city": "Twickenham",
"tags.addr:postcode": "TW2 5JA",
"tags.addr:street": "Staines Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fhrs:id": "353050",
"tags.name": "Shell Hospital Bridge Road",
"tags.operator": "Shell",
"tags_changed.phone": "+442088940700 -> +44 20 8894 0700",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 07:00-23:00",
"tags_new.ref:navads_shell": "NVDS353-10018867"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9785206,
51.1406831
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1810052044,
"osm_type": "node",
"ref_coords": [
-2.978566,
51.140748
],
"ref_distance": 7.9,
"tags.amenity": "fuel",
"tags.name": "Esso Garage",
"tags_new.addr:postcode": "TA6 4TS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 06:00-20:00",
"tags_new.phone": "+44 1278 422953",
"tags_new.ref:navads_shell": "NVDS353-12203951"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9708224,
51.4177604
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 93689986,
"osm_type": "way",
"ref_coords": [
-0.970877,
51.417823
],
"ref_distance": 7.9,
"tags.addr:city": "Reading",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source:building": "OS_OpenData_StreetView",
"tags_new.addr:housenumber": "585",
"tags_new.addr:postcode": "RG2 0TA",
"tags_new.addr:street": "Basingstoke Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 118 986 6614",
"tags_new.ref:navads_shell": "NVDS353-10019023"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8010271,
51.0742277
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 324228763,
"osm_type": "node",
"ref_coords": [
-1.80109773,
51.074284
],
"ref_distance": 8.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SP2 7TS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:30-22:00; Sa 06:00-22:00; Su 08:00-22:00",
"tags_new.phone": "+44 1722 329497",
"tags_new.ref:navads_shell": "NVDS353-12140971"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2144087,
51.7594311
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 410788516,
"osm_type": "node",
"ref_coords": [
-1.214392,
51.75936
],
"ref_distance": 8.0,
"tags.addr:city": "Oxford",
"tags.addr:postcode": "OX3 7RD",
"tags.addr:street": "London Road",
"tags.addr:town": "Headington",
"tags.amenity": "fuel",
"tags.designation": "2015",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.operator": "Shell",
"tags.ref": "2015",
"tags.source": "survey",
"tags.telephone": "+44 (0)1865 750299",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-24:00",
"tags_new.phone": "+44 1865 750299",
"tags_new.ref:navads_shell": "NVDS353-10019113"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2803363,
51.5263321
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 166292141,
"osm_type": "way",
"ref_coords": [
-0.280448,
51.526313
],
"ref_distance": 8.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:outline": "Bing",
"tags_new.addr:postcode": "W3 0BX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8992 6458",
"tags_new.ref:navads_shell": "NVDS353-10019625"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1567785,
52.2489255
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 482552765,
"osm_type": "way",
"ref_coords": [
-1.15675,
52.248855
],
"ref_distance": 8.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "commercial",
"tags.name": "Junction Services",
"tags_new.addr:postcode": "NN11 4EA",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 77 8646 3775",
"tags_new.ref:navads_shell": "NVDS353-11531173"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.854501,
53.3598092
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 33401785,
"osm_type": "node",
"ref_coords": [
-2.854618,
53.359789
],
"ref_distance": 8.1,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags_new.addr:housenumber": "89",
"tags_new.addr:postcode": "L25 0NS",
"tags_new.addr:street": "Hillfoot Avenue",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 486 5821",
"tags_new.ref:navads_shell": "NVDS353-10019253"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.736577,
52.0681023
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 183088017,
"osm_type": "way",
"ref_coords": [
-0.736686,
52.068074
],
"ref_distance": 8.1,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "MK14 5JA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1908 615341",
"tags_new.ref:navads_shell": "NVDS353-10019106"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8303978,
52.5870179
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 183853136,
"osm_type": "way",
"ref_coords": [
-1.830319,
52.586963
],
"ref_distance": 8.1,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.name": "Shell",
"tags.source": "bing",
"tags_new.addr:postcode": "B74 2XH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 323 5366",
"tags_new.ref:navads_shell": "NVDS353-10019132"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7531109,
52.0219954
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3187225250,
"osm_type": "node",
"ref_coords": [
-0.753186,
52.022052
],
"ref_distance": 8.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "MK6 5LY",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1908 667995",
"tags_new.ref:navads_shell": "NVDS353-10018805"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7493521,
51.5445378
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 144315977,
"osm_type": "way",
"ref_coords": [
-1.749235,
51.54453
],
"ref_distance": 8.2,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "SN3 1NP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-23:00; Sa-Su 07:00-23:00",
"tags_new.phone": "+44 1793 538133",
"tags_new.ref:navads_shell": "NVDS353-10018950"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4679594,
51.2843082
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 240853627,
"osm_type": "way",
"ref_coords": [
-2.46807,
51.284284
],
"ref_distance": 8.2,
"tags.addr:postcode": "BA3 3UR",
"tags.amenity": "fuel",
"tags.fhrs:id": "577031",
"tags.name": "Shell Elm Tree",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:30",
"tags_new.phone": "+44 1761 413188",
"tags_new.ref:navads_shell": "NVDS353-12038484"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4052265,
51.5550674
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 360468995,
"osm_type": "node",
"ref_coords": [
-0.40533,
51.555103
],
"ref_distance": 8.2,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:housenumber": "300",
"tags_new.addr:postcode": "HA4 6QQ",
"tags_new.addr:street": "West End Road",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8839 8744",
"tags_new.ref:navads_shell": "NVDS353-12038578"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.0471464,
51.0947621
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 243465014,
"osm_type": "node",
"ref_coords": [
1.047081,
51.094701
],
"ref_distance": 8.2,
"ref_unused_tags.addr:postcode": "CT21 4GH",
"tags.addr:city": "Hythe",
"tags.addr:postcode": "CT21 4BL",
"tags.addr:street": "M20 Junction 11",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Channel Gateway",
"tags.operator": "Shell",
"tags.source": "local knowledge",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1303 230192",
"tags_new.ref:navads_shell": "NVDS353-10367538"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0885001,
50.9922197
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 35450094,
"osm_type": "node",
"ref_coords": [
-0.08861061,
50.99219516
],
"ref_distance": 8.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "5",
"tags_new.addr:postcode": "RH17 7SE",
"tags_new.addr:street": "Lewes Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1444 459879",
"tags_new.ref:navads_shell": "NVDS353-10018965"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.3640533,
55.8620133
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 370415203,
"osm_type": "way",
"ref_coords": [
-4.363966,
55.861958
],
"ref_distance": 8.2,
"tags.addr:city": "Glasgow",
"tags.addr:postcode": "G52 4BL",
"tags.addr:street": "Hillington Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Hillington",
"tags.opening_hours": "24/7",
"tags.phone": "+44 141 892 0076",
"tags_new.brand": "Shell",
"tags_new.ref:navads_shell": "NVDS353-10019600"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.256088,
52.2913438
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 344793253,
"osm_type": "node",
"ref_coords": [
-0.256033,
52.291278
],
"ref_distance": 8.2,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Buckden",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PE19 5XF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1480 812940",
"tags_new.ref:navads_shell": "NVDS353-10019180"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6748467,
53.6925878
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 33856193,
"osm_type": "node",
"ref_coords": [
-2.674853,
53.692513
],
"ref_distance": 8.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Tracy's Garage",
"tags_new.addr:postcode": "PR25 5UD",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1772 452588",
"tags_new.ref:navads_shell": "NVDS353-10019257"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0673023,
55.9442574
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2267616542,
"osm_type": "node",
"ref_coords": [
-3.067429,
55.944282
],
"ref_distance": 8.4,
"tags.amenity": "fuel",
"tags.name": "Shell Musselburgh",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "EH21 6DN",
"tags_new.addr:street": "Edinburgh Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 131 653 2913",
"tags_new.ref:navads_shell": "NVDS353-10019460"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1816353,
51.4663393
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 392808472,
"osm_type": "node",
"ref_coords": [
0.181526,
51.466371
],
"ref_distance": 8.4,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "DA8 3RF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1322 359900",
"tags_new.ref:navads_shell": "NVDS353-10018917"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6503851,
52.39123
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 227572279,
"osm_type": "way",
"ref_coords": [
-1.650272,
52.3912
],
"ref_distance": 8.4,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell",
"tags.operator": "franchise",
"tags.source": "visual survey; bing",
"tags_new.addr:postcode": "CV7 7DN",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1676 530260",
"tags_new.ref:navads_shell": "NVDS353-10019143"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3178353,
53.4326468
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 139853238,
"osm_type": "way",
"ref_coords": [
-2.31796,
53.432663
],
"ref_distance": 8.5,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "M33 7JR",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 968 0900",
"tags_new.ref:navads_shell": "NVDS353-10019238"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.9388241,
56.10032
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 103136271,
"osm_type": "way",
"ref_coords": [
-3.938721,
56.10027
],
"ref_distance": 8.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:cng": "no",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "40",
"tags_new.addr:postcode": "FK7 9BH",
"tags_new.addr:street": "Borestone Crescent",
"tags_new.phone": "+44 1786 473340",
"tags_new.ref:navads_shell": "NVDS353-10019449"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1270773,
51.5463327
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 291793692,
"osm_type": "way",
"ref_coords": [
-0.126991,
51.546387
],
"ref_distance": 8.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "109-113",
"tags_new.addr:postcode": "N7 9QE",
"tags_new.addr:street": "York Way",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 78 1400 3794",
"tags_new.ref:navads_shell": "NVDS353-12038454"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5642828,
52.8636658
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 762221669,
"osm_type": "node",
"ref_coords": [
-1.564237,
52.863737
],
"ref_distance": 8.5,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DE65 6DX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1283 704536",
"tags_new.ref:navads_shell": "NVDS353-10957168"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2731958,
53.5205076
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1344874491,
"osm_type": "node",
"ref_coords": [
-2.27330448,
53.52054858
],
"ref_distance": 8.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "M25 9WP",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 798 8689",
"tags_new.ref:navads_shell": "NVDS353-10019246"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2477418,
52.3679626
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 324792795,
"osm_type": "node",
"ref_coords": [
-1.24775,
52.368039
],
"ref_distance": 8.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "89",
"tags_new.addr:postcode": "CV22 5AG",
"tags_new.addr:street": "Hillmorton Road",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1788 565067",
"tags_new.ref:navads_shell": "NVDS353-12038506"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7797019,
51.1783249
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 339087240,
"osm_type": "node",
"ref_coords": [
-1.77979,
51.178378
],
"ref_distance": 8.5,
"tags.amenity": "fuel",
"tags.name": "Shell Countess Services",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SP4 7AS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1980 622618",
"tags_new.ref:navads_shell": "NVDS353-10019489"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.4021017,
51.3864735
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 461262048,
"osm_type": "way",
"ref_coords": [
1.402056,
51.386545
],
"ref_distance": 8.6,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "292",
"tags_new.addr:postcode": "CT9 2PT",
"tags_new.addr:street": "Northdown Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1843 229850",
"tags_new.ref:navads_shell": "NVDS353-12038555"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4794219,
52.9545347
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 114660573,
"osm_type": "way",
"ref_coords": [
-1.479385,
52.954461
],
"ref_distance": 8.6,
"tags.addr:county": "Derbyshire",
"tags.addr:postcode": "DE22 2DG",
"tags.addr:street": "Duffield Road",
"tags.addr:town": "Allestree, Derby",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.designation": "603",
"tags.name": "Shell Allestree",
"tags.operator": "Shell",
"tags.telephone": "+44 (0)1332 558330",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1332 558699",
"tags_new.ref:navads_shell": "NVDS353-10019148"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0631891,
51.6757663
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 313806778,
"osm_type": "node",
"ref_coords": [
0.063104,
51.67571
],
"ref_distance": 8.6,
"tags.addr:postcode": "CM16 5HW",
"tags.addr:street": "Epping Road",
"tags.alt_name": "Shell Wakes Arm",
"tags.amenity": "fuel",
"tags.name": "Shell Station",
"tags.source": "visit",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 05:00-24:00",
"tags_new.phone": "+44 1992 814580",
"tags_new.ref:navads_shell": "NVDS353-10018921"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.9699091,
55.7347383
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 312515076,
"osm_type": "way",
"ref_coords": [
-3.969947,
55.734664
],
"ref_distance": 8.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:housenumber": "1-3",
"tags_new.addr:postcode": "ML9 1HX",
"tags_new.addr:street": "Machan Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1698 888180",
"tags_new.ref:navads_shell": "NVDS353-10019573"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1701796,
51.6495025
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 49233945,
"osm_type": "node",
"ref_coords": [
-0.170264,
51.649445
],
"ref_distance": 8.7,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:housenumber": "65",
"tags_new.addr:postcode": "EN4 8RN",
"tags_new.addr:street": "East Barnet Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8447 0028",
"tags_new.ref:navads_shell": "NVDS353-12038550"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0767122,
53.4450106
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 266989173,
"osm_type": "node",
"ref_coords": [
-2.076581,
53.445009
],
"ref_distance": 8.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags_new.addr:postcode": "SK14 1QL",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 367 8559",
"tags_new.ref:navads_shell": "NVDS353-10019234"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2144419,
50.8218857
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 256397416,
"osm_type": "node",
"ref_coords": [
-1.214556,
50.821916
],
"ref_distance": 8.7,
"tags.addr:city": "Stubbington, Fareham",
"tags.addr:postcode": "PO14 2PN",
"tags.addr:street": "Stubbington Lane",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.opening_hours": "Mo-Su 07:00-22:00",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1329 668872",
"tags_new.ref:navads_shell": "NVDS353-10019514"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.777876,
53.7182432
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 374406248,
"osm_type": "node",
"ref_coords": [
-1.777746,
53.71826
],
"ref_distance": 8.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "HD6 4DH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 08:00-22:00",
"tags_new.phone": "+44 1484 721193",
"tags_new.ref:navads_shell": "NVDS353-10019562"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7884447,
50.8593091
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 492887863,
"osm_type": "node",
"ref_coords": [
-1.788426,
50.859387
],
"ref_distance": 8.8,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags.shop": "convenience",
"tags.source": "OS OpenData StreetView",
"tags_new.addr:postcode": "BH24 3PB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1425 472926",
"tags_new.ref:navads_shell": "NVDS353-12298328"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.554972,
51.4825778
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 424552767,
"osm_type": "way",
"ref_coords": [
-1.55500141,
51.482501
],
"ref_distance": 8.8,
"tags.amenity": "fuel",
"tags.shop": "convenience",
"tags_new.addr:postcode": "RG17 7TZ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1908 299700",
"tags_new.ref:navads_shell": "NVDS353-12573637"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5129854,
51.230783
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 486198103,
"osm_type": "way",
"ref_coords": [
0.51311,
51.230798
],
"ref_distance": 8.8,
"tags.addr:housenumber": "108",
"tags.addr:place": "Loose",
"tags.addr:postcode": "ME15 0AT",
"tags.addr:province": "Kent",
"tags.addr:street": "Linton Road",
"tags.amenity": "fuel",
"tags.fhrs:authority": "Maidstone",
"tags.fhrs:id": "720583",
"tags.fhrs:inspectiondate": "2017-01-17",
"tags.fhrs:rating": "5",
"tags.name": "Shell Tamarisk",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1622 741548",
"tags_new.ref:navads_shell": "NVDS353-10018995"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3796149,
50.9373377
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 55424645,
"osm_type": "node",
"ref_coords": [
-1.379736,
50.93736
],
"ref_distance": 8.9,
"tags.addr:city": "Southampton",
"tags.addr:postcode": "SO17 3ED",
"tags.addr:street": "Thomas Lewis Way",
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Shell",
"tags_changed.phone": "+44 2380 552612 -> +44 23 8055 2612",
"tags_new.brand": "Shell",
"tags_new.ref:navads_shell": "NVDS353-10019053"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.548578,
53.6816192
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 450799771,
"osm_type": "way",
"ref_coords": [
-1.5485,
53.681684
],
"ref_distance": 8.9,
"tags.amenity": "fuel",
"tags.operator": "shell",
"tags_new.addr:postcode": "WF5 9AD",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1924 283012",
"tags_new.ref:navads_shell": "NVDS353-10019373"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7858907,
52.3389875
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 23879966,
"osm_type": "node",
"ref_coords": [
-0.785939,
52.338913
],
"ref_distance": 8.9,
"tags.addr:city": "Kettering",
"tags.addr:country": "GB",
"tags.addr:housenumber": "440",
"tags.addr:place": "Orlingbury",
"tags.addr:postcode": "NN6 9TB",
"tags.addr:street": "Kettering Road",
"tags.amenity": "fuel",
"tags.fhrs:authority": "Wellingborough",
"tags.fhrs:id": "164689",
"tags.fhrs:local_authority_id": "PI/000006742",
"tags.fhrs:rating": "4",
"tags.fhrs:rating_date": "2015-03-03",
"tags.name": "Shell",
"tags_changed.brand": "Red House Garage -> Shell",
"tags_new.opening_hours": "Mo-Fr 05:00-21:00; Sa-Su 06:30-20:00",
"tags_new.phone": "+44 1604 781718",
"tags_new.ref:navads_shell": "NVDS353-10019738"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1510183,
51.3619876
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 97861568,
"osm_type": "way",
"ref_coords": [
-0.150899,
51.362018
],
"ref_distance": 9.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fixme": "Lighter area is canopy and needs separating.",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "102",
"tags_new.addr:postcode": "SM6 0DW",
"tags_new.addr:street": "Manor Road",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8835 2812",
"tags_new.ref:navads_shell": "NVDS353-12038626"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5360823,
53.5227961
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5050065083,
"osm_type": "node",
"ref_coords": [
-2.536181,
53.522741
],
"ref_distance": 9.0,
"tags.amenity": "fuel",
"tags.name": "Shell petrol station",
"tags_new.addr:postcode": "WN7 5PY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1942 256782",
"tags_new.ref:navads_shell": "NVDS353-12070650"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0132162,
51.4625475
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 318562243,
"osm_type": "node",
"ref_coords": [
-1.013223,
51.462467
],
"ref_distance": 9.0,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "856",
"tags_new.addr:postcode": "RG30 1EL",
"tags_new.addr:street": "Oxford Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 118 942 3255",
"tags_new.ref:navads_shell": "NVDS353-10019025"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.301098,
51.3090494
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 313032756,
"osm_type": "node",
"ref_coords": [
-0.301169,
51.308982
],
"ref_distance": 9.0,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "7",
"tags_new.addr:postcode": "KT21 2AD",
"tags_new.addr:street": "The Street",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:30; Su 07:00-22:00",
"tags_new.phone": "+44 1372 278090",
"tags_new.ref:navads_shell": "NVDS353-10018999"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1078322,
53.40112
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2498177879,
"osm_type": "node",
"ref_coords": [
-3.107883,
53.401195
],
"ref_distance": 9.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "157",
"tags_new.addr:postcode": "CH46 9PZ",
"tags_new.addr:street": "Hoylake Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 677 0209",
"tags_new.ref:navads_shell": "NVDS353-10019698"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1337908,
51.7493523
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 389027973,
"osm_type": "node",
"ref_coords": [
0.13381,
51.749272
],
"ref_distance": 9.0,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CM17 9AD",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1279 438512",
"tags_new.ref:navads_shell": "NVDS353-10018843"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0345726,
50.8775622
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1296702354,
"osm_type": "node",
"ref_coords": [
-1.034531,
50.877485
],
"ref_distance": 9.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "222",
"tags_new.addr:postcode": "PO7 7AA",
"tags_new.addr:street": "London Road",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 23 9225 2779",
"tags_new.ref:navads_shell": "NVDS353-10019028"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2304134,
51.8813303
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 183101449,
"osm_type": "way",
"ref_coords": [
-2.230433,
51.881411
],
"ref_distance": 9.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.name": "Parklands",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GL2 9DW",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1452 312693",
"tags_new.ref:navads_shell": "NVDS353-10019714"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.722013,
51.3421833
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 49799437,
"osm_type": "way",
"ref_coords": [
0.722144,
51.34218
],
"ref_distance": 9.1,
"tags.addr:city": "Sittingbourne",
"tags.addr:postcode": "ME10 1NL",
"tags.addr:street": "London Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fhrs:authority": "Swale",
"tags.fhrs:id": "714161",
"tags.fhrs:inspectiondate": "2016-07-01",
"tags.fhrs:rating": "5",
"tags.name": "Bourne Service Station",
"tags.operator": "Shell",
"tags.source": "local_knowledge",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1795 479143",
"tags_new.ref:navads_shell": "NVDS353-12038585"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3989004,
50.9381203
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 240494335,
"osm_type": "way",
"ref_coords": [
-1.398977,
50.938054
],
"ref_distance": 9.1,
"tags.addr:city": "Southampton",
"tags.addr:country": "GB",
"tags.addr:housenumber": "197",
"tags.addr:postcode": "SO17 1TU",
"tags.addr:street": "Burgess Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-21:00",
"tags_new.phone": "+44 23 8055 7100",
"tags_new.ref:navads_shell": "NVDS353-10019513"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7602606,
54.2958442
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 485197691,
"osm_type": "way",
"ref_coords": [
-2.760359,
54.295785
],
"ref_distance": 9.2,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags_new.addr:postcode": "LA8 8AA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-22:30",
"tags_new.phone": "+44 1539 560281",
"tags_new.ref:navads_shell": "NVDS353-12374988"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8184898,
53.8157883
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 780156087,
"osm_type": "node",
"ref_coords": [
-1.818492,
53.815871
],
"ref_distance": 9.2,
"tags.amenity": "fuel",
"tags.opening_hours": "Shell",
"tags.operator:shop": "Spar",
"tags.shop": "convenience",
"tags_new.addr:postcode": "BD9 6NT",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1274 545027",
"tags_new.ref:navads_shell": "NVDS353-11335504"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1511129,
52.251727
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4898274574,
"osm_type": "node",
"ref_coords": [
-1.151114,
52.251644
],
"ref_distance": 9.2,
"tags.addr:city": "Daventry",
"tags.addr:country": "GB",
"tags.addr:postcode": "NN11 4QB",
"tags.addr:street": "Admirals Way",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Daventry",
"tags.fhrs:id": "904676",
"tags.fhrs:local_authority_id": "PI/000052567",
"tags.name": "Long March Filling Station",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1327 705166",
"tags_new.ref:navads_shell": "NVDS353-12038537"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1499512,
52.8969714
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 149355988,
"osm_type": "way",
"ref_coords": [
-2.149818,
52.896994
],
"ref_distance": 9.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Stone",
"tags_new.addr:postcode": "ST15 0HH",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1785 818962",
"tags_new.ref:navads_shell": "NVDS353-10019152"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.148527,
57.1499593
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 666178888,
"osm_type": "node",
"ref_coords": [
-2.14855,
57.150042
],
"ref_distance": 9.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "AB15 5DB",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1224 322800",
"tags_new.ref:navads_shell": "NVDS353-10019429"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4047981,
50.8684844
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 282245473,
"osm_type": "node",
"ref_coords": [
-1.40478,
50.868568
],
"ref_distance": 9.4,
"tags.amenity": "fuel",
"tags.odbl": "clean",
"tags_new.addr:postcode": "SO45 5DA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 23 8084 1396",
"tags_new.ref:navads_shell": "NVDS353-10019057"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1867989,
53.1609449
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1363171753,
"osm_type": "node",
"ref_coords": [
-1.186901,
53.161003
],
"ref_distance": 9.4,
"tags.amenity": "fuel",
"tags.ele": "93",
"tags_new.addr:housenumber": "43-45",
"tags_new.addr:postcode": "NG19 9BA",
"tags_new.addr:street": "Leeming Lane South",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1623 424080",
"tags_new.ref:navads_shell": "NVDS353-12038531"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.550141,
53.7703264
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 383142418,
"osm_type": "way",
"ref_coords": [
-2.550185,
53.770246
],
"ref_distance": 9.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BB2 7PU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-21:30",
"tags_new.phone": "+44 1254 812803",
"tags_new.ref:navads_shell": "NVDS353-10019272"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6411881,
53.5729272
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 141177635,
"osm_type": "way",
"ref_coords": [
-2.641067,
53.572882
],
"ref_distance": 9.5,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Esso",
"tags.shop": "convenience",
"tags_new.addr:housenumber": "227",
"tags_new.addr:postcode": "WN6 0AD",
"tags_new.addr:street": "Wigan Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1257 427901",
"tags_new.ref:navads_shell": "NVDS353-12363695"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.2950431,
55.9420912
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 217696089,
"osm_type": "way",
"ref_coords": [
-3.295078,
55.942174
],
"ref_distance": 9.5,
"tags.amenity": "fuel",
"tags.name": "Shell Bowmac",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "19-21",
"tags_new.addr:postcode": "EH12 8HW",
"tags_new.addr:street": "Glasgow Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 131 334 8695",
"tags_new.ref:navads_shell": "NVDS353-10019453"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8023919,
53.6516865
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 987426871,
"osm_type": "node",
"ref_coords": [
-1.802375,
53.651771
],
"ref_distance": 9.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "HD1 4LE",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1484 540033",
"tags_new.ref:navads_shell": "NVDS353-10019324"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.175841,
53.538659
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 166746582,
"osm_type": "way",
"ref_coords": [
-2.175712,
53.538621
],
"ref_distance": 9.5,
"tags.amenity": "fuel",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "M24 1RD",
"tags_new.phone": "+44 161 643 3006",
"tags_new.ref:navads_shell": "NVDS353-12038509"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4013593,
53.5490785
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4967260580,
"osm_type": "node",
"ref_coords": [
-2.401422,
53.549001
],
"ref_distance": 9.6,
"tags.amenity": "fuel",
"tags.name": "Texaco",
"tags_new.addr:postcode": "BL4 7BA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1204 571759",
"tags_new.ref:navads_shell": "NVDS353-12466742"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8997535,
53.4035716
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 244999693,
"osm_type": "node",
"ref_coords": [
-2.899809,
53.403651
],
"ref_distance": 9.6,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags_new.addr:housenumber": "44-48",
"tags_new.addr:postcode": "L15 7NE",
"tags_new.addr:street": "Queens Drive",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 151 737 2412",
"tags_new.ref:navads_shell": "NVDS353-10019314"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0609181,
55.8151497
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 458726811,
"osm_type": "node",
"ref_coords": [
-4.06097421,
55.81522979
],
"ref_distance": 9.6,
"tags.addr:city": "Bothwell",
"tags.addr:country": "GB",
"tags.addr:postcode": "G71 8BG",
"tags.addr:street": "M74 Southbound",
"tags.amenity": "fuel",
"tags.contact:phone": "+44 1698 854123",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Roadchef Bothwell",
"tags.operator": "BP",
"tags.source": "survey",
"tags_changed.brand": "BP -> Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1698 854512",
"tags_new.ref:navads_shell": "NVDS353-12546117"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6868696,
52.382845
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 23806366,
"osm_type": "node",
"ref_coords": [
-0.686752,
52.382797
],
"ref_distance": 9.6,
"tags.addr:city": "Kettering",
"tags.addr:country": "GB",
"tags.addr:place": "Barton Seagrave",
"tags.addr:postcode": "NN15 6RT",
"tags.addr:street": "Barton Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Kettering",
"tags.fhrs:id": "505099",
"tags.fhrs:local_authority_id": "18730",
"tags.name": "Shell Service Station",
"tags_new.addr:housenumber": "151",
"tags_new.opening_hours": "Mo-Sa 06:00-23:00; Su 07:00-23:00",
"tags_new.phone": "+44 1536 513950",
"tags_new.ref:navads_shell": "NVDS353-12038426"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0446472,
51.7157526
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1461255724,
"osm_type": "node",
"ref_coords": [
-4.04478,
51.715726
],
"ref_distance": 9.6,
"ref_unused_tags.addr:street": "St Teilo Street",
"tags.addr:housenumber": "12",
"tags.addr:postcode": "SA4 8TH",
"tags.addr:street": "Saint Teilo Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "247485",
"tags_new.opening_hours": "Mo,Fr 06:00-21:00; Tu-Th 07:00-21:00; Sa-Su 08:00-18:00",
"tags_new.phone": "+44 1792 885741",
"tags_new.ref:navads_shell": "NVDS353-10019082"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1953307,
51.8692373
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 36798210,
"osm_type": "way",
"ref_coords": [
0.195452,
51.869281
],
"ref_distance": 9.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags_new.addr:postcode": "CM23 5QZ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1279 652364",
"tags_new.ref:navads_shell": "NVDS353-10019630"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9506737,
50.7990015
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5042301929,
"osm_type": "node",
"ref_coords": [
-1.950539,
50.799019
],
"ref_distance": 9.7,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.name:en": "Shell",
"tags_new.addr:housenumber": "11",
"tags_new.addr:postcode": "BH21 2DG",
"tags_new.addr:street": "Wimborne Road West",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1202 612315",
"tags_new.ref:navads_shell": "NVDS353-12430513"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3594757,
54.8027852
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 752870300,
"osm_type": "node",
"ref_coords": [
-1.359425,
54.802703
],
"ref_distance": 9.7,
"tags.amenity": "fuel",
"tags.name": "Shell Easington (South)",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SR7 8SS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 527 0930",
"tags_new.ref:navads_shell": "NVDS353-10019384"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1558996,
51.528871
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1363124463,
"osm_type": "node",
"ref_coords": [
0.156003,
51.528812
],
"ref_distance": 9.7,
"tags.amenity": "fuel",
"tags.name": "Fords Service Station",
"tags.opening_hours": "24/7",
"tags.operator": "Total",
"tags_new.addr:housenumber": "131",
"tags_new.addr:postcode": "RM10 9NE",
"tags_new.addr:street": "New Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 3653 0755",
"tags_new.ref:navads_shell": "NVDS353-12525428"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8131788,
52.4883046
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 174643890,
"osm_type": "way",
"ref_coords": [
-1.813046,
52.488271
],
"ref_distance": 9.7,
"tags.amenity": "fuel",
"tags.source": "visual survey; bing",
"tags_new.addr:postcode": "B33 9AX",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 121 789 5000",
"tags_new.ref:navads_shell": "NVDS353-10019177"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0653908,
51.5179284
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 5108070426,
"osm_type": "node",
"ref_coords": [
-0.065378,
51.518016
],
"ref_distance": 9.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "139-149",
"tags_new.addr:postcode": "E1 1DT",
"tags_new.addr:street": "Whitechapel Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7377 8525",
"tags_new.ref:navads_shell": "NVDS353-10018923"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0132537,
51.6359504
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 249237223,
"osm_type": "node",
"ref_coords": [
-0.013395,
51.635963
],
"ref_distance": 9.9,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "53",
"tags_new.addr:postcode": "E4 7PU",
"tags_new.addr:street": "Sewardstone Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8523 7012",
"tags_new.ref:navads_shell": "NVDS353-10018840"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.4356123,
53.4046403
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 289491484,
"osm_type": "node",
"ref_coords": [
-1.435576,
53.404554
],
"ref_distance": 9.9,
"tags.amenity": "fuel",
"tags.name": "Shell ",
"tags.operator": "Texico",
"tags_new.addr:postcode": "S4 7LJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 114 243 2932",
"tags_new.ref:navads_shell": "NVDS353-12038457"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7098694,
53.7773614
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 204900107,
"osm_type": "node",
"ref_coords": [
-2.710016,
53.777341
],
"ref_distance": 9.9,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.6c",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PR2 3EB",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1772 712405",
"tags_new.ref:navads_shell": "NVDS353-10019262"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1392137,
50.9577386
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 190464403,
"osm_type": "node",
"ref_coords": [
-0.139296,
50.957811
],
"ref_distance": 9.9,
"ref_unused_tags.addr:postcode": "RH15 8LJ",
"tags.addr:city": "Burgess Hill",
"tags.addr:housenumber": "173",
"tags.addr:postcode": "RH15 8LH",
"tags.addr:street": "London Road",
"tags.amenity": "fuel",
"tags.fhrs:id": "896926",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:addr": "ratings.food.gov.uk",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1444 872100",
"tags_new.ref:navads_shell": "NVDS353-10018973"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6226514,
55.0205294
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 444792070,
"osm_type": "way",
"ref_coords": [
-1.622506,
55.020498
],
"ref_distance": 9.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "no",
"tags.landuse": "retail",
"tags.name": "Shell Fuel",
"tags_new.addr:postcode": "NE3 2DT",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 284 3564",
"tags_new.ref:navads_shell": "NVDS353-10019360"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6180245,
52.2986887
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 367072249,
"osm_type": "node",
"ref_coords": [
-0.617878,
52.298682
],
"ref_distance": 10.0,
"tags.amenity": "fuel",
"tags.operator": "Waitrose",
"tags_new.addr:postcode": "NN10 6AR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:30-22:00; Su 08:00-19:00",
"tags_new.phone": "+44 1933 355099",
"tags_new.ref:navads_shell": "NVDS353-12140981"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5184506,
51.2827259
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 311183729,
"osm_type": "node",
"ref_coords": [
0.518594,
51.28272
],
"ref_distance": 10.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "ME14 2RL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1622 693057",
"tags_new.ref:navads_shell": "NVDS353-10018992"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9683753,
50.8833821
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1297656836,
"osm_type": "node",
"ref_coords": [
-0.968249,
50.883424
],
"ref_distance": 10.0,
"tags.addr:city": "Rowlands Castle",
"tags.addr:postcode": "PO9 6BB",
"tags.addr:street": "Whichers Gate Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_changed.phone": "+44 2392 413810 -> +44 23 9241 3810",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10019027"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.3295024,
51.1452142
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 55385641,
"osm_type": "way",
"ref_coords": [
1.3296319,
51.14517512
],
"ref_distance": 10.0,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "CT15 5FA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1304 242877",
"tags_new.ref:navads_shell": "NVDS353-12038523"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5997885,
51.5783548
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 266477081,
"osm_type": "way",
"ref_coords": [
0.599644,
51.578366
],
"ref_distance": 10.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SS6 7SL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-23:00",
"tags_new.phone": "+44 1268 745641",
"tags_new.ref:navads_shell": "NVDS353-10018846"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2120358,
52.7795278
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1941161701,
"osm_type": "node",
"ref_coords": [
-1.211918,
52.779471
],
"ref_distance": 10.1,
"tags.amenity": "fuel",
"tags.fuel:biodiesel": "no",
"tags.fuel:biogas": "no",
"tags.fuel:diesel": "yes",
"tags.source": "Bing",
"tags_new.addr:housenumber": "53",
"tags_new.addr:postcode": "LE11 1LW",
"tags_new.addr:street": "Belton Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1509 263466",
"tags_new.ref:navads_shell": "NVDS353-12038430"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.6433799,
53.290541
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 406107785,
"osm_type": "way",
"ref_coords": [
-3.643397,
53.290632
],
"ref_distance": 10.2,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "LL22 8HH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1492 517653",
"tags_new.ref:navads_shell": "NVDS353-10019225"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.914837,
53.7061018
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 154005048,
"osm_type": "way",
"ref_coords": [
-0.914687,
53.706079
],
"ref_distance": 10.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.shop": "convenience",
"tags_new.addr:postcode": "DN14 8JS",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1405 764526",
"tags_new.ref:navads_shell": "NVDS353-10019601"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.236404,
56.4163568
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2187164459,
"osm_type": "node",
"ref_coords": [
-3.23647,
56.416272
],
"ref_distance": 10.3,
"tags.addr:postcode": "PH2 7RR",
"tags.amenity": "fuel",
"tags.name": "Inchmichael Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1821 670242",
"tags_new.ref:navads_shell": "NVDS353-10019444"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6354856,
53.4716535
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 337638066,
"osm_type": "way",
"ref_coords": [
-2.635482,
53.471561
],
"ref_distance": 10.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "WA12 0HL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1925 290529",
"tags_new.ref:navads_shell": "NVDS353-10019249"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.749052,
51.7045751
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 283833404,
"osm_type": "node",
"ref_coords": [
-1.749033,
51.704483
],
"ref_distance": 10.3,
"tags.amenity": "fuel",
"tags.name": "Shell Fairford",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GL7 4DS",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1285 711874",
"tags_new.ref:navads_shell": "NVDS353-10019503"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1491374,
51.8420528
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 96025765,
"osm_type": "node",
"ref_coords": [
-2.149074,
51.842137
],
"ref_distance": 10.3,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10f",
"tags.description": "Shell",
"tags.name": "Brockworth Garage",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GL3 4PL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 05:00-22:00",
"tags_new.phone": "+44 1452 862283",
"tags_new.ref:navads_shell": "NVDS353-10019069"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.283076,
51.7940363
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 93727946,
"osm_type": "way",
"ref_coords": [
-1.283013,
51.793952
],
"ref_distance": 10.3,
"tags.addr:county": "Oxfordshire",
"tags.addr:postcode": "OX2 8JZ",
"tags.addr:street": "A34 Peartree Hill, Woodstock Road",
"tags.addr:town": "Oxford",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "covering",
"tags.designation": "2067",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Pear Tree",
"tags.operator": "Shell",
"tags.source": "Photograph",
"tags.telephone": "+44(0)1865 318939",
"tags_new.phone": "+44 1865 511639",
"tags_new.ref:navads_shell": "NVDS353-10019126"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7882985,
54.0621192
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1120753189,
"osm_type": "node",
"ref_coords": [
-2.78839032,
54.06219509
],
"ref_distance": 10.4,
"tags.addr:city": "Lancaster",
"tags.addr:county": "Lancashire",
"tags.addr:postcode": "LA1 3PE",
"tags.addr:street": "Caton Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Lancaster",
"tags.operator": "Shell",
"tags.ref": "726",
"tags.telephone": "+44 (0)1524 844302",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1524 844302",
"tags_new.ref:navads_shell": "NVDS353-10019267"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7966238,
52.425131
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 69031775,
"osm_type": "way",
"ref_coords": [
-1.79647104,
52.42513436
],
"ref_distance": 10.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.source": "bing",
"tags_new.addr:postcode": "B91 1BB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:30-23:00",
"tags_new.phone": "+44 121 709 4518",
"tags_new.ref:navads_shell": "NVDS353-10019130"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8139648,
51.2350926
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 216435727,
"osm_type": "way",
"ref_coords": [
-0.814065,
51.235162
],
"ref_distance": 10.4,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GU10 5AB",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1252 724176",
"tags_new.ref:navads_shell": "NVDS353-12038557"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.826415,
51.5668783
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 144318435,
"osm_type": "way",
"ref_coords": [
-1.826362,
51.56679
],
"ref_distance": 10.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SN5 5XS",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1793 512620",
"tags_new.ref:navads_shell": "NVDS353-12038603"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3345098,
51.509237
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 36509121,
"osm_type": "node",
"ref_coords": [
-0.334361,
51.509255
],
"ref_distance": 10.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "6",
"tags_new.addr:postcode": "W7 1DR",
"tags_new.addr:street": "Church Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8810 0010",
"tags_new.ref:navads_shell": "NVDS353-10018929"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1166445,
51.4477555
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 258491863,
"osm_type": "way",
"ref_coords": [
0.116796,
51.447752
],
"ref_distance": 10.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.landuse": "retail",
"tags.name": "Shell",
"tags_new.addr:housenumber": "510",
"tags_new.addr:postcode": "DA15 9NT",
"tags_new.addr:street": "Blackfen Road",
"tags_new.opening_hours": "Mo-Su 06:00-24:00",
"tags_new.phone": "+44 20 8304 1465",
"tags_new.ref:navads_shell": "NVDS353-10018946"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.376323,
54.8927523
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 256658518,
"osm_type": "way",
"ref_coords": [
-1.376206,
54.892819
],
"ref_distance": 10.5,
"tags.amenity": "fuel",
"tags.name": "Shell Petrol",
"tags_new.addr:postcode": "SR2 7ST",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 514 7315",
"tags_new.ref:navads_shell": "NVDS353-11316410"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.022822,
53.475449
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 107768949,
"osm_type": "node",
"ref_coords": [
-3.02298,
53.475463
],
"ref_distance": 10.6,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.5d",
"tags_new.addr:postcode": "L22 0LA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 949 1997",
"tags_new.ref:navads_shell": "NVDS353-10019308"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8192879,
51.0828712
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 350798208,
"osm_type": "way",
"ref_coords": [
-0.819136,
51.082869
],
"ref_distance": 10.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "A3 Liphook South",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GU30 7TU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1428 727098",
"tags_new.ref:navads_shell": "NVDS353-10019616"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9638647,
53.3148918
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2111502240,
"osm_type": "node",
"ref_coords": [
-2.963826,
53.314799
],
"ref_distance": 10.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.source": "photograph",
"tags_new.addr:housenumber": "1201",
"tags_new.addr:postcode": "CH62 0BZ",
"tags_new.addr:street": "New Chester Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 151 327 5657",
"tags_new.ref:navads_shell": "NVDS353-10019283"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9460922,
51.4278067
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 357305386,
"osm_type": "node",
"ref_coords": [
-0.946015,
51.427724
],
"ref_distance": 10.7,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "211",
"tags_new.addr:postcode": "RG2 8HA",
"tags_new.addr:street": "Shinfield Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 118 986 1393",
"tags_new.ref:navads_shell": "NVDS353-10019490"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1913607,
51.5204135
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 511744350,
"osm_type": "node",
"ref_coords": [
-0.191397,
51.52032
],
"ref_distance": 10.7,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "223",
"tags_new.addr:postcode": "W2 5EH",
"tags_new.addr:street": "Harrow Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 7266 5172",
"tags_new.ref:navads_shell": "NVDS353-10018828"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1503459,
50.7928456
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 49294763,
"osm_type": "node",
"ref_coords": [
-1.150394,
50.792754
],
"ref_distance": 10.7,
"tags.addr:city": "Gosport",
"tags.addr:street": "Privett Road",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.note": "This petrol station has a Costa Express facility",
"tags_new.addr:postcode": "PO12 3SR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 23 9250 2444",
"tags_new.ref:navads_shell": "NVDS353-12042426"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3730339,
53.3021566
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 421100547,
"osm_type": "way",
"ref_coords": [
-2.373126,
53.302077
],
"ref_distance": 10.8,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "WA16 0PE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1565 750843",
"tags_new.ref:navads_shell": "NVDS353-10019290"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8804767,
52.5691442
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 238985075,
"osm_type": "way",
"ref_coords": [
-1.880386,
52.569064
],
"ref_distance": 10.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags_new.addr:postcode": "B74 2HN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 121 353 1693",
"tags_new.ref:navads_shell": "NVDS353-10019134"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.5729003,
53.2850955
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 95438238,
"osm_type": "way",
"ref_coords": [
-3.572757,
53.285049
],
"ref_distance": 10.9,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "LL22 7HT",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1745 825847",
"tags_new.ref:navads_shell": "NVDS353-10019689"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1565167,
53.434027
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 321898543,
"osm_type": "way",
"ref_coords": [
-2.156586,
53.433938
],
"ref_distance": 10.9,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.building": "yes",
"tags.name": "Shell Express",
"tags_new.addr:postcode": "SK5 7EW",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 477 6272",
"tags_new.ref:navads_shell": "NVDS353-11349662"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2645322,
51.6595482
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 365581663,
"osm_type": "node",
"ref_coords": [
-0.264546,
51.659646
],
"ref_distance": 10.9,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10f",
"tags_new.addr:postcode": "WD6 1LB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8953 8283",
"tags_new.ref:navads_shell": "NVDS353-10018877"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7413041,
54.3177817
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 221398865,
"osm_type": "way",
"ref_coords": [
-2.741408,
54.317859
],
"ref_distance": 10.9,
"tags.amenity": "fuel",
"tags.name": "Lound Road Garage",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LA9 7EG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1539 723914",
"tags_new.ref:navads_shell": "NVDS353-10019266"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.198262,
51.4465845
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1965871468,
"osm_type": "node",
"ref_coords": [
-0.198378,
51.446651
],
"ref_distance": 10.9,
"tags.addr:housenumber": "289",
"tags.addr:postcode": "SW18 5JS",
"tags.addr:street": "Merton Road",
"tags.amenity": "fuel",
"tags.fhrs:id": "298288",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8874 8432",
"tags_new.ref:navads_shell": "NVDS353-10018836"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5473543,
52.6879515
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 215839899,
"osm_type": "way",
"ref_coords": [
-1.547456,
52.687874
],
"ref_distance": 11.0,
"tags.amenity": "fuel",
"tags.fuel:adblue": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_97": "yes",
"tags.opening_hours": "24/7",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "DE12 8AP",
"tags_new.phone": "+44 1530 270374",
"tags_new.ref:navads_shell": "NVDS353-12038418"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4559854,
53.7649236
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 128997780,
"osm_type": "way",
"ref_coords": [
-0.45609,
53.764846
],
"ref_distance": 11.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.shop": "kiosk",
"tags_new.addr:postcode": "HU10 6NT",
"tags_new.phone": "+44 1482 672890",
"tags_new.ref:navads_shell": "NVDS353-10019605"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1483514,
51.5604944
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 227309586,
"osm_type": "node",
"ref_coords": [
0.148357,
51.560395
],
"ref_distance": 11.1,
"tags.addr:street": "Wood Lane",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Total",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "RM10 7RP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8593 1039",
"tags_new.ref:navads_shell": "NVDS353-12038473"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2197825,
51.4836451
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 144717811,
"osm_type": "way",
"ref_coords": [
-0.219813,
51.483743
],
"ref_distance": 11.1,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.landuse": "retail",
"tags.name": "Shell",
"tags.source": "Bing;survey",
"tags_new.addr:housenumber": "222-224",
"tags_new.addr:postcode": "W6 9NT",
"tags_new.addr:street": "Fulham Palace Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 7835 5408",
"tags_new.ref:navads_shell": "NVDS353-10018835"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2451177,
50.8556896
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 401441592,
"osm_type": "way",
"ref_coords": [
-1.245232,
50.855762
],
"ref_distance": 11.4,
"tags.addr:city": "Fareham",
"tags.addr:country": "GB",
"tags.addr:housenumber": "264",
"tags.addr:place": "Titchfield",
"tags.addr:postcode": "PO14 4BB",
"tags.addr:state": "Hampshire",
"tags.addr:street": "Southampton Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Titchfield",
"tags.operator": "Shell",
"tags.shop": "convenience",
"tags.store_ref": "646",
"tags_changed.phone": "+441329845431 -> +44 1329 845431",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10019046"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.6838643,
52.2526442
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 289095073,
"osm_type": "node",
"ref_coords": [
0.683741,
52.252714
],
"ref_distance": 11.4,
"tags.addr:city": "Bury St Edmunds",
"tags.addr:postcode": "IP33 3TF",
"tags.addr:street": "Newmarket Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "671235",
"tags.name": "Coronation Filling Station",
"tags.source:addr": "FHRS Open Data",
"tags_new.opening_hours": "Mo-Fr 06:00-23:00; Sa-Su 06:00-22:00",
"tags_new.phone": "+44 1284 763530",
"tags_new.ref:navads_shell": "NVDS353-10019195"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4697822,
51.492517
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 30836310,
"osm_type": "node",
"ref_coords": [
-0.469795,
51.492413
],
"ref_distance": 11.6,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags.operator": "Total",
"tags_new.addr:postcode": "UB7 0AE",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8759 2673",
"tags_new.ref:navads_shell": "NVDS353-12038631"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9205516,
53.2552091
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 396122371,
"osm_type": "way",
"ref_coords": [
-0.920711,
53.255253
],
"ref_distance": 11.7,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Markham Moor (South)",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DN22 0PG",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1777 839474",
"tags_new.ref:navads_shell": "NVDS353-10018809"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2511095,
51.6062629
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 243343385,
"osm_type": "node",
"ref_coords": [
-1.251079,
51.606159
],
"ref_distance": 11.8,
"tags.addr:postcode": "OX11 8SD",
"tags.addr:street": "Broadway",
"tags.alt_name": "Grangetown Filling Station",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "271540",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:addr": "FHRS Open DAta",
"tags.source:alt_name": "FHRS Open Data",
"tags_new.phone": "+44 1235 810764",
"tags_new.ref:navads_shell": "NVDS353-10019022"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.242736,
53.3640578
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 374101432,
"osm_type": "way",
"ref_coords": [
-2.242645,
53.363967
],
"ref_distance": 11.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "M22 5WX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 161 498 6352",
"tags_new.ref:navads_shell": "NVDS353-12038600"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5931921,
53.2224248
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 261710636,
"osm_type": "way",
"ref_coords": [
-0.59322227,
53.22231979
],
"ref_distance": 11.9,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.layer": "1",
"tags_new.addr:postcode": "LN6 0JB",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1522 686523",
"tags_new.ref:navads_shell": "NVDS353-12507884"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.3129131,
55.9410699
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 216235623,
"osm_type": "way",
"ref_coords": [
-3.312886,
55.940964
],
"ref_distance": 11.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Maybury",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "166",
"tags_new.addr:postcode": "EH12 8LS",
"tags_new.addr:street": "Glasgow Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 131 339 8384",
"tags_new.ref:navads_shell": "NVDS353-10019454"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5083946,
51.4190852
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 401963318,
"osm_type": "way",
"ref_coords": [
-1.508559,
51.419054
],
"ref_distance": 11.9,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_97": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_changed.opening_hours": "24 -> 24/7",
"tags_new.addr:housenumber": "1",
"tags_new.addr:postcode": "RG17 0HD",
"tags_new.addr:street": "Bath Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1488 681566",
"tags_new.ref:navads_shell": "NVDS353-12038517"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6051467,
53.8326059
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 736396096,
"osm_type": "node",
"ref_coords": [
-2.605287,
53.832675
],
"ref_distance": 12.0,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags_new.addr:postcode": "PR3 3NH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1772 780737",
"tags_new.ref:navads_shell": "NVDS353-12362273"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.3871885,
51.3352778
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 666816810,
"osm_type": "node",
"ref_coords": [
1.387297,
51.335193
],
"ref_distance": 12.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CT11 0LB",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1843 852379",
"tags_new.ref:navads_shell": "NVDS353-10018988"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5243531,
52.3925711
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 753031003,
"osm_type": "node",
"ref_coords": [
-0.524446,
52.392664
],
"ref_distance": 12.1,
"tags.addr:county": "Northamptonshire",
"tags.addr:postcode": "NN14 4UA",
"tags.addr:street": "Junction 14 A14, A1/M1 Link",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.designation": "408",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Thrapston",
"tags.operator": "Shell",
"tags.telephone": "+44 (0)1832 730463",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1832 730463",
"tags_new.ref:navads_shell": "NVDS353-10019595"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7510323,
51.2428702
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1760124429,
"osm_type": "node",
"ref_coords": [
-0.751097,
51.242972
],
"ref_distance": 12.2,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "400",
"tags_new.addr:postcode": "GU12 4NE",
"tags_new.addr:street": "High Street",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1252 317676",
"tags_new.ref:navads_shell": "NVDS353-12038415"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3388138,
51.3734297
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 136915176,
"osm_type": "way",
"ref_coords": [
-0.338771,
51.373536
],
"ref_distance": 12.2,
"tags.addr:postcode": "KT10 9TL",
"tags.addr:street": "Kingston Bypass",
"tags.amenity": "fuel",
"tags.designation": "Shell Hinchley Wood",
"tags.landuse": "commercial",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8398 2977",
"tags_new.ref:navads_shell": "NVDS353-10018862"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7092857,
51.47569
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 121423299,
"osm_type": "way",
"ref_coords": [
-2.70911,
51.475677
],
"ref_distance": 12.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Gordano Services",
"tags_new.addr:postcode": "BS20 7XG",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1275 375885",
"tags_new.ref:navads_shell": "NVDS353-10019061"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3637157,
51.7211425
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 15114235,
"osm_type": "node",
"ref_coords": [
-0.36379323,
51.72104257
],
"ref_distance": 12.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Chiswell Green",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "551",
"tags_new.addr:postcode": "AL2 3EH",
"tags_new.addr:street": "Watford Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1727 819900",
"tags_new.ref:navads_shell": "NVDS353-10018882"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.513468,
51.2817748
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1946833984,
"osm_type": "node",
"ref_coords": [
-0.513326,
51.281842
],
"ref_distance": 12.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Send Shell Petrol Station",
"tags.operator": "Royal Dutch Shell",
"tags_new.addr:postcode": "GU23 7JY",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1483 223469",
"tags_new.ref:navads_shell": "NVDS353-10019487"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.476628,
53.7042059
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2114131789,
"osm_type": "node",
"ref_coords": [
-2.476462,
53.70426
],
"ref_distance": 12.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.name:en": "Shell",
"tags_new.addr:housenumber": "80",
"tags_new.addr:postcode": "BB3 1ET",
"tags_new.addr:street": "Blackburn Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1254 705807",
"tags_new.ref:navads_shell": "NVDS353-10954482"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0361675,
55.7879805
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 258185825,
"osm_type": "node",
"ref_coords": [
-4.03630607,
55.78789903
],
"ref_distance": 12.5,
"tags.amenity": "fuel",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "ML3 6JW",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1698 281804",
"tags_new.ref:navads_shell": "NVDS353-12546108"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3468383,
51.1561668
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 61723880,
"osm_type": "way",
"ref_coords": [
-1.3468,
51.156278
],
"ref_distance": 12.7,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.name": "Shell Sutton Scotney (North)",
"tags.operator": "Shell",
"tags.surface": "concrete",
"tags_new.addr:postcode": "SO21 3JY",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1962 761316",
"tags_new.ref:navads_shell": "NVDS353-10018953"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0989374,
51.352069
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 475071934,
"osm_type": "node",
"ref_coords": [
-0.098789,
51.352135
],
"ref_distance": 12.7,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "306-320",
"tags_new.addr:postcode": "CR2 6AJ",
"tags_new.addr:street": "Brighton Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8688 3931",
"tags_new.ref:navads_shell": "NVDS353-12038445"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6093275,
53.229105
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 317379027,
"osm_type": "way",
"ref_coords": [
-2.609504,
53.22906
],
"ref_distance": 12.8,
"tags.addr:city": "Sandiway",
"tags.addr:postcode": "CW8 2DX",
"tags.addr:street": "Chester Road",
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.name": "Sandiway Services 24hr",
"tags.operator": "Shell",
"tags.source": "local_knowledge",
"tags.website": "http://www.shell.co.uk/",
"tags_changed.phone": "01606 305890 -> +44 1606 882194",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10019297"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-5.0712156,
50.2319369
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 601151291,
"osm_type": "node",
"ref_coords": [
-5.071057,
50.231992
],
"ref_distance": 12.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TR3 6HA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1872 861000",
"tags_new.ref:navads_shell": "NVDS353-10019076"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.7401125,
50.7447452
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 14403098,
"osm_type": "node",
"ref_coords": [
-1.739962,
50.744679
],
"ref_distance": 12.9,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:unleaded": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "BH23 4SA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1425 279794",
"tags_new.ref:navads_shell": "NVDS353-10019050"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4919374,
51.7561605
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 14953382,
"osm_type": "node",
"ref_coords": [
-0.491885,
51.756049
],
"ref_distance": 12.9,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags.source": "GPS waypoint",
"tags_new.addr:postcode": "HP1 3QF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1442 218343",
"tags_new.ref:navads_shell": "NVDS353-12038510"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0569541,
51.6635334
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3108092956,
"osm_type": "node",
"ref_coords": [
-0.056842,
51.663627
],
"ref_distance": 13.0,
"ref_unused_tags.addr:housenumber": "790",
"tags.addr:housenumber": "970",
"tags.addr:postcode": "EN1 4JR",
"tags.amenity": "fuel",
"tags.not:addr:housenumber": "790",
"tags.note": "incorrect address on Shell locator",
"tags.operator": "Shell",
"tags_new.addr:street": "Great Cambridge Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8367 9641",
"tags_new.ref:navads_shell": "NVDS353-12072030"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0451002,
53.8243864
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 739658822,
"osm_type": "node",
"ref_coords": [
-3.044964,
53.824471
],
"ref_distance": 13.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "FY1 3QX",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1253 628800",
"tags_new.ref:navads_shell": "NVDS353-10019271"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1359619,
53.059796
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 433440442,
"osm_type": "node",
"ref_coords": [
-2.135858,
53.059895
],
"ref_distance": 13.0,
"tags.amenity": "fuel",
"tags.name": "Holden Bridge Service Station",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "ST2 7HE",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 78 1460 4412",
"tags_new.ref:navads_shell": "NVDS353-12038622"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3278464,
51.4834539
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 36506625,
"osm_type": "node",
"ref_coords": [
-0.328037,
51.483444
],
"ref_distance": 13.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "882",
"tags_new.addr:postcode": "TW7 5NG",
"tags_new.addr:street": "Great West Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8568 6039",
"tags_new.ref:navads_shell": "NVDS353-10018866"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0964996,
52.8979822
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 199880206,
"osm_type": "way",
"ref_coords": [
-1.09659493,
52.89787681
],
"ref_distance": 13.4,
"ref_unused_tags.addr:housenumber": "94",
"tags.addr:housenumber": "95",
"tags.addr:postcode": "NG12 4EN",
"tags.addr:street": "Melton Road",
"tags.amenity": "fuel",
"tags.fhrs:id": "265768",
"tags.landuse": "retail",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.source:addr": "FHRS Open Data",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:30-22:30; Sa 07:00-22:30; Su 08:00-22:00",
"tags_new.phone": "+44 115 937 4428",
"tags_new.ref:navads_shell": "NVDS353-12038529"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.4526935,
55.90248
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 407891067,
"osm_type": "node",
"ref_coords": [
-4.452486,
55.902449
],
"ref_distance": 13.4,
"tags.amenity": "fuel",
"tags.name": "Shell Erskine",
"tags_new.addr:postcode": "PA8 6EY",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 141 812 1573",
"tags_new.ref:navads_shell": "NVDS353-10019674"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1712139,
51.8807375
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 479517788,
"osm_type": "way",
"ref_coords": [
0.171269,
51.880622
],
"ref_distance": 13.4,
"tags.addr:city": "Bishop's Stortford",
"tags.addr:housenumber": "1",
"tags.addr:postcode": "CM23 2DR",
"tags.addr:street": "Stansted Road",
"tags.amenity": "fuel",
"tags.amenity_1": "shop",
"tags.amenity_2": "car_wash",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1279 503904",
"tags_new.ref:navads_shell": "NVDS353-10019012"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3224403,
52.5311788
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 249820087,
"osm_type": "node",
"ref_coords": [
-0.322315,
52.531083
],
"ref_distance": 13.6,
"tags.addr:postcode": "PE7 3UQ",
"tags.addr:street": "Oundle Road",
"tags.addr:town": "Haddon, Peterborough",
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Peterborough Services",
"tags.operator": "Shell",
"tags.ref": "2152",
"tags.telephone": "+44 (0)1733 371178",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1733 391313",
"tags_new.ref:navads_shell": "NVDS353-10367759"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1515283,
50.8420221
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 611287209,
"osm_type": "node",
"ref_coords": [
-0.151529,
50.842145
],
"ref_distance": 13.7,
"tags.amenity": "fuel",
"tags.name": "Shell Preston Park",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "193",
"tags_new.addr:postcode": "BN1 6SA",
"tags_new.addr:street": "Preston Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1273 558043",
"tags_new.ref:navads_shell": "NVDS353-10018974"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6562093,
53.7655573
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 22743593,
"osm_type": "way",
"ref_coords": [
-2.656415,
53.765539
],
"ref_distance": 13.7,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.10f",
"tags.name": "BP",
"tags_new.addr:housenumber": "556-610",
"tags_new.addr:postcode": "PR1 4TE",
"tags_new.addr:street": "New Hall Lane",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1772 794212",
"tags_new.ref:navads_shell": "NVDS353-12271732"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3191446,
54.4160407
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 343643095,
"osm_type": "node",
"ref_coords": [
-1.319357,
54.416036
],
"ref_distance": 13.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_91": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Exelby Services (Southbound)",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DL6 3JT",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 78 0824 9432",
"tags_new.ref:navads_shell": "NVDS353-12281485"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1295455,
51.2620102
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 308853149,
"osm_type": "node",
"ref_coords": [
-1.129631,
51.262122
],
"ref_distance": 13.8,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "374",
"tags_new.addr:postcode": "RG22 5DZ",
"tags_new.addr:street": "Worting Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1256 376910",
"tags_new.ref:navads_shell": "NVDS353-10019037"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.578622,
51.5348757
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 164332062,
"osm_type": "way",
"ref_coords": [
-3.57857,
51.534756
],
"ref_distance": 13.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Sarn Park",
"tags.operator": "Moto Services",
"tags_new.addr:postcode": "CF32 9RW",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1656 669816",
"tags_new.ref:navads_shell": "NVDS353-10019020"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2082596,
51.2679565
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 260557854,
"osm_type": "node",
"ref_coords": [
-0.208062,
51.267971
],
"ref_distance": 13.9,
"tags.amenity": "fuel",
"tags.name": "Total Lower Kingswood",
"tags.operator": "Total",
"tags_new.addr:postcode": "KT20 6UP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8644 6894",
"tags_new.ref:navads_shell": "NVDS353-12038559"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0326786,
53.6032911
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 369648919,
"osm_type": "way",
"ref_coords": [
-3.032889,
53.603293
],
"ref_distance": 13.9,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:housenumber": "555",
"tags_new.addr:postcode": "PR8 3BJ",
"tags_new.addr:street": "Liverpool Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1704 572442",
"tags_new.ref:navads_shell": "NVDS353-10019259"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.5544882,
55.068223
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2615126886,
"osm_type": "node",
"ref_coords": [
-3.554563,
55.06834054
],
"ref_distance": 13.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "DG1 3SE",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1387 750415",
"tags_new.ref:navads_shell": "NVDS353-10019420"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1487596,
50.975911
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 405819482,
"osm_type": "way",
"ref_coords": [
-3.148731,
50.975787
],
"ref_distance": 13.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "TA3 7PF",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1823 275426",
"tags_new.ref:navads_shell": "NVDS353-10019018"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.1410555,
54.5606542
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 440880084,
"osm_type": "way",
"ref_coords": [
-1.141087,
54.56053
],
"ref_distance": 14.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TS6 9JQ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-23:00",
"tags_new.phone": "+44 1642 465561",
"tags_new.ref:navads_shell": "NVDS353-11359050"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.449691,
53.7503217
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 366971636,
"osm_type": "node",
"ref_coords": [
-1.449788,
53.750209
],
"ref_distance": 14.1,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "56",
"tags_new.addr:postcode": "LS26 8HP",
"tags_new.addr:street": "Aberford Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 05:00-23:00",
"tags_new.phone": "+44 113 393 8986",
"tags_new.ref:navads_shell": "NVDS353-12038408"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1285046,
53.2753388
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 318808651,
"osm_type": "node",
"ref_coords": [
-2.128294,
53.275353
],
"ref_distance": 14.1,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "SK10 2JJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1625 503886",
"tags_new.ref:navads_shell": "NVDS353-10019298"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1846268,
53.4369627
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 264572464,
"osm_type": "node",
"ref_coords": [
-2.184755,
53.436861
],
"ref_distance": 14.2,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags.source": "survey",
"tags_new.addr:postcode": "M19 2RE",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 432 1810",
"tags_new.ref:navads_shell": "NVDS353-10019235"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3173701,
53.4839322
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 810790351,
"osm_type": "node",
"ref_coords": [
-2.317176,
53.483877
],
"ref_distance": 14.3,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "526-528",
"tags_new.addr:postcode": "M5 5BJ",
"tags_new.addr:street": "Eccles New Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 787 8998",
"tags_new.ref:navads_shell": "NVDS353-12038628"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.9847546,
51.6180848
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 225855336,
"osm_type": "way",
"ref_coords": [
-3.984732,
51.617957
],
"ref_distance": 14.3,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "76-78",
"tags_new.addr:postcode": "SA2 9BZ",
"tags_new.addr:street": "Gower Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1792 203515",
"tags_new.ref:navads_shell": "NVDS353-10019697"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.1523668,
53.6022488
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1965753102,
"osm_type": "node",
"ref_coords": [
-2.152541,
53.602172
],
"ref_distance": 14.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Queensway",
"tags_new.addr:postcode": "OL11 1TJ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1706 341126",
"tags_new.ref:navads_shell": "NVDS353-10019239"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0754286,
51.3323403
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 204867663,
"osm_type": "way",
"ref_coords": [
-0.075627,
51.332304
],
"ref_distance": 14.4,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "81",
"tags_new.addr:postcode": "CR2 9LE",
"tags_new.addr:street": "Limpsfield Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8657 9600",
"tags_new.ref:navads_shell": "NVDS353-10018934"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.3818359,
52.7428469
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 53921578,
"osm_type": "node",
"ref_coords": [
0.38167136,
52.74292986
],
"ref_distance": 14.4,
"tags.amenity": "fuel",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "PE34 3LW",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1553 776135",
"tags_new.ref:navads_shell": "NVDS353-12038608"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3820916,
52.9147215
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 104278034,
"osm_type": "way",
"ref_coords": [
-1.382104,
52.914591
],
"ref_distance": 14.6,
"tags.addr:postcode": "DE72 3HN",
"tags.addr:street": "Brian Clough Way",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "252374",
"tags.fuel:lpg": "yes",
"tags.landuse": "retail",
"tags.opening_hours": "24/7",
"tags.operator": "Shell",
"tags.source:addr": "FHRS open data",
"tags_new.phone": "+44 1332 666718",
"tags_new.ref:navads_shell": "NVDS353-10019145"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9967473,
52.1388748
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 110867845,
"osm_type": "node",
"ref_coords": [
-0.996542,
52.13884
],
"ref_distance": 14.6,
"tags.addr:city": "Towcester",
"tags.addr:country": "GB",
"tags.addr:postcode": "NN12 6HN",
"tags.addr:street": "Watling Street",
"tags.amenity": "fuel",
"tags.fhrs:authority": "South Northamptonshire",
"tags.fhrs:id": "460480",
"tags.fhrs:local_authority_id": "PI/000027943",
"tags_changed.brand": "Tove Service Station -> Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1327 358072",
"tags_new.ref:navads_shell": "NVDS353-12038619"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5784048,
51.2464097
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 295972033,
"osm_type": "node",
"ref_coords": [
-0.578395,
51.246279
],
"ref_distance": 14.6,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.note": "FIXME - confirm this position. only did it for memory.",
"tags.operator": "Shell",
"tags.source": "local knowledge",
"tags_new.addr:postcode": "GU1 1EF",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1483 459280",
"tags_new.ref:navads_shell": "NVDS353-10018979"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0875527,
53.7151304
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 202136626,
"osm_type": "way",
"ref_coords": [
-2.087748,
53.715192
],
"ref_distance": 14.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Springs Garage",
"tags.source": "Bing",
"tags_new.addr:postcode": "OL14 5RS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1706 818924",
"tags_new.ref:navads_shell": "NVDS353-10019560"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2283274,
52.5549227
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 534382138,
"osm_type": "node",
"ref_coords": [
-0.228144,
52.554854
],
"ref_distance": 14.6,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "PE2 8RL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 20 8553 4591",
"tags_new.ref:navads_shell": "NVDS353-12038564"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1591569,
52.3174354
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 313751954,
"osm_type": "node",
"ref_coords": [
-0.159073,
52.317556
],
"ref_distance": 14.6,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:postcode": "PE29 2XH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1480 432667",
"tags_new.ref:navads_shell": "NVDS353-12038503"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1737195,
51.1631721
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 443275563,
"osm_type": "node",
"ref_coords": [
-0.173512,
51.163155
],
"ref_distance": 14.6,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "RH6 0NX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1293 579199",
"tags_new.ref:navads_shell": "NVDS353-11849814"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6928295,
53.6312899
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 204381642,
"osm_type": "way",
"ref_coords": [
-2.692632,
53.63123
],
"ref_distance": 14.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Charnock Richard Service Area North",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PR7 5LR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1257 791494",
"tags_new.ref:navads_shell": "NVDS353-10019302"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.8579444,
51.0066099
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1402297887,
"osm_type": "node",
"ref_coords": [
0.858123,
51.006681
],
"ref_distance": 14.8,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "TN29 9TZ",
"tags_new.opening_hours": "Mo-Fr 05:00-22:00",
"tags_new.phone": "+44 1797 342193",
"tags_new.ref:navads_shell": "NVDS353-12038443"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6310779,
53.9040902
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 118792262,
"osm_type": "way",
"ref_coords": [
-1.630852,
53.904084
],
"ref_distance": 14.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.source": "Bing",
"tags_new.addr:postcode": "LS21 1EQ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 07:00-22:00; Su 08:00-22:00",
"tags_new.phone": "+44 113 202 7910",
"tags_new.ref:navads_shell": "NVDS353-10019338"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.6522341,
53.5162763
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 419708318,
"osm_type": "node",
"ref_coords": [
-2.652328,
53.516401
],
"ref_distance": 15.2,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "878",
"tags_new.addr:postcode": "WN3 6XB",
"tags_new.addr:street": "Warrington Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1942 237999",
"tags_new.ref:navads_shell": "NVDS353-10019307"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.3537423,
51.0697347
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 26723095,
"osm_type": "node",
"ref_coords": [
-0.353657,
51.069861
],
"ref_distance": 15.3,
"tags.amenity": "fuel",
"tags.name": "Broadbridge Heath",
"tags.operator": "Shell",
"tags_new.addr:postcode": "RH12 3NS",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1403 269626",
"tags_new.ref:navads_shell": "NVDS353-10018944"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2187718,
53.1679098
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 265490636,
"osm_type": "node",
"ref_coords": [
-2.218595,
53.167821
],
"ref_distance": 15.4,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "CW12 1LR",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1260 297638",
"tags_new.ref:navads_shell": "NVDS353-10019228"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2211604,
53.4384833
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1213146481,
"osm_type": "node",
"ref_coords": [
-2.22118,
53.438345
],
"ref_distance": 15.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "385",
"tags_new.addr:postcode": "M14 6AH",
"tags_new.addr:street": "Wilmslow Road",
"tags_new.phone": "+44 161 225 9294",
"tags_new.ref:navads_shell": "NVDS353-12038491"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.6866517,
55.8692196
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 722483808,
"osm_type": "node",
"ref_coords": [
-3.68683,
55.869123
],
"ref_distance": 15.5,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "EH47 0ES",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1501 742687",
"tags_new.ref:navads_shell": "NVDS353-10019578"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5143748,
54.9478708
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2363540197,
"osm_type": "node",
"ref_coords": [
-1.514502,
54.947752
],
"ref_distance": 15.5,
"tags.addr:city": "Gateshead",
"tags.addr:housename": "Shell Whitemare Pool",
"tags.addr:postcode": "NE10 8YB",
"tags.addr:street": "Whitemare Pool",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags.phone": "+44 191 469 9610",
"tags.wheelchair": "yes",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.ref:navads_shell": "NVDS353-10019383"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.1139158,
51.3358198
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 351107067,
"osm_type": "way",
"ref_coords": [
-0.113862,
51.335956
],
"ref_distance": 15.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "14-16",
"tags_new.addr:postcode": "CR8 2DB",
"tags_new.addr:street": "Godstone Road",
"tags_new.phone": "+44 20 8668 6130",
"tags_new.ref:navads_shell": "NVDS353-10018849"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7612774,
54.2958492
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 485197685,
"osm_type": "way",
"ref_coords": [
-2.761037,
54.295852
],
"ref_distance": 15.6,
"tags.amenity": "fuel",
"tags.operator": "BP",
"tags_new.addr:postcode": "LA8 8AA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1539 560281",
"tags_new.ref:navads_shell": "NVDS353-12374985"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.3529975,
50.4076387
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 598983268,
"osm_type": "node",
"ref_coords": [
-4.353022,
50.407498
],
"ref_distance": 15.8,
"tags.amenity": "fuel",
"tags.name": "Shell Trerulefoot",
"tags.operator": "Shell",
"tags_new.addr:postcode": "PL12 5BL",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1752 851139",
"tags_new.ref:navads_shell": "NVDS353-10019078"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0791321,
53.5494531
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 286975697,
"osm_type": "node",
"ref_coords": [
-2.078903,
53.549413
],
"ref_distance": 15.8,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:postcode": "OL4 2HN",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 628 1910",
"tags_new.ref:navads_shell": "NVDS353-10019242"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.0597873,
50.7077661
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 310033279,
"osm_type": "way",
"ref_coords": [
-4.06001,
50.707745
],
"ref_distance": 15.9,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "retail",
"tags.shop": "convenience",
"tags_new.addr:postcode": "EX20 4LY",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1837 659675",
"tags_new.ref:navads_shell": "NVDS353-10018811"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9258579,
53.2554875
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 61653472,
"osm_type": "way",
"ref_coords": [
-0.925632,
53.255439
],
"ref_distance": 16.0,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_100": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Markham Moor",
"tags.operator": "Shell",
"tags.ref": "406",
"tags.surface": "concrete",
"tags.telephone": "+44 (0)1777 838020",
"tags_new.addr:postcode": "DN22 0QU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1777 838020",
"tags_new.ref:navads_shell": "NVDS353-10019350"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.1788549,
51.591316
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 469331903,
"osm_type": "node",
"ref_coords": [
0.17907,
51.591261
],
"ref_distance": 16.1,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "RM1 4SJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1708 739890",
"tags_new.ref:navads_shell": "NVDS353-10018844"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2505263,
53.0618566
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 198264262,
"osm_type": "way",
"ref_coords": [
-2.25077,
53.061864
],
"ref_distance": 16.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Talke",
"tags_new.addr:postcode": "ST7 1UP",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1782 563941",
"tags_new.ref:navads_shell": "NVDS353-11849763"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5115967,
51.3147375
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 187218261,
"osm_type": "node",
"ref_coords": [
0.5117321,
51.31461772
],
"ref_distance": 16.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Shell Cossington",
"tags_new.addr:postcode": "ME20 7EE",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1634 661000",
"tags_new.ref:navads_shell": "NVDS353-10019619"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2725044,
50.928357
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3415976021,
"osm_type": "node",
"ref_coords": [
-0.27273,
50.9284
],
"ref_distance": 16.5,
"tags.addr:city": "Henfield",
"tags.addr:housename": "Golden Square",
"tags.addr:postcode": "BN5 9DP",
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Fr 06:00-21:00; Sa-Su 07:00-21:00",
"tags_new.phone": "+44 1273 497030",
"tags_new.ref:navads_shell": "NVDS353-10019506"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0965051,
51.3876032
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 221661336,
"osm_type": "way",
"ref_coords": [
-0.096602,
51.387467
],
"ref_distance": 16.6,
"tags.amenity": "fuel",
"tags.building": "retail",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "117",
"tags_new.addr:postcode": "CR0 2LG",
"tags_new.addr:street": "Whitehorse Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8683 0565",
"tags_new.ref:navads_shell": "NVDS353-10018898"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.9832938,
50.7490508
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 313907427,
"osm_type": "way",
"ref_coords": [
-1.983257,
50.749198
],
"ref_distance": 16.6,
"tags.addr:street": "Waterloo Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell Darbys Corner",
"tags.operator": "Shell",
"tags.shop": "bakery;coffee",
"tags_new.addr:housenumber": "13-17",
"tags_new.addr:postcode": "BH17 7JX",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1202 601057",
"tags_new.ref:navads_shell": "NVDS353-10019041"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.429237,
54.8947378
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 400997733,
"osm_type": "way",
"ref_coords": [
-1.428987,
54.894785
],
"ref_distance": 16.8,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SR4 8LP",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 525 0956",
"tags_new.ref:navads_shell": "NVDS353-10019362"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.772734,
51.8727173
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 297419450,
"osm_type": "node",
"ref_coords": [
0.77259,
51.87284
],
"ref_distance": 16.9,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_98": "yes",
"tags.operator": "Total",
"tags.shop": "kiosk",
"tags.source": "P161-0828=>9 [exit kept from Bing]",
"tags_new.addr:postcode": "CO6 1EU",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1206 213558",
"tags_new.ref:navads_shell": "NVDS353-12038591"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.1669466,
53.2257149
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 143896510,
"osm_type": "way",
"ref_coords": [
-4.167198,
53.225738
],
"ref_distance": 17.0,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.shop": "yes",
"tags_new.addr:postcode": "LL59 5EB",
"tags_new.phone": "+44 1248 712141",
"tags_new.ref:navads_shell": "NVDS353-10019273"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.5404133,
53.1903164
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 317253903,
"osm_type": "way",
"ref_coords": [
-2.540587,
53.190205
],
"ref_distance": 17.0,
"tags.addr:city": "Winsford",
"tags.addr:postcode": "CW7 2LX",
"tags.addr:street": "Delamere Street",
"tags.amenity": "fuel",
"tags.name": "GEM Winsford",
"tags.operator": "Shell",
"tags.source": "http://www.shell.co.uk/",
"tags.website": "http://www.shell.co.uk/",
"tags_changed.phone": "01606 590561 -> +44 1606 590561",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:30",
"tags_new.ref:navads_shell": "NVDS353-11073816"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.9916296,
51.1464571
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 148828032,
"osm_type": "way",
"ref_coords": [
-2.991393,
51.146422
],
"ref_distance": 17.0,
"ref_unused_tags.addr:postcode": "TA6 4RR",
"tags.addr:postcode": "TA6 4RN",
"tags.addr:street": "Bristol Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_91": "no",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Express Park",
"tags_changed.opening_hours": "24/7 -> Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1278 453669",
"tags_new.ref:navads_shell": "NVDS353-12018151"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.6182998,
53.8361193
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 302567340,
"osm_type": "way",
"ref_coords": [
-1.618543,
53.836063
],
"ref_distance": 17.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags_new.addr:postcode": "LS18 4DF",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 113 239 0155",
"tags_new.ref:navads_shell": "NVDS353-10019374"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.4693087,
53.5471691
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2871189833,
"osm_type": "node",
"ref_coords": [
-2.469514,
53.547266
],
"ref_distance": 17.3,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "BL1 5EL",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1204 661900",
"tags_new.ref:navads_shell": "NVDS353-10954882"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0481784,
52.6797094
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1936812668,
"osm_type": "node",
"ref_coords": [
-2.04795876,
52.6796285
],
"ref_distance": 17.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags_new.addr:postcode": "WS11 1AH",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1543 437403",
"tags_new.ref:navads_shell": "NVDS353-10019159"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.8563751,
53.1936002
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1920872560,
"osm_type": "node",
"ref_coords": [
-2.856604,
53.193526
],
"ref_distance": 17.4,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:postcode": "CH3 5NJ",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1244 405000",
"tags_new.ref:navads_shell": "NVDS353-10019310"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.789552,
51.416086
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 145504134,
"osm_type": "way",
"ref_coords": [
-0.789623,
51.415934
],
"ref_distance": 17.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "RG12 8TN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1344 488023",
"tags_new.ref:navads_shell": "NVDS353-10019657"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.5488517,
56.1864644
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 792134458,
"osm_type": "node",
"ref_coords": [
-3.548903,
56.186305
],
"ref_distance": 18.0,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "KY13 0PR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-19:00",
"tags_new.phone": "+44 1577 840997",
"tags_new.ref:navads_shell": "NVDS353-10019577"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5778645,
55.0555813
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 365356438,
"osm_type": "node",
"ref_coords": [
-1.577737,
55.055436
],
"ref_distance": 18.1,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NE23 7BD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 191 250 0976",
"tags_new.ref:navads_shell": "NVDS353-10019359"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.6683306,
51.9156799
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 139710311,
"osm_type": "way",
"ref_coords": [
-0.668199,
51.915822
],
"ref_distance": 18.2,
"tags.addr:postcode": "LU7 1LA",
"tags.addr:street": "Leighton Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1525 385292",
"tags_new.ref:navads_shell": "NVDS353-10019111"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.0106046,
51.3777219
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 266894638,
"osm_type": "node",
"ref_coords": [
0.01086672,
51.37771264
],
"ref_distance": 18.2,
"tags.amenity": "fuel",
"tags.created_by": "Potlatch 0.9a",
"tags_new.addr:housenumber": "1-3",
"tags_new.addr:postcode": "BR2 7EQ",
"tags_new.addr:street": "Station Approach",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 20 8315 8366",
"tags_new.ref:navads_shell": "NVDS353-12525437"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7358111,
52.4587297
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 3741556935,
"osm_type": "node",
"ref_coords": [
-0.73606563,
52.45879244
],
"ref_distance": 18.6,
"tags.addr:city": "Corby",
"tags.addr:country": "GB",
"tags.addr:housenumber": "30",
"tags.addr:postcode": "NN18 8TJ",
"tags.addr:street": "Little Collier's Field",
"tags.amenity": "fuel",
"tags.fhrs:authority": "Corby",
"tags.fhrs:id": "492741",
"tags.fhrs:local_authority_id": "12/00027/FOODHS",
"tags.name": "Jet",
"tags.operator": "Brobot Petroleum",
"tags_changed.brand": "Jet -> Shell",
"tags_new.phone": "+44 1536 745708",
"tags_new.ref:navads_shell": "NVDS353-12577906"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.1295396,
51.6905955
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 156894815,
"osm_type": "way",
"ref_coords": [
-4.129339,
51.690483
],
"ref_distance": 18.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "SA14 8LY",
"tags_new.phone": "+44 1554 775554",
"tags_new.ref:navads_shell": "NVDS353-10019646"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.328509,
53.1380786
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 69973678,
"osm_type": "way",
"ref_coords": [
-1.328701,
53.138202
],
"ref_distance": 18.8,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.name": "Shell Tibshelf (Southbound)",
"tags.operator": "Shell",
"tags_new.addr:postcode": "DE55 5TZ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1773 875078",
"tags_new.ref:navads_shell": "NVDS353-10367752"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.131817,
51.3729888
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 39600951,
"osm_type": "node",
"ref_coords": [
-0.13186012,
51.37315718
],
"ref_distance": 19.0,
"tags.amenity": "fuel",
"tags.created_by": "JOSM",
"tags_new.addr:postcode": "CR0 4TJ",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Th 00:00-24:00; Fr 06:00-23:00; Sa-Su 07:00-23:00",
"tags_new.phone": "+44 20 8688 0767",
"tags_new.ref:navads_shell": "NVDS353-11300503"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5914357,
51.4094001
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 357527257,
"osm_type": "node",
"ref_coords": [
-0.591417,
51.409226
],
"ref_distance": 19.4,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "GU25 4QF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1344 843436",
"tags_new.ref:navads_shell": "NVDS353-12038635"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3673485,
52.8680315
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2563759920,
"osm_type": "node",
"ref_coords": [
-1.367148,
52.867904
],
"ref_distance": 19.6,
"tags.addr:county": "Derbyshire",
"tags.addr:postcode": "DE72 2WA",
"tags.addr:street": "A50 East Bound",
"tags.addr:town": "Shardlow",
"tags.amenity": "fuel",
"tags.designation": "1801",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Derby Services",
"tags.telephone": "+44-1332-794194",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 78 8007 8248",
"tags_new.ref:navads_shell": "NVDS353-10019717"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
1.0799472,
52.1475948
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 304568544,
"osm_type": "node",
"ref_coords": [
1.079953,
52.147414
],
"ref_distance": 20.1,
"tags.addr:postcode": "IP6 8LP",
"tags.addr:street": "Norwich Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:id": "527433",
"tags.fuel:diesel": "yes",
"tags.fuel:gtl_diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.fuel:octane_98": "yes",
"tags.name": "Shell Needham Market",
"tags.opening_hours": "24/7",
"tags.source:addr": "FHRS Open Data",
"tags_new.phone": "+44 1449 722768",
"tags_new.ref:navads_shell": "NVDS353-12038427"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1721611,
56.1277375
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2857540492,
"osm_type": "node",
"ref_coords": [
-3.172003,
56.127579
],
"ref_distance": 20.2,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "KY2 5DS",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1592 644403",
"tags_new.ref:navads_shell": "NVDS353-10019446"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.0602584,
52.7537471
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 351948808,
"osm_type": "node",
"ref_coords": [
-1.060083,
52.753895
],
"ref_distance": 20.3,
"ref_unused_tags.addr:street": "Fosse Way",
"tags.addr:city": "Thrussington",
"tags.addr:postcode": "LE7 4TF",
"tags.addr:street": "A46",
"tags.amenity": "fuel",
"tags.name": "Six Hills Services Northbound",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "663-667",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1664 424999",
"tags_new.ref:navads_shell": "NVDS353-12038617"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5137926,
51.2109307
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 677218014,
"osm_type": "node",
"ref_coords": [
-1.51405,
51.211018
],
"ref_distance": 20.4,
"tags.amenity": "fuel",
"tags.operator": "Shell UK Ltd",
"tags.toilets:wheelchair": "yes",
"tags.wheelchair": "yes",
"tags_new.addr:housenumber": "280",
"tags_new.addr:postcode": "SP10 3LS",
"tags_new.addr:street": "Weyhill Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1264 361025",
"tags_new.ref:navads_shell": "NVDS353-10018960"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2995687,
54.5269004
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 272509667,
"osm_type": "way",
"ref_coords": [
-1.299254,
54.526879
],
"ref_distance": 20.5,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:lpg": "yes",
"tags.fuel:octane_95": "yes",
"tags.operator": "Rontec",
"tags.shop": "convenience",
"tags.source": "Bing",
"tags_changed.brand": "Total -> Shell",
"tags_new.addr:postcode": "TS17 0JJ",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1642 762925",
"tags_new.ref:navads_shell": "NVDS353-12038515"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2038962,
51.5463465
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 98729950,
"osm_type": "way",
"ref_coords": [
-0.204005,
51.54652
],
"ref_distance": 20.7,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "409",
"tags_new.addr:postcode": "NW6 7QE",
"tags_new.addr:street": "Kilburn High Road",
"tags_new.phone": "+44 20 7624 1916",
"tags_new.ref:navads_shell": "NVDS353-12038607"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7167226,
52.4896532
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 4715890680,
"osm_type": "node",
"ref_coords": [
-0.717016,
52.489712
],
"ref_distance": 20.9,
"ref_unused_tags.addr:postcode": "NN17 2UN",
"tags.addr:city": "Corby",
"tags.addr:country": "GB",
"tags.addr:postcode": "NN17 2UL",
"tags.addr:street": "Cottingham Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fhrs:authority": "Corby",
"tags.fhrs:id": "684081",
"tags.fhrs:local_authority_id": "13/00076/FOODHS",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1536 265272",
"tags_new.ref:navads_shell": "NVDS353-12025910"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0591608,
51.5640588
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 256404323,
"osm_type": "node",
"ref_coords": [
-0.059092,
51.564244
],
"ref_distance": 21.2,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags_new.addr:housenumber": "144-150",
"tags_new.addr:postcode": "E5 9JZ",
"tags_new.addr:street": "Upper Clapton Road",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 20 8442 9900",
"tags_new.ref:navads_shell": "NVDS353-10018839"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2424721,
51.4425204
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 448036228,
"osm_type": "node",
"ref_coords": [
0.242178,
51.442465
],
"ref_distance": 21.3,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:postcode": "DA2 6AS",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1322 223722",
"tags_new.ref:navads_shell": "NVDS353-12038624"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.5087106,
52.3124174
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2109149624,
"osm_type": "node",
"ref_coords": [
-1.508848,
52.312245
],
"ref_distance": 21.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.name": "Comptons Garage",
"tags.source": "survey",
"tags_new.addr:housenumber": "77",
"tags_new.addr:postcode": "CV32 7HY",
"tags_new.addr:street": "Rugby Road",
"tags_new.opening_hours": "Mo-Su 07:00-17:00",
"tags_new.phone": "+44 1926 423477",
"tags_new.ref:navads_shell": "NVDS353-10019141"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3335296,
53.243566
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2917373098,
"osm_type": "node",
"ref_coords": [
-1.33352982,
53.24337221
],
"ref_distance": 21.6,
"tags.amenity": "fuel",
"tags.operator": "Eurogarages",
"tags_changed.brand": "shell -> Shell",
"tags_new.addr:postcode": "S44 5HB",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1246 240328",
"tags_new.ref:navads_shell": "NVDS353-12281659"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5219729,
53.2510265
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 261721259,
"osm_type": "way",
"ref_coords": [
-0.52172,
53.250905
],
"ref_distance": 21.6,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags_new.addr:postcode": "LN2 4DS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-21:00",
"tags_new.phone": "+44 1522 510500",
"tags_new.ref:navads_shell": "NVDS353-12140979"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.1447399,
50.9778172
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 186310169,
"osm_type": "way",
"ref_coords": [
-3.145047,
50.977799
],
"ref_distance": 21.6,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.shop": "yes",
"tags_new.addr:postcode": "TA3 7PF",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1823 365892",
"tags_new.ref:navads_shell": "NVDS353-10019510"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.7170768,
50.9822728
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 129628983,
"osm_type": "way",
"ref_coords": [
-2.716893,
50.982109
],
"ref_distance": 22.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "yes",
"tags.name": "Townsend Garage",
"tags_new.addr:postcode": "BA22 8PF",
"tags_new.opening_hours": "Mo-Su 06:30-22:00",
"tags_new.phone": "+44 1935 822636",
"tags_new.ref:navads_shell": "NVDS353-10019058"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.2077492,
51.4546532
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 255859941,
"osm_type": "node",
"ref_coords": [
0.20807,
51.454633
],
"ref_distance": 22.4,
"tags.amenity": "fuel",
"tags.operator": "Total",
"tags_new.addr:postcode": "DA1 5BN",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1322 286153",
"tags_new.ref:navads_shell": "NVDS353-12038453"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.9048544,
51.6606222
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2288508075,
"osm_type": "node",
"ref_coords": [
-0.904567,
51.660527
],
"ref_distance": 22.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.name": "Stokenchurch Filling Station",
"tags_new.addr:housenumber": "109",
"tags_new.addr:postcode": "HP14 3SX",
"tags_new.addr:street": "Oxford Road",
"tags_new.opening_hours": "Mo-Sa 07:00-22:00; Su 08:00-22:00",
"tags_new.phone": "+44 1494 484211",
"tags_new.ref:navads_shell": "NVDS353-12038621"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2049402,
53.497752
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 287031509,
"osm_type": "node",
"ref_coords": [
-2.205286,
53.49774
],
"ref_distance": 22.9,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags_new.addr:housenumber": "571",
"tags_new.addr:postcode": "M40 5AF",
"tags_new.addr:street": "Oldham Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 202 0476",
"tags_new.ref:navads_shell": "NVDS353-12038546"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.265605,
56.5464458
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 666241769,
"osm_type": "node",
"ref_coords": [
-3.265383,
56.54628
],
"ref_distance": 22.9,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "PH13 9AF",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1828 627271",
"tags_new.ref:navads_shell": "NVDS353-10019443"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.2234656,
51.699983
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 925377193,
"osm_type": "node",
"ref_coords": [
-2.223314,
51.699796
],
"ref_distance": 23.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.source": "survey",
"tags_new.addr:postcode": "GL6 0BE",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 1453 834280",
"tags_new.ref:navads_shell": "NVDS353-10019518"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.43041,
50.7162675
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 321548703,
"osm_type": "way",
"ref_coords": [
-2.430633,
50.716113
],
"ref_distance": 23.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.operator": "Shell",
"tags.source": "bing",
"tags_new.addr:housenumber": "31-33",
"tags_new.addr:postcode": "DT1 1NF",
"tags_new.addr:street": "London Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1305 251766",
"tags_new.ref:navads_shell": "NVDS353-10019038"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.4965642,
55.5998337
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 475866023,
"osm_type": "node",
"ref_coords": [
-4.49656,
55.599622
],
"ref_distance": 23.6,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_changed.opening_hours": "24/7 -> Mo-Su 06:00-23:00",
"tags_new.addr:postcode": "KA1 4DQ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1563 572570",
"tags_new.ref:navads_shell": "NVDS353-10019419"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.426924,
50.9299279
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 109850165,
"osm_type": "way",
"ref_coords": [
-1.427167,
50.929773
],
"ref_distance": 24.2,
"tags.addr:city": "Southampton",
"tags.addr:housename": "Shell Station",
"tags.addr:housenumber": "234",
"tags.addr:postcode": "SO16 6TL",
"tags.addr:street": "Winchester Road",
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell Station",
"tags.source": "Bing",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-22:00",
"tags_new.phone": "+44 23 8078 6249",
"tags_new.ref:navads_shell": "NVDS353-10019033"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0745972,
51.1423745
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 679701217,
"osm_type": "node",
"ref_coords": [
-0.074893,
51.142491
],
"ref_distance": 24.4,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "RH10 3EQ",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1342 718750",
"tags_new.ref:navads_shell": "NVDS353-10018804"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.5854128,
51.2060099
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 462230386,
"osm_type": "node",
"ref_coords": [
-0.585493,
51.20579
],
"ref_distance": 25.1,
"tags.addr:city": "Guildford",
"tags.addr:housename": "Shell Peasmarsh",
"tags.addr:postcode": "GU3 1NA",
"tags.addr:street": "Old Portsmouth Road",
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags.opening_hours": "24/7",
"tags.operator": "Total",
"tags.wheelchair": "yes",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1483 457293",
"tags_new.ref:navads_shell": "NVDS353-12038562"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0332044,
51.357204
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 293352962,
"osm_type": "way",
"ref_coords": [
-0.033468,
51.357047
],
"ref_distance": 25.3,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "retail",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "CR0 5AR",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1689 846761",
"tags_new.ref:navads_shell": "NVDS353-10018920"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.9192892,
56.1125961
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1912649902,
"osm_type": "node",
"ref_coords": [
-3.919102,
56.112392
],
"ref_distance": 25.5,
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell",
"tags.operator": "Shell",
"tags_new.addr:postcode": "FK7 7SY",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1786 849302",
"tags_new.ref:navads_shell": "NVDS353-10019586"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8523112,
51.2971879
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 61478613,
"osm_type": "way",
"ref_coords": [
-0.852647,
51.297283
],
"ref_distance": 25.7,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.highway": "service",
"tags.name": "Shell Fleet Services (East)",
"tags.operator": "Shell",
"tags.surface": "concrete",
"tags_new.addr:postcode": "GU51 1AA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1252 788528",
"tags_new.ref:navads_shell": "NVDS353-10019102"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.0288518,
51.8177112
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 288567411,
"osm_type": "node",
"ref_coords": [
-3.029168,
51.817578
],
"ref_distance": 26.3,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:postcode": "NP7 9LL",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Sa 06:30-21:00; Su 07:30-19:00",
"tags_new.phone": "+44 1873 851184",
"tags_new.ref:navads_shell": "NVDS353-12140975"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7502857,
51.3067239
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 751404222,
"osm_type": "node",
"ref_coords": [
-0.750191,
51.306953
],
"ref_distance": 26.3,
"tags.addr:street": "Farnborough Road",
"tags.amenity": "fuel",
"tags.name": "Shell Bradfords Garage",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "GU14 8BD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1252 523221",
"tags_new.ref:navads_shell": "NVDS353-11849704"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3787153,
53.376147
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 455640336,
"osm_type": "node",
"ref_coords": [
-2.378681,
53.376384
],
"ref_distance": 26.5,
"tags.amenity": "fuel",
"tags.operator": "Texaco",
"tags_new.addr:postcode": "WA14 4SN",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 941 3554",
"tags_new.ref:navads_shell": "NVDS353-12038439"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.3332479,
53.1373064
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 61484251,
"osm_type": "way",
"ref_coords": [
-1.333621,
53.137395
],
"ref_distance": 26.8,
"tags.addr:county": "Derbyshire",
"tags.addr:postcode": "DE55 5TZ",
"tags.addr:street:name": "M1 JCT28-29",
"tags.addr:town": "Tibshelf",
"tags.alt_name": "Shell Chesterfield North",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.designation": "2163",
"tags.fuel:diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Shell Tibshelf (North)",
"tags.operator": "Shell",
"tags.telephone": "+44 (0)1773 591553",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1773 591068",
"tags_new.ref:navads_shell": "NVDS353-10367753"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.2003928,
52.0141538
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 21027519,
"osm_type": "node",
"ref_coords": [
-0.200451,
52.014395
],
"ref_distance": 27.1,
"tags.amenity": "fuel",
"tags.name": "Shell Baldock",
"tags.operator": "Shell",
"tags.source": "GPS_waypoints",
"tags_new.addr:postcode": "SG7 5TR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1462 733046",
"tags_new.ref:navads_shell": "NVDS353-10367820"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2809359,
53.3142503
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 69974213,
"osm_type": "way",
"ref_coords": [
-1.28134403,
53.31423877
],
"ref_distance": 27.2,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.highway": "service",
"tags.name": "Shell Woodall (South)",
"tags.operator": "Shell",
"tags.surface": "concrete",
"tags_new.addr:postcode": "S26 7XR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 114 251 1039",
"tags_new.ref:navads_shell": "NVDS353-10019331"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.7963443,
53.9207943
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 319616794,
"osm_type": "way",
"ref_coords": [
-0.796271,
53.920553
],
"ref_distance": 27.3,
"tags.amenity": "fuel",
"tags.building": "yes",
"tags.name": "Shell",
"tags_new.addr:postcode": "YO42 1AD",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1759 304637",
"tags_new.ref:navads_shell": "NVDS353-12271744"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0223422,
51.7383273
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 269275598,
"osm_type": "node",
"ref_coords": [
-0.022107,
51.738126
],
"ref_distance": 27.7,
"tags.amenity": "fuel",
"tags.name": "Shell",
"tags_new.addr:housenumber": "197",
"tags_new.addr:postcode": "EN10 6PY",
"tags_new.addr:street": "High Road",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 07:00-22:00",
"tags_new.phone": "+44 1992 443165",
"tags_new.ref:navads_shell": "NVDS353-12038552"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.2829426,
53.3168198
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 69974045,
"osm_type": "way",
"ref_coords": [
-1.28327,
53.316665
],
"ref_distance": 27.8,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.highway": "service",
"tags.name": "Shell Woodall (North)",
"tags.operator": "Shell",
"tags.surface": "concrete",
"tags_new.addr:postcode": "S26 7XR",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 114 248 6434",
"tags_new.ref:navads_shell": "NVDS353-10019330"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.477328,
53.7140614
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 2114130448,
"osm_type": "node",
"ref_coords": [
-2.47693,
53.714155
],
"ref_distance": 28.2,
"tags.amenity": "fuel",
"tags_new.addr:postcode": "BB3 0AT",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1254 706453",
"tags_new.ref:navads_shell": "NVDS353-10367629"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.8162957,
51.073965
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 34687426,
"osm_type": "node",
"ref_coords": [
-1.816735,
51.074032
],
"ref_distance": 31.6,
"tags.amenity": "fuel",
"tags.operator": "Shell",
"tags_new.addr:housenumber": "133",
"tags_new.addr:postcode": "SP2 7JB",
"tags_new.addr:street": "Wilton Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 1722 434950",
"tags_new.ref:navads_shell": "NVDS353-10019043"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.0688943,
51.3960909
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1110096162,
"osm_type": "node",
"ref_coords": [
-0.069048,
51.396371
],
"ref_distance": 33.0,
"tags.amenity": "fuel",
"tags_new.addr:housenumber": "123-127",
"tags_new.addr:postcode": "SE25 4UX",
"tags_new.addr:street": "Portland Road",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 20 8656 8636",
"tags_new.ref:navads_shell": "NVDS353-10018851"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.3472895,
53.5055811
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 275325052,
"osm_type": "node",
"ref_coords": [
-2.347786,
53.505607
],
"ref_distance": 33.0,
"tags.amenity": "fuel",
"tags.name": "Total",
"tags_new.addr:postcode": "M27 0AA",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 161 794 0192",
"tags_new.ref:navads_shell": "NVDS353-12038474"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.0173982,
53.4561343
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 248411349,
"osm_type": "node",
"ref_coords": [
-2.016925,
53.456304
],
"ref_distance": 36.6,
"tags.amenity": "fuel",
"tags.created_by": "Merkaartor 0.13",
"tags.operator": "Texaco",
"tags_new.addr:postcode": "SK14 6NG",
"tags_new.brand": "Shell",
"tags_new.phone": "+44 78 5550 9061",
"tags_new.ref:navads_shell": "NVDS353-11920306"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.8598058,
51.2946675
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 61478612,
"osm_type": "way",
"ref_coords": [
-0.859258,
51.294677
],
"ref_distance": 38.1,
"tags.amenity": "fuel",
"tags.area": "yes",
"tags.highway": "service",
"tags.name": "Shell Fleet Services (West)",
"tags.operator": "Shell",
"tags.surface": "concrete",
"tags_new.addr:postcode": "GU51 1AA",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1252 627205",
"tags_new.ref:navads_shell": "NVDS353-10019064"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.5340703,
52.338616
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 478902268,
"osm_type": "way",
"ref_coords": [
0.534069,
52.338249
],
"ref_distance": 40.9,
"tags.addr:city": "Bury St Edmunds",
"tags.addr:place": "5 Ways Roundabout",
"tags.addr:postcode": "IP28 6AE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.building": "roof",
"tags.layer": "1",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1638 712616",
"tags_new.ref:navads_shell": "NVDS353-12430163"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4101505,
51.3053595
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 1981182927,
"osm_type": "node",
"ref_coords": [
-0.409766,
51.305064
],
"ref_distance": 42.4,
"tags.amenity": "fuel",
"tags.fuel:diesel": "yes",
"tags.fuel:hgv_diesel": "yes",
"tags.fuel:octane_95": "yes",
"tags.name": "Cobham Services",
"tags.shop": "yes",
"tags_new.addr:postcode": "KT11 3JS",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "24/7",
"tags_new.phone": "+44 1932 867005",
"tags_new.ref:navads_shell": "NVDS353-12106895"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.019415,
50.9721274
],
"type": "Point"
},
"properties": {
"action": "modify",
"marker-color": "#0000ee",
"osm_id": 481269665,
"osm_type": "way",
"ref_coords": [
-0.019634,
50.971758
],
"ref_distance": 43.9,
"tags.amenity": "fuel",
"tags.building": "roof",
"tags.layer": "1",
"tags.operator": "Shell",
"tags.wheelchair": "yes",
"tags_new.addr:postcode": "BN8 4DH",
"tags_new.brand": "Shell",
"tags_new.opening_hours": "Mo-Su 06:00-23:00",
"tags_new.phone": "+44 1825 723366",
"tags_new.ref:navads_shell": "NVDS353-12419241"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.064106,
52.042665
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -916,
"osm_type": "node",
"tags.addr:housenumber": "505",
"tags.addr:postcode": "SG8 9NN",
"tags.addr:street": "Baldock Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Fr 05:00-22:00",
"tags.phone": "+44 1462 742391",
"tags.ref:navads_shell": "NVDS353-10018810"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.019843,
51.346011
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -917,
"osm_type": "node",
"tags.addr:postcode": "CR0 0LA",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:00",
"tags.phone": "+44 1689 843824",
"tags.ref:navads_shell": "NVDS353-10018850"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.099313,
51.46359
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -918,
"osm_type": "node",
"tags.addr:housenumber": "147-173",
"tags.addr:postcode": "DA16 3QS",
"tags.addr:street": "Bellegrove Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 20 8303 4507",
"tags.ref:navads_shell": "NVDS353-10018852"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.109381,
51.614563
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -919,
"osm_type": "node",
"tags.addr:housenumber": "148-150",
"tags.addr:postcode": "N13 5UN",
"tags.addr:street": "Green Lanes",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 20 8882 5364",
"tags.ref:navads_shell": "NVDS353-10018883"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.044579,
51.37455
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -920,
"osm_type": "node",
"tags.addr:housenumber": "116-118",
"tags.addr:postcode": "BR2 8NJ",
"tags.addr:street": "Hastings Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-23:00",
"tags.phone": "+44 20 8462 1558",
"tags.ref:navads_shell": "NVDS353-10018890"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.074098,
51.551233
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -921,
"osm_type": "node",
"tags.addr:housenumber": "200",
"tags.addr:postcode": "IG1 2LW",
"tags.addr:street": "Ilford Lane",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 20 8477 7900",
"tags.ref:navads_shell": "NVDS353-10018926"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.112849,
51.648939
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -922,
"osm_type": "node",
"tags.addr:postcode": "RM4 1XL",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:30-22:00",
"tags.phone": "+44 1992 815350",
"tags.ref:navads_shell": "NVDS353-10018939"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.066772,
51.253997
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -923,
"osm_type": "node",
"tags.addr:postcode": "RH9 8AJ",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1883 743428",
"tags.ref:navads_shell": "NVDS353-10018949"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.766219,
51.617821
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -924,
"osm_type": "node",
"tags.addr:postcode": "HP11 1TB",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Sa 00:00-24:00; Su 07:00-22:00",
"tags.phone": "+44 1494 513790",
"tags.ref:navads_shell": "NVDS353-10018955"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.511746,
51.314597
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -925,
"osm_type": "node",
"tags.addr:postcode": "ME20 7EE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1634 687356",
"tags.ref:navads_shell": "NVDS353-10018991"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.535204,
51.860765
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -926,
"osm_type": "node",
"tags.addr:housenumber": "201",
"tags.addr:postcode": "CM77 8QG",
"tags.addr:street": "London Road, E5",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-21:00",
"tags.phone": "+44 1376 555010",
"tags.ref:navads_shell": "NVDS353-10019014"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.452276,
51.632978
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -927,
"osm_type": "node",
"tags.addr:postcode": "CF40 2JJ",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:30",
"tags.phone": "+44 1443 432240",
"tags.ref:navads_shell": "NVDS353-10019062"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.711805,
51.62717
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -928,
"osm_type": "node",
"tags.addr:postcode": "SN6 7DE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-23:00",
"tags.phone": "+44 1793 763594",
"tags.ref:navads_shell": "NVDS353-10019072"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.312297,
52.03678
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -929,
"osm_type": "node",
"tags.addr:postcode": "SA44 4AE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:30-20:00",
"tags.phone": "+44 1559 362288",
"tags.ref:navads_shell": "NVDS353-10019087"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-5.045859,
50.264151
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -930,
"osm_type": "node",
"tags.addr:postcode": "TR1 1PU",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1872 261484",
"tags.ref:navads_shell": "NVDS353-10019093"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.731,
50.854269
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -931,
"osm_type": "node",
"tags.addr:postcode": "BH24 3HN",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1425 483851",
"tags.ref:navads_shell": "NVDS353-10019094"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.749794,
52.082451
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -932,
"osm_type": "node",
"tags.addr:postcode": "MK16 8DS",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1908 613603",
"tags.ref:navads_shell": "NVDS353-10019108"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.728126,
52.058725
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -933,
"osm_type": "node",
"tags.addr:postcode": "HR4 0DG",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Fr,Su 06:00-23:00; Sa 06:00-21:00",
"tags.phone": "+44 1432 273298",
"tags.ref:navads_shell": "NVDS353-10019128"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.147627,
52.588579
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -934,
"osm_type": "node",
"tags.addr:housenumber": "95",
"tags.addr:postcode": "WV3 9NQ",
"tags.addr:street": "Tettenhall Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1902 422910",
"tags.ref:navads_shell": "NVDS353-10019156"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.509906,
52.444068
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -935,
"osm_type": "node",
"tags.addr:postcode": "CV6 4DG",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 24 7670 2510",
"tags.ref:navads_shell": "NVDS353-10019162"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.483044,
53.373157
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -936,
"osm_type": "node",
"tags.addr:housenumber": "158",
"tags.addr:postcode": "S11 8JD",
"tags.addr:street": "Ecclesall Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 114 276 8689",
"tags.ref:navads_shell": "NVDS353-10019223"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.330303,
53.391797
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -937,
"osm_type": "node",
"tags.addr:housenumber": "155",
"tags.addr:postcode": "WA15 7LT",
"tags.addr:street": "Stockport Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 161 980 0318",
"tags.ref:navads_shell": "NVDS353-10019237"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.279394,
53.495852
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -938,
"osm_type": "node",
"tags.addr:housenumber": "11-13",
"tags.addr:postcode": "M6 6SX",
"tags.addr:street": "Cromwell Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 161 925 0760",
"tags.ref:navads_shell": "NVDS353-10019245"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.782806,
53.545963
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -939,
"osm_type": "node",
"tags.addr:postcode": "WN8 9JE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1695 553650",
"tags.ref:navads_shell": "NVDS353-10019247"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.918991,
53.469998
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -940,
"osm_type": "node",
"tags.addr:postcode": "L10 1LF",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 151 523 2456",
"tags.ref:navads_shell": "NVDS353-10019251"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.835044,
53.690801
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -941,
"osm_type": "node",
"tags.addr:housenumber": "172",
"tags.addr:postcode": "PR4 6UD",
"tags.addr:street": "Hesketh Lane",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-21:00",
"tags.phone": "+44 1772 814042",
"tags.ref:navads_shell": "NVDS353-10019258"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.635963,
53.417976
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -942,
"osm_type": "node",
"tags.addr:postcode": "WA5 3AX",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1925 651656",
"tags.ref:navads_shell": "NVDS353-10019277"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.59473,
53.405528
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -943,
"osm_type": "node",
"tags.addr:housenumber": "296",
"tags.addr:postcode": "WA2 8HZ",
"tags.addr:street": "Winwick Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1925 636305",
"tags.ref:navads_shell": "NVDS353-10019294"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.349567,
53.403863
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -944,
"osm_type": "node",
"tags.addr:housenumber": "282",
"tags.addr:postcode": "WA14 5NB",
"tags.addr:street": "Manchester Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 161 976 9460",
"tags.ref:navads_shell": "NVDS353-10019305"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.599104,
55.007478
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -945,
"osm_type": "node",
"tags.addr:housenumber": "3",
"tags.addr:postcode": "NE7 7LX",
"tags.addr:street": "Benton Park Rd",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 191 285 4094",
"tags.ref:navads_shell": "NVDS353-10019327"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.530912,
53.856517
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -946,
"osm_type": "node",
"tags.addr:housenumber": "495",
"tags.addr:postcode": "LS17 7DA",
"tags.addr:street": "Harrogate Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 113 266 6365",
"tags.ref:navads_shell": "NVDS353-10019336"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.43386042,
54.19965322
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -947,
"osm_type": "node",
"tags.addr:postcode": "YO12 4SB",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1944 710073",
"tags.ref:navads_shell": "NVDS353-10019344"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.145252,
53.532004
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -948,
"osm_type": "node",
"tags.addr:postcode": "DN5 9SA",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1302 393000",
"tags.ref:navads_shell": "NVDS353-10019372"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.589518,
53.780162
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -949,
"osm_type": "node",
"tags.addr:postcode": "LS12 6AN",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 113 263 3729",
"tags.ref:navads_shell": "NVDS353-10019379"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.320569,
55.801579
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -950,
"osm_type": "node",
"tags.addr:postcode": "G46 7HT",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Sa 07:00-23:00; Su 08:00-22:00",
"tags.phone": "+44 141 620 0342",
"tags.ref:navads_shell": "NVDS353-10019431"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.829296,
56.006332
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -951,
"osm_type": "node",
"tags.addr:housenumber": "95",
"tags.addr:postcode": "FK1 4JD",
"tags.addr:street": "Glasgow Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-22:00",
"tags.phone": "+44 1665 578216",
"tags.ref:navads_shell": "NVDS353-10019452"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.877841,
55.782007
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -952,
"osm_type": "node",
"tags.addr:housenumber": "75",
"tags.addr:postcode": "ML2 9AT",
"tags.addr:street": "Main Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1698 382425",
"tags.ref:navads_shell": "NVDS353-10019471"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.001854,
51.418304
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -953,
"osm_type": "node",
"tags.addr:postcode": "BR1 4JU",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 20 8290 1785",
"tags.ref:navads_shell": "NVDS353-10019499"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.433346,
51.044965
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -954,
"osm_type": "node",
"tags.addr:postcode": "BA9 8AE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44196332609",
"tags.ref:navads_shell": "NVDS353-10019526"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.895575,
53.815863
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -955,
"osm_type": "node",
"tags.addr:postcode": "PR4 3HE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1253 836321",
"tags.ref:navads_shell": "NVDS353-10019549"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.066117,
53.395116
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -956,
"osm_type": "node",
"tags.addr:housenumber": "54",
"tags.addr:postcode": "SK6 6AE",
"tags.addr:street": "Stockport Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 161 427 8961",
"tags.ref:navads_shell": "NVDS353-10019566"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.893274,
56.646779
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -957,
"osm_type": "node",
"tags.addr:postcode": "DD8 3JA",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1307 469620",
"tags.ref:navads_shell": "NVDS353-10019610"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.424119,
51.254941
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -958,
"osm_type": "node",
"tags.addr:housenumber": "115",
"tags.addr:postcode": "ME18 5NS",
"tags.addr:street": "Tonbridge Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 1622 817537",
"tags.ref:navads_shell": "NVDS353-10019624"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.107323,
51.532964
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -959,
"osm_type": "node",
"tags.addr:housenumber": "514",
"tags.addr:postcode": "IG11 9PG",
"tags.addr:street": "Ripple Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 20 8532 7890",
"tags.ref:navads_shell": "NVDS353-10019638"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.4766,
51.516444
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -960,
"osm_type": "node",
"tags.addr:housenumber": "209",
"tags.addr:postcode": "UB7 7QP",
"tags.addr:street": "High Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1895 438662",
"tags.ref:navads_shell": "NVDS353-10019650"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.73214,
53.792071
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -961,
"osm_type": "node",
"tags.addr:postcode": "BD3 9SB",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1274 731337",
"tags.ref:navads_shell": "NVDS353-10019706"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.491268,
53.743981
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -962,
"osm_type": "node",
"tags.addr:postcode": "BB2 1NT",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1254 582278",
"tags.ref:navads_shell": "NVDS353-10047878"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.816982,
55.621327
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -963,
"osm_type": "node",
"tags.addr:postcode": "TD1 1PW",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-22:00",
"tags.phone": "+44 1896 752301",
"tags.ref:navads_shell": "NVDS353-10369163"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.129621,
52.539522
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -964,
"osm_type": "node",
"tags.addr:postcode": "DY3 3LT",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-22:00",
"tags.phone": "+44 1902 663190",
"tags.ref:navads_shell": "NVDS353-10391999"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.106609,
52.669944
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -965,
"osm_type": "node",
"tags.addr:housenumber": "500",
"tags.addr:postcode": "LE4 7SP",
"tags.addr:street": "Melton Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Fr 07:00-22:00; Sa 08:00-18:00; Su 09:00-17:00",
"tags.phone": "+44 116 261 0410",
"tags.ref:navads_shell": "NVDS353-10395632"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.113683,
53.536992
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -966,
"osm_type": "node",
"tags.addr:postcode": "OL8 1DB",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 161 621 9020",
"tags.ref:navads_shell": "NVDS353-10954896"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.170148,
53.465272
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -967,
"osm_type": "node",
"tags.addr:housenumber": "197",
"tags.addr:postcode": "M18 8WP",
"tags.addr:street": "Chapman Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 161 223 7647",
"tags.ref:navads_shell": "NVDS353-11055048"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.294863,
53.599769
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -968,
"osm_type": "node",
"tags.addr:postcode": "WF9 2PH",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 1977 642376",
"tags.ref:navads_shell": "NVDS353-11222199"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.95537,
51.335539
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -969,
"osm_type": "node",
"tags.addr:postcode": "BS23 3YS",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1934 622331",
"tags.ref:navads_shell": "NVDS353-11305443"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.021767,
53.079282
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -970,
"osm_type": "node",
"tags.addr:postcode": "LL11 4AH",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1978 754902",
"tags.ref:navads_shell": "NVDS353-11307864"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.221133,
53.832911
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -971,
"osm_type": "node",
"tags.addr:postcode": "BB9 7AJ",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1772 706666",
"tags.ref:navads_shell": "NVDS353-11309132"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.12294,
53.56043
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -972,
"osm_type": "node",
"tags.addr:postcode": "OL2 5DD",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 161 624 6499",
"tags.ref:navads_shell": "NVDS353-11310422"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.862985,
53.72973
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -973,
"osm_type": "node",
"tags.addr:postcode": "HX3 6ED",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1422 321702",
"tags.ref:navads_shell": "NVDS353-11333947"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.409879,
53.38901
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -974,
"osm_type": "node",
"tags.addr:postcode": "S9 5HE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 114 244 0389",
"tags.ref:navads_shell": "NVDS353-11360653"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.519795,
51.59066
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -975,
"osm_type": "node",
"tags.addr:postcode": "SS12 9HZ",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1268 590033",
"tags.ref:navads_shell": "NVDS353-11614380"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.033773,
52.446421
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -976,
"osm_type": "node",
"tags.addr:postcode": "B62 8RJ",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 74 1422 3119",
"tags.ref:navads_shell": "NVDS353-11849695"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.221206,
52.576632
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -977,
"osm_type": "node",
"tags.addr:postcode": "PE1 5YB",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1733 311527",
"tags.ref:navads_shell": "NVDS353-11930301"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.795535,
51.3449
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -978,
"osm_type": "node",
"tags.addr:housenumber": "102",
"tags.addr:postcode": "GU47 9BH",
"tags.addr:street": "Yorktown Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1282 589290",
"tags.ref:navads_shell": "NVDS353-12038409"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.260112,
51.506242
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -979,
"osm_type": "node",
"tags.addr:housenumber": "213-217",
"tags.addr:postcode": "W3 7QS",
"tags.addr:street": "The Vale",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 20 8735 2728",
"tags.ref:navads_shell": "NVDS353-12038410"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.469386,
51.428198
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -980,
"osm_type": "node",
"tags.addr:housenumber": "102",
"tags.addr:postcode": "TW15 3RX",
"tags.addr:street": "Fordbridge Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-23:00",
"tags.phone": "+44 1784 421256",
"tags.ref:navads_shell": "NVDS353-12038420"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.73401,
51.802005
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -981,
"osm_type": "node",
"tags.addr:housenumber": "62-64",
"tags.addr:postcode": "HP22 5AH",
"tags.addr:street": "Aylesbury Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Sa 06:00-22:00; Su 07:00-23:00",
"tags.phone": "+44 1296 632668",
"tags.ref:navads_shell": "NVDS353-12038421"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.532488,
51.42435
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -982,
"osm_type": "node",
"tags.addr:housenumber": "171",
"tags.addr:postcode": "TW20 8HP",
"tags.addr:street": "Thorpe Lea Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1784 461700",
"tags.ref:navads_shell": "NVDS353-12038423"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.28915867,
51.46188445
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -983,
"osm_type": "node",
"tags.addr:housenumber": "174-176",
"tags.addr:postcode": "TW9 1XD",
"tags.addr:street": "Sheen Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 20 8332 0210",
"tags.ref:navads_shell": "NVDS353-12038435"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.531295,
51.741547
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -984,
"osm_type": "node",
"tags.addr:postcode": "HP1 2SB",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1442 864703",
"tags.ref:navads_shell": "NVDS353-12038438"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.297746,
51.607247
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -985,
"osm_type": "node",
"tags.addr:housenumber": "146-148",
"tags.addr:postcode": "CM14 5HE",
"tags.addr:street": "Warley Hill",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:00",
"tags.phone": "+44 1277 211591",
"tags.ref:navads_shell": "NVDS353-12038442"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.937777,
50.724777
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -986,
"osm_type": "node",
"tags.addr:housenumber": "113-115",
"tags.addr:postcode": "BH14 9HR",
"tags.addr:street": "Bournemouth Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1202 742956",
"tags.ref:navads_shell": "NVDS353-12038464"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.500329,
51.581167
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -987,
"osm_type": "node",
"tags.addr:postcode": "UB9 5EY",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:00",
"tags.phone": "+44 1895 832803",
"tags.ref:navads_shell": "NVDS353-12038476"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.186852,
51.854953
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -988,
"osm_type": "node",
"tags.addr:postcode": "GL3 3RX",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1452 619123",
"tags.ref:navads_shell": "NVDS353-12038501"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.076798,
51.599288
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -989,
"osm_type": "node",
"tags.addr:housenumber": "311",
"tags.addr:postcode": "N17 7AB",
"tags.addr:street": "The Roundway",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Fr 06:00-22:00; Sa-Su 06:30-22:00",
"tags.phone": "+44 20 8808 4559",
"tags.ref:navads_shell": "NVDS353-12038512"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.331657,
51.463951
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -990,
"osm_type": "node",
"tags.addr:housenumber": "403-405",
"tags.addr:postcode": "TW7 7ES",
"tags.addr:street": "Twickenham Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-23:00",
"tags.phone": "+44 20 8892 1616",
"tags.ref:navads_shell": "NVDS353-12038522"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.284663,
51.585207
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -991,
"osm_type": "node",
"tags.addr:housenumber": "609",
"tags.addr:postcode": "HA3 9RY",
"tags.addr:street": "Kenton Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 20 8206 2790",
"tags.ref:navads_shell": "NVDS353-12038525"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.559478,
51.553989
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -992,
"osm_type": "node",
"tags.addr:housenumber": "280",
"tags.addr:postcode": "SS7 5HB",
"tags.addr:street": "High Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:00",
"tags.phone": "+44 1268 565894",
"tags.ref:navads_shell": "NVDS353-12038526"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.348642,
53.44571
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -993,
"osm_type": "node",
"tags.addr:housenumber": "42",
"tags.addr:postcode": "M41 9LS",
"tags.addr:street": "Stretford Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:30-22:30",
"tags.phone": "+44 161 748 5546",
"tags.ref:navads_shell": "NVDS353-12038542"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.084323,
52.563719
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -994,
"osm_type": "node",
"tags.addr:housenumber": "40301",
"tags.addr:postcode": "WV14 0QJ",
"tags.addr:street": "Millfields Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1902 498471",
"tags.ref:navads_shell": "NVDS353-12038544"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.546158,
51.302557
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -995,
"osm_type": "node",
"tags.addr:housenumber": "65",
"tags.addr:postcode": "GU22 9LN",
"tags.addr:street": "High Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:00",
"tags.phone": "+44 1483 728603",
"tags.ref:navads_shell": "NVDS353-12038558"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.498752,
51.364327
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -996,
"osm_type": "node",
"tags.addr:postcode": "ME1 3LT",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 1795 479143",
"tags.ref:navads_shell": "NVDS353-12038571"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.196027,
51.573785
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -997,
"osm_type": "node",
"tags.addr:housenumber": "203",
"tags.addr:postcode": "RM1 2SL",
"tags.addr:street": "Brentwood Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1708 767239",
"tags.ref:navads_shell": "NVDS353-12038572"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.751111,
53.768581
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -998,
"osm_type": "node",
"tags.addr:postcode": "BD5 8JR",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1274 306188",
"tags.ref:navads_shell": "NVDS353-12038573"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.339638,
53.466565
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -999,
"osm_type": "node",
"tags.addr:postcode": "S62 5AT",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1709 523320",
"tags.ref:navads_shell": "NVDS353-12038574"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.142457,
51.408091
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1000,
"osm_type": "node",
"tags.addr:housenumber": "7",
"tags.addr:postcode": "SW16 5JF",
"tags.addr:street": "Rowan Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 20 8679 0237",
"tags.ref:navads_shell": "NVDS353-12038577"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.293341,
52.760049
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1001,
"osm_type": "node",
"tags.addr:postcode": "LE12 9BE",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1509 503549",
"tags.ref:navads_shell": "NVDS353-12038583"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.225631,
51.565697
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1002,
"osm_type": "node",
"tags.addr:housenumber": "383",
"tags.addr:postcode": "NW2 6LD",
"tags.addr:street": "Edgware Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 20 8452 7294",
"tags.ref:navads_shell": "NVDS353-12038595"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.089651,
51.351556
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1003,
"osm_type": "node",
"tags.addr:housenumber": "77",
"tags.addr:postcode": "BR6 6BJ",
"tags.addr:street": "High Street",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 1689 854022",
"tags.ref:navads_shell": "NVDS353-12038604"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.055018,
51.603013
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1004,
"osm_type": "node",
"tags.addr:housenumber": "41275",
"tags.addr:postcode": "N17 0QU",
"tags.addr:street": "Willoughby Lane",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 20 8801 1573",
"tags.ref:navads_shell": "NVDS353-12038605"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.494228,
55.023781
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1005,
"osm_type": "node",
"tags.addr:postcode": "NE27 0QH",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 191 296 6162",
"tags.ref:navads_shell": "NVDS353-12038609"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.965738,
51.464084
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1006,
"osm_type": "node",
"tags.addr:postcode": "RG4 8DH",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 118 947 9156",
"tags.ref:navads_shell": "NVDS353-12038613"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.591285,
51.560644
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1007,
"osm_type": "node",
"tags.addr:housenumber": "171-175",
"tags.addr:postcode": "SS7 1SJ",
"tags.addr:street": "Kiln Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Fr 06:00-23:00; Sa 07:00-23:00; Su 08:00-23:00",
"tags.phone": "+44 1702 555485",
"tags.ref:navads_shell": "NVDS353-12038636"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.07716741,
51.30417781
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1008,
"osm_type": "node",
"tags.addr:housenumber": "408",
"tags.addr:postcode": "CR3 0BB",
"tags.addr:street": "Godstone Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1883 625180",
"tags.ref:navads_shell": "NVDS353-12038638"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.087059,
52.391188
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1009,
"osm_type": "node",
"tags.addr:postcode": "DY9 9XU",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1562 731207",
"tags.ref:navads_shell": "NVDS353-12193941"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.918648,
53.703339
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1010,
"osm_type": "node",
"tags.addr:postcode": "HX6 3BL",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 1422 834462",
"tags.ref:navads_shell": "NVDS353-12220145"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.399864,
53.712393
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1011,
"osm_type": "node",
"tags.addr:postcode": "WF10 5QH",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 78 0824 9436",
"tags.ref:navads_shell": "NVDS353-12281484"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.568894,
54.311597
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1012,
"osm_type": "node",
"tags.addr:postcode": "DL7 9DD",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1677 424525",
"tags.ref:navads_shell": "NVDS353-12281668"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.98548837,
53.65034183
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1013,
"osm_type": "node",
"tags.addr:housenumber": "6/16",
"tags.addr:postcode": "PR9 9DR",
"tags.addr:street": "Roe Lane",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-23:00",
"tags.phone": "+44 1772 706666",
"tags.ref:navads_shell": "NVDS353-12301821"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.012679,
53.382751
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1014,
"osm_type": "node",
"tags.addr:postcode": "LN11 0WA",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1507 601358",
"tags.ref:navads_shell": "NVDS353-12302183"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.205823,
50.980208
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1015,
"osm_type": "node",
"tags.addr:postcode": "TA21 9AD",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1823 661922",
"tags.ref:navads_shell": "NVDS353-12394983"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.865872,
53.34775
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1016,
"osm_type": "node",
"tags.addr:postcode": "L24 1UX",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 151 486 7883",
"tags.ref:navads_shell": "NVDS353-12409102"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-3.028872,
53.414314
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1017,
"osm_type": "node",
"tags.addr:postcode": "CH44 9AD",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 151 638 1151",
"tags.ref:navads_shell": "NVDS353-12419239"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
0.343115,
51.297965
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1018,
"osm_type": "node",
"tags.addr:postcode": "TN15 7RX",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Sa 00:00-24:00; Su 08:00-22:00",
"tags.phone": "+44 1732 606002",
"tags.ref:navads_shell": "NVDS353-12430516"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.41611694,
53.44985799
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1019,
"osm_type": "node",
"tags.addr:postcode": "M44 6EH",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 161 478 0309",
"tags.ref:navads_shell": "NVDS353-12478110"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.382243,
54.815303
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1020,
"osm_type": "node",
"tags.addr:postcode": "SR7 9JA",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 79 1783 4079",
"tags.ref:navads_shell": "NVDS353-12480766"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.96510361,
54.2652755
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1021,
"osm_type": "node",
"tags.addr:postcode": "LA12 8ND",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-22:00",
"tags.phone": "+44 1539 531253",
"tags.ref:navads_shell": "NVDS353-12500451"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-0.445048,
51.897568
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1022,
"osm_type": "node",
"tags.addr:postcode": "LU3 1RJ",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 06:00-22:00",
"tags.phone": "+44 1582 219018",
"tags.ref:navads_shell": "NVDS353-12525433"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-4.92027901,
55.95305452
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1023,
"osm_type": "node",
"tags.addr:housenumber": "95",
"tags.addr:postcode": "PA23 8AL",
"tags.addr:street": "Alexandra Parade",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "Mo-Su 07:00-22:00",
"tags.phone": "+44 1369 703094",
"tags.ref:navads_shell": "NVDS353-12566069"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-2.71112653,
53.49346275
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1024,
"osm_type": "node",
"tags.addr:housenumber": "1-3",
"tags.addr:postcode": "WN5 7PF",
"tags.addr:street": "Rainford Road",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.phone": "+44 1744 892061",
"tags.ref:navads_shell": "NVDS353-12570016"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-1.28631076,
54.44898205
],
"type": "Point"
},
"properties": {
"action": "create",
"marker-color": "#00dd00",
"osm_id": -1025,
"osm_type": "node",
"tags.addr:housenumber": "36",
"tags.addr:postcode": "TS15 0DL",
"tags.addr:street": "Garbutts Lane",
"tags.amenity": "fuel",
"tags.brand": "Shell",
"tags.opening_hours": "24/7",
"tags.phone": "+44 1642 701848",
"tags.ref:navads_shell": "NVDS353-12584345"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}
import json
import codecs
import re
from collections import defaultdict
source = 'Navads'
dataset_id = 'navads_shell'
query = [('amenity', 'fuel')]
master_tags = ('brand', 'phone', 'opening_hours')
max_distance = 50
max_request_boxes = 3
def dataset(fileobj):
def format_phone(ph):
if ph and len(ph) == 13 and ph[:3] == '+44':
if (ph[3] == '1' and ph[4] != '1' and ph[5] != '1') or ph[3:7] == '7624':
return ' '.join([ph[:3], ph[3:7], ph[7:]])
elif ph[3] in ('1', '3', '8', '9'):
return ' '.join([ph[:3], ph[3:6], ph[6:9], ph[9:]])
else:
return ' '.join([ph[:3], ph[3:5], ph[5:9], ph[9:]])
return ph
def make_wd_ranges(r):
wd = ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su']
res = wd[r[0]]
in_range = False
for i in range(1, len(r)+1):
if i < len(r) and r[i] == r[i-1] + 1:
in_range = True
else:
if in_range:
res += '-' + wd[r[i-1]]
in_range = False
if i < len(r):
res += ',' + wd[r[i]]
return res
def parse_hours(h):
if not h:
return None
WD = {x: i for i, x in enumerate([
'MONDAY', 'TUESDAY', 'WEDNESDAY', 'THURSDAY', 'FRIDAY', 'SATURDAY', 'SUNDAY'
])}
days = defaultdict(list)
for d in h.split(';'):
parts = re.findall(r'([A-Z]+)=([0-9:-]+)', d)
if len(set([p[0] for p in parts])) != 1:
raise Exception('Parts format fail: {}'.format(d))
days[','.join([p[1] for p in parts])].append(WD[parts[0][0]])
res = []
for time, wd in sorted(days.items(), key=lambda x: min(x[1])):
res.append(' '.join([make_wd_ranges(wd), time]))
if res[0] == 'Mo-Su 00:00-23:59':
return '24/7'
return '; '.join(res).replace('23:59', '24:00')
source = json.load(codecs.getreader('utf-8-sig')(fileobj))
data = []
for el in source['Locations']:
if not el['location']:
continue
coords = [float(x) for x in el['location'].split(',')]
tags = {
'amenity': 'fuel',
'brand': el['name'],
'addr:postcode': el['address_zip'] or None,
'phone': format_phone('+'+str(el['phone'])),
'opening_hours': parse_hours(el['daily_hours']),
}
if (el['address_street'] and el['address_number'] and
not re.search(r'^([ABCDM]\d+|Junction)', el['address_street']) and
'Ln' not in el['address_street'] and 'A' not in el['address_number']):
tags['addr:street'] = el['address_street']
tags['addr:housenumber'] = el['address_number']
data.append(SourcePoint(el['place_id'], coords[0], coords[1], tags))
return data
@Zverik
Copy link

Zverik commented Nov 4, 2017

Thanks Harry, I've copied your updated index.html to the upstream, altering some strings.

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