Skip to content

Instantly share code, notes, and snippets.

@rustyb
Last active August 29, 2015 14:17
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 rustyb/f9cda0b23a74e94e5927 to your computer and use it in GitHub Desktop.
Save rustyb/f9cda0b23a74e94e5927 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>A simple map</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.6/mapbox.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.6/mapbox.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
</style>
</head>
<body>
<div id='map'></div>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.css' rel='stylesheet' />
<link href='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.Default.css' rel='stylesheet' />
<script src="//api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.0/turf.min.js"></script>
<script>
L.mapbox.accessToken = 'pk.eyJ1IjoicnVzdHkiLCJhIjoib0FjUkJybyJ9.V9QoXck_1Z18MhpwyIE2Og';
var map = L.mapbox.map('map', 'examples.map-i86nkdio')
//.setView([53.34943, -6.25963], 9);
//.setView([-29.226, 29.075], 9);
//var schoolsLayer = new L.MarkerClusterGroup();
var schoolsLayer = L.mapbox.featureLayer()
var hospitalsLayer = L.mapbox.featureLayer()
schoolsLayer.loadURL('markers_lesotho_schools_2007.geojson');
//schoolsLayer.addTo(map);
hospitalsLayer.loadURL('overpass.geojson');
hospitalsLayer.on('ready', function(layer){
this.eachLayer(function(marker) {
// The argument to L.mapbox.marker.icon is based on the
// simplestyle-spec: see that specification for a full
// description of options.
marker.setIcon(L.mapbox.marker.icon({
'marker-color': '#DC143C',
'marker-size': 'small',
'marker-symbol':'hospital'
}));
marker.bindPopup('<strong>' + marker.feature.properties.name + '</strong>', { closeButton: true });
});
});
hospitalsLayer.addTo(map);
// reset marker size to small
function reset() {
var hospitalFeatures = hospitalsLayer.getGeoJSON();
for (var i = 0; i < hospitalFeatures.features.length; i++) {
hospitalFeatures.features[i].properties['marker-size'] = 'small';
};
hospitalsLayer.setGeoJSON(hospitalFeatures);
};
schoolsLayer.on('ready', function(e){
var clusterGroup = new L.MarkerClusterGroup();
e.target.eachLayer(function(layer) {
clusterGroup.addLayer(layer);
});
map.addLayer(clusterGroup);
map.fitBounds(schoolsLayer.getBounds());
// Bind a popup to each feature in hospitalLayer and libraryLayer
schoolsLayer.eachLayer(function (layer) {
layer.bindPopup('<strong>' + layer.feature.properties.name + '</strong>', { closeButton: false });
});
// Open popups on hover
schoolsLayer.on('mouseover', function (e) {
e.layer.openPopup();
});
// Use turf to find the nearest school
schoolsLayer.on('click', function (e) {
// Reset any and all marker sizes to small
reset();
var hospitalFeatures = hospitalsLayer.getGeoJSON();
var schoolFeatures = schoolsLayer.getGeoJSON();
// Using Turf, find the nearest hospital to library clicked
//var nearestSchool = turf.nearest(e.layer.feature, schoolFeatures);
var nearestHospital = turf.nearest(e.layer.feature, hospitalFeatures);
// Change the nearest hospital to a large marker
//nearestSchool.properties['marker-size'] = 'large';
nearestHospital.properties['marker-size'] = 'large';
nearestHospital.properties['marker-symbol'] = 'hospital';
nearestHospital.properties['marker-color'] = '#DC143C';
// Add the new GeoJSON to hospitalLayer
//schoolsLayer.setGeoJSON(schoolFeatures);
hospitalsLayer.setGeoJSON(hospitalFeatures);
// Bind popups to new hospitalLayer and open popup
// for nearest hospital
hospitalsLayer.eachLayer(function (layer) {
layer.bindPopup('<strong>' + layer.feature.properties.name + '</strong>', { closeButton: false });
if (layer.feature.properties['marker-size'] === 'large') {
layer.openPopup();
};
});
});
});
map.on('click', function (e) {
reset();
});
/*schoolsLayer.on('ready', function(e) {
// The clusterGroup gets each marker in the group added to it
// once loaded, and then is added to the map
var clusterGroup = new L.MarkerClusterGroup();
e.target.eachLayer(function(layer) {
var content = '<h2>' + layer.feature.properties.reg_ref + '<\/h2>' +
'<p>' + layer.feature.properties.la + '<br \/>' +
layer.feature.properties.decision + '<br \/><\/p>';
layer.bindPopup(content);
clusterGroup.addLayer(layer);
});
map.addLayer(clusterGroup);
map.fitBounds(clusterGroup.getBounds());
clusterGroup.on('mouseover', function (e) {
e.layer.openPopup();
});*/
/*
clusterGroup.on('click', function (e) {
var schoolFeatures = clusterGroup.getGeoJSON();
var nearestSchool = turf.nearest(e.layer.feature, schoolFeatures);
nearestSchool.properties['marker-size'] = 'large';
// Add the new GeoJSON to hospitalLayer
clusterGroupLayer.setGeoJSON(schoolFeatures);
});
});*/
// Note that calling `.eachLayer` here depends on setting GeoJSON _directly_
// above. If you're loading GeoJSON asynchronously, like from CSV or from a file,
// you will need to do this within a `featureLayer.on('ready'` event.
/*featureLayer.on('ready', function(e) {
var clusterGroup = new L.MarkerClusterGroup();
e.target.eachLayer(function(layer) {
clusterGroup.addLayer(layer);
});
/*featureLayer.eachLayer(function(layer) {
// here you call `bindPopup` with a string of HTML you create - the feature
// properties declared above are available under `layer.feature.properties`
var content = '<h2>' + layer.feature.properties.reg_ref + '<\/h2>' +
'<p>' + layer.feature.properties.la + '<br \/>' +
layer.feature.properties.decision + '<br \/><\/p>';
//console.log(typeof(layer.feature.properties.decision))
layer.bindPopup(content);
});*/
//});
//////////////////////
//var baseTiles = L.tileLayer('http://a.tiles.mapbox.com/v3/landplanner.map-4y9ngu48/{z}/{x}/{y}.png', {
// maxZoom: 18
// });
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"geometry":{"type":"Point","coordinates":[-6.149951,53.270423]},"type":"Feature","properties":{"stroke-opacity":1,"la":null,"fill-opacity":0.5,"stroke":"#ed3a26","reg_ref":"D14A/0152/C1","stroke-width":2,"fill":"#555555"}},{"geometry":{"type":"Point","coordinates":[-6.204743,53.27145]},"type":"Feature","properties":{"stroke-opacity":1,"la":null,"fill-opacity":0.5,"stroke":"#ed3a26","reg_ref":"D04A/0994/E1","stroke-width":2,"fill":"#555555"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.26465,53.334027],[-6.264625,53.333973],[-6.264769,53.333944],[-6.264747,53.3339],[-6.264893,53.333873],[-6.264925,53.333946],[-6.265059,53.333929],[-6.265066,53.333935],[-6.265069,53.333938],[-6.264795,53.333981],[-6.264798,53.333986],[-6.264711,53.334007],[-6.264716,53.334015],[-6.26465,53.334027]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"06/12/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"18/09/2013","stroke":"#ed3a26","no_of_units":"2","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use at 1st & 2nd floor from office to residential","reg_date":"22/11/2013","3_bed":"","5_plus":"","reg_ref":"3263/13","fg_date":"24/01/2014","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.059582,53.103339],[-6.059915,53.102437],[-6.058477,53.10247],[-6.057404,53.102753],[-6.056932,53.10314],[-6.057694,53.103887],[-6.058917,53.103887],[-6.059539,53.103346],[-6.059582,53.103339]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/03/2010","fill-opacity":0.5,"2_bed":"5","4_bed":"7","app_date":"03/02/2010","stroke":"#ed3a26","no_of_units":"47","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"UNCONDITIONAL","short_desc":"residential development - 47 units...","reg_date":"","3_bed":"35","5_plus":"","reg_ref":"102084","fg_date":"","other_total":"47"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.152617,52.797494],[-6.153165,52.7974],[-6.15324,52.797455],[-6.15266,52.797592],[-6.152617,52.797494]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/07/2013","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"04/06/2013","stroke":"#ed3a26","no_of_units":"3","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"change of use from office and storage for shop to 3 no. residential living units on portion of upper...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"13630054","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.227134,53.295645],[-6.226619,53.295568],[-6.225032,53.296453],[-6.225579,53.296683],[-6.226373,53.296818],[-6.226963,53.296651],[-6.22766,53.296145],[-6.227134,53.295645]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"03/08/2012","fill-opacity":0.5,"2_bed":"65","4_bed":"24","app_date":"16/03/2012","stroke":"#ed3a26","no_of_units":"100","1_bed":"6","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Planning permission for development which will consist of a residential developm","reg_date":"11/07/2012","3_bed":"4","5_plus":"1","reg_ref":"D12A/0098","fg_date":"","other_total":"100"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.284072,53.407811],[-6.282813,53.407731],[-6.28277,53.407676],[-6.282881,53.407468],[-6.283296,53.406994],[-6.283497,53.407058],[-6.285493,53.407289],[-6.285287,53.407889],[-6.284161,53.407817],[-6.284072,53.407811]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"89","4_bed":"","app_date":"20/04/2012","stroke":"#ed3a26","no_of_units":"136","1_bed":"42","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construct a residential development of 136 no. units consisting of 42 no. 1 bed apartments, 89 no. 2 bed apartments and 5 no. 3 bed apartments within 2 no. 4 storey blocks and 1 no. 3 storey block and","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F06A/1348/E1","fg_date":"","other_total":"136"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.23704,53.33747],[-6.237121,53.337496],[-6.237045,53.337608],[-6.236965,53.337581],[-6.23704,53.33747]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"18/09/2007","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"08/08/2007","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of a new two storey residential mews with 2 bedrooms.","reg_date":"08/08/2007","3_bed":"","5_plus":"","reg_ref":"4697/07","fg_date":"31/10/2007","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.270657,53.306339],[-6.27065,53.306343],[-6.270644,53.306343],[-6.270634,53.306343],[-6.270627,53.306343],[-6.270621,53.306342],[-6.27061,53.306338],[-6.270592,53.306328],[-6.270565,53.306309],[-6.270534,53.306286],[-6.27051,53.306272],[-6.270499,53.306266],[-6.270488,53.30626],[-6.27047,53.306255],[-6.270454,53.306253],[-6.270437,53.30625],[-6.270416,53.306248],[-6.270394,53.306248],[-6.27038,53.306248],[-6.270338,53.30621],[-6.270166,53.306287],[-6.270032,53.30619],[-6.270301,53.306067],[-6.270651,53.306318],[-6.270657,53.306339]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"19/06/2007","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"27/04/2007","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolition of a one storey residential unit & construct 3 storey dwelling","reg_date":"27/04/2007","3_bed":"","5_plus":"","reg_ref":"2885/07","fg_date":"NULL","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.276031,53.332091],[-6.276002,53.33205],[-6.275991,53.332035],[-6.275831,53.33179],[-6.275849,53.331755],[-6.275762,53.33175],[-6.275774,53.331628],[-6.275978,53.331638],[-6.275983,53.331858],[-6.27612,53.332068],[-6.276031,53.332091]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"07/11/2008","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"15/09/2008","stroke":"#ed3a26","no_of_units":"2","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE-Refurbishment of existing structure into 2 residential units","reg_date":"15/09/2008","3_bed":"1","5_plus":"","reg_ref":"4429/08","fg_date":"05/01/2009","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.268369,53.307738],[-6.270086,53.307499],[-6.271073,53.30876],[-6.270916,53.308822],[-6.270721,53.308855],[-6.270702,53.308831],[-6.270228,53.308957],[-6.27024,53.308977],[-6.27022,53.308989],[-6.270159,53.308992],[-6.270099,53.308991],[-6.270066,53.308986],[-6.269573,53.309079],[-6.269539,53.309087],[-6.269513,53.309087],[-6.269499,53.309082],[-6.269501,53.309054],[-6.268499,53.309148],[-6.26848,53.308959],[-6.268369,53.307738]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"03/09/2009","fill-opacity":0.5,"2_bed":"178","4_bed":"","app_date":"29/01/2009","stroke":"#ed3a26","no_of_units":"263","1_bed":"31","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"263 no. residential apartments in 6 no. blocks (A to F)","reg_date":"07/08/2009","3_bed":"54","5_plus":"12","reg_ref":"2186/09","fg_date":"12/11/2010","other_total":"275"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.243611,53.364503],[-6.243611,53.364504],[-6.24349,53.364665],[-6.243063,53.364552],[-6.243166,53.36439],[-6.243611,53.364503]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"20/10/2009","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"28/01/2009","stroke":"#ed3a26","no_of_units":"","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"New 4 storey over basement residential development with set back penthouse","reg_date":"23/09/2009","3_bed":"1","5_plus":"","reg_ref":"2177/09","fg_date":"01/12/2009","other_total":"7"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.237806,53.375173],[-6.238453,53.375277],[-6.238169,53.375809],[-6.238377,53.375844],[-6.23807,53.376385],[-6.237983,53.376518],[-6.237886,53.376682],[-6.237716,53.376993],[-6.237497,53.37741],[-6.236857,53.377316],[-6.236402,53.377282],[-6.236216,53.377275],[-6.236831,53.37596],[-6.237225,53.376015],[-6.23727,53.376011],[-6.237309,53.37598],[-6.237529,53.375554],[-6.237573,53.375563],[-6.237736,53.37523],[-6.237774,53.375213],[-6.237791,53.375177],[-6.237806,53.375173]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"07/02/2014","fill-opacity":0.5,"2_bed":"","4_bed":"44","app_date":"06/12/2013","stroke":"#ed3a26","no_of_units":"69","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential development of 69 no. 2 to 3 storey units","reg_date":"06/12/2013","3_bed":"25","5_plus":"","reg_ref":"3657/13","fg_date":"21/03/2014","other_total":"69"}},{"geometry":{"type":"Point","coordinates":[-6.655741,53.635936]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"16/04/2013","fill-opacity":0.5,"2_bed":"84","4_bed":"92","app_date":"28/02/2013","stroke":"#ed3a26","no_of_units":"354","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"UNCONDITIONAL","short_desc":"OF PLANNING PERMISSION REF. NO. NA/800617 - residential developments ...","reg_date":"","3_bed":"178","5_plus":"","reg_ref":"NT130006","fg_date":"","other_total":"354"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.039444,52.980276],[-6.039498,52.98015],[-6.039321,52.980115],[-6.039149,52.980263],[-6.039444,52.980276]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"06/07/2011","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"30/05/2011","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"Refurbishment and conversion of existing residential unit into 2 no. 2-bedroom apartments (67.48sqm ...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"11623438","fg_date":"","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.242299,53.449334],[-6.242185,53.449533],[-6.242121,53.449646],[-6.242113,53.449644],[-6.242057,53.449632],[-6.241589,53.449528],[-6.241475,53.449505],[-6.241366,53.449482],[-6.241294,53.449467],[-6.241265,53.44946],[-6.241403,53.449257],[-6.241451,53.44919],[-6.241489,53.449198],[-6.242299,53.449334]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"14","4_bed":"","app_date":"20/11/2007","stroke":"#ed3a26","no_of_units":"12","1_bed":"10","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Changes to part of a previously permitted residential scheme Reg. Ref. F05A/0265. The proposed development consists of changes to permitted apartment Block P from 12 no. 2 bed apartments in a 2 store","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F07A/0565","fg_date":"","other_total":"24"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.195008,53.608174],[-6.194787,53.608155],[-6.194563,53.608134],[-6.193961,53.608079],[-6.193824,53.608067],[-6.193769,53.608062],[-6.19348,53.608036],[-6.193368,53.608026],[-6.193362,53.608025],[-6.193376,53.607968],[-6.193451,53.607669],[-6.193461,53.607629],[-6.19351,53.607445],[-6.193543,53.60732],[-6.19356,53.607257],[-6.193698,53.606742],[-6.193805,53.606349],[-6.194199,53.606221],[-6.195026,53.605946],[-6.195011,53.60593],[-6.195285,53.605842],[-6.195303,53.605855],[-6.195583,53.605762],[-6.195501,53.605851],[-6.195523,53.60599],[-6.195622,53.606085],[-6.195737,53.606214],[-6.195583,53.606328],[-6.195415,53.607227],[-6.19542,53.607332],[-6.195499,53.607432],[-6.195209,53.607489],[-6.19516,53.607538],[-6.19512,53.607598],[-6.195117,53.607664],[-6.195161,53.607737],[-6.195008,53.608174]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"69","4_bed":"","app_date":"20/05/2008","stroke":"#ed3a26","no_of_units":"107","1_bed":"14","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for development on a 2.54 hectares site at Clonard Hill. The development includes the construction of a mixed use residential (107 no. units: 14 no. 1 bed, 69 no 2 bed, 24 no. 3 bed apartm","reg_date":"","3_bed":"24","5_plus":"","reg_ref":"F08A/0181","fg_date":"","other_total":"107"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.074367,53.132534],[-6.073669,53.132547],[-6.072789,53.131929],[-6.073025,53.131466],[-6.072854,53.131131],[-6.073294,53.13079],[-6.074184,53.130925],[-6.074646,53.131408],[-6.074409,53.131948],[-6.074302,53.132238],[-6.074367,53.132534]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"28/07/2011","fill-opacity":0.5,"2_bed":"9","4_bed":"14","app_date":"30/04/2010","stroke":"#ed3a26","no_of_units":"43","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"residential development comprising 43 no dwellings as follows: (1) 20 no. 103.6 m2 3bed semi-deta...","reg_date":"","3_bed":"20","5_plus":"","reg_ref":"102418","fg_date":"","other_total":"43"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.369397,53.379517],[-6.369409,53.379509],[-6.369517,53.379578],[-6.36972,53.379707],[-6.369629,53.379763],[-6.369517,53.379833],[-6.369407,53.379901],[-6.369376,53.37992],[-6.369274,53.379862],[-6.369268,53.379859],[-6.369198,53.379819],[-6.36919,53.379813],[-6.369178,53.379806],[-6.36917,53.379808],[-6.369141,53.37982],[-6.368993,53.379886],[-6.368952,53.379901],[-6.368877,53.379931],[-6.368761,53.379974],[-6.368694,53.380002],[-6.368659,53.380017],[-6.368615,53.379997],[-6.368598,53.380002],[-6.368427,53.379901],[-6.368712,53.379768],[-6.36871,53.379766],[-6.36873,53.379757],[-6.368767,53.379739],[-6.368784,53.379731],[-6.369037,53.379613],[-6.369284,53.379497],[-6.369365,53.379538],[-6.369395,53.379518],[-6.369397,53.379517]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"22/06/2009","stroke":"#ed3a26","no_of_units":"14","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The proposed development comprises the construction of 14 residential units in 2 blocks. Block A comprises 6 two bedroom 2 storey houses. Block B comprises 6 two bedroom apartments and 2 one bedroom","reg_date":"","3_bed":"","5_plus":"","reg_ref":"FW09A/0020","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.106301,53.581512],[-6.106305,53.581536],[-6.106321,53.581619],[-6.106328,53.581646],[-6.106333,53.581666],[-6.10635,53.581714],[-6.106357,53.581743],[-6.106094,53.581704],[-6.106005,53.581683],[-6.105944,53.581659],[-6.105865,53.581613],[-6.105783,53.581543],[-6.105765,53.581521],[-6.105753,53.581499],[-6.105742,53.581461],[-6.106291,53.581442],[-6.106301,53.581512]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"9","4_bed":"","app_date":"17/07/2008","stroke":"#ed3a26","no_of_units":"11","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To construct a residential development on a site of 0.089 hectares consisting of 1 no. block ranging from 2 to 3 stories over basement with 11 no. apartments consisting of 1 no. 1 bed, 9 no. 2 bed, 1 ","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"F08A/0902","fg_date":"","other_total":"11"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.209154,53.453867],[-6.209166,53.453866],[-6.209179,53.453866],[-6.209191,53.453864],[-6.209203,53.453862],[-6.209215,53.45386],[-6.209226,53.453857],[-6.209236,53.453853],[-6.209246,53.453848],[-6.209256,53.453844],[-6.209265,53.453838],[-6.209273,53.453833],[-6.20928,53.453827],[-6.209286,53.45382],[-6.209291,53.453813],[-6.209295,53.453806],[-6.209299,53.453799],[-6.209301,53.453792],[-6.209302,53.453785],[-6.209231,53.4537],[-6.209212,53.4537],[-6.20908,53.453519],[-6.20887,53.453578],[-6.208876,53.453556],[-6.208826,53.453556],[-6.208796,53.453557],[-6.208604,53.453544],[-6.208491,53.453533],[-6.208392,53.453519],[-6.208368,53.453515],[-6.208295,53.453496],[-6.208224,53.453464],[-6.208205,53.453455],[-6.208148,53.45343],[-6.208087,53.453402],[-6.208514,53.453011],[-6.208616,53.452983],[-6.208647,53.453002],[-6.208649,53.453004],[-6.208803,53.4531],[-6.208892,53.453195],[-6.209043,53.453411],[-6.209108,53.453507],[-6.209163,53.453609],[-6.2092,53.453636],[-6.20926,53.453712],[-6.20928,53.453738],[-6.209324,53.453781],[-6.209344,53.453799],[-6.20935,53.453804],[-6.209355,53.453815],[-6.209362,53.453817],[-6.209393,53.453873],[-6.209297,53.453877],[-6.209154,53.453867]]],[[[-6.209154,53.453867],[-6.209145,53.453866],[-6.209137,53.453866],[-6.209128,53.453865],[-6.209154,53.453867]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"9","4_bed":"","app_date":"12/09/2008","stroke":"#ed3a26","no_of_units":"16","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Removal of existing dwelling and construction of 16 no. residential units consisting of 7 no. 3 bed duplex apartments over 9 no. 2 bed own-door apartments, underground carpark with landscaped area ove","reg_date":"","3_bed":"7","5_plus":"","reg_ref":"F08A/0085","fg_date":"","other_total":"16"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.431144,53.390015],[-6.431324,53.389674],[-6.431336,53.389654],[-6.431385,53.389572],[-6.431395,53.389551],[-6.431434,53.389472],[-6.431458,53.389416],[-6.431949,53.389305],[-6.432149,53.389262],[-6.432316,53.389219],[-6.432509,53.389154],[-6.432728,53.389035],[-6.434309,53.389593],[-6.432354,53.390376],[-6.432007,53.390593],[-6.431966,53.390607],[-6.431831,53.390626],[-6.431692,53.390623],[-6.431596,53.3906],[-6.431573,53.390589],[-6.431537,53.390571],[-6.43151,53.390559],[-6.431479,53.390529],[-6.431444,53.390495],[-6.431359,53.390417],[-6.431289,53.390353],[-6.431256,53.390329],[-6.431233,53.390298],[-6.431144,53.390015]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"49","4_bed":"","app_date":"17/02/2009","stroke":"#ed3a26","no_of_units":"103","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for a residential development having a total of 103 dwellings consisting of (a) 26 no. 2 storey 3 bed duplex units with 13 no. 2 bed apartments on second level, (b) 2 no. 3 and 4 bed duplex","reg_date":"","3_bed":"53","5_plus":"","reg_ref":"F08A/1233","fg_date":"","other_total":"102"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.369397,53.379517],[-6.369409,53.379509],[-6.369517,53.379578],[-6.36972,53.379707],[-6.369629,53.379763],[-6.369517,53.379833],[-6.369407,53.379901],[-6.369376,53.37992],[-6.369274,53.379862],[-6.369268,53.379859],[-6.369198,53.379819],[-6.36919,53.379813],[-6.369178,53.379806],[-6.36917,53.379808],[-6.369141,53.37982],[-6.368993,53.379886],[-6.368952,53.379901],[-6.368877,53.379931],[-6.368761,53.379974],[-6.368694,53.380002],[-6.368659,53.380017],[-6.368615,53.379997],[-6.368598,53.380002],[-6.368427,53.379901],[-6.368712,53.379768],[-6.36871,53.379766],[-6.36873,53.379757],[-6.368767,53.379739],[-6.368784,53.379731],[-6.369037,53.379613],[-6.369284,53.379497],[-6.369365,53.379538],[-6.369395,53.379518],[-6.369397,53.379517]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"22/06/2009","stroke":"#ed3a26","no_of_units":"14","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The proposed development comprises the construction of 14 residential units in 2 blocks. Block A comprises 6 two bedroom 2 storey houses. Block B comprises 6 two bedroom apartments and 2 one bedroom","reg_date":"","3_bed":"","5_plus":"","reg_ref":"FW09A/0020","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.12344,53.016803],[-6.123194,53.016758],[-6.122915,53.01772],[-6.121809,53.017694],[-6.121262,53.019224],[-6.123215,53.019379],[-6.12535,53.019366],[-6.124867,53.017707],[-6.123869,53.017681],[-6.123161,53.01772],[-6.12344,53.016803]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"07/03/2013","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/01/2013","stroke":"#ed3a26","no_of_units":"41","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"residential & community develoment comprising of 41 dwellings; connection to public sewer; provision...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"138024","fg_date":"","other_total":"41"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.083298,53.133329],[-6.082601,53.133548],[-6.082102,53.132959],[-6.082574,53.132901],[-6.082944,53.132808],[-6.083298,53.133329]]]]},"type":"Feature","properties":{"status":"FURTHER INFORMATION","":"","deision_date":"\u00a0","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"07/08/2014","stroke":"#ed3a26","no_of_units":"8","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"\u00a0","short_desc":"a residential development comprising of the following: 1. Demolish existing single storey dwelling ...","reg_date":"","3_bed":"4","5_plus":"3","reg_ref":"141702","fg_date":"","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.117055,53.58199],[-6.116979,53.582046],[-6.116931,53.582059],[-6.116874,53.582047],[-6.116842,53.582031],[-6.116753,53.581987],[-6.116714,53.58197],[-6.116676,53.58195],[-6.116582,53.581901],[-6.11656,53.581888],[-6.116589,53.581869],[-6.116613,53.581854],[-6.116732,53.581783],[-6.116764,53.581803],[-6.116802,53.58183],[-6.116838,53.581851],[-6.116981,53.581948],[-6.117007,53.581962],[-6.117055,53.58199]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"20/09/2010","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development of 4 no. 2 storey 2 bedroom dwelling units consisting of demolition of single storey extension to side of Hill House, demolition of boundary wall to Balbriggan Street, removal ","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/0878/E1","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.381829,53.373586],[-6.381868,53.373591],[-6.381866,53.373595],[-6.381816,53.373712],[-6.381812,53.373719],[-6.381761,53.37384],[-6.381745,53.373875],[-6.381447,53.37384],[-6.381374,53.373855],[-6.381371,53.373867],[-6.381289,53.373857],[-6.380966,53.373834],[-6.380872,53.373863],[-6.380783,53.374137],[-6.38078,53.374147],[-6.380735,53.374142],[-6.380735,53.374143],[-6.380696,53.374137],[-6.380607,53.374127],[-6.380614,53.374125],[-6.380625,53.374122],[-6.380643,53.374114],[-6.380656,53.374109],[-6.380658,53.374108],[-6.380683,53.374088],[-6.380689,53.374064],[-6.380776,53.373798],[-6.38076,53.373797],[-6.380763,53.373787],[-6.380828,53.373478],[-6.380966,53.373492],[-6.381035,53.3735],[-6.381126,53.37351],[-6.381289,53.373528],[-6.381482,53.373548],[-6.381759,53.373579],[-6.381829,53.373586]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"22/09/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for demolition of existing single storey outbuildings / stables and the provision of 3 no. two storey detached dwelling houses in the side / southern garden area of existing residential dwe","reg_date":"","3_bed":"","5_plus":"3","reg_ref":"FW09A/0148","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.152261,53.418303],[-6.152257,53.418303],[-6.152055,53.418295],[-6.152042,53.418295],[-6.152005,53.418255],[-6.151955,53.418254],[-6.151917,53.41829],[-6.151684,53.418275],[-6.151682,53.418253],[-6.151662,53.418239],[-6.151638,53.418232],[-6.151562,53.418041],[-6.151533,53.417854],[-6.151489,53.417607],[-6.151431,53.417288],[-6.151402,53.417131],[-6.15143,53.417136],[-6.151509,53.417137],[-6.151566,53.417137],[-6.151664,53.417137],[-6.151753,53.41714],[-6.15213,53.417152],[-6.152256,53.417159],[-6.152294,53.417162],[-6.152558,53.417178],[-6.152728,53.417191],[-6.152653,53.417541],[-6.152637,53.417675],[-6.152636,53.417684],[-6.152599,53.417908],[-6.15255,53.418182],[-6.152538,53.418314],[-6.152509,53.418276],[-6.152443,53.41827],[-6.152384,53.418308],[-6.152261,53.418303]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"43","4_bed":"11","app_date":"03/03/2010","stroke":"#ed3a26","no_of_units":"62","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of 62 no. dwellings comprised of 49 no. 1, 2 & 3 bed apartments in 4 no. 2-5 storey blocks including penthouse setbacks, and 13 no. 3 and 4 bed 2 & 3 storey townho","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"F09A/0381","fg_date":"","other_total":"62"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.141029,53.449721],[-6.141026,53.449725],[-6.140916,53.44984],[-6.140584,53.449699],[-6.140588,53.449672],[-6.140545,53.449654],[-6.140503,53.449665],[-6.140615,53.449571],[-6.14068,53.449515],[-6.140723,53.449483],[-6.140838,53.449392],[-6.141039,53.449222],[-6.141266,53.449295],[-6.141399,53.449334],[-6.141029,53.449721]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"25/02/2010","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To demolish the existing bungalow on the site and to construct a four storey over basement - which includes penthouse level - residential block with six x three bedroom apartments and two x two bedroo","reg_date":"","3_bed":"6","5_plus":"","reg_ref":"F09A/0361","fg_date":"","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.418123,53.388375],[-6.418131,53.388376],[-6.418111,53.388415],[-6.415937,53.388054],[-6.415699,53.387991],[-6.415759,53.387861],[-6.415972,53.387244],[-6.416298,53.386341],[-6.416489,53.385916],[-6.417069,53.386019],[-6.418519,53.3863],[-6.419116,53.386416],[-6.419104,53.386464],[-6.419096,53.386491],[-6.41816,53.388319],[-6.418123,53.388375]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"22/09/2010","stroke":"#ed3a26","no_of_units":"185","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Development of 185 no. residential units consisting of 103 no 2/3/4 bedroom terraced, semi-detached and detached houses, 19 no. 3 bedroom duplex units and 63 no. 1/2/3 bedroom apartments all in a 2, 3","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/1153/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.691307,53.299248],[-6.689622,53.301005],[-6.69224,53.302512],[-6.693023,53.302223],[-6.692176,53.301704],[-6.692637,53.300768],[-6.692337,53.299364],[-6.691307,53.299248]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"13/01/2009","fill-opacity":0.5,"2_bed":"20","4_bed":"23","app_date":"21/09/2007","stroke":"#ed3a26","no_of_units":"87","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"construction of 87no. residental units on lands measuring 4.09ha together with all associated site development works. The residential units will comprise of 22no. 3 bedroom 2 storey semi-detached hous","reg_date":"","3_bed":"44","5_plus":"","reg_ref":"072258","fg_date":"n/a","other_total":"87"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.704707,53.642857],[-6.705801,53.642501],[-6.705372,53.641839],[-6.706553,53.641331],[-6.705523,53.639066],[-6.70284,53.640822],[-6.704707,53.642857]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/06/2010","fill-opacity":0.5,"2_bed":"87","4_bed":"","app_date":"23/12/2009","stroke":"#ed3a26","no_of_units":"128","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"residential development of 128 no. residential units on lands of 3.35Ha consisting of a) 44 no. 2 be...","reg_date":"","3_bed":"41","5_plus":"","reg_ref":"NT900118","fg_date":"","other_total":"128"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.27623,53.709428],[-6.276026,53.70899],[-6.277539,53.708685],[-6.278032,53.70918],[-6.27683,53.709307],[-6.27623,53.709428]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"19/01/2011","fill-opacity":0.5,"2_bed":"3","4_bed":"","app_date":"09/04/2010","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"the construction of 13 No. residential units, 4 No. retail units and 4 No. office units. The develo...","reg_date":"","3_bed":"10","5_plus":"","reg_ref":"sa100361","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.130822,53.268126],[-6.130468,53.268046],[-6.129942,53.268174],[-6.129765,53.267793],[-6.129481,53.267456],[-6.130897,53.267125],[-6.131578,53.266994],[-6.130822,53.268126]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"18/12/2008","fill-opacity":0.5,"2_bed":"","4_bed":"18","app_date":"05/09/2008","stroke":"#ed3a26","no_of_units":"29","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"The construction of a total of 29 residential units","reg_date":"25/11/2008","3_bed":"11","5_plus":"","reg_ref":"D08A/1028","fg_date":"","other_total":"29"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.768587,53.549003],[-6.769123,53.549153],[-6.769697,53.549213],[-6.769735,53.548981],[-6.76981,53.548691],[-6.769359,53.548659],[-6.769128,53.548579],[-6.768587,53.549003]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"13/07/2014","fill-opacity":0.5,"2_bed":"","4_bed":"6","app_date":"19/05/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"construction of 6 no. 2 storey 4 bedroom semi-detached residential units. The development will also ...","reg_date":"19/05/2014","3_bed":"","5_plus":"","reg_ref":"TA140427","fg_date":"09/07/2014","other_total":"6"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.241612,53.448508],[-6.241642,53.448435],[-6.241668,53.448373],[-6.241681,53.448341],[-6.241712,53.448268],[-6.241724,53.448238],[-6.241752,53.44817],[-6.241782,53.448099],[-6.241807,53.448039],[-6.241844,53.447963],[-6.241877,53.447899],[-6.241874,53.447896],[-6.241799,53.447842],[-6.241797,53.447841],[-6.241842,53.447782],[-6.241963,53.447614],[-6.242044,53.447532],[-6.242108,53.447421],[-6.242121,53.447389],[-6.242156,53.447306],[-6.242169,53.447276],[-6.242203,53.447123],[-6.242208,53.447069],[-6.242926,53.447229],[-6.242822,53.447474],[-6.242707,53.447747],[-6.242694,53.447779],[-6.242835,53.447797],[-6.242945,53.447811],[-6.24294,53.447881],[-6.242963,53.447907],[-6.242949,53.447953],[-6.242876,53.448115],[-6.24245,53.449059],[-6.242371,53.44905],[-6.241653,53.448939],[-6.241708,53.448867],[-6.241744,53.448828],[-6.241797,53.44879],[-6.241852,53.448757],[-6.241896,53.448735],[-6.241933,53.448724],[-6.241952,53.448712],[-6.241876,53.448679],[-6.241831,53.448661],[-6.241809,53.448655],[-6.241777,53.448644],[-6.241758,53.44864],[-6.24174,53.448632],[-6.241654,53.448598],[-6.241573,53.448573],[-6.241579,53.448575],[-6.241612,53.448508]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"23","4_bed":"","app_date":"10/11/2011","stroke":"#ed3a26","no_of_units":"37","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of minor revisions to layout and house types for 37 no. units already permitted at nos. 1-26 Cedar Grove and 39-44 Cedar Lawn, Reg. Ref. F05A/0265 and for 23 no. 2","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F06A/1436/E1","fg_date":"","other_total":"23"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.367135,53.698942],[-6.367822,53.699946],[-6.365783,53.700289],[-6.364356,53.700327],[-6.36338,53.698955],[-6.364002,53.698618],[-6.364431,53.699146],[-6.365837,53.69886],[-6.366062,53.699215],[-6.367135,53.698942]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"14/02/2013","fill-opacity":0.5,"2_bed":"63","4_bed":"29","app_date":"20/12/2012","stroke":"#ed3a26","no_of_units":"172","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"EXTENSION OF DURATION OF PLANNING PERMISSION REF. NO. SA/70537 - 172 unit residential development...","reg_date":"","3_bed":"80","5_plus":"","reg_ref":"SA121086","fg_date":"","other_total":"172"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.993522,53.221246],[-6.994375,53.221918],[-6.994632,53.221841],[-6.994262,53.221552],[-6.994171,53.221606],[-6.993715,53.221169],[-6.993522,53.221246]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"10/09/2008","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"14/09/2007","stroke":"#ed3a26","no_of_units":"8","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"the demolition of existing two storey shop,stores and outhouse and (b) erection of mixed use residential and commercial development consisting of 18 units in 3 No. individual blocks etc","reg_date":"","3_bed":"","5_plus":"","reg_ref":"072192","fg_date":"02/12/2008","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.539526,53.505061],[-6.540889,53.504882],[-6.541189,53.505705],[-6.543163,53.505475],[-6.54238,53.503319],[-6.541167,53.501615],[-6.540266,53.501698],[-6.539698,53.502783],[-6.539665,53.503204],[-6.539783,53.50367],[-6.539708,53.504021],[-6.53914,53.504499],[-6.539526,53.505061]]]]},"type":"Feature","properties":{"status":"DECISION MADE","":"","deision_date":"25/02/2015","fill-opacity":0.5,"2_bed":"","4_bed":"71","app_date":"12/06/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"a residential development on lands of circa 3.775 ha./9.33 ac. located to the south of Dunshaughlin...","reg_date":"12/06/2014","3_bed":"22","5_plus":"","reg_ref":"RA140500","fg_date":"24/02/2015","other_total":"93"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.195774,53.281355],[-6.195012,53.281714],[-6.194497,53.281291],[-6.193714,53.280919],[-6.192942,53.28149],[-6.191579,53.280823],[-6.192899,53.279354],[-6.194175,53.280098],[-6.194884,53.28065],[-6.195055,53.281015],[-6.195763,53.281253],[-6.195774,53.281355]]]]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"10/11/2009","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"21/09/2009","stroke":"#ed3a26","no_of_units":"525","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT EXTENSION OF DURATION OF PERM.","short_desc":"Mixed use development comprising residential, office, nursing home","reg_date":"21/09/2009","3_bed":"","5_plus":"","reg_ref":"D03A/0750/E","fg_date":"","other_total":"525"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.142018,53.584763],[-6.141968,53.584794],[-6.14187,53.584855],[-6.141755,53.584853],[-6.141685,53.58497],[-6.141543,53.585235],[-6.141363,53.585653],[-6.140817,53.585532],[-6.140811,53.585531],[-6.140686,53.5858],[-6.13906,53.585926],[-6.136923,53.585749],[-6.136833,53.585902],[-6.136729,53.586187],[-6.136686,53.586288],[-6.136612,53.586289],[-6.136577,53.586666],[-6.136497,53.586653],[-6.13659,53.586353],[-6.135848,53.58629],[-6.135243,53.586276],[-6.13549,53.584944],[-6.134788,53.584865],[-6.134577,53.584741],[-6.133771,53.584737],[-6.133249,53.584515],[-6.133255,53.58437],[-6.133128,53.584316],[-6.133187,53.584274],[-6.133357,53.584345],[-6.13335,53.584499],[-6.13383,53.584704],[-6.134637,53.584682],[-6.134875,53.58484],[-6.13562,53.584929],[-6.135427,53.585714],[-6.136029,53.585775],[-6.136187,53.585786],[-6.136408,53.585669],[-6.136577,53.585432],[-6.136637,53.585356],[-6.136885,53.5853],[-6.136974,53.585224],[-6.136921,53.585129],[-6.136983,53.585036],[-6.137311,53.584767],[-6.137586,53.584411],[-6.137696,53.584208],[-6.137798,53.584175],[-6.137829,53.584124],[-6.138349,53.583413],[-6.138421,53.583431],[-6.137899,53.584159],[-6.138442,53.584262],[-6.138889,53.584243],[-6.139166,53.584153],[-6.13959,53.584006],[-6.139827,53.583855],[-6.140735,53.584152],[-6.141511,53.584507],[-6.141905,53.584718],[-6.142018,53.584763]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"26","app_date":"10/08/2012","stroke":"#ed3a26","no_of_units":"26","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Change of house type (house type D only) and associated number of dwellings (26 no. house type D) contained within Sectors Two and Three of the residential development \"Barnageeragh Cove\" granted plan","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F12A/0245","fg_date":"","other_total":"26"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.175491,53.438336],[-6.175483,53.438336],[-6.175426,53.438275],[-6.175394,53.438224],[-6.175361,53.438174],[-6.175352,53.438161],[-6.175333,53.438133],[-6.17532,53.438114],[-6.175293,53.438076],[-6.175251,53.438006],[-6.175159,53.437851],[-6.175135,53.437822],[-6.175117,53.437797],[-6.175094,53.437768],[-6.175057,53.437728],[-6.175043,53.437713],[-6.174995,53.437674],[-6.174954,53.43765],[-6.174914,53.437625],[-6.17487,53.437596],[-6.174841,53.437577],[-6.174815,53.437554],[-6.174794,53.437539],[-6.17478,53.437526],[-6.174774,53.437511],[-6.174776,53.437497],[-6.174781,53.437469],[-6.174788,53.437458],[-6.174792,53.437449],[-6.174799,53.437438],[-6.174808,53.43743],[-6.174819,53.437419],[-6.174832,53.437407],[-6.174842,53.437397],[-6.174854,53.437399],[-6.174862,53.437398],[-6.174869,53.437393],[-6.174911,53.437409],[-6.174938,53.4374],[-6.175019,53.437372],[-6.175075,53.437357],[-6.175114,53.43735],[-6.175146,53.437343],[-6.175181,53.437336],[-6.175265,53.437324],[-6.175243,53.437316],[-6.175272,53.437312],[-6.175699,53.437242],[-6.175726,53.437238],[-6.175756,53.437233],[-6.175773,53.437231],[-6.175939,53.437202],[-6.17603,53.437189],[-6.176266,53.437162],[-6.176535,53.437131],[-6.176696,53.437087],[-6.176742,53.437084],[-6.176835,53.437079],[-6.176852,53.437608],[-6.176855,53.437717],[-6.176856,53.437919],[-6.176855,53.438112],[-6.17685,53.438358],[-6.176846,53.438373],[-6.176474,53.438368],[-6.176468,53.43838],[-6.17617,53.438365],[-6.175578,53.438339],[-6.175491,53.438336]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"06/09/2012","stroke":"#ed3a26","no_of_units":"16","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"(1) The construction of sixteen detached residential units, comprising 1 No. type A1, 2.5 storey detached house - 334 sq. m, 1 No. type A2, 2.5 storey detached house - 343 sq.m., 2 No. type A3, 2.5 st","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F07A/0325/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.430155,53.382498],[-6.430148,53.38249],[-6.430224,53.382468],[-6.430262,53.38246],[-6.430553,53.382389],[-6.430555,53.382392],[-6.43056,53.382399],[-6.430594,53.382443],[-6.430608,53.382462],[-6.430622,53.382481],[-6.430667,53.382543],[-6.430716,53.382529],[-6.430736,53.382523],[-6.430754,53.382518],[-6.430827,53.382617],[-6.430829,53.382621],[-6.430836,53.38263],[-6.430836,53.38263],[-6.430835,53.38263],[-6.430762,53.382651],[-6.430748,53.382655],[-6.430775,53.382692],[-6.430443,53.382779],[-6.430439,53.382775],[-6.430424,53.382762],[-6.430412,53.382752],[-6.430388,53.382722],[-6.430379,53.382711],[-6.43036,53.382714],[-6.430331,53.382721],[-6.430327,53.382715],[-6.430251,53.382613],[-6.43025,53.382614],[-6.430191,53.38254],[-6.430155,53.382498]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"20/11/2012","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Planning permission is sought by Ethna Dorman for the conversion of a former coach house & stable building to residential accommodation at The Courtyard, Beech Park, a Protected Structure, Ref. Nr. 7","reg_date":"","3_bed":"","5_plus":"","reg_ref":"FW12A/0073","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.841999,52.914334],[-6.841274,52.914437],[-6.84121,52.914825],[-6.841505,52.914845],[-6.841457,52.915391],[-6.842996,52.915323],[-6.842487,52.914838],[-6.841999,52.914334]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"06/05/2008","fill-opacity":0.5,"2_bed":"14","4_bed":"","app_date":"13/09/2007","stroke":"#ed3a26","no_of_units":"36","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"36 residential units subdivided as follows : 8 no. two storey semi detached 3 bedroom houses, 4 no. blocks of three storey apartments ( total no.28) - Block A, B & C each containing 4 no. 2 bedroom ap","reg_date":"","3_bed":"22","5_plus":"","reg_ref":"072179","fg_date":"13/08/2008","other_total":"36"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.588256,53.376919],[-6.587698,53.376225],[-6.587532,53.376685],[-6.587554,53.377172],[-6.588256,53.376919]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"29/08/2008","fill-opacity":0.5,"2_bed":"8","4_bed":"","app_date":"24/08/2007","stroke":"#ed3a26","no_of_units":"22","1_bed":"9","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"demolition of existing dwelling and boundary walls, construction of proposed 2 and 3 storey residential development over basement carparking (30no.) to comprise of 22 units etc","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"072061","fg_date":"n/a","other_total":"22"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.487121,53.369209],[-6.486504,53.36904],[-6.486381,53.369443],[-6.486949,53.369651],[-6.487121,53.369209]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"19/09/2008","fill-opacity":0.5,"2_bed":"19","4_bed":"","app_date":"27/07/2007","stroke":"#ed3a26","no_of_units":"21","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"demolition of existing Creche (278sqm)and construction of mixed use development consisting of 1no. Creche and 21 residential units as follows: 19no. 2 bedroom apartments and 2no. 3 bedroom apartments ","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"071836","fg_date":"n/a","other_total":"21"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.314532,53.521424],[-6.314579,53.521282],[-6.31471,53.521299],[-6.314835,53.520943],[-6.315096,53.520982],[-6.314997,53.521228],[-6.31494,53.521215],[-6.314899,53.521318],[-6.314961,53.521328],[-6.314853,53.521546],[-6.314686,53.521506],[-6.314525,53.521444],[-6.314527,53.521438],[-6.314532,53.521424]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/10/2013","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Phase 2 of proposed residential development comprising of 5 additional two storey houses not exceeding 8.7 metres in height. Also revisions to phase 1 (reg. ref. F05A/0389) three new roof lights to f","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F08A/0333/E1","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.282409,53.672651],[-6.282163,53.672307],[-6.283997,53.671761],[-6.284384,53.672161],[-6.282409,53.672651]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"28/09/2011","fill-opacity":0.5,"2_bed":"6","4_bed":"10","app_date":"05/08/2011","stroke":"#ed3a26","no_of_units":"22","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"residential scheme on a site of 2.5 hectares, approximately, principally bounded by the Old Laytown ...","reg_date":"","3_bed":"6","5_plus":"","reg_ref":"SA110743","fg_date":"","other_total":"22"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.828357,53.415409],[-6.828153,53.414629],[-6.82752,53.414648],[-6.82744,53.414904],[-6.827429,53.415211],[-6.827488,53.415537],[-6.82745,53.41561],[-6.828357,53.415409]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"28/07/2014","fill-opacity":0.5,"2_bed":"","4_bed":"3","app_date":"03/06/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"a residential development comprising 9 no. dwellings (6 no. 3 bed semi-detached units, 2 no. 4 bed s...","reg_date":"03/06/2014","3_bed":"6","5_plus":"","reg_ref":"TA140469","fg_date":"24/07/2014","other_total":"9"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.591695,53.375825],[-6.591952,53.375735],[-6.590804,53.374436],[-6.588374,53.375204],[-6.58883,53.375652],[-6.587843,53.375943],[-6.587779,53.376113],[-6.590032,53.375431],[-6.590332,53.375719],[-6.590719,53.37561],[-6.590477,53.3753],[-6.591121,53.375114],[-6.591695,53.375825]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"26/05/2010","fill-opacity":0.5,"2_bed":"7","4_bed":"","app_date":"02/11/2009","stroke":"#ed3a26","no_of_units":"14","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"The erection of 14 no. 2/3 storey 2/3 bed residential dwelling at site no\u2019s 1 to 14 incl. All level access family units having private court areas of 30m. sq. / 40m.sq. each. Site development works an","reg_date":"","3_bed":"7","5_plus":"","reg_ref":"091230","fg_date":"01/07/2010","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.214507,53.280412],[-6.216191,53.279027],[-6.213841,53.278302],[-6.212457,53.279707],[-6.214507,53.280412]]]]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"26/07/2011","fill-opacity":0.5,"2_bed":"621","4_bed":"8","app_date":"03/06/2011","stroke":"#ed3a26","no_of_units":"847","1_bed":"142","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT EXTENSION OF DURATION OF PERM.","short_desc":"Mixed use development.","reg_date":"03/06/2011","3_bed":"76","5_plus":"","reg_ref":"D05A/1159/E","fg_date":"","other_total":"847"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.20044,53.607679],[-6.201121,53.607515],[-6.201134,53.607513],[-6.201177,53.607504],[-6.201248,53.607489],[-6.201378,53.607456],[-6.201401,53.60745],[-6.201439,53.607441],[-6.201484,53.60743],[-6.201505,53.607425],[-6.201535,53.607417],[-6.202075,53.607275],[-6.202076,53.607275],[-6.202243,53.607231],[-6.202298,53.607222],[-6.202357,53.607228],[-6.202383,53.607246],[-6.202389,53.607258],[-6.202398,53.60727],[-6.202408,53.607281],[-6.202419,53.607291],[-6.202849,53.607924],[-6.202949,53.608075],[-6.203018,53.608183],[-6.203063,53.608249],[-6.203089,53.608282],[-6.203091,53.608284],[-6.203092,53.608286],[-6.203135,53.608348],[-6.203174,53.608426],[-6.203398,53.608855],[-6.203207,53.608894],[-6.203138,53.608913],[-6.202958,53.608951],[-6.202767,53.60899],[-6.202731,53.608997],[-6.202569,53.609031],[-6.202374,53.60907],[-6.2022,53.609099],[-6.202047,53.609128],[-6.201881,53.609155],[-6.2017,53.609173],[-6.201526,53.609182],[-6.201401,53.609185],[-6.201342,53.609186],[-6.2013,53.609182],[-6.201259,53.609164],[-6.201202,53.609137],[-6.201143,53.609107],[-6.201105,53.609095],[-6.201098,53.609095],[-6.201002,53.608932],[-6.200852,53.608709],[-6.20069,53.608519],[-6.200591,53.60841],[-6.200615,53.608403],[-6.200723,53.608371],[-6.200853,53.608337],[-6.200874,53.608331],[-6.200837,53.608282],[-6.200606,53.60797],[-6.200535,53.607873],[-6.200477,53.607803],[-6.200477,53.607803],[-6.200459,53.607776],[-6.20046,53.607776],[-6.200461,53.607776],[-6.200408,53.607703],[-6.200407,53.607701],[-6.200398,53.607689],[-6.20044,53.607679]]]]},"type":"Feature","properties":{"status":"Application under appeal","":"","deision_date":"03/02/2015","fill-opacity":0.5,"2_bed":"","4_bed":"3","app_date":"15/09/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"GRANT PERMISSION","short_desc":" Revised proposals for the completion of the residential development. The development completed includes 40 duplex units, 11 houses ( 10 no semi detached and 1 no detached ) and foundations / bases for an additional 23 houses. The current application seeks permission for completion of the house type on the 23 bases (22 no semi detached and 1 no detached 3 bed houses) and a revised layout of the remainder of the site to provide 45 houses (30 no semi detached, 6 no detached and 9 no terraced houses comprising 42 no 3 bed and 3 no 4 bed houses ) The revised development provides a total of 119 units on the current application site(2.81 ha) which excludes the 0.17ha site to the southeast of the site. Access to the proposed development is from the Naul Road via the existing access road located along the western boundary of the site. Permission is sought for a new bin store / plant room to serve the existing deplex units, landscaping / boundary treatment, childrens play area within the existing open space area, relocation of existing ESB substation and all associated site and development works. SIGNIFICANT ADDITIONAL INFORMATION RECEIVED 7/1/15.","reg_date":"07/01/2015","3_bed":"65","5_plus":"","reg_ref":"F14A/0381","fg_date":"","other_total":"68"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.841393,53.332974],[-6.84076,53.331751],[-6.839815,53.331943],[-6.839343,53.330956],[-6.841285,53.330373],[-6.842154,53.332853],[-6.841393,53.332974]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/12/2008","fill-opacity":0.5,"2_bed":"3","4_bed":"11","app_date":"08/10/2007","stroke":"#ed3a26","no_of_units":"38","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"construction of a total 38no. residential units (35 dwellings and 3no. apartments), 3no. commercial/retail units and 5no. serviced sites with a breakdown consisting of the following: 13no. 3 bedroom t","reg_date":"","3_bed":"24","5_plus":"","reg_ref":"072349","fg_date":"n/a","other_total":"38"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.59169,53.375828],[-6.5911,53.375124],[-6.590488,53.375316],[-6.590756,53.375597],[-6.590295,53.375732],[-6.589984,53.375456],[-6.587731,53.37609],[-6.587849,53.375917],[-6.588825,53.375623],[-6.588331,53.375162],[-6.590799,53.374439],[-6.591947,53.375725],[-6.59169,53.375828]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"17/06/2009","fill-opacity":0.5,"2_bed":"34","4_bed":"","app_date":"03/03/2009","stroke":"#ed3a26","no_of_units":"68","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"the development will consist of the omission of the previously permitted plan ref.No. 06/424 and PL 09.226348 of 2 and 4 storey blocks a, B, D, and E of apartment/terraced 82 units located at the area","reg_date":"","3_bed":"34","5_plus":"","reg_ref":"09220","fg_date":"08/09/2009","other_total":"68"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.064866,53.105829],[-6.064802,53.105352],[-6.064432,53.105368],[-6.06448,53.105851],[-6.064866,53.105829]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"10/05/2012","fill-opacity":0.5,"2_bed":"5","4_bed":"","app_date":"08/08/2011","stroke":"#ed3a26","no_of_units":"7","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"demolition of existing dwelling and construction of a 2/3 storey commercial / residential mixed sche...","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"114553","fg_date":"","other_total":"7"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.37435,53.296991],[-6.374355,53.296966],[-6.374417,53.296934],[-6.374448,53.296918],[-6.374163,53.296722],[-6.373869,53.296519],[-6.374674,53.296088],[-6.37482,53.29601],[-6.374846,53.295999],[-6.374921,53.29605],[-6.375123,53.296186],[-6.375442,53.296404],[-6.375709,53.296586],[-6.375808,53.296657],[-6.375827,53.296674],[-6.375863,53.29671],[-6.375876,53.296727],[-6.37589,53.296754],[-6.375895,53.296776],[-6.375894,53.296807],[-6.375889,53.296837],[-6.375874,53.296876],[-6.375833,53.296927],[-6.375798,53.296951],[-6.375722,53.296992],[-6.375503,53.297107],[-6.375279,53.297228],[-6.375164,53.297289],[-6.375079,53.297333],[-6.375059,53.297343],[-6.37501,53.29737],[-6.374907,53.297425],[-6.374753,53.297509],[-6.374518,53.297635],[-6.374097,53.29786],[-6.374004,53.297909],[-6.373903,53.297964],[-6.373852,53.297991],[-6.373846,53.297987],[-6.373242,53.297584],[-6.373443,53.297476],[-6.373687,53.297345],[-6.373875,53.297244],[-6.374242,53.29705],[-6.374349,53.296994],[-6.37435,53.296991],[-6.37435,53.296991]]],[[[-6.376725,53.296897],[-6.377083,53.297481],[-6.376592,53.29759],[-6.376438,53.297623],[-6.376432,53.297613],[-6.376384,53.297539],[-6.376318,53.29743],[-6.376211,53.297258],[-6.376073,53.297041],[-6.376112,53.297033],[-6.376204,53.297013],[-6.37626,53.297001],[-6.376416,53.296966],[-6.376656,53.296912],[-6.376662,53.296911],[-6.376717,53.296898],[-6.376725,53.296896],[-6.376725,53.296897]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"57","4_bed":"34","app_date":"14/10/2008","stroke":"#ed3a26","no_of_units":"217","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"Mixed use development broken into 4 no. buildings totalling c. 31950.1sq.m. consisting of 217 no. apartment units, retail floor space totalling 3409.5sq.m., office floor space totalling 6939sq.m., a","reg_date":"","3_bed":"126","5_plus":"0","reg_ref":"SD08A/0709","fg_date":"","other_total":"217"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.303166,53.29898],[-6.302766,53.299241],[-6.302658,53.29923],[-6.302629,53.299227],[-6.302551,53.299222],[-6.302459,53.299216],[-6.302412,53.299214],[-6.302377,53.299214],[-6.302355,53.299214],[-6.302333,53.299221],[-6.302314,53.299229],[-6.302297,53.299241],[-6.302287,53.299251],[-6.302281,53.299261],[-6.302279,53.299271],[-6.30225,53.29927],[-6.302242,53.299269],[-6.302214,53.299263],[-6.302183,53.299257],[-6.302225,53.299215],[-6.302144,53.299146],[-6.302275,53.299109],[-6.302388,53.299077],[-6.30249,53.299046],[-6.302507,53.299041],[-6.302562,53.299023],[-6.30264,53.298998],[-6.302663,53.298991],[-6.302822,53.298941],[-6.302802,53.29892],[-6.302781,53.298899],[-6.302849,53.298876],[-6.302988,53.29883],[-6.303009,53.298822],[-6.303031,53.298844],[-6.303166,53.29898]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"0","4_bed":"0","app_date":"06/04/2009","stroke":"#ed3a26","no_of_units":"5","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"A residential development on a 0.1475 hectare site comprising demolition of existing habitable house and side garage (214 sq.m.), construction of 5 no. semi-detached and terraced 2-storey townhouses o","reg_date":"","3_bed":"5","5_plus":"0","reg_ref":"SD09A/0144","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.427909,53.344817],[-6.427906,53.344777],[-6.427907,53.344773],[-6.427907,53.344754],[-6.427907,53.344722],[-6.427908,53.34469],[-6.427911,53.344647],[-6.427916,53.344626],[-6.427928,53.344596],[-6.427942,53.344567],[-6.427957,53.344537],[-6.427966,53.344518],[-6.42798,53.344499],[-6.427996,53.344476],[-6.42805,53.344412],[-6.428087,53.344366],[-6.428127,53.344318],[-6.428151,53.344299],[-6.428177,53.344279],[-6.428216,53.344248],[-6.428246,53.34422],[-6.428313,53.344162],[-6.428349,53.34413],[-6.428501,53.343976],[-6.428605,53.343874],[-6.428681,53.343821],[-6.428936,53.343885],[-6.428943,53.343906],[-6.428914,53.344015],[-6.428894,53.344091],[-6.428875,53.344166],[-6.428856,53.344242],[-6.428839,53.344308],[-6.428817,53.344394],[-6.428799,53.344463],[-6.428804,53.344468],[-6.428801,53.344522],[-6.428803,53.344558],[-6.428824,53.344726],[-6.428713,53.344745],[-6.428607,53.344761],[-6.428443,53.344778],[-6.428416,53.344781],[-6.428388,53.344786],[-6.428329,53.344797],[-6.428257,53.344807],[-6.428177,53.344816],[-6.428099,53.34482],[-6.428018,53.344823],[-6.427947,53.344823],[-6.427909,53.344822],[-6.427909,53.344817]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"0","app_date":"17/12/2009","stroke":"#ed3a26","no_of_units":"18","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"Residential development consisting of 18 no. 3 bed, s storey semi-detached and terraced houses and all associates site development and infrastructural works, car parking, landscaping on site of c. 0.4","reg_date":"","3_bed":"18","5_plus":"0","reg_ref":"SD09A/0483","fg_date":"","other_total":"18"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.48575,53.279295],[-6.485744,53.279265],[-6.485765,53.279202],[-6.485674,53.279141],[-6.485551,53.279059],[-6.485455,53.278994],[-6.485353,53.278931],[-6.485218,53.278858],[-6.485105,53.278796],[-6.48501,53.278754],[-6.484438,53.278498],[-6.484217,53.278399],[-6.483769,53.278069],[-6.483439,53.27782],[-6.483468,53.277657],[-6.483444,53.277559],[-6.483368,53.277472],[-6.483101,53.277277],[-6.482317,53.276644],[-6.481975,53.276362],[-6.482008,53.276351],[-6.48199,53.276318],[-6.482121,53.276256],[-6.482328,53.276161],[-6.48249,53.276093],[-6.482592,53.276052],[-6.48265,53.276029],[-6.482816,53.276157],[-6.483038,53.276327],[-6.483181,53.276438],[-6.483405,53.276615],[-6.483557,53.276735],[-6.483721,53.276865],[-6.483825,53.276947],[-6.48363,53.277068],[-6.483417,53.277198],[-6.483458,53.277224],[-6.483491,53.2773],[-6.483537,53.277332],[-6.483586,53.277363],[-6.483698,53.277435],[-6.483852,53.277538],[-6.483961,53.27761],[-6.484113,53.277703],[-6.484405,53.277533],[-6.484846,53.277286],[-6.4853,53.277044],[-6.485636,53.276872],[-6.485878,53.276753],[-6.48598,53.276705],[-6.486084,53.276664],[-6.486262,53.276625],[-6.48646,53.276602],[-6.486711,53.276716],[-6.486868,53.276791],[-6.487074,53.276921],[-6.487174,53.276897],[-6.487231,53.276974],[-6.487293,53.27704],[-6.487357,53.277093],[-6.487441,53.27716],[-6.487465,53.277178],[-6.487514,53.277244],[-6.487605,53.277275],[-6.487726,53.277323],[-6.487823,53.277359],[-6.487877,53.277394],[-6.487928,53.277435],[-6.488025,53.277533],[-6.488075,53.277573],[-6.488124,53.277607],[-6.488162,53.277631],[-6.488216,53.277722],[-6.488247,53.277746],[-6.488296,53.277803],[-6.488372,53.277896],[-6.488465,53.277947],[-6.486697,53.278384],[-6.48712,53.278913],[-6.487114,53.278917],[-6.486832,53.278995],[-6.486176,53.279184],[-6.485913,53.279254],[-6.48575,53.279295]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"15/01/2010","fill-opacity":0.5,"2_bed":"0","4_bed":"0","app_date":"12/11/2009","stroke":"#ed3a26","no_of_units":"9","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT PERMISSION","short_desc":"Revisions to permitted residential development (Reg. Ref. SD07A/0309) comprising minor site layout amendments and revisions to 9 no. 3 bedroom townhouses on sites 43-51 inclusive.","reg_date":"","3_bed":"9","5_plus":"0","reg_ref":"SD09A/0441","fg_date":"02/03/2010","other_total":"9"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.657366,53.222065],[-6.657768,53.221792],[-6.657736,53.221465],[-6.657017,53.221831],[-6.657366,53.222065]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"25/08/2010","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"14/04/2010","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"Permission sought for two storey residential building comprising 4 no. 3 bedroom terraced town houses, new site entrance from St Corban's Place, access road, car parking, bicycle area, bin storage are","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"10500017","fg_date":"27/09/2010","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.709578,52.939797],[-6.709471,52.939668],[-6.709803,52.939571],[-6.709889,52.939706],[-6.709578,52.939797]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"23/05/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"07/04/2014","stroke":"#ed3a26","no_of_units":"1","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"change of use from office use to residential use, for part of first floor office granted under plann...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"141282","fg_date":"","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.352866,53.705967],[-6.352308,53.704455],[-6.352823,53.70443],[-6.352823,53.703744],[-6.353724,53.703604],[-6.353724,53.702931],[-6.354024,53.702525],[-6.352286,53.702448],[-6.352286,53.701826],[-6.354303,53.701648],[-6.354561,53.702436],[-6.355505,53.702309],[-6.355505,53.702499],[-6.356277,53.702512],[-6.355827,53.703846],[-6.357243,53.70396],[-6.355119,53.705624],[-6.352866,53.705967]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"04/04/2012","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"10/02/2012","stroke":"#ed3a26","no_of_units":"574","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"EXTENSION OF DURATION OF PLANNING PERMISSION SA60309 - new residential /commercial development of 50...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"SA120088","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.919863,53.163446],[-6.920292,53.16333],[-6.920056,53.162674],[-6.921215,53.162108],[-6.922095,53.162533],[-6.921773,53.162996],[-6.923726,53.163768],[-6.923554,53.164102],[-6.924648,53.164385],[-6.924841,53.164231],[-6.925914,53.164411],[-6.925528,53.165311],[-6.924434,53.165517],[-6.923018,53.165054],[-6.921837,53.165003],[-6.921279,53.165093],[-6.921151,53.164861],[-6.921923,53.16481],[-6.921773,53.16445],[-6.920915,53.164514],[-6.920614,53.164064],[-6.919863,53.163446]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"14/04/2008","fill-opacity":0.5,"2_bed":"132","4_bed":"","app_date":"22/06/2007","stroke":"#ed3a26","no_of_units":"212","1_bed":"28","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"residential development consisting of 212 no. dwellings of varying types as follows. 38no. 4 bedroom semi detached houses, 75no. 3 bedroom end of terrace houses, 22no. 2 bedroom mid terrace houses, 6n","reg_date":"","3_bed":"52","5_plus":"","reg_ref":"071450","fg_date":"08/08/2008","other_total":"212"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.911441,53.167286],[-6.911463,53.166636],[-6.912836,53.166598],[-6.912825,53.167016],[-6.911935,53.167164],[-6.911441,53.167286]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"06/03/2008","fill-opacity":0.5,"2_bed":"16","4_bed":"","app_date":"08/06/2007","stroke":"#ed3a26","no_of_units":"18","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"(a) demolition of 2 no. bungalows and (b) erection of 18 no. residential units broken down as follows: 2 no. 2 storey terrace blocks consisting of 8 no. 2 bedroom units each on sites 1-8 inclusive and","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"071301","fg_date":"n/a","other_total":"18"}},{"geometry":{"type":"Point","coordinates":[-6.141958,53.2831]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"06/10/2009","fill-opacity":0.5,"2_bed":"342","4_bed":"17","app_date":"19/12/2008","stroke":"#ed3a26","no_of_units":"605","1_bed":"118","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Development comprising a residential development (Phase 11A) on part of the 'Nor","reg_date":"12/08/2009","3_bed":"111","5_plus":"17","reg_ref":"D08A/1379","fg_date":"","other_total":"605"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.279644,53.351671],[-6.279646,53.351673],[-6.27968,53.351995],[-6.279336,53.352007],[-6.279204,53.352009],[-6.279176,53.351666],[-6.279451,53.351675],[-6.279644,53.351671]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"24/03/2009","fill-opacity":0.5,"2_bed":"17","4_bed":"","app_date":"21/11/2008","stroke":"#ed3a26","no_of_units":"","1_bed":"6","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of a mixed use residential/commercial development","reg_date":"25/02/2009","3_bed":"7","5_plus":"","reg_ref":"5117/08","fg_date":"06/05/2009","other_total":"30"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.27559,53.321078],[-6.275382,53.321115],[-6.275232,53.321141],[-6.274698,53.321217],[-6.274667,53.32116],[-6.274722,53.321149],[-6.275062,53.321096],[-6.275198,53.321075],[-6.275204,53.321086],[-6.275353,53.321059],[-6.275577,53.321024],[-6.27559,53.321078]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"24/07/2013","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"31/05/2013","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from institutional accommodation to residential use","reg_date":"31/05/2013","3_bed":"1","5_plus":"","reg_ref":"2693/13","fg_date":"04/09/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.268299,53.357002],[-6.2683,53.357004],[-6.26833,53.357041],[-6.268339,53.357038],[-6.268371,53.357076],[-6.268361,53.357079],[-6.268371,53.357092],[-6.268373,53.357094],[-6.268413,53.35708],[-6.268421,53.357084],[-6.268413,53.35709],[-6.268381,53.357101],[-6.26839,53.35711],[-6.268333,53.357128],[-6.26833,53.357125],[-6.268298,53.357135],[-6.268285,53.35712],[-6.268204,53.357029],[-6.268299,53.357002]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"16/09/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"21/01/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of the first and second floors from commercial to residential use","reg_date":"27/08/2014","3_bed":"","5_plus":"","reg_ref":"2081/14","fg_date":"NULL","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.113647,53.498903],[-6.113509,53.498951],[-6.113254,53.499041],[-6.1128,53.499196],[-6.112773,53.499206],[-6.112637,53.499253],[-6.112528,53.49928],[-6.112428,53.499304],[-6.11236,53.499306],[-6.112315,53.499288],[-6.11206,53.498842],[-6.112027,53.498771],[-6.111861,53.498419],[-6.111805,53.498301],[-6.111712,53.498025],[-6.111652,53.497833],[-6.111633,53.497801],[-6.111734,53.497779],[-6.112004,53.497722],[-6.112233,53.498048],[-6.112446,53.497987],[-6.112395,53.497906],[-6.113044,53.497752],[-6.113093,53.497743],[-6.113173,53.497828],[-6.113276,53.497957],[-6.11334,53.498019],[-6.113431,53.498004],[-6.113783,53.497952],[-6.114109,53.49791],[-6.11472,53.497809],[-6.114721,53.497829],[-6.114697,53.49785],[-6.114653,53.497862],[-6.114649,53.497894],[-6.11472,53.4979],[-6.114742,53.497975],[-6.114783,53.498124],[-6.114813,53.498204],[-6.114847,53.498275],[-6.114883,53.498348],[-6.114898,53.498391],[-6.114708,53.498419],[-6.114058,53.498517],[-6.113596,53.498597],[-6.113669,53.498663],[-6.113748,53.498749],[-6.113786,53.498799],[-6.113819,53.498843],[-6.113647,53.498903]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"13","app_date":"03/12/2007","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development on a site of 20473sq.m. (2.047 hectares). The development will consist of the following: 1. Demolition of existing dwelling known as Glen Erin (387 sq.m.)2. Erection","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"F07A/0461","fg_date":"","other_total":"15"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.139566,53.283498],[-6.140263,53.283446],[-6.140456,53.283908],[-6.140982,53.283979],[-6.14095,53.284774],[-6.140274,53.284716],[-6.139351,53.284447],[-6.139512,53.284293],[-6.139566,53.283498]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":" ","fill-opacity":0.5,"2_bed":"","4_bed":"17","app_date":"15/10/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"ONGOING","short_desc":"Permission for revisions to the development permitted under Register Reference","reg_date":"15/10/2014","3_bed":"","5_plus":"5","reg_ref":"D14A/0669","fg_date":"","other_total":"22"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.268846,53.442506],[-6.268817,53.442414],[-6.268946,53.4424],[-6.26893,53.44235],[-6.268927,53.442351],[-6.268906,53.442276],[-6.268898,53.442254],[-6.268839,53.44211],[-6.269122,53.442075],[-6.269135,53.442062],[-6.269142,53.44208],[-6.269171,53.442158],[-6.269219,53.442148],[-6.26923,53.442178],[-6.269249,53.442176],[-6.269272,53.442173],[-6.269367,53.442163],[-6.269448,53.442152],[-6.269505,53.442315],[-6.269518,53.442351],[-6.269541,53.442426],[-6.268846,53.442506]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"28/01/2009","stroke":"#ed3a26","no_of_units":"","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Conversion, extension and refurbishment of existing residential and farm buildings (165sqm) to a new residential dwelling (260sqm). The works will include demolition of an existing shed (62sqm), a ne","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F09A/0040","fg_date":"","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.381862,53.38208],[-6.381911,53.382167],[-6.381794,53.382195],[-6.381614,53.382236],[-6.381583,53.382235],[-6.38155,53.382227],[-6.381533,53.382218],[-6.38151,53.382203],[-6.38148,53.382154],[-6.381483,53.382153],[-6.381609,53.382129],[-6.381703,53.382111],[-6.381862,53.38208]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"30/04/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for the change of use from dental surgery to residential accomodation along with single storey extension, modified vehicular entrance off Delwood Road and associated site works.","reg_date":"","3_bed":"","5_plus":"","reg_ref":"FW14A/0051","fg_date":"","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.264883,53.523547],[-6.264804,53.523531],[-6.263717,53.52343],[-6.26382,53.523296],[-6.263922,53.52315],[-6.264013,53.523057],[-6.264144,53.522974],[-6.264285,53.522902],[-6.264477,53.52284],[-6.264731,53.522786],[-6.26507,53.522728],[-6.265476,53.522656],[-6.266483,53.522482],[-6.267223,53.522365],[-6.26766,53.522291],[-6.267715,53.522341],[-6.267794,53.522482],[-6.267875,53.522645],[-6.267912,53.522778],[-6.26794,53.522885],[-6.268121,53.522889],[-6.268301,53.52328],[-6.268353,53.523393],[-6.268468,53.523569],[-6.268613,53.523809],[-6.268049,53.523854],[-6.267921,53.523615],[-6.267217,53.523682],[-6.266638,53.523713],[-6.266092,53.523714],[-6.265775,53.523686],[-6.26524,53.52362],[-6.264933,53.523557],[-6.264883,53.523547]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"10","4_bed":"25","app_date":"17/04/2012","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Planning permission consequent on the grant of outline permission, reg. ref. F04A/1411and An Bord Pleanala decision ref. no. Pl 06F.213142, sought for residential and commercial development consisting","reg_date":"","3_bed":"50","5_plus":"3","reg_ref":"F06A/1108/E1","fg_date":"","other_total":"88"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.258537,53.454897],[-6.258539,53.454871],[-6.258453,53.454876],[-6.258307,53.454289],[-6.259044,53.45422],[-6.259231,53.4542],[-6.259494,53.454151],[-6.259719,53.454082],[-6.259856,53.454238],[-6.260394,53.454073],[-6.260766,53.45374],[-6.261322,53.453908],[-6.261246,53.453952],[-6.261233,53.45396],[-6.261179,53.454024],[-6.261188,53.454175],[-6.261193,53.454217],[-6.261217,53.45443],[-6.261324,53.454473],[-6.261526,53.454556],[-6.261295,53.454658],[-6.261059,53.454704],[-6.260824,53.454748],[-6.260582,53.454794],[-6.260349,53.454833],[-6.260016,53.454784],[-6.260011,53.454785],[-6.259752,53.454803],[-6.259743,53.454804],[-6.259495,53.454823],[-6.259281,53.454839],[-6.259271,53.45484],[-6.259052,53.454857],[-6.258934,53.454866],[-6.258915,53.454867],[-6.258537,53.454897]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"14","app_date":"11/04/2013","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Alterations to previously approved permission Reg. Ref. F06A/0347 on lands to the south and east of the Knocksedan Demesne residential development. The alterations consist of a revised two storey thr","reg_date":"","3_bed":"12","5_plus":"","reg_ref":"F13A/0128","fg_date":"","other_total":"26"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.181471,53.436943],[-6.181477,53.436648],[-6.181604,53.436646],[-6.181892,53.436639],[-6.18204,53.436634],[-6.182146,53.436633],[-6.182078,53.436846],[-6.182069,53.436845],[-6.182061,53.436845],[-6.182052,53.436845],[-6.182044,53.436846],[-6.182035,53.436847],[-6.182027,53.436848],[-6.182019,53.43685],[-6.182012,53.436852],[-6.182004,53.436855],[-6.181997,53.436858],[-6.181991,53.436861],[-6.181985,53.436865],[-6.181979,53.436869],[-6.181974,53.436873],[-6.18197,53.436877],[-6.181966,53.436882],[-6.181967,53.436887],[-6.18185,53.436892],[-6.181779,53.436898],[-6.181673,53.43691],[-6.181616,53.436922],[-6.181574,53.436931],[-6.181522,53.436945],[-6.181471,53.436959],[-6.181471,53.436954],[-6.181471,53.436943]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"20/06/2013","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Provision of 1 no. 2 storey dwelling house (308 sq.m) on amalgamated sites 1 & 2 as per previously approved planning ref. F10A/0318 on a 1.08 HA site. (Parent permission for overall residential devel","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"F13A/0223","fg_date":"","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.741244,53.132595],[-6.741754,53.132885],[-6.741818,53.1333],[-6.742119,53.133828],[-6.742129,53.13396],[-6.741362,53.133709],[-6.741282,53.133789],[-6.740745,53.133554],[-6.740423,53.133368],[-6.741244,53.132595]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/02/2008","fill-opacity":0.5,"2_bed":"39","4_bed":"","app_date":"30/05/2007","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"mixed use developmet scheme comprising retail, residential, commerical, cafe/restaurant, associated facilities and publicly accessible landscaped areas etc","reg_date":"","3_bed":"3","5_plus":"","reg_ref":"071201","fg_date":"03/04/2008","other_total":"42"}},{"geometry":{"type":"Point","coordinates":[-6.176934,53.248962]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"16/12/2011","fill-opacity":0.5,"2_bed":"10","4_bed":"5","app_date":"04/07/2011","stroke":"#ed3a26","no_of_units":"287 - 54 = 233","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Planning permission for modifications to the residential development","reg_date":"24/11/2011","3_bed":"28","5_plus":"","reg_ref":"D11A/0312","fg_date":"","other_total":"45"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.587956,53.36967],[-6.588331,53.369164],[-6.58816,53.369107],[-6.588975,53.367193],[-6.587023,53.366949],[-6.584061,53.366873],[-6.582152,53.36686],[-6.581422,53.367033],[-6.583879,53.368345],[-6.583074,53.369913],[-6.583847,53.369856],[-6.584501,53.369792],[-6.586132,53.370547],[-6.586883,53.36926],[-6.587956,53.36967]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"5428","deision_date":"07/03/2012","fill-opacity":0.5,"2_bed":"130","4_bed":"4","app_date":"20/01/2012","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"EXTENSION OF DURATION Residential development, creche and ancillary site works","reg_date":"","3_bed":"89","5_plus":"","reg_ref":"1226","fg_date":"n/a","other_total":"223"}},{"geometry":{"type":"Point","coordinates":[-6.178758,53.249979]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"05/06/2008","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"11/04/2008","stroke":"#ed3a26","no_of_units":"332","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT EXTENSION OF DURATION OF PERM.","short_desc":"Provision of a creche of 464m2 and a total of 332 residential units, consisting","reg_date":"11/04/2008","3_bed":"","5_plus":"","reg_ref":"D02A/1061/E","fg_date":"","other_total":"332"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.247226,53.328306],[-6.247071,53.328419],[-6.247025,53.328438],[-6.246962,53.328455],[-6.246886,53.328461],[-6.24682,53.32846],[-6.246562,53.328354],[-6.246879,53.328124],[-6.247222,53.328309],[-6.247226,53.328306]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"03/06/2008","fill-opacity":0.5,"2_bed":"4","4_bed":"1","app_date":"10/04/2008","stroke":"#ed3a26","no_of_units":"9","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of 9 no. residential dwelling units in a 5 storey building","reg_date":"10/04/2008","3_bed":"4","5_plus":"","reg_ref":"2282/08","fg_date":"18/02/2009","other_total":"9"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.266143,53.400779],[-6.266176,53.400429],[-6.26612,53.400173],[-6.267029,53.400209],[-6.267077,53.400187],[-6.267106,53.40017],[-6.267109,53.400091],[-6.267261,53.400093],[-6.267213,53.401038],[-6.267109,53.401037],[-6.267069,53.40107],[-6.266834,53.401022],[-6.266469,53.400926],[-6.266281,53.400883],[-6.266143,53.400779]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"02/09/2009","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"12/06/2009","stroke":"#ed3a26","no_of_units":"43","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"43 no. residential units ranging from 3-4 stories in height","reg_date":"27/08/2009","3_bed":"41","5_plus":"1","reg_ref":"3234/09","fg_date":"28/01/2010","other_total":"44"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.282385,53.334275],[-6.282049,53.334335],[-6.282028,53.334289],[-6.282359,53.33422],[-6.282385,53.334275]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"14/06/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"26/04/2013","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from offices to residential and associated works","reg_date":"26/04/2013","3_bed":"","5_plus":"","reg_ref":"2529/13","fg_date":"29/07/2013","other_total":"1"}},{"geometry":{"type":"Point","coordinates":[-6.410029,53.510682]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"19/06/2014","fill-opacity":0.5,"2_bed":"30","4_bed":"51","app_date":"11/03/2014","stroke":"#ed3a26","no_of_units":"172","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"EXTENSION OF DURATION OF PLANNING PERMISSION REF. NO. DA/801861 - Phase 4 residential development at...","reg_date":"","3_bed":"91","5_plus":"","reg_ref":"DA140175","fg_date":"","other_total":"172"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.119277,53.391861],[-6.118878,53.391876],[-6.118878,53.391869],[-6.118877,53.391862],[-6.118876,53.391856],[-6.118868,53.391778],[-6.118857,53.391655],[-6.118849,53.391564],[-6.118836,53.391482],[-6.119308,53.391495],[-6.119277,53.391861]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"3","app_date":"04/12/2008","stroke":"#ed3a26","no_of_units":"17","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Outline provision for the provision of residential accommodation in a six storey apartment block that will contain 3 no. 4 bed units, 12 no. 3 bed units and 2 no. 2 bed units together with a basement ","reg_date":"","3_bed":"12","5_plus":"","reg_ref":"F08A/1357","fg_date":"","other_total":"17"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.183468,53.247164],[-6.18468,53.246298],[-6.183565,53.24581],[-6.183125,53.246266],[-6.183431,53.246407],[-6.18284,53.246914],[-6.183468,53.247164]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":" ","fill-opacity":0.5,"2_bed":"5","4_bed":"16","app_date":"28/11/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"ONGOING","short_desc":"Permission is sought for demolition and construction of a mixed housing/apartmen","reg_date":"28/11/2014","3_bed":"3","5_plus":"","reg_ref":"D14A/0765","fg_date":"","other_total":"27"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.257046,53.70415],[-6.254429,53.705624],[-6.253088,53.703541],[-6.253195,53.70309],[-6.254761,53.702931],[-6.255072,53.703007],[-6.255437,53.703376],[-6.256295,53.703979],[-6.256714,53.704011],[-6.257046,53.70415]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"27/10/2011","fill-opacity":0.5,"2_bed":"","4_bed":"45","app_date":"05/09/2011","stroke":"#ed3a26","no_of_units":"95","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"a residential development of 95 no. 2. storey houses, which will form Phase 2 of an overall permitte...","reg_date":"","3_bed":"50","5_plus":"","reg_ref":"SA110828","fg_date":"","other_total":"95"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.244975,53.342908],[-6.244961,53.342939],[-6.244938,53.342973],[-6.244908,53.342967],[-6.244895,53.342965],[-6.24481,53.342951],[-6.244835,53.342877],[-6.244934,53.342898],[-6.244974,53.342907],[-6.244975,53.342908]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"07/10/2014","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"18/08/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of existing 2 storey commercial premises to residential","reg_date":"18/08/2014","3_bed":"","5_plus":"","reg_ref":"3257/14","fg_date":"NULL","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.347262,53.348644],[-6.346919,53.348351],[-6.346855,53.348295],[-6.34695,53.348256],[-6.347464,53.348057],[-6.347542,53.348026],[-6.347876,53.347896],[-6.347913,53.34788],[-6.348018,53.347992],[-6.348148,53.348124],[-6.348248,53.348223],[-6.347879,53.348369],[-6.34777,53.348423],[-6.347622,53.348486],[-6.347431,53.348564],[-6.347262,53.348644]]]]},"type":"Feature","properties":{"status":"Registered application","":"","deision_date":"NULL","fill-opacity":0.5,"2_bed":"6","4_bed":"","app_date":"08/09/2014","stroke":"#ed3a26","no_of_units":"19","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"NULL","short_desc":"Construction of 19 no. residential dwelling units","reg_date":"08/09/2014","3_bed":"13","5_plus":"","reg_ref":"3359/14","fg_date":"NULL","other_total":"19"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.208707,53.607509],[-6.208181,53.607716],[-6.2076,53.607236],[-6.208135,53.607027],[-6.208295,53.60695],[-6.208226,53.606932],[-6.208152,53.606914],[-6.208136,53.606865],[-6.208184,53.60682],[-6.208238,53.606777],[-6.208343,53.606758],[-6.20843,53.606753],[-6.208663,53.606715],[-6.208878,53.606687],[-6.209043,53.606621],[-6.209174,53.606668],[-6.20932,53.606629],[-6.209543,53.606687],[-6.209686,53.606818],[-6.209855,53.607042],[-6.208707,53.607509]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"24","4_bed":"","app_date":"08/05/2009","stroke":"#ed3a26","no_of_units":"26","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A four storey mixed use local centre development (to serve the residential development proposed under Reg. Ref. F07A/1249) comprising 26 no. bedroom (2 no. one bed and 24 no. two beds) apartments with","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/0998","fg_date":"","other_total":"26"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.131718,53.260554],[-6.131133,53.260705],[-6.130956,53.26049],[-6.129733,53.26082],[-6.13021,53.261561],[-6.131444,53.261186],[-6.131245,53.260897],[-6.131782,53.260743],[-6.131718,53.260554]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"06/11/2014","fill-opacity":0.5,"2_bed":"","4_bed":"4","app_date":"11/03/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Permission for development consisting of the demolition of 'Smallacre'","reg_date":"10/10/2014","3_bed":"","5_plus":"4","reg_ref":"D14A/0107","fg_date":"","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.152261,53.418303],[-6.152257,53.418303],[-6.152055,53.418295],[-6.152042,53.418295],[-6.152005,53.418255],[-6.151955,53.418254],[-6.151917,53.41829],[-6.151684,53.418275],[-6.151682,53.418253],[-6.151662,53.418239],[-6.151638,53.418232],[-6.151562,53.418041],[-6.151533,53.417854],[-6.151489,53.417607],[-6.151431,53.417288],[-6.151402,53.417131],[-6.15143,53.417136],[-6.151509,53.417137],[-6.151566,53.417137],[-6.151664,53.417137],[-6.151753,53.41714],[-6.15213,53.417152],[-6.152256,53.417159],[-6.152294,53.417162],[-6.152558,53.417178],[-6.152728,53.417191],[-6.152653,53.417541],[-6.152637,53.417675],[-6.152636,53.417684],[-6.152599,53.417908],[-6.15255,53.418182],[-6.152538,53.418314],[-6.152509,53.418276],[-6.152443,53.41827],[-6.152384,53.418308],[-6.152261,53.418303]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"43","4_bed":"11","app_date":"03/03/2010","stroke":"#ed3a26","no_of_units":"62","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of 62 no. dwellings comprised of 49 no. 1, 2 & 3 bed apartments in 4 no. 2-5 storey blocks including penthouse setbacks, and 13 no. 3 and 4 bed 2 & 3 storey townho","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"F09A/0381","fg_date":"","other_total":"62"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.70401,52.941404],[-6.702883,52.941843],[-6.70357,52.942134],[-6.703924,52.942231],[-6.704578,52.942173],[-6.704922,52.942082],[-6.70401,52.941404]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/02/2012","fill-opacity":0.5,"2_bed":"11","4_bed":"10","app_date":"15/12/2011","stroke":"#ed3a26","no_of_units":"27","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"UNCONDITIONAL","short_desc":"residential development total 27 no dwellings and creche comprising of demolition of existing school...","reg_date":"","3_bed":"3","5_plus":"","reg_ref":"114928","fg_date":"","other_total":"27"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.138836,53.284954],[-6.140049,53.285172],[-6.140199,53.284851],[-6.140242,53.284723],[-6.139308,53.284453],[-6.138836,53.284954]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":" ","fill-opacity":0.5,"2_bed":"","4_bed":"12","app_date":"15/10/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"ONGOING","short_desc":"Permission for revisions to the development permitted under Register Reference","reg_date":"15/10/2014","3_bed":"","5_plus":"4","reg_ref":"D14A/0668","fg_date":"","other_total":"16"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.35841,53.288732],[-6.35818,53.28871],[-6.358156,53.288708],[-6.358157,53.288706],[-6.358156,53.288706],[-6.35818,53.288583],[-6.35787,53.28857],[-6.357854,53.288491],[-6.357698,53.288486],[-6.357686,53.288355],[-6.357687,53.288354],[-6.357686,53.288352],[-6.357712,53.28831],[-6.357733,53.288279],[-6.357769,53.288262],[-6.357833,53.288236],[-6.357867,53.288233],[-6.358001,53.288235],[-6.358376,53.28824],[-6.358438,53.28825],[-6.3585,53.288269],[-6.35854,53.288287],[-6.358561,53.288306],[-6.358572,53.288341],[-6.358572,53.288342],[-6.358572,53.288344],[-6.358564,53.28837],[-6.358471,53.288597],[-6.358415,53.288732],[-6.358414,53.288732],[-6.35841,53.288732],[-6.35841,53.288732]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"9","4_bed":"0","app_date":"07/11/2007","stroke":"#ed3a26","no_of_units":"28","1_bed":"8","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"Construction of mixed retail/residential development of 28 no. apartments and 654sqm retail on 4 floors over basement car park as follows; 11 no. 3-bedroom apartments, 9 no. 2-bedroom apartments, and ","reg_date":"","3_bed":"11","5_plus":"0","reg_ref":"SD07A/0883","fg_date":"","other_total":"28"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.337481,53.306844],[-6.337261,53.307169],[-6.337002,53.307106],[-6.336909,53.307081],[-6.336874,53.307064],[-6.336845,53.307043],[-6.336826,53.307022],[-6.336814,53.307007],[-6.336806,53.306987],[-6.336802,53.306966],[-6.336803,53.306947],[-6.336811,53.306929],[-6.337027,53.306628],[-6.337049,53.306609],[-6.337097,53.306583],[-6.337137,53.306571],[-6.337183,53.306563],[-6.337237,53.306558],[-6.337282,53.306562],[-6.337646,53.306654],[-6.337559,53.306793],[-6.337592,53.306801],[-6.337554,53.306862],[-6.337481,53.306844]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"11","4_bed":"0","app_date":"21/12/2007","stroke":"#ed3a26","no_of_units":"14","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"(i) Demolition of the existing first floor/attic space currently used as storage area; (ii) construction of a 3-storey development above the existing ground floor (forming a 4-storey development) to ","reg_date":"","3_bed":"0","5_plus":"0","reg_ref":"SD07A/1061","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.277203,53.313373],[-6.27713,53.313161],[-6.277208,53.313154],[-6.277282,53.313365],[-6.277203,53.313373]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"15/04/2008","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"21/12/2007","stroke":"#ed3a26","no_of_units":"2","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of a 2 storey structure comprising 2no. residential dwellings","reg_date":"20/03/2008","3_bed":"","5_plus":"","reg_ref":"6772/07","fg_date":"22/05/2008","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.319938,53.316966],[-6.320932,53.317049],[-6.320869,53.317406],[-6.32108,53.317422],[-6.321057,53.317466],[-6.321439,53.317487],[-6.321415,53.317574],[-6.321101,53.317548],[-6.321111,53.317523],[-6.319842,53.317414],[-6.319938,53.316966]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"22/01/2009","fill-opacity":0.5,"2_bed":"14","4_bed":"","app_date":"28/08/2008","stroke":"#ed3a26","no_of_units":"34","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolish existing factory & structures & construct 34no. residential apartments","reg_date":"19/12/2008","3_bed":"17","5_plus":"","reg_ref":"4243/08","fg_date":"10/08/2009","other_total":"34"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.242143,53.368289],[-6.241529,53.368227],[-6.240911,53.368161],[-6.241127,53.367733],[-6.241132,53.367733],[-6.241387,53.367339],[-6.242506,53.367694],[-6.242277,53.368065],[-6.242236,53.368097],[-6.242213,53.368159],[-6.242143,53.368289]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"05/06/2008","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"11/04/2008","stroke":"#ed3a26","no_of_units":"5","1_bed":"7","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construct additional residential units including 5 units & 2 staff bedrooms","reg_date":"11/04/2008","3_bed":"","5_plus":"","reg_ref":"2307/08","fg_date":"18/07/2008","other_total":"7"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.104216,53.525621],[-6.104625,53.52563],[-6.104617,53.525764],[-6.10421,53.525754],[-6.104216,53.525621]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"30/11/2010","stroke":"#ed3a26","no_of_units":"10","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions to previously approved Planning Permissions Reg. Ref. F06A/0945, F07A/1374 & F08A/0712 for a residential development. Revisions will include replacing approved house numbers 6 - 10 inclusiv","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"F10A/0501","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.194095,53.282013],[-6.194519,53.28192],[-6.194921,53.281727],[-6.194363,53.281278],[-6.193762,53.28097],[-6.193044,53.281544],[-6.193441,53.281769],[-6.193821,53.281679],[-6.194095,53.282013]]]]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"02/07/2012","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/05/2012","stroke":"#ed3a26","no_of_units":"525","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT FURTHER EXT. OF DURATION OF PERM.","short_desc":"Mixed use development comprising residential, office, nursing home","reg_date":"16/05/2012","3_bed":"","5_plus":"","reg_ref":"D03A/0750/E1","fg_date":"","other_total":"525"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.131444,53.291438],[-6.131085,53.291281],[-6.131154,53.291213],[-6.131541,53.291377],[-6.131444,53.291438]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"12/11/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"18/09/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Permission for Change of Use from Office use to Residential use.","reg_date":"18/09/2014","3_bed":"","5_plus":"","reg_ref":"D14A/0608","fg_date":"","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.146664,53.397547],[-6.146585,53.397576],[-6.146543,53.3976],[-6.146623,53.39768],[-6.146692,53.397745],[-6.146687,53.397844],[-6.146623,53.39795],[-6.146621,53.398],[-6.146653,53.398085],[-6.146672,53.398185],[-6.146951,53.398208],[-6.147099,53.39822],[-6.147092,53.398236],[-6.147053,53.39832],[-6.147047,53.398333],[-6.146988,53.398325],[-6.146879,53.398366],[-6.146851,53.398466],[-6.146835,53.398544],[-6.146843,53.398643],[-6.146898,53.398737],[-6.146945,53.398759],[-6.146953,53.398775],[-6.146976,53.398828],[-6.147023,53.398933],[-6.147108,53.399124],[-6.147072,53.399138],[-6.147106,53.399167],[-6.147225,53.399176],[-6.147245,53.399247],[-6.147184,53.399289],[-6.14717,53.399338],[-6.147166,53.399385],[-6.147159,53.399461],[-6.147144,53.39963],[-6.147139,53.399689],[-6.147129,53.399812],[-6.147122,53.399885],[-6.147132,53.399928],[-6.147215,53.399937],[-6.147263,53.399937],[-6.147223,53.400043],[-6.147175,53.400043],[-6.147163,53.400049],[-6.147151,53.400057],[-6.147126,53.400085],[-6.14707,53.400582],[-6.147048,53.400779],[-6.147091,53.400805],[-6.147118,53.400837],[-6.147057,53.400838],[-6.147034,53.400863],[-6.147015,53.400921],[-6.147006,53.400978],[-6.146904,53.401427],[-6.1469,53.401447],[-6.146992,53.401495],[-6.147028,53.401513],[-6.146988,53.401598],[-6.146905,53.401596],[-6.146821,53.401617],[-6.146771,53.401673],[-6.146676,53.401671],[-6.146679,53.4016],[-6.14668,53.401579],[-6.145675,53.401407],[-6.145639,53.401413],[-6.145602,53.401441],[-6.145555,53.401433],[-6.145546,53.401383],[-6.145523,53.401355],[-6.145453,53.401325],[-6.14439,53.401159],[-6.144296,53.401242],[-6.144061,53.401554],[-6.14406,53.401557],[-6.144026,53.401601],[-6.143998,53.401639],[-6.143872,53.401806],[-6.143418,53.402377],[-6.14306,53.402836],[-6.143066,53.402889],[-6.14307,53.402915],[-6.143358,53.402899],[-6.143477,53.402892],[-6.143607,53.402885],[-6.145281,53.402791],[-6.145309,53.402752],[-6.145376,53.402753],[-6.145441,53.40277],[-6.145508,53.402771],[-6.145521,53.402771],[-6.145525,53.402802],[-6.145531,53.402842],[-6.145491,53.402842],[-6.145485,53.402865],[-6.145474,53.402904],[-6.14547,53.402904],[-6.145469,53.402904],[-6.145322,53.403342],[-6.14525,53.40352],[-6.145326,53.403563],[-6.145312,53.403584],[-6.145193,53.403584],[-6.145134,53.403677],[-6.145114,53.403709],[-6.145049,53.40381],[-6.145028,53.403843],[-6.144964,53.403944],[-6.144921,53.40401],[-6.144822,53.404166],[-6.144941,53.404199],[-6.144928,53.404217],[-6.144777,53.404417],[-6.144391,53.404929],[-6.144319,53.404914],[-6.144312,53.404912],[-6.14434,53.404873],[-6.144248,53.404855],[-6.144206,53.404895],[-6.14423,53.404943],[-6.144215,53.404982],[-6.144148,53.404997],[-6.144082,53.404996],[-6.144044,53.404956],[-6.144073,53.404892],[-6.144113,53.404885],[-6.144115,53.404853],[-6.144249,53.404666],[-6.144285,53.404616],[-6.144553,53.404241],[-6.144536,53.404236],[-6.144473,53.404219],[-6.142736,53.403748],[-6.142572,53.403704],[-6.142582,53.403693],[-6.142554,53.403685],[-6.142453,53.403656],[-6.142392,53.403636],[-6.142305,53.403611],[-6.142183,53.403571],[-6.141981,53.403501],[-6.141828,53.403446],[-6.141719,53.403408],[-6.141662,53.403386],[-6.141549,53.403344],[-6.141546,53.403347],[-6.140881,53.403747],[-6.140932,53.403795],[-6.140917,53.403835],[-6.140862,53.403874],[-6.14077,53.403856],[-6.140732,53.403808],[-6.1408,53.403762],[-6.140796,53.403758],[-6.140785,53.403731],[-6.140779,53.403718],[-6.140824,53.403706],[-6.14143,53.403327],[-6.141407,53.403281],[-6.141356,53.403254],[-6.14086,53.403008],[-6.140858,53.403003],[-6.140829,53.402903],[-6.140815,53.402856],[-6.140719,53.402532],[-6.140651,53.402302],[-6.140649,53.402298],[-6.140636,53.402252],[-6.140633,53.40224],[-6.140633,53.402239],[-6.140209,53.402186],[-6.139667,53.402103],[-6.139485,53.402075],[-6.139383,53.402059],[-6.138923,53.401561],[-6.138879,53.401507],[-6.138375,53.400881],[-6.138124,53.400784],[-6.137824,53.400715],[-6.137417,53.400655],[-6.137062,53.400629],[-6.136724,53.400613],[-6.136453,53.400601],[-6.13638,53.400597],[-6.136351,53.400596],[-6.136011,53.400612],[-6.135581,53.40068],[-6.135059,53.4008],[-6.134617,53.401017],[-6.134367,53.40114],[-6.134339,53.401153],[-6.134091,53.401271],[-6.134087,53.401278],[-6.133859,53.401371],[-6.133406,53.40153],[-6.132231,53.401844],[-6.131862,53.401943],[-6.131575,53.40202],[-6.131502,53.402061],[-6.131447,53.402094],[-6.131374,53.402152],[-6.131332,53.402206],[-6.131387,53.402352],[-6.131367,53.40236],[-6.131404,53.402395],[-6.131483,53.402601],[-6.13158,53.402743],[-6.131443,53.402772],[-6.131311,53.402619],[-6.131259,53.402558],[-6.13113,53.402408],[-6.13041,53.401574],[-6.130323,53.401473],[-6.130325,53.401472],[-6.130472,53.401437],[-6.130587,53.401532],[-6.130938,53.401787],[-6.131059,53.401863],[-6.131124,53.401872],[-6.131284,53.401885],[-6.131315,53.401886],[-6.131401,53.401879],[-6.131403,53.401834],[-6.131499,53.401835],[-6.132165,53.401682],[-6.133121,53.401424],[-6.133252,53.401389],[-6.133789,53.401192],[-6.134035,53.401063],[-6.13412,53.401019],[-6.13416,53.400998],[-6.13447,53.400833],[-6.134978,53.400628],[-6.134675,53.400239],[-6.13463,53.40018],[-6.134506,53.400021],[-6.134473,53.399978],[-6.13374,53.399034],[-6.133675,53.39895],[-6.133257,53.398411],[-6.133831,53.398232],[-6.134383,53.39807],[-6.134392,53.39808],[-6.134395,53.398083],[-6.134455,53.398153],[-6.134483,53.398188],[-6.134547,53.398263],[-6.134615,53.398344],[-6.134617,53.398343],[-6.134967,53.398754],[-6.13542,53.398628],[-6.135242,53.398424],[-6.135837,53.398451],[-6.135709,53.398172],[-6.135672,53.39813],[-6.135653,53.398108],[-6.135638,53.398092],[-6.135615,53.398066],[-6.135759,53.398086],[-6.135764,53.398087],[-6.135924,53.398116],[-6.135947,53.398124],[-6.135966,53.398131],[-6.135995,53.398141],[-6.136019,53.398153],[-6.136034,53.398161],[-6.136045,53.398166],[-6.13607,53.398202],[-6.136085,53.398231],[-6.1361,53.398257],[-6.136131,53.398311],[-6.136153,53.398344],[-6.136212,53.398418],[-6.136253,53.398471],[-6.136262,53.398474],[-6.136314,53.39849],[-6.136646,53.398591],[-6.136709,53.398582],[-6.136746,53.398575],[-6.136967,53.398642],[-6.137,53.398725],[-6.137053,53.39886],[-6.137604,53.399771],[-6.137623,53.399803],[-6.137847,53.400174],[-6.138116,53.400188],[-6.138423,53.400204],[-6.139147,53.400242],[-6.139348,53.400256],[-6.13969,53.400303],[-6.139898,53.400322],[-6.139961,53.400337],[-6.140233,53.400398],[-6.140276,53.400354],[-6.140562,53.400371],[-6.140907,53.400373],[-6.140974,53.400369],[-6.141042,53.400358],[-6.141163,53.400329],[-6.141187,53.400315],[-6.141306,53.400265],[-6.141335,53.400247],[-6.141449,53.400168],[-6.14146,53.400157],[-6.141602,53.400019],[-6.141874,53.400061],[-6.141919,53.40007],[-6.14208,53.400114],[-6.142588,53.400267],[-6.142649,53.400288],[-6.14265,53.400287],[-6.142957,53.400389],[-6.143077,53.400421],[-6.143156,53.400442],[-6.143182,53.400449],[-6.143212,53.400457],[-6.14331,53.400483],[-6.143729,53.400586],[-6.143814,53.400623],[-6.143964,53.40055],[-6.144059,53.400459],[-6.144594,53.400605],[-6.14487,53.400681],[-6.144694,53.400879],[-6.144576,53.401024],[-6.144667,53.40105],[-6.144665,53.401092],[-6.145599,53.401249],[-6.145635,53.401242],[-6.14566,53.401207],[-6.145708,53.401215],[-6.145706,53.401251],[-6.145741,53.401273],[-6.14586,53.401293],[-6.146666,53.401396],[-6.146688,53.40138],[-6.146807,53.400834],[-6.146785,53.400812],[-6.146702,53.400789],[-6.146703,53.400761],[-6.146775,53.400762],[-6.146811,53.400748],[-6.146914,53.400032],[-6.146901,53.400028],[-6.146873,53.400021],[-6.146855,53.400016],[-6.146855,53.400015],[-6.146856,53.399988],[-6.146774,53.399965],[-6.146812,53.399895],[-6.146895,53.399903],[-6.146901,53.3999],[-6.146933,53.399856],[-6.146934,53.399833],[-6.146899,53.399832],[-6.146904,53.399789],[-6.146926,53.399634],[-6.146942,53.399514],[-6.146951,53.399449],[-6.146975,53.399449],[-6.146982,53.399286],[-6.146935,53.399271],[-6.146899,53.39927],[-6.146875,53.399277],[-6.146874,53.399298],[-6.146803,53.399297],[-6.146793,53.399265],[-6.146749,53.399146],[-6.146738,53.399133],[-6.14672,53.399004],[-6.146715,53.3989],[-6.146635,53.398751],[-6.146626,53.398734],[-6.146625,53.398732],[-6.146489,53.398574],[-6.146422,53.39848],[-6.146398,53.398365],[-6.146387,53.398312],[-6.146382,53.398288],[-6.146366,53.398268],[-6.146303,53.398194],[-6.146222,53.398136],[-6.146119,53.398042],[-6.145993,53.39794],[-6.145986,53.397833],[-6.146002,53.397734],[-6.14603,53.397642],[-6.146057,53.397564],[-6.145987,53.39752],[-6.145904,53.397512],[-6.14593,53.397462],[-6.145999,53.397469],[-6.146654,53.397535],[-6.146657,53.397535],[-6.146657,53.397536],[-6.146657,53.397536],[-6.146657,53.397536],[-6.146656,53.397536],[-6.146656,53.397537],[-6.146656,53.397537],[-6.146656,53.397537],[-6.146656,53.397537],[-6.146657,53.397538],[-6.146657,53.397538],[-6.146657,53.397538],[-6.146657,53.397539],[-6.146657,53.397539],[-6.146657,53.397539],[-6.146657,53.397539],[-6.146657,53.39754],[-6.146657,53.39754],[-6.146657,53.39754],[-6.146657,53.39754],[-6.146657,53.397541],[-6.146658,53.397541],[-6.146658,53.397541],[-6.146658,53.397542],[-6.146658,53.397542],[-6.146658,53.397542],[-6.146658,53.397542],[-6.146659,53.397543],[-6.146659,53.397543],[-6.146659,53.397543],[-6.146659,53.397543],[-6.146659,53.397544],[-6.14666,53.397544],[-6.14666,53.397544],[-6.14666,53.397544],[-6.14666,53.397545],[-6.14666,53.397545],[-6.146661,53.397545],[-6.146661,53.397545],[-6.146661,53.397545],[-6.146661,53.397546],[-6.146662,53.397546],[-6.146662,53.397546],[-6.146662,53.397546],[-6.146663,53.397547],[-6.146663,53.397547],[-6.146663,53.397547],[-6.146664,53.397547],[-6.146664,53.397547]]],[[[-6.142933,53.406515],[-6.142164,53.406768],[-6.141941,53.406872],[-6.141769,53.406969],[-6.141638,53.407013],[-6.141444,53.407026],[-6.141212,53.407022],[-6.140774,53.407015],[-6.140544,53.406958],[-6.140377,53.40694],[-6.140262,53.406907],[-6.140202,53.406821],[-6.139937,53.406686],[-6.139662,53.406489],[-6.139234,53.406236],[-6.138909,53.405999],[-6.138728,53.405719],[-6.13855,53.405346],[-6.138427,53.404913],[-6.138362,53.404642],[-6.138381,53.404488],[-6.138374,53.404071],[-6.138382,53.403894],[-6.138582,53.403728],[-6.138779,53.403646],[-6.138975,53.403595],[-6.139443,53.40351],[-6.139849,53.40367],[-6.140286,53.403993],[-6.141203,53.404563],[-6.14155,53.404884],[-6.141964,53.405168],[-6.142658,53.405526],[-6.142783,53.405613],[-6.143186,53.405827],[-6.143242,53.405928],[-6.143294,53.406021],[-6.143288,53.406168],[-6.143283,53.406269],[-6.143282,53.406291],[-6.143186,53.406421],[-6.14295,53.40651],[-6.142933,53.406515]]],[[[-6.148797,53.400482],[-6.148742,53.400742],[-6.148734,53.400779],[-6.148522,53.400765],[-6.148271,53.400749],[-6.148344,53.400436],[-6.148782,53.400481],[-6.148797,53.400482]]],[[[-6.146667,53.397549],[-6.146666,53.397549],[-6.146666,53.397549],[-6.146666,53.397548],[-6.146665,53.397548],[-6.146665,53.397548],[-6.146665,53.397548],[-6.146664,53.397548],[-6.146664,53.397547],[-6.146667,53.397549]]],[[[-6.146671,53.397551],[-6.146667,53.397549],[-6.146667,53.397549],[-6.146667,53.397549],[-6.146668,53.397549],[-6.146671,53.397551]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"240","4_bed":"35","app_date":"11/09/2014","stroke":"#ed3a26","no_of_units":"478","1_bed":"48","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of 478 residential units, comprising 35 no. 4 bedroomed semi-detached 2-storey and 3-storey terraced houses; 27 no. 3 bedroomed 2-storey semi detached and terraced houses; and 40 no. 2 be","reg_date":"","3_bed":"155","5_plus":"","reg_ref":"F03A/1162/E3","fg_date":"","other_total":"478"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.146664,53.397547],[-6.146585,53.397576],[-6.146543,53.3976],[-6.146623,53.39768],[-6.146692,53.397745],[-6.146687,53.397844],[-6.146623,53.39795],[-6.146621,53.398],[-6.146653,53.398085],[-6.146672,53.398185],[-6.146951,53.398208],[-6.147099,53.39822],[-6.147092,53.398236],[-6.147053,53.39832],[-6.147047,53.398333],[-6.146988,53.398325],[-6.146879,53.398366],[-6.146851,53.398466],[-6.146835,53.398544],[-6.146843,53.398643],[-6.146898,53.398737],[-6.146945,53.398759],[-6.146953,53.398775],[-6.146976,53.398828],[-6.147023,53.398933],[-6.147108,53.399124],[-6.147072,53.399138],[-6.147106,53.399167],[-6.147225,53.399176],[-6.147245,53.399247],[-6.147184,53.399289],[-6.14717,53.399338],[-6.147166,53.399385],[-6.147159,53.399461],[-6.147144,53.39963],[-6.147139,53.399689],[-6.147129,53.399812],[-6.147122,53.399885],[-6.147132,53.399928],[-6.147215,53.399937],[-6.147263,53.399937],[-6.147223,53.400043],[-6.147175,53.400043],[-6.147163,53.400049],[-6.147151,53.400057],[-6.147126,53.400085],[-6.14707,53.400582],[-6.147048,53.400779],[-6.147091,53.400805],[-6.147118,53.400837],[-6.147057,53.400838],[-6.147034,53.400863],[-6.147015,53.400921],[-6.147006,53.400978],[-6.146904,53.401427],[-6.1469,53.401447],[-6.146992,53.401495],[-6.147028,53.401513],[-6.146988,53.401598],[-6.146905,53.401596],[-6.146821,53.401617],[-6.146771,53.401673],[-6.146676,53.401671],[-6.146679,53.4016],[-6.14668,53.401579],[-6.145675,53.401407],[-6.145639,53.401413],[-6.145602,53.401441],[-6.145555,53.401433],[-6.145546,53.401383],[-6.145523,53.401355],[-6.145453,53.401325],[-6.14439,53.401159],[-6.144296,53.401242],[-6.144061,53.401554],[-6.14406,53.401557],[-6.144026,53.401601],[-6.143998,53.401639],[-6.143872,53.401806],[-6.143418,53.402377],[-6.14306,53.402836],[-6.143066,53.402889],[-6.14307,53.402915],[-6.143358,53.402899],[-6.143477,53.402892],[-6.143607,53.402885],[-6.145281,53.402791],[-6.145309,53.402752],[-6.145376,53.402753],[-6.145441,53.40277],[-6.145508,53.402771],[-6.145521,53.402771],[-6.145525,53.402802],[-6.145531,53.402842],[-6.145491,53.402842],[-6.145485,53.402865],[-6.145474,53.402904],[-6.14547,53.402904],[-6.145469,53.402904],[-6.145322,53.403342],[-6.14525,53.40352],[-6.145326,53.403563],[-6.145312,53.403584],[-6.145193,53.403584],[-6.145134,53.403677],[-6.145114,53.403709],[-6.145049,53.40381],[-6.145028,53.403843],[-6.144964,53.403944],[-6.144921,53.40401],[-6.144822,53.404166],[-6.144941,53.404199],[-6.144928,53.404217],[-6.144777,53.404417],[-6.144391,53.404929],[-6.144319,53.404914],[-6.144312,53.404912],[-6.14434,53.404873],[-6.144248,53.404855],[-6.144206,53.404895],[-6.14423,53.404943],[-6.144215,53.404982],[-6.144148,53.404997],[-6.144082,53.404996],[-6.144044,53.404956],[-6.144073,53.404892],[-6.144113,53.404885],[-6.144115,53.404853],[-6.144249,53.404666],[-6.144285,53.404616],[-6.144553,53.404241],[-6.144536,53.404236],[-6.144473,53.404219],[-6.142736,53.403748],[-6.142572,53.403704],[-6.142582,53.403693],[-6.142554,53.403685],[-6.142453,53.403656],[-6.142392,53.403636],[-6.142305,53.403611],[-6.142183,53.403571],[-6.141981,53.403501],[-6.141828,53.403446],[-6.141719,53.403408],[-6.141662,53.403386],[-6.141549,53.403344],[-6.141546,53.403347],[-6.140881,53.403747],[-6.140932,53.403795],[-6.140917,53.403835],[-6.140862,53.403874],[-6.14077,53.403856],[-6.140732,53.403808],[-6.1408,53.403762],[-6.140796,53.403758],[-6.140785,53.403731],[-6.140779,53.403718],[-6.140824,53.403706],[-6.14143,53.403327],[-6.141407,53.403281],[-6.141356,53.403254],[-6.14086,53.403008],[-6.140858,53.403003],[-6.140829,53.402903],[-6.140815,53.402856],[-6.140719,53.402532],[-6.140651,53.402302],[-6.140649,53.402298],[-6.140636,53.402252],[-6.140633,53.40224],[-6.140633,53.402239],[-6.140209,53.402186],[-6.139667,53.402103],[-6.139485,53.402075],[-6.139383,53.402059],[-6.138923,53.401561],[-6.138879,53.401507],[-6.138375,53.400881],[-6.138124,53.400784],[-6.137824,53.400715],[-6.137417,53.400655],[-6.137062,53.400629],[-6.136724,53.400613],[-6.136453,53.400601],[-6.13638,53.400597],[-6.136351,53.400596],[-6.136011,53.400612],[-6.135581,53.40068],[-6.135059,53.4008],[-6.134617,53.401017],[-6.134367,53.40114],[-6.134339,53.401153],[-6.134091,53.401271],[-6.134087,53.401278],[-6.133859,53.401371],[-6.133406,53.40153],[-6.132231,53.401844],[-6.131862,53.401943],[-6.131575,53.40202],[-6.131502,53.402061],[-6.131447,53.402094],[-6.131374,53.402152],[-6.131332,53.402206],[-6.131387,53.402352],[-6.131367,53.40236],[-6.131404,53.402395],[-6.131483,53.402601],[-6.13158,53.402743],[-6.131443,53.402772],[-6.131311,53.402619],[-6.131259,53.402558],[-6.13113,53.402408],[-6.13041,53.401574],[-6.130323,53.401473],[-6.130325,53.401472],[-6.130472,53.401437],[-6.130587,53.401532],[-6.130938,53.401787],[-6.131059,53.401863],[-6.131124,53.401872],[-6.131284,53.401885],[-6.131315,53.401886],[-6.131401,53.401879],[-6.131403,53.401834],[-6.131499,53.401835],[-6.132165,53.401682],[-6.133121,53.401424],[-6.133252,53.401389],[-6.133789,53.401192],[-6.134035,53.401063],[-6.13412,53.401019],[-6.13416,53.400998],[-6.13447,53.400833],[-6.134978,53.400628],[-6.134675,53.400239],[-6.13463,53.40018],[-6.134506,53.400021],[-6.134473,53.399978],[-6.13374,53.399034],[-6.133675,53.39895],[-6.133257,53.398411],[-6.133831,53.398232],[-6.134383,53.39807],[-6.134392,53.39808],[-6.134395,53.398083],[-6.134455,53.398153],[-6.134483,53.398188],[-6.134547,53.398263],[-6.134615,53.398344],[-6.134617,53.398343],[-6.134967,53.398754],[-6.13542,53.398628],[-6.135242,53.398424],[-6.135837,53.398451],[-6.135709,53.398172],[-6.135672,53.39813],[-6.135653,53.398108],[-6.135638,53.398092],[-6.135615,53.398066],[-6.135759,53.398086],[-6.135764,53.398087],[-6.135924,53.398116],[-6.135947,53.398124],[-6.135966,53.398131],[-6.135995,53.398141],[-6.136019,53.398153],[-6.136034,53.398161],[-6.136045,53.398166],[-6.13607,53.398202],[-6.136085,53.398231],[-6.1361,53.398257],[-6.136131,53.398311],[-6.136153,53.398344],[-6.136212,53.398418],[-6.136253,53.398471],[-6.136262,53.398474],[-6.136314,53.39849],[-6.136646,53.398591],[-6.136709,53.398582],[-6.136746,53.398575],[-6.136967,53.398642],[-6.137,53.398725],[-6.137053,53.39886],[-6.137604,53.399771],[-6.137623,53.399803],[-6.137847,53.400174],[-6.138116,53.400188],[-6.138423,53.400204],[-6.139147,53.400242],[-6.139348,53.400256],[-6.13969,53.400303],[-6.139898,53.400322],[-6.139961,53.400337],[-6.140233,53.400398],[-6.140276,53.400354],[-6.140562,53.400371],[-6.140907,53.400373],[-6.140974,53.400369],[-6.141042,53.400358],[-6.141163,53.400329],[-6.141187,53.400315],[-6.141306,53.400265],[-6.141335,53.400247],[-6.141449,53.400168],[-6.14146,53.400157],[-6.141602,53.400019],[-6.141874,53.400061],[-6.141919,53.40007],[-6.14208,53.400114],[-6.142588,53.400267],[-6.142649,53.400288],[-6.14265,53.400287],[-6.142957,53.400389],[-6.143077,53.400421],[-6.143156,53.400442],[-6.143182,53.400449],[-6.143212,53.400457],[-6.14331,53.400483],[-6.143729,53.400586],[-6.143814,53.400623],[-6.143964,53.40055],[-6.144059,53.400459],[-6.144594,53.400605],[-6.14487,53.400681],[-6.144694,53.400879],[-6.144576,53.401024],[-6.144667,53.40105],[-6.144665,53.401092],[-6.145599,53.401249],[-6.145635,53.401242],[-6.14566,53.401207],[-6.145708,53.401215],[-6.145706,53.401251],[-6.145741,53.401273],[-6.14586,53.401293],[-6.146666,53.401396],[-6.146688,53.40138],[-6.146807,53.400834],[-6.146785,53.400812],[-6.146702,53.400789],[-6.146703,53.400761],[-6.146775,53.400762],[-6.146811,53.400748],[-6.146914,53.400032],[-6.146901,53.400028],[-6.146873,53.400021],[-6.146855,53.400016],[-6.146855,53.400015],[-6.146856,53.399988],[-6.146774,53.399965],[-6.146812,53.399895],[-6.146895,53.399903],[-6.146901,53.3999],[-6.146933,53.399856],[-6.146934,53.399833],[-6.146899,53.399832],[-6.146904,53.399789],[-6.146926,53.399634],[-6.146942,53.399514],[-6.146951,53.399449],[-6.146975,53.399449],[-6.146982,53.399286],[-6.146935,53.399271],[-6.146899,53.39927],[-6.146875,53.399277],[-6.146874,53.399298],[-6.146803,53.399297],[-6.146793,53.399265],[-6.146749,53.399146],[-6.146738,53.399133],[-6.14672,53.399004],[-6.146715,53.3989],[-6.146635,53.398751],[-6.146626,53.398734],[-6.146625,53.398732],[-6.146489,53.398574],[-6.146422,53.39848],[-6.146398,53.398365],[-6.146387,53.398312],[-6.146382,53.398288],[-6.146366,53.398268],[-6.146303,53.398194],[-6.146222,53.398136],[-6.146119,53.398042],[-6.145993,53.39794],[-6.145986,53.397833],[-6.146002,53.397734],[-6.14603,53.397642],[-6.146057,53.397564],[-6.145987,53.39752],[-6.145904,53.397512],[-6.14593,53.397462],[-6.145999,53.397469],[-6.146654,53.397535],[-6.146657,53.397535],[-6.146657,53.397536],[-6.146657,53.397536],[-6.146657,53.397536],[-6.146656,53.397536],[-6.146656,53.397537],[-6.146656,53.397537],[-6.146656,53.397537],[-6.146656,53.397537],[-6.146657,53.397538],[-6.146657,53.397538],[-6.146657,53.397538],[-6.146657,53.397539],[-6.146657,53.397539],[-6.146657,53.397539],[-6.146657,53.397539],[-6.146657,53.39754],[-6.146657,53.39754],[-6.146657,53.39754],[-6.146657,53.39754],[-6.146657,53.397541],[-6.146658,53.397541],[-6.146658,53.397541],[-6.146658,53.397542],[-6.146658,53.397542],[-6.146658,53.397542],[-6.146658,53.397542],[-6.146659,53.397543],[-6.146659,53.397543],[-6.146659,53.397543],[-6.146659,53.397543],[-6.146659,53.397544],[-6.14666,53.397544],[-6.14666,53.397544],[-6.14666,53.397544],[-6.14666,53.397545],[-6.14666,53.397545],[-6.146661,53.397545],[-6.146661,53.397545],[-6.146661,53.397545],[-6.146661,53.397546],[-6.146662,53.397546],[-6.146662,53.397546],[-6.146662,53.397546],[-6.146663,53.397547],[-6.146663,53.397547],[-6.146663,53.397547],[-6.146664,53.397547],[-6.146664,53.397547]]],[[[-6.142933,53.406515],[-6.142164,53.406768],[-6.141941,53.406872],[-6.141769,53.406969],[-6.141638,53.407013],[-6.141444,53.407026],[-6.141212,53.407022],[-6.140774,53.407015],[-6.140544,53.406958],[-6.140377,53.40694],[-6.140262,53.406907],[-6.140202,53.406821],[-6.139937,53.406686],[-6.139662,53.406489],[-6.139234,53.406236],[-6.138909,53.405999],[-6.138728,53.405719],[-6.13855,53.405346],[-6.138427,53.404913],[-6.138362,53.404642],[-6.138381,53.404488],[-6.138374,53.404071],[-6.138382,53.403894],[-6.138582,53.403728],[-6.138779,53.403646],[-6.138975,53.403595],[-6.139443,53.40351],[-6.139849,53.40367],[-6.140286,53.403993],[-6.141203,53.404563],[-6.14155,53.404884],[-6.141964,53.405168],[-6.142658,53.405526],[-6.142783,53.405613],[-6.143186,53.405827],[-6.143242,53.405928],[-6.143294,53.406021],[-6.143288,53.406168],[-6.143283,53.406269],[-6.143282,53.406291],[-6.143186,53.406421],[-6.14295,53.40651],[-6.142933,53.406515]]],[[[-6.148797,53.400482],[-6.148742,53.400742],[-6.148734,53.400779],[-6.148522,53.400765],[-6.148271,53.400749],[-6.148344,53.400436],[-6.148782,53.400481],[-6.148797,53.400482]]],[[[-6.146667,53.397549],[-6.146666,53.397549],[-6.146666,53.397549],[-6.146666,53.397548],[-6.146665,53.397548],[-6.146665,53.397548],[-6.146665,53.397548],[-6.146664,53.397548],[-6.146664,53.397547],[-6.146667,53.397549]]],[[[-6.146671,53.397551],[-6.146667,53.397549],[-6.146667,53.397549],[-6.146667,53.397549],[-6.146668,53.397549],[-6.146671,53.397551]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"240","4_bed":"35","app_date":"11/09/2014","stroke":"#ed3a26","no_of_units":"478","1_bed":"48","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of 478 residential units, comprising 35 no. 4 bedroomed semi-detached 2-storey and 3-storey terraced houses; 27 no. 3 bedroomed 2-storey semi detached and terraced houses; and 40 no. 2 be","reg_date":"","3_bed":"155","5_plus":"","reg_ref":"F03A/1162/E3","fg_date":"","other_total":"478"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.187626,53.244417],[-6.186923,53.243909],[-6.187491,53.243572],[-6.187867,53.243791],[-6.188323,53.244003],[-6.187626,53.244417]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":" ","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"28/11/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"ONGOING","short_desc":"Permission for the demolition of 1 no. habitable dwelling (c.186 sqm gross floor","reg_date":"28/11/2014","3_bed":"11","5_plus":"","reg_ref":"D14A/0766","fg_date":"","other_total":"11"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.104216,53.525621],[-6.104625,53.52563],[-6.104617,53.525764],[-6.10421,53.525754],[-6.104216,53.525621]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"30/11/2010","stroke":"#ed3a26","no_of_units":"10","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions to previously approved Planning Permissions Reg. Ref. F06A/0945, F07A/1374 & F08A/0712 for a residential development. Revisions will include replacing approved house numbers 6 - 10 inclusiv","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"F10A/0501","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.169708,53.194243],[-6.169928,53.194214],[-6.170046,53.194374],[-6.169826,53.194416],[-6.169708,53.194243]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"17/05/2011","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"25/03/2011","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"temporary change of use of commercial offices to use for residential purposes for a period of 3 year...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"114184","fg_date":"","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.266049,53.319402],[-6.26603,53.319365],[-6.266023,53.319351],[-6.266018,53.31934],[-6.266009,53.319315],[-6.266085,53.319315],[-6.266113,53.31939],[-6.266049,53.319402]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"13/01/2010","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"12/11/2009","stroke":"#ed3a26","no_of_units":"1","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolish shed structure & provide 2 storey detached residential unit","reg_date":"12/11/2009","3_bed":"","5_plus":"","reg_ref":"4247/09","fg_date":"25/02/2010","other_total":"1"}},{"geometry":{"type":"Point","coordinates":[-6.179037,53.249565]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"01/10/2008","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"11/04/2008","stroke":"#ed3a26","no_of_units":"3 of 227","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Planning permission is sought for modifications to the residential development","reg_date":"04/09/2008","3_bed":"1","5_plus":"","reg_ref":"D08A/0414","fg_date":"","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.271953,53.401762],[-6.272736,53.401944],[-6.272765,53.40196],[-6.272729,53.401984],[-6.272618,53.402053],[-6.272584,53.402085],[-6.272429,53.402291],[-6.271755,53.402137],[-6.271953,53.401762]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"22/11/2007","fill-opacity":0.5,"2_bed":"25","4_bed":"","app_date":"28/09/2007","stroke":"#ed3a26","no_of_units":"38","1_bed":"13","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Permission for 38 residential units in four storeys","reg_date":"28/09/2007","3_bed":"","5_plus":"","reg_ref":"5488/07","fg_date":"01/05/2008","other_total":"38"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.381829,53.373586],[-6.381868,53.373591],[-6.381866,53.373595],[-6.381816,53.373712],[-6.381812,53.373719],[-6.381761,53.37384],[-6.381745,53.373875],[-6.381447,53.37384],[-6.381374,53.373855],[-6.381371,53.373867],[-6.381289,53.373857],[-6.380966,53.373834],[-6.380872,53.373863],[-6.380783,53.374137],[-6.38078,53.374147],[-6.380735,53.374142],[-6.380735,53.374143],[-6.380696,53.374137],[-6.380607,53.374127],[-6.380614,53.374125],[-6.380625,53.374122],[-6.380643,53.374114],[-6.380656,53.374109],[-6.380658,53.374108],[-6.380683,53.374088],[-6.380689,53.374064],[-6.380776,53.373798],[-6.38076,53.373797],[-6.380763,53.373787],[-6.380828,53.373478],[-6.380966,53.373492],[-6.381035,53.3735],[-6.381126,53.37351],[-6.381289,53.373528],[-6.381482,53.373548],[-6.381759,53.373579],[-6.381829,53.373586]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"22/09/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for demolition of existing single storey outbuildings / stables and the provision of 3 no. two storey detached dwelling houses in the side / southern garden area of existing residential dwe","reg_date":"","3_bed":"","5_plus":"3","reg_ref":"FW09A/0148","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.14301,53.282792],[-6.142731,53.283754],[-6.143568,53.285563],[-6.143718,53.286281],[-6.14301,53.286179],[-6.142945,53.288128],[-6.141036,53.288026],[-6.140907,53.287384],[-6.140327,53.287384],[-6.140177,53.285909],[-6.138997,53.285961],[-6.13904,53.287987],[-6.138804,53.287975],[-6.13874,53.285909],[-6.138868,53.284947],[-6.139491,53.284293],[-6.139641,53.283267],[-6.139662,53.281932],[-6.141701,53.282484],[-6.14301,53.282792]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"08/09/2010","fill-opacity":0.5,"2_bed":"157","4_bed":"64","app_date":"22/12/2009","stroke":"#ed3a26","no_of_units":"384","1_bed":"32","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Planning permission for development which will comprise: a residential developme","reg_date":"12/08/2010","3_bed":"67","5_plus":"64","reg_ref":"D09A/0908","fg_date":"","other_total":"384"}},{"geometry":{"type":"Point","coordinates":[-6.159999,53.282349]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"21/07/2009","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"17/10/2008","stroke":"#ed3a26","no_of_units":"40","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Demolition of existing factory and the construction of 40 residential units and","reg_date":"24/06/2009","3_bed":"","5_plus":"","reg_ref":"D08A/1165","fg_date":"","other_total":"40"}},{"geometry":{"type":"Point","coordinates":[-6.204679,53.271193]},"type":"Feature","properties":{"stroke-opacity":1,"la":null,"fill-opacity":0.5,"stroke":"#ed3a26","reg_ref":"D04A/0994/E","stroke-width":2,"fill":"#555555"}},{"geometry":{"type":"Point","coordinates":[-6.765282,53.550584]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"10/09/2014","fill-opacity":0.5,"2_bed":"","4_bed":"3","app_date":"19/05/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"construction of 3 no. 2 storey 4 bedroom detached residential units including attic storage space. ...","reg_date":"19/05/2014","3_bed":"","5_plus":"","reg_ref":"ta140426","fg_date":"26/08/2014","other_total":"3"}},{"geometry":{"type":"Point","coordinates":[-6.22663,53.296138]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"18/12/2008","fill-opacity":0.5,"2_bed":"73","4_bed":"","app_date":"22/07/2008","stroke":"#ed3a26","no_of_units":"124","1_bed":"12","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"A residential Development with creche comprising 124 no. residential units","reg_date":"21/11/2008","3_bed":"17","5_plus":"22","reg_ref":"D08A/0843","fg_date":"","other_total":"124"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.249828,53.342664],[-6.249472,53.342586],[-6.249388,53.342567],[-6.249442,53.342476],[-6.249536,53.342474],[-6.249518,53.342502],[-6.249836,53.342567],[-6.249817,53.342591],[-6.249872,53.342604],[-6.249828,53.342664]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"24/05/2007","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"12/04/2007","stroke":"#ed3a26","no_of_units":"","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE-Change of use from industrial to office & residential","reg_date":"12/04/2007","3_bed":"","5_plus":"","reg_ref":"2622/07","fg_date":"06/07/2007","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.152843,52.796859],[-6.15281,52.796764],[-6.152687,52.796781],[-6.15273,52.796875],[-6.152843,52.796859]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"25/11/2010","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"28/07/2010","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"change of use of existing offices at first & second floor level into residential use, comprising int...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"10610031","fg_date":"","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.263533,53.329052],[-6.263532,53.329049],[-6.263525,53.328992],[-6.263608,53.328995],[-6.263876,53.329016],[-6.263897,53.329018],[-6.263937,53.32902],[-6.264185,53.329039],[-6.264335,53.329048],[-6.264325,53.329103],[-6.264175,53.329093],[-6.264,53.329082],[-6.263616,53.329056],[-6.263533,53.329052]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"06/10/2014","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"15/08/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from office to residential","reg_date":"15/08/2014","3_bed":"","5_plus":"","reg_ref":"3252/14","fg_date":"NULL","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.123194,53.016745],[-6.122925,53.017739],[-6.121799,53.017707],[-6.121284,53.01923],[-6.123258,53.019372],[-6.125382,53.019366],[-6.124856,53.017701],[-6.123784,53.017701],[-6.123194,53.01772],[-6.12344,53.01681],[-6.123194,53.016745]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"04/04/2011","fill-opacity":0.5,"2_bed":"","4_bed":"15","app_date":"07/12/2010","stroke":"#ed3a26","no_of_units":"60","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"residential and community development comprising 60 houses with 4 house types; connection to public ...","reg_date":"","3_bed":"45","5_plus":"","reg_ref":"103091","fg_date":"","other_total":"60"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.028694,52.975825],[-6.027959,52.976358],[-6.028367,52.976452],[-6.028458,52.976384],[-6.028394,52.976323],[-6.028946,52.975954],[-6.028694,52.975825]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"29/11/2011","fill-opacity":0.5,"2_bed":"","4_bed":"3","app_date":"02/06/2011","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"Demolition of existing residential dwelling and the construction of 3 dwellings of two semi-detached...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"11623439","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.666448,53.236005],[-6.664324,53.236776],[-6.662586,53.23458],[-6.663208,53.234413],[-6.666448,53.236005]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"13/06/2012","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"10/11/2011","stroke":"#ed3a26","no_of_units":"45","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"Full planning permission for a residential development of 45 dwellings at a site on Oldtown Demesne, west o f Sallins Road, and north of Maple Avenue, Naas, Co. Kildare. The development consists of 44","reg_date":"","3_bed":"44","5_plus":"","reg_ref":"11500078","fg_date":"14/07/2012","other_total":"45"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.267341,53.35364],[-6.267032,53.35352],[-6.267081,53.353475],[-6.267143,53.353498],[-6.267198,53.353448],[-6.267378,53.353518],[-6.267453,53.353547],[-6.267393,53.353596],[-6.267341,53.35364]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"21/01/2009","fill-opacity":0.5,"2_bed":"8","4_bed":"","app_date":"14/08/2008","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - mixed use residential / medical consultant use development","reg_date":"23/12/2008","3_bed":"","5_plus":"","reg_ref":"4063/08","fg_date":"31/07/2009","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.162125,53.379692],[-6.162215,53.379973],[-6.162257,53.38017],[-6.161834,53.380218],[-6.161783,53.380222],[-6.161347,53.380274],[-6.161342,53.380251],[-6.161328,53.380252],[-6.161287,53.380082],[-6.161053,53.380099],[-6.161046,53.380075],[-6.160923,53.380084],[-6.160887,53.379876],[-6.160855,53.379691],[-6.160831,53.379556],[-6.160797,53.37936],[-6.161086,53.379335],[-6.161711,53.379289],[-6.161737,53.379292],[-6.161819,53.379293],[-6.161862,53.379293],[-6.161941,53.379604],[-6.162104,53.379615],[-6.162115,53.379656],[-6.162125,53.379692]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"09/10/2008","fill-opacity":0.5,"2_bed":"55","4_bed":"","app_date":"15/08/2008","stroke":"#ed3a26","no_of_units":"","1_bed":"14","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - modifications to the residential development permitted","reg_date":"15/08/2008","3_bed":"9","5_plus":"","reg_ref":"4078/08","fg_date":"18/11/2008","other_total":"78"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.295182,53.342696],[-6.295235,53.342739],[-6.295195,53.342775],[-6.295207,53.342781],[-6.294973,53.342877],[-6.294735,53.342588],[-6.294868,53.342547],[-6.294837,53.342512],[-6.294819,53.342518],[-6.294799,53.342491],[-6.295104,53.342404],[-6.295161,53.34249],[-6.295126,53.34251],[-6.295264,53.342671],[-6.295182,53.342696]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"10/08/2009","fill-opacity":0.5,"2_bed":"5","4_bed":"","app_date":"10/12/2008","stroke":"#ed3a26","no_of_units":"","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construct 1no. residential block as part of overall development ref. no. 6012/07","reg_date":"17/07/2009","3_bed":"4","5_plus":"","reg_ref":"5282/08","fg_date":"18/09/2009","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.244757,53.364641],[-6.244786,53.364622],[-6.244939,53.364696],[-6.244992,53.364656],[-6.245012,53.364632],[-6.245044,53.364604],[-6.245075,53.364573],[-6.245117,53.364546],[-6.245187,53.364591],[-6.245282,53.364534],[-6.24521,53.364489],[-6.245303,53.364433],[-6.245557,53.364592],[-6.245542,53.364616],[-6.245522,53.364632],[-6.245395,53.364736],[-6.245357,53.364722],[-6.245161,53.364888],[-6.245026,53.364828],[-6.244782,53.36504],[-6.244407,53.365365],[-6.244177,53.365278],[-6.244163,53.365291],[-6.243909,53.365197],[-6.24462,53.364583],[-6.244757,53.364641]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"29/07/2009","fill-opacity":0.5,"2_bed":"51","4_bed":"","app_date":"02/03/2009","stroke":"#ed3a26","no_of_units":"","1_bed":"12","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential development consisting of three blocks over basement carpark","reg_date":"02/07/2009","3_bed":"13","5_plus":"1","reg_ref":"2443/09","fg_date":"12/05/2010","other_total":"77"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.246223,53.370946],[-6.243407,53.370358],[-6.244408,53.368505],[-6.244478,53.368396],[-6.246205,53.368473],[-6.246488,53.368184],[-6.24896,53.368923],[-6.248735,53.369096],[-6.24866,53.369088],[-6.248592,53.369133],[-6.248602,53.369165],[-6.247679,53.370193],[-6.247577,53.370282],[-6.247574,53.370354],[-6.247299,53.370695],[-6.247164,53.370816],[-6.247028,53.370944],[-6.246772,53.371077],[-6.246231,53.371271],[-6.245725,53.371407],[-6.245684,53.371354],[-6.246234,53.371206],[-6.246388,53.37115],[-6.246391,53.371078],[-6.246288,53.370953],[-6.246223,53.370946]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"15/01/2010","fill-opacity":0.5,"2_bed":"178","4_bed":"","app_date":"25/05/2009","stroke":"#ed3a26","no_of_units":"","1_bed":"65","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE-10 yr permission for educational/institutional/residential","reg_date":"10/12/2009","3_bed":"116","5_plus":"","reg_ref":"3095/09","fg_date":"13/08/2010","other_total":"359"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.274513,53.337739],[-6.274481,53.337726],[-6.274432,53.337703],[-6.274375,53.337678],[-6.274374,53.337683],[-6.274178,53.337607],[-6.274256,53.337533],[-6.274234,53.337489],[-6.274379,53.337385],[-6.274452,53.337342],[-6.274562,53.337281],[-6.274531,53.33713],[-6.274699,53.337138],[-6.274753,53.337155],[-6.274868,53.337082],[-6.274913,53.33709],[-6.274947,53.337108],[-6.275006,53.33717],[-6.275106,53.337297],[-6.274909,53.337455],[-6.274894,53.337465],[-6.274832,53.337432],[-6.274782,53.337465],[-6.274848,53.337499],[-6.274557,53.337708],[-6.274513,53.337739]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"16/07/2009","fill-opacity":0.5,"2_bed":"13","4_bed":"","app_date":"26/05/2009","stroke":"#ed3a26","no_of_units":"","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE-Development of office/residential/commmercial space","reg_date":"26/05/2009","3_bed":"7","5_plus":"","reg_ref":"3099/09","fg_date":"02/09/2009","other_total":"24"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.195919,53.360707],[-6.195915,53.360703],[-6.195975,53.360703],[-6.195983,53.360692],[-6.196698,53.360757],[-6.19678,53.360762],[-6.196811,53.360812],[-6.197137,53.360837],[-6.19712,53.360897],[-6.197142,53.360899],[-6.197091,53.36105],[-6.197102,53.361054],[-6.196965,53.36158],[-6.196927,53.361579],[-6.196875,53.361578],[-6.196723,53.361565],[-6.196684,53.361538],[-6.196754,53.36102],[-6.195982,53.360977],[-6.195982,53.360975],[-6.195874,53.360969],[-6.195919,53.360707]]],[[[-6.196912,53.36177],[-6.196734,53.36175],[-6.196653,53.361746],[-6.196666,53.361604],[-6.196889,53.361616],[-6.196944,53.361628],[-6.196912,53.36177]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"04/08/2010","fill-opacity":0.5,"2_bed":"2","4_bed":"4","app_date":"11/11/2009","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of a residential development approved application ref. 4754/06","reg_date":"12/07/2010","3_bed":"14","5_plus":"4","reg_ref":"4245/09","fg_date":"NULL","other_total":"24"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.103163,53.005423],[-6.104032,53.00459],[-6.105019,53.003925],[-6.106156,53.00326],[-6.106886,53.002795],[-6.105845,53.002369],[-6.10415,53.001659],[-6.102744,53.002634],[-6.104032,53.003325],[-6.103506,53.003712],[-6.102347,53.004668],[-6.102122,53.004823],[-6.103163,53.005423]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"20/02/2013","fill-opacity":0.5,"2_bed":"23","4_bed":"47","app_date":"02/01/2013","stroke":"#ed3a26","no_of_units":"142","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"UNCONDITIONAL","short_desc":"extend the appropriate period of a permission - 07/391 - 142 no. residential units, with a total res...","reg_date":"","3_bed":"63","5_plus":"10","reg_ref":"138001","fg_date":"","other_total":"143"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.682187,53.655601],[-6.682311,53.655499],[-6.682842,53.655633],[-6.682718,53.655779],[-6.682187,53.655601]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"06/08/2013","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"05/04/2013","stroke":"#ed3a26","no_of_units":"5","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"change of use of existing 5 no. ground floor commercial units to 5 no. residential units (4 no. 2 be...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"NT130019","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.909885,53.157248],[-6.910068,53.157155],[-6.909944,53.157058],[-6.909869,53.157094],[-6.909918,53.157139],[-6.909794,53.1572],[-6.909885,53.157248]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"16/01/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"03/09/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"Change of use at first floor level from offices to residential","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"13687","fg_date":"17/02/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.244,53.697894],[-6.243185,53.698047],[-6.243024,53.697736],[-6.243807,53.697615],[-6.244,53.697894]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"09/02/2012","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"08/06/2011","stroke":"#ed3a26","no_of_units":"17","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"change of use from hotel to residential apartment units for part of ground floor, first floor and se...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"SA110547","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.268307,53.335575],[-6.26829,53.335523],[-6.268471,53.335509],[-6.268707,53.335495],[-6.268715,53.33555],[-6.268307,53.335575]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"31/03/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"06/02/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE-change of use from factory/wkshop to residential","reg_date":"06/02/2014","3_bed":"1","5_plus":"","reg_ref":"2156/14","fg_date":"08/05/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.207791,53.326031],[-6.208009,53.325992],[-6.208021,53.32599],[-6.208167,53.325964],[-6.208349,53.325932],[-6.208381,53.325992],[-6.208292,53.326008],[-6.208052,53.326049],[-6.20783,53.326089],[-6.207794,53.326035],[-6.207791,53.326031]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"28/03/2014","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"07/02/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from office to residential","reg_date":"07/02/2014","3_bed":"","5_plus":"","reg_ref":"2180/14","fg_date":"06/05/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.265568,53.33303],[-6.265397,53.333041],[-6.265288,53.333049],[-6.265127,53.333058],[-6.265099,53.332937],[-6.265372,53.332919],[-6.265538,53.332907],[-6.265568,53.33303]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"22/04/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"26/02/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from office to residential","reg_date":"26/02/2014","3_bed":"1","5_plus":"","reg_ref":"2278/14","fg_date":"05/06/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.195394,53.363055],[-6.195383,53.363054],[-6.1948,53.363045],[-6.194808,53.362986],[-6.194816,53.362979],[-6.194834,53.362967],[-6.194859,53.36296],[-6.19487,53.36296],[-6.194958,53.362959],[-6.194958,53.362968],[-6.194992,53.362968],[-6.194991,53.362959],[-6.195167,53.362959],[-6.1954,53.362969],[-6.195405,53.36297],[-6.195394,53.363055]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"15/05/2014","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"24/03/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Minor changes to residential dwelling granted under Reg Ref: 4215/09","reg_date":"24/03/2014","3_bed":"","5_plus":"","reg_ref":"2413/14","fg_date":"25/06/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.271733,53.312599],[-6.271737,53.312598],[-6.271787,53.312588],[-6.271904,53.312564],[-6.271912,53.312614],[-6.271909,53.312672],[-6.271908,53.312687],[-6.271907,53.312717],[-6.271814,53.312721],[-6.271771,53.312723],[-6.271757,53.312678],[-6.271751,53.312658],[-6.271733,53.312599]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"14/07/2014","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"21/05/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from commercial to residential use","reg_date":"21/05/2014","3_bed":"","5_plus":"","reg_ref":"2704/14","fg_date":"25/08/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.260013,53.343422],[-6.259935,53.343391],[-6.260206,53.343133],[-6.260284,53.343163],[-6.260016,53.343419],[-6.260013,53.343422]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"15/07/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"23/05/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from commercial to residential of the front building etc.","reg_date":"23/05/2014","3_bed":"","5_plus":"","reg_ref":"2718/14","fg_date":"09/08/2014","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.308981,53.342386],[-6.308833,53.342387],[-6.308828,53.342265],[-6.308981,53.342266],[-6.30898,53.342382],[-6.308981,53.342386]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"22/07/2014","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"28/05/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of Use from 1 bed live/work unit to 2 bed residential apartment to inclu","reg_date":"28/05/2014","3_bed":"","5_plus":"","reg_ref":"WEB1152/14","fg_date":"01/09/2014","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.24183,53.333236],[-6.241903,53.333257],[-6.241942,53.33327],[-6.242088,53.333313],[-6.242016,53.3334],[-6.242003,53.333418],[-6.241977,53.333448],[-6.241956,53.333442],[-6.241829,53.333406],[-6.241716,53.333375],[-6.241791,53.333282],[-6.24183,53.333236]]]]},"type":"Feature","properties":{"status":"Decision Appealed","":"","deision_date":"01/08/2014","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"10/06/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from office to residential use","reg_date":"10/06/2014","3_bed":"","5_plus":"","reg_ref":"2834/14","fg_date":"NULL","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.254395,53.337327],[-6.254523,53.33736],[-6.254569,53.337373],[-6.254543,53.337407],[-6.254527,53.337428],[-6.25447,53.337414],[-6.254354,53.337382],[-6.254335,53.337377],[-6.254352,53.337352],[-6.254373,53.337357],[-6.254394,53.337328],[-6.254395,53.337327]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"12/08/2014","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"19/06/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from office to residential","reg_date":"19/06/2014","3_bed":"","5_plus":"","reg_ref":"2905/14","fg_date":"22/09/2014","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.264034,53.390141],[-6.264021,53.390139],[-6.263675,53.390095],[-6.263137,53.390018],[-6.2632,53.389409],[-6.263634,53.389432],[-6.263608,53.389497],[-6.263819,53.389533],[-6.263824,53.389525],[-6.264079,53.389564],[-6.264071,53.38958],[-6.264284,53.389611],[-6.264253,53.389669],[-6.264231,53.389667],[-6.264034,53.390141]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"29/08/2014","fill-opacity":0.5,"2_bed":"16","4_bed":"11","app_date":"08/07/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"8","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of residential development to complete partly constructed 3209/06","reg_date":"08/07/2014","3_bed":"7","5_plus":"","reg_ref":"3021/14","fg_date":"10/10/2014","other_total":"42"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.244416,53.342393],[-6.244366,53.342476],[-6.244348,53.342474],[-6.244374,53.342403],[-6.244319,53.342398],[-6.244141,53.342373],[-6.244049,53.342365],[-6.244072,53.342281],[-6.244206,53.342324],[-6.244328,53.342364],[-6.244412,53.342391],[-6.244416,53.342393]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"27/08/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"08/07/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"ADDITIONAL INFORMATION","short_desc":"Change of use from commercial to residential use","reg_date":"08/07/2014","3_bed":"1","5_plus":"","reg_ref":"3020/14","fg_date":"NULL","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.097547,53.533738],[-6.097478,53.533923],[-6.09716,53.533863],[-6.096959,53.533829],[-6.096914,53.533821],[-6.09683,53.533807],[-6.096719,53.533782],[-6.096486,53.533736],[-6.096051,53.533632],[-6.096057,53.533572],[-6.096083,53.533466],[-6.096092,53.533428],[-6.096118,53.533316],[-6.09617,53.533105],[-6.096237,53.532889],[-6.09631,53.532705],[-6.096338,53.532634],[-6.096515,53.532224],[-6.09666,53.532248],[-6.096979,53.532305],[-6.097117,53.532336],[-6.097146,53.532346],[-6.097156,53.532353],[-6.097232,53.532372],[-6.097247,53.532369],[-6.09731,53.532377],[-6.097328,53.53238],[-6.09718,53.532846],[-6.097847,53.53295],[-6.097562,53.5337],[-6.097558,53.53371],[-6.097547,53.533738]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"27","4_bed":"18","app_date":"21/12/2011","stroke":"#ed3a26","no_of_units":"14","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development consisting of 4 detached 4 bedroom two storey houses, 14 semi-detached two and a half storey 4 bedroom houses, 2 semi-detached two storey 3 bedroom houses, 11 terraced two stor","reg_date":"","3_bed":"13","5_plus":"","reg_ref":"F06A/0775/E1","fg_date":"","other_total":"58"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.093748,53.522306],[-6.093746,53.522317],[-6.09371,53.5224],[-6.093692,53.52244],[-6.093692,53.522441],[-6.093669,53.522495],[-6.093648,53.522491],[-6.093489,53.522466],[-6.093502,53.522434],[-6.093571,53.522276],[-6.093741,53.522305],[-6.093748,53.522306]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"30/06/2014","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Change of use from commercial to commercial/part residential to accommodate: A. 2 no. two bedroomed self contained apartments at first floor level. B. Roof garden to rear. C. Bin storage and necessa","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F14A/0263","fg_date":"","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.114181,53.094675],[-6.114256,53.094124],[-6.113833,53.094111],[-6.113795,53.094771],[-6.114181,53.094675]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"27/03/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"18/02/2014","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"for a residential development comprising 4 no. 90sqm 2 storey semi detached dwellings each with 15sq...","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"141117","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.329257,53.272159],[-6.328305,53.272078],[-6.328332,53.271913],[-6.328779,53.271733],[-6.329152,53.272043],[-6.329257,53.272159]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"14/12/2007","fill-opacity":0.5,"2_bed":"0","4_bed":"0","app_date":"12/09/2007","stroke":"#ed3a26","no_of_units":"182","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT PERMISSION","short_desc":"Amendments to previously approved 3 storey building with cr\u00e8che facility of 361sqm with 1 no. duplex unit over which was approved as part of an overall development of 182 residential units known as \"D","reg_date":"","3_bed":"182","5_plus":"0","reg_ref":"SD07A/0740","fg_date":"06/02/2008","other_total":"183"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.184069,53.612517],[-6.183553,53.612706],[-6.183548,53.612699],[-6.183373,53.612543],[-6.183366,53.612536],[-6.183333,53.612504],[-6.183323,53.612506],[-6.183294,53.612512],[-6.18328,53.612511],[-6.183265,53.612509],[-6.183258,53.612507],[-6.183239,53.612489],[-6.183232,53.612483],[-6.1832,53.612453],[-6.183193,53.612457],[-6.183149,53.612406],[-6.183074,53.612323],[-6.18306,53.612308],[-6.183052,53.612299],[-6.182982,53.61222],[-6.182958,53.612193],[-6.182963,53.612191],[-6.183383,53.612031],[-6.183392,53.612027],[-6.183447,53.612008],[-6.18376,53.612312],[-6.183985,53.612351],[-6.183983,53.612407],[-6.184069,53.612517]],[[-6.183329,53.612504],[-6.183333,53.612503],[-6.183317,53.612507],[-6.183329,53.612504]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"15","4_bed":"","app_date":"20/11/2007","stroke":"#ed3a26","no_of_units":"15","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of extension and alteration of 'Marian House', a protected structure, and change of use from a school related use to residential use. This would comprise a total of 15 tw","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F07A/1509","fg_date":"","other_total":"15"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.106136,53.581463],[-6.106291,53.581448],[-6.10629,53.581475],[-6.106302,53.581516],[-6.106308,53.581568],[-6.106316,53.581606],[-6.10633,53.581645],[-6.106328,53.581646],[-6.106328,53.581647],[-6.106334,53.581668],[-6.106336,53.581675],[-6.106346,53.581703],[-6.10635,53.581714],[-6.106351,53.581718],[-6.106355,53.581742],[-6.106094,53.581704],[-6.106005,53.581683],[-6.105944,53.581659],[-6.105865,53.581613],[-6.105811,53.581567],[-6.105783,53.581543],[-6.105765,53.581521],[-6.105754,53.581502],[-6.106124,53.581464],[-6.106136,53.581463]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"10","4_bed":"","app_date":"08/02/2008","stroke":"#ed3a26","no_of_units":"11","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To construct a residential development on a site 0.089 hectare consisting of 1 no. block ranging from 2 to 3 storey over basement with 11 no. apartments with 10 no. 2 beds and 1 no. 3 bed duplex with","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"F07A/1280","fg_date":"","other_total":"11"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.165555,53.454849],[-6.165554,53.454849],[-6.165495,53.454943],[-6.165481,53.454959],[-6.165421,53.454945],[-6.165355,53.454973],[-6.165176,53.454936],[-6.165513,53.454465],[-6.165749,53.454545],[-6.165642,53.454712],[-6.165582,53.454806],[-6.165555,53.454849]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"17/06/2008","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of two storey private residential house and swimming pool to rear and erection of two 3-bedroom detached two-storey private residential houses (area 190m\u00b2 each) with first floor terraces to","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/0752","fg_date":"","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.43915,53.335163],[-6.439133,53.335298],[-6.439065,53.335403],[-6.439032,53.335518],[-6.439011,53.335651],[-6.437788,53.335618],[-6.437785,53.335594],[-6.437584,53.335581],[-6.437583,53.335608],[-6.437165,53.335595],[-6.437219,53.335114],[-6.438068,53.335127],[-6.439066,53.33516],[-6.43915,53.335163]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"31/01/2008","fill-opacity":0.5,"2_bed":"10","4_bed":"0","app_date":"22/08/2007","stroke":"#ed3a26","no_of_units":"12","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT PERMISSION","short_desc":"12 no. residential apartments comprising 1 no. one bedroom, 1 no. 3 bedroom and 10 no. 2 bedroom units, arranged as a 2 and 3 storey structure, laid out in 2 no. blocks, along with access roads, car p","reg_date":"","3_bed":"1","5_plus":"0","reg_ref":"SD07A/0683","fg_date":"11/03/2008","other_total":"12"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.361083,53.38096],[-6.361061,53.381005],[-6.361059,53.38101],[-6.360998,53.381137],[-6.360935,53.381269],[-6.360513,53.381266],[-6.360476,53.381277],[-6.359895,53.38127],[-6.359884,53.381257],[-6.359957,53.381147],[-6.360016,53.381063],[-6.36006,53.380986],[-6.36023,53.380734],[-6.360302,53.380752],[-6.360361,53.380745],[-6.360513,53.380666],[-6.360507,53.380689],[-6.360564,53.380701],[-6.36059,53.380682],[-6.360641,53.380695],[-6.360794,53.380728],[-6.360798,53.380776],[-6.360843,53.380787],[-6.36089,53.38075],[-6.361155,53.380808],[-6.361083,53.38096]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"33","4_bed":"","app_date":"22/10/2008","stroke":"#ed3a26","no_of_units":"43","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A 0.404 hectare site located at Old Navan Road. The proposed development comprises the demolition of 2 existing dwellings and associated structures and the construction of 43 residential units in a si","reg_date":"","3_bed":"9","5_plus":"","reg_ref":"F08A/0708","fg_date":"","other_total":"43"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.165555,53.454849],[-6.165554,53.454849],[-6.165495,53.454943],[-6.165481,53.454959],[-6.165421,53.454945],[-6.165355,53.454973],[-6.165176,53.454936],[-6.165513,53.454465],[-6.165749,53.454545],[-6.165642,53.454712],[-6.165582,53.454806],[-6.165555,53.454849]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"17/06/2008","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of two storey private residential house and swimming pool to rear and erection of two 3-bedroom detached two-storey private residential houses (area 190m\u00b2 each) with first floor terraces to","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/0752","fg_date":"","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.29956,53.488824],[-6.299547,53.488948],[-6.299544,53.488973],[-6.299521,53.4892],[-6.299196,53.48924],[-6.299089,53.488957],[-6.298954,53.488976],[-6.298743,53.488983],[-6.298403,53.489073],[-6.298262,53.489227],[-6.298231,53.489367],[-6.298215,53.489562],[-6.297976,53.489546],[-6.297988,53.489414],[-6.298029,53.489043],[-6.298031,53.489023],[-6.298031,53.489022],[-6.298076,53.488646],[-6.298209,53.488664],[-6.298268,53.488645],[-6.298374,53.488541],[-6.29851,53.488503],[-6.298661,53.4885],[-6.298778,53.488541],[-6.298943,53.48881],[-6.299206,53.488783],[-6.299399,53.488776],[-6.29956,53.488824]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"30/01/2009","stroke":"#ed3a26","no_of_units":"6","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions and modifications to the approved mixed residential development (Planning Refs F05A/1878 & PL06F.222753) to provide a total of 6 no. additional houses. Revisions include the replacement of","reg_date":"","3_bed":"8","5_plus":"","reg_ref":"F09A/0045","fg_date":"","other_total":"20"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.141029,53.449721],[-6.141026,53.449725],[-6.140916,53.44984],[-6.140584,53.449699],[-6.140588,53.449672],[-6.140545,53.449654],[-6.140503,53.449665],[-6.140615,53.449571],[-6.14068,53.449515],[-6.140723,53.449483],[-6.140838,53.449392],[-6.141039,53.449222],[-6.141266,53.449295],[-6.141399,53.449334],[-6.141029,53.449721]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"25/02/2010","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To demolish the existing bungalow on the site and to construct a four storey over basement - which includes penthouse level - residential block with six x three bedroom apartments and two x two bedroo","reg_date":"","3_bed":"6","5_plus":"","reg_ref":"F09A/0361","fg_date":"","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.316294,53.519814],[-6.31626,53.519906],[-6.31623,53.519983],[-6.316196,53.520074],[-6.316193,53.520161],[-6.316182,53.520229],[-6.31611,53.520406],[-6.316072,53.520537],[-6.316045,53.520609],[-6.315975,53.520724],[-6.315957,53.520772],[-6.315877,53.520964],[-6.315824,53.52107],[-6.315763,53.52118],[-6.31571,53.521286],[-6.315636,53.521517],[-6.315473,53.521519],[-6.315319,53.521527],[-6.315205,53.52154],[-6.315083,53.521548],[-6.314953,53.521555],[-6.314864,53.521549],[-6.314671,53.521498],[-6.314682,53.521426],[-6.314909,53.521424],[-6.314989,53.521242],[-6.314852,53.521225],[-6.314872,53.521143],[-6.314961,53.521149],[-6.315124,53.520707],[-6.314963,53.52069],[-6.315091,53.520329],[-6.315236,53.520346],[-6.315464,53.519711],[-6.315682,53.519738],[-6.316102,53.519792],[-6.316294,53.519814],[-6.316294,53.519814]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"08/09/2010","stroke":"#ed3a26","no_of_units":"31","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development comprising of 31 terraced two storey houses. Houses not exceeding 8.7 metres height. The development involves the removal of existing hedge row along the road on the western","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/0389/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.252323,53.446673],[-6.251913,53.447232],[-6.252261,53.447322],[-6.252044,53.44784],[-6.252407,53.447884],[-6.25198,53.44877],[-6.250743,53.448498],[-6.250799,53.448303],[-6.250934,53.448002],[-6.251675,53.446596],[-6.252291,53.446496],[-6.252323,53.446673]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"8","4_bed":"12","app_date":"14/06/2011","stroke":"#ed3a26","no_of_units":"53","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of 53 no. 2 storey houses on a site area of 1.54ha, which will form part of Phase 8 of an overall development known as Ridgewood. The proposed development consist","reg_date":"","3_bed":"33","5_plus":"","reg_ref":"F10A/0535","fg_date":"","other_total":"53"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.293486,53.407471],[-6.293412,53.407476],[-6.293314,53.407482],[-6.29311,53.407498],[-6.292038,53.407554],[-6.290888,53.407615],[-6.290399,53.407645],[-6.290165,53.407657],[-6.2899,53.407672],[-6.289912,53.407541],[-6.289921,53.407495],[-6.289951,53.40732],[-6.289983,53.407098],[-6.290028,53.406845],[-6.290063,53.406597],[-6.290148,53.406615],[-6.290241,53.406628],[-6.29027,53.406655],[-6.290324,53.406662],[-6.290371,53.406643],[-6.290525,53.406662],[-6.290777,53.406677],[-6.290977,53.406681],[-6.291141,53.406678],[-6.291402,53.406676],[-6.291398,53.406701],[-6.291457,53.406704],[-6.291461,53.406681],[-6.291509,53.406669],[-6.291708,53.406669],[-6.291905,53.406672],[-6.292011,53.406672],[-6.292184,53.406669],[-6.2925,53.406654],[-6.292768,53.40664],[-6.293208,53.406638],[-6.293425,53.406649],[-6.293668,53.406671],[-6.293758,53.406685],[-6.293782,53.406687],[-6.2938,53.406688],[-6.293817,53.406693],[-6.293918,53.406716],[-6.293926,53.406757],[-6.293858,53.406787],[-6.293676,53.406969],[-6.293566,53.407182],[-6.293486,53.407471]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"71","4_bed":"8","app_date":"24/02/2011","stroke":"#ed3a26","no_of_units":"162","1_bed":"13","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of 2 no. existing dormer bungalow dwellings and the removal of existing trees and hedgerows. The construction of 162 no. residential units (69 no. Apartments 44 no. Duplexes, 49 no. terrac","reg_date":"","3_bed":"70","5_plus":"","reg_ref":"F05A/0600/E1","fg_date":"","other_total":"162"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.107347,53.204661],[-6.107406,53.204921],[-6.107529,53.204905],[-6.10746,53.204651],[-6.107347,53.204661]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/07/2013","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"04/06/2013","stroke":"#ed3a26","no_of_units":"3","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"change of use from office and storage for shop to 3 no. residential living units on portion of upper...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"13630054","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.179284,53.249154],[-6.17879,53.249167],[-6.178232,53.249546],[-6.178415,53.249726],[-6.178157,53.250304],[-6.178662,53.250368],[-6.179262,53.249906],[-6.179734,53.249751],[-6.180003,53.249495],[-6.179284,53.249154]]]]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"13/10/2009","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"21/09/2009","stroke":"#ed3a26","no_of_units":"227","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT EXTENSION OF DURATION OF PERM.","short_desc":"227 no. residential units and creche on lands measuring 3.9 hectares,","reg_date":"21/09/2009","3_bed":"","5_plus":"","reg_ref":"D04A/0327/E","fg_date":"","other_total":"227"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.319719,53.523568],[-6.319776,53.523571],[-6.320071,53.523584],[-6.320085,53.523799],[-6.320086,53.523807],[-6.320094,53.523925],[-6.320116,53.524306],[-6.320114,53.524613],[-6.320105,53.524816],[-6.31966,53.524765],[-6.319662,53.524765],[-6.319689,53.524591],[-6.319705,53.52449],[-6.319706,53.524486],[-6.319707,53.524479],[-6.319709,53.524465],[-6.319712,53.524444],[-6.31972,53.524388],[-6.319724,53.524326],[-6.31973,53.524236],[-6.319735,53.524155],[-6.319736,53.524145],[-6.31974,53.524083],[-6.319743,53.524031],[-6.319746,53.523978],[-6.319747,53.523971],[-6.319748,53.523928],[-6.319748,53.523875],[-6.319749,53.523813],[-6.319751,53.523719],[-6.319752,53.523675],[-6.319719,53.523568]]]]},"type":"Feature","properties":{"status":"FI","":"","deision_date":"","fill-opacity":0.5,"2_bed":"3","4_bed":"","app_date":"19/09/2014","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"3 no. storey & a half dwellings with two domestic garages, existing field gate adapted to residential vehicular entrance and all associated site works.","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F14A/0387","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.143849,53.491523],[-6.143768,53.491678],[-6.14069,53.491082],[-6.140983,53.490901],[-6.141788,53.490363],[-6.141928,53.490389],[-6.142078,53.490416],[-6.142122,53.490424],[-6.142176,53.490433],[-6.142819,53.49055],[-6.143772,53.490732],[-6.144219,53.49082],[-6.143889,53.491447],[-6.143849,53.491523]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"12/12/2012","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development, consisting of 5 no. two storey, five bedroom detached houses with attic conversions and 40 no. semi detached houses with attic conversions with associated on curtilage parki","reg_date":"","3_bed":"40","5_plus":"5","reg_ref":"F06A/1496/E1","fg_date":"","other_total":"45"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.106682,53.21197],[-6.105233,53.212066],[-6.104761,53.211526],[-6.10445,53.211064],[-6.104364,53.210839],[-6.106199,53.210575],[-6.106682,53.21197]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"16/07/2008","fill-opacity":0.5,"2_bed":"177","4_bed":"","app_date":"26/10/2007","stroke":"#ed3a26","no_of_units":"348","1_bed":"46","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"348 No. residential units comprising:- 46 No. 1 bed apartments, 171 No. 2 bed","reg_date":"22/05/2008","3_bed":"125","5_plus":"","reg_ref":"D07A/1495","fg_date":"","other_total":"348"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.177412,53.408427],[-6.177419,53.408447],[-6.177207,53.408452],[-6.177106,53.408454],[-6.17711,53.408446],[-6.177111,53.408371],[-6.177106,53.408371],[-6.177107,53.408349],[-6.177059,53.408108],[-6.177809,53.408066],[-6.17781,53.408067],[-6.177917,53.408061],[-6.177942,53.408149],[-6.178,53.40836],[-6.178013,53.408394],[-6.177987,53.408395],[-6.177987,53.408396],[-6.177412,53.408427]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"3","app_date":"01/08/2014","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of a residential development all comprising 5 no. two storey houses with 1 no. detached 4 bedroom house, 2 no. semi-detached 4 bedroom houses and 2 no. semi-detached 3 bedroom houses. Pe","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"F14A/0308","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.177412,53.408427],[-6.177419,53.408447],[-6.177207,53.408452],[-6.177106,53.408454],[-6.17711,53.408446],[-6.177111,53.408371],[-6.177106,53.408371],[-6.177107,53.408349],[-6.177059,53.408108],[-6.177809,53.408066],[-6.17781,53.408067],[-6.177917,53.408061],[-6.177942,53.408149],[-6.178,53.40836],[-6.178013,53.408394],[-6.177987,53.408395],[-6.177987,53.408396],[-6.177412,53.408427]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"3","app_date":"01/08/2014","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of a residential development all comprising 5 no. two storey houses with 1 no. detached 4 bedroom house, 2 no. semi-detached 4 bedroom houses and 2 no. semi-detached 3 bedroom houses. Pe","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"F14A/0308","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-7.071569,53.137329],[-7.070432,53.136319],[-7.071065,53.136113],[-7.071923,53.136911],[-7.071569,53.137329]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"04/08/2009","fill-opacity":0.5,"2_bed":"14","4_bed":"","app_date":"15/11/2007","stroke":"#ed3a26","no_of_units":"22","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"(a) Demolition of existing bungalow and sheds, (b) residential and commercial development consisting of 22 no. units in total as follows: Block A: Dormer style commercial building consisting of 3no. s","reg_date":"","3_bed":"8","5_plus":"","reg_ref":"072648","fg_date":"28/09/2009","other_total":"22"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.114442,53.391015],[-6.114334,53.390977],[-6.114316,53.390973],[-6.114295,53.390977],[-6.114275,53.390985],[-6.113917,53.391342],[-6.113902,53.391368],[-6.114397,53.391569],[-6.114382,53.391583],[-6.114096,53.391843],[-6.114083,53.391855],[-6.113618,53.391842],[-6.113123,53.391829],[-6.113161,53.391795],[-6.113547,53.391394],[-6.113582,53.391358],[-6.113642,53.391297],[-6.113714,53.391221],[-6.113798,53.391137],[-6.114068,53.39086],[-6.114074,53.390862],[-6.114074,53.390863],[-6.114169,53.390896],[-6.11446,53.390996],[-6.114452,53.391005],[-6.114442,53.391015]]]]},"type":"Feature","properties":{"status":"FI","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"6","app_date":"09/09/2014","stroke":"#ed3a26","no_of_units":"6","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development of 6 no. dwellings comprising 5 no. two storey detached dwellings and 1 no. two and a half storey detached dwelling all with associated car parking spaces. Permission is also","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F14A/0368","fg_date":"","other_total":"6"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.252719,53.447855],[-6.251777,53.447706],[-6.251739,53.447658],[-6.251857,53.447427],[-6.251858,53.447353],[-6.252269,53.44655],[-6.252257,53.446454],[-6.252451,53.446427],[-6.25302,53.446401],[-6.253394,53.446403],[-6.253438,53.446404],[-6.253437,53.446436],[-6.253178,53.446951],[-6.252719,53.447855]]],[[[-6.252657,53.448879],[-6.251945,53.448757],[-6.252158,53.448218],[-6.252527,53.448266],[-6.252657,53.448879]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"16","app_date":"16/07/2014","stroke":"#ed3a26","no_of_units":"44","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of a residential development consisting of 44 no. 2 storey houses forming Phase 8B of an overall development at Ridgewood. The development consists of 16 no.4 bed semi-detached houses, 12","reg_date":"","3_bed":"28","5_plus":"","reg_ref":"F14A/0054","fg_date":"","other_total":"44"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.14558,53.443644],[-6.145347,53.443649],[-6.145157,53.443656],[-6.14513,53.443657],[-6.145134,53.443611],[-6.145133,53.44353],[-6.145066,53.443319],[-6.145043,53.443249],[-6.145039,53.443249],[-6.144998,53.443],[-6.144923,53.442674],[-6.14492,53.442607],[-6.144797,53.442079],[-6.144795,53.44206],[-6.144789,53.442038],[-6.14478,53.442003],[-6.14478,53.441964],[-6.14479,53.441941],[-6.145119,53.441958],[-6.145537,53.441981],[-6.145546,53.441983],[-6.145565,53.442002],[-6.145559,53.442056],[-6.145489,53.442055],[-6.145499,53.442163],[-6.145497,53.442252],[-6.14549,53.44228],[-6.145493,53.442327],[-6.145493,53.442469],[-6.145475,53.44257],[-6.14564,53.442583],[-6.145611,53.442684],[-6.145611,53.442685],[-6.145615,53.44273],[-6.145626,53.44287],[-6.145621,53.443021],[-6.145617,53.44311],[-6.145641,53.443109],[-6.145645,53.44341],[-6.145655,53.443643],[-6.145634,53.443643],[-6.14558,53.443644]]]]},"type":"Feature","properties":{"status":"Pending","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"14","app_date":"30/09/2014","stroke":"#ed3a26","no_of_units":"14","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development comprising 14 two storey houses (total floor area 2,658sq.m.) and associated open space car parking, roads and infrastructure works.","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F14A/0105","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.246328,52.932965],[-6.246339,52.932635],[-6.247305,52.932092],[-6.248238,52.93142],[-6.249483,52.931911],[-6.250287,52.931426],[-6.251017,52.932008],[-6.251371,52.931808],[-6.252036,52.932267],[-6.251822,52.932403],[-6.251961,52.932545],[-6.251585,52.933043],[-6.25048,52.933185],[-6.24974,52.933075],[-6.249139,52.93292],[-6.248431,52.932901],[-6.247219,52.932926],[-6.246328,52.932965]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"01/03/2010","fill-opacity":0.5,"2_bed":"9","4_bed":"31","app_date":"15/01/2010","stroke":"#ed3a26","no_of_units":"101","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"UNCONDITIONAL","short_desc":"101 residential units...","reg_date":"","3_bed":"63","5_plus":"","reg_ref":"102022","fg_date":"","other_total":"103"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.337231,53.293354],[-6.337048,53.293388],[-6.337023,53.29328],[-6.33701,53.293228],[-6.337016,53.293158],[-6.336974,53.293088],[-6.337008,53.293082],[-6.337011,53.293086],[-6.337108,53.293071],[-6.337231,53.293354]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"06/03/2008","fill-opacity":0.5,"2_bed":"3","4_bed":"0","app_date":"20/06/2007","stroke":"#ed3a26","no_of_units":"2","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT PERMISSION","short_desc":"Division of residential end terrace site into 2 no. properties (no. 98 & 98a) and construction of terraced 2 storey 2 bedroom dwelling with vehicular access on property 98a with bay window and lean to","reg_date":"","3_bed":"0","5_plus":"0","reg_ref":"SD07A/0468","fg_date":"15/04/2008","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.184069,53.612517],[-6.183553,53.612706],[-6.183548,53.612699],[-6.183373,53.612543],[-6.183366,53.612536],[-6.183333,53.612504],[-6.183323,53.612506],[-6.183294,53.612512],[-6.18328,53.612511],[-6.183265,53.612509],[-6.183258,53.612507],[-6.183239,53.612489],[-6.183232,53.612483],[-6.1832,53.612453],[-6.183193,53.612457],[-6.183149,53.612406],[-6.183074,53.612323],[-6.18306,53.612308],[-6.183052,53.612299],[-6.182982,53.61222],[-6.182958,53.612193],[-6.182963,53.612191],[-6.183383,53.612031],[-6.183392,53.612027],[-6.183447,53.612008],[-6.18376,53.612312],[-6.183985,53.612351],[-6.183983,53.612407],[-6.184069,53.612517]],[[-6.183329,53.612504],[-6.183333,53.612503],[-6.183317,53.612507],[-6.183329,53.612504]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"15","4_bed":"","app_date":"20/11/2007","stroke":"#ed3a26","no_of_units":"15","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of extension and alteration of 'Marian House', a protected structure, and change of use from a school related use to residential use. This would comprise a total of 15 tw","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F07A/1509","fg_date":"","other_total":"15"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.430805,53.390765],[-6.430435,53.390718],[-6.42996,53.390648],[-6.429729,53.390613],[-6.429685,53.390606],[-6.429608,53.390594],[-6.429566,53.390587],[-6.429216,53.39053],[-6.428825,53.390463],[-6.428776,53.390454],[-6.428671,53.390436],[-6.42863,53.390429],[-6.42836,53.39037],[-6.428337,53.390365],[-6.428285,53.390354],[-6.428365,53.390092],[-6.428587,53.390136],[-6.429699,53.390371],[-6.429756,53.390383],[-6.429833,53.390399],[-6.42988,53.390409],[-6.42988,53.390409],[-6.429845,53.39046],[-6.430187,53.390544],[-6.430526,53.390627],[-6.430563,53.390575],[-6.430867,53.390638],[-6.430851,53.390674],[-6.430805,53.390765]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"15","4_bed":"","app_date":"19/12/2007","stroke":"#ed3a26","no_of_units":"15","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for a Residential Development consisting of the construction of 15 no. 2 bed apartments in 1 no. 2 and 3 storey block, and including for all associated drainage, site development and infras","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F07A/1660","fg_date":"","other_total":"15"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.314853,53.521546],[-6.314686,53.521506],[-6.314525,53.521444],[-6.314579,53.521282],[-6.31471,53.521299],[-6.314835,53.520943],[-6.315096,53.520982],[-6.314997,53.521228],[-6.31494,53.521215],[-6.314899,53.521318],[-6.314961,53.521328],[-6.314853,53.521546]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"23/05/2008","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Phase 2 of proposed residential development comprising of 5 additional two storey houses not exceeding 8.7 metres in height. Also revisions to phase 1 (reg. ref. F05A/0389) three new roof lights to f","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F08A/0333","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148647,53.403414],[-6.148108,53.405035],[-6.148096,53.405284],[-6.147998,53.405546],[-6.145746,53.405603],[-6.14412,53.40521],[-6.144822,53.404166],[-6.145193,53.403584],[-6.145322,53.403342],[-6.145469,53.402904],[-6.146565,53.402896],[-6.146341,53.403322],[-6.148647,53.403414]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"289","4_bed":"67","app_date":"25/04/2008","stroke":"#ed3a26","no_of_units":"489","1_bed":"60","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of 489 no. residential units, a cr\u00e8che, underground and surface car parking, a civic park and all associated landscape and infrastructural works as the final phase in the ","reg_date":"","3_bed":"73","5_plus":"","reg_ref":"F07A/1723","fg_date":"","other_total":"489"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.177512,53.406877],[-6.177549,53.406936],[-6.177566,53.406991],[-6.177582,53.406999],[-6.177766,53.407674],[-6.177799,53.407834],[-6.177006,53.407906],[-6.176984,53.407868],[-6.175999,53.407956],[-6.176,53.407967],[-6.175759,53.407988],[-6.175776,53.407686],[-6.173771,53.407657],[-6.173776,53.407589],[-6.17369,53.407587],[-6.173673,53.407579],[-6.173665,53.407566],[-6.173682,53.407027],[-6.173701,53.407004],[-6.173731,53.406961],[-6.173768,53.406929],[-6.173813,53.406906],[-6.173898,53.406882],[-6.173964,53.406856],[-6.174044,53.406812],[-6.174097,53.406772],[-6.174178,53.406737],[-6.174238,53.406735],[-6.174945,53.406675],[-6.175184,53.406667],[-6.175443,53.406662],[-6.175844,53.406681],[-6.176475,53.406729],[-6.177018,53.406747],[-6.177189,53.406752],[-6.177312,53.406786],[-6.177422,53.406828],[-6.177512,53.406877]]]]},"type":"Feature","properties":{"status":"Application under appeal","":"","deision_date":"","fill-opacity":0.5,"2_bed":"54","4_bed":"","app_date":"05/09/2014","stroke":"#ed3a26","no_of_units":"77","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Development on a 3.075 ha. site consisting of (i) 77 no. residential units consisting of 65 no. apartments and 12 no. duplex units. The proposed units are located in three blocks on the western porti","reg_date":"","3_bed":"23","5_plus":"","reg_ref":"F14A/0363","fg_date":"","other_total":"77"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.155727,53.414547],[-6.155608,53.414545],[-6.155562,53.414537],[-6.155483,53.414524],[-6.155375,53.414503],[-6.155182,53.414464],[-6.155082,53.414439],[-6.15499,53.414415],[-6.154913,53.414394],[-6.154881,53.414385],[-6.154849,53.414374],[-6.154736,53.414334],[-6.154623,53.414293],[-6.154609,53.414288],[-6.154425,53.414224],[-6.154191,53.414152],[-6.154175,53.41415],[-6.15417,53.414149],[-6.153937,53.414099],[-6.153773,53.414068],[-6.153696,53.414055],[-6.153588,53.414038],[-6.15347,53.414018],[-6.153466,53.414018],[-6.153268,53.413986],[-6.153197,53.413975],[-6.15315,53.413968],[-6.153073,53.413956],[-6.153068,53.413956],[-6.152968,53.413945],[-6.15288,53.413979],[-6.152745,53.414036],[-6.152657,53.414071],[-6.152537,53.414118],[-6.152466,53.414143],[-6.152296,53.414201],[-6.152159,53.414281],[-6.151992,53.41431],[-6.151966,53.414314],[-6.151827,53.414318],[-6.151808,53.414318],[-6.151612,53.414316],[-6.151459,53.414314],[-6.151303,53.414276],[-6.151236,53.414191],[-6.151009,53.414156],[-6.150988,53.414153],[-6.150838,53.414129],[-6.150778,53.414045],[-6.150523,53.41287],[-6.150506,53.41276],[-6.150477,53.41268],[-6.150433,53.412536],[-6.150364,53.412322],[-6.150247,53.412033],[-6.150224,53.411968],[-6.151496,53.411935],[-6.152181,53.411885],[-6.152869,53.411796],[-6.152983,53.412565],[-6.15483,53.412776],[-6.156445,53.412952],[-6.156599,53.412426],[-6.15644,53.412407],[-6.156531,53.41209],[-6.15655,53.412092],[-6.156615,53.412101],[-6.156739,53.412119],[-6.156818,53.412135],[-6.156886,53.412147],[-6.156886,53.412148],[-6.156831,53.412363],[-6.156827,53.412395],[-6.156813,53.41247],[-6.156798,53.412584],[-6.156797,53.412587],[-6.156802,53.41259],[-6.156821,53.412601],[-6.156891,53.41262],[-6.156907,53.412623],[-6.156927,53.412627],[-6.156979,53.412637],[-6.15698,53.412637],[-6.157181,53.412674],[-6.157462,53.412726],[-6.157692,53.412771],[-6.157939,53.41282],[-6.158078,53.412849],[-6.158107,53.412855],[-6.158175,53.412869],[-6.158452,53.412925],[-6.158711,53.412969],[-6.15909,53.413032],[-6.159239,53.413051],[-6.159267,53.413054],[-6.159411,53.413072],[-6.15952,53.413039],[-6.159538,53.413034],[-6.159592,53.413022],[-6.159739,53.412955],[-6.159904,53.412581],[-6.159973,53.4125],[-6.159983,53.412468],[-6.159991,53.412459],[-6.160037,53.412466],[-6.160088,53.412474],[-6.160097,53.412476],[-6.160102,53.412476],[-6.159955,53.412925],[-6.159911,53.413129],[-6.159774,53.413407],[-6.15977,53.413431],[-6.159567,53.413861],[-6.159506,53.413853],[-6.159443,53.413846],[-6.15941,53.413783],[-6.159411,53.413743],[-6.159447,53.41364],[-6.159517,53.413402],[-6.159474,53.413336],[-6.159405,53.413294],[-6.159356,53.41327],[-6.159144,53.413232],[-6.159109,53.413226],[-6.159089,53.413222],[-6.158495,53.413116],[-6.158494,53.413119],[-6.158199,53.413548],[-6.158575,53.413694],[-6.158564,53.41372],[-6.158529,53.413802],[-6.158519,53.413822],[-6.158508,53.413845],[-6.158455,53.413962],[-6.158281,53.414016],[-6.158252,53.414031],[-6.158012,53.414111],[-6.157859,53.414163],[-6.157708,53.414042],[-6.157607,53.413999],[-6.157482,53.413969],[-6.157176,53.413982],[-6.156964,53.414012],[-6.156803,53.414082],[-6.15676,53.41412],[-6.156769,53.414128],[-6.156774,53.414134],[-6.156764,53.414147],[-6.156738,53.4142],[-6.156697,53.414286],[-6.156684,53.414313],[-6.1565,53.414714],[-6.15648,53.414715],[-6.156469,53.414712],[-6.156424,53.414705],[-6.156415,53.414705],[-6.15637,53.414709],[-6.156339,53.414703],[-6.156323,53.414701],[-6.156303,53.414693],[-6.156278,53.414676],[-6.15625,53.414668],[-6.156191,53.414667],[-6.156177,53.414653],[-6.156166,53.414644],[-6.156159,53.414639],[-6.156128,53.414638],[-6.156066,53.414609],[-6.155941,53.414562],[-6.155914,53.414562],[-6.15589,53.414557],[-6.155819,53.414549],[-6.155727,53.414547]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"44","app_date":"02/04/2009","stroke":"#ed3a26","no_of_units":"44","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Amendments to previously approved residential development Reg. Ref. No. F08A/0955, incorporating the replacement 44 no. 'Type C1' 3 storey 5 bed semi detached houses with a 'Type C2' 3 storey 4 bed s","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F09A/0170","fg_date":"","other_total":"44"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.401736,53.513671],[-6.401585,53.513594],[-6.402084,53.512417],[-6.402969,53.512928],[-6.40261,53.513189],[-6.402798,53.513275],[-6.402669,53.513368],[-6.402336,53.513202],[-6.401736,53.513671]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"22/12/2014","fill-opacity":0.5,"2_bed":"","4_bed":"10","app_date":"23/06/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"a residential development of 12 no. two storey dwellings comprising 10 no. 4 bedroom semi-detached h...","reg_date":"23/06/2014","3_bed":"2","5_plus":"","reg_ref":"AA140530","fg_date":"16/12/2014","other_total":"12"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.380775,53.373798],[-6.380828,53.373478],[-6.381036,53.373501],[-6.381248,53.373526],[-6.381482,53.373552],[-6.381679,53.373575],[-6.381814,53.373589],[-6.381855,53.373594],[-6.381866,53.373595],[-6.381831,53.373678],[-6.381781,53.373792],[-6.381774,53.373808],[-6.381748,53.373868],[-6.381746,53.373875],[-6.381447,53.37384],[-6.381369,53.373853],[-6.381367,53.373866],[-6.381289,53.373857],[-6.380966,53.373834],[-6.380872,53.373863],[-6.38078,53.374147],[-6.380607,53.374127],[-6.380625,53.374122],[-6.380658,53.374108],[-6.380683,53.374088],[-6.38076,53.373797],[-6.380775,53.373798]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"20/07/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of existing single storey outbuildings/stables and the provision of 3 No. two storey detached dwelling houses in the side/southern garden area of existing residential dwelling to include of","reg_date":"","3_bed":"","5_plus":"3","reg_ref":"FW09A/0025","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.329885,53.704906],[-6.331408,53.704754],[-6.330292,53.703084],[-6.329252,53.703128],[-6.329412,53.70342],[-6.329048,53.703547],[-6.329885,53.704906]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"17/04/2013","fill-opacity":0.5,"2_bed":"15","4_bed":"","app_date":"01/03/2013","stroke":"#ed3a26","no_of_units":"59","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"UNCONDITIONAL","short_desc":"EXTENSION OF DURATION OF PLANNING PERMISSION REF. NO. SA/70675 - 59 residential units comprising of...","reg_date":"","3_bed":"44","5_plus":"","reg_ref":"SA130130","fg_date":"","other_total":"59"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.186848,53.253237],[-6.183736,53.252955],[-6.181805,53.25289],[-6.179616,53.25212],[-6.179981,53.25117],[-6.180131,53.250811],[-6.180925,53.250541],[-6.182106,53.249822],[-6.182728,53.249463],[-6.187856,53.249925],[-6.186848,53.253237]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"24/04/2008","fill-opacity":0.5,"2_bed":"249","4_bed":"","app_date":"06/07/2007","stroke":"#ed3a26","no_of_units":"369","1_bed":"47","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"mixed use development on a 6.9 hectares (17 acre) site incorporating amendments","reg_date":"29/02/2008","3_bed":"73","5_plus":"","reg_ref":"D07A/0936","fg_date":"","other_total":"369"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.328584,53.306276],[-6.328582,53.306273],[-6.328541,53.306198],[-6.328361,53.305868],[-6.328393,53.305854],[-6.328452,53.305908],[-6.328512,53.305899],[-6.328531,53.305957],[-6.328563,53.305954],[-6.328638,53.30592],[-6.328666,53.306014],[-6.328689,53.306092],[-6.328731,53.306236],[-6.328591,53.306279],[-6.328586,53.306281],[-6.328584,53.306276]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"24/03/2009","fill-opacity":0.5,"2_bed":"0","4_bed":"0","app_date":"24/11/2008","stroke":"#ed3a26","no_of_units":"2","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT PERMISSION","short_desc":"Demolition of storage shed to side of existing dwelling to allow for the conversion of existing five bedroom residential dwelling into two separate dwellings comprising 2 no. three bedroom dwellings w","reg_date":"","3_bed":"2","5_plus":"0","reg_ref":"SD08A/0797","fg_date":"05/05/2009","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.342756,53.290352],[-6.34273,53.290289],[-6.342315,53.29024],[-6.342319,53.290251],[-6.34221,53.290244],[-6.342221,53.290319],[-6.342082,53.290314],[-6.342086,53.290334],[-6.341534,53.290367],[-6.341475,53.29005],[-6.340989,53.290092],[-6.340951,53.290083],[-6.340918,53.290077],[-6.340865,53.290076],[-6.340832,53.290076],[-6.340797,53.290095],[-6.340773,53.290112],[-6.340239,53.290153],[-6.340169,53.289862],[-6.342709,53.289585],[-6.342733,53.289594],[-6.34278,53.289615],[-6.342817,53.289641],[-6.342845,53.289664],[-6.342882,53.289711],[-6.342967,53.289993],[-6.34306,53.290316],[-6.343059,53.29033],[-6.342756,53.290352]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"33","4_bed":"0","app_date":"28/04/2008","stroke":"#ed3a26","no_of_units":"34","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"Construction of residential development of 34 apartments with projecting balconies in 4 no blocks ranging in height from 2 to 4 storeys over basement car park as follows; Block A; 8 no 2 bed Apartme","reg_date":"","3_bed":"1","5_plus":"0","reg_ref":"SD08A/0280","fg_date":"","other_total":"34"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.292161,53.287321],[-6.291948,53.287183],[-6.292246,53.286951],[-6.292766,53.286665],[-6.29317,53.286433],[-6.293394,53.286589],[-6.29318,53.286787],[-6.293095,53.286832],[-6.293046,53.286874],[-6.292962,53.286929],[-6.292883,53.286985],[-6.292792,53.28704],[-6.292672,53.287091],[-6.292569,53.287146],[-6.292455,53.287198],[-6.292341,53.287256],[-6.292161,53.287321]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"0","4_bed":"0","app_date":"09/10/2008","stroke":"#ed3a26","no_of_units":"4","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"The demolition of existing bungalow with outbuildings on site and construction of mix residential and commercial development consisting of 4 no. 2 storey, 3 bedroom terraced houses including 2 no gara","reg_date":"","3_bed":"4","5_plus":"0","reg_ref":"SD08A/0698","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.297754,53.37148],[-6.298493,53.371634],[-6.299232,53.371788],[-6.299327,53.371807],[-6.299376,53.371828],[-6.299461,53.371846],[-6.299434,53.371913],[-6.29926,53.372249],[-6.299071,53.372212],[-6.298389,53.372082],[-6.297506,53.371909],[-6.297334,53.371875],[-6.297458,53.371648],[-6.29745,53.371646],[-6.297471,53.371608],[-6.297501,53.371559],[-6.297518,53.371562],[-6.297553,53.371498],[-6.29762,53.371511],[-6.297754,53.37148]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"17/07/2007","fill-opacity":0.5,"2_bed":"16","4_bed":"","app_date":"05/02/2007","stroke":"#ed3a26","no_of_units":"5","1_bed":"16","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolition of buildings and construction of 5 no residential blocks","reg_date":"20/06/2007","3_bed":"6","5_plus":"","reg_ref":"1509/07","fg_date":"22/08/2007","other_total":"38"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.280463,53.347468],[-6.280684,53.347492],[-6.280732,53.347301],[-6.28166,53.347397],[-6.281527,53.347815],[-6.280408,53.347687],[-6.280463,53.347468]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"27/08/2007","fill-opacity":0.5,"2_bed":"44","4_bed":"","app_date":"23/02/2007","stroke":"#ed3a26","no_of_units":"87","1_bed":"23","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolition of 17 Benburb St. and factory building construct 87 residential unit","reg_date":"01/08/2007","3_bed":"20","5_plus":"","reg_ref":"1837/07","fg_date":"21/12/2007","other_total":"87"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.374495,53.356977],[-6.374519,53.356946],[-6.374698,53.356592],[-6.374717,53.356554],[-6.374721,53.356547],[-6.374735,53.356519],[-6.37479,53.356408],[-6.37473,53.356393],[-6.374107,53.356246],[-6.374021,53.356382],[-6.373876,53.356349],[-6.373587,53.356283],[-6.373461,53.356254],[-6.37342,53.356245],[-6.373355,53.356283],[-6.373308,53.356253],[-6.373262,53.356226],[-6.373196,53.356185],[-6.37318,53.356175],[-6.373128,53.356144],[-6.373087,53.356117],[-6.373079,53.356114],[-6.37306,53.356102],[-6.372989,53.356059],[-6.372983,53.356055],[-6.372918,53.356016],[-6.372898,53.356004],[-6.372851,53.355975],[-6.372797,53.355942],[-6.372713,53.355891],[-6.3727,53.355884],[-6.372615,53.355832],[-6.372584,53.355813],[-6.372526,53.355779],[-6.372446,53.35573],[-6.372351,53.355671],[-6.372311,53.355647],[-6.37231,53.355646],[-6.372208,53.355585],[-6.37217,53.355558],[-6.372048,53.355473],[-6.372038,53.355479],[-6.371964,53.355434],[-6.372048,53.355379],[-6.37217,53.355313],[-6.372199,53.355298],[-6.372339,53.355263],[-6.372341,53.355266],[-6.37239,53.355299],[-6.372401,53.355293],[-6.372447,53.355268],[-6.373079,53.355423],[-6.37311,53.355435],[-6.373754,53.355569],[-6.374419,53.35574],[-6.374404,53.355764],[-6.374618,53.355816],[-6.374661,53.355827],[-6.375049,53.355923],[-6.375017,53.35597],[-6.374904,53.356138],[-6.37489,53.356157],[-6.374878,53.356176],[-6.37483,53.356245],[-6.374887,53.356259],[-6.375304,53.356362],[-6.375298,53.356372],[-6.375024,53.356933],[-6.37508,53.356947],[-6.374822,53.357344],[-6.374823,53.357344],[-6.374694,53.357312],[-6.374368,53.35723],[-6.374495,53.356977]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"59","4_bed":"0","app_date":"16/01/2009","stroke":"#ed3a26","no_of_units":"102","1_bed":"22","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"(1) The demolition of all existing structures on site comprising 6 no. of buildings of approximately 4,571 sq.m. in total excluding the existing party wall at the northern site boundary; (2) the con","reg_date":"","3_bed":"21","5_plus":"0","reg_ref":"SD09A/0021","fg_date":"","other_total":"102"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.212631,53.329516],[-6.213566,53.32934],[-6.213951,53.330006],[-6.212994,53.330177],[-6.212631,53.329516]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"23/02/2007","fill-opacity":0.5,"2_bed":"23","4_bed":"6","app_date":"21/12/2007","stroke":"#ed3a26","no_of_units":"48","1_bed":"5","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Permission for development of 48 residential units","reg_date":"21/12/2006","3_bed":"14","5_plus":"","reg_ref":"6761/06","fg_date":"28/08/2012","other_total":"48"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.165759,53.402369],[-6.165758,53.402368],[-6.165656,53.402321],[-6.164925,53.402247],[-6.165024,53.401755],[-6.166025,53.401818],[-6.165866,53.402236],[-6.165821,53.402311],[-6.165759,53.402369]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"08/08/2007","fill-opacity":0.5,"2_bed":"23","4_bed":"","app_date":"09/03/2007","stroke":"#ed3a26","no_of_units":"41","1_bed":"8","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Permission sought for residential development comprising 41 dwellings","reg_date":"17/07/2007","3_bed":"10","5_plus":"","reg_ref":"2052/07","fg_date":"NULL","other_total":"41"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.182463,53.400799],[-6.182302,53.400788],[-6.182234,53.400749],[-6.182422,53.400626],[-6.182444,53.400601],[-6.182165,53.400383],[-6.182061,53.40036],[-6.181771,53.40057],[-6.181639,53.400534],[-6.181584,53.4005],[-6.181494,53.400473],[-6.18141,53.400464],[-6.18151,53.400423],[-6.182055,53.400154],[-6.182936,53.399756],[-6.183855,53.3993],[-6.184171,53.399153],[-6.184512,53.399217],[-6.184581,53.399244],[-6.184608,53.399282],[-6.184628,53.399312],[-6.184352,53.399522],[-6.184155,53.399687],[-6.183692,53.400003],[-6.183474,53.400155],[-6.183065,53.400367],[-6.182457,53.400794],[-6.182463,53.400799]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"24/05/2007","fill-opacity":0.5,"2_bed":"130","4_bed":"","app_date":"15/01/2007","stroke":"#ed3a26","no_of_units":"198","1_bed":"31","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"5 to 8 storeys and will comprise 198 no. residential units","reg_date":"27/04/2007","3_bed":"37","5_plus":"","reg_ref":"1158/07","fg_date":"15/02/2008","other_total":"198"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.368406,53.339073],[-6.368609,53.338588],[-6.369948,53.338804],[-6.370035,53.338811],[-6.370103,53.3388],[-6.370142,53.338789],[-6.370201,53.338772],[-6.37027,53.338733],[-6.370311,53.338693],[-6.370437,53.338428],[-6.370823,53.338479],[-6.370977,53.338493],[-6.37123,53.338491],[-6.371472,53.338494],[-6.371627,53.338502],[-6.371763,53.338486],[-6.372256,53.33851],[-6.372469,53.338531],[-6.372613,53.338568],[-6.37268,53.338597],[-6.372727,53.338633],[-6.372783,53.338674],[-6.372858,53.338745],[-6.372895,53.338798],[-6.372942,53.338821],[-6.372991,53.338822],[-6.373197,53.338749],[-6.372313,53.339561],[-6.372233,53.339636],[-6.372183,53.33967],[-6.372095,53.339692],[-6.368396,53.339073],[-6.368406,53.339073]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"12/03/2007","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/01/2007","stroke":"#ed3a26","no_of_units":"72","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of a 72 no. 2 storey 3 bed co-operative residential development","reg_date":"16/01/2007","3_bed":"72","5_plus":"","reg_ref":"1174/07","fg_date":"21/01/2008","other_total":"72"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.267397,53.394216],[-6.267075,53.394282],[-6.266997,53.394258],[-6.266782,53.394497],[-6.266756,53.394503],[-6.266637,53.394468],[-6.266651,53.394448],[-6.266684,53.394455],[-6.266806,53.394267],[-6.266728,53.394253],[-6.266808,53.394131],[-6.266925,53.394106],[-6.266933,53.394123],[-6.267296,53.394046],[-6.267397,53.394216]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"03/10/2007","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"26/01/2007","stroke":"#ed3a26","no_of_units":"5","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Permission for 5 residential units and reconfiguration of reg ref 1923/06","reg_date":"06/09/2007","3_bed":"","5_plus":"","reg_ref":"1335/07","fg_date":"15/11/2007","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.264471,53.34446],[-6.264475,53.344446],[-6.264483,53.344428],[-6.264496,53.34441],[-6.264503,53.344403],[-6.264609,53.344402],[-6.26461,53.344448],[-6.264725,53.344448],[-6.264725,53.344492],[-6.26445,53.344495],[-6.264449,53.344471],[-6.264465,53.344472],[-6.264471,53.34446]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"08/01/2014","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"16/08/2013","stroke":"#ed3a26","no_of_units":"2","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from office to 2 residential units","reg_date":"06/12/2013","3_bed":"","5_plus":"","reg_ref":"3103/13","fg_date":"19/02/2014","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.271899,53.398059],[-6.271469,53.398015],[-6.271413,53.398003],[-6.271324,53.397998],[-6.271204,53.397985],[-6.271253,53.397864],[-6.271283,53.397766],[-6.271298,53.397706],[-6.271418,53.397719],[-6.271451,53.39753],[-6.27128,53.397527],[-6.271302,53.397452],[-6.270973,53.397428],[-6.271097,53.397183],[-6.271284,53.3968],[-6.27168,53.396578],[-6.271841,53.39666],[-6.271866,53.396668],[-6.271702,53.396821],[-6.271666,53.396926],[-6.27165,53.396991],[-6.272774,53.397424],[-6.272675,53.397513],[-6.272625,53.397494],[-6.272559,53.397561],[-6.27244,53.397525],[-6.272157,53.397794],[-6.272069,53.397777],[-6.271898,53.398071],[-6.271899,53.398059]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"19/04/2007","fill-opacity":0.5,"2_bed":"13","4_bed":"","app_date":"28/02/2007","stroke":"#ed3a26","no_of_units":"48","1_bed":"15","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of 48 no. residential units to be houses apartments & duplexes","reg_date":"28/02/2007","3_bed":"20","5_plus":"","reg_ref":"1899/07","fg_date":"22/05/2007","other_total":"48"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.342057,53.321625],[-6.342166,53.321675],[-6.342351,53.321843],[-6.342071,53.321923],[-6.341618,53.322047],[-6.340823,53.322261],[-6.340605,53.322021],[-6.342054,53.321625],[-6.342057,53.321625]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"08/11/2007","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"24/05/2007","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Permission for a mixed use residential and commercial development","reg_date":"19/10/2007","3_bed":"12","5_plus":"","reg_ref":"3336/07","fg_date":"NULL","other_total":"24"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.162069,53.400177],[-6.162052,53.399887],[-6.164449,53.400414],[-6.164538,53.400431],[-6.164468,53.400717],[-6.162069,53.400177]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"22/10/2007","fill-opacity":0.5,"2_bed":"36","4_bed":"","app_date":"17/05/2007","stroke":"#ed3a26","no_of_units":"59","1_bed":"15","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolish existing dwelling & constuct 59 no. residential units in 4 blocks.","reg_date":"01/10/2007","3_bed":"8","5_plus":"","reg_ref":"3203/07","fg_date":"17/12/2007","other_total":"59"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.298682,53.348125],[-6.298687,53.348013],[-6.298693,53.347915],[-6.298695,53.347817],[-6.298695,53.347794],[-6.298694,53.347706],[-6.2987,53.347613],[-6.298721,53.347615],[-6.298779,53.347617],[-6.298826,53.347599],[-6.298867,53.347598],[-6.298918,53.347598],[-6.298968,53.347599],[-6.299041,53.347606],[-6.299101,53.34761],[-6.299136,53.347611],[-6.299248,53.347616],[-6.299306,53.347614],[-6.299363,53.347619],[-6.299485,53.347632],[-6.299553,53.347637],[-6.299678,53.347654],[-6.299727,53.347657],[-6.299692,53.348147],[-6.299474,53.348145],[-6.299331,53.348143],[-6.299125,53.348139],[-6.29892,53.348135],[-6.298682,53.348125]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"11/01/2008","fill-opacity":0.5,"2_bed":"45","4_bed":"","app_date":"30/05/2007","stroke":"#ed3a26","no_of_units":"81","1_bed":"12","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolition of all existing structures and construction of 81 residential units.","reg_date":"07/12/2007","3_bed":"24","5_plus":"","reg_ref":"3438/07","fg_date":"NULL","other_total":"81"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.26103,53.398455],[-6.260786,53.398083],[-6.261037,53.398129],[-6.261371,53.397576],[-6.262215,53.397731],[-6.262213,53.397766],[-6.262134,53.397796],[-6.262048,53.397849],[-6.261546,53.397749],[-6.261463,53.397868],[-6.261927,53.397948],[-6.261824,53.398075],[-6.261744,53.398124],[-6.26161,53.398242],[-6.261036,53.398463],[-6.26103,53.398455]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"10/08/2007","fill-opacity":0.5,"2_bed":"2","4_bed":"2","app_date":"19/06/2007","stroke":"#ed3a26","no_of_units":"39","1_bed":"11","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"The development consists of the construction of 39 residential units","reg_date":"19/06/2007","3_bed":"24","5_plus":"","reg_ref":"3753/07","fg_date":"20/09/2007","other_total":"39"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.267987,53.346688],[-6.267535,53.346747],[-6.26752,53.346701],[-6.267644,53.346683],[-6.26797,53.346641],[-6.267987,53.346688]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"16/08/2007","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"03/07/2007","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Material change of use from commercial to residential use.","reg_date":"03/07/2007","3_bed":"","5_plus":"","reg_ref":"4032/07","fg_date":"26/09/2007","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.243892,53.364203],[-6.243659,53.364148],[-6.243375,53.364078],[-6.243116,53.364015],[-6.243197,53.363896],[-6.243565,53.363987],[-6.243595,53.363955],[-6.243801,53.364007],[-6.243793,53.364017],[-6.244009,53.364071],[-6.243892,53.364203]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"10/10/2007","fill-opacity":0.5,"2_bed":"7","4_bed":"","app_date":"16/08/2007","stroke":"#ed3a26","no_of_units":"14","1_bed":"6","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"14 residential units comprising four 2 bedroom duplex apartments at ground and","reg_date":"16/08/2007","3_bed":"1","5_plus":"","reg_ref":"4819/07","fg_date":"20/11/2007","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.268356,53.323225],[-6.268535,53.323204],[-6.268553,53.323223],[-6.26877,53.323424],[-6.268782,53.323438],[-6.268894,53.323586],[-6.268896,53.323593],[-6.268924,53.323615],[-6.268951,53.323659],[-6.268967,53.323669],[-6.268988,53.323693],[-6.268738,53.323718],[-6.268709,53.323616],[-6.268699,53.323599],[-6.268601,53.323423],[-6.268431,53.323446],[-6.2684,53.32335],[-6.268356,53.323225]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"14/04/2008","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"27/11/2007","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE-Material change of use from commercial to residential","reg_date":"18/03/2008","3_bed":"","5_plus":"","reg_ref":"6291/07","fg_date":"26/05/2008","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.233405,53.32982],[-6.233283,53.329808],[-6.233391,53.329449],[-6.233513,53.329463],[-6.233405,53.32982]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"13/02/2008","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"14/12/2007","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - change of use from office use to residential use","reg_date":"14/12/2007","3_bed":"","5_plus":"","reg_ref":"6576/07","fg_date":"27/03/2008","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.23671,53.32928],[-6.236528,53.329332],[-6.236261,53.329],[-6.236449,53.328948],[-6.236617,53.329162],[-6.23671,53.32928]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"14/10/2013","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"20/08/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from Embassy to residential dwelling","reg_date":"20/08/2013","3_bed":"","5_plus":"1","reg_ref":"3118/13","fg_date":"26/11/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.281999,53.316072],[-6.282149,53.316291],[-6.282391,53.316266],[-6.282991,53.316112],[-6.28301,53.316113],[-6.283186,53.316069],[-6.283246,53.316021],[-6.283397,53.315982],[-6.283451,53.3162],[-6.283476,53.316426],[-6.283495,53.316533],[-6.283496,53.31675],[-6.283394,53.316768],[-6.283053,53.316859],[-6.282141,53.317089],[-6.281961,53.317129],[-6.281937,53.317123],[-6.28146,53.317105],[-6.281657,53.316888],[-6.281123,53.316716],[-6.281144,53.316681],[-6.281141,53.316626],[-6.281095,53.316573],[-6.281024,53.316541],[-6.280948,53.316514],[-6.281292,53.316131],[-6.281331,53.316103],[-6.281375,53.316089],[-6.281593,53.316089],[-6.281708,53.3161],[-6.281741,53.316109],[-6.281755,53.316121],[-6.281789,53.316115],[-6.281828,53.316116],[-6.281861,53.316125],[-6.28188,53.316134],[-6.281943,53.316123],[-6.281954,53.316103],[-6.281969,53.316083],[-6.281994,53.316069],[-6.281999,53.316072]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"25/10/2007","fill-opacity":0.5,"2_bed":"103","4_bed":"14","app_date":"31/08/2007","stroke":"#ed3a26","no_of_units":"152","1_bed":"26","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PRO STRUCT:Demolition of all existing structures&construct 152 residential units","reg_date":"31/08/2007","3_bed":"9","5_plus":"","reg_ref":"5067/07","fg_date":"NULL","other_total":"152"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.252835,53.372451],[-6.25288,53.372373],[-6.253077,53.372049],[-6.254068,53.372376],[-6.254032,53.372419],[-6.254164,53.37247],[-6.254095,53.372551],[-6.253624,53.372428],[-6.253513,53.372583],[-6.253304,53.372541],[-6.253234,53.37253],[-6.253121,53.372516],[-6.252835,53.372451]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"10/03/2008","fill-opacity":0.5,"2_bed":"31","4_bed":"","app_date":"07/09/2007","stroke":"#ed3a26","no_of_units":"20","1_bed":"5","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"mixed use residential and retail development in a five to seven storey","reg_date":"13/02/2008","3_bed":"14","5_plus":"","reg_ref":"5180/07","fg_date":"05/09/2008","other_total":"50"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.349727,53.346097],[-6.349699,53.346132],[-6.349454,53.346226],[-6.349205,53.346309],[-6.348821,53.346422],[-6.347776,53.345577],[-6.348328,53.345482],[-6.348655,53.34545],[-6.349527,53.34537],[-6.349639,53.345359],[-6.349791,53.345856],[-6.349951,53.346022],[-6.349727,53.346097]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"13/03/2008","fill-opacity":0.5,"2_bed":"91","4_bed":"","app_date":"10/10/2007","stroke":"#ed3a26","no_of_units":"123","1_bed":"13","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"A mixed use development consisting 127 no. residential units","reg_date":"15/02/2008","3_bed":"19","5_plus":"","reg_ref":"5644/07","fg_date":"26/05/2008","other_total":"123"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.338291,53.343183],[-6.338211,53.34309],[-6.338043,53.34288],[-6.338249,53.342797],[-6.3386,53.342645],[-6.338855,53.342944],[-6.338291,53.343183]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"05/06/2008","fill-opacity":0.5,"2_bed":"18","4_bed":"","app_date":"26/11/2007","stroke":"#ed3a26","no_of_units":"23","1_bed":"5","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential apartment development consisting of 23 no. apartments.","reg_date":"12/05/2008","3_bed":"","5_plus":"","reg_ref":"6285/07","fg_date":"NULL","other_total":"23"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.22733,53.367661],[-6.227273,53.36771],[-6.227208,53.367765],[-6.227112,53.367721],[-6.22701,53.367791],[-6.226991,53.367784],[-6.226625,53.367595],[-6.226511,53.367656],[-6.226412,53.367613],[-6.226546,53.367519],[-6.226358,53.367465],[-6.226313,53.367459],[-6.22625,53.36743],[-6.226217,53.367413],[-6.226415,53.36727],[-6.226461,53.367294],[-6.22651,53.367259],[-6.226797,53.367402],[-6.226995,53.3675],[-6.227261,53.367627],[-6.22733,53.367661]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"01/04/2008","fill-opacity":0.5,"2_bed":"7","4_bed":"","app_date":"29/11/2007","stroke":"#ed3a26","no_of_units":"17","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Provision of 17 no. residential units & 705 sqm of commercial floorspace.","reg_date":"05/03/2008","3_bed":"6","5_plus":"","reg_ref":"6351/07","fg_date":"01/07/2008","other_total":"17"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.269898,53.316589],[-6.269898,53.316589],[-6.269988,53.316613],[-6.270123,53.316647],[-6.270122,53.316648],[-6.270274,53.316686],[-6.270428,53.316724],[-6.270629,53.316772],[-6.270561,53.316871],[-6.270368,53.316818],[-6.270203,53.316775],[-6.27017,53.316767],[-6.270062,53.316737],[-6.270061,53.316738],[-6.269845,53.316679],[-6.269895,53.316589],[-6.269898,53.316589]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"28/01/2008","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"03/12/2007","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - change of use to residential usage from commercial","reg_date":"03/12/2007","3_bed":"","5_plus":"","reg_ref":"6390/07","fg_date":"10/03/2008","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.236358,53.332859],[-6.236411,53.332669],[-6.236522,53.332679],[-6.236491,53.332767],[-6.236448,53.332908],[-6.236344,53.332898],[-6.236351,53.332858],[-6.236358,53.332859]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"08/11/2013","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/09/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"3 bedroom residential dwelling","reg_date":"16/09/2013","3_bed":"1","5_plus":"","reg_ref":"3250/13","fg_date":"09/01/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.237806,53.375173],[-6.238452,53.375277],[-6.238169,53.375809],[-6.238377,53.375844],[-6.23807,53.376385],[-6.237982,53.376518],[-6.237886,53.376682],[-6.237716,53.376993],[-6.237496,53.37741],[-6.236857,53.377316],[-6.236402,53.377282],[-6.236215,53.377275],[-6.236831,53.375959],[-6.237225,53.376015],[-6.23727,53.376011],[-6.237309,53.37598],[-6.237528,53.375554],[-6.237573,53.375563],[-6.237736,53.37523],[-6.237774,53.375213],[-6.237791,53.375177],[-6.237806,53.375173]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"20/08/2008","fill-opacity":0.5,"2_bed":"121","4_bed":"","app_date":"30/06/2008","stroke":"#ed3a26","no_of_units":"178","1_bed":"25","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential development with cr\ufffdche comprising 178 No. residential units","reg_date":"30/06/2008","3_bed":"32","5_plus":"","reg_ref":"3433/08","fg_date":"27/02/2009","other_total":"178"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.267441,53.334001],[-6.267336,53.334009],[-6.267309,53.333861],[-6.26729,53.333761],[-6.267396,53.33376],[-6.267412,53.333853],[-6.26743,53.333947],[-6.267441,53.334001]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"22/08/2008","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"01/07/2008","stroke":"#ed3a26","no_of_units":"1","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - change of use at garden level from office to residential","reg_date":"01/07/2008","3_bed":"","5_plus":"","reg_ref":"3447/08","fg_date":"02/10/2008","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.256979,53.39233],[-6.256935,53.392536],[-6.256885,53.392874],[-6.256861,53.392925],[-6.256856,53.393053],[-6.256827,53.393053],[-6.256824,53.393143],[-6.256829,53.393194],[-6.256841,53.393242],[-6.256853,53.393297],[-6.256832,53.393297],[-6.25694,53.393444],[-6.257296,53.393531],[-6.257297,53.393505],[-6.257512,53.393504],[-6.257511,53.39353],[-6.257854,53.393561],[-6.257801,53.393804],[-6.257651,53.393772],[-6.257619,53.393862],[-6.257255,53.393826],[-6.257254,53.393843],[-6.25726,53.393878],[-6.257308,53.39393],[-6.257185,53.393958],[-6.257137,53.39391],[-6.257102,53.39388],[-6.257081,53.393875],[-6.257038,53.393874],[-6.256812,53.393957],[-6.256345,53.393453],[-6.256334,53.393367],[-6.256339,53.393251],[-6.256342,53.393174],[-6.256359,53.393097],[-6.256369,53.393046],[-6.256358,53.39296],[-6.256341,53.392857],[-6.256329,53.392801],[-6.255721,53.392222],[-6.255933,53.392135],[-6.256338,53.392578],[-6.256979,53.39233]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"03/09/2008","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"14/07/2008","stroke":"#ed3a26","no_of_units":"36","1_bed":"5","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential development comprising 36no. residential units","reg_date":"14/07/2008","3_bed":"30","5_plus":"","reg_ref":"3635/08","fg_date":"16/10/2008","other_total":"36"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.265896,53.333344],[-6.266052,53.33334],[-6.266016,53.333163],[-6.266277,53.333157],[-6.266274,53.333097],[-6.266361,53.333095],[-6.266378,53.333328],[-6.266408,53.333327],[-6.26641,53.333368],[-6.266107,53.333379],[-6.266111,53.33342],[-6.265942,53.333434],[-6.265896,53.333344]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"04/06/2009","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"16/04/2009","stroke":"#ed3a26","no_of_units":"8","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Permission for construction of residential development comprising 8 units","reg_date":"16/04/2009","3_bed":"","5_plus":"","reg_ref":"2805/09","fg_date":"15/07/2009","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.272714,53.322657],[-6.2725,53.322721],[-6.272292,53.322518],[-6.272267,53.322524],[-6.272163,53.322413],[-6.271945,53.322472],[-6.271772,53.322248],[-6.271861,53.322223],[-6.271682,53.322032],[-6.272101,53.321894],[-6.271736,53.321435],[-6.272142,53.321491],[-6.272184,53.321551],[-6.272448,53.321457],[-6.272518,53.321547],[-6.272235,53.321619],[-6.272558,53.322018],[-6.272303,53.322135],[-6.272719,53.322657],[-6.272714,53.322657]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"13/03/2009","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"19/08/2008","stroke":"#ed3a26","no_of_units":"21","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE-Construct 21 residential units in 4no. blocks","reg_date":"16/02/2009","3_bed":"14","5_plus":"","reg_ref":"4111/08","fg_date":"30/11/2009","other_total":"21"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.255639,53.394648],[-6.255638,53.394652],[-6.255536,53.394537],[-6.256069,53.394363],[-6.25604,53.394344],[-6.256488,53.394182],[-6.256327,53.394016],[-6.256242,53.394055],[-6.256184,53.393986],[-6.256385,53.393912],[-6.256167,53.393663],[-6.255999,53.393469],[-6.255922,53.393504],[-6.2559,53.393467],[-6.255992,53.393451],[-6.255897,53.393354],[-6.255797,53.393206],[-6.255778,53.39311],[-6.255748,53.393087],[-6.255833,53.393066],[-6.255764,53.392873],[-6.255693,53.392563],[-6.255994,53.39249],[-6.256302,53.392786],[-6.256352,53.393228],[-6.257128,53.394201],[-6.257111,53.394237],[-6.257014,53.394367],[-6.256895,53.394484],[-6.256725,53.39455],[-6.256626,53.394539],[-6.256391,53.394518],[-6.256276,53.394516],[-6.256115,53.394541],[-6.256039,53.394554],[-6.255946,53.394579],[-6.255869,53.394606],[-6.255754,53.394627],[-6.255639,53.394648]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"14/10/2008","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"20/08/2008","stroke":"#ed3a26","no_of_units":"57","1_bed":"31","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential development comprising 57 no. residential units","reg_date":"20/08/2008","3_bed":"25","5_plus":"","reg_ref":"4145/08","fg_date":"14/05/2009","other_total":"57"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.268724,53.376985],[-6.268716,53.377038],[-6.268785,53.377047],[-6.268782,53.377126],[-6.268966,53.377178],[-6.268984,53.37715],[-6.269065,53.377174],[-6.269152,53.377175],[-6.26911,53.377236],[-6.26812,53.377022],[-6.268132,53.376984],[-6.268142,53.376926],[-6.268383,53.376958],[-6.268391,53.376949],[-6.268679,53.376987],[-6.268682,53.37698],[-6.268724,53.376985]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"23/01/2009","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"25/11/2008","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Construction of 2 residential units","reg_date":"25/11/2008","3_bed":"","5_plus":"","reg_ref":"5146/08","fg_date":"NULL","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.326332,53.376415],[-6.326333,53.376405],[-6.328546,53.376367],[-6.329348,53.376379],[-6.329941,53.376309],[-6.32992,53.377268],[-6.326626,53.377291],[-6.326615,53.376723],[-6.326332,53.376415]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"21/01/2010","fill-opacity":0.5,"2_bed":"169","4_bed":"","app_date":"18/12/2008","stroke":"#ed3a26","no_of_units":"260","1_bed":"52","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of 260no. residential units","reg_date":"18/11/2009","3_bed":"39","5_plus":"","reg_ref":"5392/08","fg_date":"03/03/2010","other_total":"260"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.281169,53.348106],[-6.280912,53.348077],[-6.280664,53.348049],[-6.280727,53.347831],[-6.280755,53.347834],[-6.280977,53.347862],[-6.281228,53.347894],[-6.281209,53.347979],[-6.281225,53.34798],[-6.28121,53.34803],[-6.281169,53.348106]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"22/04/2009","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"27/02/2009","stroke":"#ed3a26","no_of_units":"20","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"20. no residential dwellings comprising of four no. 1 bedroom apartments twelve","reg_date":"27/02/2009","3_bed":"4","5_plus":"","reg_ref":"2430/09","fg_date":"03/06/2009","other_total":"20"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.815718,53.169769],[-6.815,53.17001],[-6.814356,53.16956],[-6.814055,53.169257],[-6.813814,53.16901],[-6.814517,53.168669],[-6.814865,53.16901],[-6.815128,53.168933],[-6.815718,53.169769]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"14/03/2013","fill-opacity":0.5,"2_bed":"31","4_bed":"","app_date":"22/01/2013","stroke":"#ed3a26","no_of_units":"46","1_bed":"6","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"Extension of duration 13/35 the residential development will consist of forty-four apartments, Block A, 12 two-bedroom and 6 three-bedroom apartments, Block B, 6 one bedroom, 9 two-bedroom and 3 three","reg_date":"","3_bed":"9","5_plus":"","reg_ref":"1335","fg_date":"n/a","other_total":"46"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.267347,53.317429],[-6.267016,53.317486],[-6.266985,53.317409],[-6.266937,53.317295],[-6.266889,53.317306],[-6.266821,53.3172],[-6.266783,53.317119],[-6.266756,53.31708],[-6.266746,53.317057],[-6.266915,53.317024],[-6.26673,53.316828],[-6.267034,53.316697],[-6.267164,53.316722],[-6.267339,53.316787],[-6.267444,53.316883],[-6.267203,53.316987],[-6.267067,53.317038],[-6.267205,53.317208],[-6.267391,53.317407],[-6.267347,53.317429]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"16/10/2009","fill-opacity":0.5,"2_bed":"3","4_bed":"3","app_date":"08/05/2009","stroke":"#ed3a26","no_of_units":"15","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Demolish car warehouses garage & building & construct 15 residential units","reg_date":"21/09/2009","3_bed":"9","5_plus":"","reg_ref":"2982/09","fg_date":"31/03/2010","other_total":"15"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.241955,53.332853],[-6.241899,53.333025],[-6.24182,53.333124],[-6.241742,53.333223],[-6.241655,53.3332],[-6.241709,53.333134],[-6.241766,53.333061],[-6.241769,53.333054],[-6.241797,53.332989],[-6.241847,53.332835],[-6.241949,53.332852],[-6.241955,53.332853]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"12/12/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"04/11/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - Change of use from offices to one residential unit","reg_date":"04/11/2013","3_bed":"","5_plus":"","reg_ref":"3496/13","fg_date":"20/01/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.222786,53.33973],[-6.222631,53.339811],[-6.222295,53.339633],[-6.222375,53.339581],[-6.222443,53.339551],[-6.222786,53.33973]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"06/01/2010","fill-opacity":0.5,"2_bed":"6","4_bed":"","app_date":"11/08/2009","stroke":"#ed3a26","no_of_units":"6","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential development comprises 6 no. units with a gross floor area of 632sqm","reg_date":"14/12/2009","3_bed":"","5_plus":"","reg_ref":"3660/09","fg_date":"15/02/2010","other_total":"6"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.283684,53.321925],[-6.283678,53.321925],[-6.283899,53.321776],[-6.284175,53.321527],[-6.284378,53.32135],[-6.28471,53.321028],[-6.285028,53.32088],[-6.28512,53.320866],[-6.28527,53.320856],[-6.285349,53.320838],[-6.285447,53.320824],[-6.285551,53.320825],[-6.285596,53.320834],[-6.285685,53.320905],[-6.285723,53.320921],[-6.285911,53.320944],[-6.286074,53.32095],[-6.286191,53.320952],[-6.286281,53.320964],[-6.286383,53.321036],[-6.286708,53.32136],[-6.286796,53.321447],[-6.2868,53.321506],[-6.28667,53.321504],[-6.286643,53.321523],[-6.286642,53.32155],[-6.286654,53.321578],[-6.286679,53.321606],[-6.286566,53.321651],[-6.286282,53.321748],[-6.285201,53.322099],[-6.285145,53.322036],[-6.28494,53.322095],[-6.28499,53.322162],[-6.284858,53.322199],[-6.28478,53.322206],[-6.284682,53.322216],[-6.28461,53.322227],[-6.284591,53.322191],[-6.284594,53.322129],[-6.284629,53.322063],[-6.284693,53.321932],[-6.284592,53.32186],[-6.284503,53.321956],[-6.284319,53.322008],[-6.28426,53.322011],[-6.284065,53.322012],[-6.283994,53.321984],[-6.28391,53.321971],[-6.283813,53.32195],[-6.283684,53.321925]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"21/10/2010","fill-opacity":0.5,"2_bed":"131","4_bed":"","app_date":"09/06/2010","stroke":"#ed3a26","no_of_units":"8","1_bed":"24","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - 8 no. residential buildings ranging in height from 3 to 5","reg_date":"24/09/2010","3_bed":"29","5_plus":"","reg_ref":"2966/10","fg_date":"01/04/2011","other_total":"184"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.267723,53.321385],[-6.267942,53.321297],[-6.267995,53.321351],[-6.268081,53.321461],[-6.268222,53.321421],[-6.268355,53.32139],[-6.268531,53.321338],[-6.26865,53.321315],[-6.26914,53.321256],[-6.269695,53.321276],[-6.269689,53.321426],[-6.269848,53.321437],[-6.26987,53.32142],[-6.269953,53.321426],[-6.269981,53.321588],[-6.269993,53.321634],[-6.27004,53.32186],[-6.26976,53.321893],[-6.269706,53.321876],[-6.269664,53.321875],[-6.269636,53.321875],[-6.269622,53.321887],[-6.269579,53.321903],[-6.269543,53.321928],[-6.268599,53.322068],[-6.268305,53.322105],[-6.268201,53.322116],[-6.268111,53.322103],[-6.268049,53.322081],[-6.267983,53.322005],[-6.267943,53.321954],[-6.267897,53.321887],[-6.267809,53.321653],[-6.267709,53.321385],[-6.267723,53.321385]]],[[[-6.271681,53.322034],[-6.271674,53.322025],[-6.271621,53.32197],[-6.271501,53.321839],[-6.271345,53.321746],[-6.271213,53.321744],[-6.271226,53.321602],[-6.27135,53.321608],[-6.271377,53.321475],[-6.271328,53.321475],[-6.27133,53.321417],[-6.270984,53.321386],[-6.270984,53.321374],[-6.270755,53.321362],[-6.270757,53.321333],[-6.270875,53.321335],[-6.27058,53.32106],[-6.270933,53.320932],[-6.270982,53.320924],[-6.271095,53.321047],[-6.271094,53.321076],[-6.271294,53.321291],[-6.271373,53.321396],[-6.271394,53.321392],[-6.27174,53.321439],[-6.272111,53.321898],[-6.271681,53.322034]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"01/11/2010","fill-opacity":0.5,"2_bed":"48","4_bed":"","app_date":"21/06/2010","stroke":"#ed3a26","no_of_units":"86","1_bed":"42","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Construction of 86 no. residential units in buildings of 4 storeys and 5 storeys","reg_date":"05/10/2010","3_bed":"21","5_plus":"","reg_ref":"3037/10","fg_date":"NULL","other_total":"111"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.346481,53.332004],[-6.346447,53.331928],[-6.346786,53.331407],[-6.347092,53.331419],[-6.347083,53.331598],[-6.346851,53.331961],[-6.346481,53.332004]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"25/02/2011","fill-opacity":0.5,"2_bed":"2","4_bed":"","app_date":"02/07/2010","stroke":"#ed3a26","no_of_units":"8","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"residential development comprising a total of eight houses (6 no. three bedroom","reg_date":"01/02/2011","3_bed":"6","5_plus":"","reg_ref":"3130/10","fg_date":"NULL","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.298383,53.37208],[-6.298376,53.372079],[-6.297333,53.371874],[-6.297404,53.371744],[-6.297476,53.371758],[-6.297495,53.371721],[-6.297508,53.371724],[-6.297562,53.371626],[-6.29755,53.371624],[-6.29765,53.371459],[-6.29863,53.371662],[-6.298591,53.371732],[-6.298567,53.371776],[-6.298443,53.371977],[-6.298417,53.372025],[-6.298383,53.37208]]]]},"type":"Feature","properties":{"status":"Registered application","":"","deision_date":"NULL","fill-opacity":0.5,"2_bed":"20","4_bed":"","app_date":"11/09/2014","stroke":"#ed3a26","no_of_units":"24","1_bed":"4","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"NULL","short_desc":"Construction of 24no. residential units across 4 blocks","reg_date":"11/09/2014","3_bed":"","5_plus":"","reg_ref":"3379/14","fg_date":"NULL","other_total":"24"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.263828,53.331323],[-6.263815,53.331392],[-6.263747,53.331412],[-6.263776,53.331454],[-6.263701,53.331478],[-6.263697,53.331496],[-6.263704,53.331533],[-6.263708,53.331555],[-6.263748,53.331652],[-6.263768,53.331711],[-6.263949,53.331942],[-6.263819,53.331982],[-6.263447,53.332091],[-6.263354,53.332116],[-6.263356,53.332122],[-6.263273,53.332149],[-6.263268,53.332144],[-6.263237,53.332157],[-6.263227,53.332151],[-6.263196,53.332161],[-6.263198,53.332168],[-6.263172,53.332176],[-6.263177,53.332183],[-6.263156,53.332192],[-6.263151,53.332187],[-6.263115,53.332199],[-6.263117,53.332205],[-6.263101,53.332212],[-6.263075,53.332218],[-6.262951,53.332259],[-6.262376,53.331873],[-6.262299,53.331817],[-6.262027,53.331621],[-6.261893,53.331522],[-6.261698,53.331385],[-6.261508,53.331267],[-6.261373,53.331181],[-6.261278,53.331117],[-6.261224,53.331064],[-6.261315,53.33102],[-6.261323,53.331024],[-6.261446,53.330966],[-6.261441,53.330961],[-6.261577,53.330895],[-6.262092,53.330651],[-6.262199,53.330734],[-6.262246,53.330713],[-6.262269,53.330732],[-6.262386,53.33068],[-6.262461,53.330676],[-6.262469,53.330712],[-6.262539,53.33071],[-6.262548,53.330687],[-6.262546,53.33067],[-6.262571,53.330667],[-6.262576,53.330686],[-6.262601,53.330697],[-6.262653,53.33069],[-6.262738,53.330679],[-6.263744,53.330718],[-6.263736,53.330793],[-6.263744,53.330793],[-6.263743,53.330805],[-6.263841,53.331116],[-6.263715,53.331137],[-6.263736,53.331174],[-6.26376,53.33121],[-6.263784,53.331264],[-6.263828,53.331323]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"02/12/2010","fill-opacity":0.5,"2_bed":"156","4_bed":"4","app_date":"08/10/2010","stroke":"#ed3a26","no_of_units":"260","1_bed":"36","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Mixed use regeneration project with new street & 260no. residential units","reg_date":"08/10/2010","3_bed":"64","5_plus":"","reg_ref":"3742/10","fg_date":"09/05/2011","other_total":"260"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.32106,53.372501],[-6.321067,53.372633],[-6.321084,53.372992],[-6.320975,53.372991],[-6.320961,53.372686],[-6.320957,53.372603],[-6.320952,53.372502],[-6.321058,53.372502],[-6.32106,53.372501]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"22/04/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"06/11/2012","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of ground floor from commercial to residential","reg_date":"02/04/2013","3_bed":"","5_plus":"","reg_ref":"3431/12","fg_date":"06/06/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.245299,53.353539],[-6.245295,53.353539],[-6.24503,53.353338],[-6.244947,53.353278],[-6.244641,53.353053],[-6.244167,53.352698],[-6.244543,53.352522],[-6.244266,53.352169],[-6.244033,53.352074],[-6.244046,53.35206],[-6.244643,53.351559],[-6.244796,53.351433],[-6.244947,53.351303],[-6.245098,53.351177],[-6.24514,53.351138],[-6.245157,53.351133],[-6.245175,53.351132],[-6.245203,53.351135],[-6.245233,53.351143],[-6.245267,53.35116],[-6.245288,53.351186],[-6.245301,53.351216],[-6.245315,53.351271],[-6.245335,53.351328],[-6.245273,53.351599],[-6.245518,53.351612],[-6.245615,53.351621],[-6.245782,53.351633],[-6.246313,53.35167],[-6.246414,53.35168],[-6.246622,53.351697],[-6.247326,53.351746],[-6.247518,53.351759],[-6.248192,53.351805],[-6.248133,53.351835],[-6.247996,53.35181],[-6.247917,53.351813],[-6.247856,53.351818],[-6.247708,53.351865],[-6.247623,53.351925],[-6.247572,53.351984],[-6.247568,53.352024],[-6.247563,53.352048],[-6.247632,53.352097],[-6.24716,53.352341],[-6.246123,53.353],[-6.245846,53.353189],[-6.245299,53.353539]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"11/04/2012","fill-opacity":0.5,"2_bed":"81","4_bed":"","app_date":"17/06/2011","stroke":"#ed3a26","no_of_units":"106","1_bed":"12","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - 81 538sqm of mixed commercial residential (106 no. units)","reg_date":"16/02/2012","3_bed":"22","5_plus":"","reg_ref":"2863/11","fg_date":"23/05/2012","other_total":"115"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.260238,53.32989],[-6.260196,53.329845],[-6.26022,53.329837],[-6.26022,53.329833],[-6.260479,53.329752],[-6.260521,53.329798],[-6.260239,53.329891],[-6.260238,53.32989]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"13/10/2011","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"22/08/2011","stroke":"#ed3a26","no_of_units":"1","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - Construction of 2 storey detached residential unit","reg_date":"22/08/2011","3_bed":"","5_plus":"","reg_ref":"3177/11","fg_date":"31/05/2012","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.266401,53.344274],[-6.266451,53.344274],[-6.266462,53.344317],[-6.266477,53.344317],[-6.266488,53.344361],[-6.266534,53.344361],[-6.266544,53.344395],[-6.266656,53.34438],[-6.266674,53.344458],[-6.266604,53.344459],[-6.266602,53.344471],[-6.266552,53.344471],[-6.266551,53.344461],[-6.266521,53.344462],[-6.26652,53.344455],[-6.266487,53.344458],[-6.266486,53.344448],[-6.266473,53.34445],[-6.266466,53.344429],[-6.26645,53.344429],[-6.266431,53.344329],[-6.266412,53.344329],[-6.266401,53.344274]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"16/12/2011","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"28/10/2011","stroke":"#ed3a26","no_of_units":"2","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of 1st floor from office to residential 2no. apartments","reg_date":"28/10/2011","3_bed":"","5_plus":"","reg_ref":"3500/11","fg_date":"17/02/2012","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.265959,53.313024],[-6.265881,53.313027],[-6.265748,53.313037],[-6.265719,53.312894],[-6.265728,53.312868],[-6.265723,53.312839],[-6.265638,53.312455],[-6.266002,53.312428],[-6.265959,53.313024]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"16/02/2012","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"19/12/2011","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE - Change of use from office to single residential unit","reg_date":"19/12/2011","3_bed":"","5_plus":"","reg_ref":"3738/11","fg_date":"02/04/2012","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.252138,53.334792],[-6.251937,53.334716],[-6.252208,53.334461],[-6.252307,53.334369],[-6.252402,53.334407],[-6.252414,53.334396],[-6.252516,53.334435],[-6.252398,53.334545],[-6.252376,53.334567],[-6.252373,53.334568],[-6.25214,53.33479],[-6.252138,53.334792]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"23/10/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"16/05/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from office to residential","reg_date":"25/09/2013","3_bed":"","5_plus":"","reg_ref":"2616/13","fg_date":"04/12/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.279741,53.359339],[-6.279481,53.359414],[-6.278862,53.358599],[-6.278637,53.358666],[-6.278453,53.358718],[-6.278186,53.358793],[-6.277926,53.358868],[-6.277767,53.35867],[-6.277688,53.358561],[-6.277596,53.358435],[-6.277525,53.358326],[-6.277489,53.35818],[-6.277455,53.358163],[-6.277478,53.357394],[-6.27802,53.357244],[-6.278075,53.357233],[-6.278108,53.357275],[-6.278347,53.357577],[-6.279412,53.358918],[-6.279741,53.359339]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"09/05/2012","fill-opacity":0.5,"2_bed":"50","4_bed":"13","app_date":"16/03/2012","stroke":"#ed3a26","no_of_units":"86","1_bed":"10","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Residential development consisting of 86 no. dwellings","reg_date":"16/03/2012","3_bed":"13","5_plus":"","reg_ref":"2313/12","fg_date":"27/03/2013","other_total":"86"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.243586,53.323383],[-6.24359,53.323389],[-6.2433,53.323497],[-6.242989,53.32335],[-6.242714,53.32321],[-6.242405,53.323104],[-6.242088,53.323436],[-6.242123,53.323447],[-6.241201,53.323942],[-6.240918,53.323772],[-6.241067,53.323624],[-6.240718,53.323421],[-6.240945,53.323211],[-6.240248,53.323028],[-6.24029,53.32296],[-6.240348,53.322873],[-6.240603,53.322206],[-6.240661,53.322212],[-6.240827,53.32187],[-6.241575,53.321915],[-6.241584,53.321905],[-6.241896,53.32192],[-6.242952,53.321984],[-6.242827,53.32241],[-6.243294,53.322767],[-6.243027,53.322867],[-6.243586,53.323383]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"02/07/2012","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"15/05/2012","stroke":"#ed3a26","no_of_units":"12","1_bed":"12","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Convert part of the former school building 12 one bedroom residential units","reg_date":"15/05/2012","3_bed":"","5_plus":"","reg_ref":"2592/12","fg_date":"16/08/2012","other_total":"12"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.292546,53.317855],[-6.292571,53.317863],[-6.292939,53.317994],[-6.292896,53.31804],[-6.292527,53.317908],[-6.292502,53.3179],[-6.292546,53.317855]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"03/08/2012","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"13/06/2012","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of part ground floor from office to residential ..","reg_date":"13/06/2012","3_bed":"","5_plus":"","reg_ref":"2748/12","fg_date":"17/09/2012","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.311944,53.327778],[-6.311763,53.327784],[-6.311531,53.327789],[-6.311407,53.327792],[-6.311441,53.327492],[-6.311602,53.327484],[-6.31161,53.327472],[-6.311645,53.327463],[-6.311751,53.327464],[-6.311945,53.327464],[-6.311957,53.327571],[-6.311956,53.327647],[-6.311944,53.327778]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"07/12/2012","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"07/08/2012","stroke":"#ed3a26","no_of_units":"10","1_bed":"10","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"10 no. one bedroom apartments one 5 bed assisted living residential unit","reg_date":"12/11/2012","3_bed":"","5_plus":"1","reg_ref":"3029/12","fg_date":"19/03/2013","other_total":"11"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.252871,53.333969],[-6.25287,53.333969],[-6.252632,53.333885],[-6.252605,53.333875],[-6.252563,53.333861],[-6.252522,53.333845],[-6.252347,53.333785],[-6.252308,53.33377],[-6.252369,53.333711],[-6.252669,53.333817],[-6.252931,53.333909],[-6.252871,53.333969]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"07/06/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"24/01/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PTROTECTED STRUCTURE: - Change of use from offices to a single residential use","reg_date":"14/05/2013","3_bed":"","5_plus":"","reg_ref":"2081/13","fg_date":"25/07/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.245305,53.364433],[-6.245073,53.364573],[-6.245062,53.364584],[-6.244994,53.36465],[-6.24494,53.364698],[-6.244779,53.364626],[-6.24489,53.364529],[-6.244936,53.364495],[-6.245134,53.364328],[-6.245305,53.364433]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"21/06/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"03/05/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from Community Development to Residential Dwelling","reg_date":"03/05/2013","3_bed":"","5_plus":"","reg_ref":"2575/13","fg_date":"06/08/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.24424,53.335369],[-6.244344,53.335426],[-6.244466,53.335496],[-6.244554,53.335544],[-6.244513,53.335569],[-6.24449,53.335567],[-6.244467,53.335581],[-6.24417,53.335415],[-6.244196,53.335398],[-6.24424,53.335369]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"23/07/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"30/05/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change use of lower ground floor from office to residential","reg_date":"30/05/2013","3_bed":"","5_plus":"","reg_ref":"2680/13","fg_date":"02/09/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.249525,53.329781],[-6.249523,53.32978],[-6.249449,53.329743],[-6.249464,53.329727],[-6.249476,53.329708],[-6.249506,53.32967],[-6.24957,53.329587],[-6.249599,53.329552],[-6.249711,53.329568],[-6.249682,53.329601],[-6.249668,53.329617],[-6.249585,53.329714],[-6.249579,53.32972],[-6.249525,53.329781]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"18/09/2013","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"30/07/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from current office use to residential use","reg_date":"30/07/2013","3_bed":"1","5_plus":"","reg_ref":"3022/13","fg_date":"26/11/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.261534,53.320479],[-6.261399,53.320511],[-6.261334,53.320407],[-6.261256,53.320281],[-6.261244,53.320169],[-6.261285,53.320161],[-6.261299,53.320172],[-6.261333,53.320166],[-6.261347,53.320149],[-6.261382,53.320142],[-6.261451,53.320293],[-6.26148,53.320355],[-6.261534,53.320479]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"24/09/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"02/08/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from office/ residential to single house","reg_date":"02/08/2013","3_bed":"","5_plus":"","reg_ref":"3042/13","fg_date":"04/11/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.245429,53.329166],[-6.245205,53.329132],[-6.24523,53.32907],[-6.246338,53.329245],[-6.24631,53.329305],[-6.246142,53.329278],[-6.245755,53.329215],[-6.245429,53.329166]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"30/09/2013","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"07/08/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE: Change of use from office to residential & extensions","reg_date":"07/08/2013","3_bed":"","5_plus":"","reg_ref":"3063/13","fg_date":"08/11/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.150186,53.403002],[-6.150421,53.403026],[-6.150418,53.403037],[-6.150473,53.403042],[-6.15047,53.403052],[-6.150568,53.403062],[-6.150571,53.403052],[-6.15063,53.403058],[-6.150634,53.403045],[-6.151027,53.403084],[-6.151023,53.403098],[-6.151083,53.403104],[-6.151076,53.403125],[-6.151134,53.403132],[-6.151147,53.403122],[-6.151171,53.40311],[-6.151199,53.403101],[-6.15123,53.403098],[-6.151262,53.403099],[-6.151292,53.403105],[-6.15131,53.403111],[-6.151326,53.403119],[-6.151339,53.403129],[-6.151354,53.403146],[-6.151364,53.403435],[-6.151367,53.403495],[-6.151284,53.403498],[-6.151262,53.403498],[-6.151261,53.40353],[-6.151368,53.403525],[-6.151369,53.403571],[-6.151123,53.403578],[-6.151115,53.4035],[-6.151064,53.4035],[-6.151064,53.403512],[-6.150855,53.403513],[-6.150888,53.403353],[-6.150492,53.403311],[-6.150501,53.403283],[-6.150418,53.403273],[-6.150426,53.40325],[-6.15037,53.40324],[-6.150381,53.403211],[-6.150359,53.403208],[-6.150354,53.40324],[-6.15021,53.40322],[-6.150213,53.403197],[-6.150196,53.403193],[-6.150209,53.403147],[-6.150148,53.403136],[-6.150183,53.403011],[-6.150186,53.403002]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"16/12/2013","fill-opacity":0.5,"2_bed":"23","4_bed":"","app_date":"26/08/2013","stroke":"#ed3a26","no_of_units":"32","1_bed":"7","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of part of permitted hotel to 32 residential apartments","reg_date":"22/11/2013","3_bed":"2","5_plus":"","reg_ref":"3154/13","fg_date":"03/02/2014","other_total":"32"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.255843,53.36385],[-6.255714,53.363828],[-6.255739,53.363772],[-6.255829,53.363561],[-6.255847,53.363519],[-6.255867,53.363471],[-6.255912,53.363374],[-6.255906,53.363373],[-6.25598,53.363196],[-6.256124,53.363215],[-6.256018,53.36346],[-6.256006,53.363488],[-6.255987,53.363532],[-6.255903,53.363718],[-6.255845,53.363844],[-6.255843,53.36385]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"05/11/2013","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"11/09/2013","stroke":"#ed3a26","no_of_units":"1","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of pre-63 office premises back to a 4 bedroom residential dwelling","reg_date":"11/09/2013","3_bed":"","5_plus":"","reg_ref":"3222/13","fg_date":"09/12/2013","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.272199,53.363173],[-6.271697,53.363085],[-6.271719,53.363035],[-6.271781,53.363044],[-6.272223,53.363123],[-6.272199,53.363173]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"13/05/2014","fill-opacity":0.5,"2_bed":"","4_bed":"1","app_date":"20/01/2014","stroke":"#ed3a26","no_of_units":"","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from educational training centre & offices to single residential","reg_date":"28/04/2014","3_bed":"","5_plus":"","reg_ref":"2073/14","fg_date":"25/06/2014","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.240752,53.358767],[-6.240718,53.358752],[-6.240609,53.358702],[-6.240481,53.358643],[-6.240451,53.358629],[-6.240502,53.358587],[-6.240551,53.358547],[-6.240709,53.358619],[-6.240711,53.358617],[-6.240821,53.358668],[-6.24085,53.358679],[-6.240803,53.358721],[-6.240754,53.358765],[-6.240752,53.358767]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"20/02/2014","fill-opacity":0.5,"2_bed":"","4_bed":"2","app_date":"19/12/2013","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use of no's 119 & 120 from office to residential","reg_date":"19/12/2013","3_bed":"","5_plus":"","reg_ref":"3737/13","fg_date":"04/04/2014","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.225644,53.338075],[-6.225644,53.338073],[-6.22562,53.337955],[-6.225617,53.337931],[-6.225604,53.337853],[-6.225593,53.337787],[-6.22577,53.337776],[-6.225782,53.337841],[-6.225797,53.337919],[-6.225803,53.337943],[-6.22581,53.337976],[-6.225822,53.338044],[-6.225727,53.338064],[-6.225687,53.338073],[-6.225644,53.338075]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"03/03/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"10/01/2014","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"Change of use from office/showroom to 2 residential houses","reg_date":"10/01/2014","3_bed":"2","5_plus":"","reg_ref":"2036/14","fg_date":"16/04/2014","other_total":"2"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.252488,53.33359],[-6.252524,53.333604],[-6.252699,53.333665],[-6.252788,53.333695],[-6.253086,53.333802],[-6.253026,53.333861],[-6.252729,53.333756],[-6.252638,53.333726],[-6.252426,53.333653],[-6.252485,53.333593],[-6.252488,53.33359]]]]},"type":"Feature","properties":{"status":"Decision Notices Issued","":"","deision_date":"10/10/2014","fill-opacity":0.5,"2_bed":"2","4_bed":"2","app_date":"09/05/2014","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"GRANT PERMISSION","short_desc":"PROTECTED STRUCTURE:Change of use from office use to two residential units","reg_date":"16/09/2014","3_bed":"","5_plus":"","reg_ref":"2645/14","fg_date":"NULL","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.224431,53.26513],[-6.223401,53.265065],[-6.222317,53.265919],[-6.22162,53.266336],[-6.222221,53.266734],[-6.222725,53.266522],[-6.223058,53.26658],[-6.223948,53.266034],[-6.224345,53.265752],[-6.224431,53.26513]]]]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"31/01/2014","fill-opacity":0.5,"2_bed":"","4_bed":"11","app_date":"29/11/2013","stroke":"#ed3a26","no_of_units":"37","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Permission and Retention permission is sought for amendments to existing","reg_date":"29/11/2013","3_bed":"29","5_plus":"","reg_ref":"D13A/0636","fg_date":"","other_total":"40"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.166814,53.407393],[-6.165755,53.405676],[-6.166844,53.405348],[-6.166505,53.404891],[-6.163295,53.405936],[-6.163359,53.405865],[-6.170326,53.403499],[-6.170323,53.40357],[-6.16824,53.404347],[-6.168756,53.405306],[-6.168536,53.407508],[-6.168489,53.4079],[-6.168224,53.408276],[-6.168001,53.408374],[-6.16753,53.408468],[-6.167141,53.407796],[-6.167116,53.407677],[-6.16674,53.40776],[-6.166626,53.407604],[-6.166807,53.407559],[-6.16689,53.407489],[-6.166814,53.407393]]]]},"type":"Feature","properties":{"status":"Registered application","":"","deision_date":"NULL","fill-opacity":0.5,"2_bed":"","4_bed":"55","app_date":"25/06/2014","stroke":"#ed3a26","no_of_units":"166","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DCC","decision":"NULL","short_desc":"5 No. residential cells providing 166 no. 2-3 storey 3 & 4 bed houses.","reg_date":"24/09/2014","3_bed":"111","5_plus":"","reg_ref":"2941/14","fg_date":"NULL","other_total":"166"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.176605,53.425684],[-6.176576,53.425596],[-6.17653,53.42544],[-6.176497,53.425307],[-6.176498,53.425297],[-6.176499,53.425293],[-6.176507,53.42529],[-6.176516,53.425287],[-6.176532,53.425284],[-6.176606,53.42529],[-6.176623,53.425214],[-6.176514,53.425181],[-6.1765,53.425177],[-6.176493,53.425173],[-6.176486,53.425165],[-6.176485,53.42516],[-6.176479,53.425145],[-6.176475,53.425129],[-6.176467,53.425067],[-6.176457,53.424996],[-6.176445,53.424912],[-6.17644,53.424663],[-6.176439,53.424611],[-6.176442,53.424348],[-6.176441,53.42433],[-6.176437,53.424261],[-6.176448,53.423955],[-6.176449,53.423921],[-6.176603,53.423917],[-6.176604,53.423929],[-6.176629,53.423927],[-6.176913,53.42392],[-6.177167,53.42391],[-6.17722,53.423907],[-6.177332,53.423903],[-6.177407,53.423899],[-6.177442,53.423897],[-6.17805,53.423863],[-6.178209,53.423856],[-6.17894,53.423828],[-6.179368,53.423807],[-6.17979,53.423787],[-6.179559,53.423809],[-6.178652,53.423881],[-6.178731,53.426372],[-6.178729,53.426377],[-6.178624,53.426378],[-6.178366,53.426379],[-6.178248,53.426379],[-6.178088,53.426388],[-6.178072,53.426391],[-6.177923,53.426425],[-6.177719,53.426475],[-6.17759,53.426506],[-6.177548,53.426523],[-6.177465,53.426563],[-6.177383,53.426592],[-6.177304,53.42662],[-6.177274,53.426623],[-6.177244,53.426628],[-6.177208,53.426633],[-6.177085,53.426634],[-6.177042,53.42663],[-6.177013,53.426628],[-6.177012,53.426627],[-6.176995,53.426608],[-6.176983,53.426595],[-6.176968,53.426579],[-6.176963,53.426566],[-6.176863,53.426344],[-6.176812,53.426214],[-6.176789,53.426156],[-6.176766,53.426098],[-6.176747,53.426051],[-6.17667,53.425857],[-6.176635,53.425761],[-6.176605,53.425684]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"14","app_date":"13/11/2007","stroke":"#ed3a26","no_of_units":"30","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of a residential development with a total of 30 no. detached and semi-detached two storey houses (12 no. five bedroom detached houses, 14 no. four bedroom detached houses and 4 no. three ","reg_date":"","3_bed":"4","5_plus":"12","reg_ref":"F07A/1460","fg_date":"","other_total":"30"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.455423,53.363545],[-6.455408,53.363578],[-6.455395,53.363606],[-6.455371,53.363686],[-6.455357,53.363755],[-6.455356,53.363759],[-6.455353,53.363796],[-6.455343,53.363934],[-6.455342,53.363942],[-6.455336,53.364034],[-6.455338,53.364081],[-6.455344,53.364193],[-6.455346,53.364238],[-6.455348,53.364274],[-6.45507,53.364331],[-6.454929,53.364369],[-6.454977,53.364406],[-6.454923,53.364424],[-6.454852,53.364448],[-6.454778,53.364474],[-6.454328,53.364626],[-6.453995,53.364733],[-6.453884,53.364768],[-6.453327,53.364927],[-6.453013,53.365013],[-6.452748,53.365085],[-6.452525,53.365149],[-6.452331,53.365213],[-6.452226,53.365248],[-6.452045,53.365312],[-6.45193,53.365362],[-6.451891,53.36538],[-6.45172,53.365447],[-6.4515,53.365537],[-6.451411,53.365571],[-6.45138,53.365601],[-6.45131,53.36567],[-6.451245,53.36575],[-6.451216,53.365764],[-6.45119,53.365799],[-6.451164,53.365829],[-6.450968,53.365828],[-6.450747,53.365823],[-6.450674,53.365819],[-6.450601,53.365815],[-6.45054,53.365807],[-6.450444,53.365789],[-6.450352,53.365779],[-6.450296,53.365775],[-6.450182,53.365743],[-6.44997,53.365662],[-6.449631,53.365518],[-6.449449,53.365452],[-6.449197,53.365379],[-6.449014,53.365332],[-6.448906,53.365296],[-6.448685,53.365256],[-6.44853,53.365229],[-6.448438,53.365214],[-6.448351,53.365153],[-6.448291,53.365108],[-6.448387,53.365066],[-6.448717,53.364923],[-6.448869,53.364864],[-6.44896,53.364826],[-6.44991,53.364386],[-6.449979,53.364354],[-6.450089,53.364303],[-6.450645,53.364042],[-6.450671,53.364032],[-6.45074,53.364005],[-6.450761,53.363997],[-6.450996,53.363928],[-6.451385,53.364211],[-6.451562,53.364086],[-6.451563,53.364062],[-6.451587,53.364053],[-6.45161,53.364043],[-6.451631,53.364031],[-6.451651,53.364019],[-6.451668,53.364005],[-6.451684,53.363991],[-6.451698,53.363976],[-6.451709,53.36396],[-6.451718,53.363944],[-6.451725,53.363927],[-6.451729,53.36391],[-6.451731,53.363893],[-6.45173,53.363876],[-6.451727,53.363859],[-6.451722,53.363842],[-6.451714,53.363825],[-6.451704,53.363809],[-6.451691,53.363794],[-6.451676,53.363779],[-6.45166,53.363765],[-6.451641,53.363752],[-6.451621,53.36374],[-6.451789,53.363694],[-6.452359,53.363525],[-6.452734,53.363425],[-6.452853,53.363401],[-6.452905,53.363395],[-6.452956,53.363393],[-6.453168,53.363402],[-6.453544,53.36342],[-6.454275,53.363453],[-6.455338,53.3635],[-6.455442,53.363504],[-6.455423,53.363545]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"36","app_date":"26/10/2007","stroke":"#ed3a26","no_of_units":"69","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of: the construction of a total of 69 detached residential units, each with tool-shed and associated landscaping. The residential units range in size from 231.27 sq.m to","reg_date":"","3_bed":"","5_plus":"33","reg_ref":"F07A/1379","fg_date":"","other_total":"69"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.242299,53.449334],[-6.242185,53.449533],[-6.242121,53.449646],[-6.242113,53.449644],[-6.242057,53.449632],[-6.241589,53.449528],[-6.241475,53.449505],[-6.241366,53.449482],[-6.241294,53.449467],[-6.241265,53.44946],[-6.241403,53.449257],[-6.241451,53.44919],[-6.241489,53.449198],[-6.242299,53.449334]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"14","4_bed":"","app_date":"20/11/2007","stroke":"#ed3a26","no_of_units":"12","1_bed":"10","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Changes to part of a previously permitted residential scheme Reg. Ref. F05A/0265. The proposed development consists of changes to permitted apartment Block P from 12 no. 2 bed apartments in a 2 store","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F07A/0565","fg_date":"","other_total":"24"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.068026,53.133181],[-6.067978,53.133841],[-6.068557,53.133529],[-6.06919,53.133236],[-6.069072,53.133039],[-6.069415,53.132943],[-6.069201,53.132702],[-6.069067,53.132698],[-6.068814,53.132808],[-6.068493,53.133027],[-6.06816,53.133155],[-6.068026,53.133181]]]]},"type":"Feature","properties":{"status":"FURTHER INFORMATION","":"","deision_date":"\u00a0","fill-opacity":0.5,"2_bed":"","4_bed":"6","app_date":"27/08/2014","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"\u00a0","short_desc":"a mixed use residential/commercial development comprising of the following: 1. Construction of 13 no...","reg_date":"","3_bed":"","5_plus":"7","reg_ref":"141762","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.430805,53.390765],[-6.430435,53.390718],[-6.42996,53.390648],[-6.429729,53.390613],[-6.429685,53.390606],[-6.429608,53.390594],[-6.429566,53.390587],[-6.429216,53.39053],[-6.428825,53.390463],[-6.428776,53.390454],[-6.428671,53.390436],[-6.42863,53.390429],[-6.42836,53.39037],[-6.428337,53.390365],[-6.428285,53.390354],[-6.428365,53.390092],[-6.428587,53.390136],[-6.429699,53.390371],[-6.429756,53.390383],[-6.429833,53.390399],[-6.42988,53.390409],[-6.42988,53.390409],[-6.429845,53.39046],[-6.430187,53.390544],[-6.430526,53.390627],[-6.430563,53.390575],[-6.430867,53.390638],[-6.430851,53.390674],[-6.430805,53.390765]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"15","4_bed":"","app_date":"19/12/2007","stroke":"#ed3a26","no_of_units":"15","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for a Residential Development consisting of the construction of 15 no. 2 bed apartments in 1 no. 2 and 3 storey block, and including for all associated drainage, site development and infras","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F07A/1660","fg_date":"","other_total":"15"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.315664,53.521452],[-6.315654,53.521512],[-6.315293,53.52153],[-6.315217,53.521541],[-6.315205,53.52154],[-6.315088,53.521552],[-6.315021,53.521551],[-6.314953,53.521555],[-6.314864,53.521549],[-6.314832,53.521541],[-6.314671,53.521498],[-6.314671,53.521495],[-6.314499,53.521439],[-6.314842,53.520566],[-6.315296,53.520622],[-6.31497,53.521404],[-6.315232,53.521446],[-6.315263,53.52137],[-6.315671,53.521418],[-6.315664,53.521452]]],[[[-6.315151,53.519671],[-6.315584,53.519732],[-6.315363,53.520305],[-6.314916,53.520243],[-6.315151,53.519671]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"26/10/2007","stroke":"#ed3a26","no_of_units":"17","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Phase 2 of proposed residential development comprising of 17 additional two storey houses. Houses not exceeding 8.7 meters height.","reg_date":"","3_bed":"17","5_plus":"","reg_ref":"F07A/1386","fg_date":"","other_total":"17"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.267926,53.294465],[-6.268408,53.293067],[-6.26534,53.29272],[-6.264879,53.294144],[-6.267926,53.294465]]]]},"type":"Feature","properties":{"status":"Appeal decided","":"","deision_date":"08/07/2013","fill-opacity":0.5,"2_bed":"18","4_bed":"31","app_date":"11/12/2012","stroke":"#ed3a26","no_of_units":"97","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT PERMISSION","short_desc":"Permission for a new residential development at Hazelbrook Square.","reg_date":"17/06/2013","3_bed":"48","5_plus":"","reg_ref":"D12A/0484","fg_date":"","other_total":"97"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.455423,53.363545],[-6.455408,53.363578],[-6.455395,53.363606],[-6.455371,53.363686],[-6.455357,53.363755],[-6.455356,53.363759],[-6.455353,53.363796],[-6.455343,53.363934],[-6.455342,53.363942],[-6.455336,53.364034],[-6.455338,53.364081],[-6.455344,53.364193],[-6.455346,53.364238],[-6.455348,53.364274],[-6.45507,53.364331],[-6.454929,53.364369],[-6.454977,53.364406],[-6.454923,53.364424],[-6.454852,53.364448],[-6.454778,53.364474],[-6.454328,53.364626],[-6.453995,53.364733],[-6.453884,53.364768],[-6.453327,53.364927],[-6.453013,53.365013],[-6.452748,53.365085],[-6.452525,53.365149],[-6.452331,53.365213],[-6.452226,53.365248],[-6.452045,53.365312],[-6.45193,53.365362],[-6.451891,53.36538],[-6.45172,53.365447],[-6.4515,53.365537],[-6.451411,53.365571],[-6.45138,53.365601],[-6.45131,53.36567],[-6.451245,53.36575],[-6.451216,53.365764],[-6.45119,53.365799],[-6.451164,53.365829],[-6.450968,53.365828],[-6.450747,53.365823],[-6.450674,53.365819],[-6.450601,53.365815],[-6.45054,53.365807],[-6.450444,53.365789],[-6.450352,53.365779],[-6.450296,53.365775],[-6.450182,53.365743],[-6.44997,53.365662],[-6.449631,53.365518],[-6.449449,53.365452],[-6.449197,53.365379],[-6.449014,53.365332],[-6.448906,53.365296],[-6.448685,53.365256],[-6.44853,53.365229],[-6.448438,53.365214],[-6.448351,53.365153],[-6.448291,53.365108],[-6.448387,53.365066],[-6.448717,53.364923],[-6.448869,53.364864],[-6.44896,53.364826],[-6.44991,53.364386],[-6.449979,53.364354],[-6.450089,53.364303],[-6.450645,53.364042],[-6.450671,53.364032],[-6.45074,53.364005],[-6.450761,53.363997],[-6.450996,53.363928],[-6.451385,53.364211],[-6.451562,53.364086],[-6.451563,53.364062],[-6.451587,53.364053],[-6.45161,53.364043],[-6.451631,53.364031],[-6.451651,53.364019],[-6.451668,53.364005],[-6.451684,53.363991],[-6.451698,53.363976],[-6.451709,53.36396],[-6.451718,53.363944],[-6.451725,53.363927],[-6.451729,53.36391],[-6.451731,53.363893],[-6.45173,53.363876],[-6.451727,53.363859],[-6.451722,53.363842],[-6.451714,53.363825],[-6.451704,53.363809],[-6.451691,53.363794],[-6.451676,53.363779],[-6.45166,53.363765],[-6.451641,53.363752],[-6.451621,53.36374],[-6.451789,53.363694],[-6.452359,53.363525],[-6.452734,53.363425],[-6.452853,53.363401],[-6.452905,53.363395],[-6.452956,53.363393],[-6.453168,53.363402],[-6.453544,53.36342],[-6.454275,53.363453],[-6.455338,53.3635],[-6.455442,53.363504],[-6.455423,53.363545]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"36","app_date":"26/10/2007","stroke":"#ed3a26","no_of_units":"69","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of: the construction of a total of 69 detached residential units, each with tool-shed and associated landscaping. The residential units range in size from 231.27 sq.m to","reg_date":"","3_bed":"","5_plus":"33","reg_ref":"F07A/1379","fg_date":"","other_total":"69"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.315664,53.521452],[-6.315654,53.521512],[-6.315293,53.52153],[-6.315217,53.521541],[-6.315205,53.52154],[-6.315088,53.521552],[-6.315021,53.521551],[-6.314953,53.521555],[-6.314864,53.521549],[-6.314832,53.521541],[-6.314671,53.521498],[-6.314671,53.521495],[-6.314499,53.521439],[-6.314842,53.520566],[-6.315296,53.520622],[-6.31497,53.521404],[-6.315232,53.521446],[-6.315263,53.52137],[-6.315671,53.521418],[-6.315664,53.521452]]],[[[-6.315151,53.519671],[-6.315584,53.519732],[-6.315363,53.520305],[-6.314916,53.520243],[-6.315151,53.519671]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"26/10/2007","stroke":"#ed3a26","no_of_units":"17","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Phase 2 of proposed residential development comprising of 17 additional two storey houses. Houses not exceeding 8.7 meters height.","reg_date":"","3_bed":"17","5_plus":"","reg_ref":"F07A/1386","fg_date":"","other_total":"17"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.175483,53.438336],[-6.175426,53.438275],[-6.175394,53.438224],[-6.175361,53.438174],[-6.175352,53.438161],[-6.175333,53.438133],[-6.17532,53.438114],[-6.175293,53.438076],[-6.175251,53.438006],[-6.175159,53.437851],[-6.175135,53.437822],[-6.175117,53.437797],[-6.175094,53.437768],[-6.175057,53.437728],[-6.175043,53.437713],[-6.174995,53.437674],[-6.174954,53.43765],[-6.174914,53.437625],[-6.17487,53.437596],[-6.174841,53.437577],[-6.174815,53.437554],[-6.174794,53.437539],[-6.17478,53.437526],[-6.174774,53.437511],[-6.174776,53.437497],[-6.174781,53.437469],[-6.174788,53.437458],[-6.174792,53.437449],[-6.174799,53.437438],[-6.174808,53.43743],[-6.174819,53.437419],[-6.174832,53.437407],[-6.174842,53.437397],[-6.174854,53.437399],[-6.174862,53.437398],[-6.174869,53.437393],[-6.174911,53.437409],[-6.174938,53.4374],[-6.175019,53.437372],[-6.175075,53.437357],[-6.175114,53.43735],[-6.175146,53.437343],[-6.175181,53.437336],[-6.175265,53.437324],[-6.175243,53.437316],[-6.175272,53.437312],[-6.175699,53.437242],[-6.175726,53.437238],[-6.175756,53.437233],[-6.175773,53.437231],[-6.175939,53.437202],[-6.17603,53.437189],[-6.176266,53.437162],[-6.176535,53.437131],[-6.176696,53.437087],[-6.176742,53.437084],[-6.176835,53.437079],[-6.176852,53.437608],[-6.176855,53.437717],[-6.176856,53.437919],[-6.176855,53.438112],[-6.17685,53.438358],[-6.176846,53.438373],[-6.176474,53.438368],[-6.176468,53.43838],[-6.17617,53.438365],[-6.175483,53.438336]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"10/12/2007","stroke":"#ed3a26","no_of_units":"16","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"(1) The construction of sixteen detached residential units, comprising 1 No. type A1, 2.5 storey detached house - 334 sq. m, 1 No. type A2, 2.5 storey detached house - 343 sq.m., 2 No. type A3, 2.5 st","reg_date":"","3_bed":"16","5_plus":"","reg_ref":"F07A/0325","fg_date":"","other_total":"16"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.176605,53.425684],[-6.176576,53.425596],[-6.17653,53.42544],[-6.176497,53.425307],[-6.176498,53.425297],[-6.176499,53.425293],[-6.176507,53.42529],[-6.176516,53.425287],[-6.176532,53.425284],[-6.176606,53.42529],[-6.176623,53.425214],[-6.176514,53.425181],[-6.1765,53.425177],[-6.176493,53.425173],[-6.176486,53.425165],[-6.176485,53.42516],[-6.176479,53.425145],[-6.176475,53.425129],[-6.176467,53.425067],[-6.176457,53.424996],[-6.176445,53.424912],[-6.17644,53.424663],[-6.176439,53.424611],[-6.176442,53.424348],[-6.176441,53.42433],[-6.176437,53.424261],[-6.176448,53.423955],[-6.176449,53.423921],[-6.176603,53.423917],[-6.176604,53.423929],[-6.176629,53.423927],[-6.176913,53.42392],[-6.177167,53.42391],[-6.17722,53.423907],[-6.177332,53.423903],[-6.177407,53.423899],[-6.177442,53.423897],[-6.17805,53.423863],[-6.178209,53.423856],[-6.17894,53.423828],[-6.179368,53.423807],[-6.17979,53.423787],[-6.179559,53.423809],[-6.178652,53.423881],[-6.178731,53.426372],[-6.178729,53.426377],[-6.178624,53.426378],[-6.178366,53.426379],[-6.178248,53.426379],[-6.178088,53.426388],[-6.178072,53.426391],[-6.177923,53.426425],[-6.177719,53.426475],[-6.17759,53.426506],[-6.177548,53.426523],[-6.177465,53.426563],[-6.177383,53.426592],[-6.177304,53.42662],[-6.177274,53.426623],[-6.177244,53.426628],[-6.177208,53.426633],[-6.177085,53.426634],[-6.177042,53.42663],[-6.177013,53.426628],[-6.177012,53.426627],[-6.176995,53.426608],[-6.176983,53.426595],[-6.176968,53.426579],[-6.176963,53.426566],[-6.176863,53.426344],[-6.176812,53.426214],[-6.176789,53.426156],[-6.176766,53.426098],[-6.176747,53.426051],[-6.17667,53.425857],[-6.176635,53.425761],[-6.176605,53.425684]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"14","app_date":"13/11/2007","stroke":"#ed3a26","no_of_units":"30","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of a residential development with a total of 30 no. detached and semi-detached two storey houses (12 no. five bedroom detached houses, 14 no. four bedroom detached houses and 4 no. three ","reg_date":"","3_bed":"4","5_plus":"12","reg_ref":"F07A/1460","fg_date":"","other_total":"30"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.096558,53.526938],[-6.095535,53.526984],[-6.094481,53.526972],[-6.094448,53.526279],[-6.094267,53.526002],[-6.094083,53.525329],[-6.094054,53.524887],[-6.094061,53.52469],[-6.094113,53.524678],[-6.094174,53.524667],[-6.094315,53.524638],[-6.094423,53.524627],[-6.094611,53.524611],[-6.094812,53.524634],[-6.094921,53.524623],[-6.094929,53.524645],[-6.094996,53.524641],[-6.09505,53.524998],[-6.095687,53.524951],[-6.095803,53.526717],[-6.096543,53.526695],[-6.096558,53.526938]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"30","4_bed":"29","app_date":"27/06/2008","stroke":"#ed3a26","no_of_units":"91","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The construction of 91 no. dwelling units which will form Phase 3 of residential development proposals on Local Area Plan lands fronting Skerries Road to include the following: a) 67 no. townhouses c","reg_date":"","3_bed":"32","5_plus":"","reg_ref":"F08A/0800","fg_date":"","other_total":"91"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.168406,53.423608],[-6.168353,53.423701],[-6.168356,53.423703],[-6.168231,53.424101],[-6.167858,53.424051],[-6.167523,53.424018],[-6.167679,53.423553],[-6.167239,53.423469],[-6.167334,53.423188],[-6.167345,53.423188],[-6.167355,53.423188],[-6.16737,53.423187],[-6.167383,53.423184],[-6.167407,53.423179],[-6.167434,53.423171],[-6.167481,53.423159],[-6.167623,53.423188],[-6.167634,53.42317],[-6.167899,53.423225],[-6.167928,53.423178],[-6.167955,53.423181],[-6.167983,53.423135],[-6.168311,53.423195],[-6.168115,53.423548],[-6.168406,53.423608]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"10/12/2007","stroke":"#ed3a26","no_of_units":"7","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Conversion and change of use of existing farmyard out buildings to north of main house for 7 no. residential units as follows:(1) 3 bedroom unit in single storey former garage; (2) 2 bedroom 2 store","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F07A/1611","fg_date":"","other_total":"7"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.40676,53.382296],[-6.406466,53.382307],[-6.406445,53.382308],[-6.406406,53.38231],[-6.406385,53.382311],[-6.406346,53.382314],[-6.406326,53.382315],[-6.406259,53.382319],[-6.406238,53.38232],[-6.406038,53.382325],[-6.406037,53.382315],[-6.406028,53.382261],[-6.40604,53.382257],[-6.406041,53.382256],[-6.406043,53.382255],[-6.406044,53.382254],[-6.406045,53.382254],[-6.406046,53.382253],[-6.406048,53.382252],[-6.406049,53.382251],[-6.40605,53.38225],[-6.406051,53.382249],[-6.406052,53.382248],[-6.406053,53.382248],[-6.406054,53.382247],[-6.406055,53.382246],[-6.406056,53.382244],[-6.406057,53.382243],[-6.406058,53.382242],[-6.406059,53.382241],[-6.40606,53.382239],[-6.406064,53.382229],[-6.406064,53.382228],[-6.406064,53.382227],[-6.406064,53.382225],[-6.406064,53.382224],[-6.406065,53.382223],[-6.406064,53.382221],[-6.406064,53.38222],[-6.406064,53.382219],[-6.406064,53.382217],[-6.406064,53.382216],[-6.406063,53.382214],[-6.406063,53.382213],[-6.406056,53.382203],[-6.406045,53.382193],[-6.406044,53.382192],[-6.406024,53.382184],[-6.406013,53.382182],[-6.406012,53.382174],[-6.406001,53.382114],[-6.406031,53.382111],[-6.40623,53.382095],[-6.406252,53.382094],[-6.406318,53.382089],[-6.406344,53.382086],[-6.406759,53.382051],[-6.40677,53.382055],[-6.406798,53.382053],[-6.406797,53.382047],[-6.406913,53.382037],[-6.406942,53.382033],[-6.407,53.38203],[-6.407005,53.382024],[-6.407039,53.382021],[-6.407083,53.382017],[-6.407198,53.382006],[-6.407211,53.382004],[-6.407213,53.382019],[-6.407216,53.38204],[-6.407249,53.382278],[-6.40676,53.382296]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"8","4_bed":"","app_date":"21/11/2007","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of existing habitable house and ancillary outbuildings at 'Villa D'est' and provision of an infill residential development to comprise a total of 13 No. residential units comprising a terra","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F07A/1519","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.139935,53.494632],[-6.141207,53.494784],[-6.141064,53.495363],[-6.134461,53.495148],[-6.13435,53.493952],[-6.136395,53.494194],[-6.136911,53.494255],[-6.137518,53.494334],[-6.13756,53.49434],[-6.137657,53.494355],[-6.137661,53.494355],[-6.137751,53.494366],[-6.138143,53.494415],[-6.13833,53.494438],[-6.138342,53.494423],[-6.1387,53.49447],[-6.139468,53.49457],[-6.139935,53.494632]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"31","4_bed":"26","app_date":"28/11/2008","stroke":"#ed3a26","no_of_units":"99","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Ten year planning permission on a site (5.204 hectares) to construct a development incorporating 1) The erection of 99 no. detached, semi detached & terraced residential units (some with ancillary gar","reg_date":"","3_bed":"32","5_plus":"10","reg_ref":"F08A/1338","fg_date":"","other_total":"99"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.177841,53.408115],[-6.177856,53.408138],[-6.177857,53.40814],[-6.177917,53.408226],[-6.177957,53.408315],[-6.177987,53.408396],[-6.177412,53.408427],[-6.177419,53.408447],[-6.177207,53.408452],[-6.177106,53.408454],[-6.17711,53.408435],[-6.177111,53.408371],[-6.177107,53.408351],[-6.177059,53.408108],[-6.177809,53.408066],[-6.17784,53.408113],[-6.177841,53.408115]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/09/2008","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission to 1) Demolish existing cottage on-site and 2) permission to construct a residential development comprising of 4 no. two storey with attic converted, semi-detached dwellings with a ridge he","reg_date":"","3_bed":"","5_plus":"4","reg_ref":"F08A/0152","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.087421,53.521717],[-6.087413,53.521741],[-6.087304,53.521729],[-6.087216,53.52172],[-6.087111,53.521708],[-6.087112,53.521704],[-6.087064,53.5217],[-6.087078,53.521659],[-6.087081,53.521649],[-6.087064,53.521647],[-6.087071,53.521628],[-6.087076,53.521613],[-6.087081,53.521599],[-6.087086,53.521585],[-6.087089,53.521575],[-6.087089,53.521559],[-6.087089,53.521553],[-6.08709,53.521538],[-6.08709,53.521528],[-6.087097,53.521442],[-6.08719,53.521448],[-6.087295,53.521454],[-6.08731,53.521455],[-6.087308,53.521466],[-6.087352,53.521471],[-6.087378,53.521474],[-6.087433,53.52148],[-6.087444,53.521482],[-6.087439,53.521515],[-6.087431,53.521567],[-6.087427,53.521619],[-6.087425,53.521626],[-6.087426,53.521638],[-6.087426,53.521688],[-6.08743,53.521688],[-6.087421,53.521717]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"7","4_bed":"","app_date":"29/01/2008","stroke":"#ed3a26","no_of_units":"8","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of the demolition of the existing 3 no. two storey residential units and the construction of a 3 storey detached apartment building containing 8 no. apartments, 7 no. two ","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"F07A/0956","fg_date":"","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.168406,53.423608],[-6.168353,53.423701],[-6.168356,53.423703],[-6.168231,53.424101],[-6.167858,53.424051],[-6.167523,53.424018],[-6.167679,53.423553],[-6.167239,53.423469],[-6.167334,53.423188],[-6.167345,53.423188],[-6.167355,53.423188],[-6.16737,53.423187],[-6.167383,53.423184],[-6.167407,53.423179],[-6.167434,53.423171],[-6.167481,53.423159],[-6.167623,53.423188],[-6.167634,53.42317],[-6.167899,53.423225],[-6.167928,53.423178],[-6.167955,53.423181],[-6.167983,53.423135],[-6.168311,53.423195],[-6.168115,53.423548],[-6.168406,53.423608]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"10/12/2007","stroke":"#ed3a26","no_of_units":"7","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Conversion and change of use of existing farmyard out buildings to north of main house for 7 no. residential units as follows:(1) 3 bedroom unit in single storey former garage; (2) 2 bedroom 2 store","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F07A/1611","fg_date":"","other_total":"7"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.40676,53.382296],[-6.406466,53.382307],[-6.406445,53.382308],[-6.406406,53.38231],[-6.406385,53.382311],[-6.406346,53.382314],[-6.406326,53.382315],[-6.406259,53.382319],[-6.406238,53.38232],[-6.406038,53.382325],[-6.406037,53.382315],[-6.406028,53.382261],[-6.40604,53.382257],[-6.406041,53.382256],[-6.406043,53.382255],[-6.406044,53.382254],[-6.406045,53.382254],[-6.406046,53.382253],[-6.406048,53.382252],[-6.406049,53.382251],[-6.40605,53.38225],[-6.406051,53.382249],[-6.406052,53.382248],[-6.406053,53.382248],[-6.406054,53.382247],[-6.406055,53.382246],[-6.406056,53.382244],[-6.406057,53.382243],[-6.406058,53.382242],[-6.406059,53.382241],[-6.40606,53.382239],[-6.406064,53.382229],[-6.406064,53.382228],[-6.406064,53.382227],[-6.406064,53.382225],[-6.406064,53.382224],[-6.406065,53.382223],[-6.406064,53.382221],[-6.406064,53.38222],[-6.406064,53.382219],[-6.406064,53.382217],[-6.406064,53.382216],[-6.406063,53.382214],[-6.406063,53.382213],[-6.406056,53.382203],[-6.406045,53.382193],[-6.406044,53.382192],[-6.406024,53.382184],[-6.406013,53.382182],[-6.406012,53.382174],[-6.406001,53.382114],[-6.406031,53.382111],[-6.40623,53.382095],[-6.406252,53.382094],[-6.406318,53.382089],[-6.406344,53.382086],[-6.406759,53.382051],[-6.40677,53.382055],[-6.406798,53.382053],[-6.406797,53.382047],[-6.406913,53.382037],[-6.406942,53.382033],[-6.407,53.38203],[-6.407005,53.382024],[-6.407039,53.382021],[-6.407083,53.382017],[-6.407198,53.382006],[-6.407211,53.382004],[-6.407213,53.382019],[-6.407216,53.38204],[-6.407249,53.382278],[-6.40676,53.382296]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"8","4_bed":"","app_date":"21/11/2007","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of existing habitable house and ancillary outbuildings at 'Villa D'est' and provision of an infill residential development to comprise a total of 13 No. residential units comprising a terra","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F07A/1519","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.087421,53.521717],[-6.087413,53.521741],[-6.087304,53.521729],[-6.087216,53.52172],[-6.087111,53.521708],[-6.087112,53.521704],[-6.087064,53.5217],[-6.087078,53.521659],[-6.087081,53.521649],[-6.087064,53.521647],[-6.087071,53.521628],[-6.087076,53.521613],[-6.087081,53.521599],[-6.087086,53.521585],[-6.087089,53.521575],[-6.087089,53.521559],[-6.087089,53.521553],[-6.08709,53.521538],[-6.08709,53.521528],[-6.087097,53.521442],[-6.08719,53.521448],[-6.087295,53.521454],[-6.08731,53.521455],[-6.087308,53.521466],[-6.087352,53.521471],[-6.087378,53.521474],[-6.087433,53.52148],[-6.087444,53.521482],[-6.087439,53.521515],[-6.087431,53.521567],[-6.087427,53.521619],[-6.087425,53.521626],[-6.087426,53.521638],[-6.087426,53.521688],[-6.08743,53.521688],[-6.087421,53.521717]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"7","4_bed":"","app_date":"29/01/2008","stroke":"#ed3a26","no_of_units":"8","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of the demolition of the existing 3 no. two storey residential units and the construction of a 3 storey detached apartment building containing 8 no. apartments, 7 no. two ","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"F07A/0956","fg_date":"","other_total":"8"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.106136,53.581463],[-6.106291,53.581448],[-6.10629,53.581475],[-6.106302,53.581516],[-6.106308,53.581568],[-6.106316,53.581606],[-6.10633,53.581645],[-6.106328,53.581646],[-6.106328,53.581647],[-6.106334,53.581668],[-6.106336,53.581675],[-6.106346,53.581703],[-6.10635,53.581714],[-6.106351,53.581718],[-6.106355,53.581742],[-6.106094,53.581704],[-6.106005,53.581683],[-6.105944,53.581659],[-6.105865,53.581613],[-6.105811,53.581567],[-6.105783,53.581543],[-6.105765,53.581521],[-6.105754,53.581502],[-6.106124,53.581464],[-6.106136,53.581463]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"10","4_bed":"","app_date":"08/02/2008","stroke":"#ed3a26","no_of_units":"11","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To construct a residential development on a site 0.089 hectare consisting of 1 no. block ranging from 2 to 3 storey over basement with 11 no. apartments with 10 no. 2 beds and 1 no. 3 bed duplex with","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"F07A/1280","fg_date":"","other_total":"11"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.175483,53.438336],[-6.175426,53.438275],[-6.175394,53.438224],[-6.175361,53.438174],[-6.175352,53.438161],[-6.175333,53.438133],[-6.17532,53.438114],[-6.175293,53.438076],[-6.175251,53.438006],[-6.175159,53.437851],[-6.175135,53.437822],[-6.175117,53.437797],[-6.175094,53.437768],[-6.175057,53.437728],[-6.175043,53.437713],[-6.174995,53.437674],[-6.174954,53.43765],[-6.174914,53.437625],[-6.17487,53.437596],[-6.174841,53.437577],[-6.174815,53.437554],[-6.174794,53.437539],[-6.17478,53.437526],[-6.174774,53.437511],[-6.174776,53.437497],[-6.174781,53.437469],[-6.174788,53.437458],[-6.174792,53.437449],[-6.174799,53.437438],[-6.174808,53.43743],[-6.174819,53.437419],[-6.174832,53.437407],[-6.174842,53.437397],[-6.174854,53.437399],[-6.174862,53.437398],[-6.174869,53.437393],[-6.174911,53.437409],[-6.174938,53.4374],[-6.175019,53.437372],[-6.175075,53.437357],[-6.175114,53.43735],[-6.175146,53.437343],[-6.175181,53.437336],[-6.175265,53.437324],[-6.175243,53.437316],[-6.175272,53.437312],[-6.175699,53.437242],[-6.175726,53.437238],[-6.175756,53.437233],[-6.175773,53.437231],[-6.175939,53.437202],[-6.17603,53.437189],[-6.176266,53.437162],[-6.176535,53.437131],[-6.176696,53.437087],[-6.176742,53.437084],[-6.176835,53.437079],[-6.176852,53.437608],[-6.176855,53.437717],[-6.176856,53.437919],[-6.176855,53.438112],[-6.17685,53.438358],[-6.176846,53.438373],[-6.176474,53.438368],[-6.176468,53.43838],[-6.17617,53.438365],[-6.175483,53.438336]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"10/12/2007","stroke":"#ed3a26","no_of_units":"16","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"(1) The construction of sixteen detached residential units, comprising 1 No. type A1, 2.5 storey detached house - 334 sq. m, 1 No. type A2, 2.5 storey detached house - 343 sq.m., 2 No. type A3, 2.5 st","reg_date":"","3_bed":"16","5_plus":"","reg_ref":"F07A/0325","fg_date":"","other_total":"16"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.176855,53.437942],[-6.176855,53.438112],[-6.17685,53.438358],[-6.176855,53.438395],[-6.176469,53.43838],[-6.176252,53.43837],[-6.176212,53.438368],[-6.176211,53.438374],[-6.175488,53.438347],[-6.175455,53.43831],[-6.175451,53.438306],[-6.175426,53.438275],[-6.175394,53.438224],[-6.175333,53.438133],[-6.175322,53.438118],[-6.17532,53.438114],[-6.175293,53.438076],[-6.175159,53.437851],[-6.175135,53.437822],[-6.175117,53.437797],[-6.175094,53.437768],[-6.175074,53.437746],[-6.175043,53.437713],[-6.174995,53.437674],[-6.174954,53.43765],[-6.174914,53.437625],[-6.17487,53.437596],[-6.174841,53.437577],[-6.174815,53.437554],[-6.174794,53.437539],[-6.17478,53.437526],[-6.174776,53.437518],[-6.174774,53.437511],[-6.174776,53.437497],[-6.174777,53.437492],[-6.174781,53.437469],[-6.174788,53.437458],[-6.174792,53.437449],[-6.174799,53.437438],[-6.174808,53.43743],[-6.174819,53.437419],[-6.174832,53.437407],[-6.174842,53.437397],[-6.174854,53.437399],[-6.174862,53.437398],[-6.174869,53.437393],[-6.174911,53.437409],[-6.174938,53.4374],[-6.174991,53.437379],[-6.175019,53.437372],[-6.175075,53.437357],[-6.175114,53.43735],[-6.175181,53.437336],[-6.175265,53.437324],[-6.175243,53.437316],[-6.17522,53.437304],[-6.175795,53.43722],[-6.1767,53.437087],[-6.176759,53.437083],[-6.176761,53.437147],[-6.176835,53.437136],[-6.176842,53.437271],[-6.176849,53.43748],[-6.176852,53.437608],[-6.176856,53.437774],[-6.176856,53.437846],[-6.176855,53.437942]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"04/04/2008","stroke":"#ed3a26","no_of_units":"21","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"(1) The construction of twenty one x two storey detached residential units, (2) provision of new entrance to the south of the site off the Dublin Road, to include new boundary wall and entrance piers,","reg_date":"","3_bed":"","5_plus":"21","reg_ref":"F08A/0415","fg_date":"","other_total":"21"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.418123,53.388375],[-6.418131,53.388376],[-6.418111,53.388415],[-6.415937,53.388054],[-6.415699,53.387991],[-6.415759,53.387861],[-6.415972,53.387244],[-6.416298,53.386341],[-6.416489,53.385916],[-6.417069,53.386019],[-6.418519,53.3863],[-6.419116,53.386416],[-6.419104,53.386464],[-6.419096,53.386491],[-6.41816,53.388319],[-6.418123,53.388375]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"22/09/2010","stroke":"#ed3a26","no_of_units":"185","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Development of 185 no. residential units consisting of 103 no 2/3/4 bedroom terraced, semi-detached and detached houses, 19 no. 3 bedroom duplex units and 63 no. 1/2/3 bedroom apartments all in a 2, 3","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/1153/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148647,53.403414],[-6.148108,53.405035],[-6.148096,53.405284],[-6.147998,53.405546],[-6.145746,53.405603],[-6.14412,53.40521],[-6.144822,53.404166],[-6.145193,53.403584],[-6.145322,53.403342],[-6.145469,53.402904],[-6.146565,53.402896],[-6.146341,53.403322],[-6.148647,53.403414]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"289","4_bed":"67","app_date":"25/04/2008","stroke":"#ed3a26","no_of_units":"489","1_bed":"60","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of 489 no. residential units, a cr\u00e8che, underground and surface car parking, a civic park and all associated landscape and infrastructural works as the final phase in the ","reg_date":"","3_bed":"73","5_plus":"","reg_ref":"F07A/1723","fg_date":"","other_total":"489"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.331518,53.272951],[-6.33178,53.272899],[-6.331887,53.272878],[-6.331993,53.272858],[-6.33204,53.272852],[-6.33207,53.272844],[-6.332099,53.272837],[-6.332101,53.272882],[-6.332103,53.272939],[-6.332104,53.273008],[-6.332106,53.273077],[-6.331617,53.273143],[-6.331518,53.272951]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"0","4_bed":"4","app_date":"03/12/2010","stroke":"#ed3a26","no_of_units":"4","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"Infill residential development on a site consisting of the construction of 4 no. four bedroom, three storey semi-detached houses with optional non-habitable attic level including all site development ","reg_date":"","3_bed":"0","5_plus":"0","reg_ref":"SD10A/0367","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.176855,53.437942],[-6.176855,53.438112],[-6.17685,53.438358],[-6.176855,53.438395],[-6.176469,53.43838],[-6.176252,53.43837],[-6.176212,53.438368],[-6.176211,53.438374],[-6.175488,53.438347],[-6.175455,53.43831],[-6.175451,53.438306],[-6.175426,53.438275],[-6.175394,53.438224],[-6.175333,53.438133],[-6.175322,53.438118],[-6.17532,53.438114],[-6.175293,53.438076],[-6.175159,53.437851],[-6.175135,53.437822],[-6.175117,53.437797],[-6.175094,53.437768],[-6.175074,53.437746],[-6.175043,53.437713],[-6.174995,53.437674],[-6.174954,53.43765],[-6.174914,53.437625],[-6.17487,53.437596],[-6.174841,53.437577],[-6.174815,53.437554],[-6.174794,53.437539],[-6.17478,53.437526],[-6.174776,53.437518],[-6.174774,53.437511],[-6.174776,53.437497],[-6.174777,53.437492],[-6.174781,53.437469],[-6.174788,53.437458],[-6.174792,53.437449],[-6.174799,53.437438],[-6.174808,53.43743],[-6.174819,53.437419],[-6.174832,53.437407],[-6.174842,53.437397],[-6.174854,53.437399],[-6.174862,53.437398],[-6.174869,53.437393],[-6.174911,53.437409],[-6.174938,53.4374],[-6.174991,53.437379],[-6.175019,53.437372],[-6.175075,53.437357],[-6.175114,53.43735],[-6.175181,53.437336],[-6.175265,53.437324],[-6.175243,53.437316],[-6.17522,53.437304],[-6.175795,53.43722],[-6.1767,53.437087],[-6.176759,53.437083],[-6.176761,53.437147],[-6.176835,53.437136],[-6.176842,53.437271],[-6.176849,53.43748],[-6.176852,53.437608],[-6.176856,53.437774],[-6.176856,53.437846],[-6.176855,53.437942]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"04/04/2008","stroke":"#ed3a26","no_of_units":"21","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"(1) The construction of twenty one x two storey detached residential units, (2) provision of new entrance to the south of the site off the Dublin Road, to include new boundary wall and entrance piers,","reg_date":"","3_bed":"","5_plus":"21","reg_ref":"F08A/0415","fg_date":"","other_total":"21"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.378043,53.424253],[-6.377897,53.424457],[-6.377722,53.424699],[-6.377531,53.42497],[-6.377383,53.425165],[-6.377344,53.425196],[-6.377287,53.425211],[-6.377215,53.425215],[-6.37715,53.425219],[-6.377088,53.425223],[-6.377057,53.425222],[-6.376921,53.425217],[-6.376534,53.425188],[-6.376439,53.425179],[-6.376023,53.425149],[-6.376004,53.425148],[-6.375918,53.425153],[-6.375896,53.425154],[-6.375839,53.425156],[-6.375806,53.425159],[-6.375643,53.425179],[-6.375554,53.425183],[-6.375422,53.425181],[-6.37532,53.425176],[-6.375195,53.425154],[-6.37503,53.425118],[-6.374911,53.425102],[-6.374864,53.425094],[-6.3748,53.42509],[-6.374726,53.425084],[-6.374619,53.425076],[-6.374549,53.425069],[-6.374496,53.425067],[-6.374409,53.425071],[-6.374347,53.425076],[-6.374186,53.425104],[-6.374063,53.425136],[-6.373974,53.425158],[-6.373883,53.425178],[-6.373787,53.425208],[-6.373686,53.425239],[-6.373582,53.425273],[-6.373476,53.425328],[-6.373403,53.425374],[-6.373369,53.425398],[-6.373147,53.425549],[-6.373052,53.425629],[-6.372911,53.425728],[-6.372812,53.425737],[-6.372801,53.425736],[-6.372665,53.425732],[-6.372389,53.425724],[-6.371903,53.42576],[-6.371665,53.425784],[-6.371447,53.425895],[-6.371322,53.425984],[-6.371162,53.42616],[-6.370915,53.426439],[-6.370678,53.426655],[-6.370464,53.426769],[-6.370337,53.426787],[-6.370168,53.426752],[-6.370164,53.42675],[-6.369711,53.426572],[-6.369577,53.42652],[-6.369039,53.426308],[-6.368423,53.426072],[-6.367715,53.4258],[-6.366746,53.425425],[-6.365822,53.425068],[-6.365303,53.424868],[-6.3648,53.424666],[-6.364537,53.424555],[-6.364532,53.424558],[-6.364163,53.424412],[-6.363727,53.424249],[-6.363315,53.42409],[-6.363134,53.424011],[-6.362932,53.423916],[-6.362667,53.423784],[-6.362513,53.423696],[-6.36247,53.423658],[-6.362844,53.423388],[-6.362919,53.423364],[-6.36465,53.423303],[-6.370106,53.423089],[-6.374095,53.422867],[-6.375367,53.422704],[-6.37644,53.422527],[-6.379,53.422773],[-6.378761,53.423206],[-6.378654,53.423396],[-6.378571,53.423488],[-6.378563,53.4235],[-6.378542,53.423534],[-6.378467,53.423656],[-6.378314,53.423905],[-6.378043,53.424253]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"34","4_bed":"70","app_date":"19/02/2008","stroke":"#ed3a26","no_of_units":"332","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Application for a 10 year planning permission for (1) the construction of 332 residential units, comprising 4 different architectural styles, Type A, B, C and D made up of the following, 16No Type A1 ","reg_date":"","3_bed":"50","5_plus":"178","reg_ref":"F07A/0973","fg_date":"","other_total":"332"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.378043,53.424253],[-6.377897,53.424457],[-6.377722,53.424699],[-6.377531,53.42497],[-6.377383,53.425165],[-6.377344,53.425196],[-6.377287,53.425211],[-6.377215,53.425215],[-6.37715,53.425219],[-6.377088,53.425223],[-6.377057,53.425222],[-6.376921,53.425217],[-6.376534,53.425188],[-6.376439,53.425179],[-6.376023,53.425149],[-6.376004,53.425148],[-6.375918,53.425153],[-6.375896,53.425154],[-6.375839,53.425156],[-6.375806,53.425159],[-6.375643,53.425179],[-6.375554,53.425183],[-6.375422,53.425181],[-6.37532,53.425176],[-6.375195,53.425154],[-6.37503,53.425118],[-6.374911,53.425102],[-6.374864,53.425094],[-6.3748,53.42509],[-6.374726,53.425084],[-6.374619,53.425076],[-6.374549,53.425069],[-6.374496,53.425067],[-6.374409,53.425071],[-6.374347,53.425076],[-6.374186,53.425104],[-6.374063,53.425136],[-6.373974,53.425158],[-6.373883,53.425178],[-6.373787,53.425208],[-6.373686,53.425239],[-6.373582,53.425273],[-6.373476,53.425328],[-6.373403,53.425374],[-6.373369,53.425398],[-6.373147,53.425549],[-6.373052,53.425629],[-6.372911,53.425728],[-6.372812,53.425737],[-6.372801,53.425736],[-6.372665,53.425732],[-6.372389,53.425724],[-6.371903,53.42576],[-6.371665,53.425784],[-6.371447,53.425895],[-6.371322,53.425984],[-6.371162,53.42616],[-6.370915,53.426439],[-6.370678,53.426655],[-6.370464,53.426769],[-6.370337,53.426787],[-6.370168,53.426752],[-6.370164,53.42675],[-6.369711,53.426572],[-6.369577,53.42652],[-6.369039,53.426308],[-6.368423,53.426072],[-6.367715,53.4258],[-6.366746,53.425425],[-6.365822,53.425068],[-6.365303,53.424868],[-6.3648,53.424666],[-6.364537,53.424555],[-6.364532,53.424558],[-6.364163,53.424412],[-6.363727,53.424249],[-6.363315,53.42409],[-6.363134,53.424011],[-6.362932,53.423916],[-6.362667,53.423784],[-6.362513,53.423696],[-6.36247,53.423658],[-6.362844,53.423388],[-6.362919,53.423364],[-6.36465,53.423303],[-6.370106,53.423089],[-6.374095,53.422867],[-6.375367,53.422704],[-6.37644,53.422527],[-6.379,53.422773],[-6.378761,53.423206],[-6.378654,53.423396],[-6.378571,53.423488],[-6.378563,53.4235],[-6.378542,53.423534],[-6.378467,53.423656],[-6.378314,53.423905],[-6.378043,53.424253]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"34","4_bed":"70","app_date":"19/02/2008","stroke":"#ed3a26","no_of_units":"332","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Application for a 10 year planning permission for (1) the construction of 332 residential units, comprising 4 different architectural styles, Type A, B, C and D made up of the following, 16No Type A1 ","reg_date":"","3_bed":"50","5_plus":"178","reg_ref":"F07A/0973","fg_date":"","other_total":"332"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.129097,53.397172],[-6.129091,53.397174],[-6.129072,53.397179],[-6.128997,53.397198],[-6.12883,53.397238],[-6.128736,53.397253],[-6.12861,53.397277],[-6.128596,53.39725],[-6.12857,53.397224],[-6.128547,53.397181],[-6.128582,53.397175],[-6.128606,53.39717],[-6.128807,53.397129],[-6.128838,53.397123],[-6.128874,53.397117],[-6.128866,53.397107],[-6.128911,53.397094],[-6.128919,53.397104],[-6.128952,53.397094],[-6.129035,53.397071],[-6.129092,53.397056],[-6.129259,53.397017],[-6.129262,53.397022],[-6.129305,53.397011],[-6.129358,53.397096],[-6.129333,53.397104],[-6.129278,53.39712],[-6.129187,53.397146],[-6.129097,53.397172]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"30/05/2008","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The demolition of 3 no. single storey residential units to front, side and rear of existing single storey dwelling and erection of replacement 1 no. single storey 2 bed detached and 2 no. semi detache","reg_date":"","3_bed":"3","5_plus":"","reg_ref":"F08A/0285","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.300802,53.486264],[-6.300717,53.486333],[-6.300549,53.486469],[-6.300438,53.486553],[-6.300381,53.486616],[-6.300349,53.48665],[-6.300337,53.486701],[-6.30033,53.486738],[-6.300353,53.486874],[-6.300383,53.487001],[-6.300408,53.487075],[-6.30042,53.487126],[-6.300424,53.487179],[-6.300388,53.487218],[-6.300304,53.487283],[-6.300249,53.487322],[-6.300167,53.487372],[-6.299923,53.487376],[-6.299667,53.48738],[-6.299483,53.487387],[-6.299268,53.487396],[-6.299129,53.487401],[-6.298929,53.487402],[-6.298803,53.487399],[-6.298804,53.487342],[-6.298899,53.486841],[-6.298932,53.486707],[-6.298999,53.486428],[-6.299091,53.485996],[-6.299145,53.485756],[-6.299433,53.485689],[-6.299647,53.48563],[-6.299828,53.48558],[-6.299951,53.485553],[-6.30001,53.48556],[-6.300224,53.485622],[-6.300383,53.485678],[-6.300521,53.485738],[-6.300615,53.485786],[-6.300836,53.485921],[-6.300952,53.48599],[-6.301057,53.48606],[-6.300937,53.486156],[-6.300932,53.486159],[-6.30083,53.48624],[-6.300802,53.486264]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"10","app_date":"30/05/2008","stroke":"#ed3a26","no_of_units":"28","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development located at The Rath with access from the R125. The proposal is for 18 no. detached 2 storey dormer type dwellings, comprising of 4 no. 3 bedroom, 10 no. 4 bedroom and 4 no. 5 ","reg_date":"","3_bed":"4","5_plus":"4","reg_ref":"F08A/0169","fg_date":"","other_total":"18"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.195008,53.608174],[-6.194787,53.608155],[-6.194563,53.608134],[-6.193961,53.608079],[-6.193824,53.608067],[-6.193769,53.608062],[-6.19348,53.608036],[-6.193368,53.608026],[-6.193362,53.608025],[-6.193376,53.607968],[-6.193451,53.607669],[-6.193461,53.607629],[-6.19351,53.607445],[-6.193543,53.60732],[-6.19356,53.607257],[-6.193698,53.606742],[-6.193805,53.606349],[-6.194199,53.606221],[-6.195026,53.605946],[-6.195011,53.60593],[-6.195285,53.605842],[-6.195303,53.605855],[-6.195583,53.605762],[-6.195501,53.605851],[-6.195523,53.60599],[-6.195622,53.606085],[-6.195737,53.606214],[-6.195583,53.606328],[-6.195415,53.607227],[-6.19542,53.607332],[-6.195499,53.607432],[-6.195209,53.607489],[-6.19516,53.607538],[-6.19512,53.607598],[-6.195117,53.607664],[-6.195161,53.607737],[-6.195008,53.608174]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"69","4_bed":"","app_date":"20/05/2008","stroke":"#ed3a26","no_of_units":"107","1_bed":"14","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for development on a 2.54 hectares site at Clonard Hill. The development includes the construction of a mixed use residential (107 no. units: 14 no. 1 bed, 69 no 2 bed, 24 no. 3 bed apartm","reg_date":"","3_bed":"24","5_plus":"","reg_ref":"F08A/0181","fg_date":"","other_total":"107"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.314853,53.521546],[-6.314686,53.521506],[-6.314525,53.521444],[-6.314579,53.521282],[-6.31471,53.521299],[-6.314835,53.520943],[-6.315096,53.520982],[-6.314997,53.521228],[-6.31494,53.521215],[-6.314899,53.521318],[-6.314961,53.521328],[-6.314853,53.521546]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"23/05/2008","stroke":"#ed3a26","no_of_units":"5","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Phase 2 of proposed residential development comprising of 5 additional two storey houses not exceeding 8.7 metres in height. Also revisions to phase 1 (reg. ref. F05A/0389) three new roof lights to f","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F08A/0333","fg_date":"","other_total":"5"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.300802,53.486264],[-6.300717,53.486333],[-6.300549,53.486469],[-6.300438,53.486553],[-6.300381,53.486616],[-6.300349,53.48665],[-6.300337,53.486701],[-6.30033,53.486738],[-6.300353,53.486874],[-6.300383,53.487001],[-6.300408,53.487075],[-6.30042,53.487126],[-6.300424,53.487179],[-6.300388,53.487218],[-6.300304,53.487283],[-6.300249,53.487322],[-6.300167,53.487372],[-6.299923,53.487376],[-6.299667,53.48738],[-6.299483,53.487387],[-6.299268,53.487396],[-6.299129,53.487401],[-6.298929,53.487402],[-6.298803,53.487399],[-6.298804,53.487342],[-6.298899,53.486841],[-6.298932,53.486707],[-6.298999,53.486428],[-6.299091,53.485996],[-6.299145,53.485756],[-6.299433,53.485689],[-6.299647,53.48563],[-6.299828,53.48558],[-6.299951,53.485553],[-6.30001,53.48556],[-6.300224,53.485622],[-6.300383,53.485678],[-6.300521,53.485738],[-6.300615,53.485786],[-6.300836,53.485921],[-6.300952,53.48599],[-6.301057,53.48606],[-6.300937,53.486156],[-6.300932,53.486159],[-6.30083,53.48624],[-6.300802,53.486264]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"10","app_date":"30/05/2008","stroke":"#ed3a26","no_of_units":"28","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development located at The Rath with access from the R125. The proposal is for 18 no. detached 2 storey dormer type dwellings, comprising of 4 no. 3 bedroom, 10 no. 4 bedroom and 4 no. 5 ","reg_date":"","3_bed":"4","5_plus":"4","reg_ref":"F08A/0169","fg_date":"","other_total":"18"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.129097,53.397172],[-6.129091,53.397174],[-6.129072,53.397179],[-6.128997,53.397198],[-6.12883,53.397238],[-6.128736,53.397253],[-6.12861,53.397277],[-6.128596,53.39725],[-6.12857,53.397224],[-6.128547,53.397181],[-6.128582,53.397175],[-6.128606,53.39717],[-6.128807,53.397129],[-6.128838,53.397123],[-6.128874,53.397117],[-6.128866,53.397107],[-6.128911,53.397094],[-6.128919,53.397104],[-6.128952,53.397094],[-6.129035,53.397071],[-6.129092,53.397056],[-6.129259,53.397017],[-6.129262,53.397022],[-6.129305,53.397011],[-6.129358,53.397096],[-6.129333,53.397104],[-6.129278,53.39712],[-6.129187,53.397146],[-6.129097,53.397172]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"30/05/2008","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The demolition of 3 no. single storey residential units to front, side and rear of existing single storey dwelling and erection of replacement 1 no. single storey 2 bed detached and 2 no. semi detache","reg_date":"","3_bed":"3","5_plus":"","reg_ref":"F08A/0285","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.377395,53.372678],[-6.377427,53.372699],[-6.377792,53.37273],[-6.377904,53.372739],[-6.377898,53.372857],[-6.377881,53.373147],[-6.378092,53.37319],[-6.377995,53.373399],[-6.377886,53.373637],[-6.377847,53.373712],[-6.377785,53.373847],[-6.377687,53.374063],[-6.377574,53.374294],[-6.377544,53.374281],[-6.377381,53.37425],[-6.377302,53.374235],[-6.376882,53.374186],[-6.376875,53.374218],[-6.376063,53.374148],[-6.376085,53.374059],[-6.376221,53.373974],[-6.376274,53.37401],[-6.376338,53.374035],[-6.376386,53.374008],[-6.376452,53.374013],[-6.376675,53.37403],[-6.376717,53.374037],[-6.376709,53.374057],[-6.376732,53.374065],[-6.376749,53.374063],[-6.376753,53.374055],[-6.376772,53.374042],[-6.376847,53.37405],[-6.376893,53.373881],[-6.376348,53.373816],[-6.376293,53.37381],[-6.376264,53.373801],[-6.376219,53.373774],[-6.37607,53.373858],[-6.376041,53.373882],[-6.376044,53.373898],[-6.376069,53.373914],[-6.376095,53.373902],[-6.376138,53.373885],[-6.376165,53.373898],[-6.376253,53.373951],[-6.37608,53.374058],[-6.376059,53.374148],[-6.376052,53.374118],[-6.376033,53.374107],[-6.376015,53.374105],[-6.376,53.374114],[-6.375978,53.374128],[-6.37586,53.374055],[-6.37588,53.374038],[-6.375882,53.37402],[-6.375856,53.374008],[-6.375806,53.374026],[-6.375243,53.37437],[-6.375128,53.3743],[-6.37575,53.373907],[-6.376098,53.373699],[-6.376485,53.373396],[-6.376607,53.373299],[-6.376776,53.373214],[-6.376865,53.373175],[-6.37703,53.37314],[-6.377206,53.373116],[-6.377269,53.372752],[-6.377086,53.372593],[-6.376993,53.372503],[-6.376927,53.372432],[-6.376893,53.372384],[-6.376872,53.372302],[-6.37684,53.372198],[-6.376857,53.372054],[-6.377062,53.372062],[-6.377064,53.372112],[-6.377361,53.372128],[-6.377341,53.372219],[-6.376987,53.372222],[-6.376993,53.372287],[-6.377045,53.372386],[-6.377138,53.372486],[-6.377218,53.372577],[-6.377395,53.372678]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"39","4_bed":"","app_date":"06/06/2008","stroke":"#ed3a26","no_of_units":"58","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions to development previously permitted under Reg Ref F06A/1109 & An Bord Pleanala Ref. PL 06F.221463. The proposed development comprises the provision of 58 no. residential units incorporating","reg_date":"","3_bed":"13","5_plus":"6","reg_ref":"F08A/0710","fg_date":"","other_total":"58"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.377395,53.372678],[-6.377427,53.372699],[-6.377792,53.37273],[-6.377904,53.372739],[-6.377898,53.372857],[-6.377881,53.373147],[-6.378092,53.37319],[-6.377995,53.373399],[-6.377886,53.373637],[-6.377847,53.373712],[-6.377785,53.373847],[-6.377687,53.374063],[-6.377574,53.374294],[-6.377544,53.374281],[-6.377381,53.37425],[-6.377302,53.374235],[-6.376882,53.374186],[-6.376875,53.374218],[-6.376063,53.374148],[-6.376085,53.374059],[-6.376221,53.373974],[-6.376274,53.37401],[-6.376338,53.374035],[-6.376386,53.374008],[-6.376452,53.374013],[-6.376675,53.37403],[-6.376717,53.374037],[-6.376709,53.374057],[-6.376732,53.374065],[-6.376749,53.374063],[-6.376753,53.374055],[-6.376772,53.374042],[-6.376847,53.37405],[-6.376893,53.373881],[-6.376348,53.373816],[-6.376293,53.37381],[-6.376264,53.373801],[-6.376219,53.373774],[-6.37607,53.373858],[-6.376041,53.373882],[-6.376044,53.373898],[-6.376069,53.373914],[-6.376095,53.373902],[-6.376138,53.373885],[-6.376165,53.373898],[-6.376253,53.373951],[-6.37608,53.374058],[-6.376059,53.374148],[-6.376052,53.374118],[-6.376033,53.374107],[-6.376015,53.374105],[-6.376,53.374114],[-6.375978,53.374128],[-6.37586,53.374055],[-6.37588,53.374038],[-6.375882,53.37402],[-6.375856,53.374008],[-6.375806,53.374026],[-6.375243,53.37437],[-6.375128,53.3743],[-6.37575,53.373907],[-6.376098,53.373699],[-6.376485,53.373396],[-6.376607,53.373299],[-6.376776,53.373214],[-6.376865,53.373175],[-6.37703,53.37314],[-6.377206,53.373116],[-6.377269,53.372752],[-6.377086,53.372593],[-6.376993,53.372503],[-6.376927,53.372432],[-6.376893,53.372384],[-6.376872,53.372302],[-6.37684,53.372198],[-6.376857,53.372054],[-6.377062,53.372062],[-6.377064,53.372112],[-6.377361,53.372128],[-6.377341,53.372219],[-6.376987,53.372222],[-6.376993,53.372287],[-6.377045,53.372386],[-6.377138,53.372486],[-6.377218,53.372577],[-6.377395,53.372678]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"39","4_bed":"","app_date":"06/06/2008","stroke":"#ed3a26","no_of_units":"58","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions to development previously permitted under Reg Ref F06A/1109 & An Bord Pleanala Ref. PL 06F.221463. The proposed development comprises the provision of 58 no. residential units incorporating","reg_date":"","3_bed":"13","5_plus":"6","reg_ref":"F08A/0710","fg_date":"","other_total":"58"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.106301,53.581512],[-6.106305,53.581536],[-6.106321,53.581619],[-6.106328,53.581646],[-6.106333,53.581666],[-6.10635,53.581714],[-6.106357,53.581743],[-6.106094,53.581704],[-6.106005,53.581683],[-6.105944,53.581659],[-6.105865,53.581613],[-6.105783,53.581543],[-6.105765,53.581521],[-6.105753,53.581499],[-6.105742,53.581461],[-6.106291,53.581442],[-6.106301,53.581512]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"9","4_bed":"","app_date":"17/07/2008","stroke":"#ed3a26","no_of_units":"11","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To construct a residential development on a site of 0.089 hectares consisting of 1 no. block ranging from 2 to 3 stories over basement with 11 no. apartments consisting of 1 no. 1 bed, 9 no. 2 bed, 1 ","reg_date":"","3_bed":"1","5_plus":"","reg_ref":"F08A/0902","fg_date":"","other_total":"11"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.096558,53.526938],[-6.095535,53.526984],[-6.094481,53.526972],[-6.094448,53.526279],[-6.094267,53.526002],[-6.094083,53.525329],[-6.094054,53.524887],[-6.094061,53.52469],[-6.094113,53.524678],[-6.094174,53.524667],[-6.094315,53.524638],[-6.094423,53.524627],[-6.094611,53.524611],[-6.094812,53.524634],[-6.094921,53.524623],[-6.094929,53.524645],[-6.094996,53.524641],[-6.09505,53.524998],[-6.095687,53.524951],[-6.095803,53.526717],[-6.096543,53.526695],[-6.096558,53.526938]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"30","4_bed":"29","app_date":"27/06/2008","stroke":"#ed3a26","no_of_units":"91","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The construction of 91 no. dwelling units which will form Phase 3 of residential development proposals on Local Area Plan lands fronting Skerries Road to include the following: a) 67 no. townhouses c","reg_date":"","3_bed":"32","5_plus":"","reg_ref":"F08A/0800","fg_date":"","other_total":"91"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.433329,53.391053],[-6.433011,53.391022],[-6.432645,53.390988],[-6.4325,53.390957],[-6.43238,53.390917],[-6.432307,53.390875],[-6.432258,53.390823],[-6.432215,53.390751],[-6.43221,53.390727],[-6.432212,53.390715],[-6.432213,53.390704],[-6.432215,53.390698],[-6.43222,53.39068],[-6.432238,53.390659],[-6.432261,53.390639],[-6.432286,53.39062],[-6.432313,53.390601],[-6.432425,53.39053],[-6.432517,53.390471],[-6.432971,53.390264],[-6.433207,53.390785],[-6.433329,53.391053]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"17/02/2009","stroke":"#ed3a26","no_of_units":"47","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development having a total of 47 no. 1, 2 and 3 bed apartments in 3 No. 4, 5 and 7 storey blocks including penthouses on a site of circa 0.47ha at Hansfield, Clonsilla, Dublin 15 located ","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/1234","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.24264,53.399196],[-6.242644,53.399196],[-6.242616,53.3992],[-6.242609,53.399201],[-6.242599,53.399202],[-6.242528,53.399214],[-6.24247,53.399224],[-6.242447,53.399228],[-6.242417,53.399232],[-6.242388,53.399155],[-6.242384,53.399141],[-6.242371,53.399107],[-6.242343,53.399027],[-6.242333,53.398992],[-6.242315,53.398926],[-6.242306,53.398926],[-6.242242,53.39867],[-6.242223,53.398585],[-6.242216,53.398578],[-6.242215,53.398512],[-6.242495,53.398596],[-6.242671,53.398645],[-6.242741,53.39866],[-6.242833,53.39867],[-6.242918,53.398674],[-6.242937,53.398782],[-6.242943,53.398805],[-6.242943,53.398807],[-6.242968,53.398922],[-6.242976,53.398961],[-6.242979,53.398974],[-6.242979,53.398974],[-6.242989,53.399025],[-6.243015,53.399135],[-6.242988,53.399139],[-6.242842,53.399163],[-6.24281,53.399169],[-6.242772,53.399175],[-6.242771,53.399175],[-6.2427,53.399187],[-6.24264,53.399196]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"11","4_bed":"","app_date":"26/08/2008","stroke":"#ed3a26","no_of_units":"22","1_bed":"6","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Development comprising the construction of 22 no. residential apartments (6 no. one-bedroom units, 11 no. two-bedroom units and 5 no. three-bedroom units) in a three storey building with set back four","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F08A/0280","fg_date":"","other_total":"22"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.209154,53.453867],[-6.209166,53.453866],[-6.209179,53.453866],[-6.209191,53.453864],[-6.209203,53.453862],[-6.209215,53.45386],[-6.209226,53.453857],[-6.209236,53.453853],[-6.209246,53.453848],[-6.209256,53.453844],[-6.209265,53.453838],[-6.209273,53.453833],[-6.20928,53.453827],[-6.209286,53.45382],[-6.209291,53.453813],[-6.209295,53.453806],[-6.209299,53.453799],[-6.209301,53.453792],[-6.209302,53.453785],[-6.209231,53.4537],[-6.209212,53.4537],[-6.20908,53.453519],[-6.20887,53.453578],[-6.208876,53.453556],[-6.208826,53.453556],[-6.208796,53.453557],[-6.208604,53.453544],[-6.208491,53.453533],[-6.208392,53.453519],[-6.208368,53.453515],[-6.208295,53.453496],[-6.208224,53.453464],[-6.208205,53.453455],[-6.208148,53.45343],[-6.208087,53.453402],[-6.208514,53.453011],[-6.208616,53.452983],[-6.208647,53.453002],[-6.208649,53.453004],[-6.208803,53.4531],[-6.208892,53.453195],[-6.209043,53.453411],[-6.209108,53.453507],[-6.209163,53.453609],[-6.2092,53.453636],[-6.20926,53.453712],[-6.20928,53.453738],[-6.209324,53.453781],[-6.209344,53.453799],[-6.20935,53.453804],[-6.209355,53.453815],[-6.209362,53.453817],[-6.209393,53.453873],[-6.209297,53.453877],[-6.209154,53.453867]]],[[[-6.209154,53.453867],[-6.209145,53.453866],[-6.209137,53.453866],[-6.209128,53.453865],[-6.209154,53.453867]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"9","4_bed":"","app_date":"12/09/2008","stroke":"#ed3a26","no_of_units":"16","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Removal of existing dwelling and construction of 16 no. residential units consisting of 7 no. 3 bed duplex apartments over 9 no. 2 bed own-door apartments, underground carpark with landscaped area ove","reg_date":"","3_bed":"7","5_plus":"","reg_ref":"F08A/0085","fg_date":"","other_total":"16"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.29956,53.488824],[-6.299547,53.488948],[-6.299544,53.488973],[-6.299521,53.4892],[-6.299196,53.48924],[-6.299089,53.488957],[-6.298954,53.488976],[-6.298743,53.488983],[-6.298403,53.489073],[-6.298262,53.489227],[-6.298231,53.489367],[-6.298215,53.489562],[-6.297976,53.489546],[-6.297988,53.489414],[-6.298029,53.489043],[-6.298031,53.489023],[-6.298031,53.489022],[-6.298076,53.488646],[-6.298209,53.488664],[-6.298268,53.488645],[-6.298374,53.488541],[-6.29851,53.488503],[-6.298661,53.4885],[-6.298778,53.488541],[-6.298943,53.48881],[-6.299206,53.488783],[-6.299399,53.488776],[-6.29956,53.488824]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"30/01/2009","stroke":"#ed3a26","no_of_units":"6","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions and modifications to the approved mixed residential development (Planning Refs F05A/1878 & PL06F.222753) to provide a total of 6 no. additional houses. Revisions include the replacement of","reg_date":"","3_bed":"8","5_plus":"","reg_ref":"F09A/0045","fg_date":"","other_total":"20"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.316294,53.519814],[-6.31626,53.519906],[-6.31623,53.519983],[-6.316196,53.520074],[-6.316193,53.520161],[-6.316182,53.520229],[-6.31611,53.520406],[-6.316072,53.520537],[-6.316045,53.520609],[-6.315975,53.520724],[-6.315957,53.520772],[-6.315877,53.520964],[-6.315824,53.52107],[-6.315763,53.52118],[-6.31571,53.521286],[-6.315636,53.521517],[-6.315473,53.521519],[-6.315319,53.521527],[-6.315205,53.52154],[-6.315083,53.521548],[-6.314953,53.521555],[-6.314864,53.521549],[-6.314671,53.521498],[-6.314682,53.521426],[-6.314909,53.521424],[-6.314989,53.521242],[-6.314852,53.521225],[-6.314872,53.521143],[-6.314961,53.521149],[-6.315124,53.520707],[-6.314963,53.52069],[-6.315091,53.520329],[-6.315236,53.520346],[-6.315464,53.519711],[-6.315682,53.519738],[-6.316102,53.519792],[-6.316294,53.519814],[-6.316294,53.519814]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"08/09/2010","stroke":"#ed3a26","no_of_units":"31","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development comprising of 31 terraced two storey houses. Houses not exceeding 8.7 metres height. The development involves the removal of existing hedge row along the road on the western","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/0389/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.105658,53.522632],[-6.105643,53.522678],[-6.105626,53.522709],[-6.105471,53.522682],[-6.105393,53.522671],[-6.105316,53.522665],[-6.105183,53.522659],[-6.105093,53.522655],[-6.104971,53.522652],[-6.104919,53.522651],[-6.104861,53.522649],[-6.104857,53.522648],[-6.104855,53.522648],[-6.104852,53.522647],[-6.104851,53.522647],[-6.104848,53.522647],[-6.104847,53.522646],[-6.104845,53.522646],[-6.104843,53.522645],[-6.104841,53.522645],[-6.104839,53.522645],[-6.104837,53.522644],[-6.104835,53.522644],[-6.104833,53.522643],[-6.104831,53.522643],[-6.104829,53.522642],[-6.104827,53.522642],[-6.104825,53.522641],[-6.104823,53.522641],[-6.104821,53.52264],[-6.104819,53.52264],[-6.104817,53.522639],[-6.104815,53.522639],[-6.104813,53.522638],[-6.104811,53.522638],[-6.104809,53.522637],[-6.104807,53.522637],[-6.104805,53.522636],[-6.104804,53.522636],[-6.104802,53.522635],[-6.1048,53.522635],[-6.104798,53.522634],[-6.104796,53.522634],[-6.104794,53.522633],[-6.104792,53.522632],[-6.10479,53.522632],[-6.104789,53.522631],[-6.104787,53.522631],[-6.104785,53.52263],[-6.104783,53.522629],[-6.104781,53.522629],[-6.104779,53.522628],[-6.104778,53.522628],[-6.104776,53.522627],[-6.104774,53.522626],[-6.104772,53.522626],[-6.10477,53.522625],[-6.104768,53.522624],[-6.104767,53.522624],[-6.104765,53.522623],[-6.104763,53.522622],[-6.104761,53.522622],[-6.104759,53.522621],[-6.104758,53.52262],[-6.104756,53.52262],[-6.104754,53.522619],[-6.104752,53.522618],[-6.104751,53.522618],[-6.104749,53.522617],[-6.104747,53.522616],[-6.104745,53.522615],[-6.104744,53.522615],[-6.104742,53.522614],[-6.10474,53.522613],[-6.104739,53.522612],[-6.104737,53.522612],[-6.104735,53.522611],[-6.104734,53.52261],[-6.104732,53.522609],[-6.10473,53.522609],[-6.104728,53.522607],[-6.104726,53.522606],[-6.104725,53.522605],[-6.104724,53.522604],[-6.104722,53.522604],[-6.104721,53.522603],[-6.10472,53.522602],[-6.104719,53.522601],[-6.104717,53.5226],[-6.104716,53.522599],[-6.104715,53.522598],[-6.104714,53.522597],[-6.104713,53.522597],[-6.104711,53.522596],[-6.10471,53.522595],[-6.104709,53.522594],[-6.104708,53.522593],[-6.104707,53.522592],[-6.104705,53.522591],[-6.104704,53.52259],[-6.104703,53.522589],[-6.104702,53.522588],[-6.104701,53.522587],[-6.1047,53.522586],[-6.104699,53.522586],[-6.104698,53.522585],[-6.104696,53.522584],[-6.104695,53.522583],[-6.104694,53.522582],[-6.104693,53.522581],[-6.104692,53.52258],[-6.104691,53.522579],[-6.10469,53.522578],[-6.104689,53.522577],[-6.104688,53.522576],[-6.104687,53.522575],[-6.104686,53.522574],[-6.104685,53.522573],[-6.104684,53.522572],[-6.104683,53.522571],[-6.104682,53.52257],[-6.104681,53.522569],[-6.10468,53.522568],[-6.104679,53.522567],[-6.104678,53.522566],[-6.104677,53.522565],[-6.104677,53.522564],[-6.104676,53.522563],[-6.104675,53.522562],[-6.104674,53.522561],[-6.104673,53.52256],[-6.104672,53.522559],[-6.104671,53.522558],[-6.104671,53.522557],[-6.10467,53.522556],[-6.104669,53.522555],[-6.104668,53.522554],[-6.104667,53.522553],[-6.104667,53.522552],[-6.104666,53.522551],[-6.104665,53.522549],[-6.104664,53.522548],[-6.104664,53.522547],[-6.104663,53.522546],[-6.104662,53.522545],[-6.104661,53.522544],[-6.104661,53.522543],[-6.10466,53.522542],[-6.104659,53.522541],[-6.10465,53.522397],[-6.104649,53.522384],[-6.105071,53.522375],[-6.105742,53.522377],[-6.105723,53.522433],[-6.105658,53.522631],[-6.105658,53.522632]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"3","app_date":"01/07/2008","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for the construction of a residential development on a site of .215 hectares. Development proposals comprise of 1 no. 2 storey detached 4 bedroom house with first floor balcony and car park","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"F08A/0828","fg_date":"","other_total":"9"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.361083,53.38096],[-6.361061,53.381005],[-6.361059,53.38101],[-6.360998,53.381137],[-6.360935,53.381269],[-6.360513,53.381266],[-6.360476,53.381277],[-6.359895,53.38127],[-6.359884,53.381257],[-6.359957,53.381147],[-6.360016,53.381063],[-6.36006,53.380986],[-6.36023,53.380734],[-6.360302,53.380752],[-6.360361,53.380745],[-6.360513,53.380666],[-6.360507,53.380689],[-6.360564,53.380701],[-6.36059,53.380682],[-6.360641,53.380695],[-6.360794,53.380728],[-6.360798,53.380776],[-6.360843,53.380787],[-6.36089,53.38075],[-6.361155,53.380808],[-6.361083,53.38096]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"33","4_bed":"","app_date":"22/10/2008","stroke":"#ed3a26","no_of_units":"43","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A 0.404 hectare site located at Old Navan Road. The proposed development comprises the demolition of 2 existing dwellings and associated structures and the construction of 43 residential units in a si","reg_date":"","3_bed":"9","5_plus":"","reg_ref":"F08A/0708","fg_date":"","other_total":"43"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.431144,53.390015],[-6.431324,53.389674],[-6.431336,53.389654],[-6.431385,53.389572],[-6.431395,53.389551],[-6.431434,53.389472],[-6.431458,53.389416],[-6.431949,53.389305],[-6.432149,53.389262],[-6.432316,53.389219],[-6.432509,53.389154],[-6.432728,53.389035],[-6.434309,53.389593],[-6.432354,53.390376],[-6.432007,53.390593],[-6.431966,53.390607],[-6.431831,53.390626],[-6.431692,53.390623],[-6.431596,53.3906],[-6.431573,53.390589],[-6.431537,53.390571],[-6.43151,53.390559],[-6.431479,53.390529],[-6.431444,53.390495],[-6.431359,53.390417],[-6.431289,53.390353],[-6.431256,53.390329],[-6.431233,53.390298],[-6.431144,53.390015]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"49","4_bed":"","app_date":"17/02/2009","stroke":"#ed3a26","no_of_units":"103","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for a residential development having a total of 103 dwellings consisting of (a) 26 no. 2 storey 3 bed duplex units with 13 no. 2 bed apartments on second level, (b) 2 no. 3 and 4 bed duplex","reg_date":"","3_bed":"53","5_plus":"","reg_ref":"F08A/1233","fg_date":"","other_total":"102"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.105658,53.522632],[-6.105643,53.522678],[-6.105626,53.522709],[-6.105471,53.522682],[-6.105393,53.522671],[-6.105316,53.522665],[-6.105183,53.522659],[-6.105093,53.522655],[-6.104971,53.522652],[-6.104919,53.522651],[-6.104861,53.522649],[-6.104857,53.522648],[-6.104855,53.522648],[-6.104852,53.522647],[-6.104851,53.522647],[-6.104848,53.522647],[-6.104847,53.522646],[-6.104845,53.522646],[-6.104843,53.522645],[-6.104841,53.522645],[-6.104839,53.522645],[-6.104837,53.522644],[-6.104835,53.522644],[-6.104833,53.522643],[-6.104831,53.522643],[-6.104829,53.522642],[-6.104827,53.522642],[-6.104825,53.522641],[-6.104823,53.522641],[-6.104821,53.52264],[-6.104819,53.52264],[-6.104817,53.522639],[-6.104815,53.522639],[-6.104813,53.522638],[-6.104811,53.522638],[-6.104809,53.522637],[-6.104807,53.522637],[-6.104805,53.522636],[-6.104804,53.522636],[-6.104802,53.522635],[-6.1048,53.522635],[-6.104798,53.522634],[-6.104796,53.522634],[-6.104794,53.522633],[-6.104792,53.522632],[-6.10479,53.522632],[-6.104789,53.522631],[-6.104787,53.522631],[-6.104785,53.52263],[-6.104783,53.522629],[-6.104781,53.522629],[-6.104779,53.522628],[-6.104778,53.522628],[-6.104776,53.522627],[-6.104774,53.522626],[-6.104772,53.522626],[-6.10477,53.522625],[-6.104768,53.522624],[-6.104767,53.522624],[-6.104765,53.522623],[-6.104763,53.522622],[-6.104761,53.522622],[-6.104759,53.522621],[-6.104758,53.52262],[-6.104756,53.52262],[-6.104754,53.522619],[-6.104752,53.522618],[-6.104751,53.522618],[-6.104749,53.522617],[-6.104747,53.522616],[-6.104745,53.522615],[-6.104744,53.522615],[-6.104742,53.522614],[-6.10474,53.522613],[-6.104739,53.522612],[-6.104737,53.522612],[-6.104735,53.522611],[-6.104734,53.52261],[-6.104732,53.522609],[-6.10473,53.522609],[-6.104728,53.522607],[-6.104726,53.522606],[-6.104725,53.522605],[-6.104724,53.522604],[-6.104722,53.522604],[-6.104721,53.522603],[-6.10472,53.522602],[-6.104719,53.522601],[-6.104717,53.5226],[-6.104716,53.522599],[-6.104715,53.522598],[-6.104714,53.522597],[-6.104713,53.522597],[-6.104711,53.522596],[-6.10471,53.522595],[-6.104709,53.522594],[-6.104708,53.522593],[-6.104707,53.522592],[-6.104705,53.522591],[-6.104704,53.52259],[-6.104703,53.522589],[-6.104702,53.522588],[-6.104701,53.522587],[-6.1047,53.522586],[-6.104699,53.522586],[-6.104698,53.522585],[-6.104696,53.522584],[-6.104695,53.522583],[-6.104694,53.522582],[-6.104693,53.522581],[-6.104692,53.52258],[-6.104691,53.522579],[-6.10469,53.522578],[-6.104689,53.522577],[-6.104688,53.522576],[-6.104687,53.522575],[-6.104686,53.522574],[-6.104685,53.522573],[-6.104684,53.522572],[-6.104683,53.522571],[-6.104682,53.52257],[-6.104681,53.522569],[-6.10468,53.522568],[-6.104679,53.522567],[-6.104678,53.522566],[-6.104677,53.522565],[-6.104677,53.522564],[-6.104676,53.522563],[-6.104675,53.522562],[-6.104674,53.522561],[-6.104673,53.52256],[-6.104672,53.522559],[-6.104671,53.522558],[-6.104671,53.522557],[-6.10467,53.522556],[-6.104669,53.522555],[-6.104668,53.522554],[-6.104667,53.522553],[-6.104667,53.522552],[-6.104666,53.522551],[-6.104665,53.522549],[-6.104664,53.522548],[-6.104664,53.522547],[-6.104663,53.522546],[-6.104662,53.522545],[-6.104661,53.522544],[-6.104661,53.522543],[-6.10466,53.522542],[-6.104659,53.522541],[-6.10465,53.522397],[-6.104649,53.522384],[-6.105071,53.522375],[-6.105742,53.522377],[-6.105723,53.522433],[-6.105658,53.522631],[-6.105658,53.522632]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"3","app_date":"01/07/2008","stroke":"#ed3a26","no_of_units":"2","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for the construction of a residential development on a site of .215 hectares. Development proposals comprise of 1 no. 2 storey detached 4 bedroom house with first floor balcony and car park","reg_date":"","3_bed":"4","5_plus":"","reg_ref":"F08A/0828","fg_date":"","other_total":"9"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.199695,53.439142],[-6.199649,53.438926],[-6.201984,53.438246],[-6.202148,53.438424],[-6.199695,53.439142]]],[[[-6.194521,53.442435],[-6.194465,53.442368],[-6.194329,53.442199],[-6.194046,53.441637],[-6.194157,53.441603],[-6.195715,53.441646],[-6.19577,53.441688],[-6.195777,53.441782],[-6.195869,53.441809],[-6.195862,53.442121],[-6.195827,53.442321],[-6.195144,53.442377],[-6.194718,53.442417],[-6.194521,53.442435]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"39","4_bed":"2","app_date":"08/09/2010","stroke":"#ed3a26","no_of_units":"62","1_bed":"11","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Development of lands at Drinan, Kinsealy, Co. Dublin bounded by Kettles Lane and Feltrim Road, providing for a total of 62 residential units comprising 2 no. 2 and a half storey four-bedroom terraced ","reg_date":"","3_bed":"10","5_plus":"","reg_ref":"F04A/1850/E1","fg_date":"","other_total":"62"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.433329,53.391053],[-6.433011,53.391022],[-6.432645,53.390988],[-6.4325,53.390957],[-6.43238,53.390917],[-6.432307,53.390875],[-6.432258,53.390823],[-6.432215,53.390751],[-6.43221,53.390727],[-6.432212,53.390715],[-6.432213,53.390704],[-6.432215,53.390698],[-6.43222,53.39068],[-6.432238,53.390659],[-6.432261,53.390639],[-6.432286,53.39062],[-6.432313,53.390601],[-6.432425,53.39053],[-6.432517,53.390471],[-6.432971,53.390264],[-6.433207,53.390785],[-6.433329,53.391053]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"17/02/2009","stroke":"#ed3a26","no_of_units":"47","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development having a total of 47 no. 1, 2 and 3 bed apartments in 3 No. 4, 5 and 7 storey blocks including penthouses on a site of circa 0.47ha at Hansfield, Clonsilla, Dublin 15 located ","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/1234","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.159567,53.413861],[-6.159443,53.413846],[-6.159411,53.413778],[-6.159411,53.413743],[-6.159427,53.413337],[-6.159405,53.413294],[-6.159356,53.41327],[-6.159131,53.413229],[-6.159089,53.413222],[-6.158495,53.413116],[-6.158494,53.413119],[-6.15849,53.413117],[-6.158485,53.413116],[-6.158481,53.413116],[-6.158476,53.413115],[-6.158471,53.413115],[-6.158467,53.413115],[-6.158462,53.413115],[-6.158457,53.413116],[-6.158453,53.413116],[-6.158448,53.413117],[-6.158444,53.413118],[-6.15844,53.41312],[-6.158436,53.413121],[-6.158432,53.413123],[-6.158429,53.413125],[-6.158426,53.413127],[-6.158423,53.41313],[-6.158421,53.413132],[-6.158419,53.413135],[-6.158168,53.413537],[-6.158575,53.413694],[-6.158564,53.41372],[-6.158529,53.413802],[-6.158508,53.413845],[-6.158455,53.413962],[-6.158281,53.414016],[-6.158252,53.414031],[-6.158012,53.414111],[-6.157859,53.414163],[-6.157756,53.414098],[-6.15771,53.414059],[-6.157672,53.414035],[-6.157606,53.414009],[-6.157485,53.413984],[-6.157454,53.413987],[-6.157309,53.413989],[-6.157144,53.413999],[-6.157032,53.414009],[-6.156934,53.414038],[-6.156926,53.414041],[-6.156896,53.414056],[-6.156806,53.414097],[-6.156767,53.414139],[-6.156743,53.414187],[-6.156697,53.414286],[-6.156622,53.414452],[-6.156537,53.414621],[-6.1565,53.414698],[-6.15637,53.414693],[-6.156281,53.414677],[-6.156183,53.414646],[-6.156115,53.414623],[-6.155938,53.414564],[-6.155819,53.414549],[-6.15545,53.414517],[-6.155375,53.414503],[-6.1551,53.414436],[-6.154865,53.414369],[-6.154692,53.414307],[-6.154414,53.414208],[-6.154191,53.414152],[-6.153994,53.414111],[-6.153905,53.414093],[-6.153696,53.414055],[-6.152974,53.413945],[-6.152918,53.413965],[-6.15288,53.413979],[-6.152848,53.413992],[-6.152891,53.41397],[-6.152828,53.414001],[-6.152745,53.414036],[-6.152657,53.414071],[-6.152537,53.414118],[-6.152466,53.414143],[-6.152296,53.414201],[-6.152257,53.41422],[-6.152238,53.414235],[-6.152159,53.414281],[-6.151992,53.41431],[-6.151966,53.414314],[-6.151827,53.414318],[-6.151808,53.414318],[-6.151612,53.414316],[-6.151487,53.414314],[-6.151455,53.414312],[-6.151353,53.414288],[-6.151303,53.414277],[-6.151303,53.414276],[-6.151243,53.4142],[-6.151217,53.41419],[-6.151206,53.414187],[-6.151069,53.414141],[-6.150911,53.414086],[-6.150714,53.414028],[-6.150702,53.413959],[-6.150659,53.41378],[-6.150506,53.41276],[-6.150477,53.41268],[-6.150433,53.412536],[-6.150364,53.412322],[-6.150247,53.412033],[-6.150219,53.411951],[-6.152851,53.41182],[-6.152814,53.412612],[-6.154731,53.412723],[-6.156445,53.412957],[-6.156605,53.412426],[-6.156443,53.412408],[-6.156531,53.412085],[-6.156577,53.412096],[-6.156615,53.412101],[-6.156739,53.412119],[-6.156818,53.412135],[-6.156886,53.412147],[-6.156886,53.412148],[-6.156831,53.412363],[-6.156827,53.412395],[-6.156813,53.41247],[-6.156798,53.412584],[-6.156797,53.412587],[-6.156802,53.41259],[-6.156821,53.412601],[-6.156891,53.41262],[-6.156979,53.412637],[-6.15698,53.412637],[-6.157181,53.412674],[-6.157291,53.412694],[-6.157352,53.412705],[-6.157462,53.412726],[-6.157692,53.412771],[-6.157939,53.41282],[-6.158175,53.412869],[-6.158452,53.412925],[-6.158711,53.412969],[-6.15909,53.413032],[-6.159132,53.413037],[-6.159207,53.413047],[-6.159385,53.413068],[-6.159592,53.413022],[-6.159739,53.412955],[-6.159923,53.412538],[-6.159991,53.412459],[-6.160102,53.412476],[-6.159955,53.412925],[-6.159908,53.413141],[-6.159567,53.413861]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"01/08/2008","stroke":"#ed3a26","no_of_units":"52","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Amendments to previously approved residential development Reg. Ref. No. F07A/0424, a residential scheme on a site C.10.59 hectares incorporating:1) Replace 52 previously approved 'Type A' two storey","reg_date":"","3_bed":"8","5_plus":"194","reg_ref":"F08A/0955","fg_date":"","other_total":"202"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.24264,53.399196],[-6.242644,53.399196],[-6.242616,53.3992],[-6.242609,53.399201],[-6.242599,53.399202],[-6.242528,53.399214],[-6.24247,53.399224],[-6.242447,53.399228],[-6.242417,53.399232],[-6.242388,53.399155],[-6.242384,53.399141],[-6.242371,53.399107],[-6.242343,53.399027],[-6.242333,53.398992],[-6.242315,53.398926],[-6.242306,53.398926],[-6.242242,53.39867],[-6.242223,53.398585],[-6.242216,53.398578],[-6.242215,53.398512],[-6.242495,53.398596],[-6.242671,53.398645],[-6.242741,53.39866],[-6.242833,53.39867],[-6.242918,53.398674],[-6.242937,53.398782],[-6.242943,53.398805],[-6.242943,53.398807],[-6.242968,53.398922],[-6.242976,53.398961],[-6.242979,53.398974],[-6.242979,53.398974],[-6.242989,53.399025],[-6.243015,53.399135],[-6.242988,53.399139],[-6.242842,53.399163],[-6.24281,53.399169],[-6.242772,53.399175],[-6.242771,53.399175],[-6.2427,53.399187],[-6.24264,53.399196]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"11","4_bed":"","app_date":"26/08/2008","stroke":"#ed3a26","no_of_units":"22","1_bed":"6","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Development comprising the construction of 22 no. residential apartments (6 no. one-bedroom units, 11 no. two-bedroom units and 5 no. three-bedroom units) in a three storey building with set back four","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F08A/0280","fg_date":"","other_total":"22"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.177841,53.408115],[-6.177856,53.408138],[-6.177857,53.40814],[-6.177917,53.408226],[-6.177957,53.408315],[-6.177987,53.408396],[-6.177412,53.408427],[-6.177419,53.408447],[-6.177207,53.408452],[-6.177106,53.408454],[-6.17711,53.408435],[-6.177111,53.408371],[-6.177107,53.408351],[-6.177059,53.408108],[-6.177809,53.408066],[-6.17784,53.408113],[-6.177841,53.408115]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/09/2008","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission to 1) Demolish existing cottage on-site and 2) permission to construct a residential development comprising of 4 no. two storey with attic converted, semi-detached dwellings with a ridge he","reg_date":"","3_bed":"","5_plus":"4","reg_ref":"F08A/0152","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.159567,53.413861],[-6.159443,53.413846],[-6.159411,53.413778],[-6.159411,53.413743],[-6.159427,53.413337],[-6.159405,53.413294],[-6.159356,53.41327],[-6.159131,53.413229],[-6.159089,53.413222],[-6.158495,53.413116],[-6.158494,53.413119],[-6.15849,53.413117],[-6.158485,53.413116],[-6.158481,53.413116],[-6.158476,53.413115],[-6.158471,53.413115],[-6.158467,53.413115],[-6.158462,53.413115],[-6.158457,53.413116],[-6.158453,53.413116],[-6.158448,53.413117],[-6.158444,53.413118],[-6.15844,53.41312],[-6.158436,53.413121],[-6.158432,53.413123],[-6.158429,53.413125],[-6.158426,53.413127],[-6.158423,53.41313],[-6.158421,53.413132],[-6.158419,53.413135],[-6.158168,53.413537],[-6.158575,53.413694],[-6.158564,53.41372],[-6.158529,53.413802],[-6.158508,53.413845],[-6.158455,53.413962],[-6.158281,53.414016],[-6.158252,53.414031],[-6.158012,53.414111],[-6.157859,53.414163],[-6.157756,53.414098],[-6.15771,53.414059],[-6.157672,53.414035],[-6.157606,53.414009],[-6.157485,53.413984],[-6.157454,53.413987],[-6.157309,53.413989],[-6.157144,53.413999],[-6.157032,53.414009],[-6.156934,53.414038],[-6.156926,53.414041],[-6.156896,53.414056],[-6.156806,53.414097],[-6.156767,53.414139],[-6.156743,53.414187],[-6.156697,53.414286],[-6.156622,53.414452],[-6.156537,53.414621],[-6.1565,53.414698],[-6.15637,53.414693],[-6.156281,53.414677],[-6.156183,53.414646],[-6.156115,53.414623],[-6.155938,53.414564],[-6.155819,53.414549],[-6.15545,53.414517],[-6.155375,53.414503],[-6.1551,53.414436],[-6.154865,53.414369],[-6.154692,53.414307],[-6.154414,53.414208],[-6.154191,53.414152],[-6.153994,53.414111],[-6.153905,53.414093],[-6.153696,53.414055],[-6.152974,53.413945],[-6.152918,53.413965],[-6.15288,53.413979],[-6.152848,53.413992],[-6.152891,53.41397],[-6.152828,53.414001],[-6.152745,53.414036],[-6.152657,53.414071],[-6.152537,53.414118],[-6.152466,53.414143],[-6.152296,53.414201],[-6.152257,53.41422],[-6.152238,53.414235],[-6.152159,53.414281],[-6.151992,53.41431],[-6.151966,53.414314],[-6.151827,53.414318],[-6.151808,53.414318],[-6.151612,53.414316],[-6.151487,53.414314],[-6.151455,53.414312],[-6.151353,53.414288],[-6.151303,53.414277],[-6.151303,53.414276],[-6.151243,53.4142],[-6.151217,53.41419],[-6.151206,53.414187],[-6.151069,53.414141],[-6.150911,53.414086],[-6.150714,53.414028],[-6.150702,53.413959],[-6.150659,53.41378],[-6.150506,53.41276],[-6.150477,53.41268],[-6.150433,53.412536],[-6.150364,53.412322],[-6.150247,53.412033],[-6.150219,53.411951],[-6.152851,53.41182],[-6.152814,53.412612],[-6.154731,53.412723],[-6.156445,53.412957],[-6.156605,53.412426],[-6.156443,53.412408],[-6.156531,53.412085],[-6.156577,53.412096],[-6.156615,53.412101],[-6.156739,53.412119],[-6.156818,53.412135],[-6.156886,53.412147],[-6.156886,53.412148],[-6.156831,53.412363],[-6.156827,53.412395],[-6.156813,53.41247],[-6.156798,53.412584],[-6.156797,53.412587],[-6.156802,53.41259],[-6.156821,53.412601],[-6.156891,53.41262],[-6.156979,53.412637],[-6.15698,53.412637],[-6.157181,53.412674],[-6.157291,53.412694],[-6.157352,53.412705],[-6.157462,53.412726],[-6.157692,53.412771],[-6.157939,53.41282],[-6.158175,53.412869],[-6.158452,53.412925],[-6.158711,53.412969],[-6.15909,53.413032],[-6.159132,53.413037],[-6.159207,53.413047],[-6.159385,53.413068],[-6.159592,53.413022],[-6.159739,53.412955],[-6.159923,53.412538],[-6.159991,53.412459],[-6.160102,53.412476],[-6.159955,53.412925],[-6.159908,53.413141],[-6.159567,53.413861]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"01/08/2008","stroke":"#ed3a26","no_of_units":"52","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Amendments to previously approved residential development Reg. Ref. No. F07A/0424, a residential scheme on a site C.10.59 hectares incorporating:1) Replace 52 previously approved 'Type A' two storey","reg_date":"","3_bed":"8","5_plus":"194","reg_ref":"F08A/0955","fg_date":"","other_total":"202"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.28652,53.58743],[-6.286471,53.587378],[-6.286256,53.584887],[-6.286439,53.584889],[-6.287395,53.584618],[-6.287752,53.585079],[-6.288078,53.5855],[-6.288384,53.585957],[-6.288951,53.585882],[-6.289069,53.586093],[-6.289148,53.5862],[-6.289009,53.58625],[-6.288962,53.58619],[-6.288336,53.586315],[-6.288678,53.586841],[-6.28843,53.586906],[-6.287917,53.58705],[-6.287474,53.587194],[-6.286519,53.58743],[-6.28652,53.58743]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"22","4_bed":"48","app_date":"20/10/2010","stroke":"#ed3a26","no_of_units":"80","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development comprising 80 houses including 28 no. 4 bed detached houses; 3 no. 4 bed detached houses with garage; 14 no. 4 bed semi-detached houses; 6 no. 4 bed semi-detached houses with g","reg_date":"","3_bed":"10","5_plus":"","reg_ref":"F05A/0837/E1","fg_date":"","other_total":"80"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.139935,53.494632],[-6.141207,53.494784],[-6.141064,53.495363],[-6.134461,53.495148],[-6.13435,53.493952],[-6.136395,53.494194],[-6.136911,53.494255],[-6.137518,53.494334],[-6.13756,53.49434],[-6.137657,53.494355],[-6.137661,53.494355],[-6.137751,53.494366],[-6.138143,53.494415],[-6.13833,53.494438],[-6.138342,53.494423],[-6.1387,53.49447],[-6.139468,53.49457],[-6.139935,53.494632]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"31","4_bed":"26","app_date":"28/11/2008","stroke":"#ed3a26","no_of_units":"99","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Ten year planning permission on a site (5.204 hectares) to construct a development incorporating 1) The erection of 99 no. detached, semi detached & terraced residential units (some with ancillary gar","reg_date":"","3_bed":"32","5_plus":"10","reg_ref":"F08A/1338","fg_date":"","other_total":"99"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.119277,53.391861],[-6.118878,53.391876],[-6.118878,53.391869],[-6.118877,53.391862],[-6.118876,53.391856],[-6.118868,53.391778],[-6.118857,53.391655],[-6.118849,53.391564],[-6.118836,53.391482],[-6.119308,53.391495],[-6.119277,53.391861]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"2","4_bed":"3","app_date":"04/12/2008","stroke":"#ed3a26","no_of_units":"17","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Outline provision for the provision of residential accommodation in a six storey apartment block that will contain 3 no. 4 bed units, 12 no. 3 bed units and 2 no. 2 bed units together with a basement ","reg_date":"","3_bed":"12","5_plus":"","reg_ref":"F08A/1357","fg_date":"","other_total":"17"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.440248,53.398276],[-6.440205,53.398294],[-6.440179,53.398308],[-6.440091,53.398348],[-6.440082,53.398352],[-6.439973,53.398401],[-6.439929,53.39842],[-6.439328,53.398333],[-6.439291,53.398301],[-6.439118,53.398378],[-6.438966,53.398442],[-6.438968,53.398454],[-6.438888,53.398489],[-6.438863,53.398486],[-6.43878,53.398521],[-6.43865,53.398577],[-6.438603,53.398597],[-6.438546,53.398621],[-6.43824,53.398755],[-6.438168,53.398787],[-6.438006,53.398857],[-6.437971,53.398873],[-6.437825,53.398937],[-6.437747,53.398968],[-6.437692,53.398986],[-6.437642,53.399001],[-6.437412,53.39906],[-6.437406,53.399077],[-6.437314,53.399103],[-6.437282,53.399091],[-6.43725,53.399099],[-6.43722,53.399106],[-6.437166,53.399109],[-6.437102,53.399115],[-6.436973,53.399137],[-6.436788,53.399191],[-6.436609,53.399241],[-6.436473,53.399275],[-6.436433,53.399286],[-6.436424,53.3993],[-6.436419,53.399314],[-6.436356,53.399261],[-6.436483,53.399215],[-6.436592,53.399192],[-6.436631,53.399182],[-6.436813,53.399126],[-6.436963,53.399086],[-6.437099,53.399063],[-6.437222,53.399052],[-6.437249,53.39905],[-6.437294,53.399045],[-6.437318,53.399043],[-6.437342,53.399039],[-6.437363,53.399037],[-6.437384,53.399033],[-6.437403,53.399029],[-6.437427,53.399024],[-6.437526,53.398997],[-6.4376,53.398975],[-6.437657,53.398958],[-6.437759,53.398915],[-6.437893,53.398856],[-6.438079,53.398776],[-6.438105,53.398779],[-6.43818,53.398745],[-6.438182,53.398731],[-6.43832,53.398672],[-6.438374,53.398649],[-6.438452,53.398616],[-6.438711,53.398503],[-6.438962,53.398397],[-6.438986,53.398386],[-6.439134,53.398324],[-6.439155,53.398315],[-6.439254,53.398273],[-6.439221,53.398246],[-6.439773,53.397985],[-6.439765,53.39793],[-6.439737,53.397696],[-6.440053,53.397862],[-6.440053,53.397862],[-6.440076,53.397872],[-6.440137,53.397898],[-6.440157,53.397907],[-6.44044,53.398027],[-6.440607,53.398101],[-6.440632,53.398112],[-6.440556,53.398156],[-6.44052,53.398162],[-6.440515,53.398163],[-6.440497,53.398165],[-6.440422,53.398197],[-6.440347,53.398231],[-6.440331,53.398238],[-6.440289,53.398257],[-6.440248,53.398276]]],[[[-6.440248,53.398276],[-6.440265,53.398269],[-6.440208,53.398294],[-6.440248,53.398276]]],[[[-6.436356,53.399261],[-6.436353,53.399262],[-6.436353,53.399259],[-6.436356,53.399261]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"19/12/2008","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for a residential development consisting of (1) Demolition of existing single storey dwelling, (2) Construction of 4 No. 2 bed apartments in a 2 storey block. (3) With access from existing ","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/1415","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.440248,53.398276],[-6.440205,53.398294],[-6.440179,53.398308],[-6.440091,53.398348],[-6.440082,53.398352],[-6.439973,53.398401],[-6.439929,53.39842],[-6.439328,53.398333],[-6.439291,53.398301],[-6.439118,53.398378],[-6.438966,53.398442],[-6.438968,53.398454],[-6.438888,53.398489],[-6.438863,53.398486],[-6.43878,53.398521],[-6.43865,53.398577],[-6.438603,53.398597],[-6.438546,53.398621],[-6.43824,53.398755],[-6.438168,53.398787],[-6.438006,53.398857],[-6.437971,53.398873],[-6.437825,53.398937],[-6.437747,53.398968],[-6.437692,53.398986],[-6.437642,53.399001],[-6.437412,53.39906],[-6.437406,53.399077],[-6.437314,53.399103],[-6.437282,53.399091],[-6.43725,53.399099],[-6.43722,53.399106],[-6.437166,53.399109],[-6.437102,53.399115],[-6.436973,53.399137],[-6.436788,53.399191],[-6.436609,53.399241],[-6.436473,53.399275],[-6.436433,53.399286],[-6.436424,53.3993],[-6.436419,53.399314],[-6.436356,53.399261],[-6.436483,53.399215],[-6.436592,53.399192],[-6.436631,53.399182],[-6.436813,53.399126],[-6.436963,53.399086],[-6.437099,53.399063],[-6.437222,53.399052],[-6.437249,53.39905],[-6.437294,53.399045],[-6.437318,53.399043],[-6.437342,53.399039],[-6.437363,53.399037],[-6.437384,53.399033],[-6.437403,53.399029],[-6.437427,53.399024],[-6.437526,53.398997],[-6.4376,53.398975],[-6.437657,53.398958],[-6.437759,53.398915],[-6.437893,53.398856],[-6.438079,53.398776],[-6.438105,53.398779],[-6.43818,53.398745],[-6.438182,53.398731],[-6.43832,53.398672],[-6.438374,53.398649],[-6.438452,53.398616],[-6.438711,53.398503],[-6.438962,53.398397],[-6.438986,53.398386],[-6.439134,53.398324],[-6.439155,53.398315],[-6.439254,53.398273],[-6.439221,53.398246],[-6.439773,53.397985],[-6.439765,53.39793],[-6.439737,53.397696],[-6.440053,53.397862],[-6.440053,53.397862],[-6.440076,53.397872],[-6.440137,53.397898],[-6.440157,53.397907],[-6.44044,53.398027],[-6.440607,53.398101],[-6.440632,53.398112],[-6.440556,53.398156],[-6.44052,53.398162],[-6.440515,53.398163],[-6.440497,53.398165],[-6.440422,53.398197],[-6.440347,53.398231],[-6.440331,53.398238],[-6.440289,53.398257],[-6.440248,53.398276]]],[[[-6.440248,53.398276],[-6.440265,53.398269],[-6.440208,53.398294],[-6.440248,53.398276]]],[[[-6.436356,53.399261],[-6.436353,53.399262],[-6.436353,53.399259],[-6.436356,53.399261]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"19/12/2008","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Permission for a residential development consisting of (1) Demolition of existing single storey dwelling, (2) Construction of 4 No. 2 bed apartments in a 2 storey block. (3) With access from existing ","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/1415","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.675267,53.392619],[-6.671534,53.394359],[-6.668229,53.396739],[-6.666169,53.397993],[-6.656814,53.394897],[-6.660933,53.391595],[-6.664324,53.393464],[-6.665955,53.392363],[-6.667585,53.392773],[-6.669216,53.38983],[-6.670804,53.389215],[-6.675267,53.392619]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"18/02/2013","fill-opacity":0.5,"2_bed":"98","4_bed":"27","app_date":"17/12/2012","stroke":"#ed3a26","no_of_units":"291","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"Extension of Duration of Planning Ref. 06/2595 - residential development of 291 dwellings 2no. creche, distributor road and ancillary site development works on 14.75ha (36.46ac) bounded by Connaught S","reg_date":"","3_bed":"166","5_plus":"","reg_ref":"12986","fg_date":"n/a","other_total":"291"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.377655,53.3742],[-6.377609,53.374292],[-6.377574,53.374294],[-6.377442,53.374272],[-6.377198,53.374228],[-6.37688,53.374193],[-6.376283,53.374151],[-6.376288,53.374105],[-6.376208,53.374126],[-6.376035,53.374067],[-6.376015,53.374021],[-6.375927,53.373966],[-6.375976,53.373936],[-6.375839,53.373883],[-6.376498,53.373359],[-6.376845,53.373177],[-6.377072,53.373118],[-6.377138,53.373087],[-6.377152,53.373046],[-6.37718,53.372856],[-6.377204,53.372686],[-6.377084,53.372593],[-6.376977,53.372525],[-6.376828,53.372338],[-6.376744,53.37218],[-6.376731,53.37208],[-6.376944,53.372071],[-6.376952,53.372119],[-6.377369,53.372111],[-6.377372,53.372249],[-6.376998,53.372263],[-6.377009,53.372327],[-6.377036,53.372381],[-6.377136,53.372472],[-6.377247,53.372564],[-6.377357,53.372704],[-6.37791,53.372739],[-6.377872,53.373132],[-6.377877,53.373147],[-6.377962,53.373167],[-6.378039,53.373186],[-6.378072,53.373189],[-6.3781,53.373217],[-6.378,53.373377],[-6.377655,53.3742]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"09/06/2009","stroke":"#ed3a26","no_of_units":"18","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions to development previously permitted under Reg. Ref. F06A/1109 & An Bord Pleanala Ref. PL06F.221463. The proposed development comprises 18 No. residential units incorporating 12 No. 2 bedroo","reg_date":"","3_bed":"","5_plus":"6","reg_ref":"FW09A/0074","fg_date":"","other_total":"18"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.377655,53.3742],[-6.377609,53.374292],[-6.377574,53.374294],[-6.377442,53.374272],[-6.377198,53.374228],[-6.37688,53.374193],[-6.376283,53.374151],[-6.376288,53.374105],[-6.376208,53.374126],[-6.376035,53.374067],[-6.376015,53.374021],[-6.375927,53.373966],[-6.375976,53.373936],[-6.375839,53.373883],[-6.376498,53.373359],[-6.376845,53.373177],[-6.377072,53.373118],[-6.377138,53.373087],[-6.377152,53.373046],[-6.37718,53.372856],[-6.377204,53.372686],[-6.377084,53.372593],[-6.376977,53.372525],[-6.376828,53.372338],[-6.376744,53.37218],[-6.376731,53.37208],[-6.376944,53.372071],[-6.376952,53.372119],[-6.377369,53.372111],[-6.377372,53.372249],[-6.376998,53.372263],[-6.377009,53.372327],[-6.377036,53.372381],[-6.377136,53.372472],[-6.377247,53.372564],[-6.377357,53.372704],[-6.37791,53.372739],[-6.377872,53.373132],[-6.377877,53.373147],[-6.377962,53.373167],[-6.378039,53.373186],[-6.378072,53.373189],[-6.3781,53.373217],[-6.378,53.373377],[-6.377655,53.3742]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"12","4_bed":"","app_date":"09/06/2009","stroke":"#ed3a26","no_of_units":"18","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Revisions to development previously permitted under Reg. Ref. F06A/1109 & An Bord Pleanala Ref. PL06F.221463. The proposed development comprises 18 No. residential units incorporating 12 No. 2 bedroo","reg_date":"","3_bed":"","5_plus":"6","reg_ref":"FW09A/0074","fg_date":"","other_total":"18"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.208707,53.607509],[-6.208181,53.607716],[-6.2076,53.607236],[-6.208135,53.607027],[-6.208295,53.60695],[-6.208226,53.606932],[-6.208152,53.606914],[-6.208136,53.606865],[-6.208184,53.60682],[-6.208238,53.606777],[-6.208343,53.606758],[-6.20843,53.606753],[-6.208663,53.606715],[-6.208878,53.606687],[-6.209043,53.606621],[-6.209174,53.606668],[-6.20932,53.606629],[-6.209543,53.606687],[-6.209686,53.606818],[-6.209855,53.607042],[-6.208707,53.607509]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"24","4_bed":"","app_date":"08/05/2009","stroke":"#ed3a26","no_of_units":"26","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A four storey mixed use local centre development (to serve the residential development proposed under Reg. Ref. F07A/1249) comprising 26 no. bedroom (2 no. one bed and 24 no. two beds) apartments with","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F08A/0998","fg_date":"","other_total":"26"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.183811,53.61265],[-6.183742,53.612675],[-6.183634,53.612715],[-6.183604,53.612732],[-6.183386,53.612536],[-6.183346,53.612499],[-6.183333,53.612503],[-6.183313,53.612507],[-6.183295,53.612511],[-6.183287,53.612511],[-6.183277,53.61251],[-6.183265,53.612508],[-6.183258,53.612507],[-6.183251,53.6125],[-6.1832,53.612453],[-6.183152,53.612408],[-6.183116,53.612368],[-6.183061,53.612307],[-6.182982,53.612219],[-6.182958,53.612192],[-6.183042,53.61216],[-6.183051,53.612156],[-6.183388,53.612026],[-6.183417,53.612016],[-6.183785,53.612326],[-6.184004,53.612358],[-6.184069,53.612516],[-6.184068,53.612514],[-6.184091,53.612556],[-6.184003,53.61258],[-6.183858,53.612633],[-6.183811,53.61265]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"10","4_bed":"","app_date":"23/06/2009","stroke":"#ed3a26","no_of_units":"14","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of extension and alteration of \"Marian House\", a Protected Structure, and change of use from a school related use to residential use. This would compromise a total of 14 ","reg_date":"","3_bed":"3","5_plus":"","reg_ref":"F08A/1152","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.380775,53.373798],[-6.380828,53.373478],[-6.381036,53.373501],[-6.381248,53.373526],[-6.381482,53.373552],[-6.381679,53.373575],[-6.381814,53.373589],[-6.381855,53.373594],[-6.381866,53.373595],[-6.381831,53.373678],[-6.381781,53.373792],[-6.381774,53.373808],[-6.381748,53.373868],[-6.381746,53.373875],[-6.381447,53.37384],[-6.381369,53.373853],[-6.381367,53.373866],[-6.381289,53.373857],[-6.380966,53.373834],[-6.380872,53.373863],[-6.38078,53.374147],[-6.380607,53.374127],[-6.380625,53.374122],[-6.380658,53.374108],[-6.380683,53.374088],[-6.38076,53.373797],[-6.380775,53.373798]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"20/07/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of existing single storey outbuildings/stables and the provision of 3 No. two storey detached dwelling houses in the side/southern garden area of existing residential dwelling to include of","reg_date":"","3_bed":"","5_plus":"3","reg_ref":"FW09A/0025","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148797,53.400484],[-6.148765,53.400632],[-6.148734,53.400779],[-6.148271,53.400749],[-6.148344,53.400435],[-6.148797,53.400482],[-6.148797,53.400484]]],[[[-6.145999,53.397469],[-6.146689,53.397538],[-6.14664,53.397573],[-6.146616,53.397558],[-6.146543,53.3976],[-6.146623,53.39768],[-6.146692,53.397745],[-6.146687,53.397844],[-6.146623,53.39795],[-6.146621,53.398],[-6.146653,53.398085],[-6.146672,53.398185],[-6.147099,53.39822],[-6.147047,53.398333],[-6.146988,53.398325],[-6.146879,53.398366],[-6.146851,53.398466],[-6.146835,53.398544],[-6.146843,53.398643],[-6.146898,53.398737],[-6.146945,53.398759],[-6.147108,53.399124],[-6.147072,53.399138],[-6.147106,53.399167],[-6.147225,53.399176],[-6.147245,53.399247],[-6.147184,53.399289],[-6.14717,53.399338],[-6.147122,53.399885],[-6.147132,53.399928],[-6.147215,53.399937],[-6.147263,53.399937],[-6.147223,53.400043],[-6.147175,53.400043],[-6.147151,53.400057],[-6.147126,53.400085],[-6.147048,53.400781],[-6.147094,53.40081],[-6.147117,53.400839],[-6.147057,53.400838],[-6.147032,53.400859],[-6.1469,53.401447],[-6.147028,53.401513],[-6.146988,53.401598],[-6.146905,53.401596],[-6.146821,53.401617],[-6.146771,53.401673],[-6.146676,53.401671],[-6.146679,53.4016],[-6.14668,53.401579],[-6.145675,53.401407],[-6.145639,53.401413],[-6.145602,53.401441],[-6.145555,53.401433],[-6.145546,53.401383],[-6.145523,53.401355],[-6.145453,53.401325],[-6.14439,53.401159],[-6.144296,53.401242],[-6.143872,53.401806],[-6.143418,53.402377],[-6.14306,53.402836],[-6.14307,53.402915],[-6.145281,53.402791],[-6.145309,53.402752],[-6.145376,53.402753],[-6.145441,53.40277],[-6.145521,53.402771],[-6.145531,53.402842],[-6.145491,53.402842],[-6.145397,53.403174],[-6.145249,53.403521],[-6.145327,53.403562],[-6.145313,53.403586],[-6.145193,53.403584],[-6.144822,53.404166],[-6.144941,53.404199],[-6.144391,53.404929],[-6.144312,53.404912],[-6.14434,53.404873],[-6.144248,53.404855],[-6.144206,53.404895],[-6.14423,53.404943],[-6.144215,53.404982],[-6.144148,53.404997],[-6.144082,53.404996],[-6.144044,53.404956],[-6.144073,53.404892],[-6.144113,53.404885],[-6.144115,53.404853],[-6.144553,53.404241],[-6.142347,53.403643],[-6.141549,53.403344],[-6.140881,53.403747],[-6.140932,53.403795],[-6.140917,53.403835],[-6.140862,53.403874],[-6.14077,53.403856],[-6.140732,53.403808],[-6.1408,53.403762],[-6.140775,53.403737],[-6.14143,53.403327],[-6.141406,53.403279],[-6.14086,53.403008],[-6.140636,53.402252],[-6.139317,53.402049],[-6.138375,53.400881],[-6.138124,53.400784],[-6.137824,53.400715],[-6.137417,53.400655],[-6.137062,53.400629],[-6.136724,53.400613],[-6.136351,53.400596],[-6.136011,53.400612],[-6.135581,53.40068],[-6.135059,53.4008],[-6.134367,53.40114],[-6.133931,53.401346],[-6.133406,53.40153],[-6.131575,53.40202],[-6.131502,53.402061],[-6.131447,53.402094],[-6.131374,53.402152],[-6.131332,53.402206],[-6.131483,53.402601],[-6.13158,53.402743],[-6.131443,53.402772],[-6.130323,53.401473],[-6.130472,53.401437],[-6.130587,53.401532],[-6.130938,53.401787],[-6.131059,53.401863],[-6.131186,53.401881],[-6.131315,53.401886],[-6.131447,53.401876],[-6.133252,53.401389],[-6.133789,53.401192],[-6.13416,53.400998],[-6.13447,53.400833],[-6.134978,53.400628],[-6.133257,53.398411],[-6.133831,53.398232],[-6.134384,53.39807],[-6.134967,53.398754],[-6.13542,53.398628],[-6.135242,53.398424],[-6.135837,53.398451],[-6.135709,53.398172],[-6.135615,53.398066],[-6.135759,53.398086],[-6.13593,53.398117],[-6.136045,53.398166],[-6.13607,53.398202],[-6.136129,53.398313],[-6.136253,53.398471],[-6.136314,53.39849],[-6.136648,53.398592],[-6.136746,53.398575],[-6.136967,53.398642],[-6.137053,53.39886],[-6.137847,53.400174],[-6.139147,53.400242],[-6.139348,53.400256],[-6.13969,53.400303],[-6.140236,53.400352],[-6.140562,53.400371],[-6.140907,53.400373],[-6.140974,53.400369],[-6.141042,53.400358],[-6.141163,53.400329],[-6.141187,53.400315],[-6.141306,53.400265],[-6.141335,53.400247],[-6.141449,53.400168],[-6.14146,53.400157],[-6.141602,53.400019],[-6.141904,53.400066],[-6.142104,53.40012],[-6.142298,53.400174],[-6.142422,53.400211],[-6.142957,53.400389],[-6.14331,53.400483],[-6.143729,53.400586],[-6.143814,53.400623],[-6.143964,53.40055],[-6.144059,53.400459],[-6.14487,53.400681],[-6.144694,53.400879],[-6.144576,53.401024],[-6.144667,53.40105],[-6.144665,53.401092],[-6.145599,53.401249],[-6.145635,53.401242],[-6.14566,53.401207],[-6.145708,53.401215],[-6.145706,53.401251],[-6.145741,53.401273],[-6.14658,53.401414],[-6.146651,53.401408],[-6.146688,53.40138],[-6.146807,53.400834],[-6.146785,53.400812],[-6.146702,53.400789],[-6.146703,53.400761],[-6.146775,53.400762],[-6.146811,53.400748],[-6.146914,53.400032],[-6.146855,53.400016],[-6.146856,53.399988],[-6.146774,53.399965],[-6.146812,53.399895],[-6.146895,53.399903],[-6.14692,53.399889],[-6.146933,53.399868],[-6.146934,53.399833],[-6.146899,53.399832],[-6.146951,53.399449],[-6.146975,53.399449],[-6.146982,53.399286],[-6.146935,53.399271],[-6.146899,53.39927],[-6.146875,53.399277],[-6.146874,53.399298],[-6.146803,53.399297],[-6.146761,53.399161],[-6.146738,53.399133],[-6.14672,53.399004],[-6.146714,53.398883],[-6.146625,53.398732],[-6.146489,53.398574],[-6.146422,53.39848],[-6.146382,53.398288],[-6.146303,53.398194],[-6.146222,53.398136],[-6.146119,53.398042],[-6.145993,53.39794],[-6.145986,53.397833],[-6.146002,53.397734],[-6.14603,53.397642],[-6.146057,53.397564],[-6.145987,53.39752],[-6.145904,53.397512],[-6.14593,53.397462],[-6.145999,53.397469]]],[[[-6.143186,53.405827],[-6.143294,53.406021],[-6.143288,53.406168],[-6.143282,53.406291],[-6.143186,53.406421],[-6.14295,53.40651],[-6.142649,53.406605],[-6.142231,53.406737],[-6.141941,53.406872],[-6.141769,53.406969],[-6.141638,53.407013],[-6.141444,53.407026],[-6.141212,53.407022],[-6.140774,53.407015],[-6.140544,53.406958],[-6.140377,53.40694],[-6.140262,53.406907],[-6.140202,53.406821],[-6.139937,53.406686],[-6.139662,53.406489],[-6.139234,53.406236],[-6.138909,53.405999],[-6.138728,53.405719],[-6.13855,53.405346],[-6.138427,53.404913],[-6.138362,53.404642],[-6.138381,53.404488],[-6.138374,53.404071],[-6.138382,53.403894],[-6.138582,53.403728],[-6.138779,53.403646],[-6.138975,53.403595],[-6.139443,53.40351],[-6.139849,53.40367],[-6.140286,53.403993],[-6.141203,53.404563],[-6.14155,53.404884],[-6.141964,53.405168],[-6.142658,53.405526],[-6.142783,53.405613],[-6.143186,53.405827]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"240","4_bed":"35","app_date":"20/02/2009","stroke":"#ed3a26","no_of_units":"478","1_bed":"48","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of 478 residential units, comprising 35 no. 4 bedroomed semi-detached 2-storey and 3-storey terraced houses; 27 no. 3 bedroomed 2-storey semi detached and terraced houses; and 40 no. 2 be","reg_date":"","3_bed":"155","5_plus":"","reg_ref":"F03A/1162/E1","fg_date":"","other_total":"478"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.183811,53.61265],[-6.183742,53.612675],[-6.183634,53.612715],[-6.183604,53.612732],[-6.183386,53.612536],[-6.183346,53.612499],[-6.183333,53.612503],[-6.183313,53.612507],[-6.183295,53.612511],[-6.183287,53.612511],[-6.183277,53.61251],[-6.183265,53.612508],[-6.183258,53.612507],[-6.183251,53.6125],[-6.1832,53.612453],[-6.183152,53.612408],[-6.183116,53.612368],[-6.183061,53.612307],[-6.182982,53.612219],[-6.182958,53.612192],[-6.183042,53.61216],[-6.183051,53.612156],[-6.183388,53.612026],[-6.183417,53.612016],[-6.183785,53.612326],[-6.184004,53.612358],[-6.184069,53.612516],[-6.184068,53.612514],[-6.184091,53.612556],[-6.184003,53.61258],[-6.183858,53.612633],[-6.183811,53.61265]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"10","4_bed":"","app_date":"23/06/2009","stroke":"#ed3a26","no_of_units":"14","1_bed":"1","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of extension and alteration of \"Marian House\", a Protected Structure, and change of use from a school related use to residential use. This would compromise a total of 14 ","reg_date":"","3_bed":"3","5_plus":"","reg_ref":"F08A/1152","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.068862,53.387792],[-6.068858,53.387791],[-6.068891,53.387734],[-6.0689,53.387719],[-6.068944,53.387636],[-6.06904,53.387673],[-6.069073,53.387686],[-6.069123,53.387704],[-6.06918,53.387725],[-6.069178,53.387729],[-6.069176,53.387735],[-6.06917,53.387752],[-6.069169,53.387756],[-6.069169,53.387758],[-6.06916,53.387756],[-6.069109,53.387837],[-6.069096,53.387835],[-6.069083,53.387832],[-6.068878,53.387795],[-6.068871,53.387793],[-6.068862,53.387792]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"01/09/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"2 no. three bedroom & 1 no. two bedroom duplex residential units (393 sq.m.) on Porto Fino site between 53 Church Street/Harbour Road, Howth, Co Dublin (An Architectural Conservation Area). The devel","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"F09A/0289","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148797,53.400484],[-6.148765,53.400632],[-6.148734,53.400779],[-6.148271,53.400749],[-6.148344,53.400435],[-6.148797,53.400482],[-6.148797,53.400484]]],[[[-6.145999,53.397469],[-6.146689,53.397538],[-6.14664,53.397573],[-6.146616,53.397558],[-6.146543,53.3976],[-6.146623,53.39768],[-6.146692,53.397745],[-6.146687,53.397844],[-6.146623,53.39795],[-6.146621,53.398],[-6.146653,53.398085],[-6.146672,53.398185],[-6.147099,53.39822],[-6.147047,53.398333],[-6.146988,53.398325],[-6.146879,53.398366],[-6.146851,53.398466],[-6.146835,53.398544],[-6.146843,53.398643],[-6.146898,53.398737],[-6.146945,53.398759],[-6.147108,53.399124],[-6.147072,53.399138],[-6.147106,53.399167],[-6.147225,53.399176],[-6.147245,53.399247],[-6.147184,53.399289],[-6.14717,53.399338],[-6.147122,53.399885],[-6.147132,53.399928],[-6.147215,53.399937],[-6.147263,53.399937],[-6.147223,53.400043],[-6.147175,53.400043],[-6.147151,53.400057],[-6.147126,53.400085],[-6.147048,53.400781],[-6.147094,53.40081],[-6.147117,53.400839],[-6.147057,53.400838],[-6.147032,53.400859],[-6.1469,53.401447],[-6.147028,53.401513],[-6.146988,53.401598],[-6.146905,53.401596],[-6.146821,53.401617],[-6.146771,53.401673],[-6.146676,53.401671],[-6.146679,53.4016],[-6.14668,53.401579],[-6.145675,53.401407],[-6.145639,53.401413],[-6.145602,53.401441],[-6.145555,53.401433],[-6.145546,53.401383],[-6.145523,53.401355],[-6.145453,53.401325],[-6.14439,53.401159],[-6.144296,53.401242],[-6.143872,53.401806],[-6.143418,53.402377],[-6.14306,53.402836],[-6.14307,53.402915],[-6.145281,53.402791],[-6.145309,53.402752],[-6.145376,53.402753],[-6.145441,53.40277],[-6.145521,53.402771],[-6.145531,53.402842],[-6.145491,53.402842],[-6.145397,53.403174],[-6.145249,53.403521],[-6.145327,53.403562],[-6.145313,53.403586],[-6.145193,53.403584],[-6.144822,53.404166],[-6.144941,53.404199],[-6.144391,53.404929],[-6.144312,53.404912],[-6.14434,53.404873],[-6.144248,53.404855],[-6.144206,53.404895],[-6.14423,53.404943],[-6.144215,53.404982],[-6.144148,53.404997],[-6.144082,53.404996],[-6.144044,53.404956],[-6.144073,53.404892],[-6.144113,53.404885],[-6.144115,53.404853],[-6.144553,53.404241],[-6.142347,53.403643],[-6.141549,53.403344],[-6.140881,53.403747],[-6.140932,53.403795],[-6.140917,53.403835],[-6.140862,53.403874],[-6.14077,53.403856],[-6.140732,53.403808],[-6.1408,53.403762],[-6.140775,53.403737],[-6.14143,53.403327],[-6.141406,53.403279],[-6.14086,53.403008],[-6.140636,53.402252],[-6.139317,53.402049],[-6.138375,53.400881],[-6.138124,53.400784],[-6.137824,53.400715],[-6.137417,53.400655],[-6.137062,53.400629],[-6.136724,53.400613],[-6.136351,53.400596],[-6.136011,53.400612],[-6.135581,53.40068],[-6.135059,53.4008],[-6.134367,53.40114],[-6.133931,53.401346],[-6.133406,53.40153],[-6.131575,53.40202],[-6.131502,53.402061],[-6.131447,53.402094],[-6.131374,53.402152],[-6.131332,53.402206],[-6.131483,53.402601],[-6.13158,53.402743],[-6.131443,53.402772],[-6.130323,53.401473],[-6.130472,53.401437],[-6.130587,53.401532],[-6.130938,53.401787],[-6.131059,53.401863],[-6.131186,53.401881],[-6.131315,53.401886],[-6.131447,53.401876],[-6.133252,53.401389],[-6.133789,53.401192],[-6.13416,53.400998],[-6.13447,53.400833],[-6.134978,53.400628],[-6.133257,53.398411],[-6.133831,53.398232],[-6.134384,53.39807],[-6.134967,53.398754],[-6.13542,53.398628],[-6.135242,53.398424],[-6.135837,53.398451],[-6.135709,53.398172],[-6.135615,53.398066],[-6.135759,53.398086],[-6.13593,53.398117],[-6.136045,53.398166],[-6.13607,53.398202],[-6.136129,53.398313],[-6.136253,53.398471],[-6.136314,53.39849],[-6.136648,53.398592],[-6.136746,53.398575],[-6.136967,53.398642],[-6.137053,53.39886],[-6.137847,53.400174],[-6.139147,53.400242],[-6.139348,53.400256],[-6.13969,53.400303],[-6.140236,53.400352],[-6.140562,53.400371],[-6.140907,53.400373],[-6.140974,53.400369],[-6.141042,53.400358],[-6.141163,53.400329],[-6.141187,53.400315],[-6.141306,53.400265],[-6.141335,53.400247],[-6.141449,53.400168],[-6.14146,53.400157],[-6.141602,53.400019],[-6.141904,53.400066],[-6.142104,53.40012],[-6.142298,53.400174],[-6.142422,53.400211],[-6.142957,53.400389],[-6.14331,53.400483],[-6.143729,53.400586],[-6.143814,53.400623],[-6.143964,53.40055],[-6.144059,53.400459],[-6.14487,53.400681],[-6.144694,53.400879],[-6.144576,53.401024],[-6.144667,53.40105],[-6.144665,53.401092],[-6.145599,53.401249],[-6.145635,53.401242],[-6.14566,53.401207],[-6.145708,53.401215],[-6.145706,53.401251],[-6.145741,53.401273],[-6.14658,53.401414],[-6.146651,53.401408],[-6.146688,53.40138],[-6.146807,53.400834],[-6.146785,53.400812],[-6.146702,53.400789],[-6.146703,53.400761],[-6.146775,53.400762],[-6.146811,53.400748],[-6.146914,53.400032],[-6.146855,53.400016],[-6.146856,53.399988],[-6.146774,53.399965],[-6.146812,53.399895],[-6.146895,53.399903],[-6.14692,53.399889],[-6.146933,53.399868],[-6.146934,53.399833],[-6.146899,53.399832],[-6.146951,53.399449],[-6.146975,53.399449],[-6.146982,53.399286],[-6.146935,53.399271],[-6.146899,53.39927],[-6.146875,53.399277],[-6.146874,53.399298],[-6.146803,53.399297],[-6.146761,53.399161],[-6.146738,53.399133],[-6.14672,53.399004],[-6.146714,53.398883],[-6.146625,53.398732],[-6.146489,53.398574],[-6.146422,53.39848],[-6.146382,53.398288],[-6.146303,53.398194],[-6.146222,53.398136],[-6.146119,53.398042],[-6.145993,53.39794],[-6.145986,53.397833],[-6.146002,53.397734],[-6.14603,53.397642],[-6.146057,53.397564],[-6.145987,53.39752],[-6.145904,53.397512],[-6.14593,53.397462],[-6.145999,53.397469]]],[[[-6.143186,53.405827],[-6.143294,53.406021],[-6.143288,53.406168],[-6.143282,53.406291],[-6.143186,53.406421],[-6.14295,53.40651],[-6.142649,53.406605],[-6.142231,53.406737],[-6.141941,53.406872],[-6.141769,53.406969],[-6.141638,53.407013],[-6.141444,53.407026],[-6.141212,53.407022],[-6.140774,53.407015],[-6.140544,53.406958],[-6.140377,53.40694],[-6.140262,53.406907],[-6.140202,53.406821],[-6.139937,53.406686],[-6.139662,53.406489],[-6.139234,53.406236],[-6.138909,53.405999],[-6.138728,53.405719],[-6.13855,53.405346],[-6.138427,53.404913],[-6.138362,53.404642],[-6.138381,53.404488],[-6.138374,53.404071],[-6.138382,53.403894],[-6.138582,53.403728],[-6.138779,53.403646],[-6.138975,53.403595],[-6.139443,53.40351],[-6.139849,53.40367],[-6.140286,53.403993],[-6.141203,53.404563],[-6.14155,53.404884],[-6.141964,53.405168],[-6.142658,53.405526],[-6.142783,53.405613],[-6.143186,53.405827]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"240","4_bed":"35","app_date":"20/02/2009","stroke":"#ed3a26","no_of_units":"478","1_bed":"48","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of 478 residential units, comprising 35 no. 4 bedroomed semi-detached 2-storey and 3-storey terraced houses; 27 no. 3 bedroomed 2-storey semi detached and terraced houses; and 40 no. 2 be","reg_date":"","3_bed":"155","5_plus":"","reg_ref":"F03A/1162/E1","fg_date":"","other_total":"478"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.28652,53.58743],[-6.286471,53.587378],[-6.286256,53.584887],[-6.286439,53.584889],[-6.287395,53.584618],[-6.287752,53.585079],[-6.288078,53.5855],[-6.288384,53.585957],[-6.288951,53.585882],[-6.289069,53.586093],[-6.289148,53.5862],[-6.289009,53.58625],[-6.288962,53.58619],[-6.288336,53.586315],[-6.288678,53.586841],[-6.28843,53.586906],[-6.287917,53.58705],[-6.287474,53.587194],[-6.286519,53.58743],[-6.28652,53.58743]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"22","4_bed":"48","app_date":"20/10/2010","stroke":"#ed3a26","no_of_units":"80","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development comprising 80 houses including 28 no. 4 bed detached houses; 3 no. 4 bed detached houses with garage; 14 no. 4 bed semi-detached houses; 6 no. 4 bed semi-detached houses with g","reg_date":"","3_bed":"10","5_plus":"","reg_ref":"F05A/0837/E1","fg_date":"","other_total":"80"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.434314,53.389571],[-6.432939,53.390174],[-6.432182,53.389774],[-6.432689,53.389585],[-6.43344,53.389286],[-6.43363,53.389346],[-6.434314,53.389571]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"02/11/2010","stroke":"#ed3a26","no_of_units":"26","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Planning permission for a residential development consisting of 26 no. 3 bed 2 storey townhouses on a plot of 0.75 Hectares with access off the roundabout at Ongar Road East being a revision and a re","reg_date":"","3_bed":"26","5_plus":"","reg_ref":"FW10A/0171","fg_date":"","other_total":"26"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.11319,53.575604],[-6.113042,53.575677],[-6.112821,53.575633],[-6.112793,53.575599],[-6.112883,53.575562],[-6.112756,53.575281],[-6.112743,53.575257],[-6.113121,53.575232],[-6.11323,53.575149],[-6.113291,53.575102],[-6.113274,53.575002],[-6.113279,53.574956],[-6.113191,53.574959],[-6.112975,53.574973],[-6.11296,53.574821],[-6.113158,53.574804],[-6.113371,53.574794],[-6.113532,53.574793],[-6.113799,53.574788],[-6.113945,53.57479],[-6.113871,53.574883],[-6.113844,53.574915],[-6.113746,53.575025],[-6.113702,53.575072],[-6.113613,53.575175],[-6.113582,53.575216],[-6.113447,53.575285],[-6.113442,53.575316],[-6.113428,53.575383],[-6.113294,53.575533],[-6.113226,53.575587],[-6.113203,53.575598],[-6.11319,53.575604]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"6","4_bed":"","app_date":"15/08/2011","stroke":"#ed3a26","no_of_units":"14","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of a residential development comprising of 14 no. townhouses, consisting of 6 no. three bed, two and a half storey units and 8 no. two bed, two storey units with associated site and lands","reg_date":"","3_bed":"8","5_plus":"","reg_ref":"F06A/0935/E1","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.209661,53.450302],[-6.209652,53.450325],[-6.209577,53.450533],[-6.209498,53.450762],[-6.209488,53.45079],[-6.209185,53.450762],[-6.209164,53.450865],[-6.209168,53.450955],[-6.209184,53.450972],[-6.209196,53.45099],[-6.209206,53.451008],[-6.209213,53.451027],[-6.209218,53.451046],[-6.209219,53.451065],[-6.209217,53.451085],[-6.209213,53.451104],[-6.209206,53.451123],[-6.209197,53.451135],[-6.209178,53.451153],[-6.209153,53.451178],[-6.209114,53.451216],[-6.20909,53.451238],[-6.209075,53.451252],[-6.209075,53.451256],[-6.209075,53.451259],[-6.209075,53.451263],[-6.209077,53.451266],[-6.209078,53.45127],[-6.20908,53.451273],[-6.209083,53.451276],[-6.209086,53.451279],[-6.209089,53.451282],[-6.209093,53.451285],[-6.209098,53.451287],[-6.209102,53.45129],[-6.209107,53.451292],[-6.209192,53.451321],[-6.20918,53.451332],[-6.209083,53.451296],[-6.209075,53.451292],[-6.20906,53.451287],[-6.208997,53.451262],[-6.208889,53.451226],[-6.208875,53.451221],[-6.20881,53.4512],[-6.20879,53.451193],[-6.208974,53.45102],[-6.208969,53.451011],[-6.208964,53.451001],[-6.208903,53.450832],[-6.208897,53.450816],[-6.208816,53.450591],[-6.208778,53.450484],[-6.208763,53.450444],[-6.208713,53.450306],[-6.208654,53.45014],[-6.20864,53.450094],[-6.208662,53.450098],[-6.208762,53.450117],[-6.20889,53.45014],[-6.208986,53.450158],[-6.209008,53.45016],[-6.209032,53.450165],[-6.209055,53.450169],[-6.20909,53.450173],[-6.209312,53.450203],[-6.209501,53.450224],[-6.209684,53.450243],[-6.209685,53.450243],[-6.209661,53.450302]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"06/04/2009","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development comprising the construction of 13 no. two storey and two and a half storey houses (9 no. 3 bedroom, 4 no. 2 bedroom). The development also includes the demolition of a habit","reg_date":"","3_bed":"9","5_plus":"","reg_ref":"F08A/1302","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.408602,53.512864],[-6.409943,53.511173],[-6.410297,53.510522],[-6.408387,53.510063],[-6.406585,53.50991],[-6.405576,53.509923],[-6.404858,53.510069],[-6.404579,53.510312],[-6.404536,53.510637],[-6.404643,53.511071],[-6.404954,53.511486],[-6.405094,53.511658],[-6.408602,53.512864]]]]},"type":"Feature","properties":{"status":"NEW APPLICATION","":"","deision_date":"\u00a0","fill-opacity":0.5,"2_bed":"54","4_bed":"","app_date":"24/07/2014","stroke":"#ed3a26","no_of_units":"266","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"\u00a0","short_desc":"EXTENSION OF DURATION OF PLANNING PERMISSION - DA/803096 - construction of 266 residential units, 1 ...","reg_date":"","3_bed":"212","5_plus":"","reg_ref":"AA140643","fg_date":"","other_total":"266"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.209661,53.450302],[-6.209652,53.450325],[-6.209577,53.450533],[-6.209498,53.450762],[-6.209488,53.45079],[-6.209185,53.450762],[-6.209164,53.450865],[-6.209168,53.450955],[-6.209184,53.450972],[-6.209196,53.45099],[-6.209206,53.451008],[-6.209213,53.451027],[-6.209218,53.451046],[-6.209219,53.451065],[-6.209217,53.451085],[-6.209213,53.451104],[-6.209206,53.451123],[-6.209197,53.451135],[-6.209178,53.451153],[-6.209153,53.451178],[-6.209114,53.451216],[-6.20909,53.451238],[-6.209075,53.451252],[-6.209075,53.451256],[-6.209075,53.451259],[-6.209075,53.451263],[-6.209077,53.451266],[-6.209078,53.45127],[-6.20908,53.451273],[-6.209083,53.451276],[-6.209086,53.451279],[-6.209089,53.451282],[-6.209093,53.451285],[-6.209098,53.451287],[-6.209102,53.45129],[-6.209107,53.451292],[-6.209192,53.451321],[-6.20918,53.451332],[-6.209083,53.451296],[-6.209075,53.451292],[-6.20906,53.451287],[-6.208997,53.451262],[-6.208889,53.451226],[-6.208875,53.451221],[-6.20881,53.4512],[-6.20879,53.451193],[-6.208974,53.45102],[-6.208969,53.451011],[-6.208964,53.451001],[-6.208903,53.450832],[-6.208897,53.450816],[-6.208816,53.450591],[-6.208778,53.450484],[-6.208763,53.450444],[-6.208713,53.450306],[-6.208654,53.45014],[-6.20864,53.450094],[-6.208662,53.450098],[-6.208762,53.450117],[-6.20889,53.45014],[-6.208986,53.450158],[-6.209008,53.45016],[-6.209032,53.450165],[-6.209055,53.450169],[-6.20909,53.450173],[-6.209312,53.450203],[-6.209501,53.450224],[-6.209684,53.450243],[-6.209685,53.450243],[-6.209661,53.450302]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"06/04/2009","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development comprising the construction of 13 no. two storey and two and a half storey houses (9 no. 3 bedroom, 4 no. 2 bedroom). The development also includes the demolition of a habit","reg_date":"","3_bed":"9","5_plus":"","reg_ref":"F08A/1302","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.24172,53.445192],[-6.241787,53.445234],[-6.241909,53.44531],[-6.241919,53.44532],[-6.241965,53.445352],[-6.241949,53.44536],[-6.241735,53.445462],[-6.241543,53.445572],[-6.24131,53.445698],[-6.241262,53.445723],[-6.24123,53.445744],[-6.24117,53.445702],[-6.24117,53.445702],[-6.241115,53.445658],[-6.241041,53.445615],[-6.240991,53.44558],[-6.240978,53.445572],[-6.240959,53.445582],[-6.240889,53.445532],[-6.240811,53.44549],[-6.240784,53.445476],[-6.240792,53.445471],[-6.240719,53.445437],[-6.240706,53.445431],[-6.240628,53.445394],[-6.240438,53.445311],[-6.240431,53.445308],[-6.240413,53.4453],[-6.240385,53.445291],[-6.240385,53.445289],[-6.240385,53.445254],[-6.240384,53.445197],[-6.240406,53.445173],[-6.240417,53.445161],[-6.240419,53.445158],[-6.240417,53.445112],[-6.240389,53.444963],[-6.240383,53.44494],[-6.240367,53.444923],[-6.24036,53.444915],[-6.240316,53.444878],[-6.240253,53.444806],[-6.240237,53.44475],[-6.240273,53.444767],[-6.240326,53.444793],[-6.240485,53.444887],[-6.240597,53.444948],[-6.240733,53.445021],[-6.240869,53.445099],[-6.241012,53.445177],[-6.241155,53.445267],[-6.241174,53.445255],[-6.241227,53.445222],[-6.241272,53.445193],[-6.24149,53.445068],[-6.241506,53.445059],[-6.24172,53.445192]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"21","4_bed":"","app_date":"19/05/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"8","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development on a site of 1.18 acres (0.48 hectares) at the site of 3 cottages on the Forrest Road, bounded to the east and south by Boroimhe and to the north-west by the Forrest Road. The","reg_date":"","3_bed":"8","5_plus":"","reg_ref":"F08A/1433","fg_date":"","other_total":"37"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.155727,53.414547],[-6.155608,53.414545],[-6.155562,53.414537],[-6.155483,53.414524],[-6.155375,53.414503],[-6.155182,53.414464],[-6.155082,53.414439],[-6.15499,53.414415],[-6.154913,53.414394],[-6.154881,53.414385],[-6.154849,53.414374],[-6.154736,53.414334],[-6.154623,53.414293],[-6.154609,53.414288],[-6.154425,53.414224],[-6.154191,53.414152],[-6.154175,53.41415],[-6.15417,53.414149],[-6.153937,53.414099],[-6.153773,53.414068],[-6.153696,53.414055],[-6.153588,53.414038],[-6.15347,53.414018],[-6.153466,53.414018],[-6.153268,53.413986],[-6.153197,53.413975],[-6.15315,53.413968],[-6.153073,53.413956],[-6.153068,53.413956],[-6.152968,53.413945],[-6.15288,53.413979],[-6.152745,53.414036],[-6.152657,53.414071],[-6.152537,53.414118],[-6.152466,53.414143],[-6.152296,53.414201],[-6.152159,53.414281],[-6.151992,53.41431],[-6.151966,53.414314],[-6.151827,53.414318],[-6.151808,53.414318],[-6.151612,53.414316],[-6.151459,53.414314],[-6.151303,53.414276],[-6.151236,53.414191],[-6.151009,53.414156],[-6.150988,53.414153],[-6.150838,53.414129],[-6.150778,53.414045],[-6.150523,53.41287],[-6.150506,53.41276],[-6.150477,53.41268],[-6.150433,53.412536],[-6.150364,53.412322],[-6.150247,53.412033],[-6.150224,53.411968],[-6.151496,53.411935],[-6.152181,53.411885],[-6.152869,53.411796],[-6.152983,53.412565],[-6.15483,53.412776],[-6.156445,53.412952],[-6.156599,53.412426],[-6.15644,53.412407],[-6.156531,53.41209],[-6.15655,53.412092],[-6.156615,53.412101],[-6.156739,53.412119],[-6.156818,53.412135],[-6.156886,53.412147],[-6.156886,53.412148],[-6.156831,53.412363],[-6.156827,53.412395],[-6.156813,53.41247],[-6.156798,53.412584],[-6.156797,53.412587],[-6.156802,53.41259],[-6.156821,53.412601],[-6.156891,53.41262],[-6.156907,53.412623],[-6.156927,53.412627],[-6.156979,53.412637],[-6.15698,53.412637],[-6.157181,53.412674],[-6.157462,53.412726],[-6.157692,53.412771],[-6.157939,53.41282],[-6.158078,53.412849],[-6.158107,53.412855],[-6.158175,53.412869],[-6.158452,53.412925],[-6.158711,53.412969],[-6.15909,53.413032],[-6.159239,53.413051],[-6.159267,53.413054],[-6.159411,53.413072],[-6.15952,53.413039],[-6.159538,53.413034],[-6.159592,53.413022],[-6.159739,53.412955],[-6.159904,53.412581],[-6.159973,53.4125],[-6.159983,53.412468],[-6.159991,53.412459],[-6.160037,53.412466],[-6.160088,53.412474],[-6.160097,53.412476],[-6.160102,53.412476],[-6.159955,53.412925],[-6.159911,53.413129],[-6.159774,53.413407],[-6.15977,53.413431],[-6.159567,53.413861],[-6.159506,53.413853],[-6.159443,53.413846],[-6.15941,53.413783],[-6.159411,53.413743],[-6.159447,53.41364],[-6.159517,53.413402],[-6.159474,53.413336],[-6.159405,53.413294],[-6.159356,53.41327],[-6.159144,53.413232],[-6.159109,53.413226],[-6.159089,53.413222],[-6.158495,53.413116],[-6.158494,53.413119],[-6.158199,53.413548],[-6.158575,53.413694],[-6.158564,53.41372],[-6.158529,53.413802],[-6.158519,53.413822],[-6.158508,53.413845],[-6.158455,53.413962],[-6.158281,53.414016],[-6.158252,53.414031],[-6.158012,53.414111],[-6.157859,53.414163],[-6.157708,53.414042],[-6.157607,53.413999],[-6.157482,53.413969],[-6.157176,53.413982],[-6.156964,53.414012],[-6.156803,53.414082],[-6.15676,53.41412],[-6.156769,53.414128],[-6.156774,53.414134],[-6.156764,53.414147],[-6.156738,53.4142],[-6.156697,53.414286],[-6.156684,53.414313],[-6.1565,53.414714],[-6.15648,53.414715],[-6.156469,53.414712],[-6.156424,53.414705],[-6.156415,53.414705],[-6.15637,53.414709],[-6.156339,53.414703],[-6.156323,53.414701],[-6.156303,53.414693],[-6.156278,53.414676],[-6.15625,53.414668],[-6.156191,53.414667],[-6.156177,53.414653],[-6.156166,53.414644],[-6.156159,53.414639],[-6.156128,53.414638],[-6.156066,53.414609],[-6.155941,53.414562],[-6.155914,53.414562],[-6.15589,53.414557],[-6.155819,53.414549],[-6.155727,53.414547]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"44","app_date":"02/04/2009","stroke":"#ed3a26","no_of_units":"44","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Amendments to previously approved residential development Reg. Ref. No. F08A/0955, incorporating the replacement 44 no. 'Type C1' 3 storey 5 bed semi detached houses with a 'Type C2' 3 storey 4 bed s","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F09A/0170","fg_date":"","other_total":"44"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.24172,53.445192],[-6.241787,53.445234],[-6.241909,53.44531],[-6.241919,53.44532],[-6.241965,53.445352],[-6.241949,53.44536],[-6.241735,53.445462],[-6.241543,53.445572],[-6.24131,53.445698],[-6.241262,53.445723],[-6.24123,53.445744],[-6.24117,53.445702],[-6.24117,53.445702],[-6.241115,53.445658],[-6.241041,53.445615],[-6.240991,53.44558],[-6.240978,53.445572],[-6.240959,53.445582],[-6.240889,53.445532],[-6.240811,53.44549],[-6.240784,53.445476],[-6.240792,53.445471],[-6.240719,53.445437],[-6.240706,53.445431],[-6.240628,53.445394],[-6.240438,53.445311],[-6.240431,53.445308],[-6.240413,53.4453],[-6.240385,53.445291],[-6.240385,53.445289],[-6.240385,53.445254],[-6.240384,53.445197],[-6.240406,53.445173],[-6.240417,53.445161],[-6.240419,53.445158],[-6.240417,53.445112],[-6.240389,53.444963],[-6.240383,53.44494],[-6.240367,53.444923],[-6.24036,53.444915],[-6.240316,53.444878],[-6.240253,53.444806],[-6.240237,53.44475],[-6.240273,53.444767],[-6.240326,53.444793],[-6.240485,53.444887],[-6.240597,53.444948],[-6.240733,53.445021],[-6.240869,53.445099],[-6.241012,53.445177],[-6.241155,53.445267],[-6.241174,53.445255],[-6.241227,53.445222],[-6.241272,53.445193],[-6.24149,53.445068],[-6.241506,53.445059],[-6.24172,53.445192]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"21","4_bed":"","app_date":"19/05/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"8","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development on a site of 1.18 acres (0.48 hectares) at the site of 3 cottages on the Forrest Road, bounded to the east and south by Boroimhe and to the north-west by the Forrest Road. The","reg_date":"","3_bed":"8","5_plus":"","reg_ref":"F08A/1433","fg_date":"","other_total":"37"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.209684,53.450246],[-6.20967,53.45028],[-6.209486,53.45079],[-6.209184,53.450758],[-6.20917,53.450959],[-6.209187,53.450976],[-6.20921,53.451009],[-6.209221,53.451069],[-6.209203,53.451126],[-6.209112,53.451214],[-6.209076,53.451265],[-6.2091,53.451288],[-6.209188,53.451322],[-6.209173,53.451332],[-6.2088,53.45119],[-6.208967,53.451032],[-6.208813,53.450582],[-6.208804,53.450582],[-6.208655,53.450105],[-6.209165,53.45018],[-6.209684,53.450246]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"3","4_bed":"","app_date":"04/07/2014","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development comprising the construction of 13 no. two storey and two and a half storey houses (9 no. 3 bedroom, 4 no. 2 bedroom). The development also includes the demolition of a habit","reg_date":"","3_bed":"9","5_plus":"","reg_ref":"F08A/1302/E1","fg_date":"","other_total":"12"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.117055,53.58199],[-6.116979,53.582046],[-6.116931,53.582059],[-6.116874,53.582047],[-6.116842,53.582031],[-6.116753,53.581987],[-6.116714,53.58197],[-6.116676,53.58195],[-6.116582,53.581901],[-6.11656,53.581888],[-6.116589,53.581869],[-6.116613,53.581854],[-6.116732,53.581783],[-6.116764,53.581803],[-6.116802,53.58183],[-6.116838,53.581851],[-6.116981,53.581948],[-6.117007,53.581962],[-6.117055,53.58199]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"4","4_bed":"","app_date":"20/09/2010","stroke":"#ed3a26","no_of_units":"4","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development of 4 no. 2 storey 2 bedroom dwelling units consisting of demolition of single storey extension to side of Hill House, demolition of boundary wall to Balbriggan Street, removal ","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/0878/E1","fg_date":"","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148271,53.400749],[-6.148342,53.400436],[-6.148797,53.400482],[-6.148734,53.400779],[-6.148271,53.400749]]],[[[-6.131259,53.402558],[-6.13113,53.402408],[-6.130323,53.401473],[-6.130472,53.401437],[-6.130587,53.401532],[-6.130938,53.401787],[-6.131059,53.401863],[-6.131186,53.401881],[-6.131315,53.401886],[-6.131447,53.401876],[-6.133252,53.401389],[-6.133789,53.401192],[-6.13416,53.400998],[-6.13447,53.400833],[-6.134978,53.400628],[-6.133257,53.398411],[-6.133831,53.398232],[-6.134384,53.39807],[-6.134967,53.398754],[-6.13542,53.398628],[-6.135242,53.398424],[-6.135837,53.398451],[-6.135709,53.398172],[-6.135615,53.398066],[-6.135759,53.398086],[-6.13593,53.398117],[-6.136045,53.398166],[-6.13607,53.398202],[-6.136129,53.398313],[-6.136253,53.398471],[-6.136314,53.39849],[-6.136648,53.398592],[-6.136746,53.398575],[-6.136967,53.398642],[-6.137053,53.39886],[-6.137847,53.400174],[-6.139147,53.400242],[-6.139348,53.400256],[-6.13969,53.400303],[-6.140236,53.400352],[-6.140562,53.400371],[-6.140907,53.400373],[-6.140974,53.400369],[-6.141042,53.400358],[-6.141163,53.400329],[-6.141187,53.400315],[-6.141306,53.400265],[-6.141335,53.400247],[-6.141449,53.400168],[-6.14146,53.400157],[-6.141602,53.400019],[-6.141904,53.400066],[-6.142104,53.40012],[-6.142298,53.400174],[-6.142422,53.400211],[-6.142957,53.400389],[-6.14331,53.400483],[-6.143729,53.400586],[-6.143814,53.400623],[-6.143964,53.40055],[-6.144059,53.400459],[-6.14487,53.400681],[-6.144694,53.400879],[-6.144576,53.401024],[-6.144667,53.40105],[-6.144665,53.401092],[-6.145599,53.401249],[-6.145635,53.401242],[-6.14566,53.401207],[-6.145708,53.401215],[-6.145706,53.401251],[-6.145741,53.401273],[-6.14658,53.401414],[-6.146651,53.401408],[-6.146688,53.40138],[-6.146807,53.400834],[-6.146785,53.400812],[-6.146702,53.400789],[-6.146703,53.400761],[-6.146775,53.400762],[-6.146811,53.400748],[-6.146914,53.400032],[-6.146855,53.400016],[-6.146856,53.399988],[-6.146774,53.399965],[-6.146812,53.399895],[-6.146895,53.399903],[-6.14692,53.399889],[-6.146933,53.399868],[-6.146934,53.399833],[-6.146899,53.399832],[-6.146951,53.399449],[-6.146975,53.399449],[-6.146982,53.399286],[-6.146935,53.399271],[-6.146899,53.39927],[-6.146875,53.399277],[-6.146874,53.399298],[-6.146803,53.399297],[-6.146761,53.399161],[-6.146738,53.399133],[-6.14672,53.399004],[-6.146714,53.398883],[-6.146625,53.398732],[-6.146489,53.398574],[-6.146422,53.39848],[-6.146382,53.398288],[-6.146303,53.398194],[-6.146222,53.398136],[-6.146119,53.398042],[-6.145993,53.39794],[-6.145986,53.397833],[-6.146002,53.397734],[-6.14603,53.397642],[-6.146057,53.397564],[-6.145987,53.39752],[-6.145904,53.397512],[-6.14593,53.397462],[-6.146689,53.397538],[-6.14664,53.397573],[-6.146616,53.397558],[-6.146543,53.3976],[-6.146623,53.39768],[-6.146692,53.397745],[-6.146687,53.397844],[-6.146623,53.39795],[-6.146621,53.398],[-6.146653,53.398085],[-6.146672,53.398185],[-6.147099,53.39822],[-6.147047,53.398333],[-6.146988,53.398325],[-6.146879,53.398366],[-6.146851,53.398466],[-6.146835,53.398544],[-6.146843,53.398643],[-6.146898,53.398737],[-6.146945,53.398759],[-6.147108,53.399124],[-6.147072,53.399138],[-6.147106,53.399167],[-6.147225,53.399176],[-6.147245,53.399247],[-6.147184,53.399289],[-6.14717,53.399338],[-6.147122,53.399885],[-6.147132,53.399928],[-6.147215,53.399937],[-6.147263,53.399937],[-6.147223,53.400043],[-6.147175,53.400043],[-6.147151,53.400057],[-6.147126,53.400085],[-6.147048,53.400781],[-6.147094,53.40081],[-6.147117,53.400839],[-6.147057,53.400838],[-6.147032,53.400859],[-6.1469,53.401447],[-6.147028,53.401513],[-6.146988,53.401598],[-6.146905,53.401596],[-6.146821,53.401617],[-6.146771,53.401673],[-6.146676,53.401671],[-6.146679,53.4016],[-6.14668,53.401579],[-6.145675,53.401407],[-6.145639,53.401413],[-6.145602,53.401441],[-6.145555,53.401433],[-6.145546,53.401383],[-6.145523,53.401355],[-6.145453,53.401325],[-6.14439,53.401159],[-6.144296,53.401242],[-6.143872,53.401806],[-6.143418,53.402377],[-6.14306,53.402836],[-6.14307,53.402915],[-6.145281,53.402791],[-6.145309,53.402752],[-6.145376,53.402753],[-6.145441,53.40277],[-6.145521,53.402771],[-6.145531,53.402842],[-6.145491,53.402842],[-6.145397,53.403174],[-6.145249,53.403521],[-6.145327,53.403562],[-6.145313,53.403586],[-6.145193,53.403584],[-6.144822,53.404166],[-6.144941,53.404199],[-6.144391,53.404929],[-6.144312,53.404912],[-6.14434,53.404873],[-6.144248,53.404855],[-6.144206,53.404895],[-6.14423,53.404943],[-6.144215,53.404982],[-6.144148,53.404997],[-6.144082,53.404996],[-6.144044,53.404956],[-6.144073,53.404892],[-6.144113,53.404885],[-6.144115,53.404853],[-6.144553,53.404241],[-6.142347,53.403643],[-6.141549,53.403344],[-6.140881,53.403747],[-6.140932,53.403795],[-6.140917,53.403835],[-6.140862,53.403874],[-6.14077,53.403856],[-6.140732,53.403808],[-6.1408,53.403762],[-6.140775,53.403737],[-6.14143,53.403327],[-6.141406,53.403279],[-6.14086,53.403008],[-6.140636,53.402252],[-6.139317,53.402049],[-6.138375,53.400881],[-6.138124,53.400784],[-6.137824,53.400715],[-6.137417,53.400655],[-6.137062,53.400629],[-6.136724,53.400613],[-6.136351,53.400596],[-6.136011,53.400612],[-6.135581,53.40068],[-6.135059,53.4008],[-6.134367,53.40114],[-6.133931,53.401346],[-6.133406,53.40153],[-6.131575,53.40202],[-6.131502,53.402061],[-6.131447,53.402094],[-6.131374,53.402152],[-6.131332,53.402206],[-6.131483,53.402601],[-6.13158,53.402743],[-6.131443,53.402772],[-6.131311,53.402619],[-6.131259,53.402558]]],[[[-6.138382,53.403894],[-6.138582,53.403728],[-6.138779,53.403646],[-6.138975,53.403595],[-6.139443,53.40351],[-6.139849,53.40367],[-6.140286,53.403993],[-6.141203,53.404563],[-6.14155,53.404884],[-6.141964,53.405168],[-6.142658,53.405526],[-6.142783,53.405613],[-6.143186,53.405827],[-6.143294,53.406021],[-6.143288,53.406168],[-6.143282,53.406291],[-6.143186,53.406421],[-6.14295,53.40651],[-6.142649,53.406605],[-6.142231,53.406737],[-6.141941,53.406872],[-6.141769,53.406969],[-6.141638,53.407013],[-6.141444,53.407026],[-6.141212,53.407022],[-6.140774,53.407015],[-6.140544,53.406958],[-6.140377,53.40694],[-6.140262,53.406907],[-6.140202,53.406821],[-6.139937,53.406686],[-6.139662,53.406489],[-6.139234,53.406236],[-6.138909,53.405999],[-6.138728,53.405719],[-6.13855,53.405346],[-6.138427,53.404913],[-6.138362,53.404642],[-6.138381,53.404488],[-6.138374,53.404071],[-6.138382,53.403894]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"240","4_bed":"35","app_date":"11/08/2009","stroke":"#ed3a26","no_of_units":"478","1_bed":"48","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of 478 residential units, comprising 35 no. 4 bedroomed semi-detached 2-storey and 3-storey terraced houses; 27 no. 3 bedroomed 2-storey semi detached and terraced houses; and 40 no. 2 be","reg_date":"","3_bed":"155","5_plus":"","reg_ref":"F03A/1162/E2","fg_date":"","other_total":"478"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.594779,53.394641],[-6.594286,53.392056],[-6.598577,53.39125],[-6.596861,53.387846],[-6.594608,53.388204],[-6.594415,53.387526],[-6.593363,53.388128],[-6.590531,53.39038],[-6.591303,53.391749],[-6.592355,53.393553],[-6.592827,53.394974],[-6.594779,53.394641]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"24/10/2008","fill-opacity":0.5,"2_bed":"114","4_bed":"96","app_date":"01/09/2008","stroke":"#ed3a26","no_of_units":"538","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"development at Mariavilla, Maynooth on a site of 19.39 hectares (48.5 acres) to the east of the Moyglare Road \u2013 Planning Ref: 02/2491. The original application consisted of construction of 538 reside","reg_date":"","3_bed":"210","5_plus":"119","reg_ref":"022491","fg_date":"n/a","other_total":"539"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.172577,53.424721],[-6.173049,53.424793],[-6.173077,53.424797],[-6.172996,53.424898],[-6.172993,53.424903],[-6.172985,53.424913],[-6.172969,53.424934],[-6.172954,53.424955],[-6.172943,53.424974],[-6.172929,53.424994],[-6.172877,53.425072],[-6.172875,53.425079],[-6.172804,53.425192],[-6.172793,53.42521],[-6.172665,53.425199],[-6.172315,53.425426],[-6.172304,53.425433],[-6.17226,53.425462],[-6.172424,53.425549],[-6.172305,53.42561],[-6.17213,53.425645],[-6.172145,53.425741],[-6.172114,53.42576],[-6.171857,53.425761],[-6.171849,53.425719],[-6.171476,53.42572],[-6.171389,53.425722],[-6.171105,53.425735],[-6.170961,53.425744],[-6.170703,53.425761],[-6.170595,53.42577],[-6.170504,53.425781],[-6.170427,53.425793],[-6.170321,53.425815],[-6.170292,53.425822],[-6.170253,53.425828],[-6.170224,53.425835],[-6.170202,53.425842],[-6.170175,53.425851],[-6.170158,53.425856],[-6.170136,53.425863],[-6.170118,53.425868],[-6.170089,53.425879],[-6.170066,53.425886],[-6.170051,53.425891],[-6.170023,53.425902],[-6.169996,53.425913],[-6.169968,53.425926],[-6.169915,53.425952],[-6.169879,53.42597],[-6.169827,53.426002],[-6.169766,53.426044],[-6.169676,53.426112],[-6.169661,53.426135],[-6.169653,53.426145],[-6.169649,53.426149],[-6.169637,53.426162],[-6.169621,53.426179],[-6.1696,53.426206],[-6.169587,53.426229],[-6.169386,53.426586],[-6.16938,53.426592],[-6.169246,53.426747],[-6.169235,53.426759],[-6.169227,53.426768],[-6.169033,53.426986],[-6.169005,53.427024],[-6.168828,53.427139],[-6.168777,53.427185],[-6.168759,53.427204],[-6.16875,53.427212],[-6.168743,53.427219],[-6.168737,53.427224],[-6.168733,53.427227],[-6.168728,53.427231],[-6.168724,53.427239],[-6.16872,53.427251],[-6.168635,53.427341],[-6.168627,53.427344],[-6.168539,53.427493],[-6.168484,53.427646],[-6.168473,53.427754],[-6.168462,53.427779],[-6.168456,53.427802],[-6.168448,53.427829],[-6.168443,53.427883],[-6.168442,53.427902],[-6.168442,53.428017],[-6.168426,53.428168],[-6.168422,53.42822],[-6.168419,53.428263],[-6.168413,53.428334],[-6.168412,53.428372],[-6.168412,53.428393],[-6.168396,53.42852],[-6.168243,53.428516],[-6.168256,53.428387],[-6.168291,53.428078],[-6.168294,53.428047],[-6.168329,53.427739],[-6.168339,53.427659],[-6.168352,53.427484],[-6.168386,53.427293],[-6.168394,53.427278],[-6.168408,53.42726],[-6.16842,53.427241],[-6.168429,53.427229],[-6.168448,53.427213],[-6.168486,53.427189],[-6.168515,53.42717],[-6.168561,53.427151],[-6.168632,53.427125],[-6.168682,53.427109],[-6.168727,53.427092],[-6.16876,53.427076],[-6.168795,53.427056],[-6.168818,53.427039],[-6.168864,53.426995],[-6.168999,53.426833],[-6.169187,53.426613],[-6.169272,53.426478],[-6.16929,53.426449],[-6.169299,53.426436],[-6.16939,53.426287],[-6.169456,53.426177],[-6.169466,53.426162],[-6.169524,53.426121],[-6.169528,53.426119],[-6.16954,53.426113],[-6.169897,53.425862],[-6.169903,53.425855],[-6.169904,53.42585],[-6.170088,53.425716],[-6.169833,53.42561],[-6.169556,53.425445],[-6.169324,53.425358],[-6.169152,53.425258],[-6.169183,53.425215],[-6.169214,53.425145],[-6.169301,53.425014],[-6.169317,53.424993],[-6.169219,53.424957],[-6.169154,53.424923],[-6.169079,53.424901],[-6.169132,53.424757],[-6.16915,53.42471],[-6.169296,53.424319],[-6.169359,53.424326],[-6.169658,53.424367],[-6.169684,53.424313],[-6.170249,53.424394],[-6.171228,53.424531],[-6.171919,53.424629],[-6.172577,53.424721]]],[[[-6.167665,53.435291],[-6.168085,53.435322],[-6.168735,53.435368],[-6.169387,53.435414],[-6.169399,53.43535],[-6.169455,53.435343],[-6.169479,53.435295],[-6.169652,53.435298],[-6.169659,53.435425],[-6.169469,53.43542],[-6.169473,53.435393],[-6.169463,53.435393],[-6.169455,53.435455],[-6.169447,53.435455],[-6.169432,53.435453],[-6.169204,53.435439],[-6.169185,53.435438],[-6.169142,53.435435],[-6.168846,53.435413],[-6.168738,53.435405],[-6.168543,53.435391],[-6.1683,53.435374],[-6.168118,53.43536],[-6.167973,53.43535],[-6.167919,53.435346],[-6.167785,53.435338],[-6.167654,53.435327],[-6.167022,53.435285],[-6.166879,53.435274],[-6.166854,53.435373],[-6.16679,53.435649],[-6.166786,53.435709],[-6.166743,53.435933],[-6.166653,53.436232],[-6.166647,53.43625],[-6.166576,53.436486],[-6.166499,53.437125],[-6.166496,53.437151],[-6.166487,53.437222],[-6.166433,53.437942],[-6.16643,53.437981],[-6.166355,53.438974],[-6.166302,53.439488],[-6.166297,53.439517],[-6.166954,53.439381],[-6.167013,53.439368],[-6.167515,53.439265],[-6.167977,53.439179],[-6.168131,53.43915],[-6.169882,53.438871],[-6.17003,53.438854],[-6.170062,53.438853],[-6.170101,53.438851],[-6.170188,53.438847],[-6.170327,53.438841],[-6.170509,53.438849],[-6.170726,53.438873],[-6.170796,53.43888],[-6.171164,53.438921],[-6.171667,53.438987],[-6.172038,53.439023],[-6.172475,53.439069],[-6.172966,53.439127],[-6.173368,53.439168],[-6.173732,53.439203],[-6.173794,53.439213],[-6.173878,53.439226],[-6.174063,53.439267],[-6.174252,53.43934],[-6.174273,53.439349],[-6.174656,53.439499],[-6.175045,53.439665],[-6.175379,53.439807],[-6.175747,53.439957],[-6.175789,53.439973],[-6.175825,53.439988],[-6.176033,53.440073],[-6.176236,53.440161],[-6.176451,53.440247],[-6.176626,53.440323],[-6.176627,53.440358],[-6.176484,53.440552],[-6.176407,53.440588],[-6.176299,53.440738],[-6.176023,53.441093],[-6.175952,53.441175],[-6.175894,53.441213],[-6.175633,53.441388],[-6.175406,53.441535],[-6.175254,53.441638],[-6.175224,53.441658],[-6.175197,53.441677],[-6.175157,53.441704],[-6.175106,53.441733],[-6.175021,53.441797],[-6.174914,53.441876],[-6.174811,53.441979],[-6.174788,53.442007],[-6.174725,53.442084],[-6.174635,53.442221],[-6.174536,53.442365],[-6.174526,53.442379],[-6.174509,53.442404],[-6.174451,53.442483],[-6.17444,53.4425],[-6.174415,53.442532],[-6.174387,53.442574],[-6.174372,53.442596],[-6.174349,53.442631],[-6.174253,53.442777],[-6.174112,53.442984],[-6.174094,53.443029],[-6.174079,53.443069],[-6.174065,53.443104],[-6.174057,53.443123],[-6.174045,53.443142],[-6.174027,53.443167],[-6.174005,53.4432],[-6.173973,53.443246],[-6.173944,53.443284],[-6.1739,53.443342],[-6.173836,53.443429],[-6.173828,53.443438],[-6.173802,53.443475],[-6.173718,53.443604],[-6.173679,53.443668],[-6.173646,53.443723],[-6.173615,53.443777],[-6.173576,53.443851],[-6.173554,53.443909],[-6.173378,53.444288],[-6.173376,53.444294],[-6.173373,53.444304],[-6.173374,53.444311],[-6.173374,53.44436],[-6.173376,53.444462],[-6.173379,53.444589],[-6.173385,53.444658],[-6.17339,53.444757],[-6.1734,53.444758],[-6.173398,53.444777],[-6.173396,53.444864],[-6.173395,53.444929],[-6.173394,53.444999],[-6.17339,53.445151],[-6.173389,53.44517],[-6.173402,53.445244],[-6.173387,53.445248],[-6.173385,53.445255],[-6.173381,53.445271],[-6.173367,53.445318],[-6.173288,53.445429],[-6.173211,53.445514],[-6.173173,53.445558],[-6.173142,53.445604],[-6.173121,53.445622],[-6.173092,53.445652],[-6.173046,53.445715],[-6.173035,53.44573],[-6.172972,53.445829],[-6.172917,53.445897],[-6.17418,53.446331],[-6.174132,53.446377],[-6.174106,53.446368],[-6.174072,53.446356],[-6.173799,53.446264],[-6.173776,53.446256],[-6.173692,53.446228],[-6.173565,53.446185],[-6.173558,53.446183],[-6.173432,53.44614],[-6.173372,53.44612],[-6.173339,53.446109],[-6.173295,53.446097],[-6.173262,53.446088],[-6.173227,53.446078],[-6.173158,53.446055],[-6.172777,53.445932],[-6.173207,53.44541],[-6.173277,53.445321],[-6.173299,53.445265],[-6.173309,53.445223],[-6.173316,53.445172],[-6.173311,53.444891],[-6.173307,53.444805],[-6.173299,53.444587],[-6.173294,53.444524],[-6.173291,53.444421],[-6.173305,53.444266],[-6.173317,53.444201],[-6.173331,53.444141],[-6.173354,53.444073],[-6.173402,53.443952],[-6.173448,53.443858],[-6.173501,53.443758],[-6.173551,53.443669],[-6.173578,53.443624],[-6.173615,53.443567],[-6.173655,53.443496],[-6.173714,53.443404],[-6.173821,53.443256],[-6.173887,53.443163],[-6.173914,53.443121],[-6.173997,53.442955],[-6.174202,53.442627],[-6.174377,53.442354],[-6.174391,53.442331],[-6.174409,53.442303],[-6.174554,53.442065],[-6.174721,53.441889],[-6.175115,53.441583],[-6.17544,53.441383],[-6.175717,53.441216],[-6.175757,53.441187],[-6.17578,53.441171],[-6.175824,53.44114],[-6.175919,53.441055],[-6.176053,53.44089],[-6.176468,53.440362],[-6.176486,53.440341],[-6.176066,53.440157],[-6.173941,53.43929],[-6.173823,53.439268],[-6.173796,53.439264],[-6.173691,53.439254],[-6.173419,53.439223],[-6.172988,53.439177],[-6.172573,53.439129],[-6.17226,53.439092],[-6.171908,53.439053],[-6.171608,53.43902],[-6.171295,53.438985],[-6.170978,53.438948],[-6.170685,53.438915],[-6.17053,53.438894],[-6.170417,53.438891],[-6.170272,53.438887],[-6.170192,53.438888],[-6.170117,53.438897],[-6.170097,53.438899],[-6.170079,53.438901],[-6.169985,53.438905],[-6.169857,53.438923],[-6.169551,53.438971],[-6.169056,53.439049],[-6.168807,53.439089],[-6.168527,53.439133],[-6.168435,53.43915],[-6.168284,53.439179],[-6.167873,53.439256],[-6.167448,53.439338],[-6.167143,53.439401],[-6.166738,53.439479],[-6.166355,53.439555],[-6.166242,53.439578],[-6.166251,53.439454],[-6.166238,53.439381],[-6.166289,53.438502],[-6.166292,53.438454],[-6.166321,53.438092],[-6.166324,53.438057],[-6.166327,53.43802],[-6.166331,53.437978],[-6.166346,53.437791],[-6.166355,53.437701],[-6.166355,53.437629],[-6.16639,53.437592],[-6.166408,53.437312],[-6.166419,53.437152],[-6.166418,53.437113],[-6.166441,53.437025],[-6.166454,53.436925],[-6.166486,53.436718],[-6.166487,53.43671],[-6.16649,53.436692],[-6.166495,53.436658],[-6.166517,53.436516],[-6.166523,53.43648],[-6.166534,53.436437],[-6.166552,53.436371],[-6.166569,53.43628],[-6.166569,53.43628],[-6.166579,53.436242],[-6.166621,53.436006],[-6.166652,53.435868],[-6.166837,53.435235],[-6.167414,53.435272],[-6.167583,53.435283],[-6.167665,53.435291]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"8","app_date":"21/08/2009","stroke":"#ed3a26","no_of_units":"38","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development at Chapel Road (Kinsealy LAP, Character Area 3). The application provides for 38 no. two storey dwellings (8 no. 4-bedroom and 30 no. 3-bedroom units), a playground, landsca","reg_date":"","3_bed":"30","5_plus":"","reg_ref":"F09A/0436","fg_date":"","other_total":"38"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.284072,53.407811],[-6.282813,53.407731],[-6.28277,53.407676],[-6.282881,53.407468],[-6.283296,53.406994],[-6.283497,53.407058],[-6.285493,53.407289],[-6.285287,53.407889],[-6.284161,53.407817],[-6.284072,53.407811]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"89","4_bed":"","app_date":"20/04/2012","stroke":"#ed3a26","no_of_units":"136","1_bed":"42","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construct a residential development of 136 no. units consisting of 42 no. 1 bed apartments, 89 no. 2 bed apartments and 5 no. 3 bed apartments within 2 no. 4 storey blocks and 1 no. 3 storey block and","reg_date":"","3_bed":"5","5_plus":"","reg_ref":"F06A/1348/E1","fg_date":"","other_total":"136"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148271,53.400749],[-6.148342,53.400436],[-6.148797,53.400482],[-6.148734,53.400779],[-6.148271,53.400749]]],[[[-6.131259,53.402558],[-6.13113,53.402408],[-6.130323,53.401473],[-6.130472,53.401437],[-6.130587,53.401532],[-6.130938,53.401787],[-6.131059,53.401863],[-6.131186,53.401881],[-6.131315,53.401886],[-6.131447,53.401876],[-6.133252,53.401389],[-6.133789,53.401192],[-6.13416,53.400998],[-6.13447,53.400833],[-6.134978,53.400628],[-6.133257,53.398411],[-6.133831,53.398232],[-6.134384,53.39807],[-6.134967,53.398754],[-6.13542,53.398628],[-6.135242,53.398424],[-6.135837,53.398451],[-6.135709,53.398172],[-6.135615,53.398066],[-6.135759,53.398086],[-6.13593,53.398117],[-6.136045,53.398166],[-6.13607,53.398202],[-6.136129,53.398313],[-6.136253,53.398471],[-6.136314,53.39849],[-6.136648,53.398592],[-6.136746,53.398575],[-6.136967,53.398642],[-6.137053,53.39886],[-6.137847,53.400174],[-6.139147,53.400242],[-6.139348,53.400256],[-6.13969,53.400303],[-6.140236,53.400352],[-6.140562,53.400371],[-6.140907,53.400373],[-6.140974,53.400369],[-6.141042,53.400358],[-6.141163,53.400329],[-6.141187,53.400315],[-6.141306,53.400265],[-6.141335,53.400247],[-6.141449,53.400168],[-6.14146,53.400157],[-6.141602,53.400019],[-6.141904,53.400066],[-6.142104,53.40012],[-6.142298,53.400174],[-6.142422,53.400211],[-6.142957,53.400389],[-6.14331,53.400483],[-6.143729,53.400586],[-6.143814,53.400623],[-6.143964,53.40055],[-6.144059,53.400459],[-6.14487,53.400681],[-6.144694,53.400879],[-6.144576,53.401024],[-6.144667,53.40105],[-6.144665,53.401092],[-6.145599,53.401249],[-6.145635,53.401242],[-6.14566,53.401207],[-6.145708,53.401215],[-6.145706,53.401251],[-6.145741,53.401273],[-6.14658,53.401414],[-6.146651,53.401408],[-6.146688,53.40138],[-6.146807,53.400834],[-6.146785,53.400812],[-6.146702,53.400789],[-6.146703,53.400761],[-6.146775,53.400762],[-6.146811,53.400748],[-6.146914,53.400032],[-6.146855,53.400016],[-6.146856,53.399988],[-6.146774,53.399965],[-6.146812,53.399895],[-6.146895,53.399903],[-6.14692,53.399889],[-6.146933,53.399868],[-6.146934,53.399833],[-6.146899,53.399832],[-6.146951,53.399449],[-6.146975,53.399449],[-6.146982,53.399286],[-6.146935,53.399271],[-6.146899,53.39927],[-6.146875,53.399277],[-6.146874,53.399298],[-6.146803,53.399297],[-6.146761,53.399161],[-6.146738,53.399133],[-6.14672,53.399004],[-6.146714,53.398883],[-6.146625,53.398732],[-6.146489,53.398574],[-6.146422,53.39848],[-6.146382,53.398288],[-6.146303,53.398194],[-6.146222,53.398136],[-6.146119,53.398042],[-6.145993,53.39794],[-6.145986,53.397833],[-6.146002,53.397734],[-6.14603,53.397642],[-6.146057,53.397564],[-6.145987,53.39752],[-6.145904,53.397512],[-6.14593,53.397462],[-6.146689,53.397538],[-6.14664,53.397573],[-6.146616,53.397558],[-6.146543,53.3976],[-6.146623,53.39768],[-6.146692,53.397745],[-6.146687,53.397844],[-6.146623,53.39795],[-6.146621,53.398],[-6.146653,53.398085],[-6.146672,53.398185],[-6.147099,53.39822],[-6.147047,53.398333],[-6.146988,53.398325],[-6.146879,53.398366],[-6.146851,53.398466],[-6.146835,53.398544],[-6.146843,53.398643],[-6.146898,53.398737],[-6.146945,53.398759],[-6.147108,53.399124],[-6.147072,53.399138],[-6.147106,53.399167],[-6.147225,53.399176],[-6.147245,53.399247],[-6.147184,53.399289],[-6.14717,53.399338],[-6.147122,53.399885],[-6.147132,53.399928],[-6.147215,53.399937],[-6.147263,53.399937],[-6.147223,53.400043],[-6.147175,53.400043],[-6.147151,53.400057],[-6.147126,53.400085],[-6.147048,53.400781],[-6.147094,53.40081],[-6.147117,53.400839],[-6.147057,53.400838],[-6.147032,53.400859],[-6.1469,53.401447],[-6.147028,53.401513],[-6.146988,53.401598],[-6.146905,53.401596],[-6.146821,53.401617],[-6.146771,53.401673],[-6.146676,53.401671],[-6.146679,53.4016],[-6.14668,53.401579],[-6.145675,53.401407],[-6.145639,53.401413],[-6.145602,53.401441],[-6.145555,53.401433],[-6.145546,53.401383],[-6.145523,53.401355],[-6.145453,53.401325],[-6.14439,53.401159],[-6.144296,53.401242],[-6.143872,53.401806],[-6.143418,53.402377],[-6.14306,53.402836],[-6.14307,53.402915],[-6.145281,53.402791],[-6.145309,53.402752],[-6.145376,53.402753],[-6.145441,53.40277],[-6.145521,53.402771],[-6.145531,53.402842],[-6.145491,53.402842],[-6.145397,53.403174],[-6.145249,53.403521],[-6.145327,53.403562],[-6.145313,53.403586],[-6.145193,53.403584],[-6.144822,53.404166],[-6.144941,53.404199],[-6.144391,53.404929],[-6.144312,53.404912],[-6.14434,53.404873],[-6.144248,53.404855],[-6.144206,53.404895],[-6.14423,53.404943],[-6.144215,53.404982],[-6.144148,53.404997],[-6.144082,53.404996],[-6.144044,53.404956],[-6.144073,53.404892],[-6.144113,53.404885],[-6.144115,53.404853],[-6.144553,53.404241],[-6.142347,53.403643],[-6.141549,53.403344],[-6.140881,53.403747],[-6.140932,53.403795],[-6.140917,53.403835],[-6.140862,53.403874],[-6.14077,53.403856],[-6.140732,53.403808],[-6.1408,53.403762],[-6.140775,53.403737],[-6.14143,53.403327],[-6.141406,53.403279],[-6.14086,53.403008],[-6.140636,53.402252],[-6.139317,53.402049],[-6.138375,53.400881],[-6.138124,53.400784],[-6.137824,53.400715],[-6.137417,53.400655],[-6.137062,53.400629],[-6.136724,53.400613],[-6.136351,53.400596],[-6.136011,53.400612],[-6.135581,53.40068],[-6.135059,53.4008],[-6.134367,53.40114],[-6.133931,53.401346],[-6.133406,53.40153],[-6.131575,53.40202],[-6.131502,53.402061],[-6.131447,53.402094],[-6.131374,53.402152],[-6.131332,53.402206],[-6.131483,53.402601],[-6.13158,53.402743],[-6.131443,53.402772],[-6.131311,53.402619],[-6.131259,53.402558]]],[[[-6.138382,53.403894],[-6.138582,53.403728],[-6.138779,53.403646],[-6.138975,53.403595],[-6.139443,53.40351],[-6.139849,53.40367],[-6.140286,53.403993],[-6.141203,53.404563],[-6.14155,53.404884],[-6.141964,53.405168],[-6.142658,53.405526],[-6.142783,53.405613],[-6.143186,53.405827],[-6.143294,53.406021],[-6.143288,53.406168],[-6.143282,53.406291],[-6.143186,53.406421],[-6.14295,53.40651],[-6.142649,53.406605],[-6.142231,53.406737],[-6.141941,53.406872],[-6.141769,53.406969],[-6.141638,53.407013],[-6.141444,53.407026],[-6.141212,53.407022],[-6.140774,53.407015],[-6.140544,53.406958],[-6.140377,53.40694],[-6.140262,53.406907],[-6.140202,53.406821],[-6.139937,53.406686],[-6.139662,53.406489],[-6.139234,53.406236],[-6.138909,53.405999],[-6.138728,53.405719],[-6.13855,53.405346],[-6.138427,53.404913],[-6.138362,53.404642],[-6.138381,53.404488],[-6.138374,53.404071],[-6.138382,53.403894]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"240","4_bed":"35","app_date":"11/08/2009","stroke":"#ed3a26","no_of_units":"478","1_bed":"48","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of 478 residential units, comprising 35 no. 4 bedroomed semi-detached 2-storey and 3-storey terraced houses; 27 no. 3 bedroomed 2-storey semi detached and terraced houses; and 40 no. 2 be","reg_date":"","3_bed":"155","5_plus":"","reg_ref":"F03A/1162/E2","fg_date":"","other_total":"478"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.068862,53.387792],[-6.068858,53.387791],[-6.068891,53.387734],[-6.0689,53.387719],[-6.068944,53.387636],[-6.06904,53.387673],[-6.069073,53.387686],[-6.069123,53.387704],[-6.06918,53.387725],[-6.069178,53.387729],[-6.069176,53.387735],[-6.06917,53.387752],[-6.069169,53.387756],[-6.069169,53.387758],[-6.06916,53.387756],[-6.069109,53.387837],[-6.069096,53.387835],[-6.069083,53.387832],[-6.068878,53.387795],[-6.068871,53.387793],[-6.068862,53.387792]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"1","4_bed":"","app_date":"01/09/2009","stroke":"#ed3a26","no_of_units":"3","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"2 no. three bedroom & 1 no. two bedroom duplex residential units (393 sq.m.) on Porto Fino site between 53 Church Street/Harbour Road, Howth, Co Dublin (An Architectural Conservation Area). The devel","reg_date":"","3_bed":"2","5_plus":"","reg_ref":"F09A/0289","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.103623,53.386776],[-6.103569,53.386807],[-6.103377,53.386919],[-6.103237,53.386999],[-6.10311,53.387141],[-6.102967,53.387308],[-6.102955,53.387322],[-6.102895,53.387391],[-6.102884,53.38739],[-6.102564,53.38769],[-6.102354,53.387918],[-6.102179,53.388098],[-6.102167,53.388099],[-6.102154,53.3881],[-6.102109,53.3881],[-6.102,53.388104],[-6.101923,53.388107],[-6.101889,53.388108],[-6.101847,53.38811],[-6.101688,53.388116],[-6.101533,53.388122],[-6.101377,53.388127],[-6.101223,53.388133],[-6.101085,53.388138],[-6.101051,53.38814],[-6.10094,53.388144],[-6.100916,53.388145],[-6.100872,53.388146],[-6.100795,53.388149],[-6.100704,53.388153],[-6.100739,53.388046],[-6.100821,53.387831],[-6.100828,53.387812],[-6.100834,53.387795],[-6.100939,53.387535],[-6.101018,53.387324],[-6.101359,53.387383],[-6.101603,53.386794],[-6.102599,53.387183],[-6.103226,53.386589],[-6.103229,53.386589],[-6.10327,53.386607],[-6.103331,53.38663],[-6.103544,53.386732],[-6.103547,53.38673],[-6.103612,53.386758],[-6.103623,53.386776]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"68","4_bed":"2","app_date":"28/10/2009","stroke":"#ed3a26","no_of_units":"99","1_bed":"11","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development of 99 no. dwelling units and a creche on lands that formerly formed part of the curtilage of the Santa Sabina. The development will comprise the construction of:- Block A","reg_date":"","3_bed":"9","5_plus":"9","reg_ref":"F09A/0168","fg_date":"","other_total":"99"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.104683,53.526218],[-6.104669,53.526254],[-6.10464,53.526331],[-6.104605,53.52642],[-6.104572,53.526483],[-6.104548,53.526541],[-6.104523,53.526609],[-6.104467,53.526746],[-6.104418,53.526864],[-6.104376,53.526958],[-6.104362,53.526991],[-6.104352,53.527033],[-6.104336,53.527117],[-6.104321,53.527185],[-6.104316,53.527217],[-6.104314,53.52728],[-6.104308,53.527348],[-6.1043,53.52743],[-6.104291,53.527499],[-6.104284,53.527571],[-6.104281,53.527607],[-6.104256,53.527704],[-6.10425,53.527728],[-6.104229,53.527806],[-6.104212,53.52787],[-6.10421,53.52788],[-6.104207,53.527883],[-6.104203,53.527886],[-6.104196,53.527891],[-6.104193,53.527893],[-6.104187,53.527895],[-6.104181,53.527897],[-6.104172,53.527898],[-6.104161,53.527899],[-6.104128,53.527898],[-6.104093,53.527895],[-6.104057,53.527891],[-6.104011,53.527882],[-6.103876,53.527856],[-6.103696,53.527818],[-6.103634,53.527805],[-6.103587,53.527795],[-6.103569,53.527791],[-6.10356,53.527787],[-6.103544,53.527779],[-6.103508,53.527745],[-6.103472,53.527712],[-6.103453,53.527691],[-6.103449,53.52769],[-6.103227,53.527703],[-6.102982,53.527721],[-6.102827,53.527731],[-6.102689,53.527739],[-6.102666,53.527741],[-6.102591,53.527437],[-6.102591,53.52732],[-6.102588,53.527217],[-6.102584,53.527092],[-6.10258,53.526964],[-6.102579,53.526943],[-6.102577,53.526916],[-6.102574,53.526854],[-6.102571,53.526737],[-6.102566,53.526632],[-6.102565,53.526557],[-6.102562,53.526509],[-6.102562,53.526499],[-6.102568,53.526471],[-6.102579,53.526443],[-6.102589,53.526421],[-6.102601,53.526401],[-6.102851,53.526405],[-6.103174,53.526412],[-6.103459,53.526417],[-6.103571,53.526419],[-6.103554,53.525537],[-6.10355,53.52551],[-6.102886,53.525476],[-6.102848,53.525465],[-6.102626,53.525408],[-6.102639,53.525385],[-6.102757,53.525207],[-6.102831,53.525225],[-6.102963,53.525257],[-6.103069,53.525283],[-6.103271,53.525323],[-6.103271,53.525323],[-6.103448,53.525347],[-6.103464,53.525349],[-6.10362,53.525366],[-6.103673,53.525372],[-6.103815,53.52538],[-6.103945,53.525385],[-6.104002,53.525387],[-6.104023,53.525388],[-6.104044,53.525389],[-6.104481,53.525405],[-6.104633,53.525413],[-6.104774,53.525423],[-6.104923,53.525435],[-6.104932,53.525436],[-6.104988,53.525441],[-6.104979,53.525475],[-6.104978,53.525483],[-6.104975,53.525489],[-6.104973,53.525498],[-6.104866,53.52581],[-6.104694,53.526197],[-6.104683,53.526218]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"10","4_bed":"","app_date":"06/10/2009","stroke":"#ed3a26","no_of_units":"34","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The revisions to previously approved planning permission Reg. Ref. F06A/0945, F07A/1374, F07A/0838 and F08A/0167 for residential development. Revisions include replacing 34 no. units (approved number","reg_date":"","3_bed":"18","5_plus":"","reg_ref":"F09A/0518","fg_date":"","other_total":"28"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.104683,53.526218],[-6.104669,53.526254],[-6.10464,53.526331],[-6.104605,53.52642],[-6.104572,53.526483],[-6.104548,53.526541],[-6.104523,53.526609],[-6.104467,53.526746],[-6.104418,53.526864],[-6.104376,53.526958],[-6.104362,53.526991],[-6.104352,53.527033],[-6.104336,53.527117],[-6.104321,53.527185],[-6.104316,53.527217],[-6.104314,53.52728],[-6.104308,53.527348],[-6.1043,53.52743],[-6.104291,53.527499],[-6.104284,53.527571],[-6.104281,53.527607],[-6.104256,53.527704],[-6.10425,53.527728],[-6.104229,53.527806],[-6.104212,53.52787],[-6.10421,53.52788],[-6.104207,53.527883],[-6.104203,53.527886],[-6.104196,53.527891],[-6.104193,53.527893],[-6.104187,53.527895],[-6.104181,53.527897],[-6.104172,53.527898],[-6.104161,53.527899],[-6.104128,53.527898],[-6.104093,53.527895],[-6.104057,53.527891],[-6.104011,53.527882],[-6.103876,53.527856],[-6.103696,53.527818],[-6.103634,53.527805],[-6.103587,53.527795],[-6.103569,53.527791],[-6.10356,53.527787],[-6.103544,53.527779],[-6.103508,53.527745],[-6.103472,53.527712],[-6.103453,53.527691],[-6.103449,53.52769],[-6.103227,53.527703],[-6.102982,53.527721],[-6.102827,53.527731],[-6.102689,53.527739],[-6.102666,53.527741],[-6.102591,53.527437],[-6.102591,53.52732],[-6.102588,53.527217],[-6.102584,53.527092],[-6.10258,53.526964],[-6.102579,53.526943],[-6.102577,53.526916],[-6.102574,53.526854],[-6.102571,53.526737],[-6.102566,53.526632],[-6.102565,53.526557],[-6.102562,53.526509],[-6.102562,53.526499],[-6.102568,53.526471],[-6.102579,53.526443],[-6.102589,53.526421],[-6.102601,53.526401],[-6.102851,53.526405],[-6.103174,53.526412],[-6.103459,53.526417],[-6.103571,53.526419],[-6.103554,53.525537],[-6.10355,53.52551],[-6.102886,53.525476],[-6.102848,53.525465],[-6.102626,53.525408],[-6.102639,53.525385],[-6.102757,53.525207],[-6.102831,53.525225],[-6.102963,53.525257],[-6.103069,53.525283],[-6.103271,53.525323],[-6.103271,53.525323],[-6.103448,53.525347],[-6.103464,53.525349],[-6.10362,53.525366],[-6.103673,53.525372],[-6.103815,53.52538],[-6.103945,53.525385],[-6.104002,53.525387],[-6.104023,53.525388],[-6.104044,53.525389],[-6.104481,53.525405],[-6.104633,53.525413],[-6.104774,53.525423],[-6.104923,53.525435],[-6.104932,53.525436],[-6.104988,53.525441],[-6.104979,53.525475],[-6.104978,53.525483],[-6.104975,53.525489],[-6.104973,53.525498],[-6.104866,53.52581],[-6.104694,53.526197],[-6.104683,53.526218]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"10","4_bed":"","app_date":"06/10/2009","stroke":"#ed3a26","no_of_units":"34","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The revisions to previously approved planning permission Reg. Ref. F06A/0945, F07A/1374, F07A/0838 and F08A/0167 for residential development. Revisions include replacing 34 no. units (approved number","reg_date":"","3_bed":"18","5_plus":"","reg_ref":"F09A/0518","fg_date":"","other_total":"28"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.172577,53.424721],[-6.173049,53.424793],[-6.173077,53.424797],[-6.172996,53.424898],[-6.172993,53.424903],[-6.172985,53.424913],[-6.172969,53.424934],[-6.172954,53.424955],[-6.172943,53.424974],[-6.172929,53.424994],[-6.172877,53.425072],[-6.172875,53.425079],[-6.172804,53.425192],[-6.172793,53.42521],[-6.172665,53.425199],[-6.172315,53.425426],[-6.172304,53.425433],[-6.17226,53.425462],[-6.172424,53.425549],[-6.172305,53.42561],[-6.17213,53.425645],[-6.172145,53.425741],[-6.172114,53.42576],[-6.171857,53.425761],[-6.171849,53.425719],[-6.171476,53.42572],[-6.171389,53.425722],[-6.171105,53.425735],[-6.170961,53.425744],[-6.170703,53.425761],[-6.170595,53.42577],[-6.170504,53.425781],[-6.170427,53.425793],[-6.170321,53.425815],[-6.170292,53.425822],[-6.170253,53.425828],[-6.170224,53.425835],[-6.170202,53.425842],[-6.170175,53.425851],[-6.170158,53.425856],[-6.170136,53.425863],[-6.170118,53.425868],[-6.170089,53.425879],[-6.170066,53.425886],[-6.170051,53.425891],[-6.170023,53.425902],[-6.169996,53.425913],[-6.169968,53.425926],[-6.169915,53.425952],[-6.169879,53.42597],[-6.169827,53.426002],[-6.169766,53.426044],[-6.169676,53.426112],[-6.169661,53.426135],[-6.169653,53.426145],[-6.169649,53.426149],[-6.169637,53.426162],[-6.169621,53.426179],[-6.1696,53.426206],[-6.169587,53.426229],[-6.169386,53.426586],[-6.16938,53.426592],[-6.169246,53.426747],[-6.169235,53.426759],[-6.169227,53.426768],[-6.169033,53.426986],[-6.169005,53.427024],[-6.168828,53.427139],[-6.168777,53.427185],[-6.168759,53.427204],[-6.16875,53.427212],[-6.168743,53.427219],[-6.168737,53.427224],[-6.168733,53.427227],[-6.168728,53.427231],[-6.168724,53.427239],[-6.16872,53.427251],[-6.168635,53.427341],[-6.168627,53.427344],[-6.168539,53.427493],[-6.168484,53.427646],[-6.168473,53.427754],[-6.168462,53.427779],[-6.168456,53.427802],[-6.168448,53.427829],[-6.168443,53.427883],[-6.168442,53.427902],[-6.168442,53.428017],[-6.168426,53.428168],[-6.168422,53.42822],[-6.168419,53.428263],[-6.168413,53.428334],[-6.168412,53.428372],[-6.168412,53.428393],[-6.168396,53.42852],[-6.168243,53.428516],[-6.168256,53.428387],[-6.168291,53.428078],[-6.168294,53.428047],[-6.168329,53.427739],[-6.168339,53.427659],[-6.168352,53.427484],[-6.168386,53.427293],[-6.168394,53.427278],[-6.168408,53.42726],[-6.16842,53.427241],[-6.168429,53.427229],[-6.168448,53.427213],[-6.168486,53.427189],[-6.168515,53.42717],[-6.168561,53.427151],[-6.168632,53.427125],[-6.168682,53.427109],[-6.168727,53.427092],[-6.16876,53.427076],[-6.168795,53.427056],[-6.168818,53.427039],[-6.168864,53.426995],[-6.168999,53.426833],[-6.169187,53.426613],[-6.169272,53.426478],[-6.16929,53.426449],[-6.169299,53.426436],[-6.16939,53.426287],[-6.169456,53.426177],[-6.169466,53.426162],[-6.169524,53.426121],[-6.169528,53.426119],[-6.16954,53.426113],[-6.169897,53.425862],[-6.169903,53.425855],[-6.169904,53.42585],[-6.170088,53.425716],[-6.169833,53.42561],[-6.169556,53.425445],[-6.169324,53.425358],[-6.169152,53.425258],[-6.169183,53.425215],[-6.169214,53.425145],[-6.169301,53.425014],[-6.169317,53.424993],[-6.169219,53.424957],[-6.169154,53.424923],[-6.169079,53.424901],[-6.169132,53.424757],[-6.16915,53.42471],[-6.169296,53.424319],[-6.169359,53.424326],[-6.169658,53.424367],[-6.169684,53.424313],[-6.170249,53.424394],[-6.171228,53.424531],[-6.171919,53.424629],[-6.172577,53.424721]]],[[[-6.167665,53.435291],[-6.168085,53.435322],[-6.168735,53.435368],[-6.169387,53.435414],[-6.169399,53.43535],[-6.169455,53.435343],[-6.169479,53.435295],[-6.169652,53.435298],[-6.169659,53.435425],[-6.169469,53.43542],[-6.169473,53.435393],[-6.169463,53.435393],[-6.169455,53.435455],[-6.169447,53.435455],[-6.169432,53.435453],[-6.169204,53.435439],[-6.169185,53.435438],[-6.169142,53.435435],[-6.168846,53.435413],[-6.168738,53.435405],[-6.168543,53.435391],[-6.1683,53.435374],[-6.168118,53.43536],[-6.167973,53.43535],[-6.167919,53.435346],[-6.167785,53.435338],[-6.167654,53.435327],[-6.167022,53.435285],[-6.166879,53.435274],[-6.166854,53.435373],[-6.16679,53.435649],[-6.166786,53.435709],[-6.166743,53.435933],[-6.166653,53.436232],[-6.166647,53.43625],[-6.166576,53.436486],[-6.166499,53.437125],[-6.166496,53.437151],[-6.166487,53.437222],[-6.166433,53.437942],[-6.16643,53.437981],[-6.166355,53.438974],[-6.166302,53.439488],[-6.166297,53.439517],[-6.166954,53.439381],[-6.167013,53.439368],[-6.167515,53.439265],[-6.167977,53.439179],[-6.168131,53.43915],[-6.169882,53.438871],[-6.17003,53.438854],[-6.170062,53.438853],[-6.170101,53.438851],[-6.170188,53.438847],[-6.170327,53.438841],[-6.170509,53.438849],[-6.170726,53.438873],[-6.170796,53.43888],[-6.171164,53.438921],[-6.171667,53.438987],[-6.172038,53.439023],[-6.172475,53.439069],[-6.172966,53.439127],[-6.173368,53.439168],[-6.173732,53.439203],[-6.173794,53.439213],[-6.173878,53.439226],[-6.174063,53.439267],[-6.174252,53.43934],[-6.174273,53.439349],[-6.174656,53.439499],[-6.175045,53.439665],[-6.175379,53.439807],[-6.175747,53.439957],[-6.175789,53.439973],[-6.175825,53.439988],[-6.176033,53.440073],[-6.176236,53.440161],[-6.176451,53.440247],[-6.176626,53.440323],[-6.176627,53.440358],[-6.176484,53.440552],[-6.176407,53.440588],[-6.176299,53.440738],[-6.176023,53.441093],[-6.175952,53.441175],[-6.175894,53.441213],[-6.175633,53.441388],[-6.175406,53.441535],[-6.175254,53.441638],[-6.175224,53.441658],[-6.175197,53.441677],[-6.175157,53.441704],[-6.175106,53.441733],[-6.175021,53.441797],[-6.174914,53.441876],[-6.174811,53.441979],[-6.174788,53.442007],[-6.174725,53.442084],[-6.174635,53.442221],[-6.174536,53.442365],[-6.174526,53.442379],[-6.174509,53.442404],[-6.174451,53.442483],[-6.17444,53.4425],[-6.174415,53.442532],[-6.174387,53.442574],[-6.174372,53.442596],[-6.174349,53.442631],[-6.174253,53.442777],[-6.174112,53.442984],[-6.174094,53.443029],[-6.174079,53.443069],[-6.174065,53.443104],[-6.174057,53.443123],[-6.174045,53.443142],[-6.174027,53.443167],[-6.174005,53.4432],[-6.173973,53.443246],[-6.173944,53.443284],[-6.1739,53.443342],[-6.173836,53.443429],[-6.173828,53.443438],[-6.173802,53.443475],[-6.173718,53.443604],[-6.173679,53.443668],[-6.173646,53.443723],[-6.173615,53.443777],[-6.173576,53.443851],[-6.173554,53.443909],[-6.173378,53.444288],[-6.173376,53.444294],[-6.173373,53.444304],[-6.173374,53.444311],[-6.173374,53.44436],[-6.173376,53.444462],[-6.173379,53.444589],[-6.173385,53.444658],[-6.17339,53.444757],[-6.1734,53.444758],[-6.173398,53.444777],[-6.173396,53.444864],[-6.173395,53.444929],[-6.173394,53.444999],[-6.17339,53.445151],[-6.173389,53.44517],[-6.173402,53.445244],[-6.173387,53.445248],[-6.173385,53.445255],[-6.173381,53.445271],[-6.173367,53.445318],[-6.173288,53.445429],[-6.173211,53.445514],[-6.173173,53.445558],[-6.173142,53.445604],[-6.173121,53.445622],[-6.173092,53.445652],[-6.173046,53.445715],[-6.173035,53.44573],[-6.172972,53.445829],[-6.172917,53.445897],[-6.17418,53.446331],[-6.174132,53.446377],[-6.174106,53.446368],[-6.174072,53.446356],[-6.173799,53.446264],[-6.173776,53.446256],[-6.173692,53.446228],[-6.173565,53.446185],[-6.173558,53.446183],[-6.173432,53.44614],[-6.173372,53.44612],[-6.173339,53.446109],[-6.173295,53.446097],[-6.173262,53.446088],[-6.173227,53.446078],[-6.173158,53.446055],[-6.172777,53.445932],[-6.173207,53.44541],[-6.173277,53.445321],[-6.173299,53.445265],[-6.173309,53.445223],[-6.173316,53.445172],[-6.173311,53.444891],[-6.173307,53.444805],[-6.173299,53.444587],[-6.173294,53.444524],[-6.173291,53.444421],[-6.173305,53.444266],[-6.173317,53.444201],[-6.173331,53.444141],[-6.173354,53.444073],[-6.173402,53.443952],[-6.173448,53.443858],[-6.173501,53.443758],[-6.173551,53.443669],[-6.173578,53.443624],[-6.173615,53.443567],[-6.173655,53.443496],[-6.173714,53.443404],[-6.173821,53.443256],[-6.173887,53.443163],[-6.173914,53.443121],[-6.173997,53.442955],[-6.174202,53.442627],[-6.174377,53.442354],[-6.174391,53.442331],[-6.174409,53.442303],[-6.174554,53.442065],[-6.174721,53.441889],[-6.175115,53.441583],[-6.17544,53.441383],[-6.175717,53.441216],[-6.175757,53.441187],[-6.17578,53.441171],[-6.175824,53.44114],[-6.175919,53.441055],[-6.176053,53.44089],[-6.176468,53.440362],[-6.176486,53.440341],[-6.176066,53.440157],[-6.173941,53.43929],[-6.173823,53.439268],[-6.173796,53.439264],[-6.173691,53.439254],[-6.173419,53.439223],[-6.172988,53.439177],[-6.172573,53.439129],[-6.17226,53.439092],[-6.171908,53.439053],[-6.171608,53.43902],[-6.171295,53.438985],[-6.170978,53.438948],[-6.170685,53.438915],[-6.17053,53.438894],[-6.170417,53.438891],[-6.170272,53.438887],[-6.170192,53.438888],[-6.170117,53.438897],[-6.170097,53.438899],[-6.170079,53.438901],[-6.169985,53.438905],[-6.169857,53.438923],[-6.169551,53.438971],[-6.169056,53.439049],[-6.168807,53.439089],[-6.168527,53.439133],[-6.168435,53.43915],[-6.168284,53.439179],[-6.167873,53.439256],[-6.167448,53.439338],[-6.167143,53.439401],[-6.166738,53.439479],[-6.166355,53.439555],[-6.166242,53.439578],[-6.166251,53.439454],[-6.166238,53.439381],[-6.166289,53.438502],[-6.166292,53.438454],[-6.166321,53.438092],[-6.166324,53.438057],[-6.166327,53.43802],[-6.166331,53.437978],[-6.166346,53.437791],[-6.166355,53.437701],[-6.166355,53.437629],[-6.16639,53.437592],[-6.166408,53.437312],[-6.166419,53.437152],[-6.166418,53.437113],[-6.166441,53.437025],[-6.166454,53.436925],[-6.166486,53.436718],[-6.166487,53.43671],[-6.16649,53.436692],[-6.166495,53.436658],[-6.166517,53.436516],[-6.166523,53.43648],[-6.166534,53.436437],[-6.166552,53.436371],[-6.166569,53.43628],[-6.166569,53.43628],[-6.166579,53.436242],[-6.166621,53.436006],[-6.166652,53.435868],[-6.166837,53.435235],[-6.167414,53.435272],[-6.167583,53.435283],[-6.167665,53.435291]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"8","app_date":"21/08/2009","stroke":"#ed3a26","no_of_units":"38","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development at Chapel Road (Kinsealy LAP, Character Area 3). The application provides for 38 no. two storey dwellings (8 no. 4-bedroom and 30 no. 3-bedroom units), a playground, landsca","reg_date":"","3_bed":"30","5_plus":"","reg_ref":"F09A/0436","fg_date":"","other_total":"38"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.199695,53.439142],[-6.199649,53.438926],[-6.201984,53.438246],[-6.202148,53.438424],[-6.199695,53.439142]]],[[[-6.194521,53.442435],[-6.194465,53.442368],[-6.194329,53.442199],[-6.194046,53.441637],[-6.194157,53.441603],[-6.195715,53.441646],[-6.19577,53.441688],[-6.195777,53.441782],[-6.195869,53.441809],[-6.195862,53.442121],[-6.195827,53.442321],[-6.195144,53.442377],[-6.194718,53.442417],[-6.194521,53.442435]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"39","4_bed":"2","app_date":"08/09/2010","stroke":"#ed3a26","no_of_units":"62","1_bed":"11","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Development of lands at Drinan, Kinsealy, Co. Dublin bounded by Kettles Lane and Feltrim Road, providing for a total of 62 residential units comprising 2 no. 2 and a half storey four-bedroom terraced ","reg_date":"","3_bed":"10","5_plus":"","reg_ref":"F04A/1850/E1","fg_date":"","other_total":"62"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.103623,53.386776],[-6.103569,53.386807],[-6.103377,53.386919],[-6.103237,53.386999],[-6.10311,53.387141],[-6.102967,53.387308],[-6.102955,53.387322],[-6.102895,53.387391],[-6.102884,53.38739],[-6.102564,53.38769],[-6.102354,53.387918],[-6.102179,53.388098],[-6.102167,53.388099],[-6.102154,53.3881],[-6.102109,53.3881],[-6.102,53.388104],[-6.101923,53.388107],[-6.101889,53.388108],[-6.101847,53.38811],[-6.101688,53.388116],[-6.101533,53.388122],[-6.101377,53.388127],[-6.101223,53.388133],[-6.101085,53.388138],[-6.101051,53.38814],[-6.10094,53.388144],[-6.100916,53.388145],[-6.100872,53.388146],[-6.100795,53.388149],[-6.100704,53.388153],[-6.100739,53.388046],[-6.100821,53.387831],[-6.100828,53.387812],[-6.100834,53.387795],[-6.100939,53.387535],[-6.101018,53.387324],[-6.101359,53.387383],[-6.101603,53.386794],[-6.102599,53.387183],[-6.103226,53.386589],[-6.103229,53.386589],[-6.10327,53.386607],[-6.103331,53.38663],[-6.103544,53.386732],[-6.103547,53.38673],[-6.103612,53.386758],[-6.103623,53.386776]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"68","4_bed":"2","app_date":"28/10/2009","stroke":"#ed3a26","no_of_units":"99","1_bed":"11","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development of 99 no. dwelling units and a creche on lands that formerly formed part of the curtilage of the Santa Sabina. The development will comprise the construction of:- Block A","reg_date":"","3_bed":"9","5_plus":"9","reg_ref":"F09A/0168","fg_date":"","other_total":"99"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.17208,53.530086],[-6.172119,53.530103],[-6.172337,53.5302],[-6.172458,53.530264],[-6.172456,53.530289],[-6.172455,53.530306],[-6.172454,53.530313],[-6.17245,53.530358],[-6.17245,53.53036],[-6.17244,53.530469],[-6.172356,53.530466],[-6.172347,53.530556],[-6.172291,53.530816],[-6.172182,53.530815],[-6.172182,53.530833],[-6.172173,53.530868],[-6.172144,53.530979],[-6.171713,53.530948],[-6.171749,53.530812],[-6.171754,53.530793],[-6.171765,53.53075],[-6.171782,53.530688],[-6.17182,53.53055],[-6.171828,53.530514],[-6.171833,53.530484],[-6.171933,53.530491],[-6.171937,53.530471],[-6.171944,53.530436],[-6.171976,53.530438],[-6.171977,53.530434],[-6.171979,53.530423],[-6.171987,53.530381],[-6.171994,53.53035],[-6.171991,53.530334],[-6.171983,53.530233],[-6.171986,53.530194],[-6.172024,53.530143],[-6.17207,53.530092],[-6.17208,53.530086]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"28/06/2010","stroke":"#ed3a26","no_of_units":"3","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Retention of conversion of existing farm outbuilding to residential (3 no. one bedroom cottages) along with associated siteworks including car-parking, bin storage and open-space/recreation area.","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F10A/0249","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.209684,53.450246],[-6.20967,53.45028],[-6.209486,53.45079],[-6.209184,53.450758],[-6.20917,53.450959],[-6.209187,53.450976],[-6.20921,53.451009],[-6.209221,53.451069],[-6.209203,53.451126],[-6.209112,53.451214],[-6.209076,53.451265],[-6.2091,53.451288],[-6.209188,53.451322],[-6.209173,53.451332],[-6.2088,53.45119],[-6.208967,53.451032],[-6.208813,53.450582],[-6.208804,53.450582],[-6.208655,53.450105],[-6.209165,53.45018],[-6.209684,53.450246]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"3","4_bed":"","app_date":"04/07/2014","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development comprising the construction of 13 no. two storey and two and a half storey houses (9 no. 3 bedroom, 4 no. 2 bedroom). The development also includes the demolition of a habit","reg_date":"","3_bed":"9","5_plus":"","reg_ref":"F08A/1302/E1","fg_date":"","other_total":"12"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.086469,53.524535],[-6.086475,53.524478],[-6.086481,53.524367],[-6.086482,53.524355],[-6.086494,53.524092],[-6.086497,53.523998],[-6.086502,53.523824],[-6.086505,53.523728],[-6.086743,53.523734],[-6.086755,53.523735],[-6.086791,53.523744],[-6.086795,53.523744],[-6.086852,53.523744],[-6.087127,53.523744],[-6.087255,53.523744],[-6.087276,53.523914],[-6.087283,53.52397],[-6.08735,53.524501],[-6.087352,53.524514],[-6.087353,53.524522],[-6.087353,53.524529],[-6.087354,53.524535],[-6.087337,53.524551],[-6.087319,53.524555],[-6.087279,53.524565],[-6.08725,53.524572],[-6.087194,53.524586],[-6.087186,53.524587],[-6.087173,53.524591],[-6.087152,53.524597],[-6.087139,53.524608],[-6.087137,53.524614],[-6.087134,53.524616],[-6.087118,53.524618],[-6.087096,53.524621],[-6.08708,53.524611],[-6.087068,53.52461],[-6.087014,53.524601],[-6.086996,53.524599],[-6.086929,53.524594],[-6.086815,53.524577],[-6.086672,53.52456],[-6.086638,53.524556],[-6.086475,53.524536],[-6.086469,53.524535]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"30/11/2010","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development consisting of 13 no. two storey 5 bedroom detached dwellings with attic floor area, velux roof windows and dormer window (total floor area of 2,803.61 sq.m.), new vehicular ent","reg_date":"","3_bed":"","5_plus":"13","reg_ref":"F05A/1708/E1","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.185289,53.451958],[-6.1853,53.451915],[-6.18532,53.451844],[-6.185345,53.451752],[-6.185401,53.45156],[-6.185433,53.45144],[-6.185436,53.451429],[-6.185445,53.451394],[-6.185453,53.451374],[-6.185489,53.451305],[-6.185493,53.451298],[-6.185535,53.451217],[-6.185619,53.45122],[-6.185685,53.45121],[-6.185805,53.451197],[-6.185989,53.451209],[-6.185989,53.451209],[-6.186,53.451207],[-6.186029,53.451202],[-6.186051,53.451179],[-6.186105,53.451123],[-6.186139,53.451089],[-6.186196,53.45103],[-6.186243,53.450983],[-6.186269,53.450956],[-6.186291,53.450934],[-6.186293,53.450931],[-6.186304,53.45092],[-6.186471,53.450752],[-6.186655,53.450566],[-6.186745,53.450594],[-6.186977,53.450672],[-6.186975,53.450673],[-6.186941,53.450697],[-6.186935,53.450701],[-6.18691,53.450719],[-6.186887,53.450735],[-6.186849,53.450764],[-6.186826,53.450782],[-6.186801,53.450801],[-6.186791,53.450826],[-6.18678,53.450855],[-6.186756,53.450917],[-6.186714,53.451043],[-6.186708,53.451064],[-6.186696,53.451092],[-6.186671,53.451153],[-6.186657,53.451202],[-6.186654,53.451212],[-6.186654,53.451212],[-6.186651,53.45122],[-6.186635,53.451237],[-6.186589,53.451285],[-6.186583,53.45129],[-6.186575,53.451292],[-6.186553,53.451296],[-6.186481,53.451306],[-6.186481,53.451306],[-6.186435,53.4513],[-6.186332,53.451287],[-6.186295,53.451282],[-6.186266,53.451309],[-6.18621,53.451463],[-6.186211,53.451461],[-6.186184,53.451535],[-6.186168,53.451577],[-6.186161,53.451598],[-6.186149,53.45163],[-6.186149,53.45163],[-6.186156,53.45163],[-6.186161,53.451631],[-6.186153,53.45167],[-6.186148,53.451693],[-6.186145,53.451709],[-6.186142,53.451723],[-6.186137,53.451752],[-6.186132,53.451778],[-6.18613,53.451788],[-6.186129,53.451791],[-6.186128,53.451795],[-6.186127,53.451797],[-6.186126,53.451801],[-6.186127,53.451807],[-6.186128,53.451807],[-6.186125,53.451821],[-6.186123,53.451839],[-6.186122,53.451848],[-6.186122,53.451851],[-6.186121,53.451854],[-6.186121,53.451858],[-6.18612,53.451863],[-6.186119,53.451866],[-6.186117,53.45187],[-6.186093,53.451925],[-6.186092,53.45193],[-6.186073,53.452005],[-6.186062,53.452048],[-6.186054,53.452077],[-6.186045,53.452116],[-6.186044,53.452115],[-6.185997,53.452111],[-6.18591,53.452102],[-6.185864,53.452097],[-6.185809,53.452091],[-6.18579,53.45209],[-6.185789,53.45209],[-6.185755,53.452084],[-6.185688,53.452074],[-6.185654,53.452069],[-6.185434,53.452039],[-6.185415,53.452036],[-6.185407,53.452036],[-6.185396,53.452034],[-6.185393,53.452033],[-6.18539,53.452032],[-6.185387,53.452031],[-6.185386,53.452031],[-6.18535,53.452018],[-6.185335,53.452012],[-6.18528,53.451992],[-6.185289,53.451958]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"5","app_date":"18/12/2009","stroke":"#ed3a26","no_of_units":"20","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development on a site of c.1.78 acres (c.0.72 hectares). The development will include the construction of 20 no. two storey 3 and 4 bedroom houses and will consist of 1 no. 3 bedroom de","reg_date":"","3_bed":"15","5_plus":"","reg_ref":"F09A/0478","fg_date":"","other_total":"20"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.17208,53.530086],[-6.172119,53.530103],[-6.172337,53.5302],[-6.172458,53.530264],[-6.172456,53.530289],[-6.172455,53.530306],[-6.172454,53.530313],[-6.17245,53.530358],[-6.17245,53.53036],[-6.17244,53.530469],[-6.172356,53.530466],[-6.172347,53.530556],[-6.172291,53.530816],[-6.172182,53.530815],[-6.172182,53.530833],[-6.172173,53.530868],[-6.172144,53.530979],[-6.171713,53.530948],[-6.171749,53.530812],[-6.171754,53.530793],[-6.171765,53.53075],[-6.171782,53.530688],[-6.17182,53.53055],[-6.171828,53.530514],[-6.171833,53.530484],[-6.171933,53.530491],[-6.171937,53.530471],[-6.171944,53.530436],[-6.171976,53.530438],[-6.171977,53.530434],[-6.171979,53.530423],[-6.171987,53.530381],[-6.171994,53.53035],[-6.171991,53.530334],[-6.171983,53.530233],[-6.171986,53.530194],[-6.172024,53.530143],[-6.17207,53.530092],[-6.17208,53.530086]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"28/06/2010","stroke":"#ed3a26","no_of_units":"3","1_bed":"3","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Retention of conversion of existing farm outbuilding to residential (3 no. one bedroom cottages) along with associated siteworks including car-parking, bin storage and open-space/recreation area.","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F10A/0249","fg_date":"","other_total":"3"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.434314,53.389571],[-6.432939,53.390174],[-6.432182,53.389774],[-6.432689,53.389585],[-6.43344,53.389286],[-6.43363,53.389346],[-6.434314,53.389571]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"02/11/2010","stroke":"#ed3a26","no_of_units":"26","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Planning permission for a residential development consisting of 26 no. 3 bed 2 storey townhouses on a plot of 0.75 Hectares with access off the roundabout at Ongar Road East being a revision and a re","reg_date":"","3_bed":"26","5_plus":"","reg_ref":"FW10A/0171","fg_date":"","other_total":"26"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.486123,53.277247],[-6.486052,53.277189],[-6.485965,53.277135],[-6.485842,53.277076],[-6.485748,53.277035],[-6.485705,53.277012],[-6.485787,53.276965],[-6.485966,53.276897],[-6.486108,53.276832],[-6.486183,53.276811],[-6.486249,53.276808],[-6.486315,53.276817],[-6.486396,53.276827],[-6.486512,53.276877],[-6.486584,53.276926],[-6.486597,53.276953],[-6.486123,53.277247]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"02/09/2011","fill-opacity":0.5,"2_bed":"0","4_bed":"0","app_date":"13/07/2011","stroke":"#ed3a26","no_of_units":"4","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT PERMISSION","short_desc":"Revisions to permitted residential development (permission Reg. Reg. no. SD07A/0309) comprising change of house type and repositioning of 4 no. three bedroom semi-detached houses on sites 79-82 inclus","reg_date":"","3_bed":"4","5_plus":"0","reg_ref":"SD11A/0172","fg_date":"N/A","other_total":"4"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.185289,53.451958],[-6.1853,53.451915],[-6.18532,53.451844],[-6.185345,53.451752],[-6.185401,53.45156],[-6.185433,53.45144],[-6.185436,53.451429],[-6.185445,53.451394],[-6.185453,53.451374],[-6.185489,53.451305],[-6.185493,53.451298],[-6.185535,53.451217],[-6.185619,53.45122],[-6.185685,53.45121],[-6.185805,53.451197],[-6.185989,53.451209],[-6.185989,53.451209],[-6.186,53.451207],[-6.186029,53.451202],[-6.186051,53.451179],[-6.186105,53.451123],[-6.186139,53.451089],[-6.186196,53.45103],[-6.186243,53.450983],[-6.186269,53.450956],[-6.186291,53.450934],[-6.186293,53.450931],[-6.186304,53.45092],[-6.186471,53.450752],[-6.186655,53.450566],[-6.186745,53.450594],[-6.186977,53.450672],[-6.186975,53.450673],[-6.186941,53.450697],[-6.186935,53.450701],[-6.18691,53.450719],[-6.186887,53.450735],[-6.186849,53.450764],[-6.186826,53.450782],[-6.186801,53.450801],[-6.186791,53.450826],[-6.18678,53.450855],[-6.186756,53.450917],[-6.186714,53.451043],[-6.186708,53.451064],[-6.186696,53.451092],[-6.186671,53.451153],[-6.186657,53.451202],[-6.186654,53.451212],[-6.186654,53.451212],[-6.186651,53.45122],[-6.186635,53.451237],[-6.186589,53.451285],[-6.186583,53.45129],[-6.186575,53.451292],[-6.186553,53.451296],[-6.186481,53.451306],[-6.186481,53.451306],[-6.186435,53.4513],[-6.186332,53.451287],[-6.186295,53.451282],[-6.186266,53.451309],[-6.18621,53.451463],[-6.186211,53.451461],[-6.186184,53.451535],[-6.186168,53.451577],[-6.186161,53.451598],[-6.186149,53.45163],[-6.186149,53.45163],[-6.186156,53.45163],[-6.186161,53.451631],[-6.186153,53.45167],[-6.186148,53.451693],[-6.186145,53.451709],[-6.186142,53.451723],[-6.186137,53.451752],[-6.186132,53.451778],[-6.18613,53.451788],[-6.186129,53.451791],[-6.186128,53.451795],[-6.186127,53.451797],[-6.186126,53.451801],[-6.186127,53.451807],[-6.186128,53.451807],[-6.186125,53.451821],[-6.186123,53.451839],[-6.186122,53.451848],[-6.186122,53.451851],[-6.186121,53.451854],[-6.186121,53.451858],[-6.18612,53.451863],[-6.186119,53.451866],[-6.186117,53.45187],[-6.186093,53.451925],[-6.186092,53.45193],[-6.186073,53.452005],[-6.186062,53.452048],[-6.186054,53.452077],[-6.186045,53.452116],[-6.186044,53.452115],[-6.185997,53.452111],[-6.18591,53.452102],[-6.185864,53.452097],[-6.185809,53.452091],[-6.18579,53.45209],[-6.185789,53.45209],[-6.185755,53.452084],[-6.185688,53.452074],[-6.185654,53.452069],[-6.185434,53.452039],[-6.185415,53.452036],[-6.185407,53.452036],[-6.185396,53.452034],[-6.185393,53.452033],[-6.18539,53.452032],[-6.185387,53.452031],[-6.185386,53.452031],[-6.18535,53.452018],[-6.185335,53.452012],[-6.18528,53.451992],[-6.185289,53.451958]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"5","app_date":"18/12/2009","stroke":"#ed3a26","no_of_units":"20","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development on a site of c.1.78 acres (c.0.72 hectares). The development will include the construction of 20 no. two storey 3 and 4 bedroom houses and will consist of 1 no. 3 bedroom de","reg_date":"","3_bed":"15","5_plus":"","reg_ref":"F09A/0478","fg_date":"","other_total":"20"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148315,53.443441],[-6.148442,53.443356],[-6.14805,53.443281],[-6.148072,53.44213],[-6.148337,53.442145],[-6.148644,53.44216],[-6.149068,53.442179],[-6.149072,53.442159],[-6.149348,53.442169],[-6.149679,53.442185],[-6.149977,53.4422],[-6.150637,53.442234],[-6.150634,53.442254],[-6.150626,53.44237],[-6.150621,53.442438],[-6.150623,53.442553],[-6.150625,53.442553],[-6.15068,53.443153],[-6.150282,53.443187],[-6.149512,53.443265],[-6.148854,53.443331],[-6.148577,53.443359],[-6.148514,53.443368],[-6.1485,53.44337],[-6.148521,53.443542],[-6.148464,53.443543],[-6.148456,53.443503],[-6.148445,53.443491],[-6.148433,53.443486],[-6.148416,53.443482],[-6.1484,53.443479],[-6.148376,53.443477],[-6.148356,53.443482],[-6.148332,53.443495],[-6.148298,53.443518],[-6.14824,53.443491],[-6.148285,53.443461],[-6.148315,53.443441]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"03/08/2011","stroke":"#ed3a26","no_of_units":"32","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development comprising 32 two-storey houses (total area - 6,758sq.m.) and associated open space, roads and infrastructure.","reg_date":"","3_bed":"32","5_plus":"","reg_ref":"F06A/0373/E1","fg_date":"","other_total":"32"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.086469,53.524535],[-6.086475,53.524478],[-6.086481,53.524367],[-6.086482,53.524355],[-6.086494,53.524092],[-6.086497,53.523998],[-6.086502,53.523824],[-6.086505,53.523728],[-6.086743,53.523734],[-6.086755,53.523735],[-6.086791,53.523744],[-6.086795,53.523744],[-6.086852,53.523744],[-6.087127,53.523744],[-6.087255,53.523744],[-6.087276,53.523914],[-6.087283,53.52397],[-6.08735,53.524501],[-6.087352,53.524514],[-6.087353,53.524522],[-6.087353,53.524529],[-6.087354,53.524535],[-6.087337,53.524551],[-6.087319,53.524555],[-6.087279,53.524565],[-6.08725,53.524572],[-6.087194,53.524586],[-6.087186,53.524587],[-6.087173,53.524591],[-6.087152,53.524597],[-6.087139,53.524608],[-6.087137,53.524614],[-6.087134,53.524616],[-6.087118,53.524618],[-6.087096,53.524621],[-6.08708,53.524611],[-6.087068,53.52461],[-6.087014,53.524601],[-6.086996,53.524599],[-6.086929,53.524594],[-6.086815,53.524577],[-6.086672,53.52456],[-6.086638,53.524556],[-6.086475,53.524536],[-6.086469,53.524535]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"30/11/2010","stroke":"#ed3a26","no_of_units":"13","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development consisting of 13 no. two storey 5 bedroom detached dwellings with attic floor area, velux roof windows and dormer window (total floor area of 2,803.61 sq.m.), new vehicular ent","reg_date":"","3_bed":"","5_plus":"13","reg_ref":"F05A/1708/E1","fg_date":"","other_total":"13"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.148315,53.443441],[-6.148442,53.443356],[-6.14805,53.443281],[-6.148072,53.44213],[-6.148337,53.442145],[-6.148644,53.44216],[-6.149068,53.442179],[-6.149072,53.442159],[-6.149348,53.442169],[-6.149679,53.442185],[-6.149977,53.4422],[-6.150637,53.442234],[-6.150634,53.442254],[-6.150626,53.44237],[-6.150621,53.442438],[-6.150623,53.442553],[-6.150625,53.442553],[-6.15068,53.443153],[-6.150282,53.443187],[-6.149512,53.443265],[-6.148854,53.443331],[-6.148577,53.443359],[-6.148514,53.443368],[-6.1485,53.44337],[-6.148521,53.443542],[-6.148464,53.443543],[-6.148456,53.443503],[-6.148445,53.443491],[-6.148433,53.443486],[-6.148416,53.443482],[-6.1484,53.443479],[-6.148376,53.443477],[-6.148356,53.443482],[-6.148332,53.443495],[-6.148298,53.443518],[-6.14824,53.443491],[-6.148285,53.443461],[-6.148315,53.443441]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"03/08/2011","stroke":"#ed3a26","no_of_units":"32","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development comprising 32 two-storey houses (total area - 6,758sq.m.) and associated open space, roads and infrastructure.","reg_date":"","3_bed":"32","5_plus":"","reg_ref":"F06A/0373/E1","fg_date":"","other_total":"32"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.097547,53.533738],[-6.097478,53.533923],[-6.09716,53.533863],[-6.096959,53.533829],[-6.096914,53.533821],[-6.09683,53.533807],[-6.096719,53.533782],[-6.096486,53.533736],[-6.096051,53.533632],[-6.096057,53.533572],[-6.096083,53.533466],[-6.096092,53.533428],[-6.096118,53.533316],[-6.09617,53.533105],[-6.096237,53.532889],[-6.09631,53.532705],[-6.096338,53.532634],[-6.096515,53.532224],[-6.09666,53.532248],[-6.096979,53.532305],[-6.097117,53.532336],[-6.097146,53.532346],[-6.097156,53.532353],[-6.097232,53.532372],[-6.097247,53.532369],[-6.09731,53.532377],[-6.097328,53.53238],[-6.09718,53.532846],[-6.097847,53.53295],[-6.097562,53.5337],[-6.097558,53.53371],[-6.097547,53.533738]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"27","4_bed":"18","app_date":"21/12/2011","stroke":"#ed3a26","no_of_units":"14","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Residential development consisting of 4 detached 4 bedroom two storey houses, 14 semi-detached two and a half storey 4 bedroom houses, 2 semi-detached two storey 3 bedroom houses, 11 terraced two stor","reg_date":"","3_bed":"13","5_plus":"","reg_ref":"F06A/0775/E1","fg_date":"","other_total":"58"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.242802,53.449779],[-6.242681,53.449757],[-6.242569,53.449738],[-6.242457,53.449718],[-6.242415,53.44971],[-6.242346,53.449695],[-6.242241,53.449672],[-6.242113,53.449644],[-6.242057,53.449632],[-6.24181,53.449578],[-6.241792,53.449574],[-6.241592,53.449529],[-6.241366,53.449482],[-6.241294,53.449467],[-6.241336,53.449407],[-6.241416,53.449303],[-6.24142,53.449297],[-6.24147,53.449224],[-6.241483,53.449204],[-6.241545,53.449111],[-6.241614,53.449028],[-6.241703,53.448921],[-6.241764,53.448849],[-6.24184,53.448802],[-6.241905,53.448766],[-6.241964,53.448746],[-6.241978,53.448729],[-6.241982,53.448716],[-6.241978,53.448698],[-6.241982,53.448668],[-6.242015,53.448615],[-6.242067,53.448537],[-6.242079,53.448525],[-6.242096,53.448524],[-6.242295,53.44853],[-6.242304,53.448429],[-6.242305,53.448284],[-6.242307,53.448199],[-6.242302,53.44801],[-6.242263,53.447986],[-6.242123,53.447927],[-6.242001,53.447873],[-6.241914,53.447832],[-6.241937,53.447787],[-6.241985,53.447709],[-6.242061,53.447625],[-6.242167,53.447509],[-6.242263,53.447401],[-6.242324,53.447329],[-6.242344,53.447306],[-6.242359,53.447279],[-6.242369,53.447246],[-6.242369,53.44723],[-6.242368,53.447216],[-6.24236,53.447192],[-6.242337,53.447122],[-6.242289,53.446967],[-6.242286,53.446958],[-6.242244,53.446842],[-6.242235,53.446763],[-6.242218,53.446724],[-6.242219,53.446723],[-6.242341,53.446623],[-6.242781,53.446716],[-6.242886,53.446534],[-6.243233,53.446591],[-6.243328,53.446607],[-6.243488,53.44664],[-6.24362,53.446667],[-6.2437,53.446676],[-6.243911,53.446709],[-6.244046,53.44673],[-6.244259,53.446765],[-6.244302,53.446773],[-6.245283,53.446923],[-6.245307,53.446903],[-6.245319,53.446882],[-6.245463,53.44691],[-6.245415,53.447035],[-6.245371,53.447146],[-6.245328,53.44725],[-6.245243,53.447393],[-6.245247,53.447411],[-6.245256,53.447447],[-6.245113,53.447733],[-6.245077,53.447806],[-6.245074,53.447805],[-6.245357,53.447867],[-6.245411,53.447879],[-6.245515,53.447902],[-6.245577,53.447916],[-6.245646,53.447931],[-6.245752,53.447954],[-6.245781,53.447961],[-6.245938,53.447995],[-6.245989,53.448006],[-6.246043,53.448018],[-6.246077,53.448026],[-6.246173,53.448046],[-6.246276,53.448068],[-6.246379,53.448091],[-6.246496,53.448116],[-6.246504,53.448102],[-6.2467,53.448155],[-6.246617,53.448326],[-6.246523,53.448546],[-6.246475,53.448701],[-6.24636,53.44883],[-6.246274,53.448864],[-6.246104,53.448887],[-6.245918,53.448899],[-6.245682,53.448891],[-6.243383,53.448595],[-6.242802,53.449779]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"15/12/2010","stroke":"#ed3a26","no_of_units":"373","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of 373 units comprised of 148 no. 2, 3 and 4 bed townhouses, 203 no. 1, 2 and 3 bed apartments in 16 no. 2, 3 & 4 storey blocks and 22 no. 2 bed own door apartment","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/0265/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.802307,53.560214],[-6.802973,53.560144],[-6.80382,53.559647],[-6.804249,53.559335],[-6.803895,53.558149],[-6.806202,53.557085],[-6.805151,53.556059],[-6.803209,53.556728],[-6.799968,53.557397],[-6.80088,53.559277],[-6.801953,53.559303],[-6.802307,53.560214]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"15/01/2013","fill-opacity":0.5,"2_bed":"","4_bed":"63","app_date":"26/08/2011","stroke":"#ed3a26","no_of_units":"143","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"EXTENSION OF DURATION OF PLANNING PERMISSION TA40463 - 143 no. residentials units, creche and associ...","reg_date":"","3_bed":"80","5_plus":"","reg_ref":"ta110812","fg_date":"","other_total":"143"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.242802,53.449779],[-6.242681,53.449757],[-6.242569,53.449738],[-6.242457,53.449718],[-6.242415,53.44971],[-6.242346,53.449695],[-6.242241,53.449672],[-6.242113,53.449644],[-6.242057,53.449632],[-6.24181,53.449578],[-6.241792,53.449574],[-6.241592,53.449529],[-6.241366,53.449482],[-6.241294,53.449467],[-6.241336,53.449407],[-6.241416,53.449303],[-6.24142,53.449297],[-6.24147,53.449224],[-6.241483,53.449204],[-6.241545,53.449111],[-6.241614,53.449028],[-6.241703,53.448921],[-6.241764,53.448849],[-6.24184,53.448802],[-6.241905,53.448766],[-6.241964,53.448746],[-6.241978,53.448729],[-6.241982,53.448716],[-6.241978,53.448698],[-6.241982,53.448668],[-6.242015,53.448615],[-6.242067,53.448537],[-6.242079,53.448525],[-6.242096,53.448524],[-6.242295,53.44853],[-6.242304,53.448429],[-6.242305,53.448284],[-6.242307,53.448199],[-6.242302,53.44801],[-6.242263,53.447986],[-6.242123,53.447927],[-6.242001,53.447873],[-6.241914,53.447832],[-6.241937,53.447787],[-6.241985,53.447709],[-6.242061,53.447625],[-6.242167,53.447509],[-6.242263,53.447401],[-6.242324,53.447329],[-6.242344,53.447306],[-6.242359,53.447279],[-6.242369,53.447246],[-6.242369,53.44723],[-6.242368,53.447216],[-6.24236,53.447192],[-6.242337,53.447122],[-6.242289,53.446967],[-6.242286,53.446958],[-6.242244,53.446842],[-6.242235,53.446763],[-6.242218,53.446724],[-6.242219,53.446723],[-6.242341,53.446623],[-6.242781,53.446716],[-6.242886,53.446534],[-6.243233,53.446591],[-6.243328,53.446607],[-6.243488,53.44664],[-6.24362,53.446667],[-6.2437,53.446676],[-6.243911,53.446709],[-6.244046,53.44673],[-6.244259,53.446765],[-6.244302,53.446773],[-6.245283,53.446923],[-6.245307,53.446903],[-6.245319,53.446882],[-6.245463,53.44691],[-6.245415,53.447035],[-6.245371,53.447146],[-6.245328,53.44725],[-6.245243,53.447393],[-6.245247,53.447411],[-6.245256,53.447447],[-6.245113,53.447733],[-6.245077,53.447806],[-6.245074,53.447805],[-6.245357,53.447867],[-6.245411,53.447879],[-6.245515,53.447902],[-6.245577,53.447916],[-6.245646,53.447931],[-6.245752,53.447954],[-6.245781,53.447961],[-6.245938,53.447995],[-6.245989,53.448006],[-6.246043,53.448018],[-6.246077,53.448026],[-6.246173,53.448046],[-6.246276,53.448068],[-6.246379,53.448091],[-6.246496,53.448116],[-6.246504,53.448102],[-6.2467,53.448155],[-6.246617,53.448326],[-6.246523,53.448546],[-6.246475,53.448701],[-6.24636,53.44883],[-6.246274,53.448864],[-6.246104,53.448887],[-6.245918,53.448899],[-6.245682,53.448891],[-6.243383,53.448595],[-6.242802,53.449779]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"15/12/2010","stroke":"#ed3a26","no_of_units":"373","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of 373 units comprised of 148 no. 2, 3 and 4 bed townhouses, 203 no. 1, 2 and 3 bed apartments in 16 no. 2, 3 & 4 storey blocks and 22 no. 2 bed own door apartment","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/0265/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.178645,53.250429],[-6.178104,53.250265],[-6.178377,53.249838],[-6.17842,53.249713],[-6.178195,53.249533],[-6.178238,53.249411],[-6.177573,53.249171],[-6.177819,53.248808],[-6.178517,53.248801],[-6.180099,53.249508],[-6.179718,53.249838],[-6.179305,53.249906],[-6.179144,53.250031],[-6.179016,53.250217],[-6.178645,53.250429]]]]},"type":"Feature","properties":{"status":"Decision made","":"","deision_date":"27/06/2011","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"04/05/2011","stroke":"#ed3a26","no_of_units":"227","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"DLRCC","decision":"GRANT FURTHER EXT. OF DURATION OF PERM.","short_desc":"227 no. residential units, creche and retail unit on lands, measuring 3.9 hectar","reg_date":"04/05/2011","3_bed":"","5_plus":"","reg_ref":"D05A/1614/E","fg_date":"","other_total":"227"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.11319,53.575604],[-6.113042,53.575677],[-6.112821,53.575633],[-6.112793,53.575599],[-6.112883,53.575562],[-6.112756,53.575281],[-6.112743,53.575257],[-6.113121,53.575232],[-6.11323,53.575149],[-6.113291,53.575102],[-6.113274,53.575002],[-6.113279,53.574956],[-6.113191,53.574959],[-6.112975,53.574973],[-6.11296,53.574821],[-6.113158,53.574804],[-6.113371,53.574794],[-6.113532,53.574793],[-6.113799,53.574788],[-6.113945,53.57479],[-6.113871,53.574883],[-6.113844,53.574915],[-6.113746,53.575025],[-6.113702,53.575072],[-6.113613,53.575175],[-6.113582,53.575216],[-6.113447,53.575285],[-6.113442,53.575316],[-6.113428,53.575383],[-6.113294,53.575533],[-6.113226,53.575587],[-6.113203,53.575598],[-6.11319,53.575604]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"6","4_bed":"","app_date":"15/08/2011","stroke":"#ed3a26","no_of_units":"14","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Construction of a residential development comprising of 14 no. townhouses, consisting of 6 no. three bed, two and a half storey units and 8 no. two bed, two storey units with associated site and lands","reg_date":"","3_bed":"8","5_plus":"","reg_ref":"F06A/0935/E1","fg_date":"","other_total":"14"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.180401,53.437505],[-6.18032,53.43748],[-6.179953,53.437357],[-6.179688,53.43731],[-6.179548,53.437309],[-6.178856,53.437307],[-6.178455,53.437349],[-6.178462,53.437243],[-6.178461,53.437205],[-6.178467,53.437168],[-6.178482,53.437044],[-6.178513,53.436856],[-6.178545,53.436624],[-6.178565,53.436491],[-6.178512,53.436478],[-6.17852,53.4364],[-6.178539,53.436379],[-6.178583,53.436361],[-6.178786,53.43633],[-6.178798,53.436445],[-6.1788,53.436494],[-6.17881,53.436537],[-6.178872,53.436522],[-6.179942,53.436558],[-6.180356,53.436576],[-6.180596,53.436589],[-6.180636,53.436617],[-6.180757,53.43666],[-6.181026,53.436658],[-6.182146,53.436633],[-6.182234,53.436641],[-6.182214,53.436697],[-6.182132,53.436912],[-6.182124,53.43694],[-6.182114,53.436997],[-6.182196,53.437019],[-6.182199,53.437022],[-6.182204,53.437031],[-6.182228,53.437127],[-6.182233,53.437163],[-6.182245,53.437234],[-6.182256,53.437328],[-6.182175,53.43732],[-6.181612,53.437265],[-6.18155,53.43726],[-6.181247,53.437604],[-6.181204,53.43765],[-6.181148,53.43771],[-6.180792,53.437626],[-6.180505,53.437538],[-6.180401,53.437505]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"29/03/2012","stroke":"#ed3a26","no_of_units":"22","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"[1] the demolition of the existing derelict outbuilding (68.74 sq m) and [2] the construction of 22 detached residential units, comprising, 2 no. type A1, 2.5 storey detached house over basement with ","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F06A/1576/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.293486,53.407471],[-6.293412,53.407476],[-6.293314,53.407482],[-6.29311,53.407498],[-6.292038,53.407554],[-6.290888,53.407615],[-6.290399,53.407645],[-6.290165,53.407657],[-6.2899,53.407672],[-6.289912,53.407541],[-6.289921,53.407495],[-6.289951,53.40732],[-6.289983,53.407098],[-6.290028,53.406845],[-6.290063,53.406597],[-6.290148,53.406615],[-6.290241,53.406628],[-6.29027,53.406655],[-6.290324,53.406662],[-6.290371,53.406643],[-6.290525,53.406662],[-6.290777,53.406677],[-6.290977,53.406681],[-6.291141,53.406678],[-6.291402,53.406676],[-6.291398,53.406701],[-6.291457,53.406704],[-6.291461,53.406681],[-6.291509,53.406669],[-6.291708,53.406669],[-6.291905,53.406672],[-6.292011,53.406672],[-6.292184,53.406669],[-6.2925,53.406654],[-6.292768,53.40664],[-6.293208,53.406638],[-6.293425,53.406649],[-6.293668,53.406671],[-6.293758,53.406685],[-6.293782,53.406687],[-6.2938,53.406688],[-6.293817,53.406693],[-6.293918,53.406716],[-6.293926,53.406757],[-6.293858,53.406787],[-6.293676,53.406969],[-6.293566,53.407182],[-6.293486,53.407471]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"71","4_bed":"8","app_date":"24/02/2011","stroke":"#ed3a26","no_of_units":"162","1_bed":"13","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition of 2 no. existing dormer bungalow dwellings and the removal of existing trees and hedgerows. The construction of 162 no. residential units (69 no. Apartments 44 no. Duplexes, 49 no. terrac","reg_date":"","3_bed":"70","5_plus":"","reg_ref":"F05A/0600/E1","fg_date":"","other_total":"162"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.327984,53.271036],[-6.327989,53.271041],[-6.327694,53.271159],[-6.327615,53.271063],[-6.327434,53.271105],[-6.32729,53.270904],[-6.327368,53.270884],[-6.327508,53.270852],[-6.327547,53.270859],[-6.327587,53.270868],[-6.327623,53.270879],[-6.327662,53.270888],[-6.327813,53.270917],[-6.327846,53.27093],[-6.327878,53.270948],[-6.327974,53.271027],[-6.327984,53.271036]]],[[[-6.327409,53.271111],[-6.327486,53.27122],[-6.327334,53.271254],[-6.327318,53.271228],[-6.327299,53.271234],[-6.327249,53.27115],[-6.327409,53.271111]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"18","4_bed":"0","app_date":"07/12/2009","stroke":"#ed3a26","no_of_units":"12","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"Amendments to previously approved residential development (Reg. Ref. SD09A/0001) consisting of the omission of previously approved 12 no. duplex units in a 4/5 storey block and their replacement with ","reg_date":"","3_bed":"2","5_plus":"0","reg_ref":"SD09A/0470","fg_date":"","other_total":"20"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.878504,53.716012],[-6.88096,53.715758],[-6.880993,53.715124],[-6.881036,53.714228],[-6.877441,53.714095],[-6.876594,53.714584],[-6.878504,53.716012]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"04/03/2014","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"16/01/2014","stroke":"#ed3a26","no_of_units":"40","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"EXTENSION OF DURATION OF PLANNING PERMISSION REF. NO. KA/803401 - 40 residential units and creche...","reg_date":"","3_bed":"","5_plus":"","reg_ref":"KA140019","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.591947,53.370867],[-6.590681,53.370553],[-6.591003,53.369542],[-6.591454,53.369292],[-6.591389,53.368902],[-6.591432,53.368595],[-6.592033,53.368505],[-6.592623,53.369216],[-6.591947,53.370867]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"07/10/2014","fill-opacity":0.5,"2_bed":"27","4_bed":"7","app_date":"14/08/2014","stroke":"#ed3a26","no_of_units":"67","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"Extension of Duration of Planning Ref. No. 08/2174 - the erection of 67no.residential mixed dwellings as follows: 1 no. 5 bed 3 storey detached house typeF 6 no.3 bed 2 storey semi detached houses typ","reg_date":"","3_bed":"32","5_plus":"1","reg_ref":"14709","fg_date":"n/a","other_total":"67"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.428909,53.400279],[-6.427433,53.400303],[-6.427271,53.400238],[-6.427031,53.400086],[-6.426782,53.399849],[-6.426714,53.399784],[-6.426633,53.399692],[-6.426564,53.399597],[-6.426506,53.399513],[-6.426426,53.399493],[-6.426574,53.399369],[-6.426603,53.399333],[-6.42663,53.399299],[-6.426701,53.399208],[-6.426754,53.399105],[-6.426845,53.399001],[-6.426962,53.398893],[-6.426972,53.398888],[-6.427016,53.398843],[-6.427021,53.398826],[-6.427233,53.398492],[-6.427597,53.39866],[-6.428134,53.399048],[-6.427684,53.399261],[-6.427885,53.399251],[-6.428433,53.399662],[-6.428403,53.39973],[-6.428839,53.39981],[-6.428938,53.399617],[-6.429079,53.399564],[-6.429513,53.399348],[-6.429473,53.399321],[-6.429577,53.399272],[-6.429668,53.399276],[-6.429983,53.399314],[-6.43002,53.399168],[-6.430344,53.399084],[-6.430988,53.399145],[-6.431147,53.399034],[-6.431177,53.399041],[-6.43141,53.398936],[-6.431522,53.399022],[-6.431605,53.398989],[-6.431654,53.399025],[-6.431594,53.399051],[-6.43171,53.399142],[-6.431672,53.399171],[-6.431765,53.399234],[-6.431328,53.399453],[-6.431253,53.399404],[-6.431178,53.399445],[-6.431053,53.399452],[-6.429918,53.399338],[-6.429857,53.399544],[-6.430087,53.399566],[-6.430073,53.399617],[-6.430115,53.399645],[-6.430151,53.399624],[-6.430169,53.399626],[-6.430186,53.399629],[-6.430224,53.399656],[-6.430238,53.399666],[-6.430284,53.399672],[-6.430381,53.399681],[-6.43036,53.399751],[-6.430441,53.399807],[-6.430495,53.399846],[-6.430549,53.399883],[-6.430542,53.399906],[-6.430538,53.399908],[-6.430536,53.39992],[-6.430526,53.399999],[-6.43053,53.400001],[-6.430458,53.400039],[-6.430401,53.400069],[-6.43033,53.400106],[-6.430258,53.400144],[-6.430199,53.400175],[-6.430128,53.400213],[-6.430056,53.40025],[-6.430006,53.400276],[-6.42996,53.400301],[-6.429886,53.40034],[-6.430163,53.40053],[-6.430231,53.400577],[-6.430256,53.400592],[-6.42984,53.400818],[-6.42978,53.400846],[-6.429748,53.400826],[-6.42945,53.400634],[-6.428984,53.400328],[-6.428909,53.400279]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"19","4_bed":"1","app_date":"01/04/2011","stroke":"#ed3a26","no_of_units":"114","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To amend previously approved scheme reg ref no F01A/0868 and F06A/0025. It is proposed to alter a portion of the approved residential mix and house types as follows:To replace 114no permitted 2/3 s","reg_date":"","3_bed":"78","5_plus":"","reg_ref":"FW10A/0166","fg_date":"","other_total":"98"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.450792,53.363996],[-6.45089,53.363947],[-6.451033,53.363905],[-6.451104,53.363886],[-6.45141,53.3638],[-6.451693,53.363719],[-6.452367,53.363537],[-6.452417,53.363523],[-6.452507,53.363497],[-6.45259,53.363467],[-6.452623,53.363459],[-6.452725,53.363428],[-6.452853,53.363401],[-6.452905,53.363395],[-6.452956,53.363393],[-6.452973,53.363394],[-6.453091,53.363399],[-6.453168,53.363402],[-6.453246,53.363406],[-6.453322,53.363409],[-6.453361,53.363411],[-6.453732,53.363428],[-6.45409,53.363444],[-6.454204,53.363449],[-6.454275,53.363453],[-6.454283,53.363453],[-6.454358,53.363456],[-6.454474,53.363461],[-6.45465,53.363469],[-6.454653,53.363475],[-6.454836,53.363482],[-6.454841,53.363482],[-6.455096,53.363493],[-6.455337,53.363504],[-6.455437,53.363515],[-6.455476,53.363406],[-6.455512,53.363339],[-6.455524,53.363304],[-6.455541,53.363237],[-6.455544,53.363147],[-6.455539,53.363059],[-6.455535,53.363042],[-6.455533,53.363011],[-6.455525,53.362933],[-6.455518,53.362868],[-6.455521,53.362812],[-6.455446,53.362786],[-6.455438,53.362744],[-6.45549,53.362725],[-6.455513,53.36271],[-6.45551,53.362621],[-6.455507,53.362573],[-6.4555,53.362491],[-6.455456,53.362451],[-6.455408,53.36243],[-6.455354,53.362368],[-6.455376,53.362349],[-6.455419,53.362381],[-6.455474,53.362405],[-6.455535,53.362496],[-6.455685,53.362476],[-6.455676,53.362495],[-6.455667,53.362546],[-6.455661,53.362625],[-6.455657,53.362686],[-6.455661,53.362724],[-6.455666,53.362751],[-6.455678,53.36282],[-6.455686,53.36292],[-6.455694,53.362985],[-6.455693,53.363054],[-6.455694,53.363171],[-6.455699,53.363262],[-6.455694,53.363307],[-6.455672,53.36336],[-6.455588,53.363561],[-6.45558,53.363584],[-6.455569,53.363609],[-6.455546,53.363673],[-6.455563,53.363684],[-6.455553,53.363726],[-6.45554,53.363789],[-6.455503,53.363917],[-6.455496,53.364119],[-6.455495,53.364397],[-6.4555,53.364609],[-6.4555,53.3648],[-6.455495,53.364864],[-6.455506,53.364956],[-6.455547,53.365044],[-6.455624,53.365155],[-6.455751,53.365279],[-6.455877,53.365375],[-6.455924,53.36538],[-6.456043,53.365384],[-6.456208,53.365386],[-6.456238,53.365492],[-6.456017,53.365492],[-6.455998,53.365524],[-6.456217,53.365802],[-6.4561,53.36584],[-6.456033,53.36576],[-6.456001,53.365721],[-6.455929,53.365642],[-6.455879,53.365581],[-6.45584,53.365526],[-6.455772,53.365486],[-6.455759,53.365482],[-6.455678,53.365455],[-6.455546,53.365431],[-6.455469,53.36543],[-6.455434,53.365325],[-6.455415,53.365272],[-6.455383,53.36518],[-6.45534,53.365031],[-6.455334,53.364977],[-6.455331,53.36495],[-6.455324,53.364887],[-6.455081,53.364887],[-6.455054,53.364778],[-6.455347,53.364777],[-6.45535,53.364756],[-6.455359,53.364707],[-6.455365,53.36467],[-6.455366,53.364624],[-6.455366,53.364582],[-6.455366,53.364572],[-6.455355,53.364419],[-6.45535,53.364365],[-6.455348,53.364327],[-6.455295,53.36434],[-6.455296,53.364313],[-6.454977,53.364406],[-6.454798,53.364467],[-6.454603,53.364533],[-6.454328,53.364626],[-6.453995,53.364733],[-6.453884,53.364768],[-6.453327,53.364927],[-6.453094,53.364991],[-6.453013,53.365013],[-6.452748,53.365085],[-6.45264,53.365116],[-6.452466,53.365168],[-6.452331,53.365213],[-6.452296,53.365225],[-6.452226,53.365248],[-6.452045,53.365312],[-6.45193,53.365362],[-6.451891,53.36538],[-6.45172,53.365447],[-6.4515,53.365537],[-6.45141,53.365571],[-6.451309,53.36567],[-6.451245,53.36575],[-6.451216,53.365764],[-6.45119,53.365799],[-6.451164,53.365829],[-6.450968,53.365828],[-6.450747,53.365823],[-6.450674,53.365819],[-6.450601,53.365815],[-6.45054,53.365807],[-6.450444,53.365789],[-6.450352,53.365779],[-6.45032,53.365777],[-6.450296,53.365775],[-6.450182,53.365743],[-6.44997,53.365662],[-6.449816,53.365597],[-6.44973,53.36556],[-6.449631,53.365518],[-6.449449,53.365452],[-6.449197,53.365379],[-6.449014,53.365332],[-6.448906,53.365296],[-6.448685,53.365256],[-6.44853,53.365229],[-6.448438,53.365214],[-6.448351,53.365153],[-6.448294,53.365111],[-6.448347,53.365092],[-6.448403,53.365072],[-6.448589,53.365008],[-6.448957,53.364854],[-6.449054,53.364808],[-6.449238,53.364721],[-6.449399,53.364645],[-6.449935,53.364395],[-6.450351,53.364206],[-6.450552,53.364103],[-6.45068,53.364042],[-6.450792,53.363996]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"17","app_date":"30/03/2011","stroke":"#ed3a26","no_of_units":"70","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of the construction of 70 detached residential units, each with a detached domestic workshop - the residential units range in size from 173 sq.m to c. 365 sq.m (GFA) compr","reg_date":"","3_bed":"","5_plus":"51","reg_ref":"FW10A/0155","fg_date":"","other_total":"68"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.584651,53.38759],[-6.581905,53.38695],[-6.581454,53.38663],[-6.578836,53.387181],[-6.579759,53.388448],[-6.581111,53.388537],[-6.582248,53.388678],[-6.582935,53.388575],[-6.584651,53.38759]]]]},"type":"Feature","properties":{"status":"FURTHER INFORMATION","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"40","app_date":"28/07/2014","stroke":"#ed3a26","no_of_units":"112","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"","short_desc":"for development at this site (a virtually complete development, Planning Ref. 06/1925) to the southwest. The proposed residential development which will consist of the erection of 112 two storey hous","reg_date":"","3_bed":"72","5_plus":"","reg_ref":"14637","fg_date":"n/a","other_total":"112"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.406124,53.506069],[-6.405576,53.506726],[-6.405566,53.507052],[-6.405351,53.507358],[-6.404439,53.507639],[-6.404074,53.50843],[-6.404096,53.508978],[-6.405898,53.509195],[-6.406982,53.509202],[-6.407658,53.509023],[-6.408076,53.508685],[-6.408495,53.508455],[-6.408924,53.508219],[-6.409664,53.507977],[-6.409889,53.507715],[-6.409879,53.507422],[-6.40975,53.50709],[-6.406124,53.506069]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"24/09/2010","fill-opacity":0.5,"2_bed":"216","4_bed":"","app_date":"14/06/2010","stroke":"#ed3a26","no_of_units":"468","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"MCC","decision":"CONDITIONAL","short_desc":"Extension of Duration - PLANNING APPLICATION DA/40043 - a residential development of 468 No. residen...","reg_date":"","3_bed":"252","5_plus":"","reg_ref":"da100651","fg_date":"","other_total":"468"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.450792,53.363996],[-6.45089,53.363947],[-6.451033,53.363905],[-6.451104,53.363886],[-6.45141,53.3638],[-6.451693,53.363719],[-6.452367,53.363537],[-6.452417,53.363523],[-6.452507,53.363497],[-6.45259,53.363467],[-6.452623,53.363459],[-6.452725,53.363428],[-6.452853,53.363401],[-6.452905,53.363395],[-6.452956,53.363393],[-6.452973,53.363394],[-6.453091,53.363399],[-6.453168,53.363402],[-6.453246,53.363406],[-6.453322,53.363409],[-6.453361,53.363411],[-6.453732,53.363428],[-6.45409,53.363444],[-6.454204,53.363449],[-6.454275,53.363453],[-6.454283,53.363453],[-6.454358,53.363456],[-6.454474,53.363461],[-6.45465,53.363469],[-6.454653,53.363475],[-6.454836,53.363482],[-6.454841,53.363482],[-6.455096,53.363493],[-6.455337,53.363504],[-6.455437,53.363515],[-6.455476,53.363406],[-6.455512,53.363339],[-6.455524,53.363304],[-6.455541,53.363237],[-6.455544,53.363147],[-6.455539,53.363059],[-6.455535,53.363042],[-6.455533,53.363011],[-6.455525,53.362933],[-6.455518,53.362868],[-6.455521,53.362812],[-6.455446,53.362786],[-6.455438,53.362744],[-6.45549,53.362725],[-6.455513,53.36271],[-6.45551,53.362621],[-6.455507,53.362573],[-6.4555,53.362491],[-6.455456,53.362451],[-6.455408,53.36243],[-6.455354,53.362368],[-6.455376,53.362349],[-6.455419,53.362381],[-6.455474,53.362405],[-6.455535,53.362496],[-6.455685,53.362476],[-6.455676,53.362495],[-6.455667,53.362546],[-6.455661,53.362625],[-6.455657,53.362686],[-6.455661,53.362724],[-6.455666,53.362751],[-6.455678,53.36282],[-6.455686,53.36292],[-6.455694,53.362985],[-6.455693,53.363054],[-6.455694,53.363171],[-6.455699,53.363262],[-6.455694,53.363307],[-6.455672,53.36336],[-6.455588,53.363561],[-6.45558,53.363584],[-6.455569,53.363609],[-6.455546,53.363673],[-6.455563,53.363684],[-6.455553,53.363726],[-6.45554,53.363789],[-6.455503,53.363917],[-6.455496,53.364119],[-6.455495,53.364397],[-6.4555,53.364609],[-6.4555,53.3648],[-6.455495,53.364864],[-6.455506,53.364956],[-6.455547,53.365044],[-6.455624,53.365155],[-6.455751,53.365279],[-6.455877,53.365375],[-6.455924,53.36538],[-6.456043,53.365384],[-6.456208,53.365386],[-6.456238,53.365492],[-6.456017,53.365492],[-6.455998,53.365524],[-6.456217,53.365802],[-6.4561,53.36584],[-6.456033,53.36576],[-6.456001,53.365721],[-6.455929,53.365642],[-6.455879,53.365581],[-6.45584,53.365526],[-6.455772,53.365486],[-6.455759,53.365482],[-6.455678,53.365455],[-6.455546,53.365431],[-6.455469,53.36543],[-6.455434,53.365325],[-6.455415,53.365272],[-6.455383,53.36518],[-6.45534,53.365031],[-6.455334,53.364977],[-6.455331,53.36495],[-6.455324,53.364887],[-6.455081,53.364887],[-6.455054,53.364778],[-6.455347,53.364777],[-6.45535,53.364756],[-6.455359,53.364707],[-6.455365,53.36467],[-6.455366,53.364624],[-6.455366,53.364582],[-6.455366,53.364572],[-6.455355,53.364419],[-6.45535,53.364365],[-6.455348,53.364327],[-6.455295,53.36434],[-6.455296,53.364313],[-6.454977,53.364406],[-6.454798,53.364467],[-6.454603,53.364533],[-6.454328,53.364626],[-6.453995,53.364733],[-6.453884,53.364768],[-6.453327,53.364927],[-6.453094,53.364991],[-6.453013,53.365013],[-6.452748,53.365085],[-6.45264,53.365116],[-6.452466,53.365168],[-6.452331,53.365213],[-6.452296,53.365225],[-6.452226,53.365248],[-6.452045,53.365312],[-6.45193,53.365362],[-6.451891,53.36538],[-6.45172,53.365447],[-6.4515,53.365537],[-6.45141,53.365571],[-6.451309,53.36567],[-6.451245,53.36575],[-6.451216,53.365764],[-6.45119,53.365799],[-6.451164,53.365829],[-6.450968,53.365828],[-6.450747,53.365823],[-6.450674,53.365819],[-6.450601,53.365815],[-6.45054,53.365807],[-6.450444,53.365789],[-6.450352,53.365779],[-6.45032,53.365777],[-6.450296,53.365775],[-6.450182,53.365743],[-6.44997,53.365662],[-6.449816,53.365597],[-6.44973,53.36556],[-6.449631,53.365518],[-6.449449,53.365452],[-6.449197,53.365379],[-6.449014,53.365332],[-6.448906,53.365296],[-6.448685,53.365256],[-6.44853,53.365229],[-6.448438,53.365214],[-6.448351,53.365153],[-6.448294,53.365111],[-6.448347,53.365092],[-6.448403,53.365072],[-6.448589,53.365008],[-6.448957,53.364854],[-6.449054,53.364808],[-6.449238,53.364721],[-6.449399,53.364645],[-6.449935,53.364395],[-6.450351,53.364206],[-6.450552,53.364103],[-6.45068,53.364042],[-6.450792,53.363996]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"17","app_date":"30/03/2011","stroke":"#ed3a26","no_of_units":"70","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of the construction of 70 detached residential units, each with a detached domestic workshop - the residential units range in size from 173 sq.m to c. 365 sq.m (GFA) compr","reg_date":"","3_bed":"","5_plus":"51","reg_ref":"FW10A/0155","fg_date":"","other_total":"68"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.447358,53.279168],[-6.447361,53.27928],[-6.447396,53.279323],[-6.447473,53.279345],[-6.44758,53.279355],[-6.447778,53.279383],[-6.448067,53.279477],[-6.44866,53.27963],[-6.449317,53.279792],[-6.449635,53.279877],[-6.449791,53.279879],[-6.449934,53.279864],[-6.450077,53.27987],[-6.450225,53.279902],[-6.450331,53.279946],[-6.449804,53.280131],[-6.447771,53.280968],[-6.447032,53.281283],[-6.446137,53.280806],[-6.446989,53.280317],[-6.447214,53.280205],[-6.447418,53.280066],[-6.446938,53.279765],[-6.446687,53.279595],[-6.447117,53.279332],[-6.447358,53.279168]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"","fill-opacity":0.5,"2_bed":"78","4_bed":"6","app_date":"15/06/2006","stroke":"#ed3a26","no_of_units":"144","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"","short_desc":"144 no. residential units (18 no. two bed apartments, 60 no. two bed duplex dwellings, 60 no. three bed duplex dwellings and 6 no. four bed three-storey houses; the provision of 203 no. parking spaces","reg_date":"","3_bed":"60","5_plus":"0","reg_ref":"SD06A/0494","fg_date":"","other_total":"144"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.428909,53.400279],[-6.427433,53.400303],[-6.427271,53.400238],[-6.427031,53.400086],[-6.426782,53.399849],[-6.426714,53.399784],[-6.426633,53.399692],[-6.426564,53.399597],[-6.426506,53.399513],[-6.426426,53.399493],[-6.426574,53.399369],[-6.426603,53.399333],[-6.42663,53.399299],[-6.426701,53.399208],[-6.426754,53.399105],[-6.426845,53.399001],[-6.426962,53.398893],[-6.426972,53.398888],[-6.427016,53.398843],[-6.427021,53.398826],[-6.427233,53.398492],[-6.427597,53.39866],[-6.428134,53.399048],[-6.427684,53.399261],[-6.427885,53.399251],[-6.428433,53.399662],[-6.428403,53.39973],[-6.428839,53.39981],[-6.428938,53.399617],[-6.429079,53.399564],[-6.429513,53.399348],[-6.429473,53.399321],[-6.429577,53.399272],[-6.429668,53.399276],[-6.429983,53.399314],[-6.43002,53.399168],[-6.430344,53.399084],[-6.430988,53.399145],[-6.431147,53.399034],[-6.431177,53.399041],[-6.43141,53.398936],[-6.431522,53.399022],[-6.431605,53.398989],[-6.431654,53.399025],[-6.431594,53.399051],[-6.43171,53.399142],[-6.431672,53.399171],[-6.431765,53.399234],[-6.431328,53.399453],[-6.431253,53.399404],[-6.431178,53.399445],[-6.431053,53.399452],[-6.429918,53.399338],[-6.429857,53.399544],[-6.430087,53.399566],[-6.430073,53.399617],[-6.430115,53.399645],[-6.430151,53.399624],[-6.430169,53.399626],[-6.430186,53.399629],[-6.430224,53.399656],[-6.430238,53.399666],[-6.430284,53.399672],[-6.430381,53.399681],[-6.43036,53.399751],[-6.430441,53.399807],[-6.430495,53.399846],[-6.430549,53.399883],[-6.430542,53.399906],[-6.430538,53.399908],[-6.430536,53.39992],[-6.430526,53.399999],[-6.43053,53.400001],[-6.430458,53.400039],[-6.430401,53.400069],[-6.43033,53.400106],[-6.430258,53.400144],[-6.430199,53.400175],[-6.430128,53.400213],[-6.430056,53.40025],[-6.430006,53.400276],[-6.42996,53.400301],[-6.429886,53.40034],[-6.430163,53.40053],[-6.430231,53.400577],[-6.430256,53.400592],[-6.42984,53.400818],[-6.42978,53.400846],[-6.429748,53.400826],[-6.42945,53.400634],[-6.428984,53.400328],[-6.428909,53.400279]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"19","4_bed":"1","app_date":"01/04/2011","stroke":"#ed3a26","no_of_units":"114","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"To amend previously approved scheme reg ref no F01A/0868 and F06A/0025. It is proposed to alter a portion of the approved residential mix and house types as follows:To replace 114no permitted 2/3 s","reg_date":"","3_bed":"78","5_plus":"","reg_ref":"FW10A/0166","fg_date":"","other_total":"98"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.252323,53.446673],[-6.251913,53.447232],[-6.252261,53.447322],[-6.252044,53.44784],[-6.252407,53.447884],[-6.25198,53.44877],[-6.250743,53.448498],[-6.250799,53.448303],[-6.250934,53.448002],[-6.251675,53.446596],[-6.252291,53.446496],[-6.252323,53.446673]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"8","4_bed":"12","app_date":"14/06/2011","stroke":"#ed3a26","no_of_units":"53","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of 53 no. 2 storey houses on a site area of 1.54ha, which will form part of Phase 8 of an overall development known as Ridgewood. The proposed development consist","reg_date":"","3_bed":"33","5_plus":"","reg_ref":"F10A/0535","fg_date":"","other_total":"53"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.669109,53.200622],[-6.667349,53.198732],[-6.666276,53.199079],[-6.667156,53.200082],[-6.66692,53.200262],[-6.666083,53.200249],[-6.665246,53.200377],[-6.664088,53.198848],[-6.663508,53.195814],[-6.66647,53.195236],[-6.668551,53.195583],[-6.668379,53.196598],[-6.669388,53.197074],[-6.67104,53.197357],[-6.669796,53.199156],[-6.669109,53.200622]]]]},"type":"Feature","properties":{"status":"APPLICATION FINALISED","":"","deision_date":"02/04/2012","fill-opacity":0.5,"2_bed":"","4_bed":"256","app_date":"09/12/2011","stroke":"#ed3a26","no_of_units":"281","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"KCC","decision":"GRANT","short_desc":"Perm. for the construction of an integrated tourism, recreational, educational, commercial & residential development (total floor area 46,645.37 sq.m) comprising (i) c.26 metres of access road to the ","reg_date":"","3_bed":"36","5_plus":"11","reg_ref":"11500088","fg_date":"n/a","other_total":"303"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.241612,53.448508],[-6.241642,53.448435],[-6.241668,53.448373],[-6.241681,53.448341],[-6.241712,53.448268],[-6.241724,53.448238],[-6.241752,53.44817],[-6.241782,53.448099],[-6.241807,53.448039],[-6.241844,53.447963],[-6.241877,53.447899],[-6.241874,53.447896],[-6.241799,53.447842],[-6.241797,53.447841],[-6.241842,53.447782],[-6.241963,53.447614],[-6.242044,53.447532],[-6.242108,53.447421],[-6.242121,53.447389],[-6.242156,53.447306],[-6.242169,53.447276],[-6.242203,53.447123],[-6.242208,53.447069],[-6.242926,53.447229],[-6.242822,53.447474],[-6.242707,53.447747],[-6.242694,53.447779],[-6.242835,53.447797],[-6.242945,53.447811],[-6.24294,53.447881],[-6.242963,53.447907],[-6.242949,53.447953],[-6.242876,53.448115],[-6.24245,53.449059],[-6.242371,53.44905],[-6.241653,53.448939],[-6.241708,53.448867],[-6.241744,53.448828],[-6.241797,53.44879],[-6.241852,53.448757],[-6.241896,53.448735],[-6.241933,53.448724],[-6.241952,53.448712],[-6.241876,53.448679],[-6.241831,53.448661],[-6.241809,53.448655],[-6.241777,53.448644],[-6.241758,53.44864],[-6.24174,53.448632],[-6.241654,53.448598],[-6.241573,53.448573],[-6.241579,53.448575],[-6.241612,53.448508]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"23","4_bed":"","app_date":"10/11/2011","stroke":"#ed3a26","no_of_units":"37","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development consisting of minor revisions to layout and house types for 37 no. units already permitted at nos. 1-26 Cedar Grove and 39-44 Cedar Lawn, Reg. Ref. F05A/0265 and for 23 no. 2","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F06A/1436/E1","fg_date":"","other_total":"23"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.464276,53.34907],[-6.463266,53.348955],[-6.463376,53.348683],[-6.463518,53.34865],[-6.464376,53.348738],[-6.464276,53.34907]]],[[[-6.46183,53.348505],[-6.461607,53.348499],[-6.461438,53.348483],[-6.461298,53.348467],[-6.461152,53.348441],[-6.461278,53.348214],[-6.461382,53.348237],[-6.461487,53.348252],[-6.461604,53.348264],[-6.461686,53.348272],[-6.461838,53.348271],[-6.46183,53.348505]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"04/02/2009","fill-opacity":0.5,"2_bed":"4","4_bed":"6","app_date":"04/12/2008","stroke":"#ed3a26","no_of_units":"16","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT PERMISSION","short_desc":"Change in the dwelling type and number from 18 no. permitted dwellings under Reg. REF. SDZ07A/0001 to 16 no. proposed dwellings. The development includes for changes from 6 no. three bed duplex units ","reg_date":"","3_bed":"16","5_plus":"2","reg_ref":"SDZ08A/0008","fg_date":"04/02/2009","other_total":"28"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.167683,53.432148],[-6.167668,53.43221],[-6.167653,53.432192],[-6.167644,53.432225],[-6.167634,53.432263],[-6.167318,53.432256],[-6.167326,53.432131],[-6.167665,53.432146],[-6.167662,53.432166],[-6.167683,53.432148]]],[[[-6.17418,53.446392],[-6.174072,53.446356],[-6.173799,53.446264],[-6.173558,53.446183],[-6.173432,53.44614],[-6.173372,53.44612],[-6.173339,53.446109],[-6.173295,53.446097],[-6.173262,53.446088],[-6.173232,53.446079],[-6.173197,53.44607],[-6.173164,53.446061],[-6.173125,53.446052],[-6.172962,53.445959],[-6.172869,53.44579],[-6.172888,53.445768],[-6.173008,53.445623],[-6.17308,53.445537],[-6.173169,53.44543],[-6.173224,53.445372],[-6.173262,53.445316],[-6.173287,53.445259],[-6.1733,53.445207],[-6.173308,53.445155],[-6.173311,53.445083],[-6.173312,53.445049],[-6.173312,53.444992],[-6.173312,53.444908],[-6.173307,53.444805],[-6.173299,53.444587],[-6.173294,53.444524],[-6.173291,53.444421],[-6.173305,53.444266],[-6.173317,53.444201],[-6.173331,53.444141],[-6.173354,53.444073],[-6.173402,53.443952],[-6.173448,53.443858],[-6.17346,53.443835],[-6.173501,53.443758],[-6.173556,53.443659],[-6.173615,53.443567],[-6.173655,53.443496],[-6.173714,53.443404],[-6.173821,53.443256],[-6.173887,53.443163],[-6.173914,53.443121],[-6.173997,53.442955],[-6.174202,53.442627],[-6.174409,53.442303],[-6.174554,53.442065],[-6.174721,53.441889],[-6.175115,53.441583],[-6.17544,53.441383],[-6.175717,53.441216],[-6.175824,53.44114],[-6.175919,53.441055],[-6.176088,53.440847],[-6.176253,53.440603],[-6.176356,53.440447],[-6.1764,53.440304],[-6.176246,53.440226],[-6.17616,53.440185],[-6.17612,53.440161],[-6.176049,53.440142],[-6.176018,53.440127],[-6.17601,53.440123],[-6.175951,53.440102],[-6.175917,53.440087],[-6.17578,53.440035],[-6.175615,53.439962],[-6.175525,53.439924],[-6.175263,53.439809],[-6.175179,53.439773],[-6.175165,53.439767],[-6.174979,53.439688],[-6.174701,53.439576],[-6.174478,53.439488],[-6.174162,53.43936],[-6.173981,53.43929],[-6.173945,53.439278],[-6.173878,53.439272],[-6.173691,53.439254],[-6.173419,53.439223],[-6.172988,53.439177],[-6.172598,53.439132],[-6.17226,53.439092],[-6.171908,53.439053],[-6.171608,53.43902],[-6.171295,53.438985],[-6.170978,53.438948],[-6.170685,53.438915],[-6.17053,53.438894],[-6.170417,53.438891],[-6.170272,53.438887],[-6.170193,53.438888],[-6.170192,53.438888],[-6.170117,53.438897],[-6.170097,53.438899],[-6.170079,53.438901],[-6.169985,53.438905],[-6.169857,53.438923],[-6.169785,53.438934],[-6.169551,53.438971],[-6.169146,53.439035],[-6.168807,53.439089],[-6.168527,53.439133],[-6.168435,53.43915],[-6.168284,53.439179],[-6.167873,53.439256],[-6.167448,53.439338],[-6.167143,53.439401],[-6.166738,53.439479],[-6.166356,53.439535],[-6.166291,53.439548],[-6.166235,53.439561],[-6.166009,53.439603],[-6.165958,53.439518],[-6.166056,53.439498],[-6.166171,53.43945],[-6.166193,53.439436],[-6.166214,53.439413],[-6.16625,53.43938],[-6.166327,53.438471],[-6.166453,53.437047],[-6.166504,53.436771],[-6.166477,53.436769],[-6.166465,53.436751],[-6.166445,53.436736],[-6.166423,53.436728],[-6.166377,53.436707],[-6.165827,53.436679],[-6.165476,53.436662],[-6.16544,53.436637],[-6.165434,53.436638],[-6.165388,53.436648],[-6.165363,53.436655],[-6.165345,53.436663],[-6.165331,53.436674],[-6.165316,53.43669],[-6.165322,53.436708],[-6.165324,53.436713],[-6.165322,53.436715],[-6.165315,53.436845],[-6.165313,53.43686],[-6.165285,53.437103],[-6.165285,53.437114],[-6.165293,53.437147],[-6.165164,53.43715],[-6.165292,53.43715],[-6.165365,53.437151],[-6.165364,53.43718],[-6.165364,53.43718],[-6.165402,53.437182],[-6.16543,53.437186],[-6.165429,53.437187],[-6.165328,53.437395],[-6.165285,53.437385],[-6.165281,53.437384],[-6.165248,53.437377],[-6.165217,53.43737],[-6.165077,53.437337],[-6.164816,53.437299],[-6.164781,53.437293],[-6.164625,53.437279],[-6.164474,53.437267],[-6.164352,53.437257],[-6.16433,53.437255],[-6.164076,53.437233],[-6.163809,53.43721],[-6.163706,53.437202],[-6.163679,53.4372],[-6.163668,53.4372],[-6.163669,53.437199],[-6.163578,53.437191],[-6.163901,53.436282],[-6.164108,53.435298],[-6.164505,53.433407],[-6.164641,53.432762],[-6.165955,53.432927],[-6.165905,53.433263],[-6.167278,53.433403],[-6.167387,53.433125],[-6.167443,53.433133],[-6.167236,53.433948],[-6.167178,53.433936],[-6.167265,53.43358],[-6.166496,53.433543],[-6.166357,53.433528],[-6.166357,53.433528],[-6.166274,53.434444],[-6.16602,53.434436],[-6.165997,53.43476],[-6.165993,53.434806],[-6.165989,53.434842],[-6.166086,53.434846],[-6.166071,53.434974],[-6.166016,53.43535],[-6.166014,53.43537],[-6.165995,53.435546],[-6.165995,53.435547],[-6.165936,53.435945],[-6.16591,53.436134],[-6.165834,53.436392],[-6.165812,53.436522],[-6.166056,53.436537],[-6.166422,53.436558],[-6.16645,53.436555],[-6.166487,53.436544],[-6.166509,53.43653],[-6.166517,53.436516],[-6.166523,53.43648],[-6.166527,53.436441],[-6.166534,53.436437],[-6.166552,53.436371],[-6.166562,53.436324],[-6.166569,53.43628],[-6.166582,53.436232],[-6.166594,53.436233],[-6.166599,53.436233],[-6.166624,53.436078],[-6.166637,53.436025],[-6.166649,53.435967],[-6.166655,53.435959],[-6.166658,53.43595],[-6.166754,53.435591],[-6.166804,53.435409],[-6.166857,53.435239],[-6.167007,53.435248],[-6.16714,53.435259],[-6.167239,53.435267],[-6.167325,53.435273],[-6.167657,53.435284],[-6.167665,53.435291],[-6.167676,53.435291],[-6.168085,53.435322],[-6.168735,53.435368],[-6.169479,53.435421],[-6.169496,53.435383],[-6.169613,53.435396],[-6.169601,53.435429],[-6.169589,53.435463],[-6.169142,53.435435],[-6.168738,53.435405],[-6.168543,53.435391],[-6.1683,53.435374],[-6.168118,53.43536],[-6.167931,53.435347],[-6.167785,53.435338],[-6.167654,53.435327],[-6.166998,53.435283],[-6.166954,53.435288],[-6.166877,53.435282],[-6.166854,53.435373],[-6.16679,53.435649],[-6.166727,53.435986],[-6.166576,53.436486],[-6.166543,53.436759],[-6.166577,53.436871],[-6.166564,53.436965],[-6.166526,53.437285],[-6.16651,53.437469],[-6.166497,53.437615],[-6.166494,53.437651],[-6.166492,53.437667],[-6.166463,53.437965],[-6.166423,53.438072],[-6.166332,53.439285],[-6.166416,53.439344],[-6.166546,53.439409],[-6.16668,53.439385],[-6.166716,53.439465],[-6.166723,53.439464],[-6.166826,53.439444],[-6.167226,53.439365],[-6.167602,53.439291],[-6.167988,53.439215],[-6.168491,53.439122],[-6.168702,53.439083],[-6.169172,53.439013],[-6.169333,53.438988],[-6.169336,53.438988],[-6.169627,53.438943],[-6.169806,53.438914],[-6.169976,53.438889],[-6.170107,53.438878],[-6.170191,53.438875],[-6.170757,53.438876],[-6.171164,53.438921],[-6.171209,53.438927],[-6.171298,53.438938],[-6.171318,53.438941],[-6.171667,53.438987],[-6.172038,53.439023],[-6.172475,53.439069],[-6.172952,53.439126],[-6.173368,53.439168],[-6.173732,53.439203],[-6.173794,53.439213],[-6.173878,53.439226],[-6.173927,53.439237],[-6.174063,53.439267],[-6.174261,53.439344],[-6.174656,53.439499],[-6.175045,53.439665],[-6.175379,53.439807],[-6.175747,53.439957],[-6.176033,53.440073],[-6.1761,53.440102],[-6.176236,53.440161],[-6.176406,53.440229],[-6.176602,53.440335],[-6.176376,53.44058],[-6.176299,53.440679],[-6.176207,53.440792],[-6.17612,53.4409],[-6.176057,53.440997],[-6.175997,53.441062],[-6.175966,53.4411],[-6.175936,53.441121],[-6.175864,53.441168],[-6.175711,53.44127],[-6.175589,53.441347],[-6.175434,53.441453],[-6.175216,53.441595],[-6.175048,53.441712],[-6.174917,53.441807],[-6.174855,53.441864],[-6.1748,53.441924],[-6.174693,53.442042],[-6.174619,53.442134],[-6.174459,53.442367],[-6.174358,53.442511],[-6.174279,53.442626],[-6.174174,53.442788],[-6.174064,53.442944],[-6.17401,53.44305],[-6.173976,53.443122],[-6.173963,53.443141],[-6.173939,53.443173],[-6.17392,53.443195],[-6.173896,53.44323],[-6.173869,53.443264],[-6.173847,53.443301],[-6.173821,53.443334],[-6.173796,53.443368],[-6.173764,53.443402],[-6.173749,53.443432],[-6.173733,53.443457],[-6.173715,53.443492],[-6.173694,53.443527],[-6.173682,53.443546],[-6.173667,53.44357],[-6.17365,53.443593],[-6.173634,53.443617],[-6.173624,53.443634],[-6.173614,53.44365],[-6.173603,53.443666],[-6.173595,53.44368],[-6.173583,53.443698],[-6.17357,53.443721],[-6.17356,53.443735],[-6.173553,53.44375],[-6.173544,53.443767],[-6.173537,53.443782],[-6.173528,53.443797],[-6.17352,53.443815],[-6.173509,53.443833],[-6.173502,53.443848],[-6.173489,53.443871],[-6.173474,53.4439],[-6.17346,53.443927],[-6.173453,53.443943],[-6.173445,53.443959],[-6.17344,53.443971],[-6.173433,53.443994],[-6.173425,53.444011],[-6.173418,53.444028],[-6.173415,53.444041],[-6.17341,53.444062],[-6.173402,53.44408],[-6.173398,53.444092],[-6.173391,53.444108],[-6.173388,53.444126],[-6.173382,53.444145],[-6.173379,53.444161],[-6.173375,53.444177],[-6.173371,53.444192],[-6.173366,53.44421],[-6.173364,53.444223],[-6.173358,53.444247],[-6.173356,53.444268],[-6.173352,53.444294],[-6.173347,53.44432],[-6.173347,53.444341],[-6.173345,53.444363],[-6.173345,53.444387],[-6.173345,53.444413],[-6.173344,53.444429],[-6.173345,53.444449],[-6.173344,53.444471],[-6.173345,53.444502],[-6.173347,53.44453],[-6.173349,53.444573],[-6.173354,53.444607],[-6.173354,53.444643],[-6.173358,53.444673],[-6.173362,53.444742],[-6.173364,53.444756],[-6.173368,53.444827],[-6.173366,53.445069],[-6.173364,53.445109],[-6.173364,53.445132],[-6.173364,53.445156],[-6.173362,53.445173],[-6.173359,53.445195],[-6.173358,53.445215],[-6.173358,53.44523],[-6.173353,53.445256],[-6.173349,53.445272],[-6.173347,53.445283],[-6.173336,53.445304],[-6.173331,53.445318],[-6.173328,53.445324],[-6.173322,53.445335],[-6.173317,53.445345],[-6.173309,53.445354],[-6.173302,53.445362],[-6.173293,53.445376],[-6.173253,53.445424],[-6.173141,53.445555],[-6.173035,53.445688],[-6.173009,53.445726],[-6.172995,53.445748],[-6.172975,53.44579],[-6.172971,53.445804],[-6.173148,53.446018],[-6.173208,53.446037],[-6.173388,53.446092],[-6.173631,53.446175],[-6.173719,53.446205],[-6.173887,53.446262],[-6.174202,53.446368],[-6.17418,53.446392]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"64","app_date":"28/10/2011","stroke":"#ed3a26","no_of_units":"76","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development provides for 76 no. dwellings (54 no. two storey and 22 no. dormer 1.5 storey dwellings). The development also includes landscaped public open space; riparian strips; pedest","reg_date":"","3_bed":"12","5_plus":"","reg_ref":"F11A/0386","fg_date":"","other_total":"76"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.138459,53.494438],[-6.139468,53.49457],[-6.139934,53.494632],[-6.140426,53.494691],[-6.140473,53.494697],[-6.140519,53.494702],[-6.140572,53.494708],[-6.140616,53.494714],[-6.140662,53.494719],[-6.140724,53.494726],[-6.140827,53.494739],[-6.140902,53.494747],[-6.140983,53.494757],[-6.141054,53.494765],[-6.141207,53.494784],[-6.14104,53.495477],[-6.140579,53.49544],[-6.140201,53.496747],[-6.139584,53.497249],[-6.139583,53.49727],[-6.13928,53.497266],[-6.139285,53.497194],[-6.139914,53.496682],[-6.140252,53.495415],[-6.138247,53.495245],[-6.136712,53.495165],[-6.134448,53.495266],[-6.134343,53.49527],[-6.134325,53.49394],[-6.134326,53.493924],[-6.136287,53.494164],[-6.136285,53.494181],[-6.136363,53.49419],[-6.136395,53.494194],[-6.13653,53.49421],[-6.136639,53.494223],[-6.136911,53.494255],[-6.137288,53.494304],[-6.137348,53.494312],[-6.137912,53.494373],[-6.138066,53.494388],[-6.138075,53.494389],[-6.138342,53.494423],[-6.138357,53.494425],[-6.138392,53.494429],[-6.138459,53.494438]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"31","4_bed":"26","app_date":"30/03/2012","stroke":"#ed3a26","no_of_units":"99","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of constructing a development on this site (5.14 hectares) incorporating 1) The erection of 99 no. detached, semi-detached & terraced residential units (some with ancillar","reg_date":"","3_bed":"32","5_plus":"10","reg_ref":"F11A/0173","fg_date":"","other_total":"99"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.362881,53.375075],[-6.362953,53.375083],[-6.363039,53.375092],[-6.363231,53.375112],[-6.363256,53.375114],[-6.363546,53.375145],[-6.363564,53.375193],[-6.363553,53.375235],[-6.363545,53.375233],[-6.363525,53.375283],[-6.363539,53.375286],[-6.363449,53.375395],[-6.363395,53.375459],[-6.363361,53.3755],[-6.363247,53.375639],[-6.363197,53.375638],[-6.363162,53.375682],[-6.363187,53.375709],[-6.363133,53.375774],[-6.363006,53.37592],[-6.362997,53.375919],[-6.362991,53.375918],[-6.362986,53.375915],[-6.362958,53.375891],[-6.362948,53.375772],[-6.362939,53.375688],[-6.362934,53.375633],[-6.362929,53.375579],[-6.362922,53.375516],[-6.362918,53.37547],[-6.362916,53.375448],[-6.362913,53.375421],[-6.36291,53.375378],[-6.362904,53.375328],[-6.362898,53.375264],[-6.362893,53.375208],[-6.362886,53.375132],[-6.362881,53.375075]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"8","4_bed":"","app_date":"17/07/2012","stroke":"#ed3a26","no_of_units":"16","1_bed":"2","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"Demolition and replacement of existing 2 storey dwelling with residential building of 3 storeys to consist of 2 No.x1 bed simplex, 8 No.x2 bed simplex, 6 No.x3 bed duplex \"own door\" units (16 no. tota","reg_date":"","3_bed":"6","5_plus":"","reg_ref":"F06A/1302/E1","fg_date":"","other_total":"16"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.319534,53.396023],[-6.319486,53.395859],[-6.319482,53.395843],[-6.319447,53.395712],[-6.319443,53.395696],[-6.319432,53.395651],[-6.319419,53.395605],[-6.319408,53.395564],[-6.319396,53.395523],[-6.319383,53.395482],[-6.319365,53.395432],[-6.319358,53.395411],[-6.319291,53.395219],[-6.31928,53.395185],[-6.319251,53.395104],[-6.319241,53.395073],[-6.319198,53.394912],[-6.319189,53.394881],[-6.319169,53.394811],[-6.319147,53.39472],[-6.31914,53.394691],[-6.319136,53.394672],[-6.319135,53.394654],[-6.319135,53.394647],[-6.319135,53.394631],[-6.319137,53.394624],[-6.31914,53.394615],[-6.319144,53.394602],[-6.319152,53.394589],[-6.319154,53.394573],[-6.319156,53.394559],[-6.319155,53.394459],[-6.319158,53.394452],[-6.319161,53.394439],[-6.319153,53.394407],[-6.319148,53.394384],[-6.319142,53.394359],[-6.319131,53.39435],[-6.319159,53.394338],[-6.319374,53.394382],[-6.319426,53.394392],[-6.319506,53.394382],[-6.319541,53.394378],[-6.319628,53.394393],[-6.319687,53.394403],[-6.320135,53.39448],[-6.320239,53.394498],[-6.320414,53.394528],[-6.320467,53.394537],[-6.320494,53.394414],[-6.320523,53.394279],[-6.320542,53.394193],[-6.320636,53.393764],[-6.320695,53.393496],[-6.320696,53.393492],[-6.320706,53.393492],[-6.320749,53.393344],[-6.320757,53.393314],[-6.320774,53.393252],[-6.320811,53.393118],[-6.320823,53.393069],[-6.32089,53.39288],[-6.320894,53.392871],[-6.320923,53.392812],[-6.320941,53.392777],[-6.320978,53.392713],[-6.321,53.392679],[-6.321094,53.392549],[-6.321136,53.392498],[-6.321158,53.392471],[-6.32118,53.392445],[-6.321196,53.392425],[-6.321236,53.392442],[-6.321336,53.392486],[-6.321524,53.392569],[-6.321674,53.392636],[-6.321815,53.392699],[-6.32195,53.392759],[-6.322075,53.392815],[-6.32212,53.392836],[-6.32227,53.392904],[-6.322366,53.392947],[-6.322462,53.392991],[-6.322567,53.39304],[-6.322653,53.39308],[-6.322749,53.393124],[-6.322817,53.393157],[-6.322899,53.393198],[-6.322965,53.393231],[-6.323028,53.393265],[-6.323113,53.393313],[-6.323176,53.393348],[-6.323228,53.393376],[-6.323268,53.393399],[-6.323304,53.393422],[-6.323341,53.393448],[-6.323372,53.393472],[-6.323405,53.393499],[-6.323438,53.393528],[-6.323477,53.393567],[-6.323517,53.39361],[-6.323566,53.393664],[-6.323613,53.393715],[-6.32366,53.393765],[-6.323682,53.39379],[-6.323732,53.393846],[-6.323766,53.393889],[-6.323807,53.393942],[-6.323824,53.393964],[-6.323858,53.394007],[-6.323873,53.394027],[-6.323895,53.394057],[-6.323853,53.394082],[-6.323899,53.394111],[-6.323937,53.394101],[-6.324078,53.39422],[-6.324103,53.39424],[-6.3242,53.39431],[-6.324235,53.39433],[-6.324292,53.394356],[-6.324342,53.394377],[-6.324426,53.394406],[-6.324516,53.394435],[-6.324578,53.394452],[-6.324697,53.39448],[-6.324812,53.394507],[-6.324953,53.394541],[-6.325064,53.394567],[-6.325173,53.394593],[-6.32526,53.394614],[-6.3254,53.394647],[-6.32552,53.394676],[-6.325606,53.394696],[-6.325676,53.394712],[-6.32574,53.394727],[-6.325784,53.39474],[-6.325848,53.39476],[-6.3259,53.394776],[-6.32592,53.394781],[-6.325946,53.394787],[-6.326,53.394798],[-6.326165,53.394831],[-6.326249,53.394848],[-6.326347,53.394869],[-6.326382,53.394878],[-6.326483,53.394907],[-6.326615,53.394947],[-6.326746,53.394987],[-6.326871,53.395025],[-6.326968,53.395052],[-6.327094,53.395088],[-6.327175,53.395111],[-6.32724,53.395128],[-6.327417,53.395176],[-6.327424,53.395178],[-6.327512,53.395204],[-6.327592,53.395226],[-6.327604,53.395229],[-6.327657,53.395242],[-6.327737,53.395267],[-6.327771,53.39528],[-6.327782,53.395283],[-6.327834,53.395295],[-6.327861,53.395301],[-6.327875,53.395304],[-6.32794,53.395326],[-6.328134,53.395395],[-6.328313,53.395459],[-6.328426,53.395502],[-6.328616,53.395574],[-6.328657,53.39559],[-6.328745,53.395626],[-6.328781,53.395641],[-6.32889,53.395697],[-6.328984,53.39575],[-6.329096,53.395815],[-6.329204,53.395881],[-6.329301,53.395945],[-6.329339,53.395973],[-6.329381,53.396006],[-6.329548,53.396129],[-6.329603,53.396171],[-6.32968,53.396227],[-6.329703,53.396244],[-6.329735,53.396267],[-6.32974,53.39627],[-6.329742,53.396273],[-6.329751,53.396283],[-6.32977,53.396308],[-6.329515,53.396417],[-6.329111,53.396306],[-6.328873,53.396249],[-6.328656,53.396199],[-6.328309,53.396124],[-6.327943,53.396047],[-6.327907,53.396039],[-6.327774,53.396],[-6.327571,53.39594],[-6.327533,53.395928],[-6.327389,53.395884],[-6.327366,53.395876],[-6.327212,53.395829],[-6.327007,53.395771],[-6.326895,53.395742],[-6.326852,53.395732],[-6.326609,53.395678],[-6.326495,53.39567],[-6.326252,53.395638],[-6.325719,53.395568],[-6.325601,53.395552],[-6.325577,53.395549],[-6.325543,53.395582],[-6.32549,53.395631],[-6.325437,53.395681],[-6.325418,53.395699],[-6.325368,53.395703],[-6.325236,53.39568],[-6.325189,53.395671],[-6.325046,53.395638],[-6.325008,53.39563],[-6.324774,53.395567],[-6.324627,53.395527],[-6.324202,53.395426],[-6.324004,53.395381],[-6.323996,53.395358],[-6.32398,53.395308],[-6.323976,53.395295],[-6.323938,53.395287],[-6.323905,53.395292],[-6.323897,53.395309],[-6.32388,53.395347],[-6.323837,53.39544],[-6.323771,53.395583],[-6.323715,53.395704],[-6.323694,53.395875],[-6.323685,53.395938],[-6.32368,53.395976],[-6.32363,53.395974],[-6.323336,53.395965],[-6.32299,53.395955],[-6.32271,53.395948],[-6.322692,53.395947],[-6.322413,53.395937],[-6.322212,53.395943],[-6.322011,53.395948],[-6.321803,53.395953],[-6.321576,53.395957],[-6.321438,53.39596],[-6.321327,53.395961],[-6.321158,53.395965],[-6.320948,53.395972],[-6.320884,53.395974],[-6.320746,53.395979],[-6.320733,53.395979],[-6.320489,53.395988],[-6.320205,53.395999],[-6.320143,53.396001],[-6.319851,53.396012],[-6.3198,53.396013],[-6.319534,53.396023]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"","app_date":"05/03/2012","stroke":"#ed3a26","no_of_units":"351","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"For a mixed use development consisting of 351 no. residential units, a local centre and a cr\u00e8che facility. The residential element consists of houses, apartments and duplexes. The Local Centre compr","reg_date":"","3_bed":"","5_plus":"","reg_ref":"F05A/1869/E1","fg_date":"","other_total":"0"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.167683,53.432148],[-6.167668,53.43221],[-6.167653,53.432192],[-6.167644,53.432225],[-6.167634,53.432263],[-6.167318,53.432256],[-6.167326,53.432131],[-6.167665,53.432146],[-6.167662,53.432166],[-6.167683,53.432148]]],[[[-6.17418,53.446392],[-6.174072,53.446356],[-6.173799,53.446264],[-6.173558,53.446183],[-6.173432,53.44614],[-6.173372,53.44612],[-6.173339,53.446109],[-6.173295,53.446097],[-6.173262,53.446088],[-6.173232,53.446079],[-6.173197,53.44607],[-6.173164,53.446061],[-6.173125,53.446052],[-6.172962,53.445959],[-6.172869,53.44579],[-6.172888,53.445768],[-6.173008,53.445623],[-6.17308,53.445537],[-6.173169,53.44543],[-6.173224,53.445372],[-6.173262,53.445316],[-6.173287,53.445259],[-6.1733,53.445207],[-6.173308,53.445155],[-6.173311,53.445083],[-6.173312,53.445049],[-6.173312,53.444992],[-6.173312,53.444908],[-6.173307,53.444805],[-6.173299,53.444587],[-6.173294,53.444524],[-6.173291,53.444421],[-6.173305,53.444266],[-6.173317,53.444201],[-6.173331,53.444141],[-6.173354,53.444073],[-6.173402,53.443952],[-6.173448,53.443858],[-6.17346,53.443835],[-6.173501,53.443758],[-6.173556,53.443659],[-6.173615,53.443567],[-6.173655,53.443496],[-6.173714,53.443404],[-6.173821,53.443256],[-6.173887,53.443163],[-6.173914,53.443121],[-6.173997,53.442955],[-6.174202,53.442627],[-6.174409,53.442303],[-6.174554,53.442065],[-6.174721,53.441889],[-6.175115,53.441583],[-6.17544,53.441383],[-6.175717,53.441216],[-6.175824,53.44114],[-6.175919,53.441055],[-6.176088,53.440847],[-6.176253,53.440603],[-6.176356,53.440447],[-6.1764,53.440304],[-6.176246,53.440226],[-6.17616,53.440185],[-6.17612,53.440161],[-6.176049,53.440142],[-6.176018,53.440127],[-6.17601,53.440123],[-6.175951,53.440102],[-6.175917,53.440087],[-6.17578,53.440035],[-6.175615,53.439962],[-6.175525,53.439924],[-6.175263,53.439809],[-6.175179,53.439773],[-6.175165,53.439767],[-6.174979,53.439688],[-6.174701,53.439576],[-6.174478,53.439488],[-6.174162,53.43936],[-6.173981,53.43929],[-6.173945,53.439278],[-6.173878,53.439272],[-6.173691,53.439254],[-6.173419,53.439223],[-6.172988,53.439177],[-6.172598,53.439132],[-6.17226,53.439092],[-6.171908,53.439053],[-6.171608,53.43902],[-6.171295,53.438985],[-6.170978,53.438948],[-6.170685,53.438915],[-6.17053,53.438894],[-6.170417,53.438891],[-6.170272,53.438887],[-6.170193,53.438888],[-6.170192,53.438888],[-6.170117,53.438897],[-6.170097,53.438899],[-6.170079,53.438901],[-6.169985,53.438905],[-6.169857,53.438923],[-6.169785,53.438934],[-6.169551,53.438971],[-6.169146,53.439035],[-6.168807,53.439089],[-6.168527,53.439133],[-6.168435,53.43915],[-6.168284,53.439179],[-6.167873,53.439256],[-6.167448,53.439338],[-6.167143,53.439401],[-6.166738,53.439479],[-6.166356,53.439535],[-6.166291,53.439548],[-6.166235,53.439561],[-6.166009,53.439603],[-6.165958,53.439518],[-6.166056,53.439498],[-6.166171,53.43945],[-6.166193,53.439436],[-6.166214,53.439413],[-6.16625,53.43938],[-6.166327,53.438471],[-6.166453,53.437047],[-6.166504,53.436771],[-6.166477,53.436769],[-6.166465,53.436751],[-6.166445,53.436736],[-6.166423,53.436728],[-6.166377,53.436707],[-6.165827,53.436679],[-6.165476,53.436662],[-6.16544,53.436637],[-6.165434,53.436638],[-6.165388,53.436648],[-6.165363,53.436655],[-6.165345,53.436663],[-6.165331,53.436674],[-6.165316,53.43669],[-6.165322,53.436708],[-6.165324,53.436713],[-6.165322,53.436715],[-6.165315,53.436845],[-6.165313,53.43686],[-6.165285,53.437103],[-6.165285,53.437114],[-6.165293,53.437147],[-6.165164,53.43715],[-6.165292,53.43715],[-6.165365,53.437151],[-6.165364,53.43718],[-6.165364,53.43718],[-6.165402,53.437182],[-6.16543,53.437186],[-6.165429,53.437187],[-6.165328,53.437395],[-6.165285,53.437385],[-6.165281,53.437384],[-6.165248,53.437377],[-6.165217,53.43737],[-6.165077,53.437337],[-6.164816,53.437299],[-6.164781,53.437293],[-6.164625,53.437279],[-6.164474,53.437267],[-6.164352,53.437257],[-6.16433,53.437255],[-6.164076,53.437233],[-6.163809,53.43721],[-6.163706,53.437202],[-6.163679,53.4372],[-6.163668,53.4372],[-6.163669,53.437199],[-6.163578,53.437191],[-6.163901,53.436282],[-6.164108,53.435298],[-6.164505,53.433407],[-6.164641,53.432762],[-6.165955,53.432927],[-6.165905,53.433263],[-6.167278,53.433403],[-6.167387,53.433125],[-6.167443,53.433133],[-6.167236,53.433948],[-6.167178,53.433936],[-6.167265,53.43358],[-6.166496,53.433543],[-6.166357,53.433528],[-6.166357,53.433528],[-6.166274,53.434444],[-6.16602,53.434436],[-6.165997,53.43476],[-6.165993,53.434806],[-6.165989,53.434842],[-6.166086,53.434846],[-6.166071,53.434974],[-6.166016,53.43535],[-6.166014,53.43537],[-6.165995,53.435546],[-6.165995,53.435547],[-6.165936,53.435945],[-6.16591,53.436134],[-6.165834,53.436392],[-6.165812,53.436522],[-6.166056,53.436537],[-6.166422,53.436558],[-6.16645,53.436555],[-6.166487,53.436544],[-6.166509,53.43653],[-6.166517,53.436516],[-6.166523,53.43648],[-6.166527,53.436441],[-6.166534,53.436437],[-6.166552,53.436371],[-6.166562,53.436324],[-6.166569,53.43628],[-6.166582,53.436232],[-6.166594,53.436233],[-6.166599,53.436233],[-6.166624,53.436078],[-6.166637,53.436025],[-6.166649,53.435967],[-6.166655,53.435959],[-6.166658,53.43595],[-6.166754,53.435591],[-6.166804,53.435409],[-6.166857,53.435239],[-6.167007,53.435248],[-6.16714,53.435259],[-6.167239,53.435267],[-6.167325,53.435273],[-6.167657,53.435284],[-6.167665,53.435291],[-6.167676,53.435291],[-6.168085,53.435322],[-6.168735,53.435368],[-6.169479,53.435421],[-6.169496,53.435383],[-6.169613,53.435396],[-6.169601,53.435429],[-6.169589,53.435463],[-6.169142,53.435435],[-6.168738,53.435405],[-6.168543,53.435391],[-6.1683,53.435374],[-6.168118,53.43536],[-6.167931,53.435347],[-6.167785,53.435338],[-6.167654,53.435327],[-6.166998,53.435283],[-6.166954,53.435288],[-6.166877,53.435282],[-6.166854,53.435373],[-6.16679,53.435649],[-6.166727,53.435986],[-6.166576,53.436486],[-6.166543,53.436759],[-6.166577,53.436871],[-6.166564,53.436965],[-6.166526,53.437285],[-6.16651,53.437469],[-6.166497,53.437615],[-6.166494,53.437651],[-6.166492,53.437667],[-6.166463,53.437965],[-6.166423,53.438072],[-6.166332,53.439285],[-6.166416,53.439344],[-6.166546,53.439409],[-6.16668,53.439385],[-6.166716,53.439465],[-6.166723,53.439464],[-6.166826,53.439444],[-6.167226,53.439365],[-6.167602,53.439291],[-6.167988,53.439215],[-6.168491,53.439122],[-6.168702,53.439083],[-6.169172,53.439013],[-6.169333,53.438988],[-6.169336,53.438988],[-6.169627,53.438943],[-6.169806,53.438914],[-6.169976,53.438889],[-6.170107,53.438878],[-6.170191,53.438875],[-6.170757,53.438876],[-6.171164,53.438921],[-6.171209,53.438927],[-6.171298,53.438938],[-6.171318,53.438941],[-6.171667,53.438987],[-6.172038,53.439023],[-6.172475,53.439069],[-6.172952,53.439126],[-6.173368,53.439168],[-6.173732,53.439203],[-6.173794,53.439213],[-6.173878,53.439226],[-6.173927,53.439237],[-6.174063,53.439267],[-6.174261,53.439344],[-6.174656,53.439499],[-6.175045,53.439665],[-6.175379,53.439807],[-6.175747,53.439957],[-6.176033,53.440073],[-6.1761,53.440102],[-6.176236,53.440161],[-6.176406,53.440229],[-6.176602,53.440335],[-6.176376,53.44058],[-6.176299,53.440679],[-6.176207,53.440792],[-6.17612,53.4409],[-6.176057,53.440997],[-6.175997,53.441062],[-6.175966,53.4411],[-6.175936,53.441121],[-6.175864,53.441168],[-6.175711,53.44127],[-6.175589,53.441347],[-6.175434,53.441453],[-6.175216,53.441595],[-6.175048,53.441712],[-6.174917,53.441807],[-6.174855,53.441864],[-6.1748,53.441924],[-6.174693,53.442042],[-6.174619,53.442134],[-6.174459,53.442367],[-6.174358,53.442511],[-6.174279,53.442626],[-6.174174,53.442788],[-6.174064,53.442944],[-6.17401,53.44305],[-6.173976,53.443122],[-6.173963,53.443141],[-6.173939,53.443173],[-6.17392,53.443195],[-6.173896,53.44323],[-6.173869,53.443264],[-6.173847,53.443301],[-6.173821,53.443334],[-6.173796,53.443368],[-6.173764,53.443402],[-6.173749,53.443432],[-6.173733,53.443457],[-6.173715,53.443492],[-6.173694,53.443527],[-6.173682,53.443546],[-6.173667,53.44357],[-6.17365,53.443593],[-6.173634,53.443617],[-6.173624,53.443634],[-6.173614,53.44365],[-6.173603,53.443666],[-6.173595,53.44368],[-6.173583,53.443698],[-6.17357,53.443721],[-6.17356,53.443735],[-6.173553,53.44375],[-6.173544,53.443767],[-6.173537,53.443782],[-6.173528,53.443797],[-6.17352,53.443815],[-6.173509,53.443833],[-6.173502,53.443848],[-6.173489,53.443871],[-6.173474,53.4439],[-6.17346,53.443927],[-6.173453,53.443943],[-6.173445,53.443959],[-6.17344,53.443971],[-6.173433,53.443994],[-6.173425,53.444011],[-6.173418,53.444028],[-6.173415,53.444041],[-6.17341,53.444062],[-6.173402,53.44408],[-6.173398,53.444092],[-6.173391,53.444108],[-6.173388,53.444126],[-6.173382,53.444145],[-6.173379,53.444161],[-6.173375,53.444177],[-6.173371,53.444192],[-6.173366,53.44421],[-6.173364,53.444223],[-6.173358,53.444247],[-6.173356,53.444268],[-6.173352,53.444294],[-6.173347,53.44432],[-6.173347,53.444341],[-6.173345,53.444363],[-6.173345,53.444387],[-6.173345,53.444413],[-6.173344,53.444429],[-6.173345,53.444449],[-6.173344,53.444471],[-6.173345,53.444502],[-6.173347,53.44453],[-6.173349,53.444573],[-6.173354,53.444607],[-6.173354,53.444643],[-6.173358,53.444673],[-6.173362,53.444742],[-6.173364,53.444756],[-6.173368,53.444827],[-6.173366,53.445069],[-6.173364,53.445109],[-6.173364,53.445132],[-6.173364,53.445156],[-6.173362,53.445173],[-6.173359,53.445195],[-6.173358,53.445215],[-6.173358,53.44523],[-6.173353,53.445256],[-6.173349,53.445272],[-6.173347,53.445283],[-6.173336,53.445304],[-6.173331,53.445318],[-6.173328,53.445324],[-6.173322,53.445335],[-6.173317,53.445345],[-6.173309,53.445354],[-6.173302,53.445362],[-6.173293,53.445376],[-6.173253,53.445424],[-6.173141,53.445555],[-6.173035,53.445688],[-6.173009,53.445726],[-6.172995,53.445748],[-6.172975,53.44579],[-6.172971,53.445804],[-6.173148,53.446018],[-6.173208,53.446037],[-6.173388,53.446092],[-6.173631,53.446175],[-6.173719,53.446205],[-6.173887,53.446262],[-6.174202,53.446368],[-6.17418,53.446392]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"","4_bed":"64","app_date":"28/10/2011","stroke":"#ed3a26","no_of_units":"76","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"A residential development provides for 76 no. dwellings (54 no. two storey and 22 no. dormer 1.5 storey dwellings). The development also includes landscaped public open space; riparian strips; pedest","reg_date":"","3_bed":"12","5_plus":"","reg_ref":"F11A/0386","fg_date":"","other_total":"76"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.062189,53.103652],[-6.062211,53.102454],[-6.059775,53.10245],[-6.058611,53.102515],[-6.058649,53.103607],[-6.05992,53.103626],[-6.062189,53.103652]]]]},"type":"Feature","properties":{"status":"DECISION MADE","":"","deision_date":"07/10/2014","fill-opacity":0.5,"2_bed":"","4_bed":"23","app_date":"13/03/2014","stroke":"#ed3a26","no_of_units":"62","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"WCC","decision":"CONDITIONAL","short_desc":"the construction of 62 no. residential units, with a total residential gross floor area of c.7,569 s...","reg_date":"","3_bed":"","5_plus":"39","reg_ref":"141212","fg_date":"","other_total":"62"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.138459,53.494438],[-6.139468,53.49457],[-6.139934,53.494632],[-6.140426,53.494691],[-6.140473,53.494697],[-6.140519,53.494702],[-6.140572,53.494708],[-6.140616,53.494714],[-6.140662,53.494719],[-6.140724,53.494726],[-6.140827,53.494739],[-6.140902,53.494747],[-6.140983,53.494757],[-6.141054,53.494765],[-6.141207,53.494784],[-6.14104,53.495477],[-6.140579,53.49544],[-6.140201,53.496747],[-6.139584,53.497249],[-6.139583,53.49727],[-6.13928,53.497266],[-6.139285,53.497194],[-6.139914,53.496682],[-6.140252,53.495415],[-6.138247,53.495245],[-6.136712,53.495165],[-6.134448,53.495266],[-6.134343,53.49527],[-6.134325,53.49394],[-6.134326,53.493924],[-6.136287,53.494164],[-6.136285,53.494181],[-6.136363,53.49419],[-6.136395,53.494194],[-6.13653,53.49421],[-6.136639,53.494223],[-6.136911,53.494255],[-6.137288,53.494304],[-6.137348,53.494312],[-6.137912,53.494373],[-6.138066,53.494388],[-6.138075,53.494389],[-6.138342,53.494423],[-6.138357,53.494425],[-6.138392,53.494429],[-6.138459,53.494438]]]]},"type":"Feature","properties":{"status":"Decided","":"","deision_date":"","fill-opacity":0.5,"2_bed":"31","4_bed":"26","app_date":"30/03/2012","stroke":"#ed3a26","no_of_units":"99","1_bed":"","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"FCC","decision":"","short_desc":"The development will consist of constructing a development on this site (5.14 hectares) incorporating 1) The erection of 99 no. detached, semi-detached & terraced residential units (some with ancillar","reg_date":"","3_bed":"32","5_plus":"10","reg_ref":"F11A/0173","fg_date":"","other_total":"99"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.493383,53.297289],[-6.493391,53.297316],[-6.493228,53.297363],[-6.4932,53.29737],[-6.493092,53.297391],[-6.493013,53.297419],[-6.492878,53.29744],[-6.492767,53.297458],[-6.492747,53.297419],[-6.492763,53.297396],[-6.492629,53.297273],[-6.492773,53.297236],[-6.492881,53.297216],[-6.493,53.297365],[-6.493207,53.297327],[-6.493383,53.297289]]]]},"type":"Feature","properties":{"status":"","":"","deision_date":"28/02/2014","fill-opacity":0.5,"2_bed":"0","4_bed":"0","app_date":"07/01/2014","stroke":"#ed3a26","no_of_units":"1","1_bed":"0","stroke-width":2,"fill":"#555555","stroke-opacity":1,"la":"SDCC","decision":"GRANT EXTENSION OF DURATION OF PERM.","short_desc":"The demolition of the existing single storey three bedroom house and garage and its replacement by the construction of a new three-storey dwelling house. This house contains 2 no. dormer windows on fr","reg_date":"","3_bed":"1","5_plus":"0","reg_ref":"SD08A/0723/EP","fg_date":"N/A","other_total":"1"}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[-6.319534,53.396023],[-6.319486,53.395859],[-6.319482,53.395843],[-6.319447,53.395712],[-6.319443,53.395696],[-6.319432,53.395651],[-6.319419,53.395605],[-6.319408,53.395564],[-6.319396,53.395523],[-6.319383,53.395482],[-6.319365,53.395432],[-6.319358,53.395411],[-6.319291,53.395219],[-6.31928,53.395185],[-6.319251,53.395104],[-6.319241,53.395073],[-6.319198,53.394912],[-6.319189,53.394881],[-6.319169,53.394811],[-6.319147,53.39472],[-6.31914,53.394691],[-6.319136,53.394672],[-6.319135,53.394654],[-6.319135,53.394647],[-6.319135,53.394631],[-6.319137,53.394624],[-6.31914,53.394615],[-6.319144,53.394602],[-6.319152,53.394589],[-6.319154,53.394573],[-6.319156,53.394559],[-6.319155,53.394459],[-6.319158,53.394452],[-6.319161,53.394439],[-6.319153,53.394407],[-6.319148,53.394384],[-6.319142,53.394359],[-6.319131,53.39435],[-6.319159,53.394338],[-6.319374,53.394382],[-6.319426,53.394392],[-6.319506,53.394382],[-6.319541,53.394378],[-6.319628,53.394393],[-6.319687,53.394403],[-6.320135,53.39448],[-6.320239,53.394498],[-6.320414,53.394528],[-6.320467,53.394537],[-6.320494,53.394414],[-6.320523,53.394279],[-6.320542,53.394193],[-6.320636,53.393764],[-6.320695,53.393496],[-6.320696,53.393492],[-6.320706,53.393492],[-6.320749,53.393344],[-6.320757,53.393314],[-6.320774,53.393252],[-6.320811,53.393118],[-6.320823,53.393069],[-6.32089,53.39288],[-6.320894,53.392871],[-6.320923,53.392812],[-6.320941,53.392777],[-6.320978,53.392713],[-6.321,53.392679],[-6.321094,53.392549],[-6.321136,53.392498],[-6.321158,53.392471],[-6.32118,53.392445],[-6.321196,53.392425],[-6.321236,53.392442],[-6.321336,53.392486],[-6.321524,53.392569],[-6.321674,53.392636],[-6.321815,53.392699],[-6.32195,53.392759],[-6.322075,53.392815],[-6.32212,53.392836],[-6.32227,53.392904],[-6.322366,53.392947],[-6.322462,53.392991],[-6.322567,53.39304],[-6.322653,53.39308],[-6.322749,53.393124],[-6.322817,53.393157],[-6.322899,53.393198],[-6.322965,53.393231],[-6.323028,53.393265],[-6.323113,53.393313],[-6.323176,53.393348],[-6.323228,53.393376],[-6.323268,53.393399],[-6.323304,53.393422],[-6.323341,53.393448],[-6.323372,53.393472],[-6.323405,53.393499],[-6.323438,53.393528],[-6.323477,53.393567],[-6.323517,53.39361],[-6.323566,53.393664],[-6.323613,53.393715],[-6.32366,53.393765],[-6.323682,53.39379],[-6.323732,53.393846],[-6.323766,53.393889],[-6.323807,53.393942],[-6.323824,53.393964],[-6.323858,53.394007],[-6.323873,53.394027],[-6.323895,53.394057],[-6.323853,53.394082],[-6.323899,53.394111],[-6.323937,53.394101],[-6.324078,53.39422],[-6.324103,53.39424],[-6.3242,53.39431],[-6.324235,53.39433],[-6.324292,53.394356],[-6.324342,53.394377],[-6.324426,53.394406],[-6.324516,53.394435],[-6.324578,53.394452],[-6.324697,53.39448],[-6.324812,53.394507],[-6.324953,53.394541],[-6.325064,53.394567],[-6.325173,53.394593],[-6.32526,53.394614],[-6.3254,53.394647],[-6.32552,53.394676],[-6.325606,53.394696],[-6.325676,53.394712],[-6.32574,53.394727],[-6.325784,53.39474],[-6.325848,53.39476],[-6.3259,53.394776],[-6.32592,53.394781],[-6.325946,53.394787],[-6.326,53.394798],[-6.326165,53.394831],[-6.326249,53.394848],[-6.326347,53.394869],[-6.326382,53.394878],[-6.326483,53.394907],[-6.326615,53.394947],[-6.326746,53.394987],[-6.326871,53.395025],[-6.326968,53.395052],[-6.327094,53.395088],[-6.327175,53.395111],[-6.32724,53.395128],[-6.327417,53.395176],[-6.327424,53.395178],[-6.327512,53.395204],[-6.327592,53.395226],[-6.327604,53.395229],[-6.327657,53.395242],[-6.327737,53.395267],[-6.327771,53.39528],[-6.327782,53.395283],[-6.327834,53.395295],[-6.327861,53.395301],[-6.327875,53.395304],[-6.32794,53.395326],[-6.328134,53.395395],[-6.328313,53.395459],[-6.328426,53.395502],[-6.328616,53.395574],[-6.328657,53.39559],[-6.328745,53.395626],[-6.328781,53.395641],[-6.32889,53.395697],[-6.328984,53.39575],[-6.329096,53.395815],[-6.329204,53.395881],[-6.329301,53.395945],[-6.329339,53.395973],[-6.329381,53.396006],[-6.329548,53.396129],[-6.329603,53.396171],[-6.32968,53.396227],[-6.329703,53.396244],[-6.329735,53.396267],[-6.32974,53.39627],[-6.329742,53.396273],[-6.329751,53.396283],[-6.32977,53.396308],[-6.329515,53.396417],[-6.329111,53.396306],[-6.328873,53.396249],[-6.328656,53.396199],[-6.328309,53.396124],[-6.327943,53.396047],[-6.327907,53.396039],[-6.327774,53.396],[-6.327571,53.39594],[-6.327533,53.395928],[-6.327389,53.395884],[-6.327366,53.395876],[-6.327212,53.395829],[-6.327007,53.395771],[-6.326895,53.395742],[-6.326852,53.395732],[-6.326609,53.395678],[-6.326495,53.39567],[-6.326252,53.395638],[-6.325719,53.395568],[-6.325601,53.395552],[-6.325577,53.395549],[-6.325543,53.395582],[-6.32549,53.395631],[-6.325437,53.395681],[-6.325418,53.395699],[-6.325368,53.395703],[-6.325236,53.39568],[-6.325189,53.395671],[-6.325046,53.395638],[-6.325008,53.39563],[-6.324774,53.395567],[-6.324627,53.395527],[-6.324202,53.395426],[-6.324004,53.395381],[-6.323996,53.395358],[-6.32398,53.395308],[-6.323976,53.395295],[-6.323938,53.395287],[-6.323905,53.395292],[-6.323897,53.395309],[-6.32388,53.395347],[-6.323837,53.39544],[-6.323771,53.395583],[-6.323715,53.395704],[-6.323694,53.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment