Skip to content

Instantly share code, notes, and snippets.

@tomstove
Created April 26, 2013 10:35
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 tomstove/5466369 to your computer and use it in GitHub Desktop.
Save tomstove/5466369 to your computer and use it in GitHub Desktop.
Auckland with D3
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.
<!DOCTYPE html>
<head>
<style>
.buildings {
fill: steelblue;
}
.roads {
fill: none;
stroke: orange;
stroke-width: 0.3px;
}
.trees {
fill: red;
fill-opacity: 0.1;
}
.landuse {
fill: #ccc;
fill-opacity: 0.1;
}
</style>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
</head>
<body>
<script>
/* Longitude and latitude data for 'clipdst':
174.7236442566 -36.879620605 174.8223495483 -36.8189047565 */
var width = 960,
height = 500;
var projection = d3.geo.mercator()
.translate([width/2, height/2])
.center([174.77299690245002, -36.84926268075])
.scale(600000);
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var buildings = svg.append("g");
var roads = svg.append("g");
var trees = svg.append("g");
var landuse = svg.append("g");
d3.json('buildings.json', function(err, data) {
buildings.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "buildings")
.attr("d", path);
});
d3.json('roads.json', function(err, data) {
roads.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "roads")
.attr("d", path);
});
d3.json('trees.json', function(err, data) {
trees.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "trees")
.attr("d", path);
});
d3.json('landuse.json', function(err, data) {
landuse.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "landuse")
.attr("d", path);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "osm_id": 11039598.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7963765, -36.828549 ], [ 174.796859, -36.8284702 ], [ 174.7975973, -36.828677 ], [ 174.7977716, -36.8288306 ], [ 174.7977974, -36.8303302 ], [ 174.79757, -36.8306452 ], [ 174.797506199999987, -36.830755 ], [ 174.7970009, -36.8317894 ], [ 174.7968787, -36.8320338 ], [ 174.7956651, -36.8318568 ], [ 174.7950128, -36.8318087 ], [ 174.796015399999987, -36.8300079 ], [ 174.7956565, -36.8298705 ], [ 174.7963765, -36.828549 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 13712237.0, "name": null, "type": "cemetery" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8182965, -36.8503973 ], [ 174.8186656, -36.8508368 ], [ 174.818039, -36.8511459 ], [ 174.8176957, -36.8507544 ], [ 174.8182965, -36.8503973 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 15091356.0, "name": null, "type": "military" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7829356, -36.830093 ], [ 174.7842987, -36.8305691 ], [ 174.7842564, -36.8306523 ], [ 174.782893300000012, -36.83018 ], [ 174.7829356, -36.830093 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 15975330.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7587823, -36.8569911 ], [ 174.757453199999986, -36.8564326 ], [ 174.757460900000012, -36.8563228 ], [ 174.7584229, -36.855505 ], [ 174.7584487, -36.8554837 ], [ 174.758488, -36.8554748 ], [ 174.7585413, -36.855491 ], [ 174.758565299999987, -36.8555264 ], [ 174.7587823, -36.8569911 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 23616614.0, "name": null, "type": "military" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.786893, -36.8237285 ], [ 174.7877762, -36.8234631 ], [ 174.7882539, -36.8233343 ], [ 174.7892898, -36.8233436 ], [ 174.7902387, -36.8238119 ], [ 174.790697, -36.8242262 ], [ 174.791783900000013, -36.8250271 ], [ 174.7921605, -36.8253135 ], [ 174.792284200000012, -36.8255759 ], [ 174.7922274, -36.8258789 ], [ 174.79163650000001, -36.8260865 ], [ 174.7907435, -36.8256479 ], [ 174.7893278, -36.8256485 ], [ 174.789187199999986, -36.8269839 ], [ 174.7885403, -36.8268836 ], [ 174.7888149, -36.8252896 ], [ 174.7886986, -36.825 ], [ 174.787508, -36.8240029 ], [ 174.7873064, -36.8239056 ], [ 174.7871077, -36.8238589 ], [ 174.786969199999987, -36.8238166 ], [ 174.786893, -36.8237285 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 23907609.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7738228, -36.8453018 ], [ 174.7739353, -36.8452869 ], [ 174.7743135, -36.8454981 ], [ 174.774430099999989, -36.8455632 ], [ 174.7749981, -36.8458804 ], [ 174.7749355, -36.8460359 ], [ 174.7749044, -36.8461132 ], [ 174.7748134, -36.8463394 ], [ 174.7746453, -36.8467573 ], [ 174.7743173, -36.8466668 ], [ 174.7741298, -36.8466151 ], [ 174.773769499999986, -36.8465157 ], [ 174.7736188, -36.8464741 ], [ 174.7732809, -36.8463809 ], [ 174.7735336, -36.8457797 ], [ 174.7735739, -36.8456838 ], [ 174.7736874, -36.8454139 ], [ 174.7738228, -36.8453018 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 23921302.0, "name": "Number 3 Khyber Reservoir", "type": "reservoir" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761659, -36.8654119 ], [ 174.761181, -36.8653013 ], [ 174.761018, -36.865164 ], [ 174.761138100000011, -36.8648069 ], [ 174.761823099999987, -36.8649485 ], [ 174.761659, -36.8654119 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24051168.0, "name": null, "type": "railway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.747451899999987, -36.8718609 ], [ 174.74783, -36.8717085 ], [ 174.74793360000001, -36.8716471 ], [ 174.7482367, -36.8714253 ], [ 174.7497725, -36.8700175 ], [ 174.7499441, -36.8699077 ], [ 174.7503046, -36.8697498 ], [ 174.7505535, -36.869688 ], [ 174.7506716, -36.869647 ], [ 174.7508024, -36.8696193 ], [ 174.751102800000012, -36.8695438 ], [ 174.751471900000013, -36.8694888 ], [ 174.75227910000001, -36.8693675 ], [ 174.7528881, -36.869276 ], [ 174.752878, -36.8694708 ], [ 174.7522576, -36.8695564 ], [ 174.7521714, -36.8695683 ], [ 174.7519011, -36.8696056 ], [ 174.750663300000014, -36.8698385 ], [ 174.7505763, -36.8698549 ], [ 174.750442, -36.8698802 ], [ 174.7500217, -36.8700441 ], [ 174.74989260000001, -36.8701892 ], [ 174.749412, -36.8705394 ], [ 174.748897, -36.8709788 ], [ 174.7483597, -36.8715219 ], [ 174.7479036, -36.8717955 ], [ 174.7476288, -36.8719017 ], [ 174.747475799999989, -36.8719511 ], [ 174.7471205, -36.87204 ], [ 174.7468404, -36.8720808 ], [ 174.7460481, -36.872145 ], [ 174.7456947, -36.8721968 ], [ 174.7452619, -36.8723453 ], [ 174.745214, -36.8722434 ], [ 174.7456589, -36.8720977 ], [ 174.74602, -36.872037 ], [ 174.746825300000012, -36.8719747 ], [ 174.7468744, -36.8719721 ], [ 174.747451899999987, -36.8718609 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237780.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.744719800000013, -36.8705254 ], [ 174.7449172, -36.8711915 ], [ 174.7411922, -36.8723175 ], [ 174.7412093, -36.8716034 ], [ 174.744719800000013, -36.8705254 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237781.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7446941, -36.8704293 ], [ 174.7412093, -36.8715004 ], [ 174.74122650000001, -36.870752 ], [ 174.744531, -36.869777 ], [ 174.7446941, -36.8704293 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237782.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7445052, -36.8696808 ], [ 174.741243700000012, -36.8706765 ], [ 174.7412694, -36.8698113 ], [ 174.7444623, -36.8694062 ], [ 174.7445052, -36.8696808 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237783.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741140699999988, -36.8706971 ], [ 174.7377761, -36.8706353 ], [ 174.7377995, -36.8697427 ], [ 174.7411576, -36.86982 ], [ 174.741140699999988, -36.8706971 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237785.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741106300000013, -36.8715004 ], [ 174.7377418, -36.8714524 ], [ 174.7377761, -36.8707108 ], [ 174.741123499999986, -36.8707589 ], [ 174.741106300000013, -36.8715004 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237789.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7410611, -36.8729527 ], [ 174.74071, -36.8731673 ], [ 174.7404817, -36.873236 ], [ 174.738341600000012, -36.8734526 ], [ 174.7382854, -36.8733653 ], [ 174.7382997, -36.8729218 ], [ 174.73854, -36.8727844 ], [ 174.738608699999986, -36.8723793 ], [ 174.7410892, -36.8724274 ], [ 174.7410611, -36.8729527 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237791.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741072, -36.872345 ], [ 174.7385314, -36.8722723 ], [ 174.7385143, -36.8719496 ], [ 174.7384113, -36.8719221 ], [ 174.7383083, -36.871723 ], [ 174.7382911, -36.8715513 ], [ 174.7410634, -36.8716034 ], [ 174.741072, -36.872345 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237798.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741175, -36.8697358 ], [ 174.7377847, -36.8696602 ], [ 174.7378276, -36.8687951 ], [ 174.7411922, -36.8690835 ], [ 174.741175, -36.8697358 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237800.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7412608, -36.8697289 ], [ 174.7412866, -36.8690903 ], [ 174.742436700000013, -36.8691659 ], [ 174.7435525, -36.8691865 ], [ 174.744007399999987, -36.869159 ], [ 174.744010300000014, -36.8693966 ], [ 174.7412608, -36.8697289 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237812.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7376989, -36.8696534 ], [ 174.736797599999989, -36.869619 ], [ 174.7367805, -36.8694954 ], [ 174.7367376, -36.8693925 ], [ 174.7366431, -36.8693101 ], [ 174.736317, -36.8690766 ], [ 174.736214, -36.8690217 ], [ 174.7361024, -36.8689942 ], [ 174.7359308, -36.8689736 ], [ 174.735578800000013, -36.8689461 ], [ 174.7356218, -36.8685959 ], [ 174.7377074, -36.8687882 ], [ 174.7376989, -36.8696534 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237814.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7376817, -36.8697289 ], [ 174.737613, -36.8729286 ], [ 174.737304, -36.8728462 ], [ 174.7371066, -36.8727982 ], [ 174.7369693, -36.8727776 ], [ 174.7368491, -36.8727776 ], [ 174.736729, -36.8728188 ], [ 174.7363942, -36.8730247 ], [ 174.7358707, -36.872551 ], [ 174.736068100000011, -36.8720429 ], [ 174.736076700000012, -36.871933 ], [ 174.7361453, -36.871418 ], [ 174.7365916, -36.870395 ], [ 174.7367461, -36.8699967 ], [ 174.736797599999989, -36.8697289 ], [ 174.7376817, -36.8697289 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237816.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7356, -36.8690491 ], [ 174.735956499999986, -36.8690766 ], [ 174.7362226, -36.8691521 ], [ 174.7366174, -36.8694474 ], [ 174.736668900000012, -36.8696396 ], [ 174.736565899999988, -36.870031 ], [ 174.73605950000001, -36.8712738 ], [ 174.7360166, -36.8713974 ], [ 174.735973699999988, -36.8719467 ], [ 174.7357934, -36.8723862 ], [ 174.7357591, -36.872496 ], [ 174.7357591, -36.8726128 ], [ 174.735802, -36.8726883 ], [ 174.7362655, -36.8730728 ], [ 174.7350467, -36.8738075 ], [ 174.7348579, -36.8738418 ], [ 174.734737700000011, -36.8738281 ], [ 174.7345231, -36.873732 ], [ 174.7338622, -36.8735466 ], [ 174.7355359, -36.8695504 ], [ 174.7356, -36.8690491 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237818.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.733690599999989, -36.8735122 ], [ 174.7322144, -36.8734648 ], [ 174.733785, -36.8708893 ], [ 174.733785, -36.8707589 ], [ 174.733776400000011, -36.8706559 ], [ 174.733441699999986, -36.8694611 ], [ 174.7334846, -36.8689118 ], [ 174.7354415, -36.8690354 ], [ 174.7354158, -36.8694268 ], [ 174.7353814, -36.8695435 ], [ 174.733690599999989, -36.8735122 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237825.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7332289, -36.8715645 ], [ 174.73298, -36.8714683 ], [ 174.732928500000014, -36.8715439 ], [ 174.7319053, -36.8711228 ], [ 174.7325404, -36.8701409 ], [ 174.732231399999989, -36.8698044 ], [ 174.7321971, -36.8697358 ], [ 174.7323001, -36.8688363 ], [ 174.7333472, -36.8689049 ], [ 174.733295700000014, -36.8694817 ], [ 174.7336219, -36.8706147 ], [ 174.733656200000013, -36.8708275 ], [ 174.7336477, -36.8709305 ], [ 174.7332289, -36.8715645 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237826.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7354415, -36.868953 ], [ 174.7335189, -36.8688363 ], [ 174.7335361, -36.8684243 ], [ 174.7355016, -36.8685685 ], [ 174.7354415, -36.868953 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237828.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7333472, -36.8688088 ], [ 174.732334400000013, -36.868747 ], [ 174.732334400000013, -36.8684449 ], [ 174.7333987, -36.8684037 ], [ 174.7333472, -36.8688088 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237850.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.734394400000014, -36.8738281 ], [ 174.734746300000012, -36.873986 ], [ 174.73486650000001, -36.8740135 ], [ 174.734969400000011, -36.8740135 ], [ 174.735237, -36.8743275 ], [ 174.734609, -36.8747893 ], [ 174.734291399999989, -36.8749747 ], [ 174.733922299999989, -36.8746245 ], [ 174.733673399999986, -36.8743362 ], [ 174.733579, -36.8742881 ], [ 174.73317560000001, -36.8742606 ], [ 174.733055400000012, -36.8742606 ], [ 174.7320765, -36.8745401 ], [ 174.731261600000011, -36.8743018 ], [ 174.7314302, -36.8740775 ], [ 174.7317478, -36.8740775 ], [ 174.731985400000013, -36.8736154 ], [ 174.7322211, -36.8736565 ], [ 174.7334846, -36.873629 ], [ 174.733656200000013, -36.8736427 ], [ 174.7338365, -36.8736702 ], [ 174.734394400000014, -36.8738281 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237852.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7341739, -36.8750242 ], [ 174.733397700000012, -36.875227 ], [ 174.7327636, -36.8754073 ], [ 174.7324374, -36.8754965 ], [ 174.7320598, -36.8757231 ], [ 174.7312358, -36.8754141 ], [ 174.731381699999986, -36.8752082 ], [ 174.732085500000011, -36.8746795 ], [ 174.7330983, -36.8743842 ], [ 174.7334846, -36.874398 ], [ 174.7335876, -36.874446 ], [ 174.733737100000013, -36.874582 ], [ 174.7341739, -36.8750242 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237862.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7318967, -36.8746245 ], [ 174.7311671, -36.8751738 ], [ 174.7310642, -36.8753867 ], [ 174.7305148, -36.8752013 ], [ 174.7311757, -36.8744117 ], [ 174.7318967, -36.8746245 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237869.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7309955, -36.8755034 ], [ 174.7308152, -36.8758879 ], [ 174.730532, -36.8760115 ], [ 174.7304033, -36.8760527 ], [ 174.727519300000012, -36.8760252 ], [ 174.7260602, -36.8752082 ], [ 174.7260345, -36.8751189 ], [ 174.726086, -36.8737526 ], [ 174.7261289, -36.8736564 ], [ 174.7264379, -36.8738212 ], [ 174.7270044, -36.8741302 ], [ 174.7291143, -36.875384 ], [ 174.7295177, -36.8755282 ], [ 174.729818099999989, -36.8757616 ], [ 174.730411800000013, -36.875318 ], [ 174.7309955, -36.8755034 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237925.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.729221004609911, -36.879620605 ], [ 174.7291411, -36.8795393 ], [ 174.7286957, -36.8789596 ], [ 174.7286032, -36.8787978 ], [ 174.7283797, -36.8785998 ], [ 174.7283937, -36.8785157 ], [ 174.7285632, -36.8783217 ], [ 174.7287366, -36.8782076 ], [ 174.729328, -36.878764 ], [ 174.7294777, -36.8786588 ], [ 174.7296154, -36.8787772 ], [ 174.7297801, -36.8786396 ], [ 174.7290832, -36.8779744 ], [ 174.7298844, -36.8773542 ], [ 174.730817800000011, -36.8781523 ], [ 174.7326289, -36.8788462 ], [ 174.731600088843265, -36.879620605 ], [ 174.729221004609911, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237954.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7415279, -36.8757955 ], [ 174.745972, -36.8767411 ], [ 174.746095200000013, -36.8763866 ], [ 174.7480817, -36.8767992 ], [ 174.74786180000001, -36.8775169 ], [ 174.7459074, -36.8771429 ], [ 174.7458418, -36.8771734 ], [ 174.745256899999987, -36.8770639 ], [ 174.7451728, -36.8772916 ], [ 174.7413249, -36.8765024 ], [ 174.7415279, -36.8757955 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237957.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7416887, -36.8747308 ], [ 174.7415155, -36.875266 ], [ 174.7409686, -36.8751663 ], [ 174.7407115, -36.8751738 ], [ 174.7405742, -36.8751807 ], [ 174.739709299999987, -36.8753336 ], [ 174.7393897, -36.8753241 ], [ 174.7390332, -36.875252 ], [ 174.739158, -36.8748511 ], [ 174.7391336, -36.8745902 ], [ 174.7406398, -36.8745194 ], [ 174.7416887, -36.8747308 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237966.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7405408, -36.8782866 ], [ 174.737896299999989, -36.8777348 ], [ 174.737999300000013, -36.8774258 ], [ 174.7380679, -36.8774396 ], [ 174.7381881, -36.8770345 ], [ 174.7407682, -36.8776262 ], [ 174.7405408, -36.8782866 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237970.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.74046580000001, -36.8785013 ], [ 174.7402473, -36.879207 ], [ 174.7369607, -36.8785175 ], [ 174.736797599999989, -36.8784145 ], [ 174.7366064, -36.8781286 ], [ 174.736729, -36.8781055 ], [ 174.7368358, -36.8778249 ], [ 174.737000099999989, -36.8777865 ], [ 174.74046580000001, -36.8785013 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237974.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.738980271464271, -36.879620605 ], [ 174.738582900000011, -36.8795267 ], [ 174.7387234, -36.8790712 ], [ 174.7401927, -36.8793834 ], [ 174.740117989249114, -36.879620605 ], [ 174.738980271464271, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24237987.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7363269, -36.8789325 ], [ 174.736132169667826, -36.879620605 ], [ 174.734713436067381, -36.879620605 ], [ 174.734731900000014, -36.8795924 ], [ 174.7349609, -36.8788814 ], [ 174.7355701, -36.8790277 ], [ 174.735959900000012, -36.877905 ], [ 174.7362311, -36.8779652 ], [ 174.736311300000011, -36.8780209 ], [ 174.7366168, -36.8784755 ], [ 174.736630600000012, -36.8785205 ], [ 174.7363269, -36.8789325 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24238874.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7526832, -36.8785576 ], [ 174.751338800000013, -36.8782669 ], [ 174.7514491, -36.8779607 ], [ 174.752039, -36.8780771 ], [ 174.7525321, -36.87645 ], [ 174.7532745, -36.8765763 ], [ 174.7526832, -36.8785576 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24271841.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.752134500000011, -36.8580589 ], [ 174.7512044, -36.8584283 ], [ 174.751000299999987, -36.858087 ], [ 174.7518498, -36.8576567 ], [ 174.752134500000011, -36.8580589 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24447903.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7320335, -36.8734483 ], [ 174.73183610000001, -36.8733384 ], [ 174.728969400000011, -36.8726244 ], [ 174.7274574, -36.8712102 ], [ 174.72726990000001, -36.8710314 ], [ 174.7267325, -36.8707699 ], [ 174.72693, -36.8702961 ], [ 174.732582799999989, -36.8726518 ], [ 174.7320335, -36.8734483 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24447965.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7257798, -36.8705433 ], [ 174.726466499999987, -36.8707767 ], [ 174.7271274, -36.8710857 ], [ 174.7272389, -36.8711475 ], [ 174.7263806, -36.8727405 ], [ 174.7259343, -36.873688 ], [ 174.725839900000011, -36.8736537 ], [ 174.725745499999988, -36.8734202 ], [ 174.7257798, -36.8705433 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448014.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7331098, -36.8717655 ], [ 174.732594799999987, -36.8725757 ], [ 174.7270072, -36.8701862 ], [ 174.727402, -36.8693554 ], [ 174.7331098, -36.8717655 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448018.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7412005, -36.8729098 ], [ 174.741195, -36.8724178 ], [ 174.7449201, -36.8712986 ], [ 174.7449973, -36.8715664 ], [ 174.7431019, -36.8721269 ], [ 174.7432306, -36.8724015 ], [ 174.7422507, -36.8726993 ], [ 174.7412005, -36.8729098 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448019.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7377368, -36.8715425 ], [ 174.7380679, -36.8715513 ], [ 174.7380372, -36.8720781 ], [ 174.7379649, -36.8722077 ], [ 174.7377189, -36.872253 ], [ 174.7377368, -36.8715425 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448020.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7279256, -36.8694241 ], [ 174.728037199999989, -36.8692043 ], [ 174.728226, -36.8691769 ], [ 174.7285693, -36.86917 ], [ 174.7285092, -36.8692387 ], [ 174.72885260000001, -36.8693897 ], [ 174.7291186, -36.8690464 ], [ 174.7310842, -36.8698635 ], [ 174.7311185, -36.8699322 ], [ 174.730672199999987, -36.8705982 ], [ 174.7279256, -36.8694241 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448021.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7298654, -36.8692387 ], [ 174.7299855, -36.8689022 ], [ 174.7301143, -36.8688679 ], [ 174.7305177, -36.8689228 ], [ 174.730543399999988, -36.8688061 ], [ 174.731006900000011, -36.8688747 ], [ 174.730775200000011, -36.8696232 ], [ 174.7298654, -36.8692387 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448022.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7317536, -36.8710651 ], [ 174.7308009, -36.8706531 ], [ 174.73127, -36.869939 ], [ 174.7312129, -36.8698017 ], [ 174.730886700000013, -36.8696644 ], [ 174.7311872, -36.8687168 ], [ 174.732157, -36.868758 ], [ 174.732208500000013, -36.8688061 ], [ 174.7320798, -36.8697948 ], [ 174.732345900000013, -36.8701038 ], [ 174.732345900000013, -36.8701794 ], [ 174.7317536, -36.8710651 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448025.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7265351, -36.8706875 ], [ 174.7258056, -36.8704266 ], [ 174.7257712, -36.8703716 ], [ 174.7257712, -36.8703098 ], [ 174.7257884, -36.8702068 ], [ 174.7258914, -36.8695545 ], [ 174.7259429, -36.8694515 ], [ 174.7260459, -36.8693279 ], [ 174.72620040000001, -36.8692593 ], [ 174.7264836, -36.8693211 ], [ 174.7266467, -36.8693211 ], [ 174.72679260000001, -36.869376 ], [ 174.727170300000012, -36.869479 ], [ 174.726621, -36.8706531 ], [ 174.7265351, -36.8706875 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448207.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741733, -36.8745496 ], [ 174.74066, -36.8743361 ], [ 174.7380794, -36.874457 ], [ 174.7379453, -36.8744725 ], [ 174.7376286, -36.874236 ], [ 174.7380729, -36.8741534 ], [ 174.738276899999988, -36.8741375 ], [ 174.7384673, -36.8741246 ], [ 174.7393344, -36.8740506 ], [ 174.7399811, -36.8740344 ], [ 174.7409118, -36.8739215 ], [ 174.7413467, -36.8738618 ], [ 174.7421641, -36.8736813 ], [ 174.742218, -36.873735 ], [ 174.7421081, -36.8738381 ], [ 174.7414378, -36.874012 ], [ 174.7417797, -36.8744144 ], [ 174.741733, -36.8745496 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24448216.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.740589, -36.8733304 ], [ 174.740825, -36.8732188 ], [ 174.7411362, -36.8730386 ], [ 174.7414258, -36.8729613 ], [ 174.742293600000011, -36.8728435 ], [ 174.742971, -36.8726196 ], [ 174.7431748, -36.8729489 ], [ 174.743143800000013, -36.8729978 ], [ 174.742293600000011, -36.8733996 ], [ 174.7415469, -36.8736125 ], [ 174.7406714, -36.8738048 ], [ 174.7383371, -36.8738775 ], [ 174.738176900000013, -36.873888 ], [ 174.73812860000001, -36.8736133 ], [ 174.738394199999988, -36.873564 ], [ 174.740589, -36.8733304 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24454534.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7608275, -36.8712765 ], [ 174.7609943, -36.8709216 ], [ 174.7616122, -36.8715602 ], [ 174.7613977, -36.8717318 ], [ 174.761080099999987, -36.8713816 ], [ 174.7608275, -36.8712765 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24454569.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7618869, -36.8724802 ], [ 174.760839800000014, -36.8724871 ], [ 174.7603211, -36.8723483 ], [ 174.7608275, -36.8712765 ], [ 174.761080099999987, -36.8713816 ], [ 174.7613977, -36.8717318 ], [ 174.7616122, -36.8715602 ], [ 174.7618955, -36.8718073 ], [ 174.7620255, -36.8721357 ], [ 174.761991200000011, -36.8724722 ], [ 174.7618869, -36.8724802 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24454727.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.765672, -36.8727824 ], [ 174.7655604, -36.8727618 ], [ 174.7654192, -36.8726965 ], [ 174.7661441, -36.8721232 ], [ 174.766238499999986, -36.8722262 ], [ 174.7668822, -36.871979 ], [ 174.767225599999989, -36.8718279 ], [ 174.767560300000014, -36.8720889 ], [ 174.765672, -36.8727824 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24455011.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7615964, -36.8753765 ], [ 174.761565499999989, -36.8760976 ], [ 174.7614175, -36.8764839 ], [ 174.761340499999989, -36.8766462 ], [ 174.7609158, -36.8765377 ], [ 174.7608434, -36.8767104 ], [ 174.7612724, -36.8768083 ], [ 174.761187, -36.8772476 ], [ 174.7612418, -36.877759 ], [ 174.7589429, -36.8772178 ], [ 174.7594579, -36.8754601 ], [ 174.7602046, -36.8756249 ], [ 174.761062900000013, -36.8751374 ], [ 174.7615779, -36.875261 ], [ 174.7615964, -36.8753765 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24455037.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7593034, -36.8754395 ], [ 174.7587627, -36.8772452 ], [ 174.7587112, -36.8772658 ], [ 174.7586167, -36.8775542 ], [ 174.757389100000012, -36.8772707 ], [ 174.7580025, -36.8753308 ], [ 174.758035799999988, -36.8752924 ], [ 174.7581165, -36.8752738 ], [ 174.7593034, -36.8754395 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24455447.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7690517, -36.863564 ], [ 174.768133299999988, -36.8633511 ], [ 174.7684595, -36.8623691 ], [ 174.769437900000014, -36.8625751 ], [ 174.7690517, -36.863564 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24455474.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7670588, -36.8633166 ], [ 174.7677938, -36.8634765 ], [ 174.7674381, -36.8646833 ], [ 174.7671205, -36.8641751 ], [ 174.7668459, -36.8639897 ], [ 174.7670588, -36.8633166 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24455482.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7661871, -36.8631298 ], [ 174.7668913, -36.863277 ], [ 174.7667514, -36.8638798 ], [ 174.7665283, -36.8637906 ], [ 174.7660562, -36.8634541 ], [ 174.7661871, -36.8631298 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24455488.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7710183, -36.8639547 ], [ 174.769197600000012, -36.8635846 ], [ 174.7693092, -36.8632824 ], [ 174.7701418, -36.8634609 ], [ 174.7702104, -36.8632 ], [ 174.7706924, -36.8629806 ], [ 174.7710183, -36.8639547 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24455621.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.76960170000001, -36.8638649 ], [ 174.7700858, -36.8639657 ], [ 174.769776, -36.8649636 ], [ 174.7706653, -36.8651172 ], [ 174.7706114, -36.8652651 ], [ 174.7701717, -36.8652137 ], [ 174.7701104, -36.8654163 ], [ 174.7696611, -36.8655416 ], [ 174.7691268, -36.8654196 ], [ 174.76960170000001, -36.8638649 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24457710.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7614557, -36.8695998 ], [ 174.761325699999986, -36.8687159 ], [ 174.7618934, -36.8686454 ], [ 174.7623312, -36.8687827 ], [ 174.7621509, -36.8691398 ], [ 174.7618192, -36.869756 ], [ 174.7614557, -36.8695998 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24457981.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7532074, -36.8735205 ], [ 174.753088, -36.8738144 ], [ 174.7526331, -36.8736977 ], [ 174.752701, -36.8735342 ], [ 174.7525207, -36.873493 ], [ 174.752555, -36.8733832 ], [ 174.7532074, -36.8735205 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24458005.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.753344700000014, -36.8734793 ], [ 174.7519542, -36.873184 ], [ 174.7520744, -36.8727789 ], [ 174.752992799999987, -36.8729712 ], [ 174.753095800000011, -36.8727034 ], [ 174.7535866, -36.8727999 ], [ 174.753344700000014, -36.8734793 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24458020.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.752503499999989, -36.8722159 ], [ 174.753215899999987, -36.872367 ], [ 174.753095800000011, -36.8727034 ], [ 174.752992799999987, -36.8729712 ], [ 174.7520744, -36.8727789 ], [ 174.7522461, -36.87247 ], [ 174.752383400000014, -36.8722571 ], [ 174.752503499999989, -36.8722159 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24458098.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7522976, -36.8720649 ], [ 174.7528211, -36.8705749 ], [ 174.7539914, -36.8708341 ], [ 174.7535365, -36.8723034 ], [ 174.7522976, -36.8720649 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24458171.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7515425, -36.8745551 ], [ 174.75175680000001, -36.8739187 ], [ 174.7527095, -36.8741041 ], [ 174.752503499999989, -36.8747426 ], [ 174.7515425, -36.8745551 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24458176.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.75367940000001, -36.8743428 ], [ 174.753002400000014, -36.8763451 ], [ 174.7520671, -36.8761412 ], [ 174.7522976, -36.8753949 ], [ 174.751877, -36.8752988 ], [ 174.7520413, -36.8747543 ], [ 174.7524484, -36.8748339 ], [ 174.752373299999988, -36.8751471 ], [ 174.752502099999987, -36.8751685 ], [ 174.752808499999986, -36.8741388 ], [ 174.7531816, -36.8742414 ], [ 174.75367940000001, -36.8743428 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24458205.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7463881, -36.8755307 ], [ 174.7483398, -36.8759276 ], [ 174.7481209, -36.8766166 ], [ 174.7461692, -36.8762197 ], [ 174.7463881, -36.8755307 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24458231.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7495281, -36.8792688 ], [ 174.747650099999987, -36.8788777 ], [ 174.747814799999986, -36.8783714 ], [ 174.747849800000012, -36.8782636 ], [ 174.7478586, -36.8782367 ], [ 174.7478925, -36.8781324 ], [ 174.7479008, -36.8781068 ], [ 174.7479823, -36.8778562 ], [ 174.7480228, -36.8777315 ], [ 174.7483085, -36.8768531 ], [ 174.7493236, -36.8770644 ], [ 174.7487767, -36.8787459 ], [ 174.7489411, -36.8787801 ], [ 174.7494782, -36.8771287 ], [ 174.7500497, -36.8772475 ], [ 174.7497778, -36.8780832 ], [ 174.7495786, -36.8780417 ], [ 174.7493433, -36.8787649 ], [ 174.749669899999986, -36.8788329 ], [ 174.7495281, -36.8792688 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24485895.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7553968, -36.8598715 ], [ 174.75485230000001, -36.8587311 ], [ 174.7555428, -36.8585125 ], [ 174.7556528, -36.8587564 ], [ 174.755746499999987, -36.8590254 ], [ 174.7557347, -36.8591405 ], [ 174.7558205, -36.8593465 ], [ 174.7557439, -36.8595432 ], [ 174.7553968, -36.8598715 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24485970.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751230099999987, -36.8587256 ], [ 174.7529429, -36.8579507 ], [ 174.7532709, -36.8585041 ], [ 174.7533666, -36.8586659 ], [ 174.7528079, -36.8590718 ], [ 174.752490200000011, -36.8594258 ], [ 174.751230099999987, -36.8587256 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24485974.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.752691, -36.859524 ], [ 174.752490200000011, -36.8594258 ], [ 174.7528079, -36.8590718 ], [ 174.7533666, -36.8586659 ], [ 174.753620500000011, -36.8588583 ], [ 174.752799399999986, -36.8595164 ], [ 174.752691, -36.859524 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24485976.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7538107, -36.8587867 ], [ 174.7535473, -36.8585883 ], [ 174.7547337, -36.8582361 ], [ 174.754765600000013, -36.8584931 ], [ 174.7538107, -36.8587867 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24485982.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.753073199999989, -36.8579209 ], [ 174.7535426, -36.8577965 ], [ 174.754719, -36.8577086 ], [ 174.7548076, -36.8581093 ], [ 174.7533933, -36.8584391 ], [ 174.753073199999989, -36.8579209 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24485998.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761001099999987, -36.8591159 ], [ 174.7615126, -36.8580384 ], [ 174.762142899999986, -36.8580329 ], [ 174.7614159, -36.8592485 ], [ 174.761001099999987, -36.8591159 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501768.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.750734099999988, -36.8656906 ], [ 174.7512233, -36.8652992 ], [ 174.753309, -36.8671807 ], [ 174.753351900000013, -36.86727 ], [ 174.7533776, -36.8673387 ], [ 174.753351900000013, -36.867373 ], [ 174.7532832, -36.8674485 ], [ 174.7527768, -36.8675447 ], [ 174.750734099999988, -36.8656906 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501774.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.750107500000013, -36.8662194 ], [ 174.7506139, -36.865773 ], [ 174.752630900000014, -36.8675859 ], [ 174.7522533, -36.867682 ], [ 174.751972, -36.867448 ], [ 174.7516501, -36.8675292 ], [ 174.750107500000013, -36.8662194 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501778.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.750004499999989, -36.8662812 ], [ 174.7517297, -36.8677713 ], [ 174.7510178, -36.8679652 ], [ 174.7495384, -36.8666631 ], [ 174.750004499999989, -36.8662812 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501785.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7494466, -36.8667344 ], [ 174.7507698, -36.8680413 ], [ 174.750090300000011, -36.8682313 ], [ 174.7489574, -36.8671945 ], [ 174.7494466, -36.8667344 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501788.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7499702, -36.8682794 ], [ 174.7493093, -36.868554 ], [ 174.748348, -36.867682 ], [ 174.7488801, -36.8672494 ], [ 174.7499702, -36.8682794 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501789.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7491977, -36.868609 ], [ 174.7486226, -36.8689248 ], [ 174.747704199999987, -36.8681009 ], [ 174.7482965, -36.8677507 ], [ 174.7491977, -36.868609 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501791.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.747564399999987, -36.868192 ], [ 174.7487806, -36.8692646 ], [ 174.7481416, -36.8697457 ], [ 174.746734300000014, -36.8688287 ], [ 174.7466657, -36.8687669 ], [ 174.7466657, -36.8686982 ], [ 174.7466914, -36.8685884 ], [ 174.747564399999987, -36.868192 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24501794.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7467687, -36.8689866 ], [ 174.748028, -36.8698688 ], [ 174.747807200000011, -36.8702089 ], [ 174.747589299999987, -36.8700982 ], [ 174.7468835, -36.8697381 ], [ 174.746578699999986, -36.8694221 ], [ 174.7467687, -36.8689866 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24531738.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7251062, -36.8776596 ], [ 174.7253327, -36.877443 ], [ 174.7260434, -36.8779274 ], [ 174.7269471, -36.8777553 ], [ 174.7276903, -36.8784307 ], [ 174.7277535, -36.8786009 ], [ 174.726915, -36.8791914 ], [ 174.7257889, -36.8781177 ], [ 174.7251062, -36.8776596 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24531787.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723644256600011, -36.877820177329689 ], [ 174.723882300000014, -36.877981 ], [ 174.7236505, -36.8782007 ], [ 174.724234200000012, -36.8785714 ], [ 174.7237849, -36.8789272 ], [ 174.723644256600011, -36.878828887134453 ], [ 174.723644256600011, -36.877820177329689 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24531792.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723644256600011, -36.876721033523211 ], [ 174.725114600000012, -36.8752947 ], [ 174.7255609, -36.8755213 ], [ 174.7247284, -36.8763452 ], [ 174.7248485, -36.8764413 ], [ 174.7256811, -36.8755694 ], [ 174.7258184, -36.8760294 ], [ 174.725964299999987, -36.8764963 ], [ 174.7253071, -36.8765872 ], [ 174.723644256600011, -36.876866404957333 ], [ 174.723644256600011, -36.876721033523211 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24543737.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7329143, -36.8787892 ], [ 174.7327596, -36.8784065 ], [ 174.7335578, -36.8785988 ], [ 174.73396120000001, -36.878743 ], [ 174.7343265, -36.8788041 ], [ 174.7340814, -36.879203 ], [ 174.733866799999987, -36.8791412 ], [ 174.7329143, -36.8787892 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24605232.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.75106345191287, -36.879620605 ], [ 174.751069699999988, -36.8795994 ], [ 174.751085499999988, -36.879557 ], [ 174.75139076147309, -36.879620605 ], [ 174.75106345191287, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24671215.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.758106054877175, -36.879620605 ], [ 174.7580582, -36.8796001 ], [ 174.757416400000011, -36.8789948 ], [ 174.757116, -36.8781023 ], [ 174.7573621, -36.8774378 ], [ 174.7578885, -36.8775118 ], [ 174.7582404, -36.8786241 ], [ 174.758386300000012, -36.8785897 ], [ 174.75804, -36.8775324 ], [ 174.7586696, -36.8776423 ], [ 174.758764, -36.8773265 ], [ 174.760068600000011, -36.8776285 ], [ 174.7597431, -36.8784271 ], [ 174.7599055, -36.878473 ], [ 174.7602403, -36.8776629 ], [ 174.7607401, -36.8777788 ], [ 174.7607315, -36.878026 ], [ 174.761235199999987, -36.8780472 ], [ 174.7612499, -36.8787453 ], [ 174.761204, -36.8792339 ], [ 174.7611933, -36.8794056 ], [ 174.761214700000011, -36.879603 ], [ 174.761225286530134, -36.879620605 ], [ 174.760252950826896, -36.879620605 ], [ 174.7602656, -36.8792312 ], [ 174.7601651, -36.8792259 ], [ 174.760154823000761, -36.879620605 ], [ 174.758106054877175, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24671222.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7614505, -36.8786721 ], [ 174.761407600000013, -36.8786172 ], [ 174.7613333, -36.8771227 ], [ 174.7615337, -36.8771347 ], [ 174.7620341, -36.8778757 ], [ 174.7622058, -36.8786103 ], [ 174.7614505, -36.8786721 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24671226.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7677075, -36.8773196 ], [ 174.767750400000011, -36.8768115 ], [ 174.7678706, -36.8766879 ], [ 174.7704963, -36.8767175 ], [ 174.770660099999986, -36.878322 ], [ 174.770198, -36.8783663 ], [ 174.76980180000001, -36.8784181 ], [ 174.7696216, -36.8779306 ], [ 174.7692611, -36.8773196 ], [ 174.7677075, -36.8773196 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24671291.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.766969883668224, -36.879620605 ], [ 174.7670981, -36.8795853 ], [ 174.7698962, -36.8785142 ], [ 174.770034, -36.8784885 ], [ 174.7702052, -36.878473 ], [ 174.7726223, -36.8782876 ], [ 174.772599899999989, -36.8783906 ], [ 174.772279638416535, -36.879620605 ], [ 174.766969883668224, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24822475.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7612842, -36.8577964 ], [ 174.760574600000012, -36.8578104 ], [ 174.759198199999986, -36.8576095 ], [ 174.7591679, -36.8573538 ], [ 174.7592996, -36.8573454 ], [ 174.75933710000001, -36.8575108 ], [ 174.75954680000001, -36.8575414 ], [ 174.7595671, -36.8574765 ], [ 174.759637700000013, -36.8574906 ], [ 174.7596239, -36.8575515 ], [ 174.7596767, -36.8575592 ], [ 174.75971340000001, -36.8574007 ], [ 174.7600314, -36.8574451 ], [ 174.760105399999986, -36.8572086 ], [ 174.7603887, -36.8572567 ], [ 174.7603286, -36.8574971 ], [ 174.7605946, -36.857552 ], [ 174.760612900000012, -36.8574397 ], [ 174.7613833, -36.8576165 ], [ 174.7613313, -36.857752 ], [ 174.7612842, -36.8577964 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24822478.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.758899500000012, -36.8575597 ], [ 174.758128, -36.8574547 ], [ 174.7573442, -36.8577019 ], [ 174.7571821, -36.857383 ], [ 174.757152600000012, -36.8573927 ], [ 174.7573016, -36.8577154 ], [ 174.757218099999989, -36.8577442 ], [ 174.7570815, -36.8574562 ], [ 174.756815499999988, -36.8575295 ], [ 174.756836, -36.8575768 ], [ 174.75705640000001, -36.8575159 ], [ 174.757175499999988, -36.8577526 ], [ 174.756732, -36.8578872 ], [ 174.7565873, -36.8575606 ], [ 174.7567494, -36.8570644 ], [ 174.757718899999986, -36.8567938 ], [ 174.7588644, -36.8573193 ], [ 174.758899500000012, -36.8575597 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24822488.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.766932, -36.8569444 ], [ 174.766866099999987, -36.8568555 ], [ 174.7660591, -36.856299 ], [ 174.766551, -36.8558637 ], [ 174.7676648, -36.8548781 ], [ 174.768004, -36.8544806 ], [ 174.7680521, -36.8544243 ], [ 174.768249200000014, -36.8541933 ], [ 174.7683481, -36.854181 ], [ 174.7685903, -36.854518 ], [ 174.7684693, -36.8546832 ], [ 174.768407200000013, -36.8547694 ], [ 174.7681258, -36.8550709 ], [ 174.7678747, -36.8552637 ], [ 174.767093100000011, -36.8559059 ], [ 174.7678627, -36.8564184 ], [ 174.7676, -36.8567276 ], [ 174.7673179, -36.8570883 ], [ 174.7666371, -36.8580396 ], [ 174.7658647, -36.8588706 ], [ 174.764803699999987, -36.8579925 ], [ 174.7654262, -36.8573898 ], [ 174.7651225, -36.8571484 ], [ 174.7659224, -36.8563565 ], [ 174.7667788, -36.8569895 ], [ 174.7666702, -36.8572418 ], [ 174.7665217, -36.8575016 ], [ 174.7659501, -36.8577601 ], [ 174.7658763, -36.8578598 ], [ 174.7660586, -36.8579757 ], [ 174.7664165, -36.8577192 ], [ 174.766646, -36.8575358 ], [ 174.7667956, -36.8571594 ], [ 174.7673581, -36.8566752 ], [ 174.7671099, -36.8564306 ], [ 174.7670908, -36.8564327 ], [ 174.7669583, -36.8564476 ], [ 174.767233299999987, -36.8566815 ], [ 174.766932, -36.8569444 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 24822509.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.762373700000012, -36.8578425 ], [ 174.762357, -36.857793 ], [ 174.7624869, -36.8575073 ], [ 174.763195700000011, -36.8577356 ], [ 174.763161, -36.8578405 ], [ 174.7634031, -36.8579168 ], [ 174.7636607, -36.8580276 ], [ 174.763517799999988, -36.8582753 ], [ 174.762373700000012, -36.8578425 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 25696186.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7550786, -36.8767821 ], [ 174.7556999, -36.8748531 ], [ 174.7558151, -36.8747959 ], [ 174.7577574, -36.8752176 ], [ 174.7578212, -36.8752666 ], [ 174.757837, -36.8753449 ], [ 174.7576092, -36.8759944 ], [ 174.7561708, -36.8756906 ], [ 174.755767, -36.8769283 ], [ 174.7550786, -36.8767821 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 25696454.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.731824368659545, -36.879620605 ], [ 174.732794500000011, -36.8788961 ], [ 174.733700700000014, -36.8792175 ], [ 174.733545099999986, -36.8793463 ], [ 174.7334189, -36.8794427 ], [ 174.733200410084862, -36.879620605 ], [ 174.731824368659545, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 25696463.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7300239, -36.8772855 ], [ 174.731398899999988, -36.8763561 ], [ 174.7316736, -36.876617 ], [ 174.730669400000011, -36.8773173 ], [ 174.7307295, -36.877386 ], [ 174.7304494, -36.8775651 ], [ 174.7303776, -36.8776125 ], [ 174.7300239, -36.8772855 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 26619053.0, "name": "Government House", "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7681737, -36.8747638 ], [ 174.7692366, -36.874623 ], [ 174.7700227, -36.8745074 ], [ 174.7701553, -36.8744885 ], [ 174.770205299999986, -36.8745361 ], [ 174.770373799999987, -36.8757791 ], [ 174.7686315, -36.8758477 ], [ 174.7678826, -36.8758125 ], [ 174.7675566, -36.8758734 ], [ 174.7677749, -36.8755837 ], [ 174.7679518, -36.8747676 ], [ 174.7681737, -36.8747638 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 26621826.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7594944, -36.8735429 ], [ 174.7596063, -36.8731798 ], [ 174.7598012, -36.8732218 ], [ 174.7596413, -36.8735711 ], [ 174.7594944, -36.8735429 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 26831142.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723644256600011, -36.879052061930331 ], [ 174.724434403725155, -36.879620605 ], [ 174.723644256600011, -36.879620605 ], [ 174.723644256600011, -36.879052061930331 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27292016.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7916271, -36.8290078 ], [ 174.7925798, -36.8290377 ], [ 174.7920133, -36.8306315 ], [ 174.7914125, -36.8304941 ], [ 174.7916185, -36.8300544 ], [ 174.7916271, -36.8290078 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27292019.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.794931600000012, -36.8297796 ], [ 174.7958156, -36.8300957 ], [ 174.7948801, -36.8317719 ], [ 174.7943565, -36.8317032 ], [ 174.793850099999986, -36.831401 ], [ 174.792880200000013, -36.8308788 ], [ 174.792159199999986, -36.8306865 ], [ 174.7927515, -36.8290377 ], [ 174.7930466, -36.8290548 ], [ 174.794931600000012, -36.8297796 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27292085.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7956024, -36.827788 ], [ 174.795727199999988, -36.8285521 ], [ 174.793312500000013, -36.8289067 ], [ 174.7929265, -36.8283047 ], [ 174.793583500000011, -36.8281011 ], [ 174.7956024, -36.827788 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27292125.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.795429399999989, -36.8270041 ], [ 174.7955839, -36.8276911 ], [ 174.793527, -36.8280025 ], [ 174.792966, -36.8281789 ], [ 174.792545499999989, -36.8274987 ], [ 174.7929832, -36.8273339 ], [ 174.795429399999989, -36.8270041 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27292168.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7956565, -36.8298705 ], [ 174.7934381, -36.8290651 ], [ 174.7934381, -36.8290102 ], [ 174.7963765, -36.828549 ], [ 174.7956565, -36.8298705 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27506233.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.77899, -36.8529144 ], [ 174.7796142, -36.8526793 ], [ 174.77991080000001, -36.8531837 ], [ 174.7792867, -36.8534187 ], [ 174.77899, -36.8529144 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27506237.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.77899690000001, -36.8516282 ], [ 174.7795379, -36.8525815 ], [ 174.7788888, -36.8528177 ], [ 174.778324, -36.8518755 ], [ 174.77899690000001, -36.8516282 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27506241.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7793381, -36.853515 ], [ 174.780001199999987, -36.8532353 ], [ 174.7803616, -36.8537848 ], [ 174.7796887, -36.8540767 ], [ 174.7793381, -36.853515 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27506254.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.779231, -36.8535757 ], [ 174.7797007, -36.8543479 ], [ 174.779391800000013, -36.8544715 ], [ 174.778904899999986, -36.8536581 ], [ 174.779231, -36.8535757 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28737290.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7540012, -36.8452321 ], [ 174.7530858, -36.8449997 ], [ 174.7534568, -36.8440637 ], [ 174.7543722, -36.8442961 ], [ 174.7540012, -36.8452321 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28737316.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7607798, -36.8457935 ], [ 174.760043200000013, -36.8475846 ], [ 174.757294, -36.8480211 ], [ 174.7570451, -36.8471007 ], [ 174.7569423, -36.8471312 ], [ 174.7571486, -36.8480617 ], [ 174.7567908, -36.8481381 ], [ 174.7564324, -36.8481261 ], [ 174.756545100000011, -36.8464409 ], [ 174.756721, -36.8463141 ], [ 174.7605429, -36.845685 ], [ 174.7606836, -36.8457332 ], [ 174.760743, -36.8457522 ], [ 174.7607798, -36.8457935 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28737321.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7609789, -36.8453082 ], [ 174.7601173, -36.8454608 ], [ 174.7600338, -36.845038 ], [ 174.7602077, -36.8444829 ], [ 174.761254900000012, -36.8447371 ], [ 174.7609789, -36.8453082 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771450.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7720439, -36.8765245 ], [ 174.773058099999986, -36.876714 ], [ 174.772671800000012, -36.8781644 ], [ 174.7708265, -36.8783189 ], [ 174.770740600000011, -36.8772461 ], [ 174.771775600000012, -36.8773913 ], [ 174.7720439, -36.8765245 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771453.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7706469, -36.8762795 ], [ 174.771882799999986, -36.876506 ], [ 174.7716768, -36.8772475 ], [ 174.770708500000012, -36.8771088 ], [ 174.7706469, -36.8762795 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771466.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7706125, -36.8761421 ], [ 174.7705028, -36.8753181 ], [ 174.771797, -36.8755173 ], [ 174.7727411, -36.8751466 ], [ 174.7733934, -36.8752564 ], [ 174.7730738, -36.8766103 ], [ 174.7706125, -36.8761421 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771558.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7704666, -36.8765953 ], [ 174.767823, -36.8765816 ], [ 174.7678785, -36.8759763 ], [ 174.767760399999986, -36.8758605 ], [ 174.7678826, -36.8758125 ], [ 174.7686315, -36.8758477 ], [ 174.770373799999987, -36.8757791 ], [ 174.7704666, -36.8765953 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771590.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7679518, -36.8747676 ], [ 174.7677749, -36.8755837 ], [ 174.7661414, -36.8755387 ], [ 174.766397399999988, -36.8747937 ], [ 174.7679518, -36.8747676 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771599.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.770064, -36.8743399 ], [ 174.76927, -36.8744464 ], [ 174.7679346, -36.874563 ], [ 174.7667008, -36.8746421 ], [ 174.766416, -36.8745921 ], [ 174.766324700000013, -36.8739202 ], [ 174.766218, -36.8734901 ], [ 174.7663517, -36.8734206 ], [ 174.766507499999989, -36.8735092 ], [ 174.7668716, -36.8731555 ], [ 174.7665673, -36.8726639 ], [ 174.7683726, -36.8719833 ], [ 174.768627400000014, -36.8726611 ], [ 174.7688521, -36.8729376 ], [ 174.768149200000011, -36.8731966 ], [ 174.7680406, -36.8735747 ], [ 174.767999300000014, -36.8736054 ], [ 174.7679743, -36.8737687 ], [ 174.7681681, -36.8738001 ], [ 174.7682275, -36.8736396 ], [ 174.7682137, -36.8735857 ], [ 174.7683221, -36.8733097 ], [ 174.768941500000011, -36.8730458 ], [ 174.769139200000012, -36.8732993 ], [ 174.770064, -36.8743399 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771610.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7764349, -36.8739731 ], [ 174.77638060000001, -36.8742949 ], [ 174.7746546, -36.8740125 ], [ 174.7745573, -36.8743932 ], [ 174.775174, -36.8744941 ], [ 174.7751393, -36.8746299 ], [ 174.7755007, -36.874689 ], [ 174.775401100000011, -36.8750784 ], [ 174.7737414, -36.8748078 ], [ 174.7742938, -36.872676 ], [ 174.7752131, -36.8731897 ], [ 174.775298099999986, -36.8732237 ], [ 174.7755907, -36.8733408 ], [ 174.7755392, -36.8736154 ], [ 174.775359, -36.8735743 ], [ 174.7753161, -36.8737116 ], [ 174.7764349, -36.8739731 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771622.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7764349, -36.8739731 ], [ 174.7769762, -36.8740653 ], [ 174.777028, -36.875368 ], [ 174.7760452, -36.8751838 ], [ 174.776152599999989, -36.8747639 ], [ 174.7762563, -36.8747809 ], [ 174.77638060000001, -36.8742949 ], [ 174.7764349, -36.8739731 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771637.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7802393, -36.87831 ], [ 174.7801221, -36.8788855 ], [ 174.7790606, -36.8787164 ], [ 174.779180200000013, -36.8781787 ], [ 174.7802393, -36.87831 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771639.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.779180200000013, -36.8781787 ], [ 174.7793815, -36.8772811 ], [ 174.780314, -36.8779947 ], [ 174.7802393, -36.87831 ], [ 174.779180200000013, -36.8781787 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771641.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.777376, -36.8756959 ], [ 174.778116899999986, -36.876286 ], [ 174.77761240000001, -36.8784968 ], [ 174.776623, -36.8783447 ], [ 174.7772084, -36.8757229 ], [ 174.777376, -36.8756959 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771646.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.776988499999987, -36.875546 ], [ 174.7768676, -36.8760872 ], [ 174.7765477, -36.8760287 ], [ 174.776683100000014, -36.8754995 ], [ 174.776988499999987, -36.875546 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771655.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.777365300000014, -36.8752858 ], [ 174.7772398, -36.8736619 ], [ 174.778290700000014, -36.87339 ], [ 174.7783871, -36.8748736 ], [ 174.777365300000014, -36.8752858 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771664.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7809211, -36.8698405 ], [ 174.7821396, -36.8708964 ], [ 174.7807735, -36.8719273 ], [ 174.7795557, -36.870871 ], [ 174.780223799999987, -36.870364 ], [ 174.781032399999987, -36.8710749 ], [ 174.7811611, -36.8709719 ], [ 174.7803203, -36.870304 ], [ 174.7809211, -36.8698405 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771665.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7807735, -36.8719273 ], [ 174.780417699999987, -36.872171 ], [ 174.7792102, -36.8711267 ], [ 174.7795557, -36.870871 ], [ 174.7807735, -36.8719273 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771666.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7791441, -36.8704844 ], [ 174.7794874, -36.8707866 ], [ 174.7791355, -36.8710406 ], [ 174.7787933, -36.8707246 ], [ 174.7791441, -36.8704844 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771689.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7808092, -36.8664606 ], [ 174.7806976, -36.8664606 ], [ 174.7806118, -36.866543 ], [ 174.7806032, -36.8666872 ], [ 174.7804573, -36.8668177 ], [ 174.7803171, -36.8670084 ], [ 174.7802687, -36.8674859 ], [ 174.780203699999987, -36.8676028 ], [ 174.7798908, -36.8680949 ], [ 174.779741300000012, -36.8687235 ], [ 174.7798685, -36.869093 ], [ 174.7808315, -36.8697729 ], [ 174.7802019, -36.8702233 ], [ 174.7796583, -36.8696852 ], [ 174.77934, -36.8693714 ], [ 174.779276900000013, -36.8691685 ], [ 174.7792071, -36.8691829 ], [ 174.7792425, -36.8693911 ], [ 174.7795989, -36.869745 ], [ 174.7800427, -36.8701861 ], [ 174.78006640000001, -36.870276 ], [ 174.7800124, -36.8703745 ], [ 174.7795389, -36.8707179 ], [ 174.7788919, -36.870172 ], [ 174.779047600000013, -36.8696068 ], [ 174.7795367, -36.8677402 ], [ 174.780036700000011, -36.8668246 ], [ 174.780663299999986, -36.866028 ], [ 174.7810108, -36.8663009 ], [ 174.7808092, -36.8664606 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771694.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7801799, -36.8677905 ], [ 174.780322899999987, -36.8677779 ], [ 174.780361, -36.8679348 ], [ 174.7803343, -36.8681482 ], [ 174.7802581, -36.8684469 ], [ 174.780308, -36.8686203 ], [ 174.780302799999987, -36.8688571 ], [ 174.7801397, -36.8691661 ], [ 174.779950899999989, -36.8689944 ], [ 174.7798908, -36.8686579 ], [ 174.780062500000014, -36.8681018 ], [ 174.7801799, -36.8677905 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771818.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7766229, -36.8674301 ], [ 174.7773207, -36.8675708 ], [ 174.7771309, -36.8682004 ], [ 174.776423599999987, -36.8680535 ], [ 174.7766229, -36.8674301 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771820.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.776510800000011, -36.8674005 ], [ 174.7763013, -36.8680338 ], [ 174.7753012, -36.8678078 ], [ 174.7754817, -36.8672444 ], [ 174.775553300000013, -36.8672009 ], [ 174.776510800000011, -36.8674005 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771832.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7770641, -36.8683601 ], [ 174.776869799999986, -36.8689742 ], [ 174.7764081, -36.8688716 ], [ 174.7765957, -36.8682636 ], [ 174.7770641, -36.8683601 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771834.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7765957, -36.8682636 ], [ 174.7764081, -36.8688716 ], [ 174.7758342, -36.8687534 ], [ 174.7751098, -36.8686001 ], [ 174.7750728, -36.8685374 ], [ 174.7752462, -36.8679808 ], [ 174.7760293, -36.8681481 ], [ 174.7765957, -36.8682636 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771837.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.777447, -36.8675981 ], [ 174.777739700000012, -36.8676644 ], [ 174.777886, -36.8682462 ], [ 174.777900100000011, -36.8683389 ], [ 174.777627200000012, -36.8692207 ], [ 174.7769739, -36.8690768 ], [ 174.777447, -36.8675981 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771840.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.777737800000011, -36.8675035 ], [ 174.7763669, -36.8672166 ], [ 174.77656060000001, -36.8666529 ], [ 174.7775734, -36.8668589 ], [ 174.777737800000011, -36.8675035 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771844.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7775881, -36.8693109 ], [ 174.7772216, -36.870436 ], [ 174.776774100000011, -36.8703557 ], [ 174.777134600000011, -36.8692112 ], [ 174.7775881, -36.8693109 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771855.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.776586400000014, -36.8665293 ], [ 174.776706499999989, -36.8661585 ], [ 174.7773159, -36.8662958 ], [ 174.7772043, -36.8666598 ], [ 174.776586400000014, -36.8665293 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771864.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7772043, -36.8666598 ], [ 174.7773159, -36.8662958 ], [ 174.7774962, -36.8663233 ], [ 174.7777451, -36.8664331 ], [ 174.7776249, -36.8667559 ], [ 174.7772043, -36.8666598 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771867.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7725333, -36.8644398 ], [ 174.7768093, -36.8653366 ], [ 174.7765877, -36.8659937 ], [ 174.7723463, -36.865046 ], [ 174.7725333, -36.8644398 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771908.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.767757100000011, -36.8610584 ], [ 174.767, -36.8631128 ], [ 174.7650405, -36.8627006 ], [ 174.7650461, -36.8626086 ], [ 174.767001599999986, -36.8605159 ], [ 174.7672057, -36.8605969 ], [ 174.7670918, -36.8608965 ], [ 174.767757100000011, -36.8610584 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771909.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.767757100000011, -36.8610584 ], [ 174.7670918, -36.8608965 ], [ 174.7672057, -36.8605969 ], [ 174.767871, -36.8607588 ], [ 174.767757100000011, -36.8610584 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771920.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.776953600000013, -36.8653666 ], [ 174.778028299999988, -36.8656091 ], [ 174.777770800000013, -36.8662821 ], [ 174.7775734, -36.8661859 ], [ 174.7767666, -36.8660074 ], [ 174.776953600000013, -36.8653666 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771956.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7616089, -36.876458 ], [ 174.7617376, -36.8761215 ], [ 174.7617376, -36.8754349 ], [ 174.761789099999987, -36.8753388 ], [ 174.7619951, -36.87538 ], [ 174.762081, -36.8754487 ], [ 174.762166799999989, -36.8757508 ], [ 174.7624415, -36.8759842 ], [ 174.7620638, -36.8763893 ], [ 174.7616089, -36.876458 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28771978.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7618235, -36.8752221 ], [ 174.7619951, -36.8749269 ], [ 174.76229, -36.8751054 ], [ 174.7624243, -36.8750367 ], [ 174.7626646, -36.8749269 ], [ 174.7628191, -36.8752015 ], [ 174.7631538, -36.8757233 ], [ 174.7629307, -36.8758194 ], [ 174.762630300000012, -36.8758194 ], [ 174.762527299999988, -36.875895 ], [ 174.7622955, -36.8757233 ], [ 174.7621925, -36.8754143 ], [ 174.7621239, -36.8753114 ], [ 174.7618235, -36.8752221 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772001.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7626646, -36.8749269 ], [ 174.7624243, -36.8750367 ], [ 174.76229, -36.8751054 ], [ 174.7619951, -36.8749269 ], [ 174.7621843, -36.8745933 ], [ 174.762477600000011, -36.8745446 ], [ 174.7626646, -36.8749269 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772003.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7626079, -36.8744508 ], [ 174.7629138, -36.8745892 ], [ 174.763068299999986, -36.8748227 ], [ 174.7633858, -36.8750767 ], [ 174.7636262, -36.8753857 ], [ 174.76385830000001, -36.8756829 ], [ 174.7638411, -36.875985 ], [ 174.763641400000012, -36.8760991 ], [ 174.76348, -36.8759911 ], [ 174.7630766, -36.8752633 ], [ 174.7630594, -36.8750436 ], [ 174.762879199999986, -36.87492 ], [ 174.7625959, -36.8744874 ], [ 174.7626079, -36.8744508 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772004.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7619951, -36.8766639 ], [ 174.7614544, -36.8767618 ], [ 174.76157, -36.8765747 ], [ 174.7617423, -36.8765437 ], [ 174.762184, -36.8764168 ], [ 174.7626818, -36.8759224 ], [ 174.7629736, -36.8759087 ], [ 174.763239700000014, -36.8758194 ], [ 174.7634028, -36.8760666 ], [ 174.7634895, -36.8761585 ], [ 174.7629254, -36.8761797 ], [ 174.7619951, -36.8766639 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772071.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.777109, -36.878612 ], [ 174.7775749, -36.8786796 ], [ 174.777382751327394, -36.879620605 ], [ 174.776865480954967, -36.879620605 ], [ 174.777109, -36.878612 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772073.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.776322191254593, -36.879620605 ], [ 174.7765556, -36.8785336 ], [ 174.777109, -36.878612 ], [ 174.776865480954967, -36.879620605 ], [ 174.776322191254593, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772074.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.775503742004361, -36.879620605 ], [ 174.7756882, -36.8787663 ], [ 174.7762726, -36.8788558 ], [ 174.776109050198755, -36.879620605 ], [ 174.775503742004361, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772083.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.774586205216622, -36.879620605 ], [ 174.7725448, -36.8792663 ], [ 174.7727841, -36.8783186 ], [ 174.7756882, -36.8787663 ], [ 174.775503742004361, -36.879620605 ], [ 174.774586205216622, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772084.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.772471934105255, -36.879620605 ], [ 174.7725266, -36.8794034 ], [ 174.773677967472054, -36.879620605 ], [ 174.772471934105255, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28772179.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7377282, -36.8728746 ], [ 174.7377103, -36.8725757 ], [ 174.7379564, -36.8726402 ], [ 174.738148700000011, -36.8726823 ], [ 174.7381109, -36.8728902 ], [ 174.7377282, -36.8728746 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28787394.0, "name": "Victoria Park Markets", "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7553173, -36.8482093 ], [ 174.7553217, -36.8484799 ], [ 174.7539118, -36.8487158 ], [ 174.7537187, -36.8486986 ], [ 174.7535432, -36.8486049 ], [ 174.7534827, -36.8481406 ], [ 174.7553173, -36.8482093 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28787520.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761542, -36.8480311 ], [ 174.7607959, -36.8497725 ], [ 174.7594188, -36.8493787 ], [ 174.760137899999989, -36.8476886 ], [ 174.761542, -36.8480311 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28790973.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7298094, -36.8556029 ], [ 174.7301315, -36.8565326 ], [ 174.7290037, -36.8575953 ], [ 174.728327, -36.8570569 ], [ 174.7298094, -36.8556029 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28790975.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.729820499999988, -36.8554361 ], [ 174.7282155, -36.856947 ], [ 174.727549, -36.8564803 ], [ 174.7291081, -36.8549141 ], [ 174.729820499999988, -36.8554361 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28790984.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7309621, -36.8541312 ], [ 174.7313054, -36.8547081 ], [ 174.7299578, -36.8553399 ], [ 174.729211099999986, -36.8548386 ], [ 174.7303527, -36.8537397 ], [ 174.7309621, -36.8541312 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791058.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7338666, -36.8526747 ], [ 174.7346133, -36.8530046 ], [ 174.7343443, -36.8535179 ], [ 174.7340005, -36.8535337 ], [ 174.733785899999987, -36.8535818 ], [ 174.7331936, -36.8538496 ], [ 174.7326517, -36.8529144 ], [ 174.7338666, -36.8526747 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791063.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.732050500000014, -36.8518021 ], [ 174.734716600000013, -36.8515664 ], [ 174.7348025, -36.8519532 ], [ 174.735500300000012, -36.8518623 ], [ 174.7365565, -36.8520809 ], [ 174.736727, -36.8521393 ], [ 174.736768, -36.852312 ], [ 174.7367889, -36.8525009 ], [ 174.735442400000011, -36.8521944 ], [ 174.732575700000012, -36.8527576 ], [ 174.7320521, -36.8519884 ], [ 174.732050500000014, -36.8518021 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791068.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.735777899999988, -36.8527459 ], [ 174.7357027, -36.8529059 ], [ 174.736775599999987, -36.8532901 ], [ 174.7367179, -36.8535993 ], [ 174.7348651, -36.8529273 ], [ 174.7341984, -36.8526005 ], [ 174.7354048, -36.8523476 ], [ 174.73676420000001, -36.8526134 ], [ 174.7367985, -36.8527164 ], [ 174.7368358, -36.8529701 ], [ 174.735777899999988, -36.8527459 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791071.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7348335, -36.8530909 ], [ 174.736661199999986, -36.8536917 ], [ 174.7363681, -36.8543083 ], [ 174.7345498, -36.8535817 ], [ 174.7348335, -36.8530909 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791075.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7350888, -36.8540413 ], [ 174.7360089, -36.8543098 ], [ 174.7356141, -36.8550927 ], [ 174.7348073, -36.8554567 ], [ 174.7343109, -36.8547342 ], [ 174.7348055, -36.8544968 ], [ 174.7350888, -36.8540413 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791080.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7348981, -36.8539857 ], [ 174.7346689, -36.8543811 ], [ 174.734052100000014, -36.8546659 ], [ 174.7335443, -36.8539396 ], [ 174.734038, -36.8537062 ], [ 174.7341034, -36.8537187 ], [ 174.7342668, -36.8537692 ], [ 174.7348981, -36.8539857 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791085.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.738964399999986, -36.8553042 ], [ 174.7375624, -36.8553674 ], [ 174.737468, -36.8547424 ], [ 174.738326300000011, -36.8547012 ], [ 174.7385066, -36.8547356 ], [ 174.7386525, -36.8548111 ], [ 174.738825, -36.8548921 ], [ 174.738832699999989, -36.8550103 ], [ 174.738964399999986, -36.8553042 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791086.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7375538, -36.8555185 ], [ 174.7390216, -36.8554224 ], [ 174.7393649, -36.8561847 ], [ 174.7376568, -36.8562877 ], [ 174.7375538, -36.8555185 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791125.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7302325, -36.8536848 ], [ 174.7291081, -36.854763 ], [ 174.7283442, -36.8542342 ], [ 174.7294171, -36.853156 ], [ 174.7302325, -36.8536848 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791135.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7292969, -36.8530735 ], [ 174.728241200000014, -36.8541793 ], [ 174.7274516, -36.8536573 ], [ 174.728524599999986, -36.8525893 ], [ 174.7292969, -36.8530735 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791173.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7386353, -36.8522562 ], [ 174.7382282, -36.8522909 ], [ 174.738029899999987, -36.8508164 ], [ 174.7364456, -36.8509767 ], [ 174.734645699999987, -36.8511355 ], [ 174.7345841, -36.8507384 ], [ 174.737631099999987, -36.8504499 ], [ 174.7373639, -36.8489243 ], [ 174.73805, -36.8488633 ], [ 174.7386353, -36.8522562 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791278.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.738712600000014, -36.8526546 ], [ 174.7390216, -36.8547081 ], [ 174.738910800000014, -36.8547805 ], [ 174.738540699999987, -36.8545439 ], [ 174.7382829, -36.8526958 ], [ 174.738712600000014, -36.8526546 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28791309.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7522137, -36.8518716 ], [ 174.7520714, -36.8522512 ], [ 174.751935, -36.8522155 ], [ 174.7520936, -36.8518373 ], [ 174.7522137, -36.8518716 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28806800.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7335443, -36.8539396 ], [ 174.734052100000014, -36.8546659 ], [ 174.73323, -36.8550379 ], [ 174.7329834, -36.8548282 ], [ 174.7326627, -36.8543378 ], [ 174.7335443, -36.8539396 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28806806.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7313747, -36.8513942 ], [ 174.7317415, -36.8513606 ], [ 174.731846600000011, -36.8521133 ], [ 174.7324424, -36.8529744 ], [ 174.73293, -36.8539459 ], [ 174.73265, -36.8540977 ], [ 174.732130899999987, -36.8531194 ], [ 174.7319496, -36.8528754 ], [ 174.7314652, -36.8522222 ], [ 174.7313747, -36.8513942 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28806816.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7320051, -36.8486541 ], [ 174.7322025, -36.8496775 ], [ 174.7319708, -36.8499522 ], [ 174.731842, -36.8502544 ], [ 174.7317047, -36.8504467 ], [ 174.731533, -36.8504192 ], [ 174.7313614, -36.8487708 ], [ 174.7320051, -36.8486541 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28806820.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7300602, -36.8496203 ], [ 174.7298542, -36.8496959 ], [ 174.7298542, -36.8499294 ], [ 174.72975120000001, -36.850108 ], [ 174.7291075, -36.8503071 ], [ 174.7288929, -36.8498401 ], [ 174.7286784, -36.8499775 ], [ 174.7282835, -36.8502247 ], [ 174.728026, -36.8503071 ], [ 174.727493900000013, -36.8504788 ], [ 174.7271796, -36.8504026 ], [ 174.7274363, -36.8503143 ], [ 174.7280946, -36.8500745 ], [ 174.7287115, -36.8496689 ], [ 174.7300396, -36.8492173 ], [ 174.7300602, -36.8496203 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28806839.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7256151, -36.850529 ], [ 174.725338, -36.8503299 ], [ 174.7253876, -36.8501033 ], [ 174.725782400000014, -36.8499385 ], [ 174.72588540000001, -36.8497255 ], [ 174.7266128, -36.8493958 ], [ 174.7281271, -36.8484735 ], [ 174.7283091, -36.8484154 ], [ 174.730063199999989, -36.8484368 ], [ 174.7300653, -36.849073 ], [ 174.7286148, -36.8495264 ], [ 174.728014, -36.849856 ], [ 174.7270183, -36.850172 ], [ 174.7256151, -36.850529 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28806842.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.725683800000013, -36.8471424 ], [ 174.72579, -36.8476169 ], [ 174.725439099999988, -36.8482076 ], [ 174.7246752, -36.8479054 ], [ 174.7245093, -36.847736 ], [ 174.72442860000001, -36.847615 ], [ 174.7244063, -36.8475096 ], [ 174.724390199999988, -36.8473589 ], [ 174.724405, -36.8472939 ], [ 174.7244648, -36.8472573 ], [ 174.725683800000013, -36.8471424 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811044.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7284201, -36.8525269 ], [ 174.72733, -36.8535502 ], [ 174.7263787, -36.8529568 ], [ 174.7271426, -36.8521807 ], [ 174.727415900000011, -36.8519019 ], [ 174.7284201, -36.8525269 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811047.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7294329, -36.8529871 ], [ 174.7275031, -36.8517961 ], [ 174.727906499999989, -36.8516999 ], [ 174.728258399999987, -36.8517137 ], [ 174.7289868, -36.8521767 ], [ 174.7293381, -36.8524462 ], [ 174.729347100000012, -36.8524651 ], [ 174.7297256, -36.8526996 ], [ 174.7294329, -36.8529871 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811184.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.724763700000011, -36.8535296 ], [ 174.724068499999987, -36.8540791 ], [ 174.723644256600011, -36.853674767139196 ], [ 174.723644256600011, -36.853091165115913 ], [ 174.7238968, -36.8529046 ], [ 174.724068499999987, -36.8529046 ], [ 174.724763700000011, -36.8535296 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811217.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7249268, -36.8617089 ], [ 174.725613399999986, -36.8621072 ], [ 174.7248753, -36.8629656 ], [ 174.7242573, -36.8626085 ], [ 174.7249268, -36.8617089 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811223.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723914, -36.8541615 ], [ 174.723644256600011, -36.854357218335672 ], [ 174.723644256600011, -36.85390758036305 ], [ 174.723914, -36.8541615 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811229.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.724051300000013, -36.854237 ], [ 174.724635, -36.8547864 ], [ 174.723644256600011, -36.855505594018894 ], [ 174.723644256600011, -36.85452587037723 ], [ 174.724051300000013, -36.854237 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811237.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7247208, -36.854862 ], [ 174.725270099999989, -36.8553771 ], [ 174.723644256600011, -36.856592438511512 ], [ 174.723644256600011, -36.855639579617481 ], [ 174.7247208, -36.854862 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811242.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.725381700000014, -36.8554732 ], [ 174.7259568, -36.8559952 ], [ 174.723644256600011, -36.857651292136609 ], [ 174.723644256600011, -36.856732947382511 ], [ 174.725381700000014, -36.8554732 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811247.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7260683, -36.8560707 ], [ 174.7266348, -36.8565515 ], [ 174.723644256600011, -36.858647594530808 ], [ 174.723644256600011, -36.857792264852328 ], [ 174.7260683, -36.8560707 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811265.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.72813690000001, -36.8571352 ], [ 174.726454600000011, -36.8583508 ], [ 174.725750799999986, -36.8578975 ], [ 174.7237423, -36.8592435 ], [ 174.723644256600011, -36.859070305857976 ], [ 174.723644256600011, -36.858805779709435 ], [ 174.7269009, -36.8565789 ], [ 174.727055400000012, -36.8564965 ], [ 174.7272185, -36.8564759 ], [ 174.7273558, -36.8565102 ], [ 174.72813690000001, -36.8571352 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811270.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.729106699999988, -36.8576777 ], [ 174.730199, -36.856712 ], [ 174.7302132, -36.8580803 ], [ 174.730109700000014, -36.8581003 ], [ 174.7299136, -36.8582821 ], [ 174.729106699999988, -36.8576777 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811292.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7267807, -36.8543263 ], [ 174.7273644, -36.8537357 ], [ 174.7281197, -36.8542782 ], [ 174.7270211, -36.855329 ], [ 174.7271241, -36.8554251 ], [ 174.7282227, -36.8543538 ], [ 174.7290123, -36.8548551 ], [ 174.7275103, -36.8563317 ], [ 174.7273987, -36.8563592 ], [ 174.727184099999988, -36.8563386 ], [ 174.7269867, -36.856366 ], [ 174.7267636, -36.8565034 ], [ 174.7241311, -36.8541679 ], [ 174.7248581, -36.853612 ], [ 174.7256821, -36.8543469 ], [ 174.7258452, -36.8546216 ], [ 174.725931, -36.8547178 ], [ 174.7260512, -36.8546697 ], [ 174.7257937, -36.8542782 ], [ 174.725021199999986, -36.8534953 ], [ 174.725436800000011, -36.8532064 ], [ 174.7259808, -36.8537879 ], [ 174.726173499999987, -36.8541572 ], [ 174.7263661, -36.8545746 ], [ 174.726478500000013, -36.8547191 ], [ 174.726582900000011, -36.8550322 ], [ 174.726712099999986, -36.854862 ], [ 174.7267636, -36.8546972 ], [ 174.7267807, -36.8543263 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811316.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7264529, -36.8540834 ], [ 174.7264529, -36.8537824 ], [ 174.7263343, -36.8535167 ], [ 174.7261086, -36.8530461 ], [ 174.7261312, -36.852921 ], [ 174.72624, -36.8529939 ], [ 174.7272528, -36.8536601 ], [ 174.726652, -36.8542851 ], [ 174.726446, -36.854395 ], [ 174.7264529, -36.8540834 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28811348.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7295273, -36.8530489 ], [ 174.729947900000013, -36.8526024 ], [ 174.7299994, -36.852472 ], [ 174.730008, -36.8523689 ], [ 174.7299994, -36.8521835 ], [ 174.730008, -36.8521011 ], [ 174.7298964, -36.8520255 ], [ 174.729827699999987, -36.852053 ], [ 174.7298106, -36.8521629 ], [ 174.7298964, -36.8522865 ], [ 174.7298878, -36.8524926 ], [ 174.7297485, -36.8526762 ], [ 174.729409, -36.8524538 ], [ 174.729532400000011, -36.8522251 ], [ 174.7293786, -36.8521773 ], [ 174.7294178, -36.8518394 ], [ 174.7295603, -36.8517585 ], [ 174.729736699999989, -36.8517106 ], [ 174.72989, -36.8517502 ], [ 174.730561200000011, -36.8523572 ], [ 174.73101, -36.8527178 ], [ 174.7308234, -36.8531107 ], [ 174.7303427, -36.8535983 ], [ 174.7295273, -36.8530489 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28845042.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.73466160000001, -36.8592065 ], [ 174.735545699999989, -36.8591378 ], [ 174.7356916, -36.8604494 ], [ 174.7347561, -36.8605113 ], [ 174.73466160000001, -36.8592065 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28845045.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7357345, -36.8591378 ], [ 174.7366787, -36.8590622 ], [ 174.736845100000011, -36.8603897 ], [ 174.73587950000001, -36.8604412 ], [ 174.7357345, -36.8591378 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28845059.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.736858899999987, -36.8605181 ], [ 174.7369362, -36.861198 ], [ 174.7372101, -36.8616891 ], [ 174.736240900000013, -36.8619671 ], [ 174.7359749, -36.8613147 ], [ 174.735897599999987, -36.8605731 ], [ 174.736858899999987, -36.8605181 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28845070.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.737022, -36.8605044 ], [ 174.7379661, -36.8604563 ], [ 174.7380434, -36.8609164 ], [ 174.7385069, -36.8619877 ], [ 174.7388416, -36.8623242 ], [ 174.738112, -36.8628118 ], [ 174.7377086, -36.8624135 ], [ 174.7371164, -36.8611705 ], [ 174.737022, -36.8605044 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28845084.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.738229100000012, -36.8629134 ], [ 174.7389703, -36.8624478 ], [ 174.7399917, -36.8635053 ], [ 174.739270800000014, -36.8639586 ], [ 174.738229100000012, -36.8629134 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28845090.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7380949, -36.863004 ], [ 174.739159199999989, -36.8640547 ], [ 174.7383581, -36.8645905 ], [ 174.737339600000013, -36.8634985 ], [ 174.7380949, -36.863004 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28845097.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7372709, -36.861816 ], [ 174.7375284, -36.8624066 ], [ 174.738009, -36.8628667 ], [ 174.7371713, -36.8634142 ], [ 174.7368184, -36.8631764 ], [ 174.736361100000011, -36.8620976 ], [ 174.7372709, -36.861816 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28896925.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7791552, -36.8490097 ], [ 174.7795831, -36.8490223 ], [ 174.7799527, -36.8493001 ], [ 174.779508, -36.8494348 ], [ 174.7793681, -36.8494843 ], [ 174.7782762, -36.8498698 ], [ 174.7771026, -36.8505076 ], [ 174.7768951, -36.8506943 ], [ 174.7763292, -36.8512014 ], [ 174.7760524, -36.8510719 ], [ 174.776533300000011, -36.8504513 ], [ 174.7767277, -36.8502491 ], [ 174.7779482, -36.8494147 ], [ 174.7791552, -36.8490097 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897176.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.778204100000011, -36.8521356 ], [ 174.7783398, -36.8522446 ], [ 174.7784428, -36.8523408 ], [ 174.7787432, -36.8528215 ], [ 174.778537199999988, -36.8529039 ], [ 174.778408500000012, -36.8526842 ], [ 174.7783312, -36.8526979 ], [ 174.7782196, -36.8525125 ], [ 174.7780061, -36.8523809 ], [ 174.778204100000011, -36.8521356 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897183.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7780061, -36.8523809 ], [ 174.7782196, -36.8525125 ], [ 174.7783312, -36.8526979 ], [ 174.778408500000012, -36.8526842 ], [ 174.778537199999988, -36.8529039 ], [ 174.777841200000012, -36.8531869 ], [ 174.777478800000011, -36.8529774 ], [ 174.7780061, -36.8523809 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897222.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.778831200000013, -36.8529423 ], [ 174.779129399999988, -36.8534671 ], [ 174.7788462, -36.8535495 ], [ 174.7785431, -36.8530532 ], [ 174.778831200000013, -36.8529423 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897238.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7788462, -36.8535495 ], [ 174.7784256, -36.8536869 ], [ 174.778027, -36.8532333 ], [ 174.7785431, -36.8530532 ], [ 174.7788462, -36.8535495 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897257.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7787652, -36.853684 ], [ 174.7793882, -36.854733 ], [ 174.7791257, -36.8548337 ], [ 174.7785031, -36.853785 ], [ 174.7787652, -36.853684 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897268.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.779765700000013, -36.8544243 ], [ 174.780228099999988, -36.8551703 ], [ 174.77989310000001, -36.8552889 ], [ 174.7794371, -36.8545471 ], [ 174.779765700000013, -36.8544243 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897277.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.780271, -36.8552665 ], [ 174.78109, -36.8565709 ], [ 174.7807173, -36.8567224 ], [ 174.7799277, -36.855397 ], [ 174.780271, -36.8552665 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897281.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7799277, -36.855397 ], [ 174.7807173, -36.8567224 ], [ 174.780597199999988, -36.8567705 ], [ 174.7804236, -36.8567827 ], [ 174.7803208, -36.856757 ], [ 174.7796502, -36.8556998 ], [ 174.779637900000012, -36.8556006 ], [ 174.7796966, -36.8554912 ], [ 174.7797732, -36.8554519 ], [ 174.7799277, -36.855397 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897299.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.78113, -36.8566814 ], [ 174.7817765, -36.8576432 ], [ 174.7814409, -36.8577927 ], [ 174.781039600000014, -36.8571956 ], [ 174.7807774, -36.8568392 ], [ 174.78113, -36.8566814 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28897354.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7814409, -36.8577927 ], [ 174.781088, -36.8580166 ], [ 174.780988900000011, -36.8581243 ], [ 174.7809334, -36.8582238 ], [ 174.780954900000012, -36.8583731 ], [ 174.7812755, -36.8587385 ], [ 174.780654199999987, -36.8590966 ], [ 174.780571400000014, -36.8589681 ], [ 174.780339700000013, -36.8590986 ], [ 174.7804856, -36.8594488 ], [ 174.7806744, -36.8592085 ], [ 174.781374699999986, -36.8588356 ], [ 174.781524499999989, -36.8589697 ], [ 174.7817717, -36.8591229 ], [ 174.7822684, -36.8592925 ], [ 174.782870300000013, -36.8593302 ], [ 174.7828266, -36.859888 ], [ 174.782272400000011, -36.8598597 ], [ 174.7818489, -36.8597594 ], [ 174.7812525, -36.8596855 ], [ 174.781039, -36.8597386 ], [ 174.780867300000011, -36.8598759 ], [ 174.7809875, -36.8599377 ], [ 174.781133399999987, -36.8598278 ], [ 174.7812621, -36.8598004 ], [ 174.7814166, -36.8598004 ], [ 174.7816741, -36.8598347 ], [ 174.781614, -36.8599652 ], [ 174.7815196, -36.8600476 ], [ 174.781245, -36.8599652 ], [ 174.7811849, -36.8600339 ], [ 174.7815368, -36.8601437 ], [ 174.7816999, -36.8600751 ], [ 174.7818715, -36.8598553 ], [ 174.782258500000012, -36.8599646 ], [ 174.782815699999986, -36.8599858 ], [ 174.7827086, -36.8604981 ], [ 174.7824656, -36.8609842 ], [ 174.781833400000011, -36.8607355 ], [ 174.781684899999988, -36.8606405 ], [ 174.7816341, -36.8607086 ], [ 174.7817805, -36.8608028 ], [ 174.782077500000014, -36.8609404 ], [ 174.78145090000001, -36.8619018 ], [ 174.781124799999986, -36.8617026 ], [ 174.780936, -36.8612219 ], [ 174.7810218, -36.8608854 ], [ 174.7807431, -36.8602249 ], [ 174.780090800000011, -36.8590093 ], [ 174.7795339, -36.857847 ], [ 174.7788816, -36.8564048 ], [ 174.7790113, -36.8559865 ], [ 174.7791915, -36.8558903 ], [ 174.7795692, -36.855753 ], [ 174.780274600000013, -36.8568372 ], [ 174.7806163, -36.8568518 ], [ 174.780788, -36.8571334 ], [ 174.7807355, -36.8572014 ], [ 174.780227599999989, -36.8574603 ], [ 174.7800988, -36.8575204 ], [ 174.78001, -36.8575517 ], [ 174.7800901, -36.8576216 ], [ 174.780349300000012, -36.8575242 ], [ 174.781039600000014, -36.8571956 ], [ 174.7814409, -36.8577927 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898196.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7679523, -36.8450968 ], [ 174.7687915, -36.8453236 ], [ 174.7685812, -36.8458735 ], [ 174.7685339, -36.8459971 ], [ 174.768464099999989, -36.8461796 ], [ 174.7682342, -36.8462028 ], [ 174.768132900000012, -36.8461777 ], [ 174.7679089, -36.8461223 ], [ 174.76782080000001, -36.8461005 ], [ 174.7676778, -36.8460651 ], [ 174.767644100000012, -36.8460568 ], [ 174.7679523, -36.8450968 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898199.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7689339, -36.8453473 ], [ 174.7699987, -36.8456114 ], [ 174.7698062, -36.8459439 ], [ 174.7687904, -36.8456813 ], [ 174.7689339, -36.8453473 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898200.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7678374, -36.845079 ], [ 174.7675013, -36.846039 ], [ 174.7671078, -36.8459402 ], [ 174.7674563, -36.8449801 ], [ 174.7678374, -36.845079 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898395.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.767140500000011, -36.8487834 ], [ 174.76698540000001, -36.848895 ], [ 174.7663712, -36.8485836 ], [ 174.7664197, -36.848399 ], [ 174.766562599999986, -36.8479114 ], [ 174.7670669, -36.8480316 ], [ 174.767107900000013, -36.8481577 ], [ 174.7674787, -36.8485473 ], [ 174.767140500000011, -36.8487834 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898398.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7663013, -36.8483867 ], [ 174.7660512, -36.8492172 ], [ 174.7653689, -36.8490139 ], [ 174.7655963, -36.8481724 ], [ 174.7663013, -36.8483867 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898419.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7663289, -36.8482993 ], [ 174.7656312, -36.8480859 ], [ 174.7658759, -36.8473087 ], [ 174.765956499999987, -36.8470526 ], [ 174.7666599, -36.8472483 ], [ 174.7663289, -36.8482993 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898653.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7661503, -36.8464314 ], [ 174.7668402, -36.8465936 ], [ 174.7666774, -36.8471631 ], [ 174.766007300000012, -36.8469773 ], [ 174.7661503, -36.8464314 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898675.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7671389, -36.8472769 ], [ 174.766782, -36.8471814 ], [ 174.76693, -36.8466331 ], [ 174.76727, -36.846764 ], [ 174.7671389, -36.8472769 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898677.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.766965199999987, -36.8459916 ], [ 174.766819, -36.8464815 ], [ 174.766166, -36.8463142 ], [ 174.7662967, -36.8458422 ], [ 174.766965199999987, -36.8459916 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898696.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7687853, -36.8457419 ], [ 174.7688329, -36.8457529 ], [ 174.7697267, -36.8459599 ], [ 174.769785899999988, -36.8459736 ], [ 174.76968260000001, -36.8460998 ], [ 174.769629900000012, -36.8461039 ], [ 174.768721699999986, -36.8461752 ], [ 174.768608300000011, -36.8461841 ], [ 174.7687853, -36.8457419 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898702.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7670065, -36.8459172 ], [ 174.7663368, -36.8457446 ], [ 174.766526199999987, -36.8451478 ], [ 174.7666393, -36.8447916 ], [ 174.7673785, -36.8449715 ], [ 174.7672456, -36.8453093 ], [ 174.7670065, -36.8459172 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898715.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7653583, -36.8444595 ], [ 174.7665084, -36.8447495 ], [ 174.766139900000013, -36.8457488 ], [ 174.765681300000011, -36.8456164 ], [ 174.7659181, -36.8451042 ], [ 174.7658025, -36.8450677 ], [ 174.765708499999988, -36.84528 ], [ 174.76507, -36.8451003 ], [ 174.7653583, -36.8444595 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898722.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7657003, -36.8453485 ], [ 174.76533, -36.8461493 ], [ 174.7646928, -36.845947 ], [ 174.7650112, -36.8451674 ], [ 174.7657003, -36.8453485 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898724.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.764479200000011, -36.8450511 ], [ 174.76417, -36.845789 ], [ 174.7639716, -36.8457376 ], [ 174.7638412, -36.8456837 ], [ 174.7641279, -36.8449524 ], [ 174.764479200000011, -36.8450511 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898743.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.763625499999989, -36.8457408 ], [ 174.7634501, -36.8461573 ], [ 174.763006600000011, -36.8460378 ], [ 174.76284, -36.8464334 ], [ 174.7625052, -36.8463431 ], [ 174.76284720000001, -36.8455309 ], [ 174.763625499999989, -36.8457408 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898761.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.763771600000013, -36.8458067 ], [ 174.7644764, -36.8460059 ], [ 174.764118200000013, -36.8468172 ], [ 174.7637889, -36.8467241 ], [ 174.7636874, -36.8466954 ], [ 174.763877, -36.8462661 ], [ 174.7636029, -36.8461886 ], [ 174.763771600000013, -36.8458067 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898794.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7660186, -36.8463598 ], [ 174.7654388, -36.8461756 ], [ 174.7656523, -36.8457 ], [ 174.766144200000014, -36.845856 ], [ 174.7660186, -36.8463598 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898804.0, "name": null, "type": "commercial; reta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7673998, -36.8434184 ], [ 174.768436400000013, -36.8437368 ], [ 174.7683294, -36.8439915 ], [ 174.7672838, -36.8437038 ], [ 174.7673998, -36.8434184 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898805.0, "name": null, "type": "commercial; reta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.768583, -36.8437628 ], [ 174.769304799999986, -36.8439378 ], [ 174.7692051, -36.8442013 ], [ 174.768483300000014, -36.8440263 ], [ 174.768583, -36.8437628 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898809.0, "name": null, "type": "commercial; reta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.769435499999986, -36.8439911 ], [ 174.7708982, -36.8443606 ], [ 174.7707886, -36.8446386 ], [ 174.7693258, -36.8442692 ], [ 174.769435499999986, -36.8439911 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898816.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7649278, -36.8450636 ], [ 174.7641583, -36.8448403 ], [ 174.7643543, -36.8443342 ], [ 174.7648319, -36.8443268 ], [ 174.765215899999987, -36.8443981 ], [ 174.7649278, -36.8450636 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898819.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.763650399999989, -36.8456445 ], [ 174.7628915, -36.8454222 ], [ 174.7632149, -36.8446778 ], [ 174.7636459, -36.8448044 ], [ 174.7635546, -36.8450257 ], [ 174.763889299999988, -36.8451218 ], [ 174.763650399999989, -36.8456445 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28898916.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.768931400000014, -36.8502035 ], [ 174.768497599999989, -36.850072 ], [ 174.768615, -36.8497324 ], [ 174.7687295, -36.849465 ], [ 174.7690735, -36.8487003 ], [ 174.769559500000014, -36.8485512 ], [ 174.7696264, -36.8485852 ], [ 174.7695998, -36.8487521 ], [ 174.768931400000014, -36.8502035 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28899026.0, "name": null, "type": "commercial; reta" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.764010899999988, -36.8447899 ], [ 174.763700300000011, -36.8446986 ], [ 174.7633505, -36.8445957 ], [ 174.7633822, -36.8445353 ], [ 174.7637896, -36.8444551 ], [ 174.764198099999987, -36.8443746 ], [ 174.764010899999988, -36.8447899 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28900366.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7653263, -36.8462346 ], [ 174.7650749, -36.8467652 ], [ 174.7654704, -36.846893 ], [ 174.765493, -36.8468412 ], [ 174.765182, -36.8467404 ], [ 174.7654124, -36.8462556 ], [ 174.7659908, -36.8464424 ], [ 174.7658055, -36.847055 ], [ 174.7657509, -36.8472119 ], [ 174.7657145, -36.8473096 ], [ 174.7642749, -36.8469155 ], [ 174.764641899999987, -36.8460355 ], [ 174.7653263, -36.8462346 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28900367.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7654358, -36.8481615 ], [ 174.7646995, -36.8479544 ], [ 174.764821500000011, -36.8476447 ], [ 174.764976, -36.8476859 ], [ 174.7650102, -36.8476108 ], [ 174.764452299999988, -36.8474391 ], [ 174.7644095, -36.8475073 ], [ 174.764701300000013, -36.8476035 ], [ 174.7646087, -36.8479243 ], [ 174.764022, -36.8477426 ], [ 174.7641509, -36.8471934 ], [ 174.7642118, -36.8470116 ], [ 174.7656662, -36.8474193 ], [ 174.7654358, -36.8481615 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28900373.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7652306, -36.848961 ], [ 174.7635709, -36.8484864 ], [ 174.76366920000001, -36.8482898 ], [ 174.7639551, -36.8478384 ], [ 174.764568200000014, -36.8479997 ], [ 174.764461, -36.8482835 ], [ 174.7642035, -36.8481942 ], [ 174.7641692, -36.8482629 ], [ 174.7646842, -36.8484346 ], [ 174.764718499999987, -36.8483659 ], [ 174.7645383, -36.8483109 ], [ 174.7646574, -36.8480341 ], [ 174.7654331, -36.8482596 ], [ 174.7652306, -36.848961 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28900375.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7637282, -36.8477283 ], [ 174.763448899999986, -36.8484257 ], [ 174.762676199999987, -36.8482119 ], [ 174.762971099999987, -36.8475213 ], [ 174.7637282, -36.8477283 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28901004.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.758491600000013, -36.8551347 ], [ 174.757749100000012, -36.8558795 ], [ 174.757749100000012, -36.8556735 ], [ 174.7576546, -36.8555636 ], [ 174.757628899999986, -36.8552752 ], [ 174.757628899999986, -36.8551584 ], [ 174.7578349, -36.8547876 ], [ 174.757972200000012, -36.8546021 ], [ 174.758109499999989, -36.854451 ], [ 174.7581954, -36.8543824 ], [ 174.7582812, -36.8543824 ], [ 174.758358500000014, -36.8544098 ], [ 174.7584443, -36.8544854 ], [ 174.758491600000013, -36.8551347 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28934390.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.789546300000012, -36.8758949 ], [ 174.7892976, -36.876241 ], [ 174.7881912, -36.8756922 ], [ 174.7881054, -36.8758089 ], [ 174.789207800000014, -36.8763407 ], [ 174.7888092, -36.8768723 ], [ 174.7850556, -36.8750676 ], [ 174.7850808, -36.8749234 ], [ 174.785201, -36.8746084 ], [ 174.785390799999988, -36.8738343 ], [ 174.786036700000011, -36.8735127 ], [ 174.786225699999989, -36.8737491 ], [ 174.78630290000001, -36.8738384 ], [ 174.78644030000001, -36.8739551 ], [ 174.78657, -36.87401 ], [ 174.7867149, -36.8740306 ], [ 174.786826499999989, -36.8740169 ], [ 174.7869638, -36.8744975 ], [ 174.7881741, -36.8752459 ], [ 174.788288200000011, -36.8752925 ], [ 174.789546300000012, -36.8758949 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28934391.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7921652, -36.8781433 ], [ 174.792113699999987, -36.8788367 ], [ 174.791813499999989, -36.8794025 ], [ 174.790121, -36.8788907 ], [ 174.7899372, -36.8787619 ], [ 174.7896964, -36.8785157 ], [ 174.78942, -36.8780608 ], [ 174.789257600000013, -36.8777112 ], [ 174.7897676, -36.8776217 ], [ 174.7901482, -36.8772096 ], [ 174.790663099999989, -36.8777794 ], [ 174.790791899999988, -36.8778549 ], [ 174.791135200000014, -36.8779923 ], [ 174.7913326, -36.8780403 ], [ 174.7917961, -36.8780403 ], [ 174.7921652, -36.8781433 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28934429.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.789850437876254, -36.879620605 ], [ 174.7905541, -36.8791694 ], [ 174.792043246217105, -36.879620605 ], [ 174.789850437876254, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28969175.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.738684, -36.8517658 ], [ 174.744245799999987, -36.8512575 ], [ 174.7443285, -36.8517834 ], [ 174.7387784, -36.8522809 ], [ 174.738684, -36.8517658 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28969176.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7443285, -36.8517834 ], [ 174.744245799999987, -36.8512575 ], [ 174.7446181, -36.8512277 ], [ 174.7447798, -36.8517383 ], [ 174.7443285, -36.8517834 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28969183.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.739714099999986, -36.8546925 ], [ 174.739188399999989, -36.8547355 ], [ 174.7390359, -36.8536133 ], [ 174.7396406, -36.8535704 ], [ 174.7396855, -36.8539937 ], [ 174.739843799999989, -36.8542475 ], [ 174.7397761, -36.8543974 ], [ 174.73966, -36.8544022 ], [ 174.739714099999986, -36.8546925 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28969187.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.739875, -36.8546582 ], [ 174.7398389, -36.8544071 ], [ 174.740622300000013, -36.8543442 ], [ 174.7405498, -36.8540105 ], [ 174.7400082, -36.8539428 ], [ 174.739955, -36.8535511 ], [ 174.7426236, -36.8532973 ], [ 174.742683699999986, -36.8536957 ], [ 174.742512, -36.8537094 ], [ 174.7425979, -36.8541284 ], [ 174.7445904, -36.853967 ], [ 174.744717900000012, -36.8539567 ], [ 174.7448224, -36.8542482 ], [ 174.739875, -36.8546582 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28969191.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7426236, -36.8532973 ], [ 174.7444682, -36.8531551 ], [ 174.7445904, -36.853967 ], [ 174.7425979, -36.8541284 ], [ 174.742512, -36.8537094 ], [ 174.742683699999986, -36.8536957 ], [ 174.7426236, -36.8532973 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28969193.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7444682, -36.8531551 ], [ 174.745188899999988, -36.8530469 ], [ 174.7456406, -36.8541756 ], [ 174.7448224, -36.8542482 ], [ 174.744717900000012, -36.8539567 ], [ 174.7445904, -36.853967 ], [ 174.7444682, -36.8531551 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29128772.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.733395384060913, -36.879620605 ], [ 174.7338484, -36.879278 ], [ 174.7341652, -36.8793624 ], [ 174.734154499999988, -36.879474 ], [ 174.734185129496353, -36.879620605 ], [ 174.733395384060913, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29129135.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7260636, -36.8777058 ], [ 174.7253253, -36.877182 ], [ 174.7249656, -36.8775573 ], [ 174.7246032, -36.8773562 ], [ 174.7247294, -36.8769273 ], [ 174.724780900000013, -36.8768312 ], [ 174.7253417, -36.8767495 ], [ 174.726085500000011, -36.8766527 ], [ 174.726205599999986, -36.8768792 ], [ 174.726325800000012, -36.8770371 ], [ 174.7265404, -36.8773255 ], [ 174.7267071, -36.8776061 ], [ 174.7261425, -36.8777303 ], [ 174.7260636, -36.8777058 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29544363.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7818536, -36.8577487 ], [ 174.7828687, -36.8590285 ], [ 174.7828982, -36.8591253 ], [ 174.7828931, -36.859239 ], [ 174.782317, -36.8591909 ], [ 174.782016700000014, -36.859114 ], [ 174.7823745, -36.8589168 ], [ 174.7819625, -36.858388 ], [ 174.781544599999989, -36.8579184 ], [ 174.7818536, -36.8577487 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29544404.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.781544599999989, -36.8579184 ], [ 174.7819625, -36.858388 ], [ 174.7813875, -36.8586696 ], [ 174.781118099999986, -36.8583562 ], [ 174.781065899999987, -36.8582567 ], [ 174.7811, -36.8581861 ], [ 174.7811753, -36.8580854 ], [ 174.781544599999989, -36.8579184 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29544411.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7813875, -36.8586696 ], [ 174.7819625, -36.858388 ], [ 174.7823745, -36.8589168 ], [ 174.782016700000014, -36.859114 ], [ 174.7816656, -36.8589245 ], [ 174.7813875, -36.8586696 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29545044.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7748086, -36.8512489 ], [ 174.7738851, -36.8522626 ], [ 174.7737907, -36.8521733 ], [ 174.774074, -36.8510496 ], [ 174.7748086, -36.8512489 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30088838.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.775662, -36.8688829 ], [ 174.7769993, -36.8691855 ], [ 174.7768994, -36.8695052 ], [ 174.7766427, -36.8703268 ], [ 174.7750264, -36.8699716 ], [ 174.7752883, -36.8691079 ], [ 174.7755642, -36.8691579 ], [ 174.775662, -36.8688829 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30088847.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.778431, -36.8685194 ], [ 174.7779739, -36.8698337 ], [ 174.778559199999989, -36.8702902 ], [ 174.778493200000014, -36.8705371 ], [ 174.7777159, -36.8698239 ], [ 174.7786168, -36.8668386 ], [ 174.7787, -36.8668593 ], [ 174.7788223, -36.8669891 ], [ 174.7786198, -36.8677297 ], [ 174.7788086, -36.8677915 ], [ 174.7786026, -36.86854 ], [ 174.778431, -36.8685194 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405068.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751169, -36.8743726 ], [ 174.7508042, -36.8746472 ], [ 174.7506037, -36.8752528 ], [ 174.7505387, -36.8752372 ], [ 174.7504274, -36.8755292 ], [ 174.7500535, -36.8753361 ], [ 174.750371, -36.8742993 ], [ 174.7507855, -36.8740314 ], [ 174.751169, -36.8743726 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405097.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7499944, -36.8770544 ], [ 174.7495738, -36.8769582 ], [ 174.7495299, -36.8769358 ], [ 174.750012, -36.8754161 ], [ 174.7504568, -36.8757196 ], [ 174.7503664, -36.8759648 ], [ 174.7499944, -36.8770544 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405142.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7498058, -36.8793267 ], [ 174.7495281, -36.8792688 ], [ 174.749669899999986, -36.8788329 ], [ 174.7493433, -36.8787649 ], [ 174.7495786, -36.8780417 ], [ 174.7497778, -36.8780832 ], [ 174.7500497, -36.8772475 ], [ 174.7504549, -36.8773318 ], [ 174.7498058, -36.8793267 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405205.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7494624, -36.8794509 ], [ 174.749776700000012, -36.8795202 ], [ 174.749741638638909, -36.879620605 ], [ 174.749406611347496, -36.879620605 ], [ 174.7494624, -36.8794509 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405235.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.747470099999987, -36.8788524 ], [ 174.7454112, -36.8784112 ], [ 174.7454021, -36.8784394 ], [ 174.740994699999987, -36.8775284 ], [ 174.7412653, -36.87663 ], [ 174.743888700000014, -36.8772046 ], [ 174.7436928, -36.877801 ], [ 174.7438953, -36.8778441 ], [ 174.7440727, -36.8772561 ], [ 174.7451926, -36.877492 ], [ 174.7452786, -36.8774985 ], [ 174.74534460000001, -36.8774729 ], [ 174.7454486, -36.8771927 ], [ 174.747820100000013, -36.877681 ], [ 174.7477268, -36.877973 ], [ 174.7477198, -36.8779949 ], [ 174.7476838, -36.8781076 ], [ 174.7475953, -36.8783844 ], [ 174.7455903, -36.8779382 ], [ 174.7455559, -36.8780549 ], [ 174.747577400000011, -36.8784909 ], [ 174.747470099999987, -36.8788524 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405244.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7508928, -36.8746794 ], [ 174.7512334, -36.8744326 ], [ 174.7514265, -36.8746021 ], [ 174.7511395, -36.8754304 ], [ 174.750914200000011, -36.8753746 ], [ 174.750806899999986, -36.8753488 ], [ 174.750828399999989, -36.8753059 ], [ 174.7506941, -36.8752743 ], [ 174.7508928, -36.8746794 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405248.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7516156, -36.8760295 ], [ 174.75171, -36.8757617 ], [ 174.7515383, -36.8757205 ], [ 174.7515812, -36.875597 ], [ 174.752019, -36.8756862 ], [ 174.7520447, -36.8756038 ], [ 174.7515898, -36.8755008 ], [ 174.751641299999989, -36.8753429 ], [ 174.751521200000013, -36.8753223 ], [ 174.7514783, -36.8754528 ], [ 174.751300500000013, -36.8754132 ], [ 174.7515555, -36.8746426 ], [ 174.7520413, -36.8747543 ], [ 174.751877, -36.8752988 ], [ 174.7522976, -36.8753949 ], [ 174.7520671, -36.8761412 ], [ 174.7516156, -36.8760295 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405291.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.750455499999987, -36.878093 ], [ 174.7510992, -36.8761074 ], [ 174.7525321, -36.87645 ], [ 174.752039, -36.8780771 ], [ 174.7514491, -36.8779607 ], [ 174.751338800000013, -36.8782669 ], [ 174.751098500000012, -36.878212 ], [ 174.750455499999987, -36.878093 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30405313.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7502558, -36.8787242 ], [ 174.750847099999987, -36.8788448 ], [ 174.75068, -36.8793622 ], [ 174.7500966, -36.8792236 ], [ 174.7502558, -36.8787242 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31085531.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7462631, -36.8730608 ], [ 174.746026699999987, -36.8738845 ], [ 174.7434934, -36.8734075 ], [ 174.7436042, -36.8730658 ], [ 174.743822200000011, -36.8729569 ], [ 174.7445113, -36.8727057 ], [ 174.7445961, -36.8727162 ], [ 174.7460345, -36.8730553 ], [ 174.7462631, -36.8730608 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31085866.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7476306, -36.8742914 ], [ 174.7472491, -36.8755671 ], [ 174.7464181, -36.8753957 ], [ 174.7467786, -36.8741283 ], [ 174.7476306, -36.8742914 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31085896.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7500838, -36.8734129 ], [ 174.748968, -36.8740995 ], [ 174.7488083, -36.8745235 ], [ 174.7485395, -36.8743325 ], [ 174.7477973, -36.8742076 ], [ 174.74791350000001, -36.873895 ], [ 174.749467, -36.8728479 ], [ 174.7500838, -36.8734129 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31086024.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7501524, -36.8734541 ], [ 174.7507103, -36.8739896 ], [ 174.7503155, -36.8742505 ], [ 174.7499808, -36.8752736 ], [ 174.7489262, -36.8746076 ], [ 174.749028, -36.8741681 ], [ 174.7501524, -36.8734541 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31089434.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7509219, -36.8760336 ], [ 174.7505263, -36.877161 ], [ 174.7501747, -36.8770818 ], [ 174.750619199999988, -36.8758267 ], [ 174.7509219, -36.8760336 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31089556.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.74939710000001, -36.8769214 ], [ 174.748332799999986, -36.8766879 ], [ 174.748933599999987, -36.874738 ], [ 174.749912099999989, -36.8753834 ], [ 174.74939710000001, -36.8769214 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31089604.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.748398400000013, -36.875841 ], [ 174.7473704, -36.8756057 ], [ 174.7477882, -36.8743332 ], [ 174.7485082, -36.8744373 ], [ 174.7488016, -36.8746535 ], [ 174.748398400000013, -36.875841 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31089985.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.740323116360713, -36.879620605 ], [ 174.7404192, -36.8793106 ], [ 174.74188156581917, -36.879620605 ], [ 174.740323116360713, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31090022.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.742535524694858, -36.879620605 ], [ 174.7404649, -36.8791967 ], [ 174.7407232, -36.8784865 ], [ 174.7433863, -36.8790351 ], [ 174.743202478662795, -36.879620605 ], [ 174.742535524694858, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31090065.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7435836, -36.8791138 ], [ 174.745938669540806, -36.879620605 ], [ 174.743413083352635, -36.879620605 ], [ 174.7435836, -36.8791138 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31090433.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7378372, -36.8791641 ], [ 174.7376855, -36.8796096 ], [ 174.7374859, -36.8795206 ], [ 174.7364234, -36.8793142 ], [ 174.736528600000014, -36.8789908 ], [ 174.736790899999988, -36.8786752 ], [ 174.7380886, -36.8789448 ], [ 174.7380188, -36.8791899 ], [ 174.7378372, -36.8791641 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31090468.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7368358, -36.8778249 ], [ 174.736729, -36.8781055 ], [ 174.7366064, -36.8781286 ], [ 174.7365196, -36.8779048 ], [ 174.7368358, -36.8778249 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31122011.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.76469339932811, -36.879620605 ], [ 174.7651584, -36.8794274 ], [ 174.7655406, -36.8794553 ], [ 174.7666907, -36.8785078 ], [ 174.7670855, -36.8780615 ], [ 174.767887800000011, -36.8784318 ], [ 174.7684946, -36.8789269 ], [ 174.7672698, -36.8794205 ], [ 174.766570115607664, -36.879620605 ], [ 174.76469339932811, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31122019.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761467823143875, -36.879620605 ], [ 174.761407600000013, -36.8795166 ], [ 174.7613649, -36.8792854 ], [ 174.7614293, -36.8789164 ], [ 174.7614508, -36.8787963 ], [ 174.762240100000014, -36.8787271 ], [ 174.762592, -36.8790978 ], [ 174.762884063458813, -36.879620605 ], [ 174.761467823143875, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31388877.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.74844010000001, -36.8716464 ], [ 174.7483597, -36.8715219 ], [ 174.748897, -36.8709788 ], [ 174.749412, -36.8705394 ], [ 174.74989260000001, -36.8701892 ], [ 174.7500217, -36.8700441 ], [ 174.7499941, -36.8708441 ], [ 174.7503819, -36.8709445 ], [ 174.7500604, -36.8718571 ], [ 174.7498544, -36.8718708 ], [ 174.7497196, -36.8719294 ], [ 174.7494965, -36.8719362 ], [ 174.7492819, -36.8721285 ], [ 174.7490416, -36.8722933 ], [ 174.74844010000001, -36.8716464 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389060.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7492193, -36.8724544 ], [ 174.749582299999986, -36.8722109 ], [ 174.749565100000012, -36.8721559 ], [ 174.74981, -36.8720049 ], [ 174.749905899999987, -36.8719257 ], [ 174.7500776, -36.8719189 ], [ 174.7508585, -36.8720921 ], [ 174.750758, -36.8724302 ], [ 174.7516249, -36.8725675 ], [ 174.751564800000011, -36.8727666 ], [ 174.751969699999989, -36.8728602 ], [ 174.7514587, -36.8744906 ], [ 174.7492193, -36.8724544 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389098.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.752607399999988, -36.8708337 ], [ 174.7523865, -36.8714726 ], [ 174.7504932, -36.8710209 ], [ 174.75071, -36.8704333 ], [ 174.752607399999988, -36.8708337 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389126.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7508585, -36.8720921 ], [ 174.752112, -36.8724081 ], [ 174.751969699999989, -36.8728602 ], [ 174.751564800000011, -36.8727666 ], [ 174.7516249, -36.8725675 ], [ 174.750758, -36.8724302 ], [ 174.7508585, -36.8720921 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389230.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751111, -36.8712658 ], [ 174.750874900000014, -36.8719954 ], [ 174.750146300000011, -36.871864 ], [ 174.7504274, -36.8711073 ], [ 174.751111, -36.8712658 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389262.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751111, -36.8712658 ], [ 174.7523555, -36.8715319 ], [ 174.7521, -36.8722958 ], [ 174.750874900000014, -36.8719954 ], [ 174.751111, -36.8712658 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389290.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7506593, -36.8702832 ], [ 174.750640800000014, -36.8703403 ], [ 174.7503819, -36.8709445 ], [ 174.7499941, -36.8708441 ], [ 174.7500217, -36.8700441 ], [ 174.750442, -36.8698802 ], [ 174.7505763, -36.8698549 ], [ 174.7506593, -36.8702832 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389431.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7507213, -36.8703602 ], [ 174.750747100000012, -36.8702916 ], [ 174.750663300000014, -36.8698385 ], [ 174.7519011, -36.8696056 ], [ 174.7521714, -36.8695683 ], [ 174.75182860000001, -36.8706005 ], [ 174.7507213, -36.8703602 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389483.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.752878, -36.8694708 ], [ 174.7527025, -36.8699294 ], [ 174.7524036, -36.8707104 ], [ 174.7519058, -36.8706005 ], [ 174.7522576, -36.8695564 ], [ 174.752878, -36.8694708 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389508.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7524036, -36.8707104 ], [ 174.7527025, -36.8699294 ], [ 174.7527727, -36.8699551 ], [ 174.752798399999989, -36.8702504 ], [ 174.7526268, -36.8707585 ], [ 174.7524036, -36.8707104 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31389921.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7577938, -36.8682591 ], [ 174.757828100000012, -36.8686573 ], [ 174.7597164, -36.8687674 ], [ 174.7605854, -36.8687503 ], [ 174.760343, -36.8691998 ], [ 174.758566300000012, -36.8691311 ], [ 174.758489, -36.8691861 ], [ 174.7583603, -36.8694401 ], [ 174.7570213, -36.8696186 ], [ 174.7564372, -36.8687931 ], [ 174.7577938, -36.8682591 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31392984.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7623763, -36.8686506 ], [ 174.7623982, -36.8683146 ], [ 174.7636196, -36.8677276 ], [ 174.7636904, -36.8680874 ], [ 174.7641023, -36.8685887 ], [ 174.76430830000001, -36.8689389 ], [ 174.76428150000001, -36.8692596 ], [ 174.7623763, -36.8686506 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31393851.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7640423, -36.8702572 ], [ 174.7644178, -36.8694793 ], [ 174.7644497, -36.8692806 ], [ 174.764454199999989, -36.8689114 ], [ 174.7642654, -36.8685612 ], [ 174.763844799999987, -36.8680393 ], [ 174.7638277, -36.8678608 ], [ 174.764791800000012, -36.8676367 ], [ 174.7653412, -36.8684264 ], [ 174.7658647, -36.8683371 ], [ 174.765886599999988, -36.8684565 ], [ 174.7658939, -36.868493 ], [ 174.7661355, -36.8697474 ], [ 174.7656892, -36.8707568 ], [ 174.7640423, -36.8702572 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31393881.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7633213, -36.8713902 ], [ 174.76324, -36.8715824 ], [ 174.7621902, -36.8721214 ], [ 174.762121400000012, -36.8718877 ], [ 174.7619972, -36.871679 ], [ 174.761119400000013, -36.870804 ], [ 174.7621025, -36.8702092 ], [ 174.7633213, -36.8713902 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394051.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761312800000013, -36.8696118 ], [ 174.760377299999988, -36.8697079 ], [ 174.760377299999988, -36.869598 ], [ 174.760488900000013, -36.8692685 ], [ 174.760737799999987, -36.8687672 ], [ 174.76120130000001, -36.868726 ], [ 174.761312800000013, -36.8696118 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394056.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7620167, -36.8701199 ], [ 174.761021, -36.8707104 ], [ 174.760569, -36.8702377 ], [ 174.76045, -36.8700832 ], [ 174.760375900000014, -36.8698257 ], [ 174.7613643, -36.8697285 ], [ 174.76179350000001, -36.8698727 ], [ 174.7620167, -36.8701199 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394096.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7624801, -36.8688221 ], [ 174.7642612, -36.8693643 ], [ 174.7642568, -36.8694676 ], [ 174.7633899, -36.8712529 ], [ 174.7627267, -36.870628 ], [ 174.763261199999988, -36.8694744 ], [ 174.762282699999986, -36.8691792 ], [ 174.7624801, -36.8688221 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394108.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.762282699999986, -36.8691792 ], [ 174.763261199999988, -36.8694744 ], [ 174.7627267, -36.870628 ], [ 174.761922, -36.8698298 ], [ 174.762282699999986, -36.8691792 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394127.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7619652, -36.8726055 ], [ 174.7620939, -36.8739581 ], [ 174.7611068, -36.8739513 ], [ 174.76061, -36.8738895 ], [ 174.7603, -36.8738002 ], [ 174.759785099999988, -36.8735805 ], [ 174.7602829, -36.8724476 ], [ 174.7605228, -36.8724971 ], [ 174.760862800000012, -36.8726048 ], [ 174.7610039, -36.8726192 ], [ 174.7619652, -36.8726055 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394157.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7616673, -36.87518 ], [ 174.7610352, -36.8750336 ], [ 174.7602062, -36.8755093 ], [ 174.7595107, -36.8753519 ], [ 174.7597477, -36.8737291 ], [ 174.7602841, -36.8739437 ], [ 174.760820599999988, -36.8740638 ], [ 174.7621111, -36.8741092 ], [ 174.762059599999986, -36.8744113 ], [ 174.762033800000012, -36.8745418 ], [ 174.7616673, -36.87518 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394168.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.759358600000013, -36.8753204 ], [ 174.758163200000013, -36.8751575 ], [ 174.7581109, -36.8751121 ], [ 174.7580897, -36.8750779 ], [ 174.758592, -36.8734706 ], [ 174.7596048, -36.8736904 ], [ 174.759358600000013, -36.8753204 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394182.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.757848, -36.8750563 ], [ 174.7577444, -36.8750655 ], [ 174.7559135, -36.8746705 ], [ 174.75582, -36.8745649 ], [ 174.7563175, -36.8730449 ], [ 174.7584118, -36.8734569 ], [ 174.7581442, -36.8743434 ], [ 174.7576463, -36.8742274 ], [ 174.757619799999986, -36.8743226 ], [ 174.7580982, -36.874449 ], [ 174.75791, -36.8750177 ], [ 174.757848, -36.8750563 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394352.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751938661849323, -36.879620605 ], [ 174.75068, -36.8793622 ], [ 174.750847099999987, -36.8788448 ], [ 174.751015200000012, -36.8783213 ], [ 174.7528307, -36.8786943 ], [ 174.7534962, -36.8766213 ], [ 174.754132700000014, -36.876752 ], [ 174.753944, -36.8773399 ], [ 174.7540879, -36.8773695 ], [ 174.7542755, -36.8767852 ], [ 174.7550666, -36.8769478 ], [ 174.7546313, -36.8783033 ], [ 174.753967100000011, -36.8781669 ], [ 174.7539285, -36.8782869 ], [ 174.75462060000001, -36.8784291 ], [ 174.754238009326173, -36.879620605 ], [ 174.751938661849323, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394359.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.754413592972242, -36.879620605 ], [ 174.7552766, -36.8769989 ], [ 174.75623, -36.8771986 ], [ 174.7561256, -36.8776051 ], [ 174.7559621, -36.8776576 ], [ 174.7554678, -36.8791831 ], [ 174.7556566, -36.879238 ], [ 174.75603430000001, -36.8781189 ], [ 174.7569717, -36.8783654 ], [ 174.757211899999987, -36.8791377 ], [ 174.757846458036255, -36.879620605 ], [ 174.754413592972242, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394440.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7563347, -36.8772126 ], [ 174.757108499999987, -36.877383 ], [ 174.756899299999986, -36.8781454 ], [ 174.7560973, -36.8779688 ], [ 174.7563347, -36.8772126 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394637.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751323899999988, -36.8652156 ], [ 174.7518733, -36.8647761 ], [ 174.75313, -36.8658611 ], [ 174.7524741, -36.8662594 ], [ 174.751323899999988, -36.8652156 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394640.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.753349500000013, -36.8638422 ], [ 174.7536843, -36.8642062 ], [ 174.7524312, -36.8650645 ], [ 174.7519848, -36.8647006 ], [ 174.753349500000013, -36.8638422 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394657.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7537787, -36.8642886 ], [ 174.7542164, -36.864728 ], [ 174.753510799999987, -36.865178 ], [ 174.753595600000011, -36.8652737 ], [ 174.7539788, -36.865046 ], [ 174.754167, -36.8652501 ], [ 174.754107, -36.8653685 ], [ 174.7539933, -36.8655246 ], [ 174.7540069, -36.8657487 ], [ 174.7539318, -36.8659226 ], [ 174.753995, -36.8660675 ], [ 174.7537709, -36.8662445 ], [ 174.752534200000014, -36.8651469 ], [ 174.7537787, -36.8642886 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394680.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.753195, -36.8659778 ], [ 174.7536843, -36.8664173 ], [ 174.7538559, -36.8665958 ], [ 174.7539332, -36.8667057 ], [ 174.7538903, -36.8667744 ], [ 174.75371, -36.8668087 ], [ 174.75346110000001, -36.8668842 ], [ 174.753295799999989, -36.8669838 ], [ 174.7526114, -36.8663418 ], [ 174.753195, -36.8659778 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394724.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.753117800000012, -36.8705441 ], [ 174.753375299999988, -36.8698712 ], [ 174.754456800000014, -36.8698025 ], [ 174.754937399999989, -36.8701871 ], [ 174.7552722, -36.8699536 ], [ 174.7559441, -36.8697253 ], [ 174.7560947, -36.86999 ], [ 174.7559745, -36.8700724 ], [ 174.7557256, -36.8702578 ], [ 174.755897299999987, -36.8704226 ], [ 174.755665099999987, -36.8707725 ], [ 174.7556061, -36.8708454 ], [ 174.75639, -36.8712582 ], [ 174.7553107, -36.8726418 ], [ 174.754093, -36.8723972 ], [ 174.754431, -36.8713612 ], [ 174.7542336, -36.8713269 ], [ 174.7539247, -36.8723879 ], [ 174.7535365, -36.8723034 ], [ 174.7539914, -36.8708341 ], [ 174.7544053, -36.8709149 ], [ 174.754439600000012, -36.8708394 ], [ 174.753117800000012, -36.8705441 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394731.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.755761400000011, -36.870805 ], [ 174.756120399999986, -36.8705187 ], [ 174.7562148, -36.8705187 ], [ 174.756423, -36.8703741 ], [ 174.7568686, -36.8706196 ], [ 174.756448, -36.8711689 ], [ 174.755761400000011, -36.870805 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394737.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7569201, -36.8705578 ], [ 174.756498099999988, -36.8703127 ], [ 174.7564037, -36.8700999 ], [ 174.7562148, -36.8699969 ], [ 174.756083499999988, -36.8696696 ], [ 174.7567742, -36.8693974 ], [ 174.75707460000001, -36.8698506 ], [ 174.7571347, -36.8700566 ], [ 174.7571347, -36.8701802 ], [ 174.757091800000012, -36.8703175 ], [ 174.7569201, -36.8705578 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394767.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7563965, -36.8689099 ], [ 174.75670550000001, -36.8693287 ], [ 174.7556155, -36.8697545 ], [ 174.755289299999987, -36.8694935 ], [ 174.7552035, -36.8695622 ], [ 174.7554867, -36.8697888 ], [ 174.7552091, -36.8698927 ], [ 174.7549717, -36.8700635 ], [ 174.7545254, -36.8696927 ], [ 174.7535727, -36.8697476 ], [ 174.7536242, -36.8693631 ], [ 174.754070500000012, -36.8692875 ], [ 174.7542937, -36.8692189 ], [ 174.7544148, -36.8693142 ], [ 174.754808700000012, -36.869624 ], [ 174.7563965, -36.8689099 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394776.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7563965, -36.8689099 ], [ 174.754808700000012, -36.869624 ], [ 174.7544148, -36.8693142 ], [ 174.7554266, -36.8688824 ], [ 174.756139, -36.8685734 ], [ 174.7563965, -36.8689099 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394784.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.757094, -36.869701 ], [ 174.7584479, -36.8695279 ], [ 174.7585166, -36.8693768 ], [ 174.7586024, -36.8692395 ], [ 174.760336200000012, -36.8693081 ], [ 174.760233199999988, -36.8695691 ], [ 174.760224599999987, -36.8697751 ], [ 174.760233199999988, -36.8698643 ], [ 174.7603018, -36.8700635 ], [ 174.760336200000012, -36.8701459 ], [ 174.7602761, -36.8701733 ], [ 174.7584479, -36.86983 ], [ 174.757787, -36.8698918 ], [ 174.757812699999988, -36.8699879 ], [ 174.7584479, -36.8699536 ], [ 174.7594264, -36.8701596 ], [ 174.759289, -36.8705853 ], [ 174.757272, -36.8701733 ], [ 174.757272, -36.8700429 ], [ 174.757177899999988, -36.8698283 ], [ 174.757094, -36.869701 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394793.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7572634, -36.8702694 ], [ 174.7592804, -36.870702 ], [ 174.7589285, -36.8716427 ], [ 174.7582333, -36.8715123 ], [ 174.7583449, -36.8712513 ], [ 174.758262300000013, -36.8712403 ], [ 174.758310599999987, -36.8710728 ], [ 174.7583535, -36.8709424 ], [ 174.7575328, -36.8707939 ], [ 174.7574899, -36.8709175 ], [ 174.757453199999986, -36.8710677 ], [ 174.7581639, -36.8712193 ], [ 174.7580788, -36.8714779 ], [ 174.756593900000013, -36.8711895 ], [ 174.757211899999987, -36.8703999 ], [ 174.7572634, -36.8702694 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31394804.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7595809, -36.8701733 ], [ 174.760447699999986, -36.8703312 ], [ 174.7608855, -36.8707844 ], [ 174.760101600000013, -36.8725764 ], [ 174.7594321, -36.8724253 ], [ 174.759312, -36.8727549 ], [ 174.7587526, -36.8726425 ], [ 174.758535200000011, -36.8733384 ], [ 174.7554696, -36.872707 ], [ 174.756010300000014, -36.8720204 ], [ 174.7570488, -36.8722058 ], [ 174.757083200000011, -36.8720616 ], [ 174.756079, -36.8719036 ], [ 174.7565424, -36.8712925 ], [ 174.75899720000001, -36.8717869 ], [ 174.7593062, -36.8709698 ], [ 174.7595637, -36.8710454 ], [ 174.759615200000013, -36.8709424 ], [ 174.7593405, -36.87086 ], [ 174.7594264, -36.8706608 ], [ 174.7594264, -36.8705304 ], [ 174.7595809, -36.8701733 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31934517.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.736304417635722, -36.879620605 ], [ 174.736333699999989, -36.879448 ], [ 174.737256369520367, -36.879620605 ], [ 174.736304417635722, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31934767.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7282318, -36.8782914 ], [ 174.7265324, -36.8766504 ], [ 174.7278971, -36.8766848 ], [ 174.7290472, -36.8766779 ], [ 174.729587900000013, -36.8767191 ], [ 174.7301802, -36.8766916 ], [ 174.7306093, -36.8765749 ], [ 174.730944099999988, -36.8764994 ], [ 174.7282318, -36.8782914 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31934965.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.726832800000011, -36.8757853 ], [ 174.7274593, -36.8761355 ], [ 174.7304806, -36.8761424 ], [ 174.7309526, -36.875957 ], [ 174.7311329, -36.8755588 ], [ 174.7312187, -36.8755588 ], [ 174.7319397, -36.8758403 ], [ 174.731665, -36.8760325 ], [ 174.7305149, -36.8763003 ], [ 174.7290901, -36.8765131 ], [ 174.7265152, -36.8764513 ], [ 174.726232, -36.8764582 ], [ 174.7260603, -36.8761698 ], [ 174.7259315, -36.8756823 ], [ 174.725923, -36.8754008 ], [ 174.726086, -36.8754283 ], [ 174.726292, -36.8754489 ], [ 174.726729799999987, -36.8756961 ], [ 174.726343500000013, -36.8761012 ], [ 174.726472300000012, -36.8761767 ], [ 174.726832800000011, -36.8757853 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935063.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.732119899999987, -36.8759295 ], [ 174.7325748, -36.8756274 ], [ 174.7339825, -36.8752155 ], [ 174.734428799999989, -36.8752498 ], [ 174.7342142, -36.8753322 ], [ 174.732849499999986, -36.8758265 ], [ 174.732119899999987, -36.8759295 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935113.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7391336, -36.8745902 ], [ 174.739158, -36.8748511 ], [ 174.7390332, -36.875252 ], [ 174.7379927, -36.8750419 ], [ 174.7381538, -36.8746225 ], [ 174.7391336, -36.8745902 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935138.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7368835, -36.8766436 ], [ 174.73692650000001, -36.8767328 ], [ 174.7381881, -36.8770345 ], [ 174.7380679, -36.8774396 ], [ 174.737999300000013, -36.8774258 ], [ 174.737896299999989, -36.8777348 ], [ 174.7371109, -36.8775853 ], [ 174.736862, -36.877654 ], [ 174.7363942, -36.8777897 ], [ 174.7362698, -36.8777982 ], [ 174.7359951, -36.8777432 ], [ 174.73546730000001, -36.877591 ], [ 174.7362015, -36.8752683 ], [ 174.737184, -36.8754352 ], [ 174.7372784, -36.8754901 ], [ 174.7368835, -36.8766436 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935232.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7386855, -36.8762117 ], [ 174.741091399999988, -36.8767107 ], [ 174.7408355, -36.8775 ], [ 174.7383393, -36.8769822 ], [ 174.7385952, -36.876193 ], [ 174.7386855, -36.8762117 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935258.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741447099999988, -36.8754408 ], [ 174.7411236, -36.876568 ], [ 174.7386713, -36.876084 ], [ 174.7388867, -36.8753856 ], [ 174.7394008, -36.8755118 ], [ 174.7397656, -36.8755022 ], [ 174.7407902, -36.8753218 ], [ 174.7409739, -36.875337 ], [ 174.741447099999988, -36.8754408 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935484.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.735959900000012, -36.877905 ], [ 174.7355701, -36.8790277 ], [ 174.7349609, -36.8788814 ], [ 174.735399, -36.8777738 ], [ 174.735959900000012, -36.877905 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935609.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.734404, -36.8777611 ], [ 174.7351219, -36.8779151 ], [ 174.734782599999988, -36.8788362 ], [ 174.7344749, -36.878771 ], [ 174.7346049, -36.8783789 ], [ 174.7344661, -36.8783427 ], [ 174.7345091, -36.8781977 ], [ 174.734404, -36.8777611 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935676.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.733197100000012, -36.8763744 ], [ 174.734199100000012, -36.8764332 ], [ 174.7343773, -36.8768839 ], [ 174.7343945, -36.8771173 ], [ 174.7342294, -36.8776343 ], [ 174.7344414, -36.8785512 ], [ 174.7343879, -36.8787253 ], [ 174.7343265, -36.8788041 ], [ 174.73396120000001, -36.878743 ], [ 174.7335578, -36.8785988 ], [ 174.7327596, -36.8784065 ], [ 174.732600600000012, -36.8778666 ], [ 174.7326177, -36.8771388 ], [ 174.7326692, -36.8770084 ], [ 174.7328238, -36.8766573 ], [ 174.733197100000012, -36.8763744 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935752.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7343687, -36.877591 ], [ 174.734540399999986, -36.8770349 ], [ 174.7344994, -36.8764129 ], [ 174.7357619, -36.8760172 ], [ 174.735227, -36.8777627 ], [ 174.7343687, -36.877591 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935871.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7358055, -36.8758175 ], [ 174.7351927, -36.8760188 ], [ 174.734428799999989, -36.8762248 ], [ 174.734343, -36.8757304 ], [ 174.734162700000013, -36.8757579 ], [ 174.7342571, -36.8762522 ], [ 174.7334846, -36.876211 ], [ 174.733117, -36.8761929 ], [ 174.732798, -36.8764376 ], [ 174.7325662, -36.876823 ], [ 174.73244170000001, -36.8765211 ], [ 174.7322701, -36.8760829 ], [ 174.7328369, -36.8759555 ], [ 174.7346991, -36.8753346 ], [ 174.734845, -36.8756286 ], [ 174.7360209, -36.8751891 ], [ 174.7358055, -36.8758175 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935934.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7360209, -36.8751891 ], [ 174.734845, -36.8756286 ], [ 174.7346991, -36.8753346 ], [ 174.7351583, -36.875188 ], [ 174.736153, -36.8747769 ], [ 174.7360209, -36.8751891 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31935987.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.735871300000014, -36.8745229 ], [ 174.736197800000014, -36.8741286 ], [ 174.7363595, -36.8741442 ], [ 174.736304499999989, -36.8742943 ], [ 174.735871300000014, -36.8745229 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31936041.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7349226, -36.874807 ], [ 174.7359548, -36.8740718 ], [ 174.736111, -36.8739791 ], [ 174.736197800000014, -36.8741286 ], [ 174.735871300000014, -36.8745229 ], [ 174.7350266, -36.8749234 ], [ 174.7349226, -36.874807 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31948469.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7388867, -36.8753856 ], [ 174.7386713, -36.876084 ], [ 174.7384782, -36.8760583 ], [ 174.7382333, -36.8768806 ], [ 174.737063799999987, -36.8766298 ], [ 174.73745, -36.8754901 ], [ 174.737507099999988, -36.8754057 ], [ 174.737873799999988, -36.8751589 ], [ 174.7388867, -36.8753856 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31951130.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7376286, -36.874236 ], [ 174.7379453, -36.8744725 ], [ 174.7378047, -36.8750269 ], [ 174.7373341, -36.875299 ], [ 174.7362724, -36.8750859 ], [ 174.7364696, -36.8745859 ], [ 174.73709, -36.8743348 ], [ 174.7376286, -36.874236 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32314161.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.822349548299997, -36.853381131173805 ], [ 174.822077, -36.8530243 ], [ 174.822334500000011, -36.852887 ], [ 174.822349548299997, -36.85281073580007 ], [ 174.822349548299997, -36.853381131173805 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32314291.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8187897, -36.8541369 ], [ 174.8191759, -36.8544941 ], [ 174.8187811, -36.8547001 ], [ 174.8183176, -36.855222 ], [ 174.8180859, -36.8556753 ], [ 174.8179829, -36.8557852 ], [ 174.817802699999987, -36.8557371 ], [ 174.81751220000001, -36.8556902 ], [ 174.8165409, -36.8559775 ], [ 174.816343499999988, -36.8559706 ], [ 174.8161633, -36.8558676 ], [ 174.8154509, -36.8551465 ], [ 174.8146183, -36.855016 ], [ 174.814764200000013, -36.8547276 ], [ 174.8159659, -36.8546383 ], [ 174.816695399999986, -36.8545353 ], [ 174.8187897, -36.8541369 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32314557.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8195193, -36.859995 ], [ 174.820652200000012, -36.8608191 ], [ 174.8204451, -36.8612645 ], [ 174.819130300000012, -36.8609059 ], [ 174.818812900000012, -36.8606291 ], [ 174.8195193, -36.859995 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32314701.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8219225, -36.8592602 ], [ 174.821630699999986, -36.8588481 ], [ 174.8214934, -36.858079 ], [ 174.8209526, -36.8570145 ], [ 174.8209784, -36.8559157 ], [ 174.82173370000001, -36.8558058 ], [ 174.821381800000012, -36.855277 ], [ 174.821270199999987, -36.8541507 ], [ 174.821253, -36.8537042 ], [ 174.82114150000001, -36.8531754 ], [ 174.82187, -36.8530793 ], [ 174.8222573, -36.85356 ], [ 174.822349548299997, -36.854272517644411 ], [ 174.822349548299997, -36.858556976058686 ], [ 174.8219225, -36.8592602 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32314811.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8192789, -36.8546314 ], [ 174.819965599999989, -36.8550503 ], [ 174.820781, -36.8559569 ], [ 174.8207037, -36.8570076 ], [ 174.8213131, -36.8581065 ], [ 174.8214419, -36.858855 ], [ 174.8218109, -36.8593357 ], [ 174.82173370000001, -36.8593907 ], [ 174.8215964, -36.8593838 ], [ 174.820926899999989, -36.8590336 ], [ 174.820695199999989, -36.8590267 ], [ 174.8204977, -36.8590061 ], [ 174.8204977, -36.8588275 ], [ 174.820411900000011, -36.8580996 ], [ 174.8197424, -36.8572823 ], [ 174.819190099999986, -36.8563146 ], [ 174.8190822, -36.8562774 ], [ 174.818941099999989, -36.856277 ], [ 174.8176344, -36.8567587 ], [ 174.8172619, -36.856053 ], [ 174.8168757, -36.8560256 ], [ 174.8175068, -36.8558241 ], [ 174.8177426, -36.8558882 ], [ 174.8179657, -36.8559294 ], [ 174.8181717, -36.8557989 ], [ 174.8182318, -36.8557028 ], [ 174.8184292, -36.8553182 ], [ 174.818746800000014, -36.8550091 ], [ 174.8188927, -36.8547894 ], [ 174.8192789, -36.8546314 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32315005.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8178627, -36.8584567 ], [ 174.8192875, -36.8576669 ], [ 174.8196394, -36.8574334 ], [ 174.8202574, -36.8581339 ], [ 174.8203776, -36.8587657 ], [ 174.8202574, -36.8589855 ], [ 174.8202746, -36.8590954 ], [ 174.8204462, -36.8591572 ], [ 174.820660800000013, -36.8591572 ], [ 174.820789600000012, -36.8591503 ], [ 174.8215277, -36.8594937 ], [ 174.821768, -36.8595349 ], [ 174.8219569, -36.8594662 ], [ 174.822349548299997, -36.859583999688567 ], [ 174.822349548299997, -36.86005449871714 ], [ 174.8216822, -36.8601117 ], [ 174.8213045, -36.8602422 ], [ 174.8207552, -36.8607023 ], [ 174.8195708, -36.8598645 ], [ 174.8189013, -36.8592327 ], [ 174.819459200000011, -36.8588413 ], [ 174.81945060000001, -36.8587726 ], [ 174.819330400000013, -36.858752 ], [ 174.8187725, -36.8591434 ], [ 174.8178627, -36.8584567 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316042.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8062773, -36.8533899 ], [ 174.8063631, -36.8531015 ], [ 174.806560499999989, -36.8528748 ], [ 174.806912399999987, -36.8527169 ], [ 174.8087921, -36.8522773 ], [ 174.8098135, -36.8521812 ], [ 174.810397200000011, -36.8516249 ], [ 174.8109072, -36.8515553 ], [ 174.8118906, -36.8518103 ], [ 174.811502600000011, -36.8528388 ], [ 174.8113156, -36.8528268 ], [ 174.8111754, -36.8528817 ], [ 174.8108435, -36.8524971 ], [ 174.8107819, -36.8524839 ], [ 174.8107302, -36.8524954 ], [ 174.8107105, -36.8525173 ], [ 174.8107062, -36.8525658 ], [ 174.8110752, -36.8529435 ], [ 174.8109722, -36.8530397 ], [ 174.8109379, -36.8531496 ], [ 174.8062773, -36.8533899 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316075.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8120451, -36.8518515 ], [ 174.8123627, -36.8520713 ], [ 174.8126545, -36.8523597 ], [ 174.8128777, -36.8528748 ], [ 174.8129671, -36.8532895 ], [ 174.813144200000011, -36.8536071 ], [ 174.8135729, -36.8538913 ], [ 174.8143454, -36.8542416 ], [ 174.8146286, -36.8546468 ], [ 174.8144055, -36.855052 ], [ 174.8142595, -36.8557456 ], [ 174.813427, -36.8550588 ], [ 174.8117977, -36.8534569 ], [ 174.8119078, -36.8532732 ], [ 174.8119335, -36.8531358 ], [ 174.811847699999987, -36.8530053 ], [ 174.811746199999988, -36.8529273 ], [ 174.811626, -36.852856 ], [ 174.8120451, -36.8518515 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316081.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8062687, -36.8535204 ], [ 174.8109465, -36.8532869 ], [ 174.8110323, -36.8534311 ], [ 174.8111486, -36.853517 ], [ 174.811331, -36.8535943 ], [ 174.811475800000011, -36.85359 ], [ 174.8116958, -36.8535385 ], [ 174.8132467, -36.8550794 ], [ 174.8121739, -36.8558349 ], [ 174.8113327, -36.8557868 ], [ 174.8114529, -36.8554503 ], [ 174.8115387, -36.855052 ], [ 174.8114443, -36.8547978 ], [ 174.8110666, -36.8547086 ], [ 174.8105431, -36.854791 ], [ 174.810277, -36.854791 ], [ 174.809907900000013, -36.8546536 ], [ 174.8090239, -36.8541317 ], [ 174.8087406, -36.8540424 ], [ 174.8085089, -36.8540905 ], [ 174.8073588, -36.8542484 ], [ 174.8071356, -36.8542278 ], [ 174.8068438, -36.8541111 ], [ 174.806560499999989, -36.8539668 ], [ 174.806414600000011, -36.8538226 ], [ 174.8062687, -36.8535204 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316162.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.819546699999989, -36.8572771 ], [ 174.819169100000011, -36.8575724 ], [ 174.817709900000011, -36.8583759 ], [ 174.817006099999986, -36.8579158 ], [ 174.8159075, -36.8570848 ], [ 174.814963400000011, -36.8563362 ], [ 174.815100699999988, -36.8561714 ], [ 174.8150578, -36.8560134 ], [ 174.8148947, -36.8558692 ], [ 174.8148209, -36.8556255 ], [ 174.814465500000011, -36.8555876 ], [ 174.8145514, -36.8551618 ], [ 174.81534, -36.8552717 ], [ 174.8159933, -36.8559448 ], [ 174.816173600000013, -36.8560409 ], [ 174.816422499999987, -36.8561096 ], [ 174.817143499999986, -36.8561645 ], [ 174.8175694, -36.8569253 ], [ 174.8188913, -36.8564073 ], [ 174.8190218, -36.8564049 ], [ 174.8190955, -36.8564335 ], [ 174.819546699999989, -36.8572771 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316201.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8144055, -36.8558623 ], [ 174.814465500000011, -36.8555876 ], [ 174.8148209, -36.8556255 ], [ 174.8148947, -36.8558692 ], [ 174.8150578, -36.8560134 ], [ 174.815100699999988, -36.8561714 ], [ 174.814963400000011, -36.8563362 ], [ 174.8144055, -36.8558623 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316255.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.818711400000012, -36.8605572 ], [ 174.816183599999988, -36.8586961 ], [ 174.816955900000011, -36.8580264 ], [ 174.818688400000013, -36.8592893 ], [ 174.819409400000012, -36.8599073 ], [ 174.818711400000012, -36.8605572 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316261.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8160929, -36.8587542 ], [ 174.8186112, -36.8606421 ], [ 174.818353699999989, -36.8607795 ], [ 174.817984599999988, -36.8607932 ], [ 174.8175898, -36.8607177 ], [ 174.8169031, -36.8602919 ], [ 174.8158646, -36.8600378 ], [ 174.8151779, -36.859509 ], [ 174.8160929, -36.8587542 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316273.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8132382, -36.8534517 ], [ 174.8130751, -36.8532594 ], [ 174.8130236, -36.8528199 ], [ 174.812929200000013, -36.8525589 ], [ 174.81281, -36.8523048 ], [ 174.8125, -36.8519889 ], [ 174.8123127, -36.8518687 ], [ 174.8125949, -36.8517139 ], [ 174.812964, -36.8517139 ], [ 174.8131271, -36.8517482 ], [ 174.8132472, -36.8518581 ], [ 174.813542899999987, -36.8521024 ], [ 174.8137145, -36.8522947 ], [ 174.813886200000013, -36.8522809 ], [ 174.8140634, -36.8523143 ], [ 174.814517, -36.8526963 ], [ 174.814465500000011, -36.8527787 ], [ 174.8132382, -36.8534517 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316302.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.814740199999989, -36.8545712 ], [ 174.8145342, -36.8541935 ], [ 174.81521140000001, -36.853659 ], [ 174.8164568, -36.8536784 ], [ 174.8165941, -36.8537265 ], [ 174.81668, -36.8538432 ], [ 174.8166285, -36.8540218 ], [ 174.8166029, -36.8541862 ], [ 174.8165512, -36.854427 ], [ 174.815959, -36.8545025 ], [ 174.8149204, -36.8545506 ], [ 174.814740199999989, -36.8545712 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32316347.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8167229, -36.8543652 ], [ 174.816748600000011, -36.8541797 ], [ 174.81687740000001, -36.8538363 ], [ 174.8167315, -36.8536509 ], [ 174.8164997, -36.8535479 ], [ 174.815157699999986, -36.8535646 ], [ 174.8144312, -36.8541248 ], [ 174.813778899999988, -36.8538226 ], [ 174.813324, -36.8535754 ], [ 174.8146372, -36.8527924 ], [ 174.8147059, -36.8526551 ], [ 174.814388799999989, -36.8523869 ], [ 174.8145089, -36.8523457 ], [ 174.8146377, -36.8523457 ], [ 174.815092600000014, -36.8525792 ], [ 174.8151613, -36.8526891 ], [ 174.815435900000011, -36.8528127 ], [ 174.815796400000011, -36.8524281 ], [ 174.8159762, -36.8525108 ], [ 174.8167915, -36.8527237 ], [ 174.8175812, -36.8527512 ], [ 174.8187, -36.8540149 ], [ 174.8167229, -36.8543652 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32336571.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.777560099999988, -36.8755868 ], [ 174.7775426, -36.8755736 ], [ 174.7775363, -36.8755561 ], [ 174.7775461, -36.8755376 ], [ 174.7775691, -36.8755288 ], [ 174.7791906, -36.8748504 ], [ 174.7799468, -36.8759228 ], [ 174.7818828, -36.8781143 ], [ 174.7814223, -36.8786352 ], [ 174.777560099999988, -36.8755868 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32776227.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7618029, -36.8617328 ], [ 174.762093599999986, -36.8612978 ], [ 174.76273, -36.8614969 ], [ 174.7624946, -36.8618264 ], [ 174.762382699999989, -36.8618197 ], [ 174.7618029, -36.8617328 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32776235.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761407600000013, -36.8619295 ], [ 174.76128940000001, -36.8621882 ], [ 174.7609079, -36.8636691 ], [ 174.7605801, -36.8636045 ], [ 174.7607519, -36.8630093 ], [ 174.760676600000011, -36.8629943 ], [ 174.7600764, -36.8628681 ], [ 174.760302700000011, -36.8622087 ], [ 174.7603991, -36.8620618 ], [ 174.7607759, -36.8621834 ], [ 174.7610248, -36.8617851 ], [ 174.761407600000013, -36.8619295 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32776267.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761494199999987, -36.8617644 ], [ 174.761084899999986, -36.8616203 ], [ 174.7610248, -36.8617164 ], [ 174.7606701, -36.8615842 ], [ 174.7610582, -36.8608575 ], [ 174.761818, -36.8611728 ], [ 174.761494199999987, -36.8617644 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32800048.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7584094, -36.8589591 ], [ 174.758042499999988, -36.8581981 ], [ 174.7584727, -36.8580691 ], [ 174.75869, -36.8581045 ], [ 174.7589791, -36.8581516 ], [ 174.7589693, -36.8585101 ], [ 174.759062699999987, -36.858723 ], [ 174.7592271, -36.8590092 ], [ 174.7585967, -36.8592388 ], [ 174.7584803, -36.8591191 ], [ 174.7584094, -36.8589591 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32800064.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7591033, -36.858456 ], [ 174.7591378, -36.8578354 ], [ 174.760515199999986, -36.8580476 ], [ 174.7610417, -36.858043 ], [ 174.7610713, -36.8580576 ], [ 174.761101, -36.8580799 ], [ 174.761118399999987, -36.8581485 ], [ 174.761042300000014, -36.8582983 ], [ 174.7609139, -36.8585217 ], [ 174.7591033, -36.858456 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32800070.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7577363, -36.8578434 ], [ 174.757960700000012, -36.8583617 ], [ 174.756729400000012, -36.8587208 ], [ 174.7564921, -36.8582137 ], [ 174.7577363, -36.8578434 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32800085.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.758042499999988, -36.8581981 ], [ 174.757857699999988, -36.8578038 ], [ 174.758185700000013, -36.8577038 ], [ 174.758986, -36.8578236 ], [ 174.7589791, -36.8581516 ], [ 174.75869, -36.8581045 ], [ 174.7584727, -36.8580691 ], [ 174.758042499999988, -36.8581981 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840104.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7591651, -36.8640522 ], [ 174.7593379, -36.8635203 ], [ 174.760004400000014, -36.8636671 ], [ 174.7598472, -36.8642179 ], [ 174.7591651, -36.8640522 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840167.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7601626, -36.8637004 ], [ 174.7607606, -36.8638402 ], [ 174.7606968, -36.8640951 ], [ 174.7607767, -36.8641103 ], [ 174.760551, -36.8650213 ], [ 174.7603107, -36.8652136 ], [ 174.7596412, -36.86509 ], [ 174.7601626, -36.8637004 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840174.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7580209, -36.8632326 ], [ 174.759167600000012, -36.863486 ], [ 174.7588711, -36.8643646 ], [ 174.757738100000012, -36.8640984 ], [ 174.7580209, -36.8632326 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840213.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7591651, -36.8640522 ], [ 174.7598472, -36.8642179 ], [ 174.75954680000001, -36.8650762 ], [ 174.7588754, -36.864915 ], [ 174.7591651, -36.8640522 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840237.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7578279, -36.8631831 ], [ 174.757679, -36.8637003 ], [ 174.7564654, -36.8634076 ], [ 174.7566369, -36.8629203 ], [ 174.7578279, -36.8631831 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840240.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.756441599999988, -36.8635062 ], [ 174.756761899999987, -36.8635772 ], [ 174.756715899999989, -36.8637225 ], [ 174.7564869, -36.8638516 ], [ 174.756370800000013, -36.8639953 ], [ 174.7561885, -36.8639565 ], [ 174.756441599999988, -36.8635062 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840260.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7565299, -36.8629033 ], [ 174.756406700000014, -36.8632805 ], [ 174.7560887, -36.8632057 ], [ 174.7560124, -36.8631345 ], [ 174.7561234, -36.862918 ], [ 174.7565299, -36.8629033 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840271.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.756406700000014, -36.8632805 ], [ 174.7562852, -36.8636548 ], [ 174.7561393, -36.8639432 ], [ 174.755226099999987, -36.8645397 ], [ 174.7551694, -36.8642453 ], [ 174.7557788, -36.8638265 ], [ 174.755418600000013, -36.8635979 ], [ 174.755495599999989, -36.863435 ], [ 174.7557702, -36.8632977 ], [ 174.7560124, -36.8631345 ], [ 174.7560887, -36.8632057 ], [ 174.756406700000014, -36.8632805 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840291.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.756336800000014, -36.8647676 ], [ 174.756971099999987, -36.8653474 ], [ 174.75718, -36.8652875 ], [ 174.7575101, -36.865867 ], [ 174.7569097, -36.8662013 ], [ 174.7567276, -36.8660239 ], [ 174.756916600000011, -36.8658987 ], [ 174.755965800000013, -36.8649338 ], [ 174.7557616, -36.8650625 ], [ 174.7552982, -36.8646024 ], [ 174.7561878, -36.8640212 ], [ 174.756387499999988, -36.864038 ], [ 174.756776300000013, -36.864275 ], [ 174.7564561, -36.8646993 ], [ 174.7563453, -36.8647398 ], [ 174.756336800000014, -36.8647676 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840319.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.76132, -36.8633974 ], [ 174.7617698, -36.86349 ], [ 174.761589500000014, -36.8640737 ], [ 174.7614436, -36.8639844 ], [ 174.761366400000014, -36.8638677 ], [ 174.7612977, -36.8637303 ], [ 174.76130520000001, -36.8636972 ], [ 174.7612914, -36.8634768 ], [ 174.76132, -36.8633974 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840386.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7610407, -36.864175 ], [ 174.7616925, -36.8642797 ], [ 174.7615724, -36.8646162 ], [ 174.7611947, -36.8645681 ], [ 174.761138100000011, -36.8648069 ], [ 174.7608, -36.8647433 ], [ 174.7610407, -36.864175 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840400.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.763691099999988, -36.864214 ], [ 174.7639241, -36.8634968 ], [ 174.76435330000001, -36.8635861 ], [ 174.7641351, -36.8643114 ], [ 174.763691099999988, -36.864214 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32840547.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7605821, -36.8651968 ], [ 174.7610272, -36.8656897 ], [ 174.760849799999988, -36.8657922 ], [ 174.760404599999987, -36.8652994 ], [ 174.7605821, -36.8651968 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32874122.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7709121, -36.8724173 ], [ 174.7708207, -36.8727669 ], [ 174.7704431, -36.8728427 ], [ 174.770161, -36.872851 ], [ 174.7693994, -36.8732718 ], [ 174.7689437, -36.8727136 ], [ 174.770174200000014, -36.8722819 ], [ 174.7709121, -36.8724173 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32899789.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7599414, -36.8455244 ], [ 174.7582921, -36.8457846 ], [ 174.7582071, -36.8453216 ], [ 174.7588685, -36.845217 ], [ 174.7589715, -36.8448736 ], [ 174.7598899, -36.8450887 ], [ 174.7599414, -36.8455244 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32899797.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7580391, -36.845324 ], [ 174.7581003, -36.8458042 ], [ 174.756743300000011, -36.8459885 ], [ 174.7566093, -36.8459136 ], [ 174.7565821, -36.8458364 ], [ 174.7565792, -36.8456799 ], [ 174.7566306, -36.8455186 ], [ 174.7568738, -36.8449254 ], [ 174.7577613, -36.8451758 ], [ 174.7580391, -36.845324 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32945710.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7589327, -36.855807 ], [ 174.758868799999988, -36.8551913 ], [ 174.7606788, -36.8524768 ], [ 174.7608802, -36.8524209 ], [ 174.7610115, -36.8524595 ], [ 174.7611187, -36.8525261 ], [ 174.761188800000014, -36.8525882 ], [ 174.761225599999989, -36.8527182 ], [ 174.761247, -36.8529069 ], [ 174.761354399999988, -36.8532388 ], [ 174.7616366, -36.8536291 ], [ 174.7589327, -36.855807 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34202460.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7985617, -36.8639097 ], [ 174.7982137, -36.8639502 ], [ 174.79757140000001, -36.8640144 ], [ 174.797496700000011, -36.8638851 ], [ 174.7974366, -36.863686 ], [ 174.797985899999986, -36.8624499 ], [ 174.7981662, -36.8623538 ], [ 174.7987498, -36.8624087 ], [ 174.7985617, -36.8639097 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34263695.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723644256600011, -36.874666238306631 ], [ 174.724177, -36.8749572 ], [ 174.724477400000012, -36.8751495 ], [ 174.7247006, -36.8749023 ], [ 174.725078200000013, -36.8751357 ], [ 174.723644256600011, -36.876519372970463 ], [ 174.723644256600011, -36.874666238306631 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34264424.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723644256600011, -36.8719415 ], [ 174.7237218, -36.8719415 ], [ 174.724288300000012, -36.8721337 ], [ 174.72450280000001, -36.8722985 ], [ 174.72442, -36.8727105 ], [ 174.7244427, -36.8729714 ], [ 174.7253096, -36.8734726 ], [ 174.7251723, -36.8738228 ], [ 174.7249148, -36.8737267 ], [ 174.7245715, -36.873452 ], [ 174.7244513, -36.8733147 ], [ 174.724108, -36.8730332 ], [ 174.7238763, -36.8729645 ], [ 174.7237046, -36.8732323 ], [ 174.723644256600011, -36.87320815894023 ], [ 174.723644256600011, -36.8719415 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34264427.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723644256600011, -36.87320815894023 ], [ 174.7237046, -36.8732323 ], [ 174.7238763, -36.8729645 ], [ 174.724108, -36.8730332 ], [ 174.7244513, -36.8733147 ], [ 174.7245715, -36.873452 ], [ 174.7249148, -36.8737267 ], [ 174.7251723, -36.8738228 ], [ 174.725472700000012, -36.8738571 ], [ 174.7255504, -36.8748998 ], [ 174.7254753, -36.8749212 ], [ 174.7252667, -36.87499 ], [ 174.725078200000013, -36.8751357 ], [ 174.7247006, -36.8749023 ], [ 174.724477400000012, -36.8751495 ], [ 174.724177, -36.8749572 ], [ 174.723644256600011, -36.874666238306631 ], [ 174.723644256600011, -36.87320815894023 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34264428.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7253526, -36.8725594 ], [ 174.7253011, -36.873301 ], [ 174.7248204, -36.8730675 ], [ 174.7246144, -36.8729302 ], [ 174.7246144, -36.8727929 ], [ 174.7246659, -36.87258 ], [ 174.7247088, -36.872374 ], [ 174.7250521, -36.8725182 ], [ 174.7253526, -36.8725594 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34264433.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7254311, -36.8720915 ], [ 174.72545550000001, -36.8724358 ], [ 174.725344, -36.8724633 ], [ 174.725000599999987, -36.8724152 ], [ 174.7247432, -36.8722642 ], [ 174.7244513, -36.8720719 ], [ 174.723644256600011, -36.87177022534928 ], [ 174.723644256600011, -36.871472822529462 ], [ 174.7254311, -36.8720915 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34264848.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7564372, -36.8687931 ], [ 174.7562488, -36.8685269 ], [ 174.7566608, -36.8683483 ], [ 174.7576307, -36.8681561 ], [ 174.7575706, -36.8680668 ], [ 174.7585444, -36.86804 ], [ 174.7601032, -36.8682356 ], [ 174.760093899999987, -36.8682774 ], [ 174.760241, -36.8682996 ], [ 174.760751199999987, -36.8683899 ], [ 174.760635, -36.868655 ], [ 174.7595962, -36.8686573 ], [ 174.7579826, -36.8685543 ], [ 174.7579397, -36.8682453 ], [ 174.7577938, -36.8682591 ], [ 174.7564372, -36.8687931 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269349.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7686448, -36.8714843 ], [ 174.7693267, -36.8713935 ], [ 174.769524100000012, -36.8713386 ], [ 174.7696872, -36.8712699 ], [ 174.769876, -36.8710708 ], [ 174.7700099, -36.8706843 ], [ 174.7699017, -36.8706313 ], [ 174.769764400000014, -36.871009 ], [ 174.7696041, -36.8711581 ], [ 174.7692822, -36.871304 ], [ 174.7685966, -36.8713042 ], [ 174.7685242, -36.8706572 ], [ 174.7685601, -36.8704998 ], [ 174.7687516, -36.8702468 ], [ 174.7696665, -36.8692663 ], [ 174.7697664, -36.8688507 ], [ 174.7712407, -36.8699721 ], [ 174.7709918, -36.8702605 ], [ 174.7708116, -36.8707755 ], [ 174.771009, -36.8708167 ], [ 174.7711463, -36.870288 ], [ 174.7712493, -36.8701507 ], [ 174.7718415, -36.8706588 ], [ 174.7718844, -36.8707893 ], [ 174.7719188, -36.8709472 ], [ 174.7717557, -36.8712905 ], [ 174.7717557, -36.8713523 ], [ 174.7717385, -36.8718261 ], [ 174.7716269, -36.8722518 ], [ 174.7715499, -36.8723428 ], [ 174.771428899999989, -36.872306 ], [ 174.77014, -36.8720784 ], [ 174.7688665, -36.8725329 ], [ 174.7686436, -36.8718245 ], [ 174.7686448, -36.8714843 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269362.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7736611, -36.8741468 ], [ 174.7735324, -36.8746687 ], [ 174.77312040000001, -36.8745657 ], [ 174.77281, -36.874456 ], [ 174.773034599999988, -36.8740076 ], [ 174.7736611, -36.8741468 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269368.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7745174, -36.8707656 ], [ 174.774365100000011, -36.8713331 ], [ 174.774340599999988, -36.8714196 ], [ 174.7742605, -36.8717595 ], [ 174.7737472, -36.8716667 ], [ 174.7731891, -36.8710845 ], [ 174.7731633, -36.8705489 ], [ 174.773626799999988, -36.8705077 ], [ 174.773687599999988, -36.870329 ], [ 174.7745174, -36.8707656 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269370.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7731891, -36.8710845 ], [ 174.7723136, -36.8702193 ], [ 174.772768500000012, -36.8687919 ], [ 174.775051600000012, -36.8692443 ], [ 174.7750105, -36.8693817 ], [ 174.7744, -36.8692441 ], [ 174.774374200000011, -36.8693471 ], [ 174.7738678, -36.8692715 ], [ 174.7738249, -36.869505 ], [ 174.773687599999988, -36.870329 ], [ 174.773626799999988, -36.8705077 ], [ 174.7731633, -36.8705489 ], [ 174.7731891, -36.8710845 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269377.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7725225, -36.868742 ], [ 174.772202, -36.8701026 ], [ 174.7716663, -36.869762 ], [ 174.7720228, -36.868648 ], [ 174.7725225, -36.868742 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269378.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7718117, -36.8685848 ], [ 174.7715068, -36.8696426 ], [ 174.7706077, -36.8689021 ], [ 174.7698998, -36.8684108 ], [ 174.769963600000011, -36.8681906 ], [ 174.7718117, -36.8685848 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269383.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7741307, -36.8685706 ], [ 174.7746396, -36.8686744 ], [ 174.7745572, -36.8689622 ], [ 174.772086300000012, -36.8684663 ], [ 174.77247890000001, -36.8672678 ], [ 174.772736400000014, -36.8673293 ], [ 174.7730032, -36.8673988 ], [ 174.7730422, -36.8674105 ], [ 174.7728286, -36.8681045 ], [ 174.7739932, -36.8683461 ], [ 174.7740377, -36.8685516 ], [ 174.7741307, -36.8685706 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34269399.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7746396, -36.8686744 ], [ 174.774775299999988, -36.8687066 ], [ 174.7746947, -36.8689918 ], [ 174.7745572, -36.8689622 ], [ 174.7746396, -36.8686744 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34270158.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.774419599999987, -36.8669612 ], [ 174.7741332, -36.8678641 ], [ 174.77351920000001, -36.8677376 ], [ 174.7734926, -36.8677069 ], [ 174.7737741, -36.8668234 ], [ 174.774419599999987, -36.8669612 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34270727.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7716729, -36.8671795 ], [ 174.7715028, -36.8676378 ], [ 174.771265199999988, -36.8675863 ], [ 174.771318, -36.8674384 ], [ 174.770262300000013, -36.8671982 ], [ 174.7705914, -36.8661649 ], [ 174.771945499999987, -36.8664436 ], [ 174.7716729, -36.8671795 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34271289.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7757359, -36.8702566 ], [ 174.7755213, -36.8709295 ], [ 174.77613070000001, -36.8710599 ], [ 174.776053499999989, -36.8713209 ], [ 174.774682500000011, -36.8710433 ], [ 174.7749614, -36.8701651 ], [ 174.7750116, -36.8701376 ], [ 174.7757359, -36.8702566 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34271586.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.776911399999989, -36.872259 ], [ 174.7764759, -36.8722863 ], [ 174.776433, -36.8724854 ], [ 174.775459, -36.8723231 ], [ 174.7755913, -36.8720413 ], [ 174.775953500000014, -36.8715062 ], [ 174.7768862, -36.871666 ], [ 174.776911399999989, -36.872259 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34271946.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.775953500000014, -36.8715062 ], [ 174.7755913, -36.8720413 ], [ 174.775459, -36.8723231 ], [ 174.7753727, -36.8726578 ], [ 174.7749829, -36.8725951 ], [ 174.775043, -36.872396 ], [ 174.774374099999989, -36.8722818 ], [ 174.7746037, -36.8711784 ], [ 174.775953500000014, -36.8715062 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34272208.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7769717, -36.8738748 ], [ 174.7755392, -36.8736154 ], [ 174.7755907, -36.8733408 ], [ 174.775298099999986, -36.8732237 ], [ 174.77537, -36.8728661 ], [ 174.7769159, -36.8731298 ], [ 174.7769717, -36.8738748 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34272549.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7777372, -36.8718308 ], [ 174.7777825, -36.8725491 ], [ 174.7779212, -36.8732303 ], [ 174.7778611, -36.8733101 ], [ 174.7772679, -36.8734635 ], [ 174.777211, -36.8734334 ], [ 174.7771636, -36.8717594 ], [ 174.7777372, -36.8718308 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34272877.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.777762, -36.8701356 ], [ 174.778081500000013, -36.8704113 ], [ 174.7781124, -36.870469 ], [ 174.7781248, -36.8705336 ], [ 174.7780728, -36.8706931 ], [ 174.7777533, -36.8716527 ], [ 174.777159899999987, -36.8715543 ], [ 174.777586500000012, -36.8701989 ], [ 174.777615200000014, -36.870168 ], [ 174.777644, -36.870142 ], [ 174.7776983, -36.8701307 ], [ 174.777762, -36.8701356 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277842.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.764156500000013, -36.8647861 ], [ 174.7662363, -36.8652168 ], [ 174.765879, -36.8661873 ], [ 174.7659793, -36.8664938 ], [ 174.76429, -36.8669986 ], [ 174.7639821, -36.8670673 ], [ 174.7636669, -36.8670815 ], [ 174.7634798, -36.8668839 ], [ 174.764156500000013, -36.8647861 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277845.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.764198099999987, -36.8646509 ], [ 174.764492100000012, -36.8635889 ], [ 174.764567199999988, -36.8634414 ], [ 174.7649241, -36.8636245 ], [ 174.765542, -36.8638511 ], [ 174.7657748, -36.8639965 ], [ 174.7654987, -36.8649262 ], [ 174.764198099999987, -36.8646509 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277878.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7640213, -36.8647511 ], [ 174.7633615, -36.8669206 ], [ 174.763332, -36.8671448 ], [ 174.7618247, -36.8671189 ], [ 174.7618029, -36.866702 ], [ 174.7620025, -36.8665338 ], [ 174.7626727, -36.8644567 ], [ 174.7640213, -36.8647511 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277885.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.765613800000011, -36.864964 ], [ 174.7659309, -36.8640564 ], [ 174.7663085, -36.8643105 ], [ 174.76656220000001, -36.8645558 ], [ 174.7663819, -36.8651161 ], [ 174.765613800000011, -36.864964 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277887.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7663583, -36.8652367 ], [ 174.7669543, -36.8653565 ], [ 174.766975699999989, -36.8655024 ], [ 174.766840699999989, -36.8659585 ], [ 174.7669302, -36.8662437 ], [ 174.766115, -36.866438 ], [ 174.7660339, -36.8661714 ], [ 174.7663583, -36.8652367 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277897.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.765999599999986, -36.8630936 ], [ 174.7658655, -36.8634659 ], [ 174.7657343, -36.8634331 ], [ 174.7656859, -36.8633855 ], [ 174.7654818, -36.8631847 ], [ 174.765575399999989, -36.8629957 ], [ 174.765999599999986, -36.8630936 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277907.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.760849799999988, -36.8657922 ], [ 174.7600343, -36.8663156 ], [ 174.7596311, -36.8658616 ], [ 174.760404599999987, -36.8652994 ], [ 174.760849799999988, -36.8657922 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277912.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7591059, -36.866762 ], [ 174.7585212, -36.8670367 ], [ 174.7578948, -36.866163 ], [ 174.7582047, -36.866041 ], [ 174.758365700000013, -36.8660196 ], [ 174.7586403, -36.8660189 ], [ 174.7591059, -36.866762 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277917.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7603341, -36.8669458 ], [ 174.7593477, -36.8673937 ], [ 174.758789400000012, -36.8673672 ], [ 174.7585856, -36.8671097 ], [ 174.76, -36.8664873 ], [ 174.7603341, -36.8669458 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277919.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7611125, -36.8657702 ], [ 174.761433399999987, -36.866192 ], [ 174.761536400000011, -36.8664461 ], [ 174.760437700000011, -36.8668993 ], [ 174.760093, -36.8664187 ], [ 174.7611125, -36.8657702 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34277948.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761596200000014, -36.8665407 ], [ 174.7616606, -36.8667982 ], [ 174.7616606, -36.8671845 ], [ 174.7613427, -36.8675552 ], [ 174.7609525, -36.8679913 ], [ 174.759814, -36.8672985 ], [ 174.761596200000014, -36.8665407 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281562.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7597068, -36.8673414 ], [ 174.7599914, -36.8674898 ], [ 174.7599485, -36.8676752 ], [ 174.7600515, -36.8677027 ], [ 174.7599914, -36.8678743 ], [ 174.7603691, -36.8679087 ], [ 174.7603691, -36.8680666 ], [ 174.7599056, -36.8679773 ], [ 174.758789799999988, -36.8678263 ], [ 174.7582319, -36.8677713 ], [ 174.7575967, -36.8677851 ], [ 174.757450799999987, -36.8675379 ], [ 174.7574397, -36.8674453 ], [ 174.7580232, -36.8669798 ], [ 174.7581975, -36.8668237 ], [ 174.7586696, -36.8674417 ], [ 174.7588584, -36.8674898 ], [ 174.7593742, -36.8674959 ], [ 174.7597068, -36.8673414 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281608.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7579859, -36.866534 ], [ 174.7577255, -36.8667139 ], [ 174.7579658, -36.8669405 ], [ 174.757292799999988, -36.867423 ], [ 174.7570567, -36.8670968 ], [ 174.757450799999987, -36.8668512 ], [ 174.7572618, -36.8666516 ], [ 174.7577918, -36.8662358 ], [ 174.7579859, -36.866534 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281640.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7568243, -36.8670091 ], [ 174.7572534, -36.8676203 ], [ 174.756921299999988, -36.8677416 ], [ 174.7565582, -36.8678743 ], [ 174.756506699999989, -36.8678331 ], [ 174.7563951, -36.8678812 ], [ 174.7563522, -36.8678263 ], [ 174.75599170000001, -36.8680048 ], [ 174.755766200000011, -36.8677254 ], [ 174.756260200000014, -36.8673415 ], [ 174.7568243, -36.8670091 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281650.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.75599170000001, -36.8680048 ], [ 174.7563522, -36.8678263 ], [ 174.7563951, -36.8678812 ], [ 174.756506699999989, -36.8678331 ], [ 174.7565582, -36.8678743 ], [ 174.756921299999988, -36.8677416 ], [ 174.7569959, -36.8679087 ], [ 174.7565153, -36.8681078 ], [ 174.7564294, -36.8679636 ], [ 174.7560861, -36.8681559 ], [ 174.75599170000001, -36.8680048 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281651.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.757137199999988, -36.8665861 ], [ 174.7566243, -36.8669631 ], [ 174.7550244, -36.8652936 ], [ 174.7552021, -36.8649766 ], [ 174.7554252, -36.8648804 ], [ 174.757137199999988, -36.8665861 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281652.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.756026, -36.8665628 ], [ 174.7555625, -36.8669061 ], [ 174.7559477, -36.8673064 ], [ 174.7557428, -36.8674417 ], [ 174.7554839, -36.8674131 ], [ 174.7550971, -36.8674886 ], [ 174.7546003, -36.867012 ], [ 174.7545499, -36.8668444 ], [ 174.754724, -36.8662511 ], [ 174.7549703, -36.8660684 ], [ 174.7553651, -36.8658487 ], [ 174.756026, -36.8665628 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281657.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7552789, -36.8657648 ], [ 174.7547133, -36.8661131 ], [ 174.7545737, -36.8659833 ], [ 174.754592699999989, -36.8658349 ], [ 174.7548931, -36.8653542 ], [ 174.7552789, -36.8657648 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281663.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7553222, -36.8647843 ], [ 174.7551076, -36.8648804 ], [ 174.755039, -36.864853 ], [ 174.754918800000013, -36.8648736 ], [ 174.754833, -36.864853 ], [ 174.754918800000013, -36.8646195 ], [ 174.7550733, -36.8645028 ], [ 174.755167699999987, -36.8646126 ], [ 174.7553222, -36.8647843 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281667.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7583132, -36.8659227 ], [ 174.758173699999986, -36.865957 ], [ 174.757807899999989, -36.8660813 ], [ 174.75726610000001, -36.8651886 ], [ 174.7573327, -36.8647159 ], [ 174.7574449, -36.8647028 ], [ 174.7576338, -36.8647166 ], [ 174.757884100000012, -36.8648755 ], [ 174.7586294, -36.8651217 ], [ 174.7583132, -36.8659227 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281668.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7584732, -36.8659105 ], [ 174.7586924, -36.8653275 ], [ 174.7591152, -36.8654189 ], [ 174.759216900000013, -36.8651179 ], [ 174.7601716, -36.8652856 ], [ 174.759540500000014, -36.8657121 ], [ 174.7593741, -36.8654495 ], [ 174.7591315, -36.8654857 ], [ 174.759246499999989, -36.865823 ], [ 174.7584732, -36.8659105 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281699.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.75104970000001, -36.8681263 ], [ 174.7526628, -36.8676963 ], [ 174.7535026, -36.867531 ], [ 174.7534683, -36.8676203 ], [ 174.7532794, -36.8678263 ], [ 174.75311640000001, -36.8679773 ], [ 174.7528589, -36.8680803 ], [ 174.7523353, -36.868252 ], [ 174.7517774, -36.8685335 ], [ 174.7513022, -36.8686679 ], [ 174.75104970000001, -36.8681263 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281700.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.750953, -36.8683701 ], [ 174.7511174, -36.8687346 ], [ 174.750112300000012, -36.8690073 ], [ 174.7497861, -36.8691172 ], [ 174.7492296, -36.8694558 ], [ 174.748795, -36.8690121 ], [ 174.749632, -36.8685549 ], [ 174.7498268, -36.8684921 ], [ 174.750479899999988, -36.8683204 ], [ 174.7505438, -36.8684798 ], [ 174.750953, -36.8683701 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281701.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7487806, -36.8692646 ], [ 174.7490692, -36.8695334 ], [ 174.7487769, -36.869747 ], [ 174.7485713, -36.8700182 ], [ 174.7481416, -36.8697457 ], [ 174.7487806, -36.8692646 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281704.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7504329, -36.8690669 ], [ 174.7505535, -36.869688 ], [ 174.7503046, -36.8697498 ], [ 174.7499441, -36.8699077 ], [ 174.7497725, -36.8700175 ], [ 174.7482367, -36.8714253 ], [ 174.74789, -36.8711053 ], [ 174.748569, -36.8703363 ], [ 174.7489377, -36.869874 ], [ 174.749275899999986, -36.8696263 ], [ 174.7498703, -36.8692388 ], [ 174.7504329, -36.8690669 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34281840.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751684899999987, -36.8687621 ], [ 174.7519954, -36.8691049 ], [ 174.7523559, -36.8691599 ], [ 174.75227910000001, -36.8693675 ], [ 174.751471900000013, -36.8694888 ], [ 174.751102800000012, -36.8695438 ], [ 174.7508024, -36.8696193 ], [ 174.7506716, -36.869647 ], [ 174.750581899999986, -36.869018 ], [ 174.751684899999987, -36.8687621 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35769326.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.782585786437124, -36.879620605 ], [ 174.782371, -36.8793608 ], [ 174.781570499999987, -36.8787136 ], [ 174.7821018, -36.8781561 ], [ 174.783498802078839, -36.879620605 ], [ 174.782585786437124, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928008.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7445916, -36.8608232 ], [ 174.7455701, -36.8618808 ], [ 174.744857700000011, -36.8623546 ], [ 174.743829299999987, -36.8613046 ], [ 174.7445916, -36.8608232 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928010.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7419137, -36.8624782 ], [ 174.7429179, -36.8635701 ], [ 174.74219690000001, -36.8640165 ], [ 174.7411756, -36.8629521 ], [ 174.7419137, -36.8624782 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928014.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.739280799999989, -36.8641527 ], [ 174.740287, -36.8651971 ], [ 174.7395104, -36.865692 ], [ 174.7384652, -36.8646559 ], [ 174.739280799999989, -36.8641527 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928033.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.743792, -36.8597622 ], [ 174.7439994, -36.8602807 ], [ 174.7444715, -36.8607134 ], [ 174.743776200000013, -36.8611803 ], [ 174.74271920000001, -36.8600884 ], [ 174.743792, -36.8597622 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928046.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.74452, -36.8584952 ], [ 174.7445573, -36.8588592 ], [ 174.744746099999986, -36.8592781 ], [ 174.743909, -36.8595685 ], [ 174.74365610000001, -36.8590789 ], [ 174.743596, -36.8585501 ], [ 174.74452, -36.8584952 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928050.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7456903, -36.8584265 ], [ 174.7456963, -36.8586844 ], [ 174.745810400000011, -36.8589416 ], [ 174.7449006, -36.8592025 ], [ 174.744771899999989, -36.858866 ], [ 174.7447118, -36.8584883 ], [ 174.7456903, -36.8584265 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928054.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7454764, -36.8568296 ], [ 174.7437247, -36.8569637 ], [ 174.7436217, -36.8563044 ], [ 174.745364099999989, -36.8561946 ], [ 174.7454764, -36.8568296 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928171.0, "name": null, "type": "commercial; resi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7575101, -36.865867 ], [ 174.7576301, -36.8660391 ], [ 174.75707220000001, -36.8663739 ], [ 174.7569097, -36.8662013 ], [ 174.7575101, -36.865867 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 35928173.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.757178900000014, -36.8648814 ], [ 174.7571534, -36.8651886 ], [ 174.7569925, -36.8652229 ], [ 174.7567338, -36.8649392 ], [ 174.757178900000014, -36.8648814 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171317.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7777768, -36.8532929 ], [ 174.777924, -36.8532873 ], [ 174.7783566, -36.8537825 ], [ 174.7785146, -36.8540502 ], [ 174.7779739, -36.8542631 ], [ 174.7778366, -36.8540845 ], [ 174.7774332, -36.8542081 ], [ 174.7770641, -36.8536038 ], [ 174.7765736, -36.8527036 ], [ 174.7766293, -36.8526379 ], [ 174.7777768, -36.8532929 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171414.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7787635, -36.8544485 ], [ 174.7791326, -36.8550185 ], [ 174.7790525, -36.855057 ], [ 174.778832200000011, -36.8551628 ], [ 174.7784288, -36.8545653 ], [ 174.7787635, -36.8544485 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171490.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.780001199999987, -36.8532353 ], [ 174.7806861, -36.8529925 ], [ 174.780892099999988, -36.8536106 ], [ 174.7803616, -36.8537848 ], [ 174.780001199999987, -36.8532353 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171527.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.780634600000013, -36.8529101 ], [ 174.7800167, -36.8531299 ], [ 174.779707699999989, -36.8526354 ], [ 174.780420099999986, -36.8524637 ], [ 174.780634600000013, -36.8529101 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171647.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.78036, -36.8523675 ], [ 174.779690499999987, -36.8525461 ], [ 174.779227, -36.8517769 ], [ 174.7798793, -36.8515571 ], [ 174.78036, -36.8523675 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171661.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7809356, -36.8522248 ], [ 174.780463, -36.8523401 ], [ 174.7798622, -36.8513304 ], [ 174.780257, -36.8511931 ], [ 174.7808114, -36.851812 ], [ 174.7809356, -36.8522248 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171784.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7789419, -36.8515532 ], [ 174.7782827, -36.8517917 ], [ 174.778128400000014, -36.8514953 ], [ 174.778746399999989, -36.8512206 ], [ 174.7789419, -36.8515532 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171862.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7784591, -36.851211 ], [ 174.77803990000001, -36.8514045 ], [ 174.7777117, -36.8508948 ], [ 174.778128400000014, -36.850726 ], [ 174.7783355, -36.8510395 ], [ 174.7784591, -36.851211 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171884.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.778960899999987, -36.8509939 ], [ 174.7785575, -36.8511587 ], [ 174.778454, -36.8509954 ], [ 174.778224200000011, -36.8506668 ], [ 174.7786176, -36.8504719 ], [ 174.778960899999987, -36.8509939 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171886.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7785575, -36.8503964 ], [ 174.7781971, -36.8505887 ], [ 174.777931, -36.8501491 ], [ 174.7782915, -36.8499705 ], [ 174.7785575, -36.8503964 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171975.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7778022, -36.8502041 ], [ 174.7780683, -36.8506299 ], [ 174.7776585, -36.8508298 ], [ 174.7773944, -36.8504279 ], [ 174.7778022, -36.8502041 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36171988.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7784116, -36.8499087 ], [ 174.7793134, -36.849592 ], [ 174.77974420000001, -36.8495396 ], [ 174.7800872, -36.8502847 ], [ 174.779536, -36.85052 ], [ 174.7792785, -36.8501835 ], [ 174.778712, -36.8503826 ], [ 174.7784116, -36.8499087 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172076.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.778712, -36.8503826 ], [ 174.7792785, -36.8501835 ], [ 174.779536, -36.85052 ], [ 174.7796476, -36.8507054 ], [ 174.7790554, -36.850939 ], [ 174.778712, -36.8503826 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172105.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.779707699999989, -36.8512961 ], [ 174.779072500000012, -36.8515296 ], [ 174.778849400000013, -36.8511587 ], [ 174.7792356, -36.8509939 ], [ 174.7793987, -36.8512618 ], [ 174.7796476, -36.8511862 ], [ 174.779707699999989, -36.8512961 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172245.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7805488, -36.8524362 ], [ 174.781038, -36.8522988 ], [ 174.7819479, -36.8521546 ], [ 174.7820337, -36.8534183 ], [ 174.7810284, -36.8536244 ], [ 174.7808063, -36.8529513 ], [ 174.781364200000013, -36.8527453 ], [ 174.7813127, -36.8526628 ], [ 174.780763400000012, -36.8528689 ], [ 174.7805488, -36.8524362 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172283.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7819479, -36.8521546 ], [ 174.78248, -36.8520516 ], [ 174.7824886, -36.8526491 ], [ 174.7821538, -36.8527041 ], [ 174.7821796, -36.8530337 ], [ 174.782222499999989, -36.8531917 ], [ 174.7824972, -36.8531436 ], [ 174.7825487, -36.8533496 ], [ 174.7820337, -36.8534183 ], [ 174.7819479, -36.8521546 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172451.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7810809, -36.8547837 ], [ 174.780488, -36.8538554 ], [ 174.7809083, -36.8537137 ], [ 174.7809512, -36.8537549 ], [ 174.7817958, -36.8535961 ], [ 174.7819542, -36.8535634 ], [ 174.7825487, -36.8534458 ], [ 174.782624199999987, -36.8537177 ], [ 174.7821284, -36.8538425 ], [ 174.7817851, -36.8538769 ], [ 174.781476199999986, -36.8540155 ], [ 174.781218599999988, -36.854131 ], [ 174.781492899999989, -36.8546189 ], [ 174.7810809, -36.8547837 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172674.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.786145, -36.8521065 ], [ 174.784882, -36.8522995 ], [ 174.784806, -36.8517494 ], [ 174.7860076, -36.8515846 ], [ 174.786145, -36.8521065 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172759.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.790161899999987, -36.8523744 ], [ 174.789303499999988, -36.8517494 ], [ 174.7879474, -36.8511725 ], [ 174.7885139, -36.8503414 ], [ 174.789797099999987, -36.8507831 ], [ 174.7899564, -36.8505065 ], [ 174.7911575, -36.8509527 ], [ 174.790161899999987, -36.8523744 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172840.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7902094, -36.8526211 ], [ 174.7909761, -36.8529515 ], [ 174.79097920000001, -36.8530205 ], [ 174.790172899999988, -36.8542156 ], [ 174.7893761, -36.85385 ], [ 174.7902094, -36.8526211 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172847.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7900962, -36.8543303 ], [ 174.789177599999988, -36.8555688 ], [ 174.7889098, -36.8552964 ], [ 174.7884834, -36.8551177 ], [ 174.7892756, -36.8539951 ], [ 174.7893135, -36.8539812 ], [ 174.7900962, -36.8543303 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36172924.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.789131, -36.8556949 ], [ 174.788031600000011, -36.8573036 ], [ 174.787398599999989, -36.8566495 ], [ 174.7884311, -36.8552339 ], [ 174.7888211, -36.8554056 ], [ 174.789131, -36.8556949 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36173001.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7881261, -36.8574088 ], [ 174.7892129, -36.8559436 ], [ 174.7893894, -36.8566874 ], [ 174.7892606, -36.8570033 ], [ 174.7890318, -36.857358 ], [ 174.7885686, -36.8578202 ], [ 174.7881261, -36.8574088 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36173235.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7809436, -36.848748 ], [ 174.7806003, -36.8491326 ], [ 174.780463, -36.8491395 ], [ 174.7804458, -36.849009 ], [ 174.7801883, -36.8490227 ], [ 174.7801727, -36.8487193 ], [ 174.78018130000001, -36.8485751 ], [ 174.781020899999987, -36.8485282 ], [ 174.7810638, -36.848748 ], [ 174.7809436, -36.848748 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36173370.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.78184490000001, -36.849009 ], [ 174.7817848, -36.848906 ], [ 174.7817676, -36.8486244 ], [ 174.7815273, -36.8486518 ], [ 174.781621699999988, -36.8489609 ], [ 174.78170750000001, -36.8489746 ], [ 174.7817676, -36.8490639 ], [ 174.7817504, -36.8491876 ], [ 174.7813041, -36.8492013 ], [ 174.781287, -36.8493249 ], [ 174.780780600000014, -36.84927 ], [ 174.780772, -36.8491189 ], [ 174.7810638, -36.848748 ], [ 174.781372800000014, -36.8487342 ], [ 174.781364200000013, -36.8485282 ], [ 174.7819307, -36.8484939 ], [ 174.7832181, -36.8484526 ], [ 174.7832096, -36.8484939 ], [ 174.782308300000011, -36.8495104 ], [ 174.7820251, -36.8493112 ], [ 174.7819307, -36.8492356 ], [ 174.7818706, -36.8491463 ], [ 174.78184490000001, -36.849009 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36174806.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.782694600000013, -36.8569072 ], [ 174.7825904, -36.8580261 ], [ 174.7823072, -36.8580536 ], [ 174.781933400000014, -36.8576148 ], [ 174.7811193, -36.8563989 ], [ 174.781780199999986, -36.8561105 ], [ 174.7818866, -36.8562955 ], [ 174.7819871, -36.8562691 ], [ 174.782377, -36.8569003 ], [ 174.782694600000013, -36.8569072 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36176162.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7773817, -36.8529141 ], [ 174.776806099999988, -36.8526207 ], [ 174.7773028, -36.8520421 ], [ 174.7776723, -36.8522366 ], [ 174.7778707, -36.852009 ], [ 174.7780737, -36.8520944 ], [ 174.7773817, -36.8529141 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36176163.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7778707, -36.852009 ], [ 174.7776723, -36.8522366 ], [ 174.7773028, -36.8520421 ], [ 174.7774804, -36.8518452 ], [ 174.7778707, -36.852009 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36177830.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7755267, -36.8649523 ], [ 174.7741172, -36.8646718 ], [ 174.7742127, -36.8645682 ], [ 174.7747837, -36.8643909 ], [ 174.7751699, -36.8642364 ], [ 174.775445600000012, -36.8641112 ], [ 174.775574299999988, -36.8642966 ], [ 174.7757545, -36.8643378 ], [ 174.7755267, -36.8649523 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36177862.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.775445600000012, -36.8641112 ], [ 174.776816, -36.8632765 ], [ 174.777081, -36.86333 ], [ 174.7764985, -36.8651649 ], [ 174.7755267, -36.8649523 ], [ 174.7757545, -36.8643378 ], [ 174.775574299999988, -36.8642966 ], [ 174.775445600000012, -36.8641112 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36178071.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7780294, -36.863547 ], [ 174.779806400000012, -36.8639379 ], [ 174.7786963, -36.8649733 ], [ 174.7777029, -36.8647498 ], [ 174.7780294, -36.863547 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36178073.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7771945, -36.8633413 ], [ 174.7779031, -36.8635024 ], [ 174.7773857, -36.8653536 ], [ 174.7766269, -36.865192 ], [ 174.7771945, -36.8633413 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36178167.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7785965, -36.8650466 ], [ 174.7781051, -36.8655133 ], [ 174.7775043, -36.8653845 ], [ 174.7776686, -36.8648459 ], [ 174.7785965, -36.8650466 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36179785.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7890763, -36.8539103 ], [ 174.7874218, -36.8538813 ], [ 174.78686110000001, -36.8517862 ], [ 174.7870834, -36.851722 ], [ 174.787678199999988, -36.8513226 ], [ 174.787797500000011, -36.8512739 ], [ 174.789110599999987, -36.8518224 ], [ 174.7883381, -36.8529213 ], [ 174.788509800000014, -36.85299 ], [ 174.7892737, -36.8518774 ], [ 174.790071899999987, -36.8524818 ], [ 174.7890763, -36.8539103 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36185765.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.761019299999987, -36.8681734 ], [ 174.7611609, -36.8679313 ], [ 174.761486, -36.868025 ], [ 174.762126599999988, -36.8681974 ], [ 174.7619034, -36.8682661 ], [ 174.7616459, -36.8682867 ], [ 174.7614571, -36.8682661 ], [ 174.761268300000012, -36.8682386 ], [ 174.761019299999987, -36.8681734 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36185767.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7611609, -36.8679313 ], [ 174.7615529, -36.8674905 ], [ 174.7617832, -36.867552 ], [ 174.761486, -36.868025 ], [ 174.7611609, -36.8679313 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36185768.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7617832, -36.867552 ], [ 174.7625729, -36.8677854 ], [ 174.762452700000011, -36.8680807 ], [ 174.7623326, -36.8681288 ], [ 174.762126599999988, -36.8681974 ], [ 174.761486, -36.868025 ], [ 174.7617832, -36.867552 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36185770.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7616476, -36.8674126 ], [ 174.7617803, -36.8672624 ], [ 174.7619842, -36.8672538 ], [ 174.7633256, -36.867245 ], [ 174.7634569, -36.8673734 ], [ 174.763517, -36.8674627 ], [ 174.7635256, -36.8675382 ], [ 174.7629334, -36.8675382 ], [ 174.762839, -36.8676756 ], [ 174.7622553, -36.8675108 ], [ 174.762238200000013, -36.8675726 ], [ 174.7616476, -36.8674126 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36430398.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.767421899999988, -36.8632153 ], [ 174.7670857, -36.8631395 ], [ 174.7675559, -36.8619622 ], [ 174.7683455, -36.8621408 ], [ 174.7682082, -36.8626146 ], [ 174.7678649, -36.8625528 ], [ 174.767676, -36.8625116 ], [ 174.767421899999988, -36.8632153 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36430399.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7677497, -36.8595955 ], [ 174.768088400000011, -36.8598857 ], [ 174.767824, -36.8606316 ], [ 174.7673403, -36.860507 ], [ 174.7670267, -36.8603908 ], [ 174.7677497, -36.8595955 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36433731.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7940152, -36.8679797 ], [ 174.7940495, -36.8681307 ], [ 174.7932341, -36.8704447 ], [ 174.792410100000012, -36.8720583 ], [ 174.79126, -36.8727655 ], [ 174.7905991, -36.8728067 ], [ 174.79001550000001, -36.8717219 ], [ 174.791122699999988, -36.8713099 ], [ 174.7925131, -36.869765 ], [ 174.7927191, -36.8681445 ], [ 174.79266, -36.8678355 ], [ 174.7940152, -36.8679797 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36433732.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.793371400000012, -36.8704379 ], [ 174.794229699999988, -36.8681651 ], [ 174.7941274, -36.867831 ], [ 174.7952219, -36.8679291 ], [ 174.7952134, -36.8680527 ], [ 174.7953281, -36.8680699 ], [ 174.7952425, -36.8700259 ], [ 174.7947876, -36.8700534 ], [ 174.79408380000001, -36.8703761 ], [ 174.7936718, -36.8704928 ], [ 174.793371400000012, -36.8704379 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36433798.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7930313, -36.8734317 ], [ 174.79307510000001, -36.8732996 ], [ 174.793421200000012, -36.8730141 ], [ 174.79345, -36.8729539 ], [ 174.7935516, -36.8728702 ], [ 174.7948391, -36.8701769 ], [ 174.795929199999989, -36.8701632 ], [ 174.794006599999989, -36.8737199 ], [ 174.7930313, -36.8734317 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36433799.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7993624, -36.8711039 ], [ 174.799147799999986, -36.8720583 ], [ 174.7969664, -36.8718562 ], [ 174.797148, -36.8708979 ], [ 174.7993624, -36.8711039 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36433861.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8072261, -36.8726015 ], [ 174.806623699999989, -36.8727038 ], [ 174.8050873, -36.8729166 ], [ 174.805173200000013, -36.8725321 ], [ 174.805027200000012, -36.8715914 ], [ 174.805164600000012, -36.8709048 ], [ 174.8071816, -36.8710696 ], [ 174.807087200000012, -36.8720583 ], [ 174.8072261, -36.8726015 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36434268.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8073962, -36.8710696 ], [ 174.8101857, -36.8710009 ], [ 174.810820799999988, -36.8714472 ], [ 174.810838, -36.871509 ], [ 174.8107865, -36.871921 ], [ 174.810589099999987, -36.8728411 ], [ 174.8103573, -36.8732256 ], [ 174.8099282, -36.8729578 ], [ 174.8097651, -36.8730951 ], [ 174.8091643, -36.8726076 ], [ 174.8076537, -36.8724978 ], [ 174.807439100000011, -36.8725252 ], [ 174.8072932, -36.8721133 ], [ 174.8073962, -36.8710696 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36434327.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.808039900000011, -36.8726694 ], [ 174.8078854, -36.8737199 ], [ 174.8065808, -36.8735895 ], [ 174.806709500000011, -36.8728067 ], [ 174.8076537, -36.872642 ], [ 174.808039900000011, -36.8726694 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36434375.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8100655, -36.8708224 ], [ 174.8073613, -36.8709162 ], [ 174.8073618, -36.8696482 ], [ 174.807173, -36.8696482 ], [ 174.8071816, -36.8708979 ], [ 174.8051834, -36.8707531 ], [ 174.805396300000012, -36.8698954 ], [ 174.805748200000011, -36.8689616 ], [ 174.8058255, -36.8683642 ], [ 174.8059199, -36.8681994 ], [ 174.8060572, -36.8680552 ], [ 174.8064858, -36.8676583 ], [ 174.8080007, -36.8676771 ], [ 174.8084261, -36.8688929 ], [ 174.808778, -36.8695246 ], [ 174.8097136, -36.8701975 ], [ 174.809850899999986, -36.8703761 ], [ 174.8100655, -36.8708224 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36434424.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8065722, -36.8737268 ], [ 174.8078682, -36.8738641 ], [ 174.8077309, -36.8749215 ], [ 174.8064177, -36.8748116 ], [ 174.8065722, -36.8737268 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36437817.0, "name": "Queens Wharf", "type": "not_sure_council" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7680925, -36.8431246 ], [ 174.768001, -36.8433707 ], [ 174.767353500000013, -36.8431938 ], [ 174.7675219, -36.8427429 ], [ 174.767376, -36.8426948 ], [ 174.767337199999986, -36.8419431 ], [ 174.7682384, -36.8398343 ], [ 174.7691568, -36.8400954 ], [ 174.7680753, -36.8427468 ], [ 174.768049600000012, -36.8429597 ], [ 174.7680925, -36.8431246 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36499680.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8024618, -36.827951 ], [ 174.8011244, -36.8285895 ], [ 174.8006168, -36.8285762 ], [ 174.8006743, -36.8281849 ], [ 174.800891299999989, -36.8279306 ], [ 174.8011746, -36.8277932 ], [ 174.802132300000011, -36.8274201 ], [ 174.8024618, -36.827951 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36500130.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8020956, -36.8273443 ], [ 174.801123100000012, -36.8276971 ], [ 174.800791299999986, -36.827848 ], [ 174.8005997, -36.8281088 ], [ 174.8005305, -36.8283033 ], [ 174.800200600000011, -36.8281811 ], [ 174.800497400000012, -36.827554 ], [ 174.8006704, -36.8272426 ], [ 174.8008126, -36.826956 ], [ 174.8011286, -36.826843 ], [ 174.8017054, -36.8266328 ], [ 174.8020956, -36.8273443 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36500314.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8016523, -36.8263332 ], [ 174.801319799999987, -36.825787 ], [ 174.8017156, -36.825786 ], [ 174.8022059, -36.8256153 ], [ 174.8025079, -36.8256251 ], [ 174.8027286, -36.8256685 ], [ 174.8031289, -36.8256964 ], [ 174.8029933, -36.8262395 ], [ 174.8023556, -36.8261106 ], [ 174.8016523, -36.8263332 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36500317.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.802961900000014, -36.826323 ], [ 174.80259, -36.82772 ], [ 174.8024474, -36.8277509 ], [ 174.8016781, -36.8264208 ], [ 174.802180099999987, -36.8262288 ], [ 174.802354400000013, -36.8261927 ], [ 174.802961900000014, -36.826323 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36500476.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8030564, -36.8264518 ], [ 174.803271599999988, -36.8256909 ], [ 174.803300400000012, -36.82559 ], [ 174.8034394, -36.8257263 ], [ 174.803751299999988, -36.8261227 ], [ 174.805512099999987, -36.8257068 ], [ 174.805594899999988, -36.8257528 ], [ 174.805629399999987, -36.8264582 ], [ 174.8034618, -36.8265522 ], [ 174.8030564, -36.8264518 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36500477.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.805643300000014, -36.8272526 ], [ 174.8033289, -36.8273192 ], [ 174.8028654, -36.8272642 ], [ 174.803042799999986, -36.8265511 ], [ 174.8034577, -36.8266528 ], [ 174.805607400000014, -36.8265488 ], [ 174.805643300000014, -36.8272526 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36500824.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8062916, -36.8283903 ], [ 174.8049139, -36.8292266 ], [ 174.8038439, -36.8278413 ], [ 174.8037152, -36.8278963 ], [ 174.8048162, -36.8292954 ], [ 174.8042728, -36.8296092 ], [ 174.8040499, -36.8293459 ], [ 174.8036956, -36.829513 ], [ 174.8026006, -36.8279686 ], [ 174.8027056, -36.827794 ], [ 174.8028286, -36.8273585 ], [ 174.803311799999989, -36.8274497 ], [ 174.80567210000001, -36.8273604 ], [ 174.805678300000011, -36.8275436 ], [ 174.8057009, -36.8277203 ], [ 174.8062916, -36.8283903 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36500969.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.806945399999989, -36.8280185 ], [ 174.806707100000011, -36.8275567 ], [ 174.8069097, -36.8275071 ], [ 174.8075011, -36.827383 ], [ 174.8080098, -36.8273748 ], [ 174.80794370000001, -36.8279807 ], [ 174.807634400000012, -36.8279404 ], [ 174.8072235, -36.8279678 ], [ 174.806945399999989, -36.8280185 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36501089.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.808213, -36.8264233 ], [ 174.8078363, -36.8261843 ], [ 174.8072087, -36.8259498 ], [ 174.8076091, -36.825251 ], [ 174.8086591, -36.8256565 ], [ 174.808213, -36.8264233 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36501254.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8067759, -36.8244474 ], [ 174.8075058, -36.8251871 ], [ 174.807154200000014, -36.8258256 ], [ 174.8068331, -36.8257204 ], [ 174.8065335, -36.8257021 ], [ 174.8063813, -36.8257589 ], [ 174.8059102, -36.8252048 ], [ 174.805809399999987, -36.8250794 ], [ 174.8067759, -36.8244474 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36501257.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8091911, -36.8247336 ], [ 174.8087021, -36.825572 ], [ 174.807655, -36.825164 ], [ 174.8081354, -36.8243924 ], [ 174.8091911, -36.8247336 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36501395.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.809208500000011, -36.824656 ], [ 174.8085045, -36.8244017 ], [ 174.8081722, -36.824082 ], [ 174.8091404, -36.8234731 ], [ 174.80954890000001, -36.8240697 ], [ 174.809208500000011, -36.824656 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36501489.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8069482, -36.8229563 ], [ 174.808144, -36.8242206 ], [ 174.8080668, -36.8242687 ], [ 174.807568800000013, -36.8250889 ], [ 174.8064714, -36.8239889 ], [ 174.8062957, -36.8233458 ], [ 174.8069482, -36.8229563 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36501534.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8074589, -36.8224746 ], [ 174.806252199999989, -36.8232537 ], [ 174.805630400000013, -36.8214501 ], [ 174.8067198, -36.8206616 ], [ 174.8079759, -36.8220888 ], [ 174.8075457, -36.8223727 ], [ 174.806779299999988, -36.8214791 ], [ 174.80665590000001, -36.8215698 ], [ 174.8074589, -36.8224746 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36501688.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8070883, -36.8228877 ], [ 174.8076907, -36.8224907 ], [ 174.808109300000012, -36.8222421 ], [ 174.8089517, -36.8231346 ], [ 174.8079205, -36.823808 ], [ 174.8070883, -36.8228877 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36503195.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.797737899999987, -36.8230767 ], [ 174.8014839, -36.8220685 ], [ 174.8020224, -36.8232099 ], [ 174.8003905, -36.8240839 ], [ 174.800124, -36.8235982 ], [ 174.80001, -36.8236375 ], [ 174.8002721, -36.8241305 ], [ 174.7985581, -36.8246975 ], [ 174.798495, -36.8245892 ], [ 174.797737899999987, -36.8230767 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36503198.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.799844900000011, -36.8223943 ], [ 174.797746499999988, -36.8229756 ], [ 174.7974688, -36.8222861 ], [ 174.7995474, -36.8217043 ], [ 174.799844900000011, -36.8223943 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36503218.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.798271199999988, -36.8214804 ], [ 174.7984405, -36.8219294 ], [ 174.797513900000013, -36.8221671 ], [ 174.797292700000014, -36.8221768 ], [ 174.7970877, -36.8217461 ], [ 174.798271199999988, -36.8214804 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36503331.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.79706, -36.8216893 ], [ 174.7967894, -36.8211556 ], [ 174.798168299999986, -36.8209781 ], [ 174.7994893, -36.8208432 ], [ 174.799531800000011, -36.8212446 ], [ 174.7996487, -36.8215676 ], [ 174.798471799999987, -36.8219227 ], [ 174.7982925, -36.8214719 ], [ 174.7986281, -36.8213891 ], [ 174.7985936, -36.8213357 ], [ 174.79706, -36.8216893 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36503351.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8031125, -36.8227912 ], [ 174.8027108, -36.8228588 ], [ 174.8021119, -36.8231645 ], [ 174.8014211, -36.8216343 ], [ 174.8013958, -36.8215397 ], [ 174.8015097, -36.8213838 ], [ 174.8020186, -36.8209811 ], [ 174.80229460000001, -36.8208702 ], [ 174.8031125, -36.8227912 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36503506.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8045955, -36.8219081 ], [ 174.804392299999989, -36.8225278 ], [ 174.8031978, -36.8227714 ], [ 174.8023647, -36.8208667 ], [ 174.8034318, -36.820746 ], [ 174.8043088, -36.8209547 ], [ 174.804354499999988, -36.8208662 ], [ 174.8035219, -36.8206779 ], [ 174.803720700000014, -36.8203795 ], [ 174.8037846, -36.8201063 ], [ 174.803947599999987, -36.8199276 ], [ 174.804866, -36.819536 ], [ 174.805486300000013, -36.8197045 ], [ 174.8052485, -36.8202307 ], [ 174.8048145, -36.8201131 ], [ 174.8047544, -36.8202368 ], [ 174.8052126, -36.8203484 ], [ 174.8046315, -36.8218329 ], [ 174.8032976, -36.8215141 ], [ 174.803261, -36.8215972 ], [ 174.8045955, -36.8219081 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36692722.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.799304, -36.8723066 ], [ 174.7999131, -36.8695583 ], [ 174.8007543, -36.8696201 ], [ 174.8007714, -36.8695171 ], [ 174.799951099999987, -36.869433 ], [ 174.8000027, -36.8681913 ], [ 174.801968100000011, -36.8683687 ], [ 174.8012137, -36.8725641 ], [ 174.799304, -36.8723066 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36692884.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8021741, -36.8683824 ], [ 174.803547400000014, -36.8685197 ], [ 174.8036847, -36.8684923 ], [ 174.8038392, -36.8684099 ], [ 174.8039851, -36.8683481 ], [ 174.804148199999986, -36.8683275 ], [ 174.8043113, -36.8683343 ], [ 174.8044486, -36.8684236 ], [ 174.804543, -36.8685541 ], [ 174.8047147, -36.8688768 ], [ 174.8046889, -36.8689592 ], [ 174.804036599999989, -36.8692751 ], [ 174.8037448, -36.8695978 ], [ 174.8031268, -36.8708749 ], [ 174.803144, -36.8714036 ], [ 174.8032813, -36.87277 ], [ 174.8032212, -36.8730378 ], [ 174.803161100000011, -36.8731751 ], [ 174.8029895, -36.8732369 ], [ 174.802629, -36.873182 ], [ 174.8020453, -36.8733056 ], [ 174.801744899999989, -36.8728387 ], [ 174.801363900000013, -36.8725813 ], [ 174.8021741, -36.8683824 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36692979.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8055129, -36.8690347 ], [ 174.805229700000012, -36.8698381 ], [ 174.8048091, -36.8715204 ], [ 174.8048949, -36.8724198 ], [ 174.8049121, -36.8726258 ], [ 174.8048091, -36.8730309 ], [ 174.804645, -36.8732905 ], [ 174.803779100000014, -36.8739235 ], [ 174.80356, -36.8745483 ], [ 174.8021397, -36.8742943 ], [ 174.8020282, -36.873642 ], [ 174.8020367, -36.8735184 ], [ 174.8021226, -36.8734223 ], [ 174.8026805, -36.8733125 ], [ 174.8029551, -36.8733399 ], [ 174.8032126, -36.8733605 ], [ 174.8032813, -36.8732713 ], [ 174.8033843, -36.8729417 ], [ 174.803435799999988, -36.8727357 ], [ 174.80328990000001, -36.8709505 ], [ 174.8033757, -36.8707651 ], [ 174.8039164, -36.8696802 ], [ 174.8041825, -36.869378 ], [ 174.8049292, -36.869021 ], [ 174.8055129, -36.8690347 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36693337.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8062081, -36.8747955 ], [ 174.8037534, -36.8745758 ], [ 174.8039679, -36.8739716 ], [ 174.8049121, -36.8732713 ], [ 174.8050065, -36.8730515 ], [ 174.80653430000001, -36.8728387 ], [ 174.8062081, -36.8747955 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36693345.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.80594, -36.8748917 ], [ 174.80580470000001, -36.8758392 ], [ 174.8033757, -36.8756194 ], [ 174.8037104, -36.87472 ], [ 174.80594, -36.8748917 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36693438.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.805713700000013, -36.875996 ], [ 174.8056547, -36.876436 ], [ 174.805347500000011, -36.8764097 ], [ 174.805283800000012, -36.8768848 ], [ 174.803612500000014, -36.8767496 ], [ 174.803427199999987, -36.8757705 ], [ 174.805713700000013, -36.875996 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36693472.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.803547516864086, -36.879620605 ], [ 174.803946200000013, -36.8784579 ], [ 174.8039422, -36.878329 ], [ 174.8039109, -36.8780823 ], [ 174.803612500000014, -36.8769041 ], [ 174.8059335, -36.8771162 ], [ 174.805718899999988, -36.8785168 ], [ 174.8056588, -36.8785923 ], [ 174.8052554, -36.8786816 ], [ 174.805109499999986, -36.8787502 ], [ 174.8050202, -36.8789328 ], [ 174.804906535900017, -36.879620605 ], [ 174.803547516864086, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36695290.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.793839, -36.8737748 ], [ 174.7936022, -36.8743513 ], [ 174.7936617, -36.8744636 ], [ 174.7936277, -36.8748319 ], [ 174.792995, -36.8748273 ], [ 174.792865400000011, -36.8749273 ], [ 174.792735099999987, -36.8751085 ], [ 174.7924792, -36.876069 ], [ 174.7918628, -36.8770083 ], [ 174.7915179, -36.8773164 ], [ 174.791122, -36.8778364 ], [ 174.790801499999986, -36.8776792 ], [ 174.7906041, -36.8774458 ], [ 174.790432399999986, -36.8772261 ], [ 174.790217899999988, -36.8771162 ], [ 174.79127, -36.875873 ], [ 174.7911488, -36.8757798 ], [ 174.7896857, -36.8774958 ], [ 174.7891817, -36.8775883 ], [ 174.7889319, -36.8769654 ], [ 174.789831600000014, -36.8758392 ], [ 174.7893606, -36.8756275 ], [ 174.789823, -36.8750976 ], [ 174.7896943, -36.8750152 ], [ 174.7892052, -36.8755674 ], [ 174.7883296, -36.8751526 ], [ 174.7871194, -36.8744248 ], [ 174.7869906, -36.8739853 ], [ 174.787926199999987, -36.8735871 ], [ 174.7878661, -36.8734772 ], [ 174.7868876, -36.8738617 ], [ 174.7866645, -36.8738961 ], [ 174.7863898, -36.8737519 ], [ 174.7861332, -36.8734498 ], [ 174.7874198, -36.8726533 ], [ 174.789872, -36.8717744 ], [ 174.7904153, -36.8728524 ], [ 174.7887416, -36.8734429 ], [ 174.7888017, -36.8735871 ], [ 174.7905585, -36.8729274 ], [ 174.7913015, -36.8728592 ], [ 174.7916706, -36.8726584 ], [ 174.792069700000013, -36.8731956 ], [ 174.793839, -36.8737748 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36708852.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8000027, -36.8680625 ], [ 174.80011, -36.8671527 ], [ 174.8036468, -36.8674365 ], [ 174.8038573, -36.8675185 ], [ 174.803787699999987, -36.86783 ], [ 174.803907900000013, -36.8678712 ], [ 174.80394960000001, -36.8682039 ], [ 174.8035438, -36.8683841 ], [ 174.8000027, -36.8680625 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36708860.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7946174, -36.8703067 ], [ 174.7934737, -36.8728284 ], [ 174.79316750000001, -36.8730193 ], [ 174.792720300000013, -36.8733194 ], [ 174.792182, -36.8731357 ], [ 174.7917656, -36.8726086 ], [ 174.792528299999987, -36.872153 ], [ 174.7933557, -36.8705745 ], [ 174.793733300000014, -36.8706363 ], [ 174.794317, -36.8704441 ], [ 174.7946174, -36.8703067 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36708961.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7915103, -36.8705677 ], [ 174.7910331, -36.8712024 ], [ 174.7898585, -36.871633 ], [ 174.7886521, -36.8720233 ], [ 174.78807710000001, -36.8712818 ], [ 174.7893645, -36.8704166 ], [ 174.789888100000013, -36.8702381 ], [ 174.7904031, -36.8701831 ], [ 174.7915103, -36.8705677 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36709097.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.785064299999988, -36.8709932 ], [ 174.784105, -36.8700358 ], [ 174.783904299999989, -36.8695518 ], [ 174.7839084, -36.8685436 ], [ 174.7835871, -36.867218 ], [ 174.783659699999987, -36.8670484 ], [ 174.7844026, -36.8664197 ], [ 174.7849927, -36.8669948 ], [ 174.78506440000001, -36.8680339 ], [ 174.7851245, -36.8681369 ], [ 174.78522, -36.8680677 ], [ 174.78522, -36.8679819 ], [ 174.785210299999989, -36.8669558 ], [ 174.7844991, -36.8663425 ], [ 174.7858617, -36.8652695 ], [ 174.787117, -36.8645828 ], [ 174.7873653, -36.864441 ], [ 174.7874991, -36.8644346 ], [ 174.787632699999989, -36.8644418 ], [ 174.7878036, -36.8645313 ], [ 174.7887585, -36.865115 ], [ 174.78867790000001, -36.8651705 ], [ 174.7864463, -36.866743 ], [ 174.7862661, -36.8672923 ], [ 174.786274600000013, -36.8682262 ], [ 174.785064299999988, -36.8709932 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36709308.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7886436, -36.8653971 ], [ 174.7890727, -36.8656718 ], [ 174.789253, -36.8654108 ], [ 174.7894246, -36.8655069 ], [ 174.7893989, -36.8655962 ], [ 174.789184299999988, -36.8658915 ], [ 174.7890985, -36.8660838 ], [ 174.7890985, -36.8664202 ], [ 174.7892358, -36.8668872 ], [ 174.7892444, -36.8673884 ], [ 174.7889611, -36.8679034 ], [ 174.7881715, -36.8685626 ], [ 174.7876823, -36.8700389 ], [ 174.7874505, -36.8702724 ], [ 174.7875793, -36.8703754 ], [ 174.787853899999988, -36.8701007 ], [ 174.7882831, -36.8686244 ], [ 174.7890641, -36.8679996 ], [ 174.78956, -36.8681094 ], [ 174.790257200000013, -36.868233 ], [ 174.7904374, -36.868233 ], [ 174.790746399999989, -36.8683154 ], [ 174.79169060000001, -36.869524 ], [ 174.792257, -36.8697505 ], [ 174.7916476, -36.8704372 ], [ 174.7904117, -36.8700458 ], [ 174.7897594, -36.8701145 ], [ 174.7893302, -36.8702518 ], [ 174.7881286, -36.8709865 ], [ 174.7877938, -36.8712337 ], [ 174.788463299999989, -36.8720988 ], [ 174.7873046, -36.872552 ], [ 174.785485, -36.87363 ], [ 174.7858221, -36.8723089 ], [ 174.7851655, -36.8711174 ], [ 174.786472, -36.8682811 ], [ 174.7864518, -36.8673381 ], [ 174.7866127, -36.866806 ], [ 174.7886436, -36.8653971 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36709419.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7897711, -36.8655623 ], [ 174.7898452, -36.865658 ], [ 174.7900598, -36.8659121 ], [ 174.79023140000001, -36.8663172 ], [ 174.790265799999986, -36.8665026 ], [ 174.7903516, -36.8666194 ], [ 174.7905318, -36.8665026 ], [ 174.7910211, -36.8663653 ], [ 174.7921111, -36.8670039 ], [ 174.7923944, -36.8676837 ], [ 174.792523100000011, -36.8681712 ], [ 174.7923257, -36.8696063 ], [ 174.791810700000013, -36.8694004 ], [ 174.7909267, -36.8681987 ], [ 174.7902743, -36.8680614 ], [ 174.7900684, -36.8680614 ], [ 174.7896135, -36.8680133 ], [ 174.7891328, -36.8679034 ], [ 174.7893817, -36.8675326 ], [ 174.7893817, -36.8671412 ], [ 174.789356, -36.8668048 ], [ 174.7892615, -36.8662966 ], [ 174.7892444, -36.8661524 ], [ 174.7893302, -36.8659602 ], [ 174.7894332, -36.8657885 ], [ 174.789696, -36.8658713 ], [ 174.7897711, -36.8655623 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36709603.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7850408, -36.8726873 ], [ 174.7849335, -36.8726143 ], [ 174.7848531, -36.8725285 ], [ 174.78478, -36.8724813 ], [ 174.784230799999989, -36.872374 ], [ 174.7841128, -36.8723869 ], [ 174.7837534, -36.8727903 ], [ 174.78341, -36.8732005 ], [ 174.78349750000001, -36.8732515 ], [ 174.7833135, -36.8734652 ], [ 174.7829616, -36.8732249 ], [ 174.7831644, -36.8730195 ], [ 174.7827384, -36.8727855 ], [ 174.7829358, -36.8726481 ], [ 174.783287699999988, -36.8721194 ], [ 174.7832019, -36.872037 ], [ 174.78277270000001, -36.8725863 ], [ 174.782566800000012, -36.8726481 ], [ 174.7818801, -36.8723254 ], [ 174.78158830000001, -36.8720988 ], [ 174.7823608, -36.8714809 ], [ 174.7822749, -36.8714122 ], [ 174.7814018, -36.8720959 ], [ 174.781770599999987, -36.8724188 ], [ 174.781319200000013, -36.8728549 ], [ 174.780877299999986, -36.8725776 ], [ 174.7806836, -36.8724143 ], [ 174.7809862, -36.8721921 ], [ 174.7807992, -36.8720269 ], [ 174.7821446, -36.8710527 ], [ 174.782274699999988, -36.8708636 ], [ 174.782254599999987, -36.8705895 ], [ 174.7822145, -36.8704619 ], [ 174.7818502, -36.869149 ], [ 174.782325500000013, -36.8688029 ], [ 174.78263, -36.8687466 ], [ 174.7827437, -36.8686262 ], [ 174.7828553, -36.8684685 ], [ 174.782880299999988, -36.8678599 ], [ 174.7830339, -36.8676284 ], [ 174.7832392, -36.8672315 ], [ 174.783381, -36.8671969 ], [ 174.7838112, -36.8685595 ], [ 174.7838021, -36.869556 ], [ 174.7838966, -36.869831 ], [ 174.784061900000012, -36.8700889 ], [ 174.783759800000013, -36.8705677 ], [ 174.7836654, -36.8706706 ], [ 174.783751200000012, -36.8707668 ], [ 174.7838628, -36.8707118 ], [ 174.7838628, -36.8706226 ], [ 174.784043, -36.8703205 ], [ 174.7841392, -36.8701626 ], [ 174.785059100000012, -36.8711318 ], [ 174.7857129, -36.8723171 ], [ 174.7855978, -36.8727811 ], [ 174.7854907, -36.8730663 ], [ 174.785126600000012, -36.8729619 ], [ 174.7851857, -36.8727173 ], [ 174.7850408, -36.8726873 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36710088.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.79866, -36.8773376 ], [ 174.7985913, -36.8768364 ], [ 174.7983768, -36.876397 ], [ 174.7983682, -36.8760468 ], [ 174.7985055, -36.8754014 ], [ 174.7985227, -36.8748796 ], [ 174.7995971, -36.8749525 ], [ 174.7997473, -36.8749782 ], [ 174.7998546, -36.8749353 ], [ 174.7998653, -36.8748667 ], [ 174.7997795, -36.8748066 ], [ 174.79964, -36.8748323 ], [ 174.7985055, -36.8747492 ], [ 174.7988145, -36.8741381 ], [ 174.8007705, -36.8743302 ], [ 174.800697899999989, -36.8747885 ], [ 174.800697899999989, -36.8753241 ], [ 174.8007237, -36.8761343 ], [ 174.8006636, -36.8769376 ], [ 174.800560600000011, -36.8775623 ], [ 174.79866, -36.8773376 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36839847.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7991027, -36.872227 ], [ 174.7988547, -36.87359 ], [ 174.7966767, -36.8734355 ], [ 174.79678530000001, -36.8725566 ], [ 174.7969235, -36.871985 ], [ 174.7991027, -36.872227 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36839858.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7965158, -36.8734269 ], [ 174.794519400000013, -36.8732363 ], [ 174.7961416, -36.8701328 ], [ 174.796210300000013, -36.8698719 ], [ 174.7970943, -36.8699405 ], [ 174.7967682, -36.8718837 ], [ 174.79667, -36.8724485 ], [ 174.7965158, -36.8734269 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36839862.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7996057, -36.8701482 ], [ 174.7993946, -36.8709774 ], [ 174.7971973, -36.8707576 ], [ 174.797291699999988, -36.8699474 ], [ 174.7996057, -36.8701482 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36839872.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7999346, -36.8670628 ], [ 174.799703599999987, -36.8694942 ], [ 174.799574799999988, -36.8700298 ], [ 174.797283099999987, -36.8697826 ], [ 174.797386100000011, -36.8690959 ], [ 174.797643599999986, -36.8686702 ], [ 174.7976093, -36.8681621 ], [ 174.797660799999989, -36.8679012 ], [ 174.7979698, -36.8675441 ], [ 174.7978239, -36.8674411 ], [ 174.7975063, -36.8678462 ], [ 174.7974376, -36.8681964 ], [ 174.7974548, -36.8686496 ], [ 174.797171600000013, -36.8690616 ], [ 174.7970943, -36.8697757 ], [ 174.7962274, -36.8697002 ], [ 174.7963733, -36.8643579 ], [ 174.7974376, -36.8641656 ], [ 174.7973432, -36.8655115 ], [ 174.797763800000013, -36.8661707 ], [ 174.7980988, -36.8662396 ], [ 174.798076400000014, -36.8668473 ], [ 174.7988918, -36.866916 ], [ 174.7999346, -36.8670628 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36839884.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8000505, -36.8654465 ], [ 174.799240700000013, -36.8654317 ], [ 174.799209, -36.8650324 ], [ 174.7981451, -36.8649864 ], [ 174.7981034, -36.8661165 ], [ 174.797892499999989, -36.8660883 ], [ 174.797575, -36.8654841 ], [ 174.7976113, -36.8640882 ], [ 174.7986458, -36.8640114 ], [ 174.7985277, -36.8645776 ], [ 174.7986393, -36.8646051 ], [ 174.798764799999987, -36.8640332 ], [ 174.8000063, -36.8641806 ], [ 174.8000505, -36.8654465 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36839888.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7993002, -36.8724673 ], [ 174.8011541, -36.8726665 ], [ 174.80151, -36.8729068 ], [ 174.801815, -36.8733531 ], [ 174.8018309, -36.8738067 ], [ 174.8014532, -36.8737929 ], [ 174.8011013, -36.8737655 ], [ 174.800898600000011, -36.8742357 ], [ 174.8007838, -36.8742461 ], [ 174.7988109, -36.8740191 ], [ 174.7989998, -36.8736758 ], [ 174.7993002, -36.8724673 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36839904.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.798385621340373, -36.879620605 ], [ 174.7984676, -36.8788115 ], [ 174.7998495, -36.8789007 ], [ 174.7998666, -36.8788046 ], [ 174.7985019, -36.8786879 ], [ 174.7985534, -36.8777473 ], [ 174.798596300000014, -36.8774658 ], [ 174.8008953, -36.8777065 ], [ 174.800818099999987, -36.878654 ], [ 174.8019511, -36.8787913 ], [ 174.802019699999988, -36.8784068 ], [ 174.802740699999987, -36.8784549 ], [ 174.8027665, -36.8779674 ], [ 174.80260340000001, -36.8779537 ], [ 174.802483200000012, -36.8770337 ], [ 174.802011099999987, -36.8761137 ], [ 174.8020369, -36.8755369 ], [ 174.8025519, -36.8754339 ], [ 174.8025605, -36.8752074 ], [ 174.8013846, -36.8750494 ], [ 174.801362399999988, -36.8748969 ], [ 174.801317, -36.8743086 ], [ 174.8012982, -36.874019 ], [ 174.8015316, -36.8740125 ], [ 174.8019167, -36.8740195 ], [ 174.801986699999986, -36.8744585 ], [ 174.8034372, -36.8747057 ], [ 174.803162500000013, -36.8756326 ], [ 174.803188299999988, -36.8758248 ], [ 174.8037204, -36.8780494 ], [ 174.8037376, -36.8784201 ], [ 174.803308500000014, -36.8796079 ], [ 174.803302103539522, -36.879620605 ], [ 174.798385621340373, -36.879620605 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36840158.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.806116, -36.8749073 ], [ 174.807882299999989, -36.8750819 ], [ 174.807993900000014, -36.874107 ], [ 174.8086891, -36.8741756 ], [ 174.8092814, -36.8744159 ], [ 174.8089874, -36.874706 ], [ 174.8089113, -36.8747876 ], [ 174.8088608, -36.8749498 ], [ 174.808474600000011, -36.8761599 ], [ 174.808714900000012, -36.8766542 ], [ 174.809204099999988, -36.8772653 ], [ 174.8094959, -36.8783089 ], [ 174.8098478, -36.8788513 ], [ 174.8100968, -36.8791877 ], [ 174.810829671186468, -36.879620605 ], [ 174.807342624308319, -36.879620605 ], [ 174.8077356, -36.8794684 ], [ 174.80777, -36.8793173 ], [ 174.8077013, -36.87918 ], [ 174.8073666, -36.8781639 ], [ 174.807186300000012, -36.8782326 ], [ 174.8074782, -36.8791526 ], [ 174.8074867, -36.8793105 ], [ 174.8074867, -36.8793585 ], [ 174.806849674579297, -36.879620605 ], [ 174.805048100647781, -36.879620605 ], [ 174.805160699999988, -36.8789672 ], [ 174.8052791, -36.8788208 ], [ 174.8055312, -36.878771 ], [ 174.8057444, -36.87872 ], [ 174.8058797, -36.8785488 ], [ 174.8061564, -36.8771272 ], [ 174.8076498, -36.8772782 ], [ 174.8077442, -36.8773332 ], [ 174.807976, -36.8783562 ], [ 174.8082335, -36.8783081 ], [ 174.8080189, -36.8772782 ], [ 174.8078901, -36.8771203 ], [ 174.8063023, -36.8769281 ], [ 174.8064568, -36.8759119 ], [ 174.8059551, -36.8758513 ], [ 174.806116, -36.8749073 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36840381.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.8080096, -36.8739496 ], [ 174.8081812, -36.8726862 ], [ 174.809065299999986, -36.8727549 ], [ 174.8100609, -36.8735582 ], [ 174.809417200000013, -36.8742998 ], [ 174.808816400000012, -36.8740183 ], [ 174.8080096, -36.8739496 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36840416.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.80555480000001, -36.8688891 ], [ 174.804954, -36.8688823 ], [ 174.8045611, -36.8683498 ], [ 174.8044784, -36.8682971 ], [ 174.8043628, -36.8680566 ], [ 174.8047147, -36.8680222 ], [ 174.8050752, -36.8678849 ], [ 174.8051524, -36.8677201 ], [ 174.805383, -36.8675396 ], [ 174.8054364, -36.8674234 ], [ 174.8055043, -36.8673287 ], [ 174.8056502, -36.8672532 ], [ 174.80581, -36.8674291 ], [ 174.8060021, -36.8671708 ], [ 174.8065171, -36.8673768 ], [ 174.805829499999987, -36.8680239 ], [ 174.8057179, -36.8681475 ], [ 174.8056664, -36.868278 ], [ 174.80555480000001, -36.8688891 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36843855.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7810105, -36.8697691 ], [ 174.7817518, -36.8692172 ], [ 174.7821132, -36.8705498 ], [ 174.782138800000013, -36.8707204 ], [ 174.7810105, -36.8697691 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36844159.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.78229730000001, -36.8621072 ], [ 174.7821256, -36.8623064 ], [ 174.782177100000013, -36.8623544 ], [ 174.7820398, -36.8624643 ], [ 174.7818596, -36.8622995 ], [ 174.782074099999988, -36.8620797 ], [ 174.782177100000013, -36.8620248 ], [ 174.78229730000001, -36.8621072 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36844189.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.78229730000001, -36.8621072 ], [ 174.7836103, -36.8629691 ], [ 174.7838965, -36.8631377 ], [ 174.785335, -36.863704 ], [ 174.7851626, -36.8639497 ], [ 174.784991, -36.8641008 ], [ 174.783766500000013, -36.8639939 ], [ 174.7836089, -36.8639013 ], [ 174.783403099999987, -36.863778 ], [ 174.7832572, -36.8631943 ], [ 174.7822873, -36.86259 ], [ 174.7820398, -36.8624643 ], [ 174.782177100000013, -36.8623544 ], [ 174.7821256, -36.8623064 ], [ 174.78229730000001, -36.8621072 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36844194.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.785539199999988, -36.8636469 ], [ 174.78385080000001, -36.8629931 ], [ 174.7827488, -36.8622368 ], [ 174.783404499999989, -36.8617913 ], [ 174.7835933, -36.8618119 ], [ 174.7837993, -36.8618943 ], [ 174.784074, -36.8617226 ], [ 174.7849066, -36.8620179 ], [ 174.7858593, -36.8626703 ], [ 174.7860693, -36.8627616 ], [ 174.7859684, -36.8628229 ], [ 174.7855564, -36.8627336 ], [ 174.78505, -36.8626237 ], [ 174.7848955, -36.8627199 ], [ 174.784955599999989, -36.8629533 ], [ 174.7850157, -36.8631319 ], [ 174.7852732, -36.8632006 ], [ 174.785530599999987, -36.863331 ], [ 174.785539199999988, -36.8636469 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36844384.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.782822, -36.8606003 ], [ 174.7834866, -36.8607789 ], [ 174.7843292, -36.8606814 ], [ 174.784547800000013, -36.8605563 ], [ 174.784734899999989, -36.8604247 ], [ 174.784777600000012, -36.8603546 ], [ 174.7851873, -36.8607971 ], [ 174.785419100000013, -36.8610855 ], [ 174.7853762, -36.8612022 ], [ 174.7843033, -36.8610374 ], [ 174.7840114, -36.8611954 ], [ 174.784337599999986, -36.861367 ], [ 174.7849985, -36.8615868 ], [ 174.78539330000001, -36.8617722 ], [ 174.7858053, -36.861992 ], [ 174.786011300000013, -36.8622323 ], [ 174.78635460000001, -36.8624727 ], [ 174.7862173, -36.8626718 ], [ 174.7859623, -36.8625604 ], [ 174.7850096, -36.8619012 ], [ 174.7840053, -36.8615647 ], [ 174.7837135, -36.8617364 ], [ 174.7833837, -36.8616287 ], [ 174.7826761, -36.8621661 ], [ 174.782101899999986, -36.8618746 ], [ 174.782822, -36.8606003 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020157.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7814462, -36.8731403 ], [ 174.784678500000012, -36.875006 ], [ 174.7837893, -36.8759005 ], [ 174.7805449, -36.8739368 ], [ 174.7814462, -36.8731403 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020159.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7804076, -36.8740329 ], [ 174.7836863, -36.8760035 ], [ 174.78312840000001, -36.8766901 ], [ 174.782433200000014, -36.8763536 ], [ 174.7813947, -36.8753787 ], [ 174.7809301, -36.8756158 ], [ 174.7803725, -36.874936 ], [ 174.7800814, -36.8743968 ], [ 174.780193, -36.8742458 ], [ 174.7804076, -36.8740329 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020170.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7838237, -36.8760653 ], [ 174.784419899999989, -36.876413 ], [ 174.7834546, -36.8774815 ], [ 174.783875200000011, -36.8779776 ], [ 174.7840898, -36.8779776 ], [ 174.7843215, -36.8782866 ], [ 174.7853515, -36.8791791 ], [ 174.7858922, -36.8795224 ], [ 174.786063899999988, -36.8795224 ], [ 174.786178296890739, -36.879620605 ], [ 174.784776251462176, -36.879620605 ], [ 174.784484600000013, -36.8793471 ], [ 174.782828, -36.877459 ], [ 174.7828538, -36.8773011 ], [ 174.7838237, -36.8760653 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020178.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7848107, -36.8751315 ], [ 174.7853858, -36.8754267 ], [ 174.7852485, -36.875667 ], [ 174.785076800000013, -36.8755984 ], [ 174.784733499999987, -36.8759966 ], [ 174.784682, -36.8761358 ], [ 174.784514300000012, -36.8763168 ], [ 174.7839524, -36.8759966 ], [ 174.7848107, -36.8751315 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020196.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.778789499999988, -36.871034 ], [ 174.7802821, -36.8723107 ], [ 174.7806938, -36.8726628 ], [ 174.7812659, -36.8730167 ], [ 174.7803475, -36.873875 ], [ 174.7796978, -36.8743456 ], [ 174.7793102, -36.8736221 ], [ 174.7788923, -36.8722027 ], [ 174.778789499999988, -36.871034 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020202.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.790225, -36.8791916 ], [ 174.789555832298731, -36.879620605 ], [ 174.787152188492996, -36.879620605 ], [ 174.7872226, -36.8795018 ], [ 174.7875487, -36.8791105 ], [ 174.7880466, -36.8790075 ], [ 174.7885358, -36.8787466 ], [ 174.7890765, -36.8787466 ], [ 174.7895392, -36.8785818 ], [ 174.789893799999987, -36.878961 ], [ 174.7902056, -36.8790587 ], [ 174.790225, -36.8791916 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020206.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7792005, -36.8771296 ], [ 174.7790252, -36.8778294 ], [ 174.7780344, -36.8777135 ], [ 174.7783163, -36.876424 ], [ 174.7792005, -36.8771296 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020208.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7790252, -36.8778294 ], [ 174.7788415, -36.8786858 ], [ 174.7778328, -36.8785414 ], [ 174.7780344, -36.8777135 ], [ 174.7790252, -36.8778294 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37020643.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.810900299999986, -36.8767836 ], [ 174.8088066, -36.8765135 ], [ 174.8086382, -36.876165 ], [ 174.809101700000014, -36.8760208 ], [ 174.8109814, -36.8763023 ], [ 174.810900299999986, -36.8767836 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094387.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7649554, -36.8572826 ], [ 174.765217799999988, -36.8575124 ], [ 174.764737200000013, -36.857952 ], [ 174.764432699999986, -36.8577425 ], [ 174.7649554, -36.8572826 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094391.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7646823, -36.8571737 ], [ 174.7631624, -36.8567924 ], [ 174.7642342, -36.8557758 ], [ 174.764623, -36.8554991 ], [ 174.7646713, -36.8554816 ], [ 174.7649911, -36.8553655 ], [ 174.765067499999986, -36.8555046 ], [ 174.7653856, -36.8560839 ], [ 174.765474399999988, -36.8562457 ], [ 174.7653587, -36.8565565 ], [ 174.7646823, -36.8571737 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094402.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7629054, -36.8568489 ], [ 174.7624591, -36.8572472 ], [ 174.7622265, -36.8577878 ], [ 174.7617502, -36.8577991 ], [ 174.761687, -36.8576838 ], [ 174.762132900000012, -36.8566223 ], [ 174.7629054, -36.8568489 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094405.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.760957100000013, -36.8586484 ], [ 174.760816, -36.8589619 ], [ 174.7604078, -36.8589572 ], [ 174.760210300000011, -36.8593624 ], [ 174.7598499, -36.8593075 ], [ 174.759506499999986, -36.8591564 ], [ 174.759189, -36.8585589 ], [ 174.7595751, -36.8585784 ], [ 174.760957100000013, -36.8586484 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094406.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.760816, -36.8589619 ], [ 174.7605365, -36.8594036 ], [ 174.760210300000011, -36.8593624 ], [ 174.7604078, -36.8589572 ], [ 174.760816, -36.8589619 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094410.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.757583899999986, -36.8566978 ], [ 174.7567685, -36.8569382 ], [ 174.75682, -36.8568283 ], [ 174.75723, -36.8565536 ], [ 174.757583899999986, -36.8566978 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094444.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7524984, -36.8597402 ], [ 174.7516874, -36.8603982 ], [ 174.7508994, -36.8597709 ], [ 174.750346, -36.8591586 ], [ 174.7508595, -36.8588366 ], [ 174.7524374, -36.8596869 ], [ 174.7524984, -36.8597402 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094464.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7473498, -36.8608195 ], [ 174.7466365, -36.8612366 ], [ 174.7456105, -36.8602071 ], [ 174.746366, -36.8596973 ], [ 174.7473498, -36.8608195 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094485.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7462371, -36.8595753 ], [ 174.745486199999988, -36.8600836 ], [ 174.7451429, -36.8597402 ], [ 174.7449819, -36.8593539 ], [ 174.7458724, -36.8590363 ], [ 174.7459882, -36.8593212 ], [ 174.7462371, -36.8595753 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094486.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7439454, -36.8596989 ], [ 174.744863900000013, -36.8593711 ], [ 174.74502480000001, -36.8597574 ], [ 174.74538960000001, -36.8601694 ], [ 174.7446, -36.8606387 ], [ 174.7441451, -36.8602209 ], [ 174.7439454, -36.8596989 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094498.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7437481, -36.8596458 ], [ 174.74264, -36.8599892 ], [ 174.7424141, -36.8586454 ], [ 174.743387500000011, -36.8586001 ], [ 174.7434304, -36.8591014 ], [ 174.7437481, -36.8596458 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37094532.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741490700000014, -36.8600491 ], [ 174.741334099999989, -36.8587187 ], [ 174.7422975, -36.8586551 ], [ 174.7425465, -36.8599892 ], [ 174.741490700000014, -36.8600491 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37227004.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7492578, -36.8647539 ], [ 174.74971450000001, -36.8651164 ], [ 174.7490947, -36.8656162 ], [ 174.748638, -36.8652538 ], [ 174.7492578, -36.8647539 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37227005.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7499597, -36.864164 ], [ 174.7504621, -36.8645482 ], [ 174.7498415, -36.865037 ], [ 174.7493667, -36.8646511 ], [ 174.7499597, -36.864164 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37227006.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.748536800000011, -36.8653258 ], [ 174.7490089, -36.8657378 ], [ 174.7485969, -36.8661155 ], [ 174.7483909, -36.866246 ], [ 174.7472665, -36.866658 ], [ 174.7470434, -36.866143 ], [ 174.7480476, -36.8657447 ], [ 174.748536800000011, -36.8653258 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37227009.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.750695900000011, -36.8637919 ], [ 174.750182, -36.8641941 ], [ 174.7497184, -36.8638114 ], [ 174.7502072, -36.8634224 ], [ 174.750695900000011, -36.8637919 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37227012.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7493433, -36.8636709 ], [ 174.7498639, -36.8640874 ], [ 174.74923960000001, -36.8646072 ], [ 174.7487285, -36.8641552 ], [ 174.7493433, -36.8636709 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37323373.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.737568399999986, -36.8603325 ], [ 174.7370206, -36.8603728 ], [ 174.7368175, -36.8589067 ], [ 174.7372981, -36.8588792 ], [ 174.737568399999986, -36.8603325 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37323374.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7413052, -36.8600363 ], [ 174.7403873, -36.8600984 ], [ 174.7403491, -36.8597376 ], [ 174.741267099999988, -36.8596754 ], [ 174.7413052, -36.8600363 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37323377.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7394794, -36.8563429 ], [ 174.7399193, -36.8566777 ], [ 174.739852, -36.8567753 ], [ 174.7399646, -36.8586491 ], [ 174.739037599999989, -36.8587177 ], [ 174.7388231, -36.8563759 ], [ 174.7394794, -36.8563429 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37334838.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7357629, -36.8606003 ], [ 174.735838, -36.8613299 ], [ 174.7361105, -36.8620343 ], [ 174.735312, -36.8622881 ], [ 174.7349563, -36.8621594 ], [ 174.7347949, -36.8606645 ], [ 174.7357629, -36.8606003 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37334842.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7361799, -36.8621495 ], [ 174.736576899999989, -36.8630508 ], [ 174.7354118, -36.8623633 ], [ 174.7361799, -36.8621495 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37356200.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7619143, -36.8631012 ], [ 174.7625147, -36.8632114 ], [ 174.7625804, -36.8632929 ], [ 174.7627028, -36.8632256 ], [ 174.7632097, -36.8633352 ], [ 174.763824199999988, -36.8634655 ], [ 174.763701, -36.8638333 ], [ 174.7631087, -36.8636891 ], [ 174.7630744, -36.8637921 ], [ 174.7636579, -36.8639253 ], [ 174.763482399999987, -36.864507 ], [ 174.7620825, -36.8642366 ], [ 174.7616925, -36.864108 ], [ 174.761589500000014, -36.8640737 ], [ 174.7617698, -36.86349 ], [ 174.7618127, -36.8634076 ], [ 174.7619143, -36.8631012 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37356223.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7622797, -36.8619845 ], [ 174.7620565, -36.8626723 ], [ 174.7619143, -36.8631012 ], [ 174.7618127, -36.8634076 ], [ 174.7617792, -36.8633865 ], [ 174.7618994, -36.8629882 ], [ 174.7618307, -36.8629745 ], [ 174.761702, -36.8633384 ], [ 174.7612911, -36.8632537 ], [ 174.7617372, -36.8618403 ], [ 174.7622797, -36.8619845 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37356226.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7629296, -36.8619604 ], [ 174.763238199999989, -36.8623359 ], [ 174.7636272, -36.8627373 ], [ 174.7635862, -36.8629471 ], [ 174.7631409, -36.8632003 ], [ 174.763216, -36.8632742 ], [ 174.7632097, -36.8633352 ], [ 174.7627028, -36.8632256 ], [ 174.7625804, -36.8632929 ], [ 174.7625147, -36.8632114 ], [ 174.7620565, -36.8626723 ], [ 174.7622797, -36.8619845 ], [ 174.762498, -36.8620335 ], [ 174.762650400000012, -36.8620677 ], [ 174.7629296, -36.8619604 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37372853.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7366422, -36.8457121 ], [ 174.737380300000012, -36.8503139 ], [ 174.7365821, -36.8503963 ], [ 174.7358955, -36.8457807 ], [ 174.7366422, -36.8457121 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37372964.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.735432, -36.8505337 ], [ 174.734513600000014, -36.8506298 ], [ 174.7338355, -36.8462959 ], [ 174.7340158, -36.8462822 ], [ 174.7340158, -36.8462203 ], [ 174.7341874, -36.8461929 ], [ 174.7341874, -36.8460624 ], [ 174.7346938, -36.8460074 ], [ 174.735432, -36.8505337 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37372968.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7356122, -36.8505131 ], [ 174.7349342, -36.8459387 ], [ 174.7357067, -36.8458632 ], [ 174.73632, -36.8504307 ], [ 174.7356122, -36.8505131 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37372971.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7380201, -36.8486795 ], [ 174.7373546, -36.8487411 ], [ 174.7368739, -36.8456159 ], [ 174.7375348, -36.8455609 ], [ 174.7380201, -36.8486795 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37372978.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.738830900000011, -36.8486037 ], [ 174.738142399999987, -36.8486777 ], [ 174.7377065, -36.8457464 ], [ 174.738367399999987, -36.8456983 ], [ 174.738830900000011, -36.8486037 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37372984.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7396142, -36.8487303 ], [ 174.7390421, -36.8487792 ], [ 174.73845750000001, -36.8452146 ], [ 174.7390476, -36.8451716 ], [ 174.7396142, -36.8487303 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373017.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7396362, -36.8489151 ], [ 174.7399467, -36.850884 ], [ 174.739363, -36.8509183 ], [ 174.739067799999987, -36.8489592 ], [ 174.7396362, -36.8489151 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373023.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7399639, -36.8510213 ], [ 174.740041100000013, -36.8514678 ], [ 174.738685, -36.8516051 ], [ 174.7381667, -36.8488524 ], [ 174.7388139, -36.8487943 ], [ 174.73919140000001, -36.8509458 ], [ 174.7389167, -36.8509664 ], [ 174.7389339, -36.8511243 ], [ 174.7399639, -36.8510213 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373029.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7422424, -36.8486978 ], [ 174.74229840000001, -36.8489471 ], [ 174.7420324, -36.8489677 ], [ 174.7420568, -36.84925 ], [ 174.739875500000011, -36.8494367 ], [ 174.7398001, -36.8488986 ], [ 174.7422424, -36.8486978 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373031.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.733827, -36.8476559 ], [ 174.732342100000011, -36.8477932 ], [ 174.732447900000011, -36.8475698 ], [ 174.7322518, -36.8473785 ], [ 174.7331874, -36.846528 ], [ 174.7332519, -36.8469484 ], [ 174.7337154, -36.8468935 ], [ 174.733827, -36.8476559 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373050.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7412698, -36.8547011 ], [ 174.7413127, -36.8552334 ], [ 174.7392098, -36.8554051 ], [ 174.738984499999987, -36.8548728 ], [ 174.7391562, -36.8548385 ], [ 174.7412698, -36.8547011 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373054.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7434323, -36.8544856 ], [ 174.7435087, -36.8550322 ], [ 174.7415088, -36.8552039 ], [ 174.7414316, -36.8546957 ], [ 174.7434323, -36.8544856 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373064.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7452003, -36.8543569 ], [ 174.7452432, -36.8546317 ], [ 174.7455703, -36.8546144 ], [ 174.7456534, -36.8548736 ], [ 174.7436803, -36.8550116 ], [ 174.7436031, -36.8544897 ], [ 174.7452003, -36.8543569 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373068.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7392858, -36.8555404 ], [ 174.7433011, -36.8551587 ], [ 174.7433498, -36.855531 ], [ 174.7393802, -36.8558289 ], [ 174.7392858, -36.8555404 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373135.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7436031, -36.8561517 ], [ 174.7435602, -36.855616 ], [ 174.745688800000011, -36.8554374 ], [ 174.7457488, -36.8556709 ], [ 174.74591190000001, -36.8559525 ], [ 174.7454999, -36.8560555 ], [ 174.7436031, -36.8561517 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373145.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7447103, -36.8624353 ], [ 174.7439807, -36.8629092 ], [ 174.7429179, -36.8618522 ], [ 174.7437333, -36.8613715 ], [ 174.7447103, -36.8624353 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373204.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7401606, -36.8621527 ], [ 174.7409064, -36.8629613 ], [ 174.7401446, -36.863442 ], [ 174.7394009, -36.8626191 ], [ 174.7401606, -36.8621527 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373212.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7411583, -36.8646677 ], [ 174.7403859, -36.8651484 ], [ 174.739388100000014, -36.8640926 ], [ 174.7401069, -36.8636033 ], [ 174.7411583, -36.8646677 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373214.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741008099999988, -36.8630454 ], [ 174.7420381, -36.8641012 ], [ 174.7412764, -36.8645905 ], [ 174.7402569, -36.8635229 ], [ 174.741008099999988, -36.8630454 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373217.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.742799600000012, -36.861952 ], [ 174.7438381, -36.8630082 ], [ 174.743057099999987, -36.86348 ], [ 174.7420271, -36.8624156 ], [ 174.742799600000012, -36.861952 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373219.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.745460400000013, -36.8602696 ], [ 174.7464506, -36.8613511 ], [ 174.745733, -36.8618261 ], [ 174.7447201, -36.8607331 ], [ 174.745460400000013, -36.8602696 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373222.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7480517, -36.8628515 ], [ 174.747372500000012, -36.8633955 ], [ 174.746879, -36.8629834 ], [ 174.7458188, -36.8619292 ], [ 174.746590200000014, -36.8614988 ], [ 174.747344700000014, -36.8622645 ], [ 174.7480517, -36.8628515 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373225.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7472923, -36.8634512 ], [ 174.746588, -36.8639982 ], [ 174.7458048, -36.8633973 ], [ 174.744968, -36.8624703 ], [ 174.7457083, -36.8619896 ], [ 174.7468089, -36.8630929 ], [ 174.7472923, -36.8634512 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373237.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7451491, -36.8646218 ], [ 174.7442256, -36.8649088 ], [ 174.7440324, -36.8645164 ], [ 174.7431537, -36.8635915 ], [ 174.7439047, -36.863128 ], [ 174.744791099999986, -36.8639994 ], [ 174.7451491, -36.8646218 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373253.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7345858, -36.8605384 ], [ 174.7328705, -36.8606523 ], [ 174.732795399999986, -36.8600685 ], [ 174.7345085, -36.8599684 ], [ 174.7345858, -36.8605384 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373265.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7345085, -36.8598242 ], [ 174.733238199999988, -36.859886 ], [ 174.7331867, -36.8594808 ], [ 174.7335215, -36.8593297 ], [ 174.734448500000013, -36.8592336 ], [ 174.7345085, -36.8598242 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373278.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.736636299999986, -36.8589526 ], [ 174.735724299999987, -36.8590041 ], [ 174.735600799999986, -36.8583413 ], [ 174.7354506, -36.8583413 ], [ 174.735547200000013, -36.8590109 ], [ 174.7335129, -36.8591443 ], [ 174.7330782, -36.8593357 ], [ 174.7327778, -36.8591503 ], [ 174.736308900000012, -36.8573884 ], [ 174.7364966, -36.8575138 ], [ 174.736636299999986, -36.8589526 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373289.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7363561, -36.8565516 ], [ 174.7364481, -36.8571534 ], [ 174.7325753, -36.8590967 ], [ 174.732276899999988, -36.8587323 ], [ 174.7316246, -36.8590619 ], [ 174.731390800000014, -36.858918 ], [ 174.7315419, -36.8588001 ], [ 174.7314092, -36.8586758 ], [ 174.7356435, -36.8565869 ], [ 174.7363561, -36.8565516 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373290.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7374869, -36.8564728 ], [ 174.7375739, -36.8575709 ], [ 174.73670580000001, -36.8576129 ], [ 174.7365763, -36.8565549 ], [ 174.7374869, -36.8564728 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373475.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7432452, -36.8571155 ], [ 174.7434169, -36.8584633 ], [ 174.7424191, -36.8585234 ], [ 174.7422582, -36.8571842 ], [ 174.7432452, -36.8571155 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373482.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.743608599999988, -36.8584182 ], [ 174.7434169, -36.8570984 ], [ 174.744404, -36.857064 ], [ 174.7445112, -36.8583688 ], [ 174.743608599999988, -36.8584182 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373483.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.745668599999988, -36.8583066 ], [ 174.7446386, -36.8583925 ], [ 174.7445635, -36.857019 ], [ 174.745486199999988, -36.8569245 ], [ 174.745668599999988, -36.8583066 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373492.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.743533500000012, -36.8569417 ], [ 174.741098099999988, -36.8571134 ], [ 174.7407762, -36.8570447 ], [ 174.7399823, -36.8565382 ], [ 174.7423105, -36.8564009 ], [ 174.742353400000013, -36.8567443 ], [ 174.7435121, -36.8566584 ], [ 174.743533500000012, -36.8569417 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373494.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.74115, -36.8586081 ], [ 174.74015030000001, -36.8586547 ], [ 174.7400865, -36.8577823 ], [ 174.7408, -36.8577491 ], [ 174.7407872, -36.8576297 ], [ 174.7410735, -36.8576163 ], [ 174.74115, -36.8586081 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373501.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7421675, -36.8578243 ], [ 174.742241299999989, -36.8585144 ], [ 174.74133040000001, -36.8585768 ], [ 174.7412567, -36.8578866 ], [ 174.7421675, -36.8578243 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37373502.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7386368, -36.8564066 ], [ 174.738812700000011, -36.8581046 ], [ 174.7382648, -36.8581046 ], [ 174.7382207, -36.8575306 ], [ 174.7378099, -36.8575562 ], [ 174.7376605, -36.8564323 ], [ 174.7386368, -36.8564066 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37438054.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7382177, -36.8646413 ], [ 174.7376569, -36.8649985 ], [ 174.737594699999988, -36.8649886 ], [ 174.737554499999987, -36.8648959 ], [ 174.7374118, -36.864029 ], [ 174.7376136, -36.8640295 ], [ 174.7382177, -36.8646413 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37438087.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7302314, -36.8649037 ], [ 174.731417099999987, -36.8643211 ], [ 174.733025, -36.863558 ], [ 174.7332096, -36.8638837 ], [ 174.7336611, -36.8637449 ], [ 174.733789699999988, -36.8639841 ], [ 174.7336114, -36.8641284 ], [ 174.7330442, -36.8646677 ], [ 174.7305819, -36.8663365 ], [ 174.7302314, -36.8649037 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37440196.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.751497300000011, -36.8605293 ], [ 174.7508887, -36.8610451 ], [ 174.7500301, -36.8603372 ], [ 174.749429600000013, -36.859708 ], [ 174.7501437, -36.8592686 ], [ 174.7507838, -36.8599218 ], [ 174.751497300000011, -36.8605293 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37440257.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7507094, -36.8611664 ], [ 174.750092099999989, -36.8616772 ], [ 174.7485686, -36.8602928 ], [ 174.7485743, -36.8602548 ], [ 174.74926, -36.8598224 ], [ 174.749900200000013, -36.8605128 ], [ 174.7507094, -36.8611664 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37440326.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.749947600000013, -36.8618014 ], [ 174.7492844, -36.8623125 ], [ 174.7485117, -36.8617146 ], [ 174.747683099999989, -36.8608299 ], [ 174.7483575, -36.8603958 ], [ 174.7483832, -36.8603973 ], [ 174.749947600000013, -36.8618014 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37440429.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7513006, -36.8623811 ], [ 174.7502101, -36.8632799 ], [ 174.749745600000011, -36.8628975 ], [ 174.7508324, -36.8620109 ], [ 174.7513006, -36.8623811 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37440709.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7500724, -36.8633701 ], [ 174.749629, -36.8637197 ], [ 174.749166, -36.863359 ], [ 174.749609099999986, -36.8629907 ], [ 174.7500724, -36.8633701 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37440769.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7504722, -36.861719 ], [ 174.7507354, -36.8619336 ], [ 174.7496686, -36.8628297 ], [ 174.7493735, -36.8625986 ], [ 174.7504722, -36.861719 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446427.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7691647, -36.857863 ], [ 174.769341700000012, -36.8575282 ], [ 174.769889799999987, -36.8564663 ], [ 174.7700529, -36.8562671 ], [ 174.77034470000001, -36.8560473 ], [ 174.7704391, -36.8560061 ], [ 174.7707777, -36.8558768 ], [ 174.7708447, -36.855884 ], [ 174.770877500000012, -36.8559207 ], [ 174.7709305, -36.8559801 ], [ 174.77089620000001, -36.8561106 ], [ 174.7706919, -36.8563713 ], [ 174.7705374, -36.8565842 ], [ 174.7703228, -36.8568726 ], [ 174.7701941, -36.8571061 ], [ 174.770173, -36.8572286 ], [ 174.7701988, -36.8574277 ], [ 174.7698184, -36.8580362 ], [ 174.769604500000014, -36.8580132 ], [ 174.7691647, -36.857863 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446685.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.767336699999987, -36.8590094 ], [ 174.768048099999987, -36.8582033 ], [ 174.7685253, -36.8585292 ], [ 174.7678249, -36.8592455 ], [ 174.767336699999987, -36.8590094 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446695.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7672488, -36.859112 ], [ 174.7676875, -36.8593756 ], [ 174.7669028, -36.8603116 ], [ 174.7663969, -36.8600091 ], [ 174.7672488, -36.859112 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446733.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.768522600000011, -36.8584203 ], [ 174.768083100000013, -36.8581522 ], [ 174.7690625, -36.8569165 ], [ 174.7692829, -36.8569918 ], [ 174.768647499999986, -36.8583697 ], [ 174.768522600000011, -36.8584203 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446743.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7650798, -36.8611334 ], [ 174.765686499999987, -36.8614969 ], [ 174.764892800000013, -36.862351 ], [ 174.764604, -36.8621713 ], [ 174.764949, -36.8618381 ], [ 174.764952, -36.8617586 ], [ 174.7646623, -36.8615847 ], [ 174.7650798, -36.8611334 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446758.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7657667, -36.8607392 ], [ 174.7660684, -36.8604183 ], [ 174.7663124, -36.8601539 ], [ 174.7667094, -36.8603943 ], [ 174.7661947, -36.8609851 ], [ 174.7657667, -36.8607392 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446818.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7534363, -36.8637185 ], [ 174.75408010000001, -36.8633137 ], [ 174.7543033, -36.8635609 ], [ 174.7536766, -36.8639589 ], [ 174.7534363, -36.8637185 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37446830.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7537453, -36.8640687 ], [ 174.754552100000012, -36.86354 ], [ 174.7547237, -36.8637117 ], [ 174.75447, -36.863897 ], [ 174.7546733, -36.864103 ], [ 174.7541229, -36.864419 ], [ 174.7537453, -36.8640687 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37447048.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7433629, -36.8556245 ], [ 174.7434058, -36.8561825 ], [ 174.7422472, -36.856262 ], [ 174.7421775, -36.8557267 ], [ 174.7433629, -36.8556245 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37447049.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7434584, -36.856315 ], [ 174.7435121, -36.8566584 ], [ 174.742353400000013, -36.8567443 ], [ 174.7423105, -36.8564009 ], [ 174.7434584, -36.856315 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37554370.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.746609299999989, -36.8708411 ], [ 174.745004200000011, -36.8711226 ], [ 174.7448171, -36.8705158 ], [ 174.7454215, -36.8703699 ], [ 174.7466574, -36.8701914 ], [ 174.7468427, -36.8706119 ], [ 174.746609299999989, -36.8708411 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37554372.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7450643, -36.871871 ], [ 174.7432306, -36.8724015 ], [ 174.7431019, -36.8721269 ], [ 174.7449973, -36.8715664 ], [ 174.7450643, -36.871871 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37554376.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.744593900000012, -36.8723475 ], [ 174.7445663, -36.8724111 ], [ 174.74427, -36.872527 ], [ 174.7431748, -36.8729489 ], [ 174.742971, -36.8726196 ], [ 174.7443605, -36.8722006 ], [ 174.744789700000013, -36.8720633 ], [ 174.744789700000013, -36.8720907 ], [ 174.744593900000012, -36.8723475 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37554384.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7452236, -36.8718166 ], [ 174.7450557, -36.8712462 ], [ 174.7467294, -36.8709303 ], [ 174.746886100000012, -36.8709458 ], [ 174.7469554, -36.8713664 ], [ 174.746904699999988, -36.8714435 ], [ 174.7468402, -36.8714843 ], [ 174.7452236, -36.8718166 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37554389.0, "name": null, "type": "retail" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7451994, -36.8722104 ], [ 174.745172599999989, -36.8721428 ], [ 174.7449736, -36.8721826 ], [ 174.744967300000013, -36.8721502 ], [ 174.74509, -36.8719886 ], [ 174.7453343, -36.8719434 ], [ 174.7455635, -36.8719016 ], [ 174.7468011, -36.8716718 ], [ 174.746825300000012, -36.8719747 ], [ 174.74602, -36.872037 ], [ 174.7456589, -36.8720977 ], [ 174.745214, -36.8722434 ], [ 174.7451994, -36.8722104 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37556629.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7317486, -36.8592843 ], [ 174.7323481, -36.8596045 ], [ 174.7324596, -36.8597143 ], [ 174.7306829, -36.8610809 ], [ 174.7304169, -36.861644 ], [ 174.729563, -36.8613789 ], [ 174.729893299999986, -36.8608337 ], [ 174.7317486, -36.8592843 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37556631.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.731769500000013, -36.8625381 ], [ 174.73078, -36.8630021 ], [ 174.7304551, -36.862676 ], [ 174.7275072, -36.8616028 ], [ 174.7281252, -36.8610741 ], [ 174.731572300000011, -36.8622145 ], [ 174.731769500000013, -36.8625381 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37556636.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7268291, -36.862372 ], [ 174.726992200000012, -36.8620423 ], [ 174.7273451, -36.8617167 ], [ 174.73035680000001, -36.8627909 ], [ 174.730597100000011, -36.8630724 ], [ 174.729961, -36.8633738 ], [ 174.729773099999989, -36.8633402 ], [ 174.7268291, -36.862372 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37556645.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.725433900000013, -36.8625981 ], [ 174.7257572, -36.8621716 ], [ 174.7280103, -36.8629356 ], [ 174.7277206, -36.8633658 ], [ 174.7267039, -36.8630245 ], [ 174.725433900000013, -36.8625981 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37556719.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7384328, -36.8614743 ], [ 174.73927, -36.8612251 ], [ 174.7397421, -36.8618007 ], [ 174.7389911, -36.8622557 ], [ 174.7386156, -36.8618866 ], [ 174.7384328, -36.8614743 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37556761.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.741829, -36.8624034 ], [ 174.7410566, -36.8628669 ], [ 174.7401918, -36.8619718 ], [ 174.740948300000014, -36.8614998 ], [ 174.741829, -36.8624034 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37556813.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7419308, -36.8623158 ], [ 174.7415921, -36.8619507 ], [ 174.7424178, -36.8615274 ], [ 174.742703, -36.8618061 ], [ 174.7419308, -36.8623158 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37765122.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7242244, -36.8601154 ], [ 174.7256017, -36.8591235 ], [ 174.7264772, -36.8596935 ], [ 174.726623100000012, -36.8595562 ], [ 174.7271638, -36.8599957 ], [ 174.7251453, -36.8616428 ], [ 174.7249625, -36.8615094 ], [ 174.7242244, -36.8601154 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37765127.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.727215300000012, -36.8599545 ], [ 174.72683760000001, -36.859666 ], [ 174.7271896, -36.8593707 ], [ 174.7275546, -36.8596415 ], [ 174.727215300000012, -36.8599545 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37765139.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7279494, -36.859305 ], [ 174.7274774, -36.858893 ], [ 174.7289107, -36.8577186 ], [ 174.7293914, -36.8581169 ], [ 174.7279494, -36.859305 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37765181.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.728275599999989, -36.8572379 ], [ 174.7287734, -36.8576499 ], [ 174.727364599999987, -36.8587977 ], [ 174.7270265, -36.8585123 ], [ 174.725910699999986, -36.8592265 ], [ 174.7256875, -36.8590617 ], [ 174.728275599999989, -36.8572379 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37789735.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7295452, -36.8639784 ], [ 174.7280189, -36.863466 ], [ 174.7282356, -36.86303 ], [ 174.729662499999989, -36.8634935 ], [ 174.7297471, -36.863634 ], [ 174.7295452, -36.8639784 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37789834.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7241077, -36.8627139 ], [ 174.724944599999986, -36.8631887 ], [ 174.7251077, -36.8632848 ], [ 174.7250377, -36.8633665 ], [ 174.7248073, -36.8636351 ], [ 174.7237773, -36.8630514 ], [ 174.7241077, -36.8627139 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37789876.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.723644256600011, -36.861052830642798 ], [ 174.7247075, -36.8616222 ], [ 174.7247075, -36.8617115 ], [ 174.723983, -36.8626353 ], [ 174.723644256600011, -36.862421906955007 ], [ 174.723644256600011, -36.862309305810591 ], [ 174.7240123, -36.8618488 ], [ 174.723644256600011, -36.861615499142488 ], [ 174.723644256600011, -36.861052830642798 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932106.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7323409, -36.8673869 ], [ 174.73234020000001, -36.8667996 ], [ 174.732361700000013, -36.8666795 ], [ 174.7325428, -36.8665515 ], [ 174.7328432, -36.8664554 ], [ 174.7333496, -36.865961 ], [ 174.73340970000001, -36.8654254 ], [ 174.7343195, -36.8649035 ], [ 174.736525300000011, -36.8651987 ], [ 174.736525300000011, -36.8657138 ], [ 174.7346557, -36.8655169 ], [ 174.734637099999986, -36.8656451 ], [ 174.735229299999986, -36.8657206 ], [ 174.735117699999989, -36.8665584 ], [ 174.73533230000001, -36.866579 ], [ 174.7354181, -36.8657344 ], [ 174.736568299999988, -36.8658786 ], [ 174.737212, -36.8663592 ], [ 174.736984400000011, -36.8666318 ], [ 174.7366118, -36.8661596 ], [ 174.736594700000012, -36.8663175 ], [ 174.7366307, -36.8671223 ], [ 174.73657750000001, -36.8672857 ], [ 174.7363207, -36.8672744 ], [ 174.7363708, -36.8665172 ], [ 174.7362678, -36.8665172 ], [ 174.7361477, -36.8672519 ], [ 174.7360447, -36.8673137 ], [ 174.735598399999986, -36.8673549 ], [ 174.734199499999988, -36.8673798 ], [ 174.7342165, -36.8662562 ], [ 174.7340706, -36.8662631 ], [ 174.7340683, -36.8674041 ], [ 174.7323409, -36.8673869 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932122.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7322341, -36.8673868 ], [ 174.7303446, -36.8673973 ], [ 174.7303541, -36.8672039 ], [ 174.730248100000011, -36.8671552 ], [ 174.7302769, -36.8670116 ], [ 174.7301225, -36.8668476 ], [ 174.7306482, -36.8665214 ], [ 174.7321483, -36.8667259 ], [ 174.7321995, -36.8668605 ], [ 174.732216599999987, -36.8672451 ], [ 174.7322341, -36.8673868 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932124.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7333668, -36.8675129 ], [ 174.7333839, -36.8678287 ], [ 174.7323711, -36.8678219 ], [ 174.7323969, -36.8674991 ], [ 174.7333668, -36.8675129 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932126.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.733564199999989, -36.8675266 ], [ 174.734508299999987, -36.8675197 ], [ 174.7345427, -36.8678425 ], [ 174.7335728, -36.8678631 ], [ 174.733564199999989, -36.8675266 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932131.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7347143, -36.8675197 ], [ 174.7353752, -36.8675129 ], [ 174.735873, -36.8674923 ], [ 174.7363058, -36.8673569 ], [ 174.735743899999989, -36.8679632 ], [ 174.7356413, -36.8679661 ], [ 174.7355555, -36.8678837 ], [ 174.7347315, -36.8678837 ], [ 174.7347143, -36.8675197 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932189.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7322081, -36.8674991 ], [ 174.7322081, -36.8678425 ], [ 174.7314527, -36.8678425 ], [ 174.7314442, -36.8674991 ], [ 174.7322081, -36.8674991 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932190.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.731255299999987, -36.8674991 ], [ 174.731263899999988, -36.8678287 ], [ 174.7301052, -36.8678562 ], [ 174.7300966, -36.8675541 ], [ 174.731255299999987, -36.8674991 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932201.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7309548, -36.8664283 ], [ 174.7309239, -36.8663498 ], [ 174.7331897, -36.8648125 ], [ 174.7338354, -36.8642568 ], [ 174.7341, -36.8640691 ], [ 174.7343984, -36.8640004 ], [ 174.7345808, -36.8639833 ], [ 174.7368329, -36.8643075 ], [ 174.7367743, -36.8646013 ], [ 174.7369401, -36.8646709 ], [ 174.7369215, -36.8650358 ], [ 174.7343553, -36.8647014 ], [ 174.734162199999986, -36.8647443 ], [ 174.733135, -36.8653773 ], [ 174.7330749, -36.8657962 ], [ 174.73302, -36.8659641 ], [ 174.732232900000014, -36.8666333 ], [ 174.7309912, -36.866463 ], [ 174.7309548, -36.8664283 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932221.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.731837, -36.8626712 ], [ 174.732327199999986, -36.8637249 ], [ 174.7313433, -36.8641709 ], [ 174.7301687, -36.8647415 ], [ 174.729904800000014, -36.863557 ], [ 174.7302855, -36.8634202 ], [ 174.7305601, -36.8639833 ], [ 174.7315214, -36.8635713 ], [ 174.731221, -36.8629738 ], [ 174.731837, -36.8626712 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932246.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7418898, -36.8666957 ], [ 174.7421301, -36.8671833 ], [ 174.7419155, -36.8672657 ], [ 174.7416666, -36.8667781 ], [ 174.7418898, -36.8666957 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932272.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7412861, -36.8665965 ], [ 174.742861299999987, -36.8660632 ], [ 174.74302990000001, -36.8664051 ], [ 174.7426826, -36.8665253 ], [ 174.742928299999988, -36.8670459 ], [ 174.7428227, -36.8674587 ], [ 174.7423384, -36.8678777 ], [ 174.741626, -36.8678639 ], [ 174.740987, -36.8678578 ], [ 174.740859699999987, -36.8676209 ], [ 174.741336, -36.8674761 ], [ 174.7408938, -36.866648 ], [ 174.7411825, -36.8665393 ], [ 174.7413594, -36.8668768 ], [ 174.741608, -36.8668194 ], [ 174.7418563, -36.8672926 ], [ 174.7419155, -36.8672657 ], [ 174.7421301, -36.8671833 ], [ 174.7418898, -36.8666957 ], [ 174.7418619, -36.8666396 ], [ 174.7414115, -36.8667944 ], [ 174.7412861, -36.8665965 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932311.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.74302990000001, -36.8664051 ], [ 174.743889599999989, -36.8680141 ], [ 174.7439068, -36.8681103 ], [ 174.7437718, -36.8682416 ], [ 174.743572, -36.8682132 ], [ 174.742928299999988, -36.8670459 ], [ 174.7426826, -36.8665253 ], [ 174.74302990000001, -36.8664051 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932313.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7445419, -36.8674923 ], [ 174.7448832, -36.8681919 ], [ 174.7445528, -36.8683014 ], [ 174.744426, -36.8680714 ], [ 174.7441426, -36.8681793 ], [ 174.7439154, -36.8676914 ], [ 174.7445419, -36.8674923 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932317.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7446964, -36.8674442 ], [ 174.7453917, -36.8672245 ], [ 174.7457006, -36.8678562 ], [ 174.7450399, -36.8681376 ], [ 174.7446964, -36.8674442 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932319.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7446387, -36.8658644 ], [ 174.745305800000011, -36.8671146 ], [ 174.7446313, -36.8673185 ], [ 174.743977699999988, -36.8660912 ], [ 174.7446387, -36.8658644 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932321.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.743760900000012, -36.8660434 ], [ 174.7444899, -36.8673889 ], [ 174.7438569, -36.8676035 ], [ 174.7431429, -36.8662562 ], [ 174.743760900000012, -36.8660434 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932329.0, "name": null, "type": "commercial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.7446387, -36.8658644 ], [ 174.743977699999988, -36.8660912 ], [ 174.743783, -36.8657443 ], [ 174.7444645, -36.8655211 ], [ 174.7446387, -36.8658644 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37932349.0, "name": null, "type": "commercial" }, "geomet
View raw

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

View raw

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

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