Skip to content

Instantly share code, notes, and snippets.

@tomstove
Last active December 16, 2015 15:39
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/5457494 to your computer and use it in GitHub Desktop.
Save tomstove/5457494 to your computer and use it in GitHub Desktop.
Tørshavn, Faroe Islands
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;
}
.natural {
fill: green;
fill-opacity: 0.5;
}
.landuse {
fill: #aaa;
fill-opacity: 0.1;
}
.waterways {
fill: none;
stroke: steelblue;
stroke-width: 0.3px;
}
</style>
</head>
<body>
<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>
<script>
// -6.8321228027 61.9868792191 -6.7308425903 62.0522763224
// -6.7814826964999995, 62.01957777075
var width = 960,
height = 500;
var projection = d3.geo.mercator()
.translate([width/2, height/2])
.center([-6.7814826964999995, 62.01957777075])
.scale(700000);
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 natural = svg.append("g");
var landuse = svg.append("g");
var waterways = 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('natural.json', function(err, data) {
natural.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "natural")
.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);
});
d3.json('waterways.json', function(err, data) {
waterways.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "waterways")
.attr("d", path);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "osm_id": 28248315.0, "name": null, "type": "village_green" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7802923, 62.0164377 ], [ -6.7802719, 62.01643 ], [ -6.7802441, 62.0164311 ], [ -6.7802088, 62.0164153 ], [ -6.7801887, 62.0164025 ], [ -6.7801752, 62.0163794 ], [ -6.7801679, 62.0163618 ], [ -6.7801741, 62.0163467 ], [ -6.780201, 62.0163407 ], [ -6.780243, 62.0163405 ], [ -6.7802895, 62.0163483 ], [ -6.7803186, 62.0163609 ], [ -6.7803601, 62.0163938 ], [ -6.7803735, 62.0164101 ], [ -6.7803747, 62.0164261 ], [ -6.7803461, 62.0164356 ], [ -6.7802923, 62.0164377 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33130282.0, "name": "Tinghús vøllur", "type": "village_green" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7717738, 62.0101798 ], [ -6.7721681, 62.0104048 ], [ -6.7717104, 62.0104807 ], [ -6.7715385, 62.0101893 ], [ -6.7717738, 62.0101798 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37971681.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7949511, 62.0319781 ], [ -6.7942217, 62.0337417 ], [ -6.7918223, 62.0331867 ], [ -6.7910505, 62.0330427 ], [ -6.7903699, 62.0326885 ], [ -6.7897392, 62.0322098 ], [ -6.7874817, 62.0312757 ], [ -6.7868344, 62.0309526 ], [ -6.7860294, 62.0305789 ], [ -6.7850417, 62.029746 ], [ -6.7844359, 62.029092 ], [ -6.7841623, 62.0286381 ], [ -6.7829057, 62.0286838 ], [ -6.7820503, 62.0285959 ], [ -6.7812549, 62.0284461 ], [ -6.7801161, 62.0283456 ], [ -6.7788636, 62.0283691 ], [ -6.7784742, 62.0283446 ], [ -6.7776039, 62.028067 ], [ -6.7771253, 62.0279048 ], [ -6.7768082, 62.0269212 ], [ -6.7761147, 62.0262174 ], [ -6.775003, 62.0263482 ], [ -6.7731917, 62.0264678 ], [ -6.7722781, 62.0264977 ], [ -6.7713683, 62.0264729 ], [ -6.7701845, 62.026318 ], [ -6.7700883, 62.0260834 ], [ -6.7692639, 62.0251398 ], [ -6.7689886, 62.0247069 ], [ -6.7685654, 62.0238624 ], [ -6.768174, 62.0239148 ], [ -6.7680899, 62.0245206 ], [ -6.7681972, 62.0250632 ], [ -6.7681479, 62.0252999 ], [ -6.7679677, 62.025517 ], [ -6.7678684, 62.0258454 ], [ -6.7677616, 62.0264782 ], [ -6.7676536, 62.0267319 ], [ -6.766902, 62.0275075 ], [ -6.7663896, 62.0275056 ], [ -6.765513, 62.0275439 ], [ -6.7652922, 62.0273963 ], [ -6.764923, 62.0271382 ], [ -6.7646967, 62.0269358 ], [ -6.7646219, 62.0268866 ], [ -6.7642955, 62.0269473 ], [ -6.7640655, 62.0270887 ], [ -6.7637965, 62.027129 ], [ -6.7634383, 62.0272135 ], [ -6.7631792, 62.0272675 ], [ -6.7629581, 62.0273673 ], [ -6.7624671, 62.0267231 ], [ -6.7611081, 62.0269067 ], [ -6.7584349, 62.0266062 ], [ -6.7584288, 62.0259106 ], [ -6.7571337, 62.0249354 ], [ -6.7563473, 62.024188 ], [ -6.7560969, 62.0237476 ], [ -6.7557465, 62.0233357 ], [ -6.7561512, 62.022804 ], [ -6.7571669, 62.0227245 ], [ -6.7571839, 62.0226209 ], [ -6.7554231, 62.0226541 ], [ -6.7551413, 62.0225006 ], [ -6.7543621, 62.0219517 ], [ -6.7538607, 62.0213973 ], [ -6.7529907, 62.0210639 ], [ -6.752596, 62.0206559 ], [ -6.7528815, 62.0203382 ], [ -6.7540443, 62.0201438 ], [ -6.7548017, 62.0193 ], [ -6.7538641, 62.0185813 ], [ -6.7543226, 62.0179656 ], [ -6.7539239, 62.0174879 ], [ -6.7537041, 62.0168555 ], [ -6.7529811, 62.0160704 ], [ -6.7530231, 62.0154436 ], [ -6.7536185, 62.0150454 ], [ -6.7544119, 62.0146321 ], [ -6.7552186, 62.0139924 ], [ -6.7561696, 62.0133166 ], [ -6.7572743, 62.012793 ], [ -6.7563119, 62.0114563 ], [ -6.7568513, 62.0104031 ], [ -6.7590207, 62.0105753 ], [ -6.7589234, 62.011336 ], [ -6.7588105, 62.0121759 ], [ -6.7584461, 62.0129943 ], [ -6.7571419, 62.0137692 ], [ -6.7562543, 62.0144784 ], [ -6.7555344, 62.015081 ], [ -6.7551784, 62.0159715 ], [ -6.755179, 62.0166529 ], [ -6.7555771, 62.0174256 ], [ -6.7560627, 62.0182937 ], [ -6.7571839, 62.01998 ], [ -6.7581102, 62.0213207 ], [ -6.7599539, 62.0212586 ], [ -6.7601186, 62.0215622 ], [ -6.7610732, 62.0224518 ], [ -6.7616241, 62.0228155 ], [ -6.7636553, 62.0227367 ], [ -6.7632106, 62.0231881 ], [ -6.7648125, 62.0235455 ], [ -6.7660822, 62.0226897 ], [ -6.7671476, 62.0225585 ], [ -6.7686833, 62.0223075 ], [ -6.7683948, 62.021805 ], [ -6.769662, 62.0216412 ], [ -6.7701141, 62.022132 ], [ -6.7723127, 62.0219852 ], [ -6.7747114, 62.0217301 ], [ -6.7758576, 62.0214829 ], [ -6.7766283, 62.0213406 ], [ -6.7777447, 62.0222583 ], [ -6.7778516, 62.0223647 ], [ -6.7779999, 62.0224443 ], [ -6.7781621, 62.022498 ], [ -6.7782087, 62.0225933 ], [ -6.779007, 62.0225107 ], [ -6.7790522, 62.0225815 ], [ -6.7803821, 62.0232757 ], [ -6.7819013, 62.0227759 ], [ -6.7830292, 62.0235441 ], [ -6.7843618, 62.023871 ], [ -6.7842054, 62.0241724 ], [ -6.7833815, 62.0244447 ], [ -6.7828942, 62.0248363 ], [ -6.7831001, 62.0253346 ], [ -6.7835709, 62.0257762 ], [ -6.7863265, 62.0274964 ], [ -6.7868235, 62.02766 ], [ -6.7873102, 62.0272563 ], [ -6.7876866, 62.0270794 ], [ -6.7880867, 62.0269467 ], [ -6.7884096, 62.026828 ], [ -6.7887067, 62.0267069 ], [ -6.7891663, 62.0266578 ], [ -6.7890617, 62.0273383 ], [ -6.7882768, 62.0277219 ], [ -6.7879646, 62.0280236 ], [ -6.7884623, 62.0286341 ], [ -6.7889854, 62.0291622 ], [ -6.7894701, 62.0295569 ], [ -6.790769, 62.0303367 ], [ -6.7920172, 62.0309773 ], [ -6.7925386, 62.031112 ], [ -6.7933284, 62.0313025 ], [ -6.7949511, 62.0319781 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37994257.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7942174, 62.0337597 ], [ -6.7929095, 62.0356117 ], [ -6.7905766, 62.036223 ], [ -6.7865284, 62.0369666 ], [ -6.7828157, 62.0370023 ], [ -6.7763012, 62.0377529 ], [ -6.7733791, 62.0409556 ], [ -6.7703452, 62.0408771 ], [ -6.7704569, 62.0393063 ], [ -6.7700288, 62.0389049 ], [ -6.7683723, 62.038739 ], [ -6.7677208, 62.0378925 ], [ -6.7669949, 62.0370722 ], [ -6.7701591, 62.0362867 ], [ -6.7698613, 62.0318789 ], [ -6.7671954, 62.0310774 ], [ -6.7681865, 62.0301013 ], [ -6.7705727, 62.0288927 ], [ -6.7720517, 62.0284028 ], [ -6.7737747, 62.0281704 ], [ -6.7764811, 62.0279666 ], [ -6.7769919, 62.028013 ], [ -6.7786158, 62.0285208 ], [ -6.780049, 62.0284457 ], [ -6.7812688, 62.0285673 ], [ -6.7822599, 62.0287604 ], [ -6.784021, 62.0287926 ], [ -6.7847685, 62.0297974 ], [ -6.7854429, 62.0303516 ], [ -6.7856803, 62.0305941 ], [ -6.7863198, 62.0308554 ], [ -6.7871941, 62.0313897 ], [ -6.7881185, 62.0317247 ], [ -6.7894951, 62.0323621 ], [ -6.7901813, 62.0329413 ], [ -6.79118, 62.033238 ], [ -6.7942174, 62.0337597 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37994258.0, "name": null, "type": "recreation_groun" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7844011, 62.0194931 ], [ -6.7796868, 62.0210951 ], [ -6.7790317, 62.0209339 ], [ -6.778051, 62.0208473 ], [ -6.7775152, 62.0208843 ], [ -6.7767765, 62.0209841 ], [ -6.7763658, 62.020968 ], [ -6.776111, 62.0210334 ], [ -6.7756117, 62.0205747 ], [ -6.7752679, 62.0200505 ], [ -6.7751891, 62.019308 ], [ -6.7756856, 62.0179628 ], [ -6.7766421, 62.0180728 ], [ -6.7769257, 62.0180683 ], [ -6.7772565, 62.0180631 ], [ -6.7780389, 62.0179908 ], [ -6.7787925, 62.0178813 ], [ -6.7794298, 62.017921 ], [ -6.7801202, 62.0180682 ], [ -6.7814263, 62.0184722 ], [ -6.7823746, 62.0187814 ], [ -6.7832459, 62.0190859 ], [ -6.7844011, 62.0194931 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37994260.0, "name": "Gamli kirkjugarður", "type": "cemetery" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7776053, 62.0100066 ], [ -6.7768641, 62.0098116 ], [ -6.7762121, 62.0094247 ], [ -6.7769541, 62.0091444 ], [ -6.7771614, 62.0092617 ], [ -6.7773538, 62.0091992 ], [ -6.7781433, 62.0098434 ], [ -6.7776053, 62.0100066 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314247.0, "name": null, "type": "farmyard" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7968229, 62.0378075 ], [ -6.7951666, 62.0373341 ], [ -6.7962374, 62.0365103 ], [ -6.7978937, 62.0369837 ], [ -6.7968229, 62.0378075 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41740982.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.8077298, 62.0002269 ], [ -6.8046851, 62.0006704 ], [ -6.7996153, 62.0017745 ], [ -6.7980038, 62.0008344 ], [ -6.7973996, 62.0006144 ], [ -6.7967838, 62.0005071 ], [ -6.7963972, 62.0005022 ], [ -6.795643, 61.9991002 ], [ -6.7982177, 61.9987951 ], [ -6.8001692, 61.9988697 ], [ -6.800555, 61.9988519 ], [ -6.8007362, 61.9987417 ], [ -6.8007428, 61.9985266 ], [ -6.8021061, 61.9984478 ], [ -6.8055218, 61.998255 ], [ -6.8070568, 61.998617 ], [ -6.807554, 61.9994543 ], [ -6.8077298, 62.0002269 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41740983.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.8078687, 62.0002377 ], [ -6.8138208, 61.9994297 ], [ -6.8144372, 62.0003454 ], [ -6.8134115, 62.0004677 ], [ -6.8103292, 62.0008245 ], [ -6.8104559, 62.0010524 ], [ -6.8089077, 62.0014026 ], [ -6.8090062, 62.0015579 ], [ -6.8072891, 62.0024763 ], [ -6.8073243, 62.0030775 ], [ -6.8071822, 62.0078711 ], [ -6.8055755, 62.007887 ], [ -6.8045419, 62.0076795 ], [ -6.803803, 62.0083937 ], [ -6.8025954, 62.0082081 ], [ -6.8013989, 62.007917 ], [ -6.8015599, 62.0077621 ], [ -6.8016983, 62.0075471 ], [ -6.8019489, 62.0070874 ], [ -6.8021831, 62.0063961 ], [ -6.8023957, 62.0055542 ], [ -6.8024408, 62.0052754 ], [ -6.8024545, 62.0048916 ], [ -6.8024456, 62.0042968 ], [ -6.8023053, 62.0037588 ], [ -6.8018915, 62.0031799 ], [ -6.7997873, 62.001809 ], [ -6.8030808, 62.0010822 ], [ -6.8047152, 62.0006996 ], [ -6.8074883, 62.0002879 ], [ -6.8078687, 62.0002377 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246576.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7752671, 62.0184056 ], [ -6.7750766, 62.018915 ], [ -6.7744426, 62.018889 ], [ -6.7737147, 62.0190226 ], [ -6.7725473, 62.0194936 ], [ -6.771399, 62.0196423 ], [ -6.7703017, 62.0196009 ], [ -6.7698439, 62.0195341 ], [ -6.7690794, 62.0192786 ], [ -6.7686501, 62.0190957 ], [ -6.7677597, 62.0187395 ], [ -6.7671583, 62.0186736 ], [ -6.7657268, 62.0185245 ], [ -6.7658728, 62.0178594 ], [ -6.7658887, 62.0177872 ], [ -6.766086, 62.0173784 ], [ -6.7666033, 62.016577 ], [ -6.7666495, 62.0157687 ], [ -6.766754, 62.0154901 ], [ -6.7677045, 62.014163 ], [ -6.7678587, 62.0134534 ], [ -6.7679189, 62.0133058 ], [ -6.7684849, 62.0132411 ], [ -6.7693119, 62.0131767 ], [ -6.7701912, 62.0130549 ], [ -6.7715613, 62.0127827 ], [ -6.7723506, 62.0138834 ], [ -6.7723825, 62.0139394 ], [ -6.7724591, 62.0140164 ], [ -6.7722679, 62.0140847 ], [ -6.7715611, 62.0142278 ], [ -6.7727132, 62.0152341 ], [ -6.7735023, 62.015618 ], [ -6.7723986, 62.0158043 ], [ -6.7718467, 62.0153954 ], [ -6.7712658, 62.0153545 ], [ -6.7711109, 62.0157793 ], [ -6.7715272, 62.0166901 ], [ -6.7718758, 62.0169332 ], [ -6.7725002, 62.0168923 ], [ -6.773115, 62.0185072 ], [ -6.7734975, 62.0184141 ], [ -6.7743301, 62.0183505 ], [ -6.7752671, 62.0184056 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246577.0, "name": null, "type": "meadow" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7752695, 62.0183991 ], [ -6.7743309, 62.0183405 ], [ -6.7734933, 62.018406 ], [ -6.7731301, 62.0184938 ], [ -6.7725274, 62.0168907 ], [ -6.771887, 62.0169214 ], [ -6.7715558, 62.0166888 ], [ -6.7711171, 62.0157797 ], [ -6.771271, 62.0153583 ], [ -6.7718433, 62.0153983 ], [ -6.7723937, 62.0158088 ], [ -6.7735182, 62.0156212 ], [ -6.7727247, 62.0152318 ], [ -6.7715878, 62.0142314 ], [ -6.7722768, 62.0140909 ], [ -6.7724638, 62.0140418 ], [ -6.7725874, 62.0141733 ], [ -6.7727378, 62.0143345 ], [ -6.7729736, 62.0144293 ], [ -6.7731525, 62.0146032 ], [ -6.7733862, 62.0147721 ], [ -6.7743188, 62.0155477 ], [ -6.7752025, 62.0163938 ], [ -6.7754659, 62.0168518 ], [ -6.7755472, 62.0172497 ], [ -6.775524, 62.0176458 ], [ -6.7753845, 62.0180329 ], [ -6.7752695, 62.0183991 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246578.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7750611, 62.0189716 ], [ -6.7749373, 62.0195113 ], [ -6.7749954, 62.0198365 ], [ -6.7750922, 62.0200909 ], [ -6.7754175, 62.020527 ], [ -6.7758892, 62.0209214 ], [ -6.7750534, 62.0211028 ], [ -6.7748451, 62.0213417 ], [ -6.7731483, 62.0215349 ], [ -6.7732994, 62.021812 ], [ -6.7706003, 62.0220272 ], [ -6.7700957, 62.022085 ], [ -6.7696678, 62.0216308 ], [ -6.7683736, 62.0218019 ], [ -6.7686597, 62.0223015 ], [ -6.7671455, 62.0225571 ], [ -6.7660791, 62.0226859 ], [ -6.7648102, 62.0235405 ], [ -6.7632215, 62.0231884 ], [ -6.7644967, 62.022117 ], [ -6.7647399, 62.0218053 ], [ -6.7649607, 62.0212657 ], [ -6.7654525, 62.0196468 ], [ -6.7657045, 62.0185704 ], [ -6.7672682, 62.0187563 ], [ -6.7675387, 62.0187884 ], [ -6.7679631, 62.0189032 ], [ -6.76897, 62.019303 ], [ -6.7698127, 62.0195981 ], [ -6.7704107, 62.019678 ], [ -6.7713247, 62.019694 ], [ -6.7719598, 62.0196489 ], [ -6.7725701, 62.0195516 ], [ -6.7737908, 62.019066 ], [ -6.7744477, 62.0189367 ], [ -6.7750611, 62.0189716 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246579.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7758939, 62.0209266 ], [ -6.7761188, 62.0210801 ], [ -6.7759921, 62.0212666 ], [ -6.7757806, 62.0213661 ], [ -6.7754748, 62.0214495 ], [ -6.7751588, 62.0215495 ], [ -6.7747819, 62.0216293 ], [ -6.7734951, 62.0217882 ], [ -6.7733098, 62.0218109 ], [ -6.7731555, 62.0215381 ], [ -6.7748483, 62.0213447 ], [ -6.7750655, 62.0211058 ], [ -6.7758939, 62.0209266 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246580.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7905428, 62.0187316 ], [ -6.7911624, 62.0194046 ], [ -6.7914908, 62.0197258 ], [ -6.792002, 62.0202913 ], [ -6.7919803, 62.0205238 ], [ -6.7916054, 62.0209744 ], [ -6.789604, 62.020614 ], [ -6.7898085, 62.0203799 ], [ -6.789951, 62.0200718 ], [ -6.7899634, 62.0198726 ], [ -6.7898766, 62.0196197 ], [ -6.7897434, 62.0194235 ], [ -6.7893438, 62.0190354 ], [ -6.7905428, 62.0187316 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246581.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7868733, 62.019142 ], [ -6.787211, 62.0194007 ], [ -6.7875673, 62.0196362 ], [ -6.7864179, 62.0201072 ], [ -6.7852994, 62.0197467 ], [ -6.7856805, 62.0194938 ], [ -6.7868733, 62.019142 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246582.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7656854, 62.0178034 ], [ -6.7652678, 62.0195239 ], [ -6.7647898, 62.0212812 ], [ -6.7645598, 62.0217894 ], [ -6.764112, 62.0222748 ], [ -6.7636632, 62.0227296 ], [ -6.7616291, 62.0228005 ], [ -6.7611009, 62.0224419 ], [ -6.7602514, 62.021585 ], [ -6.7598641, 62.0209179 ], [ -6.7595555, 62.0203728 ], [ -6.7589504, 62.0198561 ], [ -6.7599186, 62.0198249 ], [ -6.7604753, 62.0202308 ], [ -6.7607718, 62.0207277 ], [ -6.7610683, 62.0212926 ], [ -6.7613951, 62.0216361 ], [ -6.7618852, 62.0218206 ], [ -6.7627989, 62.0204438 ], [ -6.7622906, 62.0202365 ], [ -6.7636302, 62.0189309 ], [ -6.7630306, 62.0188339 ], [ -6.7633496, 62.0182804 ], [ -6.7636643, 62.0181782 ], [ -6.764147, 62.0176282 ], [ -6.7644751, 62.0176728 ], [ -6.7656854, 62.0178034 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43246583.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7951288, 62.0142737 ], [ -6.795644, 62.01494 ], [ -6.7935166, 62.0153393 ], [ -6.7916635, 62.0164972 ], [ -6.7908976, 62.0172248 ], [ -6.7898481, 62.0172115 ], [ -6.7898123, 62.0166738 ], [ -6.7900302, 62.0159583 ], [ -6.7906208, 62.0153745 ], [ -6.791284, 62.0150065 ], [ -6.7921457, 62.0147567 ], [ -6.7951288, 62.0142737 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43500103.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7890174, 62.020977 ], [ -6.7878585, 62.0214415 ], [ -6.7870833, 62.0216228 ], [ -6.7863013, 62.0216829 ], [ -6.7852997, 62.021655 ], [ -6.7842364, 62.0216196 ], [ -6.7833515, 62.0215906 ], [ -6.7824528, 62.0215338 ], [ -6.7820349, 62.0215085 ], [ -6.7819069, 62.02146 ], [ -6.781711, 62.0214147 ], [ -6.7814625, 62.021439 ], [ -6.7811516, 62.0214201 ], [ -6.7804176, 62.0212883 ], [ -6.7796868, 62.0210951 ], [ -6.7844011, 62.0194931 ], [ -6.7852994, 62.0197467 ], [ -6.7864179, 62.0201072 ], [ -6.7890174, 62.020977 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43500107.0, "name": null, "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7893947, 62.0002563 ], [ -6.7887207, 62.0004547 ], [ -6.7885953, 62.0007716 ], [ -6.788543, 62.0010251 ], [ -6.7878269, 62.0026478 ], [ -6.7860806, 62.0025032 ], [ -6.7857858, 62.0030273 ], [ -6.7847139, 62.0029476 ], [ -6.7846067, 62.002694 ], [ -6.7845308, 62.0024319 ], [ -6.7841735, 62.0021279 ], [ -6.7839933, 62.0018815 ], [ -6.7836131, 62.0015306 ], [ -6.7835327, 62.0014866 ], [ -6.7832842, 62.0013913 ], [ -6.7830784, 62.0012525 ], [ -6.7830164, 62.0010443 ], [ -6.7826781, 62.0011306 ], [ -6.7815331, 62.0014043 ], [ -6.7810399, 62.0015302 ], [ -6.7807576, 62.00151 ], [ -6.7814508, 62.0004416 ], [ -6.7820046, 62.0003359 ], [ -6.7833838, 62.0000306 ], [ -6.7848165, 61.9998159 ], [ -6.7872569, 61.9997522 ], [ -6.7887754, 61.9997354 ], [ -6.7893947, 62.0002563 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45194373.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7701591, 62.0362867 ], [ -6.7669949, 62.0370722 ], [ -6.766242, 62.0362004 ], [ -6.76647, 62.0358896 ], [ -6.7666237, 62.0353103 ], [ -6.7666184, 62.0345992 ], [ -6.7654944, 62.0345693 ], [ -6.7653618, 62.034179 ], [ -6.7642271, 62.0341591 ], [ -6.7641741, 62.0333211 ], [ -6.7642855, 62.0325602 ], [ -6.7645231, 62.0316163 ], [ -6.7649125, 62.0313404 ], [ -6.7667268, 62.0315075 ], [ -6.7671954, 62.0310774 ], [ -6.7698613, 62.0318789 ], [ -6.7701591, 62.0362867 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 55334805.0, "name": "Norðasta Horn", "type": "residential" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.8321228027, 62.002010927121965 ], [ -6.831381, 62.0020786 ], [ -6.8305873, 62.0021101 ], [ -6.8293245, 62.0019431 ], [ -6.8271444, 62.0015197 ], [ -6.8257992, 62.0012608 ], [ -6.8240469, 62.000939 ], [ -6.8234233, 62.0006729 ], [ -6.8229285, 62.0003607 ], [ -6.821037, 62.0000026 ], [ -6.8205422, 61.9996711 ], [ -6.8208772, 61.9992791 ], [ -6.82165, 61.9990895 ], [ -6.8224595, 61.9988944 ], [ -6.8247375, 61.9992404 ], [ -6.8260054, 61.9994437 ], [ -6.829293, 61.999858 ], [ -6.8321228027, 62.000200368886873 ], [ -6.8321228027, 62.002010927121965 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 57401097.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7690967, 62.0106901 ], [ -6.7690391, 62.0104912 ], [ -6.7691821, 62.0104904 ], [ -6.7693311, 62.010704 ], [ -6.769456, 62.0109157 ], [ -6.7695667, 62.0110291 ], [ -6.7695607, 62.0111633 ], [ -6.7693976, 62.0111718 ], [ -6.7693455, 62.0112103 ], [ -6.7689064, 62.0112036 ], [ -6.7688297, 62.0111321 ], [ -6.7689566, 62.0110877 ], [ -6.7687431, 62.0109365 ], [ -6.7688882, 62.0109043 ], [ -6.7690452, 62.0108857 ], [ -6.7690381, 62.01069 ], [ -6.7690967, 62.0106901 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 57401098.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.769455, 62.0121201 ], [ -6.7693558, 62.0120254 ], [ -6.7691351, 62.0120685 ], [ -6.769167, 62.0120989 ], [ -6.7688493, 62.0121592 ], [ -6.7687675, 62.012021 ], [ -6.7686605, 62.0118094 ], [ -6.769118, 62.011741 ], [ -6.7692933, 62.0118063 ], [ -6.7696271, 62.0118916 ], [ -6.7699222, 62.0120452 ], [ -6.7699944, 62.0122726 ], [ -6.7700524, 62.0124402 ], [ -6.7695485, 62.0124873 ], [ -6.7689892, 62.0125285 ], [ -6.7689492, 62.0123718 ], [ -6.7688771, 62.0121982 ], [ -6.7692134, 62.012136 ], [ -6.7692436, 62.0121638 ], [ -6.769455, 62.0121201 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 57401101.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7701665, 62.0115889 ], [ -6.7698959, 62.0114565 ], [ -6.7699655, 62.0114395 ], [ -6.7701292, 62.0113984 ], [ -6.7702555, 62.0113452 ], [ -6.7702658, 62.0115224 ], [ -6.7701665, 62.0115889 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961394.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7768631, 62.0091254 ], [ -6.776726, 62.0091754 ], [ -6.776546, 62.0092352 ], [ -6.7763009, 62.0093121 ], [ -6.7761013, 62.0091695 ], [ -6.7760684, 62.0091402 ], [ -6.7760773, 62.0091356 ], [ -6.7761192, 62.009131 ], [ -6.7761655, 62.0091294 ], [ -6.7762143, 62.0091294 ], [ -6.7763466, 62.0091313 ], [ -6.776539, 62.009128 ], [ -6.7767199, 62.0091259 ], [ -6.7768631, 62.0091254 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961407.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7684004, 62.0111983 ], [ -6.7681418, 62.0110934 ], [ -6.7683984, 62.010982 ], [ -6.7685068, 62.0111677 ], [ -6.7684725, 62.0111968 ], [ -6.7684004, 62.0111983 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961414.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7808273, 62.0067158 ], [ -6.7807049, 62.0069567 ], [ -6.7797828, 62.00689 ], [ -6.7796213, 62.0068946 ], [ -6.7795308, 62.0071822 ], [ -6.7795976, 62.0072305 ], [ -6.7793637, 62.007305 ], [ -6.7792802, 62.0073102 ], [ -6.7789001, 62.0071665 ], [ -6.7785659, 62.0066424 ], [ -6.7776206, 62.006775 ], [ -6.7768454, 62.0058781 ], [ -6.7773801, 62.0058702 ], [ -6.7774814, 62.0055827 ], [ -6.7776797, 62.0055905 ], [ -6.7778683, 62.0052503 ], [ -6.7784983, 62.0053115 ], [ -6.7785105, 62.0054553 ], [ -6.7785314, 62.0055321 ], [ -6.7786062, 62.0056563 ], [ -6.7779466, 62.0061105 ], [ -6.7781973, 62.0062216 ], [ -6.7787768, 62.00626 ], [ -6.7789438, 62.0061789 ], [ -6.7790382, 62.0062183 ], [ -6.7794145, 62.0060205 ], [ -6.7796278, 62.0061235 ], [ -6.7798663, 62.0061775 ], [ -6.7800629, 62.0061799 ], [ -6.7796348, 62.0064756 ], [ -6.7800368, 62.0065459 ], [ -6.7800995, 62.0065295 ], [ -6.7808273, 62.0067158 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961427.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7682008, 62.0130196 ], [ -6.7675183, 62.0133769 ], [ -6.767037, 62.0132659 ], [ -6.7669201, 62.0132302 ], [ -6.7654489, 62.0132659 ], [ -6.7653809, 62.0131919 ], [ -6.7649214, 62.0131945 ], [ -6.7643122, 62.0133973 ], [ -6.7639968, 62.0132583 ], [ -6.7641409, 62.0128499 ], [ -6.7642163, 62.0126327 ], [ -6.7647922, 62.0126489 ], [ -6.7649804, 62.0126196 ], [ -6.7650754, 62.0125056 ], [ -6.76583, 62.0126539 ], [ -6.7665031, 62.0122873 ], [ -6.7673019, 62.0126685 ], [ -6.7675806, 62.0125712 ], [ -6.7682008, 62.0130196 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961429.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7847635, 62.0078975 ], [ -6.7859226, 62.0075349 ], [ -6.7858356, 62.0074687 ], [ -6.7860758, 62.0074573 ], [ -6.7861889, 62.0074703 ], [ -6.7863246, 62.0075046 ], [ -6.786295, 62.0076623 ], [ -6.7866449, 62.007815 ], [ -6.7868711, 62.0080462 ], [ -6.7854475, 62.008328 ], [ -6.7847635, 62.0078975 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827121.0, "name": "Grasagarður", "type": "village_green" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7753285, 62.0111586 ], [ -6.7753996, 62.0112214 ], [ -6.7756333, 62.0111627 ], [ -6.7761395, 62.011601 ], [ -6.7755032, 62.0117677 ], [ -6.7753722, 62.0116515 ], [ -6.7754063, 62.0116424 ], [ -6.7753549, 62.011596 ], [ -6.7753155, 62.0116052 ], [ -6.7753043, 62.011594 ], [ -6.7751361, 62.0116344 ], [ -6.7749263, 62.0114634 ], [ -6.7751599, 62.0114015 ], [ -6.7749823, 62.0112496 ], [ -6.7753285, 62.0111586 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860020.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7799696, 62.005837 ], [ -6.7796266, 62.0060088 ], [ -6.7796939, 62.0060384 ], [ -6.7796629, 62.0060539 ], [ -6.7794949, 62.0059801 ], [ -6.7795255, 62.0059647 ], [ -6.7795941, 62.0059949 ], [ -6.7799375, 62.0058229 ], [ -6.7799696, 62.005837 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860042.0, "name": null, "type": "grass" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.7791704, 62.0059453 ], [ -6.7789522, 62.0060517 ], [ -6.7788851, 62.0060527 ], [ -6.7788536, 62.0060349 ], [ -6.778841, 62.0060093 ], [ -6.7790451, 62.0058938 ], [ -6.7791704, 62.0059453 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484335.0, "name": null, "type": "industrial" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.768749, 62.0091323 ], [ -6.7686818, 62.0091425 ], [ -6.766504, 62.0087269 ], [ -6.7655104, 62.0085359 ], [ -6.7653956, 62.0086151 ], [ -6.7651445, 62.0087025 ], [ -6.7647981, 62.0086842 ], [ -6.7640491, 62.0085125 ], [ -6.7638499, 62.0083703 ], [ -6.7642634, 62.0081935 ], [ -6.7639907, 62.007849 ], [ -6.7635967, 62.0073795 ], [ -6.7632144, 62.0072414 ], [ -6.7625748, 62.0070649 ], [ -6.761998, 62.0059363 ], [ -6.7609755, 62.005262 ], [ -6.7593308, 62.005029 ], [ -6.7592607, 62.0048371 ], [ -6.7593307, 62.0047011 ], [ -6.7593982, 62.0046171 ], [ -6.7594682, 62.0044993 ], [ -6.7596261, 62.0043494 ], [ -6.7598318, 62.004183 ], [ -6.7607372, 62.0034388 ], [ -6.7612312, 62.0034571 ], [ -6.7611243, 62.0037811 ], [ -6.7614602, 62.0038509 ], [ -6.7610596, 62.0043434 ], [ -6.7625404, 62.0047587 ], [ -6.7640437, 62.0044229 ], [ -6.7650815, 62.0034379 ], [ -6.7652495, 62.0031671 ], [ -6.7655972, 62.0028631 ], [ -6.7663281, 62.0027305 ], [ -6.7674399, 62.0029346 ], [ -6.7676582, 62.0028826 ], [ -6.7678209, 62.0028988 ], [ -6.7642607, 62.0063627 ], [ -6.7644957, 62.0064511 ], [ -6.764325, 62.0065708 ], [ -6.7664138, 62.0079974 ], [ -6.7670046, 62.0078018 ], [ -6.7675056, 62.0085135 ], [ -6.7682925, 62.0082799 ], [ -6.7684909, 62.0084198 ], [ -6.7680387, 62.0085577 ], [ -6.7680077, 62.0087325 ], [ -6.7683945, 62.00885 ], [ -6.7683745, 62.008902 ], [ -6.768749, 62.0091323 ] ] ] } }
]
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment