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
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "osm_id": 4965566.0, "name": "Sverrisgøta", "ref": null, "type": "unclassified", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7721263, 62.0112074 ], [ -6.7731148, 62.0109298 ], [ -6.7731919, 62.0109129 ], [ -6.7737164, 62.0107727 ], [ -6.7739497, 62.0107104 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965567.0, "name": "Niels Finsens gøta", "ref": null, "type": "pedestrian", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7739571, 62.0114309 ], [ -6.7737544, 62.0112831 ], [ -6.7735458, 62.0111688 ], [ -6.7731148, 62.0109298 ], [ -6.7725776, 62.0106215 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965671.0, "name": "Vaglið", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7723997, 62.0104999 ], [ -6.7717803, 62.0101718 ], [ -6.771522, 62.0101807 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965672.0, "name": "Kopargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.768944, 62.0092399 ], [ -6.7690826, 62.0092827 ], [ -6.769193, 62.0093279 ], [ -6.7693564, 62.0094437 ], [ -6.7695525, 62.0095668 ], [ -6.7696651, 62.009561 ], [ -6.7698345, 62.009554 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965675.0, "name": "Varðagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7774822, 62.012445 ], [ -6.7778997, 62.0127888 ], [ -6.7780969, 62.012879 ], [ -6.7783196, 62.0129575 ], [ -6.7785411, 62.0130827 ], [ -6.7787402, 62.0132414 ], [ -6.7790473, 62.0134742 ], [ -6.7792329, 62.0136295 ], [ -6.7793916, 62.013723 ], [ -6.7794793, 62.0137746 ], [ -6.7797864, 62.0139737 ], [ -6.7800936, 62.0141965 ], [ -6.7801515, 62.0142229 ], [ -6.7804547, 62.0143619 ], [ -6.7808327, 62.0145036 ], [ -6.7811601, 62.0146251 ], [ -6.7815349, 62.0147793 ], [ -6.7816933, 62.0148445 ], [ -6.7818993, 62.0149761 ], [ -6.7820511, 62.0150807 ], [ -6.7823312, 62.0152833 ], [ -6.7825877, 62.0154959 ], [ -6.7827228, 62.0156149 ], [ -6.7827375, 62.0156279 ], [ -6.7828989, 62.0157957 ], [ -6.7830855, 62.0160156 ], [ -6.7832418, 62.0161858 ], [ -6.7834133, 62.0163892 ], [ -6.7835848, 62.0165664 ], [ -6.7838167, 62.016791 ], [ -6.7839813, 62.0169036 ], [ -6.7840487, 62.0169399 ], [ -6.7842764, 62.0170895 ], [ -6.7844331, 62.0171739 ], [ -6.7844804, 62.0171994 ], [ -6.7846734, 62.0172987 ], [ -6.7846944, 62.0173095 ], [ -6.7849064, 62.0174294 ], [ -6.7851454, 62.0175294 ], [ -6.7853016, 62.0176027 ], [ -6.7854014, 62.0176495 ], [ -6.7856243, 62.0177594 ], [ -6.7857494, 62.0179095 ], [ -6.7858164, 62.0180395 ], [ -6.7858484, 62.0181395 ], [ -6.7858559, 62.0181551 ], [ -6.7859103, 62.0182695 ], [ -6.7860263, 62.0184095 ], [ -6.7861983, 62.0185595 ], [ -6.7863934, 62.0187094 ], [ -6.7864479, 62.0187476 ], [ -6.7865703, 62.0188289 ], [ -6.7867443, 62.0189895 ], [ -6.7869023, 62.0191195 ], [ -6.7870773, 62.0192595 ], [ -6.7872493, 62.0193994 ], [ -6.7874524, 62.0195395 ], [ -6.7876181, 62.0196311 ], [ -6.7876694, 62.0196594 ], [ -6.7879653, 62.0197594 ], [ -6.7882774, 62.0198095 ], [ -6.7885973, 62.0198695 ], [ -6.7888834, 62.0199195 ], [ -6.7891534, 62.0199594 ], [ -6.7893854, 62.0199795 ], [ -6.7895363, 62.0199894 ], [ -6.7896819, 62.0200109 ], [ -6.7898853, 62.0200265 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965676.0, "name": "Mylnugøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7717803, 62.0101718 ], [ -6.7723948, 62.0099199 ], [ -6.7728327, 62.0097622 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965713.0, "name": "Havnargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7644782, 62.0083349 ], [ -6.764722, 62.0083917 ], [ -6.7652634, 62.0085137 ], [ -6.7662998, 62.0087471 ], [ -6.7669037, 62.0088657 ], [ -6.7684239, 62.0091393 ], [ -6.7685914, 62.0091721 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965800.0, "name": "Vágsbotnur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7727686, 62.0097043 ], [ -6.7726796, 62.009553 ], [ -6.7727056, 62.009527 ], [ -6.7727521, 62.0094807 ], [ -6.7729512, 62.0093927 ], [ -6.7732229, 62.0092327 ], [ -6.7735577, 62.0089984 ], [ -6.773741, 62.0089105 ], [ -6.774123, 62.0087672 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965802.0, "name": "Bøgøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.774123, 62.0087672 ], [ -6.7742573, 62.0087795 ], [ -6.7743268, 62.0088362 ], [ -6.7743847, 62.0088941 ], [ -6.7743981, 62.0089608 ], [ -6.7744157, 62.0091884 ], [ -6.7744373, 62.0092153 ], [ -6.7744603, 62.0092461 ], [ -6.774493, 62.0092779 ], [ -6.7748344, 62.009642 ], [ -6.7750258, 62.0099358 ], [ -6.7750368, 62.0099494 ], [ -6.7753758, 62.0103221 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965803.0, "name": "Doktara Jakobsens gøta", "ref": null, "type": "unclassified", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7751125, 62.0103981 ], [ -6.7753758, 62.0103221 ], [ -6.7757777, 62.010165 ], [ -6.7759073, 62.0099715 ], [ -6.7760186, 62.0097667 ], [ -6.7760097, 62.0095708 ], [ -6.7760765, 62.0094773 ], [ -6.7761624, 62.0094277 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4965804.0, "name": "Gríms Kambans gøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7771673, 62.0090499 ], [ -6.7767888, 62.0090944 ], [ -6.7763971, 62.0091078 ], [ -6.7760322, 62.0091282 ], [ -6.7759636, 62.009132 ], [ -6.775333, 62.0092458 ], [ -6.7752393, 62.0092638 ], [ -6.7749947, 62.0092784 ], [ -6.7748244, 62.009275 ], [ -6.7745836, 62.009243 ], [ -6.7744373, 62.0092153 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967423.0, "name": "Við Bojsensgard", "ref": null, "type": "cycleway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7717803, 62.0101718 ], [ -6.7722199, 62.0099279 ], [ -6.772386, 62.0098219 ], [ -6.7724142, 62.0097548 ], [ -6.7723966, 62.009663 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967424.0, "name": "Bryggjubakki", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771424, 62.0089418 ], [ -6.7719099, 62.0092888 ], [ -6.7721052, 62.0094387 ], [ -6.7722482, 62.0095252 ], [ -6.7723224, 62.0095959 ], [ -6.7723966, 62.009663 ], [ -6.7725767, 62.0096948 ], [ -6.7727686, 62.0097043 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967426.0, "name": "Skálatrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.774123, 62.0087672 ], [ -6.7742828, 62.0087092 ], [ -6.774463, 62.0086421 ], [ -6.774636, 62.0085574 ], [ -6.7747985, 62.0084514 ], [ -6.7751412, 62.0081971 ], [ -6.7754468, 62.0079828 ], [ -6.7758046, 62.0075833 ], [ -6.7758491, 62.0075336 ], [ -6.7766979, 62.0075713 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967427.0, "name": "Undir Bryggjubakka", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7727056, 62.009527 ], [ -6.772605, 62.0094263 ], [ -6.7724495, 62.0093133 ], [ -6.7722835, 62.0091967 ], [ -6.7719162, 62.0089459 ], [ -6.7715029, 62.0087057 ], [ -6.7712132, 62.0085503 ], [ -6.7709377, 62.0083313 ], [ -6.7705704, 62.0080911 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967428.0, "name": "Havnargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.764365, 62.0082193 ], [ -6.7642731, 62.0082265 ], [ -6.7642112, 62.0082521 ], [ -6.7641844, 62.0082968 ], [ -6.764214, 62.0083375 ], [ -6.7643215, 62.0083682 ], [ -6.7644055, 62.0083632 ], [ -6.7644782, 62.0083349 ], [ -6.7645025, 62.0082825 ], [ -6.7644655, 62.0082448 ], [ -6.764365, 62.0082193 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967429.0, "name": null, "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7637961, 62.0085938 ], [ -6.7638427, 62.0085785 ], [ -6.7638741, 62.0085564 ], [ -6.7638863, 62.0085296 ], [ -6.7638826, 62.0085126 ], [ -6.7638645, 62.0084913 ], [ -6.7638365, 62.0084753 ], [ -6.7637958, 62.0084628 ], [ -6.7637386, 62.0084566 ], [ -6.7636753, 62.0084619 ], [ -6.7636294, 62.0084756 ], [ -6.7636029, 62.0084908 ], [ -6.7635878, 62.0085062 ], [ -6.7635806, 62.0085322 ], [ -6.7635915, 62.0085552 ], [ -6.7636172, 62.008575 ], [ -6.7636612, 62.0085916 ], [ -6.7636992, 62.0085983 ], [ -6.7637487, 62.0085998 ], [ -6.7637961, 62.0085938 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967430.0, "name": null, "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.764214, 62.0083375 ], [ -6.7641249, 62.0083664 ], [ -6.7639437, 62.0084267 ], [ -6.7637958, 62.0084628 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967431.0, "name": "Eystara Bryggja", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.764365, 62.0082193 ], [ -6.7642497, 62.0079625 ], [ -6.7640499, 62.0077405 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967432.0, "name": "Yviri við Strond", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7636029, 62.0084908 ], [ -6.7635128, 62.0084655 ], [ -6.7632938, 62.0083949 ], [ -6.7631137, 62.0083631 ], [ -6.7628593, 62.0083454 ], [ -6.762545, 62.0083701 ], [ -6.7622376, 62.008462 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967433.0, "name": "Hvítanesvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7678318, 62.0226743 ], [ -6.7678717, 62.022736 ], [ -6.7679388, 62.0228385 ], [ -6.7680342, 62.0229762 ], [ -6.7684352, 62.0237083 ], [ -6.7685311, 62.0238834 ], [ -6.7686205, 62.0240465 ], [ -6.7689568, 62.0247218 ], [ -6.7689938, 62.0247803 ], [ -6.7692328, 62.0251581 ], [ -6.769954, 62.0261108 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967434.0, "name": "Kúrdalsvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7627751, 62.0304004 ], [ -6.7625836, 62.0303692 ], [ -6.7621607, 62.0303336 ], [ -6.7619292, 62.0303425 ], [ -6.7618045, 62.030436 ], [ -6.7617422, 62.0305696 ], [ -6.7616843, 62.0306809 ], [ -6.761484, 62.0307699 ], [ -6.7611412, 62.0308857 ], [ -6.7610299, 62.0309524 ], [ -6.7609497, 62.0310326 ], [ -6.7607227, 62.0313398 ], [ -6.7606826, 62.0314333 ], [ -6.760687, 62.0315223 ], [ -6.7607538, 62.0316203 ], [ -6.7608429, 62.0317538 ], [ -6.7608117, 62.0318028 ], [ -6.7607449, 62.0318384 ], [ -6.7606648, 62.0318161 ], [ -6.760598, 62.0317672 ], [ -6.7603042, 62.0314867 ], [ -6.7598456, 62.0311795 ], [ -6.7595696, 62.0309391 ], [ -6.7592134, 62.0307788 ], [ -6.758786, 62.0304761 ], [ -6.7583364, 62.0300932 ], [ -6.7582429, 62.0299774 ], [ -6.758185, 62.0297459 ], [ -6.7581316, 62.029697 ], [ -6.7579683, 62.0295906 ], [ -6.7571165, 62.0290559 ], [ -6.7569206, 62.0288956 ], [ -6.7567158, 62.0287042 ], [ -6.7566935, 62.0286151 ], [ -6.7567247, 62.0285617 ], [ -6.7568182, 62.0284905 ], [ -6.7569429, 62.0284415 ], [ -6.7570542, 62.0284014 ], [ -6.7579668, 62.0282946 ], [ -6.7580648, 62.0282723 ], [ -6.7580425, 62.02821 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967435.0, "name": "Hvítanesvegur", "ref": null, "type": "primary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7660286, 62.0362162 ], [ -6.7658747, 62.0361821 ], [ -6.765714, 62.0361914 ], [ -6.7655695, 62.0362522 ], [ -6.7655483, 62.0363657 ], [ -6.7657064, 62.0364472 ], [ -6.7659381, 62.0364502 ], [ -6.7661079, 62.0363698 ], [ -6.76612, 62.0362891 ], [ -6.7660286, 62.0362162 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967437.0, "name": "Hvítanesvegur", "ref": null, "type": "primary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 80 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7659381, 62.0364502 ], [ -6.7661688, 62.0367844 ], [ -6.7663529, 62.0371242 ], [ -6.7666573, 62.0380658 ], [ -6.7668343, 62.0386038 ], [ -6.7669547, 62.0389153 ], [ -6.7671316, 62.0391843 ], [ -6.7673511, 62.0395029 ], [ -6.7677122, 62.0398569 ], [ -6.7681157, 62.0401542 ], [ -6.7686325, 62.0404657 ], [ -6.7693829, 62.0409117 ], [ -6.7706289, 62.0415276 ], [ -6.771136, 62.041785 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967439.0, "name": "Vegurin Langi", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7660286, 62.0362162 ], [ -6.7661334, 62.0361827 ], [ -6.7662396, 62.0360836 ], [ -6.7663317, 62.0359349 ], [ -6.7663883, 62.0358004 ], [ -6.7664874, 62.0354393 ], [ -6.7664964, 62.0353893 ], [ -6.7665441, 62.0351278 ], [ -6.7665441, 62.0349013 ], [ -6.7663359, 62.0328551 ], [ -6.7662963, 62.032466 ], [ -6.7662821, 62.0322324 ], [ -6.7662892, 62.0320766 ], [ -6.7663387, 62.0318855 ], [ -6.7664237, 62.0317227 ], [ -6.7666361, 62.0314466 ], [ -6.7677546, 62.0302572 ], [ -6.767967, 62.0300873 ], [ -6.7681504, 62.0299533 ], [ -6.7684413, 62.0297971 ], [ -6.769397, 62.0293652 ], [ -6.7704377, 62.0288484 ], [ -6.7706491, 62.0287613 ], [ -6.7707988, 62.0286997 ], [ -6.7713722, 62.0285015 ], [ -6.7718324, 62.0283741 ], [ -6.7723633, 62.028275 ], [ -6.7732907, 62.0281476 ], [ -6.774039, 62.0280955 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967440.0, "name": "Sundsvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7892167, 62.0266133 ], [ -6.7892434, 62.0265425 ], [ -6.7891817, 62.026422 ], [ -6.7888193, 62.0260084 ], [ -6.7884262, 62.0255636 ], [ -6.7883764, 62.0254895 ], [ -6.7880522, 62.0250828 ], [ -6.7876961, 62.0248513 ], [ -6.787518, 62.0247623 ], [ -6.787144, 62.0246376 ], [ -6.7845594, 62.0238354 ], [ -6.7844194, 62.0238006 ], [ -6.7833153, 62.0235691 ], [ -6.7829947, 62.0234623 ], [ -6.7818353, 62.0225694 ], [ -6.7817947, 62.0225326 ], [ -6.7816769, 62.0223938 ], [ -6.7816437, 62.0221469 ], [ -6.7816947, 62.0218061 ], [ -6.7817488, 62.0216395 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4967441.0, "name": "V.U. Hammershaimbsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7771832, 62.0087827 ], [ -6.7780931, 62.0084893 ], [ -6.7783947, 62.0083892 ], [ -6.7787971, 62.0082767 ], [ -6.779157, 62.008174 ], [ -6.7793863, 62.0081176 ], [ -6.7795275, 62.0080613 ], [ -6.7795664, 62.00802 ], [ -6.7796686, 62.0078726 ], [ -6.7797639, 62.0076827 ], [ -6.7798545, 62.0074599 ], [ -6.7800718, 62.0068948 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4968657.0, "name": "Undir Pisuvarða", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762749, 62.0135621 ], [ -6.7759127, 62.0134597 ], [ -6.7747258, 62.0137648 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4968658.0, "name": "Oman Pisuvarða", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762418, 62.0141116 ], [ -6.7759754, 62.0141689 ], [ -6.7756777, 62.0142355 ], [ -6.7753191, 62.0143253 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4968662.0, "name": "Tórsgøta", "ref": null, "type": "steps", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7746793, 62.0113451 ], [ -6.7745794, 62.011265 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972586.0, "name": "Húsabrúgv", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771522, 62.0101807 ], [ -6.7714417, 62.0099658 ], [ -6.771246, 62.0097971 ], [ -6.770949, 62.0095946 ], [ -6.7707971, 62.0093954 ], [ -6.7707584, 62.0093509 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972588.0, "name": "Tinghúsvegur", "ref": null, "type": "unclassified", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771522, 62.0101807 ], [ -6.7716742, 62.0104578 ], [ -6.7718371, 62.0107438 ], [ -6.771918, 62.0108655 ], [ -6.7720416, 62.0110253 ], [ -6.7721263, 62.0112074 ], [ -6.7723773, 62.0116907 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972589.0, "name": "Bøkjarabrekka", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7708592, 62.0119345 ], [ -6.7723773, 62.0116907 ], [ -6.7727683, 62.0116461 ], [ -6.7730604, 62.0116143 ], [ -6.7731896, 62.0115895 ], [ -6.7735561, 62.0115116 ], [ -6.7739571, 62.0114309 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972590.0, "name": "R C Effersøes gøtu", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7708592, 62.0119345 ], [ -6.7705338, 62.0117816 ], [ -6.7701678, 62.011612 ], [ -6.7699364, 62.0115048 ], [ -6.7698318, 62.0114528 ], [ -6.7694538, 62.0112652 ], [ -6.769313, 62.0112332 ], [ -6.7688618, 62.0112225 ], [ -6.7685553, 62.0112195 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972591.0, "name": "Hoyvíksvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7685553, 62.0112195 ], [ -6.7687349, 62.0113698 ], [ -6.7687349, 62.0114036 ], [ -6.7686978, 62.0114677 ], [ -6.7684919, 62.0116061 ], [ -6.7683839, 62.0117377 ], [ -6.7683637, 62.0118086 ], [ -6.7683974, 62.0119065 ], [ -6.7684084, 62.0119229 ], [ -6.768502, 62.0120617 ], [ -6.7685646, 62.0122412 ], [ -6.7685797, 62.0122845 ], [ -6.7686573, 62.012487 ], [ -6.7686607, 62.0126895 ], [ -6.7685763, 62.0128954 ], [ -6.7684244, 62.0129966 ], [ -6.7680363, 62.0132093 ], [ -6.7679823, 62.0132565 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972592.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7685646, 62.0122412 ], [ -6.7693574, 62.012098 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972593.0, "name": "Gripsvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7679823, 62.0132565 ], [ -6.7681747, 62.0132363 ], [ -6.7684683, 62.0132261 ], [ -6.7685889, 62.0132214 ], [ -6.7693693, 62.0131439 ], [ -6.7694275, 62.0131367 ], [ -6.76951, 62.0131212 ], [ -6.7700275, 62.0130551 ], [ -6.7701862, 62.0130405 ], [ -6.7707498, 62.0129257 ], [ -6.7712898, 62.0128076 ], [ -6.7715835, 62.012757 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972595.0, "name": "Egholmstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7693693, 62.0131439 ], [ -6.76946, 62.0132564 ], [ -6.7695504, 62.0133342 ], [ -6.7696513, 62.0134234 ], [ -6.7697579, 62.0135314 ], [ -6.7698518, 62.0136211 ], [ -6.7700364, 62.0136925 ], [ -6.7703051, 62.0137381 ], [ -6.7705998, 62.0137396 ], [ -6.7708945, 62.0137198 ], [ -6.7712248, 62.0136287 ], [ -6.7715324, 62.0135466 ], [ -6.7718066, 62.013494 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972767.0, "name": "Jústsgøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762107, 62.0153558 ], [ -6.7771523, 62.0152748 ], [ -6.7773517, 62.0152081 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 4972768.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7773517, 62.0152081 ], [ -6.7775776, 62.0150824 ], [ -6.7779336, 62.0149371 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005146.0, "name": "Landavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7771673, 62.0090499 ], [ -6.7783391, 62.0087891 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005147.0, "name": "Fríðriks Petersens gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7780931, 62.0084893 ], [ -6.7783391, 62.0087891 ], [ -6.7792001, 62.0095743 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005149.0, "name": "Dalavegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7776498, 62.0100771 ], [ -6.7784531, 62.0103341 ], [ -6.7788963, 62.0106 ], [ -6.7789147, 62.0106167 ], [ -6.7793015, 62.0109673 ], [ -6.7793583, 62.0110107 ], [ -6.7795168, 62.0111319 ], [ -6.7798461, 62.0112459 ], [ -6.7804198, 62.0114102 ], [ -6.780954, 62.0116684 ], [ -6.7813458, 62.0118465 ], [ -6.7821971, 62.0122679 ], [ -6.7822451, 62.0122917 ], [ -6.7824764, 62.012404 ], [ -6.7825568, 62.0124431 ], [ -6.7832869, 62.0126924 ], [ -6.7840082, 62.0128883 ], [ -6.7849164, 62.0131376 ], [ -6.7854126, 62.0133113 ], [ -6.7854506, 62.0133246 ], [ -6.7859504, 62.0134515 ], [ -6.7860116, 62.0134671 ], [ -6.7866616, 62.0136273 ], [ -6.7874273, 62.013841 ], [ -6.7878428, 62.0139955 ], [ -6.7884877, 62.0142354 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005151.0, "name": "Oyggjarvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7905527, 62.0187027 ], [ -6.7899828, 62.0188541 ], [ -6.7892692, 62.0190309 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005153.0, "name": "Oyggjarvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7905527, 62.0187027 ], [ -6.79051, 62.0186045 ], [ -6.7902618, 62.018342 ], [ -6.7901624, 62.0182087 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005191.0, "name": "Garðavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7654418, 62.0289891 ], [ -6.7650394, 62.0288907 ], [ -6.7646433, 62.0288688 ], [ -6.7643282, 62.028847 ], [ -6.7641879, 62.0288045 ], [ -6.7641188, 62.0287262 ], [ -6.7641562, 62.028614 ], [ -6.7642107, 62.0284822 ], [ -6.7641058, 62.0283504 ], [ -6.7639213, 62.0282009 ], [ -6.7636403, 62.0280396 ], [ -6.7633551, 62.0278901 ], [ -6.7630908, 62.0276756 ], [ -6.7629189, 62.0275202 ], [ -6.7628342, 62.027438 ], [ -6.7627973, 62.0274022 ], [ -6.7625875, 62.0273569 ], [ -6.7623694, 62.0273648 ], [ -6.761971, 62.0274179 ], [ -6.7616019, 62.0274848 ], [ -6.7612664, 62.0275497 ], [ -6.7608931, 62.027595 ], [ -6.7605911, 62.0276324 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005468.0, "name": "Landavegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8007932, 62.0025019 ], [ -6.7997962, 62.002708 ], [ -6.7980567, 62.0030459 ], [ -6.7975686, 62.0031498 ], [ -6.7971117, 62.0032449 ], [ -6.7952589, 62.0036308 ], [ -6.7949475, 62.0036956 ], [ -6.7945903, 62.0037842 ], [ -6.7940147, 62.0039344 ], [ -6.7933264, 62.0041346 ], [ -6.7919373, 62.0046352 ], [ -6.7912205, 62.0048924 ], [ -6.790786, 62.0050607 ], [ -6.790029, 62.0054236 ], [ -6.7891717, 62.005799 ], [ -6.7888504, 62.0059523 ], [ -6.7887129, 62.0059948 ], [ -6.7878827, 62.0063496 ], [ -6.7877935, 62.0063708 ], [ -6.7868315, 62.0065999 ], [ -6.7855175, 62.0068502 ], [ -6.7851828, 62.0068459 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005473.0, "name": "Tjaldursvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7656494, 62.0185411 ], [ -6.7668781, 62.0186924 ], [ -6.7675637, 62.0187637 ], [ -6.7679911, 62.0188794 ], [ -6.7687747, 62.0192089 ], [ -6.7690139, 62.0192833 ], [ -6.7698432, 62.0195739 ], [ -6.7702997, 62.0196347 ], [ -6.7707359, 62.0196592 ], [ -6.7713453, 62.0196713 ], [ -6.7719375, 62.019623 ], [ -6.7725384, 62.0195263 ], [ -6.7725813, 62.0195263 ], [ -6.7732593, 62.0192364 ], [ -6.7737572, 62.0190391 ], [ -6.7744438, 62.0189142 ], [ -6.7751219, 62.0189505 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005474.0, "name": "R.C. Effersøes gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7708592, 62.0119345 ], [ -6.7715055, 62.0126663 ], [ -6.7715835, 62.012757 ], [ -6.771892, 62.0131007 ], [ -6.7721053, 62.0133053 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005475.0, "name": "Fútalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7657892, 62.017777 ], [ -6.7644709, 62.0176306 ], [ -6.7641587, 62.0175907 ], [ -6.7640442, 62.0175645 ], [ -6.7632929, 62.0174304 ], [ -6.7622911, 62.0172515 ], [ -6.7619981, 62.0171911 ], [ -6.7615344, 62.017066 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 5005476.0, "name": "Hoyvíksvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7625944, 62.0237533 ], [ -6.7636292, 62.0228154 ], [ -6.7639597, 62.0225159 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397417.0, "name": "Sjúrðargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7793939, 62.0119497 ], [ -6.7793128, 62.0119781 ], [ -6.7791685, 62.0120104 ], [ -6.7788692, 62.0120993 ], [ -6.7785671, 62.0121722 ], [ -6.7783293, 62.0122386 ], [ -6.7781727, 62.0122759 ], [ -6.7778917, 62.0123432 ], [ -6.7774822, 62.012445 ], [ -6.7769485, 62.0125832 ], [ -6.7766305, 62.0126603 ], [ -6.7762024, 62.0127676 ], [ -6.7754781, 62.0129911 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397418.0, "name": "Lucas Debesar gøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7754781, 62.0129911 ], [ -6.7741282, 62.0121224 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397420.0, "name": "Kongagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7764311, 62.0115283 ], [ -6.7753414, 62.0118187 ], [ -6.775261, 62.0118346 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397421.0, "name": "Tungugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7734917, 62.0123079 ], [ -6.7738199, 62.0125176 ], [ -6.7739455, 62.012593 ], [ -6.7748412, 62.0131445 ], [ -6.7749932, 62.0132315 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397422.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7749932, 62.0132315 ], [ -6.7754797, 62.0130584 ], [ -6.7754781, 62.0129911 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397425.0, "name": "Niels Finsens gøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7739571, 62.0114309 ], [ -6.7742328, 62.0115964 ], [ -6.7745481, 62.0120058 ], [ -6.7747314, 62.012163 ], [ -6.775, 62.0123453 ], [ -6.7752521, 62.012447 ], [ -6.7755269, 62.0125178 ], [ -6.7757439, 62.0125551 ], [ -6.7758368, 62.0125702 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397432.0, "name": "Tróndargøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7774822, 62.012445 ], [ -6.7772294, 62.0121979 ], [ -6.7769277, 62.0119333 ], [ -6.7765857, 62.011669 ], [ -6.7764952, 62.0115886 ], [ -6.7764311, 62.0115283 ], [ -6.7757899, 62.0109569 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397433.0, "name": "Tróndargøta", "ref": null, "type": "unclassified", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7751125, 62.0103981 ], [ -6.7757899, 62.0109569 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27397439.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7748412, 62.0131445 ], [ -6.77458, 62.0131701 ], [ -6.7743506, 62.0132367 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416419.0, "name": "Hoydalsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.776442, 62.0132198 ], [ -6.77644, 62.0132675 ], [ -6.7764143, 62.0133287 ], [ -6.7762749, 62.0135621 ], [ -6.7762581, 62.0137576 ], [ -6.7762537, 62.0139992 ], [ -6.7762418, 62.0141116 ], [ -6.776219, 62.0143199 ], [ -6.776284, 62.01444 ], [ -6.7764309, 62.0145799 ], [ -6.7766329, 62.01472 ], [ -6.776845, 62.01486 ], [ -6.7770519, 62.0149999 ], [ -6.777217, 62.01511 ], [ -6.7773517, 62.0152081 ], [ -6.777428, 62.0152747 ], [ -6.7775269, 62.01535 ], [ -6.7777099, 62.01552 ], [ -6.7778569, 62.0156899 ], [ -6.7779869, 62.01587 ], [ -6.7780605, 62.0160295 ], [ -6.778068, 62.01606 ], [ -6.778064, 62.01623 ], [ -6.778006, 62.01637 ], [ -6.777937, 62.0164799 ], [ -6.777836, 62.01659 ], [ -6.7777707, 62.0166284 ], [ -6.777649, 62.0167 ], [ -6.777416, 62.01682 ], [ -6.777244, 62.01696 ], [ -6.777202, 62.01712 ], [ -6.777219, 62.01729 ], [ -6.777246, 62.01745 ], [ -6.7772451, 62.0174559 ], [ -6.7772209, 62.01762 ], [ -6.777158, 62.01777 ], [ -6.777103, 62.0178899 ], [ -6.7770255, 62.0180479 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416421.0, "name": "Norðari Ringvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7814962, 62.0215023 ], [ -6.7814865, 62.021555 ], [ -6.7815325, 62.021603 ], [ -6.7816166, 62.021633 ], [ -6.7817488, 62.0216395 ], [ -6.7818518, 62.0216154 ], [ -6.7819142, 62.0215713 ], [ -6.7819252, 62.0215286 ], [ -6.7818904, 62.0214812 ], [ -6.7817856, 62.0214411 ], [ -6.7816488, 62.0214373 ], [ -6.7815413, 62.0214678 ], [ -6.7814962, 62.0215023 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416422.0, "name": "Norðari Ringvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7819252, 62.0215286 ], [ -6.7820731, 62.021538 ], [ -6.78344, 62.0216273 ], [ -6.7856492, 62.021687 ], [ -6.7863248, 62.0216985 ], [ -6.7870906, 62.0216451 ], [ -6.7874121, 62.0215697 ], [ -6.7879276, 62.0214492 ], [ -6.7889001, 62.02106 ], [ -6.7890748, 62.0209902 ], [ -6.7890852, 62.0209862 ], [ -6.7894592, 62.0206835 ], [ -6.7895641, 62.0205722 ], [ -6.7897618, 62.0203629 ], [ -6.7898687, 62.0201492 ], [ -6.7898853, 62.0200265 ], [ -6.7899043, 62.0198643 ], [ -6.7898153, 62.019615 ], [ -6.7896728, 62.0194191 ], [ -6.7893167, 62.0190896 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416428.0, "name": "Norðari Ringvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7814962, 62.0215023 ], [ -6.781356, 62.0214762 ], [ -6.781031, 62.02143 ], [ -6.780665, 62.0213699 ], [ -6.7804462, 62.0213134 ], [ -6.780277, 62.0212699 ], [ -6.779861, 62.0211699 ], [ -6.779426, 62.02105 ], [ -6.7789769, 62.0209499 ], [ -6.778491, 62.0209 ], [ -6.777995, 62.0208799 ], [ -6.7777072, 62.020892 ], [ -6.77752, 62.0209 ], [ -6.777087, 62.02096 ], [ -6.7769091, 62.020983 ], [ -6.7767789, 62.021 ], [ -6.776568, 62.021 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416429.0, "name": "Norðari Ringvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7766479, 62.0212399 ], [ -6.7767459, 62.02113 ], [ -6.776658, 62.02103 ], [ -6.776568, 62.021 ], [ -6.7764511, 62.0209931 ], [ -6.776441, 62.02099 ], [ -6.776337, 62.021 ], [ -6.7762139, 62.02103 ], [ -6.776135, 62.0210799 ], [ -6.7761239, 62.0211869 ], [ -6.7761849, 62.02122 ], [ -6.77641, 62.02128 ], [ -6.7766479, 62.0212399 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416437.0, "name": "Smyrilsvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7654647, 62.0193241 ], [ -6.765583, 62.01931 ], [ -6.7658029, 62.0192999 ], [ -6.766083, 62.01933 ], [ -6.7664069, 62.01939 ], [ -6.766763, 62.01946 ], [ -6.767318, 62.01961 ], [ -6.767649, 62.01974 ], [ -6.767937, 62.0198899 ], [ -6.7682199, 62.0200299 ], [ -6.768439, 62.02021 ], [ -6.768533, 62.02031 ], [ -6.768686, 62.02053 ], [ -6.768807, 62.0207499 ], [ -6.768914, 62.02097 ], [ -6.76902, 62.0211799 ], [ -6.7691, 62.02136 ], [ -6.7691559, 62.0214699 ], [ -6.769191, 62.02152 ], [ -6.7692282, 62.0215919 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416440.0, "name": "Falkavegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7709955, 62.021374 ], [ -6.7708407, 62.0210526 ], [ -6.7705339, 62.0205 ], [ -6.7704329, 62.0203 ], [ -6.770338, 62.0201 ], [ -6.770257, 62.01992 ], [ -6.7702616, 62.0198002 ], [ -6.7702759, 62.0197299 ], [ -6.7702997, 62.0196347 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416441.0, "name": "Mýrisnípuvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7662619, 62.0170097 ], [ -6.7665369, 62.0170099 ], [ -6.7667949, 62.01702 ], [ -6.7668144, 62.0170179 ], [ -6.767138, 62.0170099 ], [ -6.7674129, 62.017 ], [ -6.7676889, 62.01696 ], [ -6.767985, 62.01692 ], [ -6.768272, 62.0168799 ], [ -6.7685779, 62.01683 ], [ -6.768922, 62.01679 ], [ -6.769265, 62.01675 ], [ -6.7694596, 62.0167318 ], [ -6.7695859, 62.01672 ], [ -6.769891, 62.01669 ], [ -6.770058, 62.0166799 ], [ -6.770367, 62.0166799 ], [ -6.770546, 62.0166799 ], [ -6.770746, 62.0166683 ], [ -6.7705083, 62.0161767 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416442.0, "name": "Rundingur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7751532, 62.0046916 ], [ -6.775088, 62.0045496 ], [ -6.7750394, 62.0044517 ], [ -6.7748866, 62.004036 ], [ -6.7746619, 62.0039247 ], [ -6.7744348, 62.0033643 ], [ -6.7745614, 62.0029809 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27416443.0, "name": "Rundingur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.776508, 62.005669 ], [ -6.7762956, 62.0056344 ], [ -6.776196, 62.0055241 ], [ -6.7761692, 62.0054075 ], [ -6.776127, 62.005241 ], [ -6.776127, 62.005066 ], [ -6.7761385, 62.0048954 ], [ -6.7761002, 62.0048038 ], [ -6.7759967, 62.0047392 ], [ -6.7758778, 62.0046893 ], [ -6.775736, 62.0046913 ], [ -6.7755328, 62.004683 ], [ -6.775317, 62.00468 ], [ -6.7751532, 62.0046916 ], [ -6.7751111, 62.0046934 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27501644.0, "name": "Dalavegur", "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7761624, 62.0094277 ], [ -6.7762925, 62.0095166 ], [ -6.776396, 62.00958 ], [ -6.7766314, 62.00971 ], [ -6.7767208, 62.0097679 ], [ -6.7768406, 62.0098248 ], [ -6.7770214, 62.0098803 ], [ -6.7772347, 62.0099434 ], [ -6.7774347, 62.0100061 ], [ -6.7776498, 62.0100771 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27575620.0, "name": "í Vika", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8010506, 61.99808 ], [ -6.8005392, 61.9980683 ], [ -6.8006265, 61.9986793 ], [ -6.8005974, 61.9987652 ], [ -6.800402, 61.9988218 ], [ -6.8000944, 61.9988276 ], [ -6.7990924, 61.998771 ], [ -6.7982526, 61.998732 ], [ -6.7975667, 61.9988081 ], [ -6.7968516, 61.9988725 ], [ -6.7964816, 61.998935 ], [ -6.7952011, 61.9991165 ], [ -6.7944112, 61.999216 ], [ -6.7931515, 61.9994366 ], [ -6.7922036, 61.9995732 ], [ -6.7910811, 61.9997664 ], [ -6.7901166, 61.9999987 ], [ -6.7890894, 62.000304 ], [ -6.7887643, 62.0003982 ], [ -6.788742, 62.0004047 ], [ -6.7886773, 62.0004367 ], [ -6.7886125, 62.0005294 ], [ -6.7885225, 62.0007158 ], [ -6.7884201, 62.0009891 ], [ -6.7883902, 62.0010869 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27575624.0, "name": "Á Frælsinum", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.777169, 62.0035401 ], [ -6.777433, 62.00357 ], [ -6.7776379, 62.00359 ], [ -6.7779249, 62.00362 ], [ -6.778269, 62.00366 ], [ -6.778829, 62.00372 ], [ -6.7792209, 62.0037799 ], [ -6.779591, 62.00385 ], [ -6.7799119, 62.00395 ], [ -6.78018, 62.00408 ], [ -6.780449, 62.00421 ], [ -6.7805413, 62.0042534 ], [ -6.780725, 62.0043399 ], [ -6.781002, 62.00448 ], [ -6.7812463, 62.0045981 ], [ -6.781271, 62.00461 ], [ -6.7815489, 62.00475 ], [ -6.781822, 62.00488 ], [ -6.7820393, 62.0049862 ], [ -6.782108, 62.0050199 ], [ -6.7822122, 62.0050729 ], [ -6.782383, 62.0051599 ], [ -6.782637, 62.00528 ], [ -6.7827176, 62.005318 ], [ -6.78287, 62.0053899 ], [ -6.7829183, 62.0053997 ], [ -6.783085, 62.0054899 ], [ -6.7833199, 62.0056 ], [ -6.783576, 62.00572 ], [ -6.783816, 62.0058399 ], [ -6.7840229, 62.00597 ], [ -6.784195, 62.0061 ], [ -6.7843409, 62.0062399 ], [ -6.7844943, 62.0063686 ], [ -6.784508, 62.00638 ], [ -6.784667, 62.00652 ], [ -6.784819, 62.00666 ], [ -6.7849563, 62.0068096 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27575749.0, "name": "Tórsgøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7745794, 62.011265 ], [ -6.7743998, 62.0111129 ], [ -6.774316, 62.0110406 ], [ -6.7739497, 62.0107104 ], [ -6.7738092, 62.010603 ], [ -6.7737519, 62.0105592 ], [ -6.7736111, 62.0104501 ], [ -6.7734888, 62.0103426 ], [ -6.7734268, 62.0102905 ], [ -6.7733962, 62.0102649 ], [ -6.7732694, 62.010157 ], [ -6.7731612, 62.0100595 ], [ -6.7730403, 62.0099423 ], [ -6.7729072, 62.0098211 ], [ -6.7728327, 62.0097622 ], [ -6.7727686, 62.0097043 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641275.0, "name": "Á Hjalla", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7837983, 62.0458973 ], [ -6.7839978, 62.0458912 ], [ -6.784159, 62.0458936 ], [ -6.784305, 62.04591 ], [ -6.78461, 62.04597 ], [ -6.78491, 62.04608 ], [ -6.785239, 62.0462199 ], [ -6.785585, 62.04636 ], [ -6.785942, 62.0465 ], [ -6.786308, 62.0466099 ], [ -6.7866719, 62.0467 ], [ -6.787066, 62.04677 ], [ -6.787494, 62.04685 ], [ -6.7879509, 62.04693 ], [ -6.788408, 62.04702 ], [ -6.788876, 62.0471 ], [ -6.7893469, 62.04718 ], [ -6.789829, 62.04725 ], [ -6.7903089, 62.0473399 ], [ -6.7907979, 62.0474399 ], [ -6.791296, 62.04754 ], [ -6.791782, 62.0476299 ], [ -6.7922519, 62.04772 ], [ -6.792748, 62.04778 ], [ -6.793266, 62.04781 ], [ -6.79378, 62.04782 ], [ -6.794311, 62.04782 ], [ -6.794847, 62.0478299 ], [ -6.79539, 62.04784 ], [ -6.795923, 62.0478599 ], [ -6.79644, 62.04787 ], [ -6.79696, 62.04788 ], [ -6.797475, 62.0479 ], [ -6.7979469, 62.0479599 ], [ -6.798396, 62.0480299 ], [ -6.79883, 62.04811 ], [ -6.799275, 62.0482 ], [ -6.7997182, 62.0483001 ], [ -6.8000647, 62.048372 ], [ -6.8003239, 62.048429 ], [ -6.8005566, 62.0484799 ], [ -6.8008053, 62.0485294 ], [ -6.8010777, 62.048584 ], [ -6.8013103, 62.0486249 ], [ -6.8015352, 62.0486571 ], [ -6.8019584, 62.0486807 ], [ -6.8021832, 62.0486596 ], [ -6.8024344, 62.0486001 ], [ -6.8026195, 62.0485157 ], [ -6.8027544, 62.0484352 ], [ -6.8028708, 62.0483298 ], [ -6.8029713, 62.0482008 ], [ -6.8030612, 62.0480843 ], [ -6.8031405, 62.0479777 ], [ -6.8032199, 62.047891 ], [ -6.8033415, 62.0478116 ], [ -6.8034818, 62.0477298 ], [ -6.8036563, 62.0476615 ], [ -6.8039314, 62.0475971 ], [ -6.8042117, 62.0475438 ], [ -6.8045449, 62.0475016 ], [ -6.8048808, 62.047514 ], [ -6.8052035, 62.0475388 ], [ -6.805579, 62.047576 ], [ -6.805881, 62.04761 ], [ -6.8062296, 62.0476343 ], [ -6.8065734, 62.0476591 ], [ -6.8068987, 62.0476801 ], [ -6.8071157, 62.0476876 ], [ -6.807557, 62.0476999 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641609.0, "name": "Staravegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7741806, 62.0200802 ], [ -6.7742178, 62.0201647 ], [ -6.774279, 62.0202899 ], [ -6.774343, 62.0204199 ], [ -6.7744179, 62.02057 ], [ -6.7745359, 62.0208059 ], [ -6.774538, 62.0209399 ], [ -6.7744298, 62.0209974 ], [ -6.7741859, 62.0210296 ], [ -6.7736717, 62.0210868 ], [ -6.7724681, 62.0212086 ], [ -6.7713176, 62.0213428 ], [ -6.7709955, 62.021374 ], [ -6.7692282, 62.0215919 ], [ -6.7674289, 62.02181 ], [ -6.7664509, 62.02192 ], [ -6.766073, 62.0219299 ], [ -6.765707, 62.02192 ], [ -6.7653599, 62.0218999 ], [ -6.765033, 62.02187 ], [ -6.7646223, 62.0218216 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641611.0, "name": "Heykavegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7736717, 62.0210868 ], [ -6.7736332, 62.0209716 ], [ -6.7734435, 62.0205658 ], [ -6.773316, 62.0203572 ], [ -6.773232, 62.0202177 ], [ -6.7732111, 62.0201903 ], [ -6.7731339, 62.0200893 ], [ -6.7730399, 62.0199571 ], [ -6.7729581, 62.0198306 ], [ -6.7728804, 62.019706 ], [ -6.7728761, 62.0197022 ], [ -6.7727824, 62.019618 ], [ -6.772704, 62.01958 ], [ -6.7725813, 62.0195263 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641612.0, "name": "Títlingsvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7751328, 62.0200057 ], [ -6.7748122, 62.0200208 ], [ -6.7745487, 62.0200402 ], [ -6.774414, 62.020054 ], [ -6.7741806, 62.0200802 ], [ -6.773865, 62.0201154 ], [ -6.7736262, 62.0201443 ], [ -6.7733873, 62.0201714 ], [ -6.7732111, 62.0201903 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641757.0, "name": "Jónas Broncks gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7685553, 62.0112195 ], [ -6.7683689, 62.0112024 ], [ -6.7683067, 62.0111777 ], [ -6.7681679, 62.0111224 ], [ -6.7681055, 62.0110961 ], [ -6.7679197, 62.0110179 ], [ -6.7676392, 62.0108513 ], [ -6.7674229, 62.0107324 ], [ -6.7672039, 62.0105924 ], [ -6.7670149, 62.0104839 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641873.0, "name": "Nólsoyar Páls gøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771918, 62.0108655 ], [ -6.771566, 62.010937 ], [ -6.7714274, 62.0109674 ], [ -6.7713006, 62.0109785 ], [ -6.7711928, 62.0109842 ], [ -6.7711306, 62.0109364 ], [ -6.7710907, 62.0108846 ], [ -6.7710586, 62.0108361 ], [ -6.7710331, 62.0108009 ], [ -6.7709963, 62.0107863 ], [ -6.7709157, 62.0107916 ], [ -6.7708407, 62.0108001 ], [ -6.7707451, 62.0108098 ], [ -6.7706417, 62.0108209 ], [ -6.7705263, 62.0108386 ], [ -6.770497, 62.0108431 ], [ -6.7703375, 62.0108874 ], [ -6.770184, 62.0109275 ], [ -6.7700452, 62.0109719 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641874.0, "name": "C. Pløyens gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.77087, 62.01125 ], [ -6.7708118, 62.011182 ], [ -6.7707541, 62.0111024 ], [ -6.7706478, 62.0109885 ], [ -6.770556, 62.01088 ], [ -6.7705263, 62.0108386 ], [ -6.7704869, 62.0107765 ], [ -6.7704019, 62.0106569 ], [ -6.7703352, 62.0105644 ], [ -6.7702411, 62.0104506 ], [ -6.7701743, 62.0103694 ], [ -6.7701378, 62.0103296 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641875.0, "name": "Undir Glaðsheyggi", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7701678, 62.011612 ], [ -6.770255, 62.0115595 ], [ -6.770299, 62.0115199 ], [ -6.770296, 62.0114599 ], [ -6.770288, 62.0114 ], [ -6.770268, 62.0113299 ], [ -6.7702641, 62.0113085 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641879.0, "name": "Undir Glaðsheyggi", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7702641, 62.0113085 ], [ -6.7702184, 62.0112243 ], [ -6.7701606, 62.011133 ], [ -6.770121, 62.0110531 ], [ -6.7700452, 62.0109719 ], [ -6.7699993, 62.0108976 ], [ -6.7699202, 62.0107935 ], [ -6.7698441, 62.0106921 ], [ -6.7697459, 62.0105699 ], [ -6.7696828, 62.0104853 ], [ -6.7696518, 62.0104476 ], [ -6.7696371, 62.0104296 ], [ -6.769071, 62.0099006 ], [ -6.7689649, 62.0098732 ], [ -6.7688742, 62.0098451 ], [ -6.7686238, 62.009694 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641883.0, "name": "Undir Glaðsheyggi", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7702641, 62.0113085 ], [ -6.7701971, 62.0113484 ], [ -6.7700815, 62.0113955 ], [ -6.7699567, 62.0114282 ], [ -6.7698318, 62.0114528 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27641888.0, "name": "Amtmansbrekkan", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7701378, 62.0103296 ], [ -6.7699687, 62.0103597 ], [ -6.7698524, 62.0103884 ], [ -6.7696518, 62.0104476 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27663504.0, "name": null, "ref": null, "type": "secondary", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7848738, 62.0069361 ], [ -6.784926, 62.0069603 ], [ -6.7849892, 62.0069724 ], [ -6.7850755, 62.0069708 ], [ -6.7851404, 62.0069548 ], [ -6.7851891, 62.0069259 ], [ -6.7852072, 62.0068869 ], [ -6.7851828, 62.0068459 ], [ -6.7851416, 62.0068229 ], [ -6.7850734, 62.0068062 ], [ -6.7849563, 62.0068096 ], [ -6.7848772, 62.0068389 ], [ -6.7848515, 62.0068631 ], [ -6.7848457, 62.0069027 ], [ -6.7848738, 62.0069361 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27663505.0, "name": "Mattalág", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7851891, 62.0069259 ], [ -6.785284, 62.0070065 ], [ -6.7853575, 62.0070739 ], [ -6.7854784, 62.0071852 ], [ -6.7856141, 62.007311 ], [ -6.78575, 62.0074385 ], [ -6.7857428, 62.007526 ], [ -6.7848793, 62.0078013 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27663506.0, "name": "A.C. Evensens gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7684084, 62.0119229 ], [ -6.7681375, 62.0119276 ], [ -6.7679274, 62.01193 ], [ -6.767739, 62.0119311 ], [ -6.7675964, 62.0119276 ], [ -6.7674636, 62.0119333 ], [ -6.7673041, 62.0119333 ], [ -6.767138, 62.012004 ], [ -6.7663243, 62.0122932 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27663507.0, "name": "Sólteigur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7657436, 62.0112829 ], [ -6.7656252, 62.0113511 ], [ -6.7655334, 62.0114293 ], [ -6.7654271, 62.0115225 ], [ -6.7653766, 62.0115671 ], [ -6.7653257, 62.0116121 ], [ -6.7652411, 62.0116882 ], [ -6.7650821, 62.0118217 ], [ -6.7657427, 62.0120607 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27663508.0, "name": "Lützenstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7673041, 62.0119333 ], [ -6.7672123, 62.0119061 ], [ -6.7671181, 62.0118664 ], [ -6.7670166, 62.0118085 ], [ -6.7668911, 62.0117404 ], [ -6.7667871, 62.0116745 ], [ -6.7667002, 62.011628 ], [ -6.7666084, 62.0115815 ], [ -6.7664659, 62.0115077 ], [ -6.7663451, 62.0114521 ], [ -6.7661591, 62.0113669 ], [ -6.7660504, 62.0113397 ], [ -6.7659079, 62.0113158 ], [ -6.7657436, 62.0112829 ], [ -6.7655454, 62.011225 ], [ -6.7653402, 62.0111682 ], [ -6.7651082, 62.0111103 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27663510.0, "name": "J.C. Svabos gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7806363, 62.0016524 ], [ -6.7803992, 62.0016509 ], [ -6.779669, 62.0016064 ], [ -6.7791794, 62.0016242 ], [ -6.7788676, 62.0016331 ], [ -6.7785827, 62.0016598 ], [ -6.778378, 62.0017221 ], [ -6.7782087, 62.0018023 ], [ -6.7780663, 62.0018735 ], [ -6.7779595, 62.0019893 ], [ -6.7779061, 62.0020694 ], [ -6.7776295, 62.0025831 ], [ -6.7774698, 62.0028797 ], [ -6.777169, 62.0035401 ], [ -6.7771322, 62.0036185 ], [ -6.7770605, 62.0037712 ], [ -6.7770158, 62.0038659 ], [ -6.7768873, 62.0041506 ], [ -6.776496, 62.0050177 ], [ -6.7764724, 62.0050701 ], [ -6.7764369, 62.0052482 ], [ -6.7764641, 62.0055209 ], [ -6.7764724, 62.0056043 ], [ -6.776508, 62.005669 ], [ -6.7765704, 62.0057824 ], [ -6.7768909, 62.0061297 ], [ -6.7771399, 62.0064087 ], [ -6.7774074, 62.0067084 ], [ -6.7775075, 62.0068587 ], [ -6.7776746, 62.0071091 ], [ -6.7777492, 62.0072407 ], [ -6.7778616, 62.0074386 ], [ -6.7779149, 62.0076256 ], [ -6.7778972, 62.0077324 ], [ -6.7778081, 62.0080263 ], [ -6.7778438, 62.0081776 ], [ -6.7780931, 62.0084893 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27663511.0, "name": null, "ref": null, "type": "secondary", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7806548, 62.0016672 ], [ -6.7807411, 62.0016965 ], [ -6.7808479, 62.0016967 ], [ -6.7809332, 62.0016686 ], [ -6.7809692, 62.0016196 ], [ -6.7809606, 62.0015934 ], [ -6.7809207, 62.0015622 ], [ -6.7808488, 62.0015411 ], [ -6.7807416, 62.001541 ], [ -6.7806534, 62.0015713 ], [ -6.7806213, 62.0016241 ], [ -6.7806363, 62.0016524 ], [ -6.7806548, 62.0016672 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27754789.0, "name": "Djóna í Geil gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.761251, 62.0088736 ], [ -6.7614009, 62.00894 ], [ -6.761526, 62.00899 ], [ -6.761789, 62.00911 ], [ -6.7618745, 62.0091502 ], [ -6.761959, 62.0091899 ], [ -6.762154, 62.00928 ], [ -6.762298, 62.0093299 ], [ -6.762529, 62.00943 ], [ -6.762693, 62.009528 ], [ -6.762718, 62.0095499 ], [ -6.7628409, 62.00968 ], [ -6.762949, 62.0098 ], [ -6.7629772, 62.0098389 ], [ -6.763036, 62.0099199 ], [ -6.763076, 62.01 ], [ -6.7631709, 62.0101799 ], [ -6.7631848, 62.0102006 ], [ -6.7632579, 62.0103099 ], [ -6.7633654, 62.01043 ], [ -6.7634833, 62.0105993 ], [ -6.7635908, 62.0107571 ], [ -6.7636706, 62.0108937 ], [ -6.763733, 62.0110418 ], [ -6.7637365, 62.0111459 ], [ -6.7637215, 62.011237 ], [ -6.7637121, 62.011294 ], [ -6.7636706, 62.0114355 ], [ -6.763622, 62.0116047 ], [ -6.7635354, 62.0118146 ], [ -6.7634417, 62.0120634 ], [ -6.7633446, 62.012283 ], [ -6.7632649, 62.0124946 ], [ -6.7631817, 62.0126963 ], [ -6.7630915, 62.0128932 ], [ -6.7630464, 62.0130184 ], [ -6.7629701, 62.0131827 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27754790.0, "name": "Bókbindaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.76552, 62.0095927 ], [ -6.765368, 62.0096499 ], [ -6.7651709, 62.0097356 ], [ -6.7646819, 62.0099094 ], [ -6.7643868, 62.0099874 ], [ -6.7643439, 62.0099948 ], [ -6.7641452, 62.0100291 ], [ -6.7640454, 62.010039 ], [ -6.7639096, 62.0100524 ], [ -6.7637116, 62.010083 ], [ -6.7634502, 62.0101388 ], [ -6.7633117, 62.0101704 ], [ -6.7631848, 62.0102006 ], [ -6.7625695, 62.0102676 ], [ -6.7622447, 62.010303 ], [ -6.7619363, 62.0103735 ], [ -6.7616284, 62.0104979 ], [ -6.7612661, 62.0106522 ], [ -6.7609226, 62.0108174 ], [ -6.760389, 62.0110109 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27754792.0, "name": "Sundsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7892034, 62.0266545 ], [ -6.789176, 62.0268599 ], [ -6.7891129, 62.0271624 ], [ -6.7891178, 62.0273331 ], [ -6.7892633, 62.0275196 ], [ -6.7894717, 62.0276697 ], [ -6.7897433, 62.0278222 ], [ -6.7900439, 62.0279768 ], [ -6.7902863, 62.0281133 ], [ -6.7905821, 62.0282657 ], [ -6.7908342, 62.0284022 ], [ -6.7912173, 62.0285796 ], [ -6.7912938, 62.0286201 ], [ -6.7915761, 62.0287662 ], [ -6.79193, 62.0289391 ], [ -6.7922791, 62.0291234 ], [ -6.792311, 62.0291488 ], [ -6.7925216, 62.0293167 ], [ -6.7927689, 62.0295146 ], [ -6.7929677, 62.0297103 ], [ -6.7931859, 62.0298922 ], [ -6.7933749, 62.0300742 ], [ -6.7935737, 62.0302403 ], [ -6.7937774, 62.0303699 ], [ -6.7939034, 62.0304359 ], [ -6.7940672, 62.0305319 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27754793.0, "name": "Undir Brúnni", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7940672, 62.0305319 ], [ -6.794283, 62.0304599 ], [ -6.7944659, 62.0303699 ], [ -6.794619, 62.03026 ], [ -6.794673, 62.03013 ], [ -6.79466, 62.02999 ], [ -6.7946239, 62.0298399 ], [ -6.7945717, 62.0296689 ], [ -6.7945374, 62.0295311 ], [ -6.7944885, 62.029276 ], [ -6.7944639, 62.029129 ], [ -6.7944395, 62.0288923 ], [ -6.7944776, 62.0286336 ], [ -6.7944835, 62.0285936 ], [ -6.7945619, 62.0283363 ], [ -6.7947039, 62.028072 ], [ -6.794841, 62.027856 ], [ -6.795037, 62.0276516 ], [ -6.7952427, 62.0274172 ], [ -6.7955561, 62.0272173 ], [ -6.7957177, 62.0271668 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27754794.0, "name": "Villingardalsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.79649, 62.02824 ], [ -6.796334, 62.0280276 ], [ -6.7962608, 62.0279279 ], [ -6.7961168, 62.0277132 ], [ -6.7959915, 62.027553 ], [ -6.7958879, 62.0274205 ], [ -6.7957177, 62.0271668 ], [ -6.7954859, 62.0268899 ], [ -6.7952485, 62.026573 ], [ -6.7949926, 62.0262497 ], [ -6.7948718, 62.0260331 ], [ -6.7948088, 62.0259202 ], [ -6.7945463, 62.0254707 ], [ -6.7945157, 62.0254048 ], [ -6.7944348, 62.0252306 ], [ -6.7943757, 62.024938 ], [ -6.7943297, 62.0246086 ], [ -6.7942838, 62.0244116 ], [ -6.7942379, 62.0240944 ], [ -6.7941788, 62.0238296 ], [ -6.794041, 62.0235525 ], [ -6.7938638, 62.0233924 ], [ -6.7934889, 62.02313 ], [ -6.7930686, 62.0228517 ], [ -6.7928999, 62.02274 ], [ -6.792311, 62.0223599 ], [ -6.791757, 62.0219999 ], [ -6.791429, 62.0217636 ], [ -6.7913042, 62.0216894 ], [ -6.7912133, 62.0216353 ], [ -6.7911599, 62.0216035 ], [ -6.7908843, 62.0215081 ], [ -6.790565, 62.0214399 ], [ -6.7905224, 62.0214319 ], [ -6.7901493, 62.0213614 ], [ -6.7897929, 62.02129 ], [ -6.7895681, 62.0212168 ], [ -6.789455, 62.0211799 ], [ -6.7892143, 62.0210602 ], [ -6.7890748, 62.0209902 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27777445.0, "name": "Landavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7783391, 62.0087891 ], [ -6.778658, 62.00871 ], [ -6.7789724, 62.0086196 ], [ -6.7793607, 62.0085189 ], [ -6.77969, 62.0084252 ], [ -6.7803286, 62.0082713 ], [ -6.7807823, 62.0081672 ], [ -6.781384, 62.0080237 ], [ -6.7817021, 62.0079524 ], [ -6.7817045, 62.0079519 ], [ -6.7822076, 62.0078316 ], [ -6.7826021, 62.0077159 ], [ -6.7829621, 62.0076025 ], [ -6.783258, 62.0074845 ], [ -6.7834438, 62.0074264 ], [ -6.7838054, 62.0073132 ], [ -6.7841605, 62.0071813 ], [ -6.7846142, 62.0070494 ], [ -6.784926, 62.0069603 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27777447.0, "name": "Handan Á", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.781384, 62.0080237 ], [ -6.7813022, 62.0079113 ], [ -6.781229, 62.0077799 ], [ -6.7811921, 62.0076294 ], [ -6.781197, 62.0075119 ], [ -6.7812221, 62.0073474 ], [ -6.7812622, 62.0071878 ], [ -6.7813322, 62.0070044 ], [ -6.7813973, 62.0068565 ], [ -6.7814674, 62.0066638 ], [ -6.7815086, 62.0065407 ], [ -6.7815325, 62.0064148 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27777448.0, "name": "Gríms Kambans gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7744373, 62.0092153 ], [ -6.774239, 62.0092 ], [ -6.7741009, 62.00918 ], [ -6.773949, 62.00917 ], [ -6.7738289, 62.00918 ], [ -6.7738037, 62.009187 ], [ -6.773722, 62.00921 ], [ -6.773622, 62.00925 ], [ -6.773522, 62.0093199 ], [ -6.77346, 62.0093899 ], [ -6.7734248, 62.0094572 ], [ -6.773411, 62.0094873 ], [ -6.7733419, 62.00954 ], [ -6.773229, 62.0096 ], [ -6.773129, 62.0096499 ], [ -6.773026, 62.0096899 ], [ -6.7729228, 62.0097302 ], [ -6.7728327, 62.0097622 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935041.0, "name": "Torfinsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7814965, 62.0088573 ], [ -6.7817359, 62.00898 ], [ -6.7819961, 62.0091197 ], [ -6.7821895, 62.0092279 ], [ -6.7825019, 62.0093763 ], [ -6.7832404, 62.0096171 ], [ -6.7839413, 62.0098188 ], [ -6.7847281, 62.0100422 ], [ -6.7848303, 62.0100734 ], [ -6.785342, 62.01023 ], [ -6.785861, 62.01039 ], [ -6.7862819, 62.0105604 ], [ -6.7869564, 62.0108894 ], [ -6.7871909, 62.0109999 ], [ -6.7877209, 62.01128 ], [ -6.7883581, 62.0116464 ], [ -6.7889486, 62.0119692 ], [ -6.7895469, 62.0117143 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935042.0, "name": "Vallalíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7898586, 62.0110661 ], [ -6.7883581, 62.0116464 ], [ -6.7881805, 62.0117274 ], [ -6.7872665, 62.0121227 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935044.0, "name": "Skrivaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.788364, 62.0109999 ], [ -6.7877209, 62.01128 ], [ -6.7873599, 62.0114599 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935045.0, "name": "Slættalíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7871909, 62.0109999 ], [ -6.7875174, 62.0108629 ], [ -6.7879317, 62.010691 ], [ -6.7882357, 62.010555 ], [ -6.7884679, 62.010464 ], [ -6.7888299, 62.0103099 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935047.0, "name": "Fugloyarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7825019, 62.0093763 ], [ -6.782105, 62.0095169 ], [ -6.7814415, 62.0097507 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935048.0, "name": "Fugloyarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.782105, 62.0095169 ], [ -6.7823215, 62.0097067 ], [ -6.782537, 62.0099499 ], [ -6.783069, 62.0099199 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935050.0, "name": "Jákup Nolsøes gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7825019, 62.0093763 ], [ -6.7834759, 62.00905 ], [ -6.7839302, 62.008931 ], [ -6.7844133, 62.0087976 ], [ -6.7849014, 62.0086343 ], [ -6.785514, 62.00846 ], [ -6.786236, 62.00836 ], [ -6.7870319, 62.0082399 ], [ -6.7873309, 62.0082043 ], [ -6.788192, 62.0081018 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 27935224.0, "name": "Brattabrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7834499, 62.0191194 ], [ -6.783671, 62.0189399 ], [ -6.7839499, 62.0187856 ], [ -6.784194, 62.01866 ], [ -6.7845284, 62.01853 ], [ -6.784956, 62.0183903 ], [ -6.7852746, 62.0182881 ], [ -6.7856392, 62.0181996 ], [ -6.7858559, 62.0181551 ], [ -6.7863545, 62.0180752 ], [ -6.7868096, 62.017946 ], [ -6.787596, 62.01772 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021502.0, "name": "Flatnagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7975686, 62.0031498 ], [ -6.7972362, 62.0028356 ], [ -6.7969539, 62.0026071 ], [ -6.7968306, 62.0025074 ], [ -6.7964596, 62.0021704 ], [ -6.79636, 62.00208 ], [ -6.7962165, 62.00193 ], [ -6.7960261, 62.0017309 ], [ -6.795905, 62.0015947 ], [ -6.7956899, 62.0013527 ], [ -6.795549, 62.001194 ], [ -6.7954787, 62.0011517 ], [ -6.7953769, 62.0011207 ], [ -6.7952518, 62.0011173 ], [ -6.7949499, 62.0011358 ], [ -6.7943406, 62.001182 ], [ -6.7939959, 62.0012105 ], [ -6.7937721, 62.0012361 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021503.0, "name": "Folagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7956899, 62.0013527 ], [ -6.7970407, 62.0010709 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021504.0, "name": "Kálvagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.795905, 62.0015947 ], [ -6.7950868, 62.0017436 ], [ -6.794215, 62.0019099 ], [ -6.794411, 62.0021485 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021505.0, "name": "Kálvagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.794215, 62.0019099 ], [ -6.793908, 62.00165 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021506.0, "name": "Purkugerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7962165, 62.00193 ], [ -6.7976796, 62.001614 ], [ -6.797966, 62.0015799 ], [ -6.7982459, 62.0016524 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021508.0, "name": "Øksnagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7964596, 62.0021704 ], [ -6.7946982, 62.0025113 ], [ -6.794343, 62.00258 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021510.0, "name": "Lambagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7969539, 62.0026071 ], [ -6.7990844, 62.0021205 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28021862.0, "name": "Kirkjubøarvegur", "ref": null, "type": "primary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.799599, 62.0018058 ], [ -6.8022698, 62.0012115 ], [ -6.8044642, 62.0007372 ], [ -6.8047045, 62.0006852 ], [ -6.8065456, 62.000415 ], [ -6.807551, 62.0002671 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022327.0, "name": "Velbastaðvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.807551, 62.0002671 ], [ -6.8074416, 62.0001469 ], [ -6.80732, 62.0000605 ], [ -6.8071932, 62.0000351 ], [ -6.8071287, 62.0000267 ], [ -6.8068102, 61.9999852 ], [ -6.8063341, 61.9999573 ], [ -6.8060536, 61.9999527 ], [ -6.8057467, 61.9999476 ], [ -6.8052395, 61.9999427 ], [ -6.8047789, 61.9999414 ], [ -6.8044619, 61.9999346 ], [ -6.8043183, 61.9999317 ], [ -6.8038241, 61.9999257 ], [ -6.8030866, 61.9999403 ], [ -6.8028071, 61.9999573 ], [ -6.8027115, 61.9999619 ], [ -6.8018626, 62.0000035 ], [ -6.8011019, 62.0000464 ], [ -6.8001358, 62.0000901 ], [ -6.7996217, 62.0001452 ], [ -6.7989145, 62.0002294 ], [ -6.7986523, 62.0002623 ], [ -6.7983589, 62.0002992 ], [ -6.7982293, 62.0003156 ], [ -6.798038, 62.00034 ], [ -6.7978794, 62.0003899 ], [ -6.797769, 62.0004774 ], [ -6.7976585, 62.000552 ], [ -6.7976137, 62.0005843 ], [ -6.7973952, 62.0006493 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022510.0, "name": "Granagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8272522, 61.9995901 ], [ -6.8269145, 61.9999759 ], [ -6.8268857, 62.0000235 ], [ -6.8267854, 62.0001889 ], [ -6.8267386, 62.0002522 ], [ -6.8269062, 62.0004819 ], [ -6.8270575, 62.0006652 ], [ -6.8272746, 62.0008576 ], [ -6.8273323, 62.0009105 ], [ -6.8274587, 62.0010473 ], [ -6.8275687, 62.0011286 ], [ -6.8277335, 62.0011764 ], [ -6.8280331, 62.001237 ], [ -6.8282803, 62.0012823 ], [ -6.8283931, 62.0013029 ], [ -6.8289565, 62.0014036 ], [ -6.8293193, 62.0014784 ], [ -6.8299515, 62.0015701 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022511.0, "name": "Brúnagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8299515, 62.0015701 ], [ -6.8300779, 62.00141 ], [ -6.8301604, 62.0012874 ], [ -6.8303087, 62.0012112 ], [ -6.830501, 62.00113 ], [ -6.830754, 62.0010718 ], [ -6.8309903, 62.0010396 ], [ -6.8311745, 62.0010383 ], [ -6.8313449, 62.0010577 ], [ -6.831507, 62.0010861 ], [ -6.8318698, 62.0011545 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022519.0, "name": "Blankagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8289565, 62.0014036 ], [ -6.8291022, 62.0012474 ], [ -6.8292534, 62.0010809 ], [ -6.8293606, 62.000957 ], [ -6.8294183, 62.0008834 ], [ -6.8295007, 62.0008344 ], [ -6.8296409, 62.0007749 ], [ -6.8299047, 62.0007104 ], [ -6.8300655, 62.0006805 ], [ -6.8303555, 62.0006265 ], [ -6.8308639, 62.0005245 ], [ -6.8310535, 62.0004962 ], [ -6.8312707, 62.0005039 ], [ -6.8314575, 62.0005129 ], [ -6.831595, 62.0005387 ], [ -6.8318066, 62.000571 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022523.0, "name": "Sleipnisgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8269145, 61.9999759 ], [ -6.8265092, 61.9999144 ], [ -6.8258818, 61.9998088 ], [ -6.8256597, 61.9998023 ], [ -6.8252212, 61.999724 ], [ -6.8246465, 61.9996197 ], [ -6.8240274, 61.9995102 ], [ -6.8235916, 61.9994515 ], [ -6.8231558, 61.9993968 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022529.0, "name": "Skemmingsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8267386, 62.0002522 ], [ -6.8265014, 62.0002749 ], [ -6.8262189, 62.0003222 ], [ -6.8259392, 62.0003392 ], [ -6.8257099, 62.0003209 ], [ -6.8255112, 62.0002801 ], [ -6.8252064, 62.0002237 ], [ -6.824868, 62.0001606 ], [ -6.8244848, 62.0000963 ], [ -6.8242919, 62.000066 ], [ -6.824027, 62.00001 ], [ -6.8236149, 61.9999699 ], [ -6.8232206, 61.9999268 ], [ -6.822871, 61.9998677 ], [ -6.8224969, 61.9998099 ], [ -6.822169, 61.999756 ], [ -6.8218389, 61.9997048 ], [ -6.8214781, 61.9996444 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022538.0, "name": "Faksagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8270575, 62.0006652 ], [ -6.826761, 62.0007343 ], [ -6.8264105, 62.0008051 ], [ -6.8262278, 62.00084 ], [ -6.8260175, 62.000844 ], [ -6.8257478, 62.0008261 ], [ -6.8255693, 62.0007842 ], [ -6.8252294, 62.0007213 ], [ -6.8249534, 62.0006724 ], [ -6.8246829, 62.0006299 ], [ -6.8244733, 62.0005467 ], [ -6.8243203, 62.0004698 ], [ -6.8242141, 62.000416 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28022651.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8321228027, 62.002037296314548 ], [ -6.832093, 62.0020399 ], [ -6.831721, 62.00209 ], [ -6.8314832, 62.0021361 ], [ -6.8314589, 62.0021408 ], [ -6.8312969, 62.00216 ], [ -6.8311292, 62.0022399 ], [ -6.8310257, 62.002348 ], [ -6.831018, 62.002483 ], [ -6.8309989, 62.0025856 ], [ -6.83094, 62.00272 ], [ -6.83083, 62.00284 ], [ -6.830687, 62.00295 ], [ -6.8304737, 62.0030717 ], [ -6.8303204, 62.0031815 ], [ -6.8302437, 62.0032518 ], [ -6.8301594, 62.003376 ], [ -6.8300712, 62.0034822 ], [ -6.8299754, 62.0035992 ], [ -6.8298105, 62.0037073 ], [ -6.8296935, 62.0037921 ], [ -6.8294727, 62.0038283 ], [ -6.8291151, 62.0038691 ], [ -6.8287618, 62.0039326 ], [ -6.8283831, 62.0038929 ], [ -6.8281122, 62.0037519 ], [ -6.8278181, 62.0036506 ], [ -6.8275008, 62.0036019 ], [ -6.827213, 62.0035691 ], [ -6.827158, 62.0035423 ], [ -6.8271326, 62.0034817 ], [ -6.8270417, 62.0034241 ], [ -6.826828, 62.003301 ], [ -6.8267497, 62.0032652 ], [ -6.8266122, 62.0032722 ], [ -6.8263244, 62.0033 ], [ -6.8263166, 62.0033465 ], [ -6.8263078, 62.0033954 ], [ -6.8263521, 62.0034995 ], [ -6.8263499, 62.0035526 ], [ -6.8263499, 62.0036213 ], [ -6.8263078, 62.0036775 ], [ -6.8262324, 62.0037389 ], [ -6.8261592, 62.0038055 ], [ -6.8260882, 62.0038492 ], [ -6.8259862, 62.0038659 ], [ -6.8258754, 62.0038867 ], [ -6.8257601, 62.0038898 ], [ -6.8256403, 62.0039117 ], [ -6.8255006, 62.0039284 ], [ -6.8253277, 62.0039523 ], [ -6.8252101, 62.0039783 ], [ -6.8250372, 62.0040002 ], [ -6.8248576, 62.004021 ], [ -6.8247001, 62.0040512 ], [ -6.8245338, 62.0040709 ], [ -6.8243786, 62.0040824 ], [ -6.8242788, 62.0040824 ], [ -6.8241547, 62.0040626 ], [ -6.8240571, 62.0040449 ], [ -6.8239684, 62.0040314 ], [ -6.8238908, 62.0040324 ], [ -6.8237821, 62.0040595 ], [ -6.8236934, 62.0040928 ], [ -6.823567, 62.004175 ], [ -6.8234429, 62.0042521 ], [ -6.8232766, 62.0043582 ], [ -6.8231701, 62.004403 ], [ -6.8230814, 62.0044642 ], [ -6.8229945, 62.0046006 ], [ -6.8229772, 62.0047519 ], [ -6.8229599, 62.0048999 ], [ -6.8229555, 62.004964 ], [ -6.8229426, 62.005152 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28220629.0, "name": "Niels Finsens gøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.776442, 62.0132198 ], [ -6.7765311, 62.0132755 ], [ -6.7766108, 62.013316 ], [ -6.7767299, 62.0133576 ], [ -6.7768898, 62.0134377 ], [ -6.7770574, 62.0135184 ], [ -6.7771374, 62.0136347 ], [ -6.7772807, 62.0137661 ], [ -6.7773947, 62.0138709 ], [ -6.7774951, 62.0139714 ], [ -6.7775594, 62.0139908 ], [ -6.7776466, 62.0139962 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248312.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7780097, 62.014904 ], [ -6.7779978, 62.0148997 ], [ -6.7778647, 62.0148323 ], [ -6.7777343, 62.0147648 ], [ -6.7776407, 62.0146849 ], [ -6.7774601, 62.014561 ], [ -6.7771977, 62.0144465 ], [ -6.7770322, 62.0144002 ], [ -6.7769603, 62.0143743 ], [ -6.7768634, 62.0143163 ], [ -6.7768199, 62.0142535 ], [ -6.7768467, 62.0141815 ], [ -6.7768702, 62.0141101 ], [ -6.7768615, 62.0140647 ], [ -6.7768175, 62.0140087 ], [ -6.7767697, 62.0138955 ], [ -6.7766876, 62.013815 ], [ -6.7766523, 62.013753 ], [ -6.776636, 62.0136897 ], [ -6.776612, 62.0136241 ], [ -6.7765931, 62.013533 ], [ -6.7765805, 62.0134828 ], [ -6.7765478, 62.0134391 ], [ -6.7764143, 62.0133287 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248313.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.779086, 62.0178435 ], [ -6.7789929, 62.017741 ], [ -6.7788707, 62.0176285 ], [ -6.7787449, 62.01752 ], [ -6.7785676, 62.017326 ], [ -6.7784951, 62.0172549 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248314.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7784951, 62.0172549 ], [ -6.778321, 62.01712 ], [ -6.7781615, 62.0169735 ], [ -6.778153, 62.0169658 ], [ -6.7779237, 62.0167562 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248316.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7803461, 62.0164356 ], [ -6.7804088, 62.0164327 ], [ -6.7804699, 62.0164227 ], [ -6.780511, 62.0164099 ], [ -6.780545, 62.0163917 ], [ -6.780554, 62.01637 ], [ -6.78054, 62.0163199 ], [ -6.7805319, 62.01629 ], [ -6.780551, 62.0162502 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248317.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7802719, 62.01643 ], [ -6.7802247, 62.0164547 ], [ -6.7801428, 62.0164678 ], [ -6.7800345, 62.0164626 ], [ -6.7799386, 62.0164586 ], [ -6.7797858, 62.0164509 ], [ -6.7795249, 62.0164799 ], [ -6.7793885, 62.0164971 ], [ -6.779269, 62.0164918 ], [ -6.7791759, 62.0164756 ], [ -6.7790704, 62.0165056 ], [ -6.778983, 62.01657 ], [ -6.7788883, 62.0166306 ], [ -6.7787634, 62.0166991 ], [ -6.7786633, 62.0167637 ], [ -6.778603, 62.0168024 ], [ -6.7785966, 62.0168131 ], [ -6.778477, 62.01686 ], [ -6.778341, 62.0169148 ], [ -6.778241, 62.0169533 ], [ -6.7781615, 62.0169735 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248318.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762107, 62.0153558 ], [ -6.776256, 62.01551 ], [ -6.7763342, 62.0157125 ], [ -6.7764319, 62.01601 ], [ -6.776515, 62.0162199 ], [ -6.7765264, 62.0163335 ], [ -6.776528, 62.0163499 ], [ -6.7765309, 62.01653 ], [ -6.7765847, 62.0166249 ], [ -6.7766404, 62.0167048 ], [ -6.7767836, 62.0167883 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248319.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770255, 62.0180479 ], [ -6.7769562, 62.018193 ], [ -6.7769156, 62.0183161 ], [ -6.7768011, 62.018479 ], [ -6.7766767, 62.0186224 ], [ -6.7766237, 62.0186835 ], [ -6.7765609, 62.0187563 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248321.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7765609, 62.0187563 ], [ -6.7765166, 62.0188221 ], [ -6.7764831, 62.0189008 ], [ -6.7765049, 62.0189699 ], [ -6.7765614, 62.0190515 ], [ -6.7765777, 62.019114 ], [ -6.7765582, 62.0191623 ], [ -6.7765521, 62.0191899 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248322.0, "name": "Gundadalur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7776129, 62.0196105 ], [ -6.7777416, 62.0196556 ], [ -6.777832, 62.01972 ], [ -6.7778859, 62.01981 ], [ -6.7779416, 62.0199055 ], [ -6.7779308, 62.0200075 ], [ -6.7779025, 62.020136 ], [ -6.777846, 62.0203023 ], [ -6.7777786, 62.0204114 ], [ -6.7776937, 62.0205266 ], [ -6.7776525, 62.020599 ], [ -6.7776177, 62.0206796 ], [ -6.777288, 62.0207698 ], [ -6.7770674, 62.0207919 ], [ -6.7766, 62.0208387 ], [ -6.7764511, 62.0209931 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248323.0, "name": "Gundadalsvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7887439, 62.0209799 ], [ -6.7888519, 62.02091 ], [ -6.7888279, 62.02086 ], [ -6.7885792, 62.0207747 ], [ -6.7882392, 62.0206689 ], [ -6.7879704, 62.0205706 ], [ -6.787818, 62.02053 ], [ -6.787712, 62.02053 ], [ -6.7876039, 62.02053 ], [ -6.7874635, 62.0205451 ], [ -6.7874029, 62.02047 ], [ -6.787211, 62.0203899 ], [ -6.786969, 62.02031 ], [ -6.7867159, 62.02023 ], [ -6.786449, 62.02015 ], [ -6.786175, 62.02005 ], [ -6.785884, 62.01995 ], [ -6.785583, 62.0198599 ], [ -6.785266, 62.0197599 ], [ -6.784956, 62.01965 ], [ -6.7848178, 62.0196014 ], [ -6.7847698, 62.0195846 ], [ -6.7846429, 62.01954 ], [ -6.7843259, 62.0194299 ], [ -6.784006, 62.0192999 ], [ -6.7834946, 62.0191347 ], [ -6.7834499, 62.0191194 ], [ -6.7829723, 62.0189565 ], [ -6.7827603, 62.0188634 ], [ -6.7825161, 62.0187638 ], [ -6.7823272, 62.0186873 ], [ -6.782054, 62.0185844 ], [ -6.7817241, 62.0184794 ], [ -6.7814127, 62.0183727 ], [ -6.7810336, 62.01824 ], [ -6.7806245, 62.0181227 ], [ -6.7801872, 62.0180149 ], [ -6.7797941, 62.0179295 ], [ -6.7794221, 62.0178646 ], [ -6.779086, 62.0178435 ], [ -6.7787773, 62.0178608 ], [ -6.7783894, 62.0179053 ], [ -6.7780175, 62.0179685 ], [ -6.7776533, 62.0180056 ], [ -6.777313, 62.0180391 ], [ -6.7770255, 62.0180479 ], [ -6.776913, 62.01805 ], [ -6.776709, 62.01805 ], [ -6.776436, 62.0180199 ], [ -6.7760999, 62.01795 ], [ -6.775796, 62.0179199 ], [ -6.7755201, 62.01789 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248324.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7887439, 62.0209799 ], [ -6.7889001, 62.02106 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248325.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7816437, 62.0221469 ], [ -6.7814912, 62.0221657 ], [ -6.7813391, 62.0221609 ], [ -6.7811505, 62.0221623 ], [ -6.7811492, 62.0221429 ], [ -6.7811852, 62.0220646 ], [ -6.7812194, 62.0219887 ], [ -6.781229, 62.021933 ], [ -6.7812358, 62.0218806 ], [ -6.7812097, 62.021833 ], [ -6.7811969, 62.0217883 ], [ -6.7811509, 62.0217311 ], [ -6.7810783, 62.0216853 ], [ -6.78097, 62.0216216 ], [ -6.7808398, 62.021574 ], [ -6.7807007, 62.0215239 ], [ -6.7805508, 62.021482 ], [ -6.7803605, 62.0214677 ], [ -6.7801999, 62.0214714 ], [ -6.7800378, 62.0214778 ], [ -6.7798826, 62.0214967 ], [ -6.7797406, 62.0215087 ], [ -6.7795847, 62.021534 ], [ -6.7793792, 62.0215534 ], [ -6.7792138, 62.0215677 ], [ -6.7790934, 62.0215849 ], [ -6.7789744, 62.0215957 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28248326.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7777072, 62.020892 ], [ -6.7777, 62.02099 ], [ -6.7777096, 62.0210987 ], [ -6.7777212, 62.021155 ], [ -6.7777259, 62.0212099 ], [ -6.777778, 62.0212399 ], [ -6.7778966, 62.0212601 ], [ -6.7780328, 62.0212828 ], [ -6.7781829, 62.0213012 ], [ -6.7784253, 62.0213369 ], [ -6.7785846, 62.0213629 ], [ -6.778728, 62.02139 ], [ -6.7788178, 62.0214236 ], [ -6.7788709, 62.0214572 ], [ -6.7789009, 62.0214918 ], [ -6.7789517, 62.0215655 ], [ -6.7789744, 62.0215957 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354377.0, "name": "Undir Heygnum", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7882751, 62.0015977 ], [ -6.7874969, 62.0015237 ], [ -6.7874143, 62.0015122 ], [ -6.7868707, 62.0014362 ], [ -6.7865784, 62.001406 ], [ -6.7860347, 62.0013499 ], [ -6.7857448, 62.0013754 ], [ -6.7855315, 62.0014317 ], [ -6.785369, 62.0014357 ], [ -6.7851162, 62.0014477 ], [ -6.7847887, 62.0014714 ], [ -6.7846266, 62.0014894 ], [ -6.7844523, 62.0015011 ], [ -6.7843964, 62.0015354 ], [ -6.7842774, 62.0015909 ], [ -6.7842, 62.0016695 ], [ -6.784125, 62.0017634 ], [ -6.7840703, 62.0018333 ], [ -6.7840863, 62.0018841 ], [ -6.7841536, 62.0019516 ], [ -6.7842474, 62.0020537 ], [ -6.7844275, 62.0022279 ], [ -6.7845701, 62.0023442 ], [ -6.7847014, 62.002485 ], [ -6.7847314, 62.0025149 ], [ -6.784754, 62.002617 ], [ -6.7847652, 62.0027104 ], [ -6.7848178, 62.0027386 ], [ -6.7848966, 62.0027403 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354378.0, "name": "Í Brekkuni", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.787835, 62.0023502 ], [ -6.7860611, 62.0021415 ], [ -6.7852604, 62.0020473 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354379.0, "name": "Eystan Heyg", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7879053, 62.0037151 ], [ -6.7868158, 62.003842 ], [ -6.7858506, 62.0039393 ], [ -6.7848774, 62.0039317 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354380.0, "name": "Haraldstrøð", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7858506, 62.0039393 ], [ -6.785918, 62.00409 ], [ -6.7858604, 62.0044044 ], [ -6.785843, 62.0044999 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354381.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7858604, 62.0044044 ], [ -6.7841237, 62.0043897 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354382.0, "name": "Suðurrás", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7841237, 62.0043897 ], [ -6.783677, 62.0044014 ], [ -6.783052, 62.0044474 ], [ -6.7823016, 62.0044752 ], [ -6.7818203, 62.0044817 ], [ -6.7815557, 62.0045041 ], [ -6.7813915, 62.0045405 ], [ -6.7812463, 62.0045981 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354383.0, "name": "Miðrás", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7820393, 62.0049862 ], [ -6.7822178, 62.0049065 ], [ -6.782393, 62.00484 ], [ -6.7824805, 62.0048326 ], [ -6.7827241, 62.0048205 ], [ -6.7830558, 62.0048076 ], [ -6.783315, 62.0047999 ], [ -6.7835949, 62.0048083 ], [ -6.7838818, 62.0048019 ], [ -6.7843432, 62.0047775 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354384.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7777492, 62.0072407 ], [ -6.7780778, 62.0071983 ], [ -6.7778973, 62.0068217 ], [ -6.7775075, 62.0068587 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354385.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7780778, 62.0071983 ], [ -6.7781004, 62.0072449 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354387.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7776129, 62.0196105 ], [ -6.7774772, 62.0195901 ], [ -6.7765521, 62.0191899 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28354507.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.77704, 62.0090937 ], [ -6.7772302, 62.0092175 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28377302.0, "name": null, "ref": null, "type": "steps", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7738199, 62.0125176 ], [ -6.7735149, 62.0126122 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28377304.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7724657, 62.0118121 ], [ -6.7723773, 62.0116907 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28377305.0, "name": "Hoyvíksvegur", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7685553, 62.0112195 ], [ -6.7683972, 62.0109572 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28377307.0, "name": "M.A. Winthers gøta", "ref": null, "type": "unclassified", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7675963, 62.0096827 ], [ -6.7666569, 62.0100219 ], [ -6.7663547, 62.0101254 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28377309.0, "name": "J.H. Schrøters gøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7682808, 62.0100814 ], [ -6.7680448, 62.0099532 ], [ -6.7679595, 62.0099011 ], [ -6.7675963, 62.0096827 ], [ -6.7664591, 62.0090287 ], [ -6.7663159, 62.0089531 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28527115.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7785472, 62.0097861 ], [ -6.778769, 62.0099198 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28527117.0, "name": "Dalatún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.778769, 62.0099198 ], [ -6.7795134, 62.0104035 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28527123.0, "name": "Mortansstovubrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7789147, 62.0106167 ], [ -6.7785299, 62.0107699 ], [ -6.7784732, 62.0107775 ], [ -6.7783794, 62.0107804 ], [ -6.7782793, 62.0107804 ], [ -6.7781251, 62.0107692 ], [ -6.777458, 62.01072 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28527129.0, "name": "Lítla Tvørgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7777029, 62.0117049 ], [ -6.7769277, 62.0119333 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28527131.0, "name": "Ovara Tvørgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7772294, 62.0121979 ], [ -6.7779128, 62.0120162 ], [ -6.7780385, 62.0119855 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 28527134.0, "name": "Tvørgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7765857, 62.011669 ], [ -6.7773267, 62.0114997 ], [ -6.7773944, 62.0114951 ], [ -6.7774326, 62.0115036 ], [ -6.7777029, 62.0117049 ], [ -6.7780385, 62.0119855 ], [ -6.7783293, 62.0122386 ], [ -6.7788931, 62.0126656 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439300.0, "name": "Klingran", "ref": null, "type": "tertiary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7664964, 62.0353893 ], [ -6.766771, 62.03537 ], [ -6.766922, 62.0354199 ], [ -6.766958, 62.03551 ], [ -6.766876, 62.0356199 ], [ -6.7668089, 62.03577 ], [ -6.7667509, 62.03593 ], [ -6.7667689, 62.0361099 ], [ -6.766863, 62.03628 ], [ -6.767021, 62.0364399 ], [ -6.7671999, 62.03659 ], [ -6.76739, 62.03674 ], [ -6.7675719, 62.0368999 ], [ -6.767751, 62.03704 ], [ -6.7680347, 62.0371645 ], [ -6.7682909, 62.0372279 ], [ -6.7687431, 62.0372583 ], [ -6.7688158, 62.0372618 ], [ -6.7688887, 62.0372654 ], [ -6.7691148, 62.037249 ], [ -6.76925, 62.03722 ], [ -6.7694313, 62.0371645 ], [ -6.7696674, 62.0371082 ], [ -6.7699085, 62.0370636 ], [ -6.7703706, 62.0370566 ], [ -6.7708128, 62.0370777 ], [ -6.7711745, 62.0370801 ], [ -6.7713905, 62.0370848 ], [ -6.7715864, 62.0371106 ], [ -6.7719199, 62.037118 ], [ -6.7722127, 62.0371357 ], [ -6.7725055, 62.0371942 ], [ -6.7728331, 62.0372907 ], [ -6.7732129, 62.0374157 ], [ -6.7734419, 62.0374919 ], [ -6.7737608, 62.0375639 ], [ -6.7741812, 62.0376197 ], [ -6.774532, 62.03764 ], [ -6.7747784, 62.0376332 ], [ -6.7750393, 62.0375993 ], [ -6.7753089, 62.0375558 ], [ -6.7755669, 62.0374837 ], [ -6.775767, 62.037413 ], [ -6.7759844, 62.0373342 ], [ -6.7762018, 62.0372349 ], [ -6.7765236, 62.0371194 ], [ -6.776886, 62.0370378 ], [ -6.7773218, 62.0369536 ], [ -6.7777748, 62.0368452 ], [ -6.7783682, 62.0367581 ], [ -6.7789525, 62.0366562 ], [ -6.7796048, 62.0365903 ], [ -6.7801167, 62.0365818 ], [ -6.780692, 62.0365564 ], [ -6.7813171, 62.0365733 ], [ -6.7819469, 62.0366162 ], [ -6.7824022, 62.036678 ], [ -6.7828293, 62.036739 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439305.0, "name": "Ovaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.772747, 62.0394 ], [ -6.7727524, 62.0393451 ], [ -6.7727801, 62.0392176 ], [ -6.7727872, 62.0391824 ], [ -6.7728079, 62.039081 ], [ -6.7728716, 62.0389505 ], [ -6.7729517, 62.0387398 ], [ -6.77294, 62.0386525 ], [ -6.7729353, 62.038617 ], [ -6.7729255, 62.0385269 ], [ -6.77287, 62.0384072 ], [ -6.7727866, 62.0382873 ], [ -6.7726086, 62.0381683 ], [ -6.7725794, 62.0381434 ], [ -6.7724926, 62.0380698 ], [ -6.7723619, 62.0379515 ], [ -6.7722508, 62.037853 ], [ -6.7720694, 62.0377203 ], [ -6.7719469, 62.0376676 ], [ -6.7717851, 62.0376256 ], [ -6.7716216, 62.0375986 ], [ -6.7713804, 62.0376033 ], [ -6.7710409, 62.03761 ], [ -6.770625, 62.0376 ], [ -6.7703757, 62.0375893 ], [ -6.7701647, 62.0375916 ], [ -6.7700692, 62.0376174 ], [ -6.770009, 62.0376573 ], [ -6.7699336, 62.0377207 ], [ -6.7699085, 62.0378004 ], [ -6.7698985, 62.0378661 ], [ -6.7699319, 62.0379371 ], [ -6.7699729, 62.0379799 ], [ -6.770057, 62.03802 ], [ -6.7701733, 62.0380379 ], [ -6.770287, 62.0380499 ], [ -6.770438, 62.0380558 ], [ -6.7705661, 62.0380519 ], [ -6.7707455, 62.0380508 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439307.0, "name": "Ovaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7727872, 62.0391824 ], [ -6.7720923, 62.0391558 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439309.0, "name": "Ovaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.77294, 62.0386525 ], [ -6.7718216, 62.0386356 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439310.0, "name": "Ovaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7725794, 62.0381434 ], [ -6.7717926, 62.0381485 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439323.0, "name": "Niðaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7688158, 62.0372618 ], [ -6.7687923, 62.0374557 ], [ -6.7687627, 62.0376527 ], [ -6.7687834, 62.0377215 ], [ -6.7688394, 62.0378042 ], [ -6.7689839, 62.0378799 ], [ -6.7690782, 62.0379791 ], [ -6.7691254, 62.0380838 ], [ -6.7691402, 62.0381609 ], [ -6.7691844, 62.0382435 ], [ -6.7693701, 62.0383455 ], [ -6.7696532, 62.0385093 ], [ -6.76978, 62.038541 ], [ -6.769954, 62.0385658 ], [ -6.7701427, 62.0385755 ], [ -6.7703992, 62.038581 ], [ -6.7706262, 62.0385892 ], [ -6.770809, 62.0386044 ], [ -6.7709447, 62.0386333 ], [ -6.771098, 62.0387008 ], [ -6.771216, 62.0387972 ], [ -6.7712573, 62.0388895 ], [ -6.771275, 62.0389817 ], [ -6.7713457, 62.039092 ], [ -6.7714283, 62.039165 ], [ -6.7714813, 62.0392655 ], [ -6.7714932, 62.0393646 ], [ -6.7714813, 62.0394693 ], [ -6.7714725, 62.039585 ], [ -6.7714578, 62.0396883 ], [ -6.7714578, 62.0398233 ], [ -6.7714579, 62.03994 ], [ -6.7714666, 62.0400505 ], [ -6.7714843, 62.0401663 ], [ -6.7715403, 62.0402337 ], [ -6.7716583, 62.0403164 ], [ -6.771788, 62.0404087 ], [ -6.7719355, 62.0404665 ], [ -6.7721153, 62.0405078 ], [ -6.7722745, 62.0405188 ], [ -6.7725179, 62.04052 ], [ -6.7727345, 62.0405188 ], [ -6.77282, 62.0405023 ], [ -6.7728938, 62.0404775 ], [ -6.7729203, 62.0404252 ], [ -6.772935, 62.0403357 ], [ -6.7729394, 62.0401909 ], [ -6.772942, 62.0401099 ], [ -6.7729674, 62.0398453 ], [ -6.7729527, 62.0397655 ], [ -6.772882, 62.0397062 ], [ -6.7727699, 62.0396676 ], [ -6.7725665, 62.0396484 ], [ -6.77236, 62.0396415 ], [ -6.7720416, 62.0396374 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439324.0, "name": "Niðaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7729394, 62.0401909 ], [ -6.7720298, 62.0401704 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 29439336.0, "name": "Flatarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7841128, 62.0287082 ], [ -6.7841631, 62.0288577 ], [ -6.7841834, 62.028918 ], [ -6.784268, 62.0291093 ], [ -6.7844305, 62.0292576 ], [ -6.7845786, 62.0294225 ], [ -6.7846846, 62.0296237 ], [ -6.7848187, 62.0297654 ], [ -6.7848777, 62.0298053 ], [ -6.7850235, 62.029904 ], [ -6.7850915, 62.0299493 ], [ -6.7852564, 62.030059 ], [ -6.7854047, 62.0302172 ], [ -6.7855099, 62.0303648 ], [ -6.7855529, 62.030425 ], [ -6.7857364, 62.0305734 ], [ -6.7860894, 62.0307152 ], [ -6.7864072, 62.030847 ], [ -6.7866754, 62.0309955 ], [ -6.7869366, 62.0311537 ], [ -6.7872896, 62.0313615 ], [ -6.7874689, 62.0314391 ], [ -6.7876143, 62.0314934 ], [ -6.7880943, 62.0316715 ], [ -6.7882029, 62.0317112 ], [ -6.7884544, 62.0318033 ], [ -6.7887368, 62.0319122 ], [ -6.7892663, 62.0321199 ], [ -6.789584, 62.0322617 ], [ -6.7897821, 62.0324071 ], [ -6.7898311, 62.0324431 ], [ -6.7901063, 62.0326739 ], [ -6.7902758, 62.0328091 ], [ -6.7905653, 62.0329641 ], [ -6.7908829, 62.0330861 ], [ -6.7911371, 62.0331422 ], [ -6.7912717, 62.0331635 ], [ -6.791596, 62.0332147 ], [ -6.7914619, 62.0334323 ], [ -6.7913418, 62.0335873 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30014745.0, "name": "Gripsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7726514, 62.0120417 ], [ -6.7725672, 62.0120472 ], [ -6.772495, 62.0120539 ], [ -6.7723992, 62.0120918 ], [ -6.772283, 62.0121226 ], [ -6.7721718, 62.0122103 ], [ -6.7721011, 62.0123074 ], [ -6.7720429, 62.0123727 ], [ -6.7719744, 62.012433 ], [ -6.771892, 62.01249 ], [ -6.7717589, 62.01255 ], [ -6.7716946, 62.0126019 ], [ -6.7716403, 62.0126393 ], [ -6.7715055, 62.0126663 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30096344.0, "name": "Slættanesgøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8027115, 61.9999619 ], [ -6.8023803, 61.9986756 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30096345.0, "name": "Akranesgøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8044619, 61.9999346 ], [ -6.8041382, 61.9985042 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30096346.0, "name": "Stiðjagøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7982293, 62.0003156 ], [ -6.7979454, 61.9999836 ], [ -6.7977701, 61.9996033 ], [ -6.7974739, 61.999011 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30102909.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7856492, 62.021687 ], [ -6.7854396, 62.0225337 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30103409.0, "name": "Erlings jals gøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7686238, 62.009694 ], [ -6.7687814, 62.0096242 ], [ -6.7690289, 62.0095325 ], [ -6.769277, 62.0094562 ], [ -6.7693564, 62.0094437 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120772.0, "name": "Pedda við Stein gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7793916, 62.013723 ], [ -6.7805579, 62.01344 ], [ -6.7806125, 62.0134221 ], [ -6.7810511, 62.0132786 ], [ -6.7812716, 62.0131692 ], [ -6.7813132, 62.0130931 ], [ -6.7813424, 62.01297 ], [ -6.7814172, 62.0128079 ], [ -6.7814552, 62.0127763 ], [ -6.7815629, 62.0126869 ], [ -6.7817555, 62.0125494 ], [ -6.781771, 62.0125385 ], [ -6.78186, 62.01245 ], [ -6.7820129, 62.01237 ], [ -6.7821971, 62.0122679 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120773.0, "name": "Sílagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7814552, 62.0127763 ], [ -6.7815826, 62.0128289 ], [ -6.7816697, 62.012884 ], [ -6.7817426, 62.0129381 ], [ -6.7818061, 62.0129724 ], [ -6.7818861, 62.01299 ], [ -6.7819614, 62.0129878 ], [ -6.7820178, 62.0129767 ], [ -6.782079, 62.0129613 ], [ -6.7821143, 62.0129701 ], [ -6.782158, 62.0129999 ], [ -6.7824695, 62.0131942 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120774.0, "name": "Lauritsargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7817555, 62.0125494 ], [ -6.781572, 62.0125 ], [ -6.7813475, 62.012442 ], [ -6.7811946, 62.0123937 ], [ -6.7810701, 62.0123337 ], [ -6.7809458, 62.0122669 ], [ -6.7807964, 62.0121818 ], [ -6.780688, 62.0120992 ], [ -6.780608, 62.0120333 ], [ -6.780492, 62.01193 ], [ -6.78041, 62.01186 ], [ -6.7803201, 62.011799 ], [ -6.7802134, 62.0117297 ], [ -6.7800766, 62.0116488 ], [ -6.7799965, 62.0116038 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120777.0, "name": "Pedda við Stein gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7806125, 62.0134221 ], [ -6.780764, 62.013537 ], [ -6.781022, 62.0137327 ], [ -6.781314, 62.01393 ], [ -6.7813944, 62.0139851 ], [ -6.7814932, 62.0139911 ], [ -6.7816587, 62.0139732 ], [ -6.7818179, 62.0139299 ], [ -6.78205, 62.0139 ], [ -6.7822717, 62.0138797 ], [ -6.782405, 62.0138556 ], [ -6.7823401, 62.0137386 ], [ -6.7822891, 62.0136475 ], [ -6.7821777, 62.0135593 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120778.0, "name": "Mariugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7801515, 62.0142229 ], [ -6.780232, 62.0144137 ], [ -6.7802701, 62.0144636 ], [ -6.7803589, 62.0145799 ], [ -6.780494, 62.0147699 ], [ -6.7805749, 62.01495 ], [ -6.78072, 62.01508 ], [ -6.780827, 62.0151445 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120779.0, "name": "Varðabú", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7815349, 62.0147793 ], [ -6.782677, 62.01452 ], [ -6.7832176, 62.0143632 ], [ -6.784175, 62.01406 ], [ -6.7846538, 62.0143 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120780.0, "name": "Varðabú", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7832176, 62.0143632 ], [ -6.7836221, 62.0146438 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120781.0, "name": "Varðabú", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7834228, 62.0147015 ], [ -6.7836221, 62.0146438 ], [ -6.7837678, 62.0146041 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120782.0, "name": "Dalagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7827228, 62.0156149 ], [ -6.7829592, 62.0155794 ], [ -6.7839, 62.0153524 ], [ -6.7843959, 62.0152328 ], [ -6.7846714, 62.0151412 ], [ -6.7854009, 62.0148989 ], [ -6.7863385, 62.0146456 ], [ -6.7867938, 62.014481 ], [ -6.7870838, 62.0143686 ], [ -6.7871307, 62.0143316 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120783.0, "name": "Hanusargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7861513, 62.0140695 ], [ -6.7859979, 62.014125 ], [ -6.7858562, 62.0141676 ], [ -6.7857449, 62.014174 ], [ -6.7856707, 62.014155 ], [ -6.7856134, 62.0141312 ], [ -6.785437, 62.0140499 ], [ -6.7852289, 62.0139509 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120784.0, "name": "Dalastígur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7859504, 62.0134515 ], [ -6.7859405, 62.0134634 ], [ -6.785899, 62.01352 ], [ -6.785897, 62.01358 ], [ -6.7859102, 62.0136391 ], [ -6.7859607, 62.0137134 ], [ -6.7859912, 62.0137815 ], [ -6.7860147, 62.0138812 ], [ -6.7860229, 62.01398 ], [ -6.7860889, 62.0140473 ], [ -6.7861513, 62.0140695 ], [ -6.786237, 62.0141 ], [ -6.786386, 62.01413 ], [ -6.7869169, 62.0142499 ], [ -6.7870016, 62.0142777 ], [ -6.7871064, 62.0143176 ], [ -6.7871307, 62.0143316 ], [ -6.7872458, 62.0144003 ], [ -6.7873166, 62.0144731 ], [ -6.7874739, 62.0146 ], [ -6.787612, 62.01472 ], [ -6.787818, 62.01488 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120785.0, "name": "Lynggøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7863385, 62.0146456 ], [ -6.7865408, 62.0148007 ], [ -6.7867702, 62.0149906 ], [ -6.7869523, 62.0151425 ], [ -6.7870568, 62.0152423 ], [ -6.787099, 62.01535 ], [ -6.7871277, 62.0154242 ], [ -6.7871142, 62.0155176 ], [ -6.787166, 62.01558 ], [ -6.7871951, 62.0156126 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120787.0, "name": "Heiðavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7846714, 62.0151412 ], [ -6.7849389, 62.0153182 ], [ -6.7851216, 62.0154309 ], [ -6.7853672, 62.0155825 ], [ -6.785637, 62.0157819 ], [ -6.7858259, 62.0159307 ], [ -6.7861564, 62.0161696 ], [ -6.7864565, 62.0164118 ], [ -6.7865577, 62.0165131 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120788.0, "name": "Heiðastubbi", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7851216, 62.0154309 ], [ -6.7857382, 62.0152296 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120789.0, "name": "Heiðaskákið", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.785637, 62.0157819 ], [ -6.7861227, 62.015679 ], [ -6.786291, 62.01578 ], [ -6.7865611, 62.0159529 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120790.0, "name": "Kráarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7839, 62.0153524 ], [ -6.7841632, 62.015524 ], [ -6.7842205, 62.0155825 ], [ -6.7841969, 62.0156332 ], [ -6.7842373, 62.0156901 ], [ -6.7845106, 62.015926 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30120792.0, "name": "Heygsbreyt", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7797001, 62.0122219 ], [ -6.7793939, 62.0119497 ], [ -6.779282, 62.0118199 ], [ -6.779202, 62.01174 ], [ -6.7790929, 62.0116499 ], [ -6.779011, 62.0115599 ], [ -6.778926, 62.01147 ], [ -6.7789, 62.01141 ], [ -6.778953, 62.01132 ], [ -6.7790359, 62.01124 ], [ -6.779124, 62.01115 ], [ -6.7792069, 62.01108 ], [ -6.7793583, 62.0110107 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30703931.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7751555, 62.0109811 ], [ -6.775256, 62.0110877 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30703932.0, "name": "Magnus Heinasonar gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7741772, 62.01012 ], [ -6.7746228, 62.0105325 ], [ -6.7751555, 62.0109811 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30703933.0, "name": "Tróndargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7751125, 62.0103981 ], [ -6.7748923, 62.010187 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30703934.0, "name": "Tróndargøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7748923, 62.010187 ], [ -6.7746924, 62.0100094 ], [ -6.7746471, 62.009969 ], [ -6.7743856, 62.0097421 ], [ -6.774154, 62.0095529 ], [ -6.7739816, 62.0094061 ], [ -6.7739431, 62.0093651 ], [ -6.7738037, 62.009187 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30703935.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7741772, 62.01012 ], [ -6.7744957, 62.0100523 ], [ -6.7746924, 62.0100094 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 30703936.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7746924, 62.0100094 ], [ -6.7750368, 62.0099494 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268811.0, "name": "Dvørgastígur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7838167, 62.016791 ], [ -6.7839947, 62.0167393 ], [ -6.784093, 62.0167327 ], [ -6.7842082, 62.0167366 ], [ -6.784298, 62.0167577 ], [ -6.7844497, 62.0168052 ], [ -6.784548, 62.0168579 ], [ -6.784648, 62.0169 ], [ -6.784754, 62.0169437 ], [ -6.7847957, 62.0169504 ], [ -6.7848758, 62.0169381 ], [ -6.7849963, 62.016904 ], [ -6.7855335, 62.016727 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268813.0, "name": "Vættrastígur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7846734, 62.0172987 ], [ -6.7850466, 62.0171882 ], [ -6.785485, 62.0170723 ], [ -6.7858288, 62.0169342 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268815.0, "name": "Mammulág", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7844331, 62.0171739 ], [ -6.7835316, 62.0175703 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268817.0, "name": "Álvastígur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7851454, 62.0175294 ], [ -6.7853903, 62.017446 ], [ -6.7856177, 62.0174447 ], [ -6.7858389, 62.01741 ], [ -6.7868444, 62.0170449 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268818.0, "name": "Varðalág", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7853016, 62.0176027 ], [ -6.7843033, 62.0178961 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268823.0, "name": "Kovalág", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.785258, 62.0189401 ], [ -6.7854605, 62.0190711 ], [ -6.7856145, 62.0191707 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268824.0, "name": "Kovalág", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7864479, 62.0187476 ], [ -6.7854605, 62.0190711 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268825.0, "name": "Varðabrekka", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7864479, 62.0187476 ], [ -6.7872045, 62.0185555 ], [ -6.787314, 62.0186564 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268826.0, "name": "Varðabrekka", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7872045, 62.0185555 ], [ -6.7872035, 62.0185344 ], [ -6.7873101, 62.0184808 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268828.0, "name": "Varðabyrgi", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7874524, 62.0195395 ], [ -6.787876, 62.0194087 ], [ -6.788462, 62.0192277 ], [ -6.7879937, 62.0188791 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268831.0, "name": "Varðabyrgi", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.788462, 62.0192277 ], [ -6.7885457, 62.0192828 ], [ -6.7885875, 62.0193223 ], [ -6.7885928, 62.0193854 ], [ -6.7884843, 62.0194424 ], [ -6.7882588, 62.0195149 ], [ -6.7881544, 62.0195337 ], [ -6.7881017, 62.0195254 ], [ -6.7879708, 62.0194729 ], [ -6.787876, 62.0194087 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268832.0, "name": "Áargeil", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7874635, 62.0205451 ], [ -6.787508, 62.0206 ], [ -6.787437, 62.0207199 ], [ -6.787325, 62.02084 ], [ -6.7872019, 62.02097 ], [ -6.7871413, 62.0210317 ], [ -6.787094, 62.0210799 ], [ -6.787023, 62.0211799 ], [ -6.7870429, 62.0212699 ], [ -6.7871319, 62.0213699 ], [ -6.7872329, 62.02145 ], [ -6.7874121, 62.0215697 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268836.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7876181, 62.0196311 ], [ -6.78761, 62.0197309 ], [ -6.7877086, 62.0197842 ], [ -6.7878172, 62.0198258 ], [ -6.787938, 62.0199219 ], [ -6.7880736, 62.0200294 ], [ -6.788202, 62.0201299 ], [ -6.7883549, 62.02021 ], [ -6.7885595, 62.0202759 ], [ -6.7887814, 62.020351 ], [ -6.7889689, 62.0204054 ], [ -6.7891267, 62.020454 ], [ -6.7892402, 62.0204899 ], [ -6.7894388, 62.0205416 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268837.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7894388, 62.0205416 ], [ -6.7895641, 62.0205722 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 31268842.0, "name": "Poul Juels gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7804462, 62.0213134 ], [ -6.7806139, 62.0211951 ], [ -6.7807334, 62.0211311 ], [ -6.78087, 62.0211038 ], [ -6.7810069, 62.0211 ], [ -6.7811431, 62.0210974 ], [ -6.7812797, 62.0211295 ], [ -6.7814401, 62.0211326 ], [ -6.7817781, 62.0210077 ], [ -6.7824848, 62.0207322 ], [ -6.7824404, 62.020697 ], [ -6.782104, 62.0204899 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319477.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7779978, 62.0148997 ], [ -6.7780683, 62.0147973 ], [ -6.7786111, 62.014728 ], [ -6.7788572, 62.0147149 ], [ -6.7790957, 62.0147341 ], [ -6.7792433, 62.0147835 ], [ -6.7793448, 62.0148267 ], [ -6.7794463, 62.0148599 ], [ -6.7796283, 62.0148006 ], [ -6.7797912, 62.0147296 ], [ -6.779931, 62.0146496 ], [ -6.7799866, 62.0145894 ], [ -6.7799559, 62.0145156 ], [ -6.7801637, 62.0144731 ], [ -6.7802701, 62.0144636 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319478.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.778603, 62.0168024 ], [ -6.7784572, 62.0167949 ], [ -6.77847, 62.0167719 ], [ -6.7784615, 62.0167358 ], [ -6.7784145, 62.0166847 ], [ -6.7784166, 62.0166226 ], [ -6.7784636, 62.0165674 ], [ -6.7785298, 62.0164863 ], [ -6.7786751, 62.0163901 ], [ -6.7787925, 62.0162909 ], [ -6.778895, 62.0161816 ], [ -6.7789313, 62.0160554 ], [ -6.7788737, 62.015891 ], [ -6.7788601, 62.0157405 ], [ -6.778789, 62.0157603 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319480.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7787634, 62.0166991 ], [ -6.7788848, 62.01674 ], [ -6.779019, 62.016803 ], [ -6.7789807, 62.0168554 ], [ -6.7789487, 62.0168869 ], [ -6.7789839, 62.0169424 ], [ -6.7791085, 62.0170608 ], [ -6.7792618, 62.0172407 ], [ -6.7793609, 62.0173591 ], [ -6.7794216, 62.0174805 ], [ -6.7788707, 62.0176285 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319481.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7794216, 62.0174805 ], [ -6.7796484, 62.017458 ], [ -6.7799167, 62.0174236 ], [ -6.7801532, 62.0173966 ], [ -6.7802107, 62.0173696 ], [ -6.7802586, 62.0173096 ], [ -6.7802778, 62.0171942 ], [ -6.7802956, 62.0171592 ], [ -6.7803496, 62.0171407 ], [ -6.7806391, 62.0170793 ], [ -6.7809221, 62.0170279 ], [ -6.781192, 62.0169665 ], [ -6.7811936, 62.0170463 ], [ -6.7811609, 62.0171392 ], [ -6.7811233, 62.0171945 ], [ -6.7810562, 62.017242 ], [ -6.7810071, 62.0173081 ], [ -6.7809826, 62.0173694 ], [ -6.7810006, 62.0174285 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319483.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7817277, 62.016323 ], [ -6.7817946, 62.0163705 ], [ -6.7818941, 62.0164378 ], [ -6.7819479, 62.016519 ], [ -6.782005, 62.0166131 ], [ -6.7820996, 62.016744 ], [ -6.7821567, 62.0168665 ], [ -6.7821698, 62.0169231 ], [ -6.7822399, 62.0170035 ], [ -6.7822937, 62.0170823 ], [ -6.7824069, 62.0171316 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319485.0, "name": "Traðavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7685889, 62.0132214 ], [ -6.7686634, 62.0134198 ], [ -6.7686876, 62.0135361 ], [ -6.7687358, 62.0136464 ], [ -6.7688026, 62.0137624 ], [ -6.7689289, 62.0138931 ], [ -6.7690908, 62.0139523 ], [ -6.7693434, 62.0140298 ], [ -6.7695765, 62.014083 ], [ -6.7699198, 62.0141347 ], [ -6.7702404, 62.0141955 ], [ -6.7705731, 62.014241 ], [ -6.7707876, 62.0142593 ], [ -6.7711924, 62.0143185 ], [ -6.7716263, 62.0143656 ], [ -6.7717501, 62.0143856 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319486.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7720864, 62.013452 ], [ -6.7722507, 62.013641 ], [ -6.7722977, 62.0137103 ], [ -6.7723559, 62.0137816 ], [ -6.7724641, 62.0139373 ], [ -6.7725096, 62.0140125 ], [ -6.7726589, 62.0141572 ], [ -6.7727727, 62.014279 ], [ -6.772858, 62.0143384 ], [ -6.7729359, 62.0143465 ], [ -6.7730343, 62.0143279 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319487.0, "name": "Húsagøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7741002, 62.0152689 ], [ -6.7742522, 62.0152365 ], [ -6.7747588, 62.0151287 ], [ -6.7753765, 62.0149984 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319489.0, "name": "Bringsnagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7719099, 62.0092888 ], [ -6.7716058, 62.0092967 ], [ -6.7711562, 62.0093022 ], [ -6.7707584, 62.0093509 ], [ -6.7706204, 62.0093777 ], [ -6.7703419, 62.009409 ], [ -6.7700168, 62.0094468 ], [ -6.7698994, 62.0094901 ], [ -6.7697963, 62.0095229 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32319491.0, "name": "Jansstovugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.772189, 62.0134266 ], [ -6.7722693, 62.0134164 ], [ -6.7733022, 62.0132853 ], [ -6.7736083, 62.0132488 ], [ -6.7742492, 62.0131719 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32350966.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7717501, 62.0143856 ], [ -6.7718983, 62.0144097 ], [ -6.7722125, 62.0144629 ], [ -6.7727273, 62.014358 ], [ -6.772858, 62.0143384 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32350969.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7718066, 62.013494 ], [ -6.7719372, 62.0134691 ], [ -6.7720864, 62.013452 ], [ -6.772189, 62.0134266 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396156.0, "name": "Doktara Dahls gøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7806534, 62.0015713 ], [ -6.7813652, 62.0004456 ], [ -6.7815198, 62.0002142 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396167.0, "name": "Støðlagøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7813556, 61.9996568 ], [ -6.7815188, 61.999487 ], [ -6.781671, 61.999333 ], [ -6.7818409, 61.9991543 ], [ -6.782051, 61.99911 ], [ -6.782302, 61.9991199 ], [ -6.7829941, 61.9991214 ], [ -6.7835328, 61.9991103 ], [ -6.7835656, 61.9991093 ], [ -6.7841839, 61.99909 ], [ -6.784474, 61.9990799 ], [ -6.784705, 61.99904 ], [ -6.784795, 61.99897 ], [ -6.78479, 61.9988499 ], [ -6.7847019, 61.9981639 ], [ -6.7846852, 61.9980338 ], [ -6.784677, 61.9979699 ], [ -6.7846451, 61.9971255 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396168.0, "name": "Reynstún", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7972271, 61.995616 ], [ -6.796786, 61.99507 ], [ -6.797597, 61.9949 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396169.0, "name": "Reynstún", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.796786, 61.99507 ], [ -6.794454, 61.9955399 ], [ -6.793196, 61.99578 ], [ -6.7923039, 61.9959004 ], [ -6.790565, 61.99612 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396170.0, "name": "Reunstún", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7948533, 61.9960521 ], [ -6.794454, 61.9955399 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396174.0, "name": "Rosságøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.776544, 61.99644 ], [ -6.77576, 61.9970799 ], [ -6.7749686, 61.9976917 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396177.0, "name": "Traðagøta", "ref": null, "type": "unclassified", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.776544, 61.99644 ], [ -6.7759384, 61.9964058 ], [ -6.7753666, 61.9964506 ], [ -6.774677, 61.9964847 ], [ -6.7742251, 61.9964358 ], [ -6.7736355, 61.9963481 ], [ -6.773033, 61.99631 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396178.0, "name": "Traðagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.773033, 61.99631 ], [ -6.772612, 61.9963599 ], [ -6.7718139, 61.9965205 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396185.0, "name": "Heiðagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.773033, 61.99631 ], [ -6.7730121, 61.9961118 ], [ -6.7727991, 61.9958807 ], [ -6.7724773, 61.9954895 ], [ -6.7722329, 61.9952399 ], [ -6.7716679, 61.9949139 ], [ -6.7714875, 61.994835 ], [ -6.7710526, 61.9946449 ], [ -6.7704468, 61.9943916 ], [ -6.7699734, 61.9941738 ], [ -6.7695143, 61.9939915 ], [ -6.769346, 61.99392 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396186.0, "name": "Borgartún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7714875, 61.994835 ], [ -6.7715921, 61.9947649 ], [ -6.7716569, 61.9947082 ], [ -6.771561, 61.9945899 ], [ -6.7707298, 61.9942204 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32396188.0, "name": "Heiðatún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7716569, 61.9947082 ], [ -6.7718905, 61.9947551 ], [ -6.7733033, 61.995096 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 32482245.0, "name": "Oman Viðarlund", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7823272, 62.0186873 ], [ -6.782629, 62.018439 ], [ -6.78306, 62.0181655 ], [ -6.7830334, 62.0180971 ], [ -6.7827507, 62.0179432 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33053176.0, "name": "Íslandsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7888504, 62.0059523 ], [ -6.7891775, 62.0061005 ], [ -6.789431, 62.0062457 ], [ -6.7898056, 62.0064164 ], [ -6.7899276, 62.006495 ], [ -6.7900116, 62.0065811 ], [ -6.7902105, 62.006785 ], [ -6.7903149, 62.0068506 ], [ -6.7905974, 62.0071184 ], [ -6.7907692, 62.0074043 ], [ -6.7907879, 62.0074355 ], [ -6.7908102, 62.0074755 ], [ -6.7909554, 62.0077363 ], [ -6.7910362, 62.0078989 ], [ -6.7911863, 62.0080426 ], [ -6.7912418, 62.0080813 ], [ -6.7913884, 62.0081835 ], [ -6.7914217, 62.008206 ], [ -6.7917176, 62.0084057 ], [ -6.7919658, 62.0085358 ], [ -6.7921622, 62.0085737 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33053180.0, "name": "Í Svanga", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7994873, 62.0083725 ], [ -6.7985507, 62.0086888 ], [ -6.797257, 62.0091284 ], [ -6.7966586, 62.0093539 ], [ -6.7959237, 62.0096882 ], [ -6.7956083, 62.0098744 ], [ -6.7954941, 62.0099418 ], [ -6.7949259, 62.0102584 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33053181.0, "name": "Hvalsoyargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7957113, 62.0088949 ], [ -6.7960483, 62.0087825 ], [ -6.7966751, 62.0085799 ], [ -6.7974496, 62.0083191 ], [ -6.7978517, 62.008154 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33053182.0, "name": "Torsteinsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7954761, 62.0088197 ], [ -6.7951111, 62.0089657 ], [ -6.7947209, 62.009103 ], [ -6.7943307, 62.0092251 ], [ -6.7940202, 62.00935 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33053183.0, "name": "Ravnsoyargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.794851, 62.0085897 ], [ -6.795259, 62.0084204 ], [ -6.7956581, 62.0083149 ], [ -6.7961991, 62.0081331 ], [ -6.7965243, 62.0080027 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33053184.0, "name": "Tjóðhildargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7946795, 62.0085439 ], [ -6.7933432, 62.0091114 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33074182.0, "name": "Svalbardsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.786927, 62.0097061 ], [ -6.7870589, 62.00971 ], [ -6.7871567, 62.0097202 ], [ -6.7873459, 62.00974 ], [ -6.787656, 62.00977 ], [ -6.787943, 62.00983 ], [ -6.7882229, 62.0099199 ], [ -6.788465, 62.01004 ], [ -6.788653, 62.01017 ], [ -6.7887876, 62.0102764 ], [ -6.7888299, 62.0103099 ], [ -6.7890029, 62.01045 ], [ -6.789184, 62.0105999 ], [ -6.7893804, 62.0107354 ], [ -6.7895479, 62.01086 ], [ -6.789745, 62.01099 ], [ -6.7898586, 62.0110661 ], [ -6.789939, 62.01112 ], [ -6.7899814, 62.011143 ], [ -6.790142, 62.0112299 ], [ -6.7903399, 62.01135 ], [ -6.790531, 62.01147 ], [ -6.7905601, 62.0114914 ], [ -6.790694, 62.0115899 ], [ -6.790839, 62.0117199 ], [ -6.790981, 62.01186 ], [ -6.7910745, 62.0119404 ], [ -6.7911439, 62.012 ], [ -6.791325, 62.0121099 ], [ -6.7915029, 62.0122099 ], [ -6.791535, 62.0122279 ], [ -6.7917059, 62.0123239 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33074183.0, "name": "Grønlandsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7966586, 62.0093539 ], [ -6.7964849, 62.0092706 ], [ -6.7961413, 62.0090746 ], [ -6.7957791, 62.0089255 ], [ -6.7957113, 62.0088949 ], [ -6.7954761, 62.0088197 ], [ -6.7951398, 62.0086896 ], [ -6.794851, 62.0085897 ], [ -6.7947739, 62.0085665 ], [ -6.7946795, 62.0085439 ], [ -6.7944857, 62.0084676 ], [ -6.7942787, 62.0084017 ], [ -6.7941716, 62.0083705 ], [ -6.7940501, 62.0083619 ], [ -6.7939406, 62.0083542 ], [ -6.7937503, 62.0083522 ], [ -6.7936865, 62.0083515 ], [ -6.7934325, 62.0083461 ], [ -6.7932073, 62.0083678 ], [ -6.7929475, 62.0083813 ], [ -6.7926068, 62.0084816 ], [ -6.7921622, 62.0085737 ], [ -6.7919278, 62.0086449 ], [ -6.7914908, 62.0087748 ], [ -6.7912107, 62.008858 ], [ -6.7906185, 62.009025 ], [ -6.790432, 62.0090761 ], [ -6.7903687, 62.0090934 ], [ -6.7901587, 62.0091422 ], [ -6.7899714, 62.0091564 ], [ -6.7896006, 62.0090614 ], [ -6.7893792, 62.0090126 ], [ -6.7891269, 62.0090436 ], [ -6.7889043, 62.0090818 ], [ -6.7886205, 62.009168 ], [ -6.7885299, 62.0091961 ], [ -6.7883761, 62.0092438 ], [ -6.7881569, 62.0093118 ], [ -6.7876082, 62.0094841 ], [ -6.7874266, 62.0095562 ], [ -6.7873736, 62.0095773 ], [ -6.7871503, 62.0096404 ], [ -6.786927, 62.0097061 ], [ -6.786807, 62.0097 ], [ -6.786578, 62.0097 ], [ -6.786352, 62.0097 ], [ -6.786062, 62.0096899 ], [ -6.785741, 62.0096411 ], [ -6.785327, 62.00953 ], [ -6.7850479, 62.00948 ], [ -6.784811, 62.0094199 ], [ -6.784562, 62.00935 ], [ -6.7845261, 62.009341 ], [ -6.7842819, 62.00928 ], [ -6.783991, 62.0092 ], [ -6.783726, 62.00912 ], [ -6.7834759, 62.00905 ], [ -6.783288, 62.0089599 ], [ -6.783116, 62.0088299 ], [ -6.782941, 62.00872 ], [ -6.782806, 62.00862 ], [ -6.7826394, 62.0085004 ], [ -6.7824589, 62.0084192 ], [ -6.782231, 62.0083018 ], [ -6.782074, 62.0082212 ], [ -6.7819658, 62.0081353 ], [ -6.7818611, 62.0080581 ], [ -6.7817565, 62.007995 ], [ -6.7817021, 62.0079524 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33129528.0, "name": "Trappugøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.774493, 62.0092779 ], [ -6.7739816, 62.0094061 ], [ -6.7735971, 62.0095094 ], [ -6.7735215, 62.0095133 ], [ -6.773411, 62.0094873 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33129529.0, "name": "Laðabrekka", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.769071, 62.0099006 ], [ -6.7692659, 62.0098391 ], [ -6.7694639, 62.0097792 ], [ -6.7696354, 62.0097025 ], [ -6.7695282, 62.0096304 ], [ -6.7695525, 62.0095668 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33129530.0, "name": "Undir Ryggi", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7686238, 62.009694 ], [ -6.7684328, 62.0095701 ], [ -6.7683286, 62.009489 ], [ -6.768241, 62.0094793 ], [ -6.7680887, 62.0093387 ], [ -6.7680315, 62.0092735 ], [ -6.767929, 62.0092031 ], [ -6.7679294, 62.0091372 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33129531.0, "name": "Amtsmansbrekkan", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7701378, 62.0103296 ], [ -6.7709477, 62.010094 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33130283.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.77687, 62.0104987 ], [ -6.7769706, 62.0105572 ], [ -6.7769684, 62.0105953 ], [ -6.7768405, 62.0106732 ], [ -6.7770576, 62.0108976 ], [ -6.7771176, 62.010931 ], [ -6.7772256, 62.0109232 ], [ -6.7773225, 62.0109014 ], [ -6.7773743, 62.0108775 ], [ -6.7773633, 62.0108528 ], [ -6.7771636, 62.0106581 ], [ -6.7771395, 62.0106221 ], [ -6.7771505, 62.0105696 ], [ -6.77732, 62.0104172 ], [ -6.7773019, 62.0103708 ], [ -6.7772229, 62.0103152 ], [ -6.7772009, 62.0102545 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33188103.0, "name": "Sverrisgøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7739497, 62.0107104 ], [ -6.774329, 62.0106036 ], [ -6.7746228, 62.0105325 ], [ -6.7751125, 62.0103981 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33189127.0, "name": "Steinatún", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7739571, 62.0114309 ], [ -6.7745794, 62.011265 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33189133.0, "name": "Niels Winthers gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7745794, 62.011265 ], [ -6.775256, 62.0110877 ], [ -6.775333, 62.011066 ], [ -6.7757899, 62.0109569 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33189134.0, "name": "Jóannesar Paturssonar gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7757899, 62.0109569 ], [ -6.7760813, 62.0108657 ], [ -6.7762287, 62.0108128 ], [ -6.7764479, 62.0107296 ], [ -6.77687, 62.0104987 ], [ -6.7771486, 62.0102708 ], [ -6.7772009, 62.0102545 ], [ -6.7773259, 62.0101821 ], [ -6.7776498, 62.0100771 ], [ -6.7785472, 62.0097861 ], [ -6.7792001, 62.0095743 ], [ -6.7814965, 62.0088573 ], [ -6.7826394, 62.0085004 ], [ -6.7831479, 62.0083417 ], [ -6.7835408, 62.0082191 ], [ -6.7839098, 62.0081039 ], [ -6.7846739, 62.0078654 ], [ -6.7848793, 62.0078013 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33277327.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770605, 62.0037712 ], [ -6.7764623, 62.003715 ], [ -6.7764004, 62.0037144 ], [ -6.776386, 62.0037286 ], [ -6.7763586, 62.0037874 ], [ -6.7763773, 62.003801 ], [ -6.7770158, 62.0038659 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33830419.0, "name": "Mýrigøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771892, 62.0131007 ], [ -6.7709617, 62.013298 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33830420.0, "name": "Sornhúsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7700275, 62.0130551 ], [ -6.7698312, 62.0127429 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33830422.0, "name": "Traðabrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7705731, 62.014241 ], [ -6.7702992, 62.0146824 ], [ -6.7700249, 62.0151595 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33830423.0, "name": "Træðabrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7687006, 62.0144848 ], [ -6.7702992, 62.0146824 ], [ -6.7718307, 62.014898 ], [ -6.7720955, 62.0150268 ], [ -6.7722129, 62.0151076 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33830425.0, "name": "Láarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7672751, 62.0147124 ], [ -6.7681487, 62.0148682 ], [ -6.7692343, 62.0150511 ], [ -6.7693044, 62.0150524 ], [ -6.7700249, 62.0151595 ], [ -6.7705946, 62.0152227 ], [ -6.7706895, 62.0152558 ], [ -6.7707018, 62.0153104 ], [ -6.7707171, 62.0154929 ], [ -6.770613, 62.01572 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33830427.0, "name": "Láarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7681487, 62.0148682 ], [ -6.7678718, 62.0154328 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33830428.0, "name": "Láarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7692343, 62.0150511 ], [ -6.7690039, 62.01591 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859758.0, "name": "Myrisnípuvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7668144, 62.0170179 ], [ -6.7669342, 62.0172928 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859759.0, "name": "Mýrisnípuvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.76811, 62.0166255 ], [ -6.768272, 62.0168799 ], [ -6.7685573, 62.0173305 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859760.0, "name": "Mýrusnípuvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.770746, 62.0166683 ], [ -6.7710144, 62.0170613 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859761.0, "name": "Spógvavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7690139, 62.0192833 ], [ -6.7692587, 62.0189862 ], [ -6.7693439, 62.018863 ], [ -6.7694822, 62.0186629 ], [ -6.7698548, 62.0183358 ], [ -6.7700596, 62.0181822 ], [ -6.7704455, 62.0180249 ], [ -6.7708129, 62.0178795 ], [ -6.7713794, 62.017749 ], [ -6.7721032, 62.0176142 ], [ -6.7723202, 62.0179963 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859762.0, "name": "Spógvavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7721032, 62.0176142 ], [ -6.7719798, 62.0173467 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859763.0, "name": "Vípuvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7713453, 62.0196713 ], [ -6.7714327, 62.0194614 ], [ -6.7716085, 62.0192197 ], [ -6.7717866, 62.0190607 ], [ -6.7719462, 62.0189246 ], [ -6.7721272, 62.018861 ], [ -6.7724677, 62.0187786 ], [ -6.7726567, 62.0187374 ], [ -6.7729015, 62.019047 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859764.0, "name": "Vípuvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7726567, 62.0187374 ], [ -6.7723699, 62.0183057 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859765.0, "name": "Essalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7677916, 62.0134602 ], [ -6.7674574, 62.0134662 ], [ -6.7670679, 62.0134912 ], [ -6.7664825, 62.0135162 ], [ -6.7660632, 62.0135282 ], [ -6.7653692, 62.0135711 ], [ -6.7650468, 62.0135831 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859766.0, "name": "Fjósagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.76951, 62.0131212 ], [ -6.7693074, 62.012557 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 33859767.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.7662437, 62.0170226 ], [ -6.7660947, 62.0169877 ], [ -6.7660441, 62.016914 ], [ -6.7660016, 62.0168266 ], [ -6.7660228, 62.016748 ], [ -6.7660402, 62.0167316 ] ], [ [ -6.7660402, 62.0167316 ], [ -6.766156, 62.0166734 ], [ -6.7662418, 62.0166012 ], [ -6.766265, 62.0165392 ], [ -6.7663181, 62.0164823 ], [ -6.7663195, 62.0164267 ], [ -6.7663467, 62.0163321 ], [ -6.7663072, 62.0162637 ], [ -6.7661751, 62.0162042 ], [ -6.7660525, 62.0161428 ], [ -6.7659517, 62.0160872 ], [ -6.76584, 62.0160028 ], [ -6.7657351, 62.0159587 ], [ -6.7656165, 62.0159127 ], [ -6.7655116, 62.0158814 ], [ -6.7653754, 62.0158724 ], [ -6.7652473, 62.0158897 ], [ -6.7651138, 62.0159408 ], [ -6.7649953, 62.015999 ], [ -6.7648958, 62.0160514 ], [ -6.764825, 62.0161339 ], [ -6.7648018, 62.0161921 ], [ -6.7647228, 62.0162426 ], [ -6.7646711, 62.0162899 ], [ -6.7646929, 62.0163346 ], [ -6.764746, 62.0163787 ], [ -6.7648713, 62.0164068 ], [ -6.7649463, 62.0164305 ], [ -6.7650471, 62.0164554 ], [ -6.7651479, 62.0164784 ], [ -6.7652732, 62.01649 ], [ -6.7654353, 62.0165047 ], [ -6.7655661, 62.0165098 ], [ -6.7656656, 62.0165289 ], [ -6.7657255, 62.0165673 ], [ -6.7657964, 62.016612 ], [ -6.7658577, 62.0166651 ], [ -6.7659299, 62.0166977 ], [ -6.7660402, 62.0167316 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34150873.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7995407, 62.0129134 ], [ -6.7998239, 62.0127765 ], [ -6.8010256, 62.0124261 ], [ -6.8012401, 62.0124502 ], [ -6.8014204, 62.0125993 ], [ -6.8014461, 62.0127523 ], [ -6.8012144, 62.0129698 ], [ -6.8004162, 62.0131994 ], [ -6.799678, 62.0134008 ], [ -6.7994806, 62.0135256 ], [ -6.799408, 62.0135686 ], [ -6.7991659, 62.0137119 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34150970.0, "name": "Eirargarður", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.7792646, 62.0027719 ], [ -6.7795049, 62.0022481 ], [ -6.7790071, 62.0021756 ], [ -6.7787496, 62.0026712 ], [ -6.7792646, 62.0027719 ] ], [ [ -6.7792646, 62.0027719 ], [ -6.7796765, 62.0029532 ], [ -6.7795907, 62.0030741 ], [ -6.7792474, 62.0032071 ], [ -6.7789642, 62.0034247 ], [ -6.778829, 62.00372 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34150976.0, "name": "Sandagerðsvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7760116, 62.0034609 ], [ -6.7760974, 62.0034931 ], [ -6.7763034, 62.0035334 ], [ -6.7771322, 62.0036185 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34150977.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7774698, 62.0028797 ], [ -6.777033, 62.0028686 ], [ -6.7767926, 62.002913 ], [ -6.7765866, 62.0029976 ], [ -6.7764407, 62.0031386 ], [ -6.7763034, 62.0034005 ], [ -6.7763034, 62.0035334 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34151009.0, "name": "Stoffalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7589253, 62.0189945 ], [ -6.7587949, 62.0192719 ], [ -6.758989, 62.0192961 ], [ -6.7591345, 62.0193217 ], [ -6.7594103, 62.0193174 ], [ -6.759568, 62.0192818 ], [ -6.7596923, 62.0191311 ], [ -6.7599317, 62.0188025 ], [ -6.7599651, 62.0187428 ], [ -6.760153, 62.0185095 ], [ -6.7602228, 62.0183161 ], [ -6.7603217, 62.0181473 ], [ -6.7603904, 62.017958 ], [ -6.7604848, 62.0176801 ], [ -6.7605792, 62.0173298 ], [ -6.7608907, 62.0169014 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34214617.0, "name": "Kákagøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7685914, 62.0091721 ], [ -6.7681454, 62.0091558 ], [ -6.7679294, 62.0091372 ], [ -6.7676482, 62.009163 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34228311.0, "name": "Mannbrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7681504, 62.0299533 ], [ -6.7679658, 62.0298656 ], [ -6.767674, 62.0297207 ], [ -6.7672878, 62.0295677 ], [ -6.7671853, 62.0295353 ], [ -6.7669187, 62.029451 ], [ -6.766584, 62.0294349 ], [ -6.7662063, 62.029459 ], [ -6.7659556, 62.0295121 ], [ -6.7641893, 62.0298858 ], [ -6.764009, 62.0299099 ], [ -6.7638975, 62.0298898 ], [ -6.7637701, 62.0298217 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391482.0, "name": "Tjarnarlág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7660504, 62.0172627 ], [ -6.7654403, 62.0171148 ], [ -6.7647794, 62.0169539 ], [ -6.7640867, 62.0167853 ], [ -6.7635707, 62.0166597 ], [ -6.7628993, 62.0164963 ], [ -6.7622151, 62.0163297 ], [ -6.7619521, 62.0162657 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391483.0, "name": "Í Lágni", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7640442, 62.0175645 ], [ -6.763543, 62.0181352 ], [ -6.763332, 62.0182057 ], [ -6.7631889, 62.0182285 ], [ -6.7631574, 62.0182592 ], [ -6.7627597, 62.0189146 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391484.0, "name": "Í Lágni", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7631574, 62.0182592 ], [ -6.7617314, 62.0180373 ], [ -6.76129, 62.0179577 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391485.0, "name": "Í Lágni", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7617314, 62.0180373 ], [ -6.7613579, 62.0184891 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391486.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7591345, 62.0193217 ], [ -6.7592163, 62.0194767 ], [ -6.7593345, 62.0196602 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391487.0, "name": "Breiðablik", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7599317, 62.0188025 ], [ -6.7604895, 62.018895 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391488.0, "name": "Breiðablik", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7599651, 62.0187428 ], [ -6.7587495, 62.0185223 ], [ -6.7586252, 62.0185223 ], [ -6.7585161, 62.0187286 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391489.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7602228, 62.0183161 ], [ -6.7599807, 62.0182774 ], [ -6.7598923, 62.018272 ], [ -6.7597226, 62.0182279 ], [ -6.7596771, 62.0181838 ], [ -6.759665, 62.0181284 ], [ -6.7597195, 62.0180487 ], [ -6.7599166, 62.0177543 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391490.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7599807, 62.0182774 ], [ -6.7600846, 62.0180182 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391492.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7583833, 62.0166971 ], [ -6.7580884, 62.0166498 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391493.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7584841, 62.0165925 ], [ -6.7581563, 62.016526 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391494.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7586366, 62.0164652 ], [ -6.758322, 62.0163839 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391496.0, "name": "Ægishædd", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7583483, 62.016749 ], [ -6.7583833, 62.0166971 ], [ -6.7584841, 62.0165925 ], [ -6.7586366, 62.0164652 ], [ -6.7587492, 62.016329 ], [ -6.7589717, 62.0160915 ], [ -6.7579171, 62.0158223 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391497.0, "name": "Tútalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7600527, 62.0166747 ], [ -6.7602336, 62.0162952 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391499.0, "name": "Tjarnardeild", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7626802, 62.0152002 ], [ -6.7623316, 62.0156213 ], [ -6.7623619, 62.015671 ], [ -6.7630046, 62.0158531 ], [ -6.7634472, 62.0159911 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391500.0, "name": "Tjarnardeild", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7635169, 62.0153396 ], [ -6.7632562, 62.0156326 ], [ -6.7630046, 62.0158531 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391501.0, "name": "Við Gálgastein", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762898, 62.015232 ], [ -6.76331, 62.0144941 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391502.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7649347, 62.0149164 ], [ -6.7643616, 62.0147564 ], [ -6.7645558, 62.014603 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391503.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7643616, 62.0147564 ], [ -6.7642432, 62.0148164 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391504.0, "name": "Hamarsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7606849, 62.01446 ], [ -6.7605287, 62.0147553 ], [ -6.759301, 62.0152336 ], [ -6.7590623, 62.0152478 ], [ -6.7580164, 62.0149011 ], [ -6.7584446, 62.0147108 ], [ -6.7584332, 62.0146415 ], [ -6.7592479, 62.014245 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391505.0, "name": "Sámalsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7612601, 62.0144015 ], [ -6.7599148, 62.0141899 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391506.0, "name": "Tórgarðsgøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762767, 62.01417 ], [ -6.7636656, 62.0142113 ], [ -6.7638693, 62.0141602 ], [ -6.7640824, 62.0139646 ], [ -6.7641487, 62.0135801 ], [ -6.7641272, 62.0134023 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391507.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7650468, 62.0135831 ], [ -6.7641487, 62.0135801 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391508.0, "name": "Tildugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7633446, 62.012283 ], [ -6.7621446, 62.0121921 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391509.0, "name": "Klokkaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7634833, 62.0105993 ], [ -6.7625444, 62.0107551 ], [ -6.7621494, 62.0108206 ], [ -6.7614673, 62.0111007 ], [ -6.7608752, 62.0115719 ], [ -6.7607663, 62.0116142 ], [ -6.76043, 62.0121832 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391510.0, "name": "Dalatrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7608752, 62.0115719 ], [ -6.7613868, 62.0119476 ], [ -6.7613299, 62.0122788 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391511.0, "name": "Krossgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762949, 62.0098 ], [ -6.761887, 62.0099716 ], [ -6.7616983, 62.0100021 ], [ -6.7614777, 62.0100542 ], [ -6.7610959, 62.0101908 ], [ -6.7607145, 62.0103607 ], [ -6.7602971, 62.0105401 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391512.0, "name": "Vaktarhúsbrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762693, 62.009528 ], [ -6.7634011, 62.0093505 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391513.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7660928, 62.0103775 ], [ -6.7662959, 62.0104813 ], [ -6.7664869, 62.0105809 ], [ -6.76669, 62.0107075 ], [ -6.7669992, 62.0105994 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391514.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7664869, 62.0105809 ], [ -6.7667779, 62.0104628 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391515.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7662959, 62.0104813 ], [ -6.7665839, 62.0103746 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34391518.0, "name": "A.C. Evensens gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.767138, 62.012004 ], [ -6.7674363, 62.0121758 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34524859.0, "name": "Óðinshædd", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7642727, 62.0222315 ], [ -6.7635011, 62.0220677 ], [ -6.7628369, 62.0219365 ], [ -6.7623929, 62.0218249 ], [ -6.7621062, 62.0217755 ], [ -6.7618167, 62.0216884 ], [ -6.7615381, 62.0215782 ], [ -6.7613523, 62.0214706 ], [ -6.7611994, 62.0213219 ], [ -6.7610956, 62.0211835 ], [ -6.76103, 62.020999 ], [ -6.7609262, 62.020794 ], [ -6.7607624, 62.0205044 ], [ -6.7605712, 62.0202661 ], [ -6.7604182, 62.0200764 ], [ -6.7600795, 62.0197945 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34524860.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7635011, 62.0220677 ], [ -6.7635885, 62.0219594 ], [ -6.763608, 62.0219451 ], [ -6.7638612, 62.0219742 ], [ -6.764043, 62.0219709 ], [ -6.7641829, 62.0219037 ], [ -6.7645069, 62.0214418 ], [ -6.7643793, 62.0213546 ], [ -6.7642903, 62.0212979 ], [ -6.7639788, 62.0212367 ], [ -6.7632389, 62.0211508 ], [ -6.7629313, 62.0211443 ], [ -6.7625816, 62.0212 ], [ -6.7625117, 62.0212476 ], [ -6.7623824, 62.0213755 ], [ -6.7623229, 62.0215232 ], [ -6.7623754, 62.021638 ], [ -6.7624803, 62.0217151 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34524861.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7624803, 62.0217151 ], [ -6.7623929, 62.0218249 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34524862.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.7628369, 62.0219365 ], [ -6.7627215, 62.0220316 ] ], [ [ -6.7627215, 62.0220316 ], [ -6.7626166, 62.0220841 ], [ -6.7617461, 62.0223465 ], [ -6.7618929, 62.0225122 ], [ -6.7628718, 62.0222087 ], [ -6.7627914, 62.0221103 ], [ -6.7627215, 62.0220316 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949232.0, "name": "Eirargarður", "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7795907, 62.0030741 ], [ -6.7798514, 62.0031005 ], [ -6.7804815, 62.0031944 ], [ -6.7810562, 62.0032694 ], [ -6.781433, 62.0033323 ], [ -6.7817991, 62.0033863 ], [ -6.7820545, 62.0033853 ], [ -6.7822695, 62.0033443 ], [ -6.782791, 62.0031705 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949233.0, "name": "Eirargarður", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7833612, 62.0036813 ], [ -6.782791, 62.0031705 ], [ -6.7820928, 62.0027318 ], [ -6.7818438, 62.002517 ], [ -6.7815266, 62.0022432 ], [ -6.7813734, 62.0021223 ], [ -6.7812307, 62.0020373 ], [ -6.7811222, 62.0020183 ], [ -6.7809923, 62.0020163 ], [ -6.7807944, 62.0020383 ], [ -6.7803665, 62.0021403 ], [ -6.7800813, 62.0022362 ], [ -6.7799429, 62.0023361 ], [ -6.779877, 62.002531 ], [ -6.7797684, 62.0027818 ], [ -6.7796765, 62.0029532 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949234.0, "name": "Norðurrás", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7829183, 62.0053997 ], [ -6.7833872, 62.0052155 ], [ -6.7841688, 62.0051796 ], [ -6.7843418, 62.0052124 ], [ -6.7851699, 62.0056105 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949235.0, "name": "Heygsgerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7923164, 62.0009061 ], [ -6.7924112, 62.0010645 ], [ -6.792491, 62.0011582 ], [ -6.7927172, 62.0013456 ], [ -6.7928424, 62.0014356 ], [ -6.7928702, 62.0014486 ], [ -6.7931329, 62.001611 ], [ -6.7932261, 62.0017281 ], [ -6.7931995, 62.0018077 ], [ -6.7930332, 62.0018608 ], [ -6.7924644, 62.0019436 ], [ -6.791174, 62.0021122 ], [ -6.7900132, 62.002323 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949236.0, "name": "Lítlagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7928424, 62.0014356 ], [ -6.7925796, 62.0015146 ], [ -6.792405, 62.0015478 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949237.0, "name": "Stóragerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7949475, 62.0036956 ], [ -6.794859, 62.0035882 ], [ -6.7946735, 62.0033632 ], [ -6.7944008, 62.0029805 ], [ -6.7941836, 62.0027246 ], [ -6.794004, 62.0025127 ], [ -6.793676, 62.0025048 ], [ -6.7935035, 62.0023047 ], [ -6.7920457, 62.0024635 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949238.0, "name": "Havragerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7944008, 62.0029805 ], [ -6.7931433, 62.0031814 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949239.0, "name": "Geitagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7946735, 62.0033632 ], [ -6.7940371, 62.0034671 ], [ -6.7933963, 62.0035718 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949240.0, "name": "Perskonugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7973924, 62.0062873 ], [ -6.7971876, 62.0062346 ], [ -6.7969432, 62.0061043 ], [ -6.796778, 62.0059183 ], [ -6.7966525, 62.0057788 ], [ -6.7964609, 62.005695 ], [ -6.7954493, 62.0056163 ], [ -6.7944307, 62.0055017 ], [ -6.7934693, 62.0053577 ], [ -6.7929449, 62.0052637 ], [ -6.7922058, 62.0051262 ], [ -6.7921227, 62.0051078 ], [ -6.7915945, 62.0049912 ], [ -6.7912205, 62.0048924 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949242.0, "name": "Á Teigi", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7910289, 62.0035637 ], [ -6.7922116, 62.0033612 ], [ -6.7924353, 62.0033237 ], [ -6.7922917, 62.0031571 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949243.0, "name": "Á Túgvu", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7909653, 62.0040087 ], [ -6.7927801, 62.0036827 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949244.0, "name": "Á Fløtti", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7908983, 62.004624 ], [ -6.7928768, 62.0038909 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949245.0, "name": "Heygskrókur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7884059, 62.0051134 ], [ -6.7888216, 62.0050628 ], [ -6.7891416, 62.0050423 ], [ -6.7893166, 62.0050012 ], [ -6.789467, 62.0049332 ], [ -6.7896339, 62.0048369 ], [ -6.7896804, 62.0046969 ], [ -6.7896973, 62.0044009 ], [ -6.7898512, 62.0038857 ], [ -6.7900881, 62.0038643 ], [ -6.7909487, 62.0039092 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949246.0, "name": "Noregsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.790029, 62.0054236 ], [ -6.7910164, 62.0058883 ], [ -6.7921494, 62.006448 ], [ -6.7925165, 62.006623 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949247.0, "name": "Orknoyavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7926889, 62.006402 ], [ -6.7921494, 62.006448 ], [ -6.7917288, 62.0065365 ], [ -6.7911425, 62.0066647 ], [ -6.7903149, 62.0068506 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949248.0, "name": "Hetlandsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.791513, 62.0056919 ], [ -6.7910164, 62.0058883 ], [ -6.7902213, 62.0061944 ], [ -6.7898056, 62.0064164 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 34949249.0, "name": "Heygsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7883902, 62.0010869 ], [ -6.7883893, 62.0012145 ], [ -6.7883932, 62.0013078 ], [ -6.788338, 62.0014352 ], [ -6.7882965, 62.0015485 ], [ -6.7882886, 62.0015667 ], [ -6.7882751, 62.0015977 ], [ -6.7881349, 62.0018043 ], [ -6.7880265, 62.0019853 ], [ -6.7879213, 62.0022017 ], [ -6.787835, 62.0023502 ], [ -6.7878019, 62.0024023 ], [ -6.7877088, 62.002573 ], [ -6.787632, 62.0027518 ], [ -6.7876, 62.0029199 ], [ -6.78767, 62.0031 ], [ -6.7877332, 62.0032672 ], [ -6.787738, 62.0032799 ], [ -6.7877918, 62.0034804 ], [ -6.7878799, 62.0036499 ], [ -6.7879053, 62.0037151 ], [ -6.7879404, 62.003805 ], [ -6.787954, 62.0038399 ], [ -6.788031, 62.00402 ], [ -6.788133, 62.00431 ], [ -6.788189, 62.00449 ], [ -6.7882369, 62.00467 ], [ -6.7882574, 62.0047252 ], [ -6.7883, 62.00484 ], [ -6.7883679, 62.0050199 ], [ -6.7884059, 62.0051134 ], [ -6.788437, 62.0051899 ], [ -6.788501, 62.00537 ], [ -6.7885549, 62.00553 ], [ -6.788606, 62.00569 ], [ -6.788638, 62.00582 ], [ -6.7886699, 62.0059 ], [ -6.7887129, 62.0059948 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018049.0, "name": "Dalatún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7808801, 62.0099828 ], [ -6.7795134, 62.0104035 ], [ -6.7789147, 62.0106167 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018050.0, "name": "Dungagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7804198, 62.0114102 ], [ -6.7804953, 62.011351 ], [ -6.7810314, 62.0111187 ], [ -6.7811736, 62.0110943 ], [ -6.7813022, 62.0111149 ], [ -6.7817398, 62.0113498 ], [ -6.7824837, 62.011781 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018051.0, "name": "Peturstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7824764, 62.012404 ], [ -6.7834212, 62.0120968 ], [ -6.7840998, 62.0119174 ], [ -6.7844113, 62.011835 ], [ -6.7848133, 62.0117413 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018052.0, "name": "Dalakrókur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7854126, 62.0133113 ], [ -6.7859317, 62.0129574 ], [ -6.7860586, 62.0129205 ], [ -6.7861986, 62.0129164 ], [ -6.7867631, 62.0131135 ], [ -6.7880256, 62.0135827 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018053.0, "name": "Oman Stóragarð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7848303, 62.0100734 ], [ -6.784536, 62.010203 ], [ -6.7843309, 62.0102712 ], [ -6.7829463, 62.010558 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018054.0, "name": "Skákið", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7843309, 62.0102712 ], [ -6.7844078, 62.0103936 ], [ -6.7843993, 62.0105139 ], [ -6.7843095, 62.0106623 ], [ -6.7839847, 62.0111617 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018055.0, "name": "Krosslíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7871567, 62.0097202 ], [ -6.7867845, 62.0101124 ], [ -6.7866581, 62.0102456 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018056.0, "name": "Grønalíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7899814, 62.011143 ], [ -6.7903174, 62.0110188 ], [ -6.7906587, 62.0108899 ], [ -6.7909983, 62.010765 ], [ -6.7911208, 62.0107141 ], [ -6.7914324, 62.0105407 ], [ -6.7917562, 62.0103526 ], [ -6.7920993, 62.0101366 ], [ -6.7922522, 62.0100102 ], [ -6.7925036, 62.0098022 ], [ -6.7928099, 62.0095697 ], [ -6.7931758, 62.0093011 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018057.0, "name": "Í Grønulág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7883761, 62.0092438 ], [ -6.7878576, 62.0088929 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018058.0, "name": "Mikkjalstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7885299, 62.0091961 ], [ -6.7890008, 62.0094988 ], [ -6.7894193, 62.0097632 ], [ -6.7896808, 62.0099583 ], [ -6.7901656, 62.0103199 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018059.0, "name": "Vilhelmstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7940501, 62.0083619 ], [ -6.7941408, 62.0083195 ], [ -6.7941476, 62.0082409 ], [ -6.7941749, 62.0081799 ], [ -6.7942909, 62.008112 ], [ -6.7947782, 62.0079054 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018060.0, "name": "Bjarnoyarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7937503, 62.0083522 ], [ -6.7936786, 62.0083054 ], [ -6.7936506, 62.008224 ], [ -6.7936664, 62.0080359 ], [ -6.7936944, 62.0078667 ], [ -6.7937311, 62.0077064 ], [ -6.7937206, 62.0076226 ], [ -6.7936121, 62.0075816 ], [ -6.7934668, 62.0076029 ], [ -6.7932393, 62.0076596 ], [ -6.7927247, 62.0078149 ], [ -6.7923396, 62.0079159 ], [ -6.7918897, 62.0080655 ], [ -6.7915904, 62.0081542 ], [ -6.7914217, 62.008206 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018061.0, "name": "Mattalágarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7908102, 62.0074755 ], [ -6.7884501, 62.0076712 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018062.0, "name": "Suðuroyavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7907692, 62.0074043 ], [ -6.7915654, 62.0073443 ], [ -6.7918304, 62.0073102 ], [ -6.7938389, 62.0068509 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018063.0, "name": "Bóndabrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7882574, 62.0047252 ], [ -6.7869836, 62.0048163 ], [ -6.786691, 62.004851 ], [ -6.7866035, 62.0048664 ], [ -6.7865324, 62.004928 ], [ -6.7865266, 62.0050118 ], [ -6.7865214, 62.0050872 ], [ -6.7867074, 62.0054839 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018065.0, "name": "Bóndabrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7865266, 62.0050118 ], [ -6.7861713, 62.0050166 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018066.0, "name": "Á Heygnum Mikla", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7879404, 62.003805 ], [ -6.7882534, 62.0037046 ], [ -6.7886433, 62.0035341 ], [ -6.7893004, 62.0032332 ], [ -6.7897844, 62.0030066 ], [ -6.7898955, 62.0029503 ], [ -6.7901381, 62.0028858 ], [ -6.7907569, 62.0029223 ], [ -6.791118, 62.0029229 ], [ -6.7914447, 62.002897 ], [ -6.7916649, 62.0028556 ], [ -6.7918845, 62.0028051 ], [ -6.791759, 62.0027189 ], [ -6.7915831, 62.0025562 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018067.0, "name": "Hvannasundsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7877332, 62.0032672 ], [ -6.7879613, 62.003255 ], [ -6.7881976, 62.0032211 ], [ -6.7883442, 62.0031697 ], [ -6.788458, 62.0031112 ], [ -6.7885587, 62.0029992 ], [ -6.7886921, 62.0028431 ], [ -6.7888212, 62.002574 ], [ -6.788935, 62.0023131 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018068.0, "name": "Janusargøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8023244, 62.0057437 ], [ -6.8008132, 62.0056139 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018069.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8000397, 62.0075516 ], [ -6.8002556, 62.0071211 ], [ -6.800327, 62.0069945 ], [ -6.8003699, 62.0068998 ], [ -6.8002918, 62.0067152 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018070.0, "name": "Janusargøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8002918, 62.0067152 ], [ -6.8005439, 62.0061575 ], [ -6.8006175, 62.0060089 ], [ -6.8008132, 62.0056139 ], [ -6.8009371, 62.00495 ], [ -6.8009841, 62.0046732 ], [ -6.80092, 62.0043342 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018071.0, "name": "Fjalstún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8024448, 62.0049135 ], [ -6.8029535, 62.0049798 ], [ -6.8034064, 62.0050379 ], [ -6.8042953, 62.0051182 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018072.0, "name": "Undir Gráasteini", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8021201, 62.0070157 ], [ -6.80227, 62.0065945 ], [ -6.8024364, 62.0061271 ], [ -6.8027141, 62.0055294 ], [ -6.8029535, 62.0049798 ], [ -6.8031842, 62.0044141 ], [ -6.8035389, 62.0036839 ], [ -6.8035304, 62.0034592 ], [ -6.803501, 62.0033412 ], [ -6.8034834, 62.0032707 ], [ -6.8034064, 62.0031583 ], [ -6.8032099, 62.003052 ], [ -6.8029235, 62.0029357 ], [ -6.8027988, 62.0028888 ], [ -6.8024535, 62.0027591 ], [ -6.8017355, 62.0024983 ], [ -6.8012355, 62.0023158 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018073.0, "name": "Grásteinsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8035389, 62.0036839 ], [ -6.8040047, 62.003724 ], [ -6.8049833, 62.0038665 ], [ -6.8045175, 62.0046588 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018074.0, "name": "Fjalsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.80227, 62.0065945 ], [ -6.8034724, 62.0067599 ], [ -6.8037868, 62.0068031 ], [ -6.8044866, 62.0068999 ], [ -6.8054833, 62.0070378 ], [ -6.8054791, 62.0071621 ], [ -6.8053722, 62.0073627 ], [ -6.8052056, 62.0076836 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018075.0, "name": "Fjalsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8037868, 62.0068031 ], [ -6.8039406, 62.0062736 ], [ -6.8039235, 62.0061733 ], [ -6.8037953, 62.0061151 ], [ -6.8030261, 62.0060188 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36018076.0, "name": "Vesturgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8054833, 62.0070378 ], [ -6.8055261, 62.006767 ], [ -6.8054577, 62.0066326 ], [ -6.8053209, 62.0065163 ], [ -6.8053038, 62.0062796 ], [ -6.805244, 62.0061512 ], [ -6.8055132, 62.005742 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456354.0, "name": "Bóndaheygur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7912205, 62.0048924 ], [ -6.7910594, 62.0048289 ], [ -6.7909815, 62.004746 ], [ -6.7908983, 62.004624 ], [ -6.7909087, 62.0043581 ], [ -6.7909653, 62.0040087 ], [ -6.7909487, 62.0039092 ], [ -6.7910289, 62.0035637 ], [ -6.791116, 62.0029817 ], [ -6.791118, 62.0029229 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456411.0, "name": "Heygsmannavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7848966, 62.0027403 ], [ -6.7852604, 62.0020473 ], [ -6.7855315, 62.0014317 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456469.0, "name": "Eysturstræti", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7602971, 62.0105401 ], [ -6.7609226, 62.0108174 ], [ -6.7611796, 62.0109511 ], [ -6.7614673, 62.0111007 ], [ -6.7624174, 62.0117066 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456479.0, "name": "Skúlagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762341, 62.01511 ], [ -6.762443, 62.01498 ], [ -6.7625269, 62.0148313 ], [ -6.762577, 62.0147099 ], [ -6.762691, 62.0144499 ], [ -6.762763, 62.01433 ], [ -6.7627849, 62.01423 ], [ -6.762767, 62.01417 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456481.0, "name": "Tórgarðsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762767, 62.01417 ], [ -6.762688, 62.01413 ], [ -6.762519, 62.01411 ], [ -6.762291, 62.0141 ], [ -6.76206, 62.01413 ], [ -6.7619395, 62.0141633 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456482.0, "name": "Ólvugøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7841128, 62.0287082 ], [ -6.7841718, 62.0287068 ], [ -6.7848837, 62.0285861 ], [ -6.7850071, 62.0285652 ], [ -6.7850294, 62.028559 ], [ -6.785616, 62.0283953 ], [ -6.7860195, 62.0282184 ], [ -6.7863097, 62.0280555 ], [ -6.786519, 62.0279097 ], [ -6.7865434, 62.0278927 ], [ -6.7868124, 62.0276591 ], [ -6.7871168, 62.0274042 ], [ -6.7873009, 62.0272556 ], [ -6.7874087, 62.0272047 ], [ -6.7876761, 62.0270786 ], [ -6.7880796, 62.0269441 ], [ -6.788149, 62.0269184 ], [ -6.7884052, 62.0268237 ], [ -6.7887026, 62.0267034 ], [ -6.7890282, 62.0266609 ], [ -6.7891651, 62.0266379 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456541.0, "name": "Reyðagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8299515, 62.0015701 ], [ -6.8302923, 62.0016295 ], [ -6.8305038, 62.0016282 ], [ -6.8307017, 62.0015946 ], [ -6.8309189, 62.0015482 ], [ -6.8310975, 62.0015223 ], [ -6.8312624, 62.0015327 ], [ -6.8314933, 62.0015649 ], [ -6.8317956, 62.0016269 ], [ -6.8321226, 62.0017379 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456560.0, "name": "Eystari Ringvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7625944, 62.0237533 ], [ -6.7627819, 62.0238007 ], [ -6.7636435, 62.0240183 ], [ -6.7641168, 62.0240712 ], [ -6.7643853, 62.0240924 ], [ -6.764629, 62.0240854 ], [ -6.7649575, 62.0240642 ], [ -6.7655439, 62.0239476 ], [ -6.765996, 62.0237922 ], [ -6.7662963, 62.0236156 ], [ -6.7669462, 62.023061 ], [ -6.7671546, 62.0229021 ], [ -6.7673983, 62.0227996 ], [ -6.7675771, 62.0227364 ], [ -6.7677194, 62.0227007 ], [ -6.7678318, 62.0226743 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456581.0, "name": "Vestari Ringvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7893167, 62.0190896 ], [ -6.7892692, 62.0190309 ], [ -6.7888226, 62.0184797 ], [ -6.7884841, 62.0179811 ], [ -6.7883684, 62.0177674 ], [ -6.7881546, 62.0173044 ], [ -6.7880301, 62.0169037 ], [ -6.787941, 62.0164318 ], [ -6.7879142, 62.0160845 ], [ -6.787941, 62.0155681 ], [ -6.7879678, 62.0153098 ], [ -6.7880389, 62.0150338 ], [ -6.7881368, 62.0147311 ], [ -6.7882705, 62.0144907 ], [ -6.7884877, 62.0142354 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456591.0, "name": "Marknagilsvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7884877, 62.0142354 ], [ -6.7888315, 62.0138317 ], [ -6.789152, 62.0135557 ], [ -6.7896594, 62.0132174 ], [ -6.7902944, 62.0129195 ], [ -6.7906657, 62.0127454 ], [ -6.7913601, 62.0124516 ], [ -6.7917059, 62.0123239 ], [ -6.7932656, 62.0117482 ], [ -6.7939068, 62.0114722 ], [ -6.7943757, 62.0112209 ], [ -6.7952067, 62.0107954 ], [ -6.7964534, 62.0100831 ], [ -6.7970499, 62.0097715 ], [ -6.7976108, 62.00954 ], [ -6.799641, 62.0088454 ], [ -6.8001129, 62.0086406 ], [ -6.8006115, 62.0084002 ], [ -6.8009944, 62.0082043 ], [ -6.801128, 62.0080886 ], [ -6.8013863, 62.0078749 ], [ -6.8014435, 62.0078107 ], [ -6.8016801, 62.0075454 ], [ -6.801743, 62.0074129 ], [ -6.8019382, 62.0070023 ], [ -6.8023244, 62.0057437 ], [ -6.8023835, 62.0055509 ], [ -6.8024281, 62.0052749 ], [ -6.8024448, 62.0049135 ], [ -6.8024458, 62.004892 ], [ -6.8024102, 62.0043221 ], [ -6.8023479, 62.0040016 ], [ -6.8022588, 62.0037523 ], [ -6.8020718, 62.0034941 ], [ -6.8018047, 62.0032091 ], [ -6.8014931, 62.0029331 ], [ -6.8009678, 62.0026036 ], [ -6.8007932, 62.0025019 ], [ -6.799599, 62.0018058 ], [ -6.7979582, 62.0008495 ], [ -6.7976197, 62.000716 ], [ -6.7974149, 62.0006536 ], [ -6.7973952, 62.0006493 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36456601.0, "name": "Velbastaðvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7973952, 62.0006493 ], [ -6.7972102, 62.0006091 ], [ -6.7969787, 62.0005646 ], [ -6.7967204, 62.0005379 ], [ -6.7964623, 62.000529 ], [ -6.795919, 62.0005824 ], [ -6.7940404, 62.0007605 ], [ -6.7925356, 62.000894 ], [ -6.7923164, 62.0009061 ], [ -6.7919924, 62.0009297 ], [ -6.7909446, 62.0010691 ], [ -6.7899177, 62.0012057 ], [ -6.7896594, 62.0012146 ], [ -6.7894546, 62.0012057 ], [ -6.789098, 62.0011779 ], [ -6.7883902, 62.0010869 ], [ -6.7865964, 62.0008673 ], [ -6.7861869, 62.0008495 ], [ -6.7859347, 62.0008195 ], [ -6.785813, 62.000805 ], [ -6.785341, 62.0008228 ], [ -6.7849151, 62.0008637 ], [ -6.784878, 62.0008673 ], [ -6.7843513, 62.0009191 ], [ -6.7832762, 62.0010248 ], [ -6.783026, 62.0010543 ], [ -6.7824294, 62.0012146 ], [ -6.7815478, 62.0014194 ], [ -6.7809606, 62.0015934 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36685660.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.76811, 62.0166255 ], [ -6.7681421, 62.0164729 ], [ -6.7680713, 62.0162705 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36685661.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.76811, 62.0166255 ], [ -6.7679104, 62.016497 ], [ -6.7677888, 62.0163129 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36685665.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7669342, 62.0172928 ], [ -6.76692, 62.0174265 ], [ -6.7671075, 62.0177091 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36685666.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7669342, 62.0172928 ], [ -6.7671785, 62.0173864 ], [ -6.7672496, 62.0174704 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36685667.0, "name": "Frúutrøð", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7664979, 62.0102124 ], [ -6.7660928, 62.0103775 ], [ -6.7656351, 62.0105283 ], [ -6.7654857, 62.0107033 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36827185.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7684352, 62.0237083 ], [ -6.768638, 62.0237033 ], [ -6.7687183, 62.0237364 ], [ -6.7688253, 62.0238081 ], [ -6.7689667, 62.023879 ], [ -6.7690699, 62.0239103 ], [ -6.7691539, 62.0239157 ], [ -6.7692762, 62.0239041 ], [ -6.7696278, 62.0238843 ], [ -6.7699259, 62.0238655 ], [ -6.7702508, 62.0238655 ], [ -6.7705317, 62.0238539 ], [ -6.7706769, 62.0238485 ], [ -6.7708164, 62.0238601 ], [ -6.7709597, 62.0238987 ], [ -6.7712158, 62.0239614 ], [ -6.7715081, 62.024017 ], [ -6.7718483, 62.0240672 ], [ -6.77211, 62.0241255 ], [ -6.7723374, 62.0241864 ], [ -6.7726776, 62.0242545 ], [ -6.7729164, 62.0242895 ], [ -6.7727808, 62.0244105 ], [ -6.7725935, 62.0245656 ], [ -6.7725304, 62.0246023 ], [ -6.772412, 62.0246391 ], [ -6.7723202, 62.0246543 ], [ -6.7722132, 62.0247009 ], [ -6.7720737, 62.0247798 ], [ -6.7719954, 62.0248112 ], [ -6.7718807, 62.0248417 ], [ -6.77181, 62.0248623 ], [ -6.7717871, 62.0249116 ], [ -6.7718311, 62.0250254 ], [ -6.7718425, 62.0250855 ], [ -6.7717986, 62.0251635 ], [ -6.7717069, 62.0252495 ], [ -6.7717088, 62.0253122 ], [ -6.7717527, 62.0254046 ], [ -6.7718139, 62.0254781 ], [ -6.7719209, 62.0255803 ], [ -6.7719534, 62.0256269 ], [ -6.7719667, 62.0257004 ], [ -6.7720317, 62.025816 ], [ -6.7721292, 62.0259648 ], [ -6.7721903, 62.026101 ], [ -6.7722725, 62.026188 ], [ -6.7723049, 62.0262265 ], [ -6.7723049, 62.0262659 ], [ -6.7722706, 62.0263143 ], [ -6.7722132, 62.0263565 ], [ -6.7721406, 62.0264067 ], [ -6.7720202, 62.0264882 ], [ -6.7719839, 62.0265217 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36827186.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7729164, 62.0242895 ], [ -6.7729643, 62.0242368 ], [ -6.7730499, 62.0241672 ], [ -6.7730743, 62.0241091 ], [ -6.773059, 62.0240489 ], [ -6.7730544, 62.0239951 ], [ -6.7730636, 62.0239091 ], [ -6.773082, 62.0238481 ], [ -6.7731018, 62.0238051 ], [ -6.7731492, 62.0237721 ], [ -6.7731997, 62.023742 ], [ -6.7733036, 62.0237111 ], [ -6.7734122, 62.0236817 ], [ -6.7735115, 62.0236351 ], [ -6.7736598, 62.0235699 ], [ -6.7738203, 62.0234838 ], [ -6.7740297, 62.0233963 ], [ -6.7741306, 62.0233425 ], [ -6.7742222, 62.0232881 ], [ -6.7742743, 62.0232572 ], [ -6.7743661, 62.0231963 ], [ -6.7744104, 62.0231568 ], [ -6.7744196, 62.0231245 ], [ -6.7744165, 62.0230837 ], [ -6.7744073, 62.0230112 ], [ -6.7744196, 62.0229775 ], [ -6.7744364, 62.0229252 ], [ -6.7744104, 62.02288 ], [ -6.7744165, 62.0228334 ], [ -6.7743905, 62.0227423 ], [ -6.774337, 62.0226649 ], [ -6.7743462, 62.0226233 ], [ -6.7743217, 62.022558 ], [ -6.7742866, 62.022497 ], [ -6.7742835, 62.0224433 ], [ -6.774259, 62.0223845 ], [ -6.7742453, 62.0222884 ], [ -6.7742208, 62.0222288 ], [ -6.7742499, 62.0221951 ], [ -6.7742514, 62.0221442 ], [ -6.7742682, 62.0221091 ], [ -6.7744669, 62.0220316 ], [ -6.7746687, 62.0219499 ], [ -6.7747773, 62.021886 ], [ -6.7748919, 62.0218265 ], [ -6.7751044, 62.0217075 ], [ -6.7753352, 62.0216071 ], [ -6.7753994, 62.0215762 ], [ -6.7754514, 62.0215332 ], [ -6.775456, 62.0214923 ], [ -6.7754404, 62.021477 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36827187.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7742222, 62.0232881 ], [ -6.774416, 62.0233263 ], [ -6.7745951, 62.0233812 ], [ -6.7748292, 62.023463 ], [ -6.7750489, 62.023519 ], [ -6.7753786, 62.023612 ], [ -6.7757153, 62.0237498 ], [ -6.776045, 62.0239145 ], [ -6.7762169, 62.0239818 ], [ -6.7763268, 62.0240199 ], [ -6.7764056, 62.0240613 ], [ -6.7765155, 62.0241028 ], [ -6.7765203, 62.0241218 ], [ -6.7764415, 62.0242126 ], [ -6.7763937, 62.0242585 ], [ -6.7763937, 62.0243045 ], [ -6.776365, 62.0243672 ], [ -6.7763125, 62.0244098 ], [ -6.776291, 62.0244669 ], [ -6.7763005, 62.0245521 ], [ -6.7763411, 62.0246227 ], [ -6.7764056, 62.0246854 ], [ -6.7764725, 62.0247213 ], [ -6.7765537, 62.0247583 ], [ -6.7765728, 62.0247784 ], [ -6.7766923, 62.0247941 ], [ -6.7768356, 62.0247795 ], [ -6.7769574, 62.024756 ], [ -6.7770458, 62.0247291 ], [ -6.7770768, 62.0247045 ], [ -6.7771318, 62.0246776 ], [ -6.7772106, 62.0246809 ], [ -6.7773205, 62.0247146 ], [ -6.7775378, 62.0248008 ], [ -6.7776883, 62.0248703 ], [ -6.7778459, 62.024923 ], [ -6.7779272, 62.0249487 ], [ -6.7780323, 62.0249723 ], [ -6.7781827, 62.0249924 ], [ -6.7782902, 62.0250216 ], [ -6.7783404, 62.0250507 ], [ -6.7783475, 62.0250978 ], [ -6.7783165, 62.0251639 ], [ -6.7783022, 62.0252972 ], [ -6.7783069, 62.0253566 ], [ -6.7783571, 62.0254339 ], [ -6.7783619, 62.0255448 ], [ -6.7783786, 62.0255695 ], [ -6.77851, 62.0256703 ], [ -6.778541, 62.0257431 ], [ -6.7785482, 62.0257879 ], [ -6.7786031, 62.0258496 ], [ -6.7786461, 62.0259089 ], [ -6.7786581, 62.0259605 ], [ -6.7786366, 62.0260221 ], [ -6.7786724, 62.0260624 ], [ -6.7786963, 62.0260994 ], [ -6.7787632, 62.0261173 ], [ -6.7788324, 62.0261061 ], [ -6.7789638, 62.0260759 ], [ -6.7790378, 62.0260781 ], [ -6.7791549, 62.0260792 ], [ -6.7793221, 62.0260692 ], [ -6.7794988, 62.0260703 ], [ -6.7797066, 62.0260344 ], [ -6.7801772, 62.0258809 ], [ -6.7802321, 62.0258529 ], [ -6.7802512, 62.0258227 ], [ -6.7802297, 62.025742 ], [ -6.780213, 62.0256714 ], [ -6.7801894, 62.0256449 ], [ -6.78017, 62.0256232 ], [ -6.7800506, 62.0255695 ], [ -6.7799312, 62.0255325 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36827189.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7802512, 62.0258227 ], [ -6.7802678, 62.0258634 ], [ -6.780301, 62.0259083 ], [ -6.7803323, 62.025935 ], [ -6.7804028, 62.0259877 ], [ -6.7804468, 62.0260795 ], [ -6.7804644, 62.0261254 ], [ -6.7804693, 62.0262709 ], [ -6.7804673, 62.026292 ], [ -6.7804487, 62.0263131 ], [ -6.7803783, 62.0263585 ], [ -6.7803176, 62.0264072 ], [ -6.7802922, 62.026454 ], [ -6.780255, 62.0265013 ], [ -6.7801934, 62.0265554 ], [ -6.7801063, 62.0265848 ], [ -6.7799635, 62.0266252 ], [ -6.7798627, 62.0266637 ], [ -6.7797649, 62.0267032 ], [ -6.7796758, 62.0267546 ], [ -6.7795183, 62.0268441 ], [ -6.7793823, 62.0269161 ], [ -6.7792043, 62.0270221 ], [ -6.779125, 62.0270671 ], [ -6.7790722, 62.0271075 ], [ -6.7790164, 62.0271336 ], [ -6.7789372, 62.0271557 ], [ -6.7788413, 62.0271708 ], [ -6.7787376, 62.0271782 ], [ -6.7786153, 62.0271717 ], [ -6.7785458, 62.027157 ], [ -6.7784646, 62.0271469 ], [ -6.7783942, 62.0271346 ], [ -6.7783707, 62.027129 ], [ -6.7783238, 62.0271309 ], [ -6.7783013, 62.0271373 ], [ -6.7782856, 62.0271511 ], [ -6.7782895, 62.0271703 ], [ -6.7783179, 62.0271754 ], [ -6.7783453, 62.027185 ], [ -6.7783648, 62.027202 ], [ -6.7784216, 62.0272479 ], [ -6.7784294, 62.0272832 ], [ -6.7784294, 62.027308 ], [ -6.7784637, 62.027353 ], [ -6.7784783, 62.0273948 ], [ -6.7785087, 62.0274576 ], [ -6.7785331, 62.0274934 ], [ -6.7785409, 62.0275338 ], [ -6.7785077, 62.0275728 ], [ -6.7784685, 62.0276123 ], [ -6.7783942, 62.0276439 ], [ -6.7783433, 62.0276761 ], [ -6.7783198, 62.0276962 ], [ -6.7783795, 62.0277733 ], [ -6.7784314, 62.0278114 ], [ -6.7785047, 62.0278458 ], [ -6.7785586, 62.0278752 ], [ -6.7786055, 62.0279174 ], [ -6.7785996, 62.0279569 ], [ -6.7785742, 62.0279803 ], [ -6.7785723, 62.0280344 ], [ -6.778583, 62.0280932 ], [ -6.7785918, 62.0281184 ], [ -6.7786319, 62.0281643 ], [ -6.7785987, 62.0282253 ], [ -6.7785214, 62.0282827 ], [ -6.778492, 62.0282992 ], [ -6.7785382, 62.0283615 ], [ -6.778542, 62.0284063 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36827190.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7801894, 62.0256449 ], [ -6.7802365, 62.0256273 ], [ -6.7802879, 62.025607 ], [ -6.7804012, 62.0256155 ], [ -6.7805283, 62.0256176 ], [ -6.780579, 62.0256185 ], [ -6.7806285, 62.0256249 ], [ -6.7807187, 62.0256581 ], [ -6.7807788, 62.0257016 ], [ -6.7808476, 62.0257489 ], [ -6.7809009, 62.0258041 ], [ -6.7809134, 62.0258426 ], [ -6.7809453, 62.0258981 ], [ -6.7809641, 62.0259275 ], [ -6.7809973, 62.0259348 ], [ -6.7810299, 62.0259275 ], [ -6.7810449, 62.0259175 ], [ -6.7810731, 62.025906 ], [ -6.7810962, 62.0258987 ], [ -6.7811507, 62.0258931 ], [ -6.7812127, 62.025894 ], [ -6.7812847, 62.0259054 ], [ -6.7813673, 62.0259272 ], [ -6.7814043, 62.0259374 ], [ -6.7814688, 62.0259336 ], [ -6.7814951, 62.0259236 ], [ -6.7815408, 62.0259046 ], [ -6.7815746, 62.0258837 ], [ -6.7816942, 62.0258388 ], [ -6.7817718, 62.0258112 ], [ -6.7818507, 62.0257768 ], [ -6.7819855, 62.0257187 ], [ -6.7820648, 62.0256825 ], [ -6.7822242, 62.0256113 ], [ -6.782323, 62.0255714 ], [ -6.7824336, 62.0255319 ], [ -6.7825158, 62.0254865 ], [ -6.782595, 62.0254264 ], [ -6.7826479, 62.0254094 ], [ -6.7827291, 62.0253603 ], [ -6.7828318, 62.0253094 ], [ -6.7829042, 62.0252763 ], [ -6.782867, 62.0251731 ], [ -6.7828318, 62.0250501 ], [ -6.7828015, 62.0249849 ], [ -6.7827741, 62.0248839 ], [ -6.7827839, 62.0248279 ], [ -6.7827956, 62.0247669 ], [ -6.7828572, 62.0246953 ], [ -6.7829512, 62.0246265 ], [ -6.7830177, 62.0245457 ], [ -6.7831048, 62.0244709 ], [ -6.7832153, 62.0244066 ], [ -6.7833396, 62.0243502 ], [ -6.7835186, 62.0242974 ], [ -6.7836839, 62.0242552 ], [ -6.7838767, 62.0241964 ], [ -6.7840499, 62.0241372 ], [ -6.7842905, 62.0240904 ], [ -6.7843886, 62.024076 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36827191.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7829042, 62.0252763 ], [ -6.7829738, 62.0254014 ], [ -6.7830338, 62.0255092 ], [ -6.7831145, 62.0255941 ], [ -6.783172, 62.0256773 ], [ -6.7832148, 62.0257439 ], [ -6.7832673, 62.0258156 ], [ -6.7833053, 62.0258706 ], [ -6.7834117, 62.0259286 ], [ -6.7835021, 62.0259968 ], [ -6.7836318, 62.0260949 ], [ -6.7837296, 62.026185 ], [ -6.7838152, 62.0262492 ], [ -6.7839314, 62.0263462 ], [ -6.7840635, 62.0264259 ], [ -6.7842127, 62.026512 ], [ -6.7843081, 62.0265711 ], [ -6.7843741, 62.0266307 ], [ -6.7844304, 62.0266967 ], [ -6.7844817, 62.0267282 ], [ -6.7846211, 62.0267908 ], [ -6.7847263, 62.0268418 ], [ -6.7848853, 62.0269359 ], [ -6.7850504, 62.0270282 ], [ -6.7851972, 62.0271028 ], [ -6.7853072, 62.027182 ], [ -6.7854613, 62.0272887 ], [ -6.7856607, 62.0273942 ], [ -6.7858294, 62.0274986 ], [ -6.7859419, 62.0275715 ], [ -6.786074, 62.0276535 ], [ -6.7862, 62.0277338 ], [ -6.7863724, 62.0278216 ], [ -6.786519, 62.0279097 ], [ -6.7866287, 62.0279667 ], [ -6.786777, 62.0280643 ], [ -6.7868719, 62.0281125 ], [ -6.7870345, 62.0281796 ], [ -6.7871659, 62.0282413 ], [ -6.7872501, 62.0282819 ], [ -6.7873395, 62.02832 ], [ -6.7875184, 62.0284239 ], [ -6.7877318, 62.0285717 ], [ -6.7879269, 62.0287185 ], [ -6.788061, 62.0288444 ], [ -6.7883049, 62.0290512 ], [ -6.7885671, 62.0292962 ], [ -6.7887135, 62.0294573 ], [ -6.7888253, 62.0295689 ], [ -6.7889066, 62.0296299 ], [ -6.7889696, 62.0296842 ], [ -6.7890712, 62.02975 ], [ -6.7891911, 62.029811 ], [ -6.7893232, 62.0298777 ], [ -6.7896464, 62.0300074 ], [ -6.7899411, 62.0301303 ], [ -6.7902236, 62.0302972 ], [ -6.7905062, 62.030444 ], [ -6.790622, 62.0304935 ], [ -6.7907521, 62.0305231 ], [ -6.7908639, 62.0305479 ], [ -6.7911281, 62.0307147 ], [ -6.7912948, 62.0307957 ], [ -6.7913761, 62.0308586 ], [ -6.7915244, 62.0308967 ], [ -6.791687, 62.0309644 ], [ -6.7919167, 62.0310435 ], [ -6.792122, 62.0311331 ], [ -6.7922907, 62.0311932 ], [ -6.7925488, 62.0312656 ], [ -6.7927175, 62.0313095 ], [ -6.7928984, 62.0313772 ], [ -6.7930204, 62.0314134 ], [ -6.7930956, 62.0314153 ], [ -6.7932135, 62.0314134 ], [ -6.7933049, 62.0314067 ], [ -6.7933496, 62.0314258 ], [ -6.7933435, 62.0314706 ], [ -6.7932805, 62.0315202 ], [ -6.7931952, 62.0316365 ], [ -6.7931728, 62.0317384 ], [ -6.7931057, 62.0318471 ], [ -6.792996, 62.0319939 ], [ -6.7929533, 62.0320625 ], [ -6.7928984, 62.0321436 ], [ -6.7928629, 62.0322125 ], [ -6.7928517, 62.0322341 ], [ -6.7928435, 62.0323008 ], [ -6.7928578, 62.03242 ], [ -6.7928639, 62.0324848 ], [ -6.7928665, 62.0325244 ], [ -6.7928793, 62.0325524 ], [ -6.7928868, 62.0325751 ], [ -6.7928868, 62.0325886 ], [ -6.7928671, 62.0325988 ], [ -6.7928543, 62.0325976 ], [ -6.7928372, 62.0325893 ], [ -6.7928276, 62.0325771 ], [ -6.7928116, 62.0325641 ], [ -6.7927568, 62.0325506 ], [ -6.7927349, 62.0325559 ], [ -6.7927285, 62.0325661 ], [ -6.7927307, 62.0325818 ], [ -6.7927419, 62.0326091 ], [ -6.7927482, 62.0326388 ], [ -6.7927381, 62.032675 ], [ -6.7927429, 62.0326905 ], [ -6.7927557, 62.032712 ], [ -6.7927765, 62.0327318 ], [ -6.7927999, 62.032752 ], [ -6.7928223, 62.03277 ], [ -6.7928404, 62.0327862 ], [ -6.7928367, 62.0327982 ], [ -6.792825, 62.0328082 ], [ -6.7928074, 62.0328112 ], [ -6.7927866, 62.0328085 ], [ -6.7927594, 62.0327987 ], [ -6.7927301, 62.0327872 ], [ -6.7926934, 62.032779 ], [ -6.7926731, 62.0327772 ], [ -6.7926465, 62.0327787 ], [ -6.7926348, 62.0327872 ], [ -6.7926411, 62.0327995 ], [ -6.7926598, 62.0328162 ], [ -6.7926667, 62.0328405 ], [ -6.7926651, 62.0328624 ], [ -6.7926449, 62.0328914 ], [ -6.792607, 62.0329272 ], [ -6.7925511, 62.0329669 ], [ -6.7924984, 62.0329946 ], [ -6.7924435, 62.0330189 ], [ -6.7923758, 62.0330331 ], [ -6.7922927, 62.0330468 ], [ -6.792225, 62.0330481 ], [ -6.7921787, 62.0330501 ], [ -6.7921387, 62.0330588 ], [ -6.7920945, 62.0330686 ], [ -6.7920258, 62.0330886 ], [ -6.7919879, 62.0331058 ], [ -6.7919469, 62.0331083 ], [ -6.7919032, 62.0331076 ], [ -6.7918563, 62.0331011 ], [ -6.791818, 62.0330928 ], [ -6.7917343, 62.0330793 ], [ -6.7916501, 62.0330633 ], [ -6.7915793, 62.0330616 ], [ -6.7915036, 62.0330603 ], [ -6.7914477, 62.0330636 ], [ -6.7914221, 62.0330686 ], [ -6.791331, 62.0331151 ], [ -6.7912717, 62.0331635 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36827192.0, "name": "Undir Svartafossi", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7803932, 62.0227168 ], [ -6.7798129, 62.0228386 ], [ -6.7797782, 62.0228928 ], [ -6.77974, 62.0229562 ], [ -6.7797117, 62.0230057 ], [ -6.7796833, 62.0230805 ], [ -6.7796236, 62.0231471 ], [ -6.7795277, 62.0232504 ], [ -6.7790834, 62.0236874 ], [ -6.7789306, 62.0238174 ], [ -6.7787634, 62.0240022 ], [ -6.7787156, 62.0241412 ], [ -6.7786153, 62.024298 ], [ -6.7785173, 62.0244695 ], [ -6.7784552, 62.0246006 ], [ -6.7784529, 62.0247014 ], [ -6.7784791, 62.0247843 ], [ -6.7785094, 62.024817 ], [ -6.7785651, 62.0248773 ], [ -6.778663, 62.0249636 ], [ -6.7788016, 62.0250342 ], [ -6.7789688, 62.0250801 ], [ -6.7791933, 62.0251317 ], [ -6.7793796, 62.0251821 ], [ -6.7796591, 62.0253244 ], [ -6.7798806, 62.0254135 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877610.0, "name": "Garðsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7818409, 61.9991543 ], [ -6.7816793, 61.9990227 ], [ -6.7800575, 61.9986113 ], [ -6.7799123, 61.9985101 ], [ -6.7799196, 61.9984192 ], [ -6.7808707, 61.9975985 ], [ -6.7808919, 61.9975802 ], [ -6.7814894, 61.9967207 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877611.0, "name": "Suðurstíggjur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7808919, 61.9975802 ], [ -6.7819471, 61.9978288 ], [ -6.7813003, 61.9984112 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877612.0, "name": "Suðurstíggjur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7819471, 61.9978288 ], [ -6.7821114, 61.9976887 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877613.0, "name": "Norðurstíggjur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7835656, 61.9991093 ], [ -6.7835346, 61.9985499 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877614.0, "name": "Støðlatún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7847019, 61.9981639 ], [ -6.7869014, 61.9981069 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877615.0, "name": "Hornagøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.776496, 62.0050177 ], [ -6.7772449, 62.0051015 ], [ -6.7780273, 62.0052022 ], [ -6.7786646, 62.005279 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877616.0, "name": "Háskúlavegur", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7791788, 62.0043914 ], [ -6.7784901, 62.004319 ], [ -6.7777145, 62.0042375 ], [ -6.7768873, 62.0041506 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877617.0, "name": "Rasmusargøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7780273, 62.0052022 ], [ -6.7784901, 62.004319 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877618.0, "name": "Hornagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770821, 62.0055066 ], [ -6.7772449, 62.0051015 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877619.0, "name": "Símunargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7791788, 62.0043914 ], [ -6.7786646, 62.005279 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36877693.0, "name": "Smærugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7938934, 62.0298276 ], [ -6.7936303, 62.0296066 ], [ -6.7933869, 62.029334 ], [ -6.7931591, 62.0291425 ], [ -6.7929707, 62.0289786 ], [ -6.7926958, 62.0288331 ], [ -6.7923267, 62.0286563 ], [ -6.7919812, 62.0284906 ], [ -6.7917849, 62.0283966 ], [ -6.791565, 62.0283414 ], [ -6.7911841, 62.0283322 ], [ -6.7909525, 62.028358 ], [ -6.7908342, 62.0284022 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36878012.0, "name": "Nóatún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7786646, 62.005279 ], [ -6.7786469, 62.0054343 ], [ -6.7786469, 62.0055203 ], [ -6.7786942, 62.0055869 ], [ -6.7787592, 62.0056618 ], [ -6.7788774, 62.0057173 ], [ -6.7790542, 62.005794 ], [ -6.7791138, 62.0058199 ], [ -6.7793754, 62.0059447 ], [ -6.7794409, 62.005976 ], [ -6.7794683, 62.0059891 ], [ -6.7796822, 62.0060874 ], [ -6.7798077, 62.0061451 ], [ -6.7801562, 62.0059977 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996181.0, "name": "Rygsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7675315, 61.9902459 ], [ -6.7680857, 61.9907241 ], [ -6.7686588, 61.991298 ], [ -6.7695019, 61.9920943 ], [ -6.7699756, 61.9925525 ], [ -6.7705203, 61.9929262 ], [ -6.7706672, 61.9929351 ], [ -6.7713939, 61.9927465 ], [ -6.7722871, 61.9925147 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996182.0, "name": "Leitisgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7713939, 61.9927465 ], [ -6.7711456, 61.9924969 ], [ -6.7705819, 61.9920165 ], [ -6.770004, 61.991496 ], [ -6.7694783, 61.990991 ], [ -6.7690283, 61.9905595 ], [ -6.768422, 61.9900234 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996183.0, "name": "Viðargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7693762, 61.9898711 ], [ -6.770814, 61.9911467 ], [ -6.7713966, 61.9917117 ], [ -6.7722871, 61.9925147 ], [ -6.7734333, 61.9935512 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996184.0, "name": "Undir Kongavarða", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7766719, 61.9941594 ], [ -6.7767988, 61.9941098 ], [ -6.7769837, 61.9940856 ], [ -6.7772535, 61.9940756 ], [ -6.7775991, 61.9940941 ], [ -6.7782721, 61.9941383 ], [ -6.7788996, 61.9941681 ], [ -6.7799576, 61.9942222 ], [ -6.7804608, 61.9942536 ], [ -6.780579, 61.9942778 ], [ -6.7806548, 61.9943375 ], [ -6.7807609, 61.9944229 ], [ -6.7808852, 61.9945098 ], [ -6.7811065, 61.9945795 ], [ -6.7815946, 61.9946635 ], [ -6.7827708, 61.9948685 ], [ -6.7836772, 61.9950222 ], [ -6.7846381, 61.9951859 ], [ -6.7850383, 61.9952599 ], [ -6.7853323, 61.9952927 ], [ -6.7856325, 61.995304 ], [ -6.7860084, 61.9953225 ], [ -6.7865025, 61.9953325 ], [ -6.7870391, 61.9953268 ], [ -6.7875665, 61.9953183 ], [ -6.7887124, 61.9952998 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996185.0, "name": "Glyvursvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7722871, 61.9925147 ], [ -6.7726139, 61.9924836 ], [ -6.772936, 61.9924947 ], [ -6.7731306, 61.9925945 ], [ -6.7733317, 61.9926866 ], [ -6.7736346, 61.9927757 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996869.0, "name": "Reynsgøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7881401, 61.9970953 ], [ -6.789035, 61.9969199 ], [ -6.790118, 61.99677 ], [ -6.7903059, 61.9967407 ], [ -6.7905007, 61.9967103 ], [ -6.790888, 61.9966499 ], [ -6.792025, 61.9964899 ], [ -6.7923461, 61.9964428 ], [ -6.792979, 61.99635 ], [ -6.793035, 61.9963424 ], [ -6.793931, 61.99622 ], [ -6.7948533, 61.9960521 ], [ -6.7960739, 61.9958299 ], [ -6.79715, 61.99563 ], [ -6.7972271, 61.995616 ], [ -6.7985379, 61.9953799 ], [ -6.7989089, 61.99532 ], [ -6.79928, 61.9953 ], [ -6.8000654, 61.9952865 ], [ -6.800645, 61.9952837 ], [ -6.801043, 61.9952727 ], [ -6.8012246, 61.9952369 ], [ -6.8013124, 61.9951408 ], [ -6.8012129, 61.9950418 ], [ -6.8007972, 61.9948163 ], [ -6.8005162, 61.9947202 ], [ -6.8002001, 61.9947146 ], [ -6.7990585, 61.9947146 ], [ -6.7987189, 61.9947064 ], [ -6.7983442, 61.9946404 ], [ -6.7980163, 61.9945442 ], [ -6.7976651, 61.99447 ], [ -6.7972495, 61.9944233 ], [ -6.7968338, 61.9944453 ], [ -6.7963947, 61.9945415 ], [ -6.7947028, 61.9948768 ], [ -6.7930227, 61.9952094 ], [ -6.792579, 61.9952799 ], [ -6.7913308, 61.9954487 ], [ -6.790644, 61.99552 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996871.0, "name": "Traðagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7881401, 61.9970953 ], [ -6.787379, 61.99722 ], [ -6.7867456, 61.9972534 ], [ -6.786621, 61.99726 ], [ -6.7858335, 61.997241 ], [ -6.7854118, 61.9972132 ], [ -6.7852071, 61.9971997 ], [ -6.7849341, 61.9971637 ], [ -6.7846451, 61.9971255 ], [ -6.783757, 61.9969499 ], [ -6.7829129, 61.9968064 ], [ -6.7827301, 61.9967753 ], [ -6.7818519, 61.9966499 ], [ -6.78108, 61.99658 ], [ -6.780376, 61.99654 ], [ -6.779663, 61.99648 ], [ -6.7789944, 61.9964556 ], [ -6.778637, 61.99644 ], [ -6.7782561, 61.99644 ], [ -6.7775239, 61.99644 ], [ -6.776544, 61.99644 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996873.0, "name": "Argjavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7815198, 62.0002142 ], [ -6.7815708, 62.0000645 ], [ -6.7815837, 61.9999484 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 36996875.0, "name": "Argjaboðagøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7696327, 61.9955825 ], [ -6.7693219, 61.9954989 ], [ -6.7690353, 61.9954015 ], [ -6.7688281, 61.9952726 ], [ -6.7686161, 61.9951041 ], [ -6.7683946, 61.9949095 ], [ -6.7679417, 61.9946347 ], [ -6.7676335, 61.9944696 ], [ -6.7673781, 61.9943395 ], [ -6.76713, 61.9942162 ], [ -6.7668048, 61.9940273 ], [ -6.7665206, 61.993818 ], [ -6.7663303, 61.993645 ], [ -6.766181, 61.9934471 ], [ -6.7660629, 61.9931337 ], [ -6.7659979, 61.9928996 ], [ -6.7659169, 61.9926499 ], [ -6.765837, 61.9922899 ], [ -6.7658277, 61.9918964 ], [ -6.765724, 61.99142 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180103.0, "name": "Birnugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7845594, 62.0238354 ], [ -6.7844032, 62.0239566 ], [ -6.7843553, 62.024024 ], [ -6.7843886, 62.024076 ], [ -6.7844272, 62.0241365 ], [ -6.7846069, 62.0243388 ], [ -6.7847687, 62.0245299 ], [ -6.7848705, 62.024662 ], [ -6.7849185, 62.0247856 ], [ -6.7848945, 62.0249205 ], [ -6.7847867, 62.0250385 ], [ -6.784541, 62.0251566 ], [ -6.7842774, 62.0252633 ], [ -6.7840977, 62.0253364 ], [ -6.7839599, 62.0254404 ], [ -6.783888, 62.025564 ], [ -6.7838723, 62.0256919 ], [ -6.7839336, 62.0257998 ], [ -6.7840103, 62.0258818 ], [ -6.7841698, 62.0259969 ], [ -6.784363, 62.0260976 ], [ -6.7845501, 62.0262171 ], [ -6.7847495, 62.026335 ], [ -6.7849335, 62.0264473 ], [ -6.7851391, 62.0265609 ], [ -6.7853415, 62.026689 ], [ -6.7857862, 62.0269393 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180104.0, "name": "Gæsugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7883764, 62.0254895 ], [ -6.7880642, 62.0255703 ], [ -6.7878699, 62.0256375 ], [ -6.7874831, 62.0257885 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180105.0, "name": "Gæsugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7884097, 62.0263428 ], [ -6.7882625, 62.0262609 ], [ -6.7880838, 62.0261494 ], [ -6.7878915, 62.0260288 ], [ -6.7874831, 62.0257885 ], [ -6.7873222, 62.0256734 ], [ -6.787224, 62.0255896 ], [ -6.7871651, 62.0255122 ], [ -6.7871298, 62.0254303 ], [ -6.7871121, 62.0253272 ], [ -6.7871475, 62.025248 ], [ -6.7872103, 62.025154 ], [ -6.7872888, 62.0250822 ], [ -6.7873595, 62.0250371 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180106.0, "name": "Oman Hoydalar", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7759232, 62.0279404 ], [ -6.7758705, 62.0278014 ], [ -6.7757416, 62.0274964 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180107.0, "name": "Oman Hoydalar", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7760514, 62.0274403 ], [ -6.7757416, 62.0274964 ], [ -6.7752969, 62.027541 ], [ -6.7748951, 62.0275957 ], [ -6.7742878, 62.0276561 ], [ -6.7736774, 62.027705 ], [ -6.7729382, 62.0277683 ], [ -6.7722235, 62.0278273 ], [ -6.7716377, 62.0278734 ], [ -6.7711776, 62.027918 ], [ -6.7710733, 62.0279036 ], [ -6.7709935, 62.0278791 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180108.0, "name": "Oman Hoydalar", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7706491, 62.0287613 ], [ -6.7705212, 62.0286747 ], [ -6.7704445, 62.0285625 ], [ -6.7704322, 62.0284459 ], [ -6.7704997, 62.0283438 ], [ -6.7706285, 62.0281453 ], [ -6.7707727, 62.0280172 ], [ -6.7709935, 62.0278791 ], [ -6.771518, 62.0274993 ], [ -6.7719475, 62.0271972 ], [ -6.7721376, 62.0270806 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180109.0, "name": "Nicolai Mohrs gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7671853, 62.0295353 ], [ -6.7674564, 62.0294121 ], [ -6.7677976, 62.029279 ], [ -6.7693504, 62.028709 ], [ -6.7699255, 62.0284896 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180110.0, "name": "Gróthúsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7659556, 62.0295121 ], [ -6.7660339, 62.0296225 ], [ -6.7661183, 62.0297448 ], [ -6.7661375, 62.0298437 ], [ -6.7661643, 62.029912 ], [ -6.7660416, 62.0300541 ], [ -6.7660305, 62.0300656 ], [ -6.7657771, 62.0303292 ], [ -6.7656034, 62.030527 ], [ -6.7655624, 62.0305737 ], [ -6.765317, 62.0308219 ], [ -6.7652441, 62.030892 ], [ -6.7652518, 62.0309406 ], [ -6.7653093, 62.0309909 ], [ -6.7653591, 62.0310305 ], [ -6.7655969, 62.0310934 ], [ -6.7659956, 62.0311707 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180111.0, "name": "Gróthúsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7656034, 62.030527 ], [ -6.7660799, 62.0306187 ], [ -6.7664864, 62.030678 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180112.0, "name": "Gróthúsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7660305, 62.0300656 ], [ -6.7664442, 62.0301566 ], [ -6.7668774, 62.0302483 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180113.0, "name": "Løgmannabreyt", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.774039, 62.0280955 ], [ -6.7741625, 62.0285341 ], [ -6.774189, 62.0286282 ], [ -6.7743424, 62.0291766 ], [ -6.774419, 62.0293632 ], [ -6.7746107, 62.0295251 ], [ -6.7749846, 62.0296442 ], [ -6.7757753, 62.0299117 ], [ -6.7761444, 62.030087 ], [ -6.7770454, 62.03055 ], [ -6.7771987, 62.0306714 ], [ -6.7772035, 62.030813 ], [ -6.7772515, 62.0309591 ], [ -6.7772881, 62.0309979 ], [ -6.7773809, 62.0310962 ], [ -6.778071, 62.0314356 ], [ -6.7789337, 62.0318694 ], [ -6.7795854, 62.0321818 ], [ -6.7796466, 62.0322145 ], [ -6.7802899, 62.0325582 ], [ -6.7803427, 62.0325864 ], [ -6.7809561, 62.0329258 ], [ -6.7811478, 62.0330719 ], [ -6.7812341, 62.0331932 ], [ -6.7812724, 62.0333168 ], [ -6.7812772, 62.0334315 ], [ -6.7812724, 62.0335776 ], [ -6.7812724, 62.0336809 ], [ -6.7812916, 62.0337663 ], [ -6.7813299, 62.0338652 ], [ -6.7814588, 62.0339875 ], [ -6.781464, 62.0340079 ], [ -6.7815017, 62.0341558 ], [ -6.7814741, 62.0342852 ], [ -6.7814649, 62.0344204 ], [ -6.781333, 62.0345844 ], [ -6.7812349, 62.0347096 ], [ -6.781195, 62.0348131 ], [ -6.7811996, 62.0348391 ], [ -6.7812164, 62.0349339 ], [ -6.7812778, 62.0350461 ], [ -6.7813759, 62.0351482 ], [ -6.7815661, 62.0352719 ], [ -6.7818084, 62.0353928 ], [ -6.7820875, 62.0355337 ], [ -6.7825139, 62.0357394 ], [ -6.7827225, 62.0358343 ], [ -6.7828472, 62.0358895 ], [ -6.7830191, 62.0359759 ], [ -6.7832257, 62.0361068 ], [ -6.7833054, 62.0362104 ], [ -6.783309, 62.036343 ], [ -6.7832728, 62.036467 ], [ -6.7831625, 62.0366486 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180114.0, "name": "Gillagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.784296, 62.0361364 ], [ -6.7833328, 62.0356574 ], [ -6.7826611, 62.035318 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180115.0, "name": "Jørundargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7802899, 62.0325582 ], [ -6.7798122, 62.032754 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180116.0, "name": "Jørundargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7806749, 62.0332071 ], [ -6.7798122, 62.032754 ], [ -6.7793099, 62.0324897 ], [ -6.7786275, 62.0321786 ], [ -6.7784626, 62.0321319 ], [ -6.7782862, 62.0321337 ], [ -6.7779488, 62.0321876 ], [ -6.7766261, 62.0324088 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180117.0, "name": "Rólantsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7811996, 62.0348391 ], [ -6.7809362, 62.0348022 ], [ -6.7805873, 62.0347321 ], [ -6.7801655, 62.0346548 ], [ -6.7797553, 62.0345829 ], [ -6.779368, 62.0345451 ], [ -6.778954, 62.0345272 ], [ -6.7784134, 62.0345487 ], [ -6.7777807, 62.0346009 ], [ -6.7771136, 62.0346314 ], [ -6.7764542, 62.0346854 ], [ -6.7760516, 62.0347555 ], [ -6.775787, 62.034858 ], [ -6.7754611, 62.0350162 ], [ -6.7749359, 62.0352859 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180118.0, "name": "Ólivantsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7777807, 62.0346009 ], [ -6.7779303, 62.0348688 ], [ -6.7780721, 62.0351061 ], [ -6.7782025, 62.035338 ], [ -6.7783022, 62.0355664 ], [ -6.7783253, 62.0356329 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180119.0, "name": "Dýrindalsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7824851, 62.0362783 ], [ -6.7823049, 62.0361093 ], [ -6.7820941, 62.0360068 ], [ -6.7818717, 62.0359439 ], [ -6.781634, 62.0359187 ], [ -6.7812966, 62.0359151 ], [ -6.7807521, 62.0359331 ], [ -6.780039, 62.0359565 ], [ -6.7795022, 62.0359781 ], [ -6.7785399, 62.03605 ], [ -6.7778766, 62.0361381 ], [ -6.7773743, 62.0362513 ], [ -6.7766689, 62.0364006 ], [ -6.7762394, 62.0364887 ], [ -6.77581, 62.0366037 ], [ -6.7755416, 62.0367134 ], [ -6.7750279, 62.0369417 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180120.0, "name": "Ólivantsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7813694, 62.0354675 ], [ -6.7805997, 62.0354931 ], [ -6.7805068, 62.0354962 ], [ -6.7795674, 62.0355142 ], [ -6.7790958, 62.0355466 ], [ -6.7783253, 62.0356329 ], [ -6.777589, 62.0357228 ], [ -6.7770868, 62.0357965 ], [ -6.7762011, 62.0359996 ], [ -6.7753844, 62.036183 ], [ -6.7747863, 62.036397 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180121.0, "name": "Olgarsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7753844, 62.036183 ], [ -6.7750125, 62.0357138 ], [ -6.7748515, 62.0355682 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180122.0, "name": "Viljormsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762011, 62.0359996 ], [ -6.7758867, 62.0356491 ], [ -6.7755225, 62.0352535 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180123.0, "name": "Einarsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770868, 62.0357965 ], [ -6.7768759, 62.0355466 ], [ -6.7766152, 62.0352571 ], [ -6.7762586, 62.0349047 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180124.0, "name": "Karlotsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7795674, 62.0355142 ], [ -6.7794677, 62.0350342 ], [ -6.7794102, 62.0348346 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180125.0, "name": "Huginsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7805997, 62.0354931 ], [ -6.7805949, 62.0351474 ], [ -6.7805029, 62.0349119 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180126.0, "name": "Bertugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7760516, 62.0347555 ], [ -6.775799, 62.0344646 ], [ -6.7755575, 62.0341967 ], [ -6.7750935, 62.0336645 ], [ -6.7750169, 62.0335548 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180127.0, "name": "Bertugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7755575, 62.0341967 ], [ -6.774645, 62.0343513 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180128.0, "name": "Gortrugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7751664, 62.0349249 ], [ -6.774645, 62.0343513 ], [ -6.774204, 62.0338371 ], [ -6.7741082, 62.0336986 ], [ -6.7741044, 62.0335818 ], [ -6.7742117, 62.0334721 ], [ -6.7747983, 62.033055 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180129.0, "name": "Jóansgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.781464, 62.0340079 ], [ -6.7821596, 62.0340147 ], [ -6.7830798, 62.0340327 ], [ -6.7830798, 62.0338493 ], [ -6.7831565, 62.033754 ], [ -6.7832907, 62.0336552 ], [ -6.7834287, 62.0335706 ], [ -6.7836166, 62.0335401 ], [ -6.7838619, 62.0335185 ], [ -6.7839804, 62.0335214 ], [ -6.7840996, 62.0335239 ], [ -6.7843029, 62.0335653 ], [ -6.7844869, 62.033621 ], [ -6.7846709, 62.0337019 ], [ -6.7847591, 62.0337379 ], [ -6.7848971, 62.0338188 ], [ -6.785016, 62.0338817 ], [ -6.785108, 62.033941 ], [ -6.7851387, 62.0340507 ], [ -6.7851761, 62.0341195 ], [ -6.7851885, 62.0341424 ], [ -6.7853112, 62.0342377 ], [ -6.7855758, 62.0343725 ], [ -6.7859707, 62.0345685 ], [ -6.7863464, 62.0348202 ], [ -6.7865964, 62.0349781 ], [ -6.7867734, 62.0350309 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180130.0, "name": "Guttormsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7830798, 62.0340327 ], [ -6.7830836, 62.0342053 ], [ -6.7831028, 62.0344247 ], [ -6.7831526, 62.0345487 ], [ -6.7832485, 62.0346368 ], [ -6.78349, 62.0347609 ], [ -6.7837776, 62.0349173 ], [ -6.7839309, 62.035009 ], [ -6.784092, 62.0351618 ], [ -6.7841878, 62.0352284 ], [ -6.7846518, 62.0354621 ], [ -6.7852997, 62.0357785 ], [ -6.7856754, 62.0359817 ], [ -6.7860512, 62.0361525 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180131.0, "name": "Ísaksgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7839309, 62.035009 ], [ -6.7841725, 62.0349011 ], [ -6.7844792, 62.0347753 ], [ -6.7846172, 62.0347483 ], [ -6.7847323, 62.0347555 ], [ -6.784832, 62.0347861 ], [ -6.7861662, 62.0354171 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180132.0, "name": "Kristiansgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7820195, 62.0333831 ], [ -6.7820674, 62.0332117 ], [ -6.7820614, 62.0330432 ], [ -6.7820075, 62.0329167 ], [ -6.7818577, 62.0328325 ], [ -6.7814863, 62.0326498 ], [ -6.781073, 62.0324363 ], [ -6.7806955, 62.0322031 ], [ -6.7802642, 62.0319447 ], [ -6.7797909, 62.0317115 ], [ -6.779102, 62.031394 ], [ -6.7783711, 62.0310344 ], [ -6.7781435, 62.0308855 ], [ -6.7781016, 62.0307618 ], [ -6.7780956, 62.030627 ], [ -6.7780836, 62.0305848 ], [ -6.7778859, 62.0304556 ], [ -6.7776397, 62.0303262 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180133.0, "name": "Løgmannabreyt", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770454, 62.03055 ], [ -6.7776397, 62.0303262 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180134.0, "name": "Pætursgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.779818, 62.0306264 ], [ -6.778457, 62.0299808 ], [ -6.7779854, 62.029738 ], [ -6.7779087, 62.0296481 ], [ -6.7778972, 62.0295456 ], [ -6.7778819, 62.0293514 ], [ -6.7778512, 62.0292867 ], [ -6.7777553, 62.0292184 ], [ -6.7774141, 62.0290583 ], [ -6.7770575, 62.0288965 ], [ -6.7768812, 62.0288875 ], [ -6.776793, 62.0289234 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180135.0, "name": "Hákunargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7827772, 62.0326271 ], [ -6.7816315, 62.0320687 ], [ -6.781551, 62.0320085 ], [ -6.7815203, 62.0319553 ], [ -6.7815233, 62.0318833 ], [ -6.7815141, 62.0318172 ], [ -6.7814712, 62.0317769 ], [ -6.7813823, 62.0317021 ], [ -6.7810847, 62.0315712 ], [ -6.7806952, 62.0313943 ], [ -6.7801676, 62.0311181 ], [ -6.7800879, 62.0310519 ], [ -6.7800449, 62.030944 ], [ -6.7800143, 62.030862 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180136.0, "name": "Kristiansgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7796466, 62.0322145 ], [ -6.7802642, 62.0319447 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180137.0, "name": "Andrasargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7750439, 62.0292105 ], [ -6.7752644, 62.0291678 ], [ -6.7754944, 62.0291565 ], [ -6.7756669, 62.029161 ], [ -6.7758299, 62.029197 ], [ -6.7759593, 62.0292554 ], [ -6.7761366, 62.0293386 ], [ -6.7761893, 62.0294038 ], [ -6.7761989, 62.029469 ], [ -6.7761893, 62.0295364 ], [ -6.7762516, 62.0296241 ], [ -6.776381, 62.0297005 ], [ -6.7765967, 62.0298354 ], [ -6.7769274, 62.0299994 ], [ -6.7772581, 62.0301635 ], [ -6.7776397, 62.0303262 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180138.0, "name": "Atlagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7772881, 62.0309979 ], [ -6.7769701, 62.0310872 ], [ -6.7768199, 62.0311861 ], [ -6.7767899, 62.0312059 ], [ -6.7764142, 62.0313695 ], [ -6.7760614, 62.0314666 ], [ -6.7758314, 62.0315583 ], [ -6.7751911, 62.0317021 ], [ -6.7749304, 62.0317633 ], [ -6.7745125, 62.0319449 ], [ -6.7742211, 62.0320671 ], [ -6.7738875, 62.0322254 ], [ -6.7736805, 62.0322865 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180139.0, "name": "Torkilsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7768199, 62.0311861 ], [ -6.777204, 62.0314054 ], [ -6.7776526, 62.031614 ], [ -6.777967, 62.0317687 ], [ -6.778151, 62.0318891 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180140.0, "name": "Torkilsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.777204, 62.0314054 ], [ -6.7768857, 62.0315547 ], [ -6.7759886, 62.0319395 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180141.0, "name": "Maritugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7760614, 62.0314666 ], [ -6.7758275, 62.0312886 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180142.0, "name": "Maritugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7738223, 62.0296486 ], [ -6.7740715, 62.0297457 ], [ -6.7742748, 62.029841 ], [ -6.7744358, 62.0299202 ], [ -6.7745316, 62.0299471 ], [ -6.7747808, 62.0299849 ], [ -6.7749074, 62.030037 ], [ -6.7754403, 62.0302708 ], [ -6.775563, 62.0303086 ], [ -6.7758505, 62.0303535 ], [ -6.7759694, 62.0303823 ], [ -6.7761343, 62.0304632 ], [ -6.7762953, 62.0306358 ], [ -6.7762685, 62.030848 ], [ -6.7762186, 62.0310476 ], [ -6.7761381, 62.0311411 ], [ -6.7760116, 62.0312041 ], [ -6.7758275, 62.0312886 ], [ -6.7756397, 62.0313245 ], [ -6.7753828, 62.0313533 ], [ -6.7751719, 62.0313227 ], [ -6.7750224, 62.0312886 ], [ -6.7748, 62.0312059 ], [ -6.7742556, 62.0309397 ], [ -6.7735616, 62.0306286 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37180143.0, "name": "Kirkjustræti", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7741625, 62.0285341 ], [ -6.773518, 62.0285888 ], [ -6.7729728, 62.0286478 ], [ -6.7725834, 62.0287265 ], [ -6.7725564, 62.0287373 ], [ -6.7724157, 62.0287939 ], [ -6.7722899, 62.028895 ], [ -6.772212, 62.0290159 ], [ -6.7721641, 62.0291423 ], [ -6.7720443, 62.0293896 ], [ -6.7718466, 62.0295076 ], [ -6.7716489, 62.0296172 ], [ -6.7714632, 62.0297211 ], [ -6.7712954, 62.029797 ], [ -6.7711037, 62.0298756 ], [ -6.7708701, 62.0300611 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477584.0, "name": "Djúpagilsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7784728, 62.0283925 ], [ -6.7783658, 62.0284892 ], [ -6.7783054, 62.0285776 ], [ -6.7783205, 62.0286542 ], [ -6.7783959, 62.0287474 ], [ -6.7785467, 62.0288652 ], [ -6.7789312, 62.0290927 ], [ -6.7792403, 62.0292836 ], [ -6.7793332, 62.0293437 ], [ -6.7794363, 62.0294475 ], [ -6.7794875, 62.0295071 ], [ -6.7795669, 62.0295995 ], [ -6.7799162, 62.0298164 ], [ -6.7804188, 62.0301346 ], [ -6.7808385, 62.0303856 ], [ -6.7810068, 62.0304917 ], [ -6.7812405, 62.0305765 ], [ -6.7817306, 62.0307404 ], [ -6.7821228, 62.0309223 ], [ -6.7821603, 62.0309395 ], [ -6.7825372, 62.0311352 ], [ -6.782693, 62.03122 ], [ -6.7828136, 62.0313414 ], [ -6.7828589, 62.0314522 ], [ -6.7828564, 62.0315877 ], [ -6.7828765, 62.0317233 ], [ -6.782894, 62.0319071 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477586.0, "name": "Móritsarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.784268, 62.0291093 ], [ -6.783953, 62.029181 ], [ -6.7835564, 62.0292952 ], [ -6.7830931, 62.0294277 ], [ -6.782881, 62.0294904 ], [ -6.782618, 62.0295419 ], [ -6.782347, 62.0295438 ], [ -6.7820643, 62.0295217 ], [ -6.7816638, 62.0294977 ], [ -6.7812869, 62.0294701 ], [ -6.7809217, 62.0294406 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477588.0, "name": "Lýðarsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7848777, 62.0298053 ], [ -6.7843417, 62.029936 ], [ -6.7840153, 62.0300315 ], [ -6.7839137, 62.0300612 ], [ -6.7836074, 62.0301681 ], [ -6.7835289, 62.0302062 ], [ -6.7832658, 62.0303338 ], [ -6.7830342, 62.030354 ], [ -6.7827397, 62.0303448 ], [ -6.7823942, 62.0303264 ], [ -6.7822214, 62.0302896 ], [ -6.78208, 62.0302086 ], [ -6.7818916, 62.0300815 ], [ -6.7816638, 62.0299029 ], [ -6.7815421, 62.0298255 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477589.0, "name": "Sívarsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7855099, 62.0303648 ], [ -6.7851427, 62.0304885 ], [ -6.7847697, 62.0306468 ], [ -6.7843417, 62.0308494 ], [ -6.7841257, 62.0309102 ], [ -6.7838823, 62.0309212 ], [ -6.7835878, 62.0309139 ], [ -6.7831441, 62.030901 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477591.0, "name": "Onnugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7897821, 62.0324071 ], [ -6.7890654, 62.0325625 ], [ -6.7889271, 62.0325925 ], [ -6.7885076, 62.0326835 ], [ -6.7880199, 62.0327439 ], [ -6.7876203, 62.0327958 ], [ -6.7868467, 62.0328805 ], [ -6.7865065, 62.0328987 ], [ -6.7862617, 62.0329118 ], [ -6.7863496, 62.0327618 ], [ -6.7863657, 62.032548 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477592.0, "name": "Marinargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7890654, 62.0325625 ], [ -6.7888728, 62.0324294 ], [ -6.7885626, 62.0322765 ], [ -6.7883593, 62.032202 ], [ -6.788166, 62.0321311 ], [ -6.7876909, 62.031969 ], [ -6.7873297, 62.0318641 ], [ -6.7871132, 62.0318179 ], [ -6.7870274, 62.0317996 ], [ -6.786619, 62.0317591 ], [ -6.7862303, 62.0317425 ], [ -6.7859916, 62.0317561 ], [ -6.7858102, 62.0317665 ], [ -6.7853508, 62.0318254 ], [ -6.7850602, 62.0318825 ], [ -6.7847814, 62.031969 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477599.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7883781, 62.0333095 ], [ -6.7883584, 62.0334476 ], [ -6.7881582, 62.0337312 ], [ -6.7880466, 62.0338517 ], [ -6.7879815, 62.0339374 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477601.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7896463, 62.0333206 ], [ -6.7894932, 62.033571 ], [ -6.7892851, 62.0338638 ], [ -6.7891241, 62.0340369 ], [ -6.7890495, 62.0341289 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477602.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7907496, 62.0335047 ], [ -6.7901882, 62.0342615 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477604.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7918093, 62.0338396 ], [ -6.7916488, 62.0339466 ], [ -6.7915945, 62.0339864 ], [ -6.7914838, 62.0341131 ], [ -6.7913101, 62.0343176 ], [ -6.7910875, 62.0345656 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477605.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7904618, 62.035531 ], [ -6.7904084, 62.0354343 ], [ -6.7904618, 62.0353371 ], [ -6.790644, 62.0351147 ], [ -6.7909141, 62.0347656 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477607.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7891395, 62.0354404 ], [ -6.7897362, 62.0347671 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477608.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.788088, 62.0352605 ], [ -6.7885614, 62.0346979 ], [ -6.7887687, 62.0344239 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477610.0, "name": "Millum Gilja", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7868232, 62.0337017 ], [ -6.7869132, 62.0335996 ], [ -6.7869645, 62.0335415 ], [ -6.7870153, 62.0335101 ], [ -6.7870863, 62.0334661 ], [ -6.7872512, 62.0334237 ], [ -6.7876792, 62.0333703 ], [ -6.7883781, 62.0333095 ], [ -6.7885783, 62.0332838 ], [ -6.7888139, 62.033258 ], [ -6.788967, 62.0332432 ], [ -6.7890929, 62.0332487 ], [ -6.7891791, 62.0332525 ], [ -6.7896463, 62.0333206 ], [ -6.7907496, 62.0335047 ], [ -6.7913418, 62.0335873 ], [ -6.7915748, 62.0336599 ], [ -6.7917724, 62.0338083 ], [ -6.7918093, 62.0338396 ], [ -6.7920054, 62.0340061 ], [ -6.7921043, 62.0341479 ], [ -6.7922525, 62.0343293 ], [ -6.7923584, 62.0344974 ], [ -6.792341, 62.03468 ], [ -6.7921949, 62.03485 ], [ -6.7920407, 62.0350481 ], [ -6.7918924, 62.0352295 ], [ -6.7917371, 62.0352856 ], [ -6.7913842, 62.0353614 ], [ -6.791003, 62.0354339 ], [ -6.790635, 62.0355 ], [ -6.7904618, 62.035531 ], [ -6.7903, 62.03556 ], [ -6.7901346, 62.0355724 ], [ -6.789796, 62.03557 ], [ -6.7894019, 62.0355 ], [ -6.7891395, 62.0354404 ], [ -6.7890968, 62.0354307 ], [ -6.7888074, 62.0353812 ], [ -6.7884897, 62.0353251 ], [ -6.788129, 62.0352671 ], [ -6.788088, 62.0352605 ], [ -6.7880229, 62.03525 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477612.0, "name": "Karlamagnusarbreyt", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7708701, 62.0300611 ], [ -6.7710318, 62.030151 ], [ -6.7715231, 62.0303982 ], [ -6.7716479, 62.0304588 ], [ -6.7721459, 62.0306941 ], [ -6.772206, 62.0307298 ], [ -6.7725475, 62.0309461 ], [ -6.7727931, 62.0311035 ], [ -6.7728698, 62.0311754 ], [ -6.7730387, 62.0313339 ], [ -6.7732784, 62.0316935 ], [ -6.7733982, 62.0319407 ], [ -6.7734581, 62.0320475 ], [ -6.7735719, 62.0321964 ], [ -6.7736805, 62.0322865 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477614.0, "name": "Tórugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.792311, 62.0291488 ], [ -6.7915592, 62.0294466 ], [ -6.7905518, 62.0298135 ], [ -6.7907616, 62.0299416 ], [ -6.7917003, 62.0304451 ], [ -6.7924303, 62.0307961 ] ], [ [ -6.7924303, 62.0307961 ], [ -6.7926328, 62.0308508 ], [ -6.7928843, 62.0308393 ], [ -6.7929948, 62.0307818 ], [ -6.7929549, 62.0307224 ], [ -6.7928192, 62.030713 ], [ -6.7924303, 62.0307961 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477616.0, "name": "Tórugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7912813, 62.029298 ], [ -6.7915592, 62.0294466 ], [ -6.7925829, 62.0300687 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477618.0, "name": "Tórugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7905518, 62.0298135 ], [ -6.790389, 62.0297234 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477619.0, "name": "Smærugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.791565, 62.0283414 ], [ -6.7916003, 62.0282254 ], [ -6.7916082, 62.0280872 ], [ -6.7916514, 62.0278828 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477621.0, "name": "Turiðargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.7908342, 62.0284022 ], [ -6.7903027, 62.0286181 ], [ -6.7901906, 62.0286634 ], [ -6.7895864, 62.0288444 ], [ -6.7893522, 62.0289064 ], [ -6.789208, 62.0287509 ], [ -6.7886317, 62.0281298 ] ], [ [ -6.7886317, 62.0281298 ], [ -6.788575, 62.0280393 ], [ -6.7885901, 62.028002 ], [ -6.7886242, 62.0279577 ], [ -6.7887528, 62.0279541 ], [ -6.7888284, 62.0279861 ], [ -6.7888171, 62.0280499 ], [ -6.7887187, 62.0280925 ], [ -6.7886317, 62.0281298 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477622.0, "name": "Javnagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.796334, 62.0280276 ], [ -6.7962185, 62.0281631 ], [ -6.7961725, 62.0283214 ], [ -6.7961879, 62.0285336 ], [ -6.7962415, 62.0288897 ], [ -6.7962645, 62.0291846 ], [ -6.7963029, 62.0295263 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477623.0, "name": "Korkagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7959915, 62.027553 ], [ -6.7958198, 62.0276128 ], [ -6.7957354, 62.0277027 ], [ -6.795559, 62.0278897 ], [ -6.7953673, 62.028048 ], [ -6.7952829, 62.0281775 ], [ -6.7952062, 62.0282782 ], [ -6.7951679, 62.0284005 ], [ -6.7951832, 62.0286775 ], [ -6.7951602, 62.0290156 ], [ -6.7951909, 62.0292206 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477624.0, "name": "Børkugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7944776, 62.0286336 ], [ -6.7940605, 62.0286185 ], [ -6.7938319, 62.0285857 ], [ -6.7937599, 62.0285753 ], [ -6.7932139, 62.0283393 ], [ -6.7928887, 62.0281753 ], [ -6.792582, 62.0280228 ], [ -6.7924347, 62.0279422 ], [ -6.7924225, 62.027853 ], [ -6.792447, 62.0277408 ], [ -6.7925478, 62.0276781 ], [ -6.7927142, 62.0276177 ], [ -6.7928682, 62.0275956 ], [ -6.7929875, 62.0275956 ], [ -6.7931477, 62.0276192 ], [ -6.7932859, 62.0276443 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477625.0, "name": "Brobbersgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7948718, 62.0260331 ], [ -6.7946963, 62.0260704 ], [ -6.7945183, 62.0261394 ], [ -6.7943772, 62.026243 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477627.0, "name": "Skørugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7945157, 62.0254048 ], [ -6.7940726, 62.0254616 ], [ -6.7934021, 62.0255614 ], [ -6.7932251, 62.0255948 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477628.0, "name": "Mækjugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7930686, 62.0228517 ], [ -6.7927698, 62.0229503 ], [ -6.7924247, 62.023105 ], [ -6.7919032, 62.0233892 ], [ -6.7916195, 62.0235546 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477630.0, "name": "Turiðargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7893522, 62.0289064 ], [ -6.7896608, 62.0292357 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477632.0, "name": "Turiðargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7906473, 62.028918 ], [ -6.7901906, 62.0286634 ], [ -6.7896706, 62.028354 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37477633.0, "name": "Aggusteinusvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7841631, 62.0288577 ], [ -6.7833749, 62.0288567 ], [ -6.7827937, 62.0288383 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37719485.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7785094, 62.024817 ], [ -6.778451, 62.0248605 ], [ -6.778449, 62.0248777 ], [ -6.7784531, 62.0249072 ], [ -6.7784531, 62.0249473 ], [ -6.7784287, 62.024994 ], [ -6.7783941, 62.0250407 ], [ -6.7783475, 62.0250978 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37719486.0, "name": "Skraddaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7700557, 62.0263902 ], [ -6.7702593, 62.0263954 ], [ -6.7704245, 62.0264045 ], [ -6.7705754, 62.0264204 ], [ -6.7707133, 62.0264491 ], [ -6.7708811, 62.0264857 ], [ -6.7710463, 62.0265095 ], [ -6.7711087, 62.0265119 ], [ -6.7713741, 62.0265296 ], [ -6.7716317, 62.0265253 ], [ -6.7719217, 62.0265174 ], [ -6.7719839, 62.0265217 ], [ -6.7721429, 62.0265327 ], [ -6.772364, 62.0265351 ], [ -6.772645, 62.0265369 ], [ -6.7728583, 62.0265369 ], [ -6.7730873, 62.0265339 ], [ -6.7732733, 62.0265144 ], [ -6.7734606, 62.0264881 ], [ -6.773658, 62.0264804 ], [ -6.7740069, 62.0264668 ], [ -6.7743386, 62.0264527 ], [ -6.774699, 62.0264381 ], [ -6.7750099, 62.0264137 ], [ -6.7752349, 62.0263893 ], [ -6.775845, 62.0263106 ], [ -6.776096, 62.0262746 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37719487.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7814043, 62.0259374 ], [ -6.7814429, 62.0259654 ], [ -6.7814937, 62.0260228 ], [ -6.7815428, 62.0260845 ], [ -6.7815944, 62.0261419 ], [ -6.7816819, 62.0262262 ], [ -6.7817793, 62.0263016 ], [ -6.7818783, 62.0263836 ], [ -6.7820199, 62.0264937 ], [ -6.7821173, 62.0265554 ], [ -6.7821872, 62.0266082 ], [ -6.7822846, 62.0266812 ], [ -6.7824064, 62.0267601 ], [ -6.7825512, 62.0268448 ], [ -6.7827219, 62.0269546 ], [ -6.7828503, 62.027056 ], [ -6.7830357, 62.0271918 ], [ -6.7831251, 62.0272604 ], [ -6.7831609, 62.0273085 ], [ -6.7832503, 62.0274007 ], [ -6.783426, 62.0275457 ], [ -6.7835658, 62.027686 ], [ -6.7837593, 62.0278301 ], [ -6.7839934, 62.0280589 ], [ -6.7841073, 62.0281391 ], [ -6.7842114, 62.0282261 ], [ -6.7843691, 62.0283633 ], [ -6.7844602, 62.0284373 ], [ -6.7844976, 62.0284831 ], [ -6.7846123, 62.0284685 ], [ -6.7846839, 62.0284467 ], [ -6.7848071, 62.0284111 ], [ -6.7848654, 62.0284037 ], [ -6.7849136, 62.0284357 ], [ -6.7849628, 62.028492 ], [ -6.7850294, 62.028559 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37719489.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7817947, 62.0225326 ], [ -6.781508, 62.0226068 ], [ -6.7813206, 62.0225799 ], [ -6.7812403, 62.0225191 ], [ -6.7811664, 62.0224536 ], [ -6.7807092, 62.0225711 ], [ -6.7804999, 62.0226198 ], [ -6.7803716, 62.0226706 ], [ -6.7803932, 62.0227168 ], [ -6.7804576, 62.022749 ], [ -6.7805438, 62.0227909 ], [ -6.7806903, 62.0227648 ], [ -6.7809019, 62.0227062 ], [ -6.7811739, 62.0226284 ], [ -6.781356, 62.0226392 ], [ -6.781508, 62.0226321 ], [ -6.7818353, 62.0225694 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37719490.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7787632, 62.0261173 ], [ -6.7786697, 62.0261217 ], [ -6.7785623, 62.026115 ], [ -6.7784574, 62.0261115 ], [ -6.7783808, 62.0261209 ], [ -6.7783042, 62.0261502 ], [ -6.7782234, 62.0261927 ], [ -6.7781577, 62.0262287 ], [ -6.7780877, 62.0262591 ], [ -6.778037, 62.0262771 ], [ -6.7780012, 62.0262779 ], [ -6.7779121, 62.026274 ], [ -6.7778205, 62.0262669 ], [ -6.777689, 62.0262607 ], [ -6.7774833, 62.0262525 ], [ -6.7773043, 62.0262474 ], [ -6.7771778, 62.0262373 ], [ -6.7769538, 62.0262256 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37719491.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7803323, 62.025935 ], [ -6.7804117, 62.0259252 ], [ -6.7804572, 62.0259115 ], [ -6.780493, 62.0259123 ], [ -6.7805581, 62.0259184 ], [ -6.7806068, 62.02591 ], [ -6.7806442, 62.0259191 ], [ -6.7807174, 62.0259329 ], [ -6.7808036, 62.025939 ], [ -6.7808833, 62.0259596 ], [ -6.7809288, 62.0259702 ], [ -6.7809776, 62.0259428 ], [ -6.7809973, 62.0259348 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37966989.0, "name": "Kirkjustræti", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7725564, 62.0287373 ], [ -6.77296, 62.0289911 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37966990.0, "name": "Kirkjustræti", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7727652, 62.0295014 ], [ -6.7727619, 62.0292683 ], [ -6.7727785, 62.0291681 ], [ -6.7728452, 62.0290696 ], [ -6.7729019, 62.0290148 ], [ -6.77296, 62.0289911 ], [ -6.7731719, 62.0289498 ], [ -6.7734341, 62.0289279 ], [ -6.7735291, 62.028956 ], [ -6.7735717, 62.0290067 ], [ -6.7736712, 62.029263 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37966991.0, "name": "Brekkutún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7663359, 62.0328551 ], [ -6.7653613, 62.0328441 ], [ -6.7653118, 62.0322978 ], [ -6.765341, 62.0319752 ], [ -6.7653618, 62.0315079 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37966992.0, "name": "Brekkutún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7653613, 62.0328441 ], [ -6.7653785, 62.0335219 ], [ -6.7654077, 62.0338895 ], [ -6.7653576, 62.0340068 ], [ -6.765257, 62.0340433 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37966994.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.765257, 62.0340433 ], [ -6.7650533, 62.0340498 ], [ -6.7650372, 62.0340497 ], [ -6.7647674, 62.0340477 ], [ -6.7645196, 62.0340459 ], [ -6.7644862, 62.0335551 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37966995.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7650372, 62.0340497 ], [ -6.7650152, 62.033488 ], [ -6.7648563, 62.0334848 ], [ -6.7647318, 62.0334842 ], [ -6.7644874, 62.033484 ], [ -6.7644862, 62.0335551 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 37966996.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7647674, 62.0340477 ], [ -6.7647318, 62.0334842 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314245.0, "name": "Sundsvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7940672, 62.0305319 ], [ -6.7940974, 62.0305496 ], [ -6.7943398, 62.0306748 ], [ -6.7952583, 62.0309208 ], [ -6.7963587, 62.0312242 ], [ -6.7970789, 62.03144 ], [ -6.7980926, 62.0317434 ], [ -6.799233, 62.0321313 ], [ -6.7996398, 62.0322251 ], [ -6.7999066, 62.0323471 ], [ -6.8004268, 62.0326598 ], [ -6.8014871, 62.0328787 ], [ -6.8021407, 62.033032 ], [ -6.8028476, 62.033154 ], [ -6.8036145, 62.0332853 ], [ -6.8043148, 62.033351 ], [ -6.805055, 62.0334104 ], [ -6.8056352, 62.0334386 ], [ -6.8064222, 62.0333698 ], [ -6.8071157, 62.0332759 ], [ -6.8078093, 62.033204 ], [ -6.8080449, 62.0331688 ], [ -6.8082635, 62.0331255 ], [ -6.8083966, 62.0330839 ], [ -6.8084888, 62.0330199 ], [ -6.8086083, 62.0329398 ], [ -6.8086527, 62.0328453 ], [ -6.8086971, 62.0327733 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314246.0, "name": "Vatnaskarðar", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8004268, 62.0326598 ], [ -6.8002686, 62.032829 ], [ -6.8002046, 62.0330041 ], [ -6.8001352, 62.0333544 ], [ -6.8000979, 62.0337047 ], [ -6.8000499, 62.0339549 ], [ -6.8000072, 62.034165 ], [ -6.8000285, 62.0342951 ], [ -6.8000125, 62.0344377 ], [ -6.8000659, 62.0345628 ], [ -6.8001726, 62.0347405 ], [ -6.8002846, 62.0348906 ], [ -6.8003486, 62.0349956 ], [ -6.8002846, 62.0351032 ], [ -6.8001512, 62.0352533 ], [ -6.7999432, 62.035451 ], [ -6.7998631, 62.0355711 ], [ -6.7993936, 62.0359488 ], [ -6.7989988, 62.0363066 ], [ -6.7987374, 62.0365568 ], [ -6.798524, 62.0367344 ], [ -6.7982466, 62.0370246 ], [ -6.7980918, 62.0371296 ], [ -6.7979105, 62.0372147 ], [ -6.7976021, 62.0372869 ], [ -6.7969358, 62.0369985 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314248.0, "name": "Blómubrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7892514, 62.0266282 ], [ -6.7897435, 62.0265456 ], [ -6.7902983, 62.0264115 ], [ -6.7905971, 62.0263474 ], [ -6.7909215, 62.0262913 ], [ -6.7914507, 62.0262273 ], [ -6.792217, 62.0261393 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314249.0, "name": "Blómubrekka", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7927483, 62.0256797 ], [ -6.7922574, 62.0257658 ], [ -6.7921247, 62.0258085 ], [ -6.7920603, 62.0258354 ], [ -6.7920701, 62.0258781 ], [ -6.792217, 62.0261393 ], [ -6.7923316, 62.0263202 ], [ -6.7924212, 62.0265125 ], [ -6.7925205, 62.0267296 ], [ -6.792603, 62.0268326 ], [ -6.7926743, 62.0268818 ], [ -6.792796, 62.0268884 ], [ -6.7931274, 62.0268739 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314250.0, "name": "Blómubrekka", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7924212, 62.0265125 ], [ -6.7919851, 62.0265552 ], [ -6.7915641, 62.0266017 ], [ -6.791283, 62.0266372 ], [ -6.7909767, 62.0266431 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314251.0, "name": "Blómubrekka", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.791283, 62.0266372 ], [ -6.791311, 62.0267769 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314257.0, "name": "Berjabrekka", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7888193, 62.0260084 ], [ -6.789111, 62.0259644 ], [ -6.7893244, 62.0259083 ], [ -6.7894823, 62.0257942 ], [ -6.7899561, 62.0256761 ], [ -6.7901609, 62.025622 ], [ -6.790225, 62.025556 ], [ -6.7902122, 62.0254739 ], [ -6.7901782, 62.0253761 ], [ -6.790187, 62.0252793 ], [ -6.7903006, 62.0251358 ], [ -6.7903863, 62.0249931 ], [ -6.79036, 62.0248889 ], [ -6.7901887, 62.0247307 ], [ -6.7900646, 62.0245732 ], [ -6.7899002, 62.0243354 ], [ -6.7897009, 62.0241607 ], [ -6.7896537, 62.024114 ], [ -6.7893426, 62.024182 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314258.0, "name": "Sóljugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7895681, 62.0212168 ], [ -6.7891634, 62.0214524 ], [ -6.7890741, 62.0215044 ], [ -6.7886472, 62.0217406 ], [ -6.7885007, 62.0218522 ], [ -6.7883456, 62.0219544 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39314259.0, "name": "Blákollugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7912133, 62.0216353 ], [ -6.7908133, 62.0218308 ], [ -6.7903967, 62.0220855 ], [ -6.7903899, 62.02214 ], [ -6.7905333, 62.0222057 ], [ -6.7914416, 62.0227439 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39429526.0, "name": "Sivjugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.774645, 62.0343513 ], [ -6.7742385, 62.0344304 ], [ -6.7741235, 62.0344196 ], [ -6.7740162, 62.0343801 ], [ -6.7738705, 62.0341985 ], [ -6.7736519, 62.0339306 ], [ -6.7734947, 62.0337292 ], [ -6.7734257, 62.0336105 ], [ -6.7734334, 62.0335602 ], [ -6.7735139, 62.0334847 ], [ -6.7736941, 62.0332689 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39429529.0, "name": "Dýrindalsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7783253, 62.0356329 ], [ -6.7783597, 62.0357318 ], [ -6.7785399, 62.03605 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39429530.0, "name": "Villumsgøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7776466, 62.0139962 ], [ -6.7779771, 62.0139509 ], [ -6.778208, 62.0138899 ], [ -6.7782853, 62.013836 ], [ -6.7782407, 62.0137505 ], [ -6.7781404, 62.0136425 ], [ -6.7779262, 62.0134584 ], [ -6.7777134, 62.0132463 ], [ -6.7774744, 62.0130448 ], [ -6.7773082, 62.012906 ], [ -6.7769485, 62.0125832 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652061.0, "name": "Marknalíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.791535, 62.0122279 ], [ -6.791923, 62.0121113 ], [ -6.7927192, 62.0117699 ], [ -6.7935334, 62.0114525 ], [ -6.7943476, 62.0110774 ], [ -6.7948355, 62.0108077 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652063.0, "name": "Fagralíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7910745, 62.0119404 ], [ -6.7915987, 62.0116959 ], [ -6.7922827, 62.0114298 ], [ -6.7928674, 62.0112185 ], [ -6.7932883, 62.0110594 ], [ -6.7936742, 62.0108234 ], [ -6.7939314, 62.010582 ], [ -6.7943883, 62.0102461 ], [ -6.7944167, 62.0102253 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652064.0, "name": "Brattalíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7905601, 62.0114914 ], [ -6.7907805, 62.0114243 ], [ -6.7914242, 62.0111843 ], [ -6.7918667, 62.0109838 ], [ -6.7924931, 62.0106718 ], [ -6.7929542, 62.0103867 ], [ -6.7929936, 62.0103623 ], [ -6.7935823, 62.0099479 ], [ -6.793639, 62.009908 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652065.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7935823, 62.0099479 ], [ -6.7937017, 62.0099664 ], [ -6.7938511, 62.0099852 ], [ -6.7940197, 62.0100248 ], [ -6.7941346, 62.0100536 ], [ -6.7942879, 62.0101111 ], [ -6.7943722, 62.0101758 ], [ -6.7943883, 62.0102461 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652066.0, "name": "Eiriksgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7874266, 62.0095562 ], [ -6.7870423, 62.0093396 ], [ -6.7868089, 62.009202 ], [ -6.7864107, 62.0089673 ], [ -6.7861174, 62.008803 ], [ -6.785514, 62.00846 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652067.0, "name": "Leivsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7861174, 62.008803 ], [ -6.7855786, 62.0089926 ], [ -6.7847734, 62.0092596 ], [ -6.7845261, 62.009341 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652068.0, "name": "Hvarvið", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7901587, 62.0091422 ], [ -6.7904135, 62.0093269 ], [ -6.7911429, 62.0098362 ], [ -6.7917792, 62.0096656 ], [ -6.7921701, 62.0093713 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 39652071.0, "name": "Brekkugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7792735, 62.0124752 ], [ -6.7788692, 62.0120993 ], [ -6.7785457, 62.0118229 ], [ -6.7781997, 62.0115021 ], [ -6.7779518, 62.0113023 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40163916.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7640499, 62.0077405 ], [ -6.7641434, 62.0077263 ], [ -6.7642057, 62.0077409 ], [ -6.7642774, 62.0077951 ], [ -6.764453, 62.0079261 ], [ -6.7644789, 62.0079455 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312934.0, "name": "Millum Horna", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8098139, 61.9999627 ], [ -6.8099941, 62.0001903 ], [ -6.8090244, 62.0002754 ], [ -6.8088477, 62.0003179 ], [ -6.8088212, 62.0003645 ], [ -6.8089118, 62.0005398 ], [ -6.8090995, 62.0007627 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312935.0, "name": "Millum Horna", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8099941, 62.0001903 ], [ -6.8105617, 62.0001302 ], [ -6.8115557, 61.9999871 ], [ -6.8122271, 61.9999114 ], [ -6.8128146, 61.9998419 ], [ -6.8131504, 61.9997869 ], [ -6.8133137, 61.99976 ], [ -6.8136361, 61.9997033 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312936.0, "name": "Undir Gráasteini", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8044642, 62.0007372 ], [ -6.8045971, 62.0008578 ], [ -6.8048214, 62.0010587 ], [ -6.8043728, 62.0012548 ], [ -6.8042267, 62.0013139 ], [ -6.8034996, 62.0016079 ], [ -6.8032998, 62.0016808 ], [ -6.8028967, 62.0018278 ], [ -6.8028198, 62.0018558 ], [ -6.8023262, 62.0020243 ], [ -6.8020636, 62.0021075 ], [ -6.8017533, 62.0022058 ], [ -6.8013737, 62.0022819 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312938.0, "name": "Undir Gráasteini", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8048214, 62.0010587 ], [ -6.8052873, 62.0008756 ], [ -6.8057187, 62.0007088 ], [ -6.8060166, 62.0005872 ], [ -6.8061467, 62.0005447 ], [ -6.8063531, 62.0004982 ], [ -6.8065962, 62.0004611 ], [ -6.8070047, 62.0004146 ], [ -6.8072959, 62.0003854 ], [ -6.8074012, 62.0003881 ], [ -6.8077841, 62.0007742 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312939.0, "name": "Dánjalstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8014435, 62.0078107 ], [ -6.8017168, 62.0079101 ], [ -6.8018811, 62.0079699 ], [ -6.8022132, 62.0080529 ], [ -6.8024117, 62.0080387 ], [ -6.8025411, 62.0079132 ], [ -6.8026791, 62.0078038 ], [ -6.8024591, 62.0077188 ], [ -6.8023038, 62.0076641 ], [ -6.8023987, 62.0075345 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312941.0, "name": "Dánjalstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8026791, 62.0078038 ], [ -6.8028159, 62.0078381 ], [ -6.8029706, 62.0078704 ], [ -6.8030565, 62.0078704 ], [ -6.8031171, 62.0078381 ], [ -6.8031681, 62.0078037 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312942.0, "name": "Hjaltarók", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7906476, 62.0152823 ], [ -6.7905608, 62.0152345 ], [ -6.7905401, 62.0151729 ], [ -6.790585, 62.0150968 ], [ -6.7907092, 62.0149478 ], [ -6.7908645, 62.0148361 ], [ -6.791044, 62.0147211 ], [ -6.7911199, 62.014658 ], [ -6.7911303, 62.0145964 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312944.0, "name": "Írarók", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7911303, 62.0145964 ], [ -6.7910682, 62.0145495 ], [ -6.7909543, 62.0145333 ], [ -6.7907886, 62.0145446 ], [ -6.7905781, 62.0145721 ], [ -6.790057, 62.0146547 ], [ -6.7898788, 62.0146776 ], [ -6.7898884, 62.0148283 ], [ -6.7898884, 62.014985 ], [ -6.7898083, 62.0152519 ], [ -6.7896951, 62.0155693 ], [ -6.7895736, 62.0157351 ], [ -6.7894825, 62.0158621 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312945.0, "name": "Tummasargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7888698, 62.014807 ], [ -6.7888613, 62.0147168 ], [ -6.7888641, 62.0146184 ], [ -6.7889082, 62.0145471 ], [ -6.78898, 62.0144798 ], [ -6.7891098, 62.0144305 ], [ -6.7894245, 62.0143295 ], [ -6.7898608, 62.0142336 ], [ -6.7900651, 62.014174 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312947.0, "name": "Skotarók", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7898788, 62.0146776 ], [ -6.7895013, 62.014726 ], [ -6.7890285, 62.0147697 ], [ -6.7888698, 62.014807 ], [ -6.7887869, 62.0148604 ], [ -6.7887421, 62.0149365 ], [ -6.7886592, 62.015147 ], [ -6.7886316, 62.0154045 ], [ -6.7886075, 62.0157154 ], [ -6.7886075, 62.016096 ], [ -6.7885799, 62.0163729 ], [ -6.7886316, 62.0166757 ], [ -6.7886627, 62.0169316 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312948.0, "name": "Undir Krákugjógv", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7905527, 62.0187027 ], [ -6.7908675, 62.0190467 ], [ -6.7911996, 62.0193948 ], [ -6.7915361, 62.0197227 ], [ -6.7917087, 62.0199049 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 40312950.0, "name": "Undir Krákugjógv", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7917087, 62.0199049 ], [ -6.7918985, 62.0201194 ], [ -6.7920452, 62.0202935 ], [ -6.7920236, 62.0205283 ], [ -6.7918726, 62.0207104 ], [ -6.7917303, 62.0208885 ], [ -6.7915663, 62.0210767 ], [ -6.7913593, 62.0212204 ], [ -6.7912428, 62.0213054 ], [ -6.7909537, 62.0213581 ], [ -6.7907208, 62.0213884 ], [ -6.7905224, 62.0214319 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41728070.0, "name": "Á Hvítanesi", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771136, 62.041785 ], [ -6.7709728, 62.0418607 ], [ -6.7709728, 62.0419807 ], [ -6.7712799, 62.0421907 ], [ -6.7717919, 62.0423768 ], [ -6.7721784, 62.042713 ], [ -6.77242, 62.0430826 ], [ -6.7724667, 62.0432887 ], [ -6.7725005, 62.0434382 ], [ -6.7725777, 62.0436945 ], [ -6.7726347, 62.0438975 ], [ -6.7726951, 62.0440831 ], [ -6.7727287, 62.0442042 ], [ -6.7728025, 62.0443332 ], [ -6.77292, 62.0444779 ], [ -6.7730273, 62.044577 ], [ -6.773024, 62.0446257 ], [ -6.7729233, 62.0446902 ], [ -6.7727757, 62.0447264 ], [ -6.7725676, 62.0447594 ], [ -6.7723328, 62.0448035 ], [ -6.7722086, 62.0448302 ], [ -6.7721382, 62.0448916 ], [ -6.772108, 62.044997 ], [ -6.7720845, 62.0450504 ], [ -6.7719771, 62.0451008 ], [ -6.7718194, 62.045159 ], [ -6.7716382, 62.0452172 ], [ -6.7714469, 62.0453005 ], [ -6.7714033, 62.0453194 ], [ -6.7713396, 62.0453996 ], [ -6.7713631, 62.0454893 ], [ -6.7714201, 62.0455947 ], [ -6.7714604, 62.0457158 ], [ -6.7714235, 62.0458227 ], [ -6.7713396, 62.0459926 ], [ -6.771259, 62.0461467 ], [ -6.7711785, 62.0463512 ], [ -6.7710913, 62.0465651 ], [ -6.7710812, 62.0467366 ], [ -6.7711013, 62.0469489 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41728071.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7722086, 62.0448302 ], [ -6.7720802, 62.0448229 ], [ -6.771844, 62.0448038 ], [ -6.7715219, 62.0447101 ], [ -6.7713458, 62.0446588 ], [ -6.7711826, 62.0446155 ], [ -6.7709872, 62.0445793 ], [ -6.7708648, 62.0445561 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41728072.0, "name": "Gerðisvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7724667, 62.0432887 ], [ -6.7726536, 62.0433471 ], [ -6.7728834, 62.0434669 ], [ -6.7731389, 62.043641 ], [ -6.7733558, 62.0437971 ], [ -6.7735147, 62.0439018 ], [ -6.7737552, 62.0441041 ], [ -6.7739356, 62.0442652 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41728073.0, "name": "Hornavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7641879, 62.0288045 ], [ -6.7634555, 62.0290695 ], [ -6.7630058, 62.0292164 ], [ -6.7628767, 62.0292253 ], [ -6.7623202, 62.028976 ], [ -6.7620969, 62.0289007 ], [ -6.7619166, 62.0289243 ], [ -6.7619333, 62.0289951 ], [ -6.7626925, 62.0293355 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41728074.0, "name": "Garðavegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7646433, 62.0288688 ], [ -6.7640303, 62.0292187 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41728075.0, "name": "Hornavegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7620969, 62.0289007 ], [ -6.7623612, 62.028826 ], [ -6.7627219, 62.0287433 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41730678.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.7764493, 62.0203201 ], [ -6.7767273, 62.0203009 ] ], [ [ -6.7767273, 62.0203009 ], [ -6.7768528, 62.0203664 ], [ -6.7769772, 62.0204011 ], [ -6.7770393, 62.0203526 ], [ -6.777078, 62.0202833 ], [ -6.7770745, 62.0201749 ], [ -6.7767273, 62.0203009 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41730680.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.7756792, 62.0198689 ], [ -6.7756264, 62.0198352 ] ], [ [ -6.7756264, 62.0198352 ], [ -6.7761411, 62.0196268 ], [ -6.7759446, 62.0195263 ], [ -6.7754388, 62.0197279 ], [ -6.7756264, 62.0198352 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41730690.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7776177, 62.0206796 ], [ -6.7778747, 62.020638 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41730691.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7796736, 62.0204511 ], [ -6.7778747, 62.020638 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41730692.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7796736, 62.0204511 ], [ -6.7797273, 62.020237 ], [ -6.7797498, 62.0200029 ], [ -6.7801233, 62.0199685 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41730693.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7778747, 62.020638 ], [ -6.7779373, 62.0206926 ], [ -6.7779642, 62.0207514 ], [ -6.7796871, 62.020575 ], [ -6.7796736, 62.0204511 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41730695.0, "name": "Hallarheygur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770674, 62.0207919 ], [ -6.7764493, 62.0203201 ], [ -6.7756792, 62.0198689 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 41738207.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7684239, 62.0091393 ], [ -6.7684504, 62.0090676 ], [ -6.7683582, 62.0089698 ], [ -6.7682567, 62.0089222 ], [ -6.7673362, 62.0087507 ], [ -6.767172, 62.0087196 ], [ -6.767041, 62.0087429 ], [ -6.7669037, 62.0088657 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43034969.0, "name": "Livulág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7848133, 62.0117413 ], [ -6.7849583, 62.0117426 ], [ -6.7851798, 62.0117926 ], [ -6.785281, 62.0118157 ], [ -6.7853576, 62.0118029 ], [ -6.7858143, 62.0116309 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43034970.0, "name": "Doktara Jakobsens gøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7761624, 62.0094277 ], [ -6.7762234, 62.0093927 ], [ -6.7763308, 62.0093513 ], [ -6.7767087, 62.0092057 ], [ -6.77704, 62.0090937 ], [ -6.7771673, 62.0090499 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43034971.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7689649, 62.0098732 ], [ -6.7687687, 62.0099173 ], [ -6.7684706, 62.0099168 ], [ -6.7680448, 62.0099532 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43034972.0, "name": "Vaktarhúsgøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7656479, 62.0087699 ], [ -6.7655557, 62.0087936 ], [ -6.7647293, 62.0091335 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43034973.0, "name": "Skansavegur", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7676482, 62.009163 ], [ -6.7671171, 62.0090687 ], [ -6.7667916, 62.0090259 ], [ -6.7663159, 62.0089531 ], [ -6.7661962, 62.0088807 ], [ -6.7660595, 62.0088364 ], [ -6.765865, 62.0087985 ], [ -6.7657495, 62.0087858 ], [ -6.7656479, 62.0087699 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43047223.0, "name": "Rættartún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7609293, 62.0096719 ], [ -6.7614777, 62.0100542 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43047224.0, "name": "Geilartún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.760481, 62.009804 ], [ -6.7610959, 62.0101908 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43047225.0, "name": "Trapputún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7600344, 62.0100124 ], [ -6.7607145, 62.0103607 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43047226.0, "name": "Miðtún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7610959, 62.0101908 ], [ -6.7616284, 62.0104979 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43047227.0, "name": "Heimaratún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7614777, 62.0100542 ], [ -6.7619363, 62.0103735 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43047228.0, "name": "Handaratún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7607145, 62.0103607 ], [ -6.7612661, 62.0106522 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43248842.0, "name": "Mannaskarð", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7652291, 62.0202326 ], [ -6.7632517, 62.0198183 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43248845.0, "name": "Mýrisnípuvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7691109, 62.0161892 ], [ -6.7694596, 62.0167318 ], [ -6.7697868, 62.0172796 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43248846.0, "name": "Spógvavegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.77141, 62.0182889 ], [ -6.7708129, 62.0178795 ], [ -6.7702012, 62.0174185 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43248847.0, "name": "Spógvavegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7708771, 62.0188583 ], [ -6.7698548, 62.0183358 ], [ -6.7687803, 62.0176338 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43248848.0, "name": "Spógvavegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7701322, 62.0192402 ], [ -6.7693439, 62.018863 ], [ -6.7679367, 62.0182194 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43248849.0, "name": "Vípuvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7716085, 62.0192197 ], [ -6.772081, 62.0193328 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43292356.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7734268, 62.0102905 ], [ -6.7729504, 62.0104194 ], [ -6.7728879, 62.0104229 ], [ -6.7724697, 62.0105474 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315310.0, "name": "Heimasta Horn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8057187, 62.0007088 ], [ -6.8067033, 62.0014959 ], [ -6.8063524, 62.0017228 ], [ -6.8058624, 62.0023693 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315311.0, "name": "Heimasta Horn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8067033, 62.0014959 ], [ -6.8069482, 62.0013747 ], [ -6.8085306, 62.001154 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315312.0, "name": "Undir Gráasteini", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8042267, 62.0013139 ], [ -6.8053063, 62.0017352 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315313.0, "name": "Undir Gráasteini", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8028967, 62.0018278 ], [ -6.8034856, 62.0020336 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315314.0, "name": "Undir Gráasteini", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8020636, 62.0021075 ], [ -6.8011816, 62.0016264 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315315.0, "name": "Smiðjugerði", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7986523, 62.0002623 ], [ -6.7995692, 62.0007942 ], [ -6.8006718, 62.0014337 ], [ -6.8012809, 62.001297 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315316.0, "name": "Smiðjugerði", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7995692, 62.0007942 ], [ -6.8003275, 62.0006319 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315317.0, "name": "Mykinesgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8060536, 61.9999527 ], [ -6.8062464, 61.9997118 ], [ -6.8060346, 61.9985338 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315318.0, "name": "Við Sandá", "ref": null, "type": "track", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8071287, 62.0000267 ], [ -6.8082062, 61.9993357 ], [ -6.8087822, 61.9988819 ], [ -6.8107485, 61.9976758 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315319.0, "name": "Millum Horna", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8105617, 62.0001302 ], [ -6.8107154, 62.0004982 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315320.0, "name": "Millum Horna", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8115557, 61.9999871 ], [ -6.8116622, 62.0001998 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315321.0, "name": "Undir Gráasteini", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8027988, 62.0028888 ], [ -6.8023998, 62.0030623 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315322.0, "name": "Undir Gráasteini", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.803501, 62.0033412 ], [ -6.8029361, 62.0033203 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43315323.0, "name": "Millum Horna", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8131504, 61.9997869 ], [ -6.813324, 62.0000537 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43385583.0, "name": "Fjalsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8034724, 62.0067599 ], [ -6.8033078, 62.0072197 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43385584.0, "name": "Fjalsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8044866, 62.0068999 ], [ -6.8042435, 62.0073519 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43485215.0, "name": "Gásadalsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7832762, 62.0010248 ], [ -6.7829361, 62.0005877 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43485216.0, "name": "Bíggjarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7843513, 62.0009191 ], [ -6.7838439, 62.0002732 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43485217.0, "name": "Sandáarbreyt", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7849151, 62.0008637 ], [ -6.7845724, 62.0003987 ], [ -6.7857417, 62.000196 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43485218.0, "name": "Velbastaðvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7859347, 62.0008195 ], [ -6.7858005, 62.0004815 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43485253.0, "name": "Vatnsoyrarvegur", "ref": null, "type": "track", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7887643, 62.0003982 ], [ -6.7886226, 62.0002554 ], [ -6.7884574, 62.0001313 ], [ -6.7882627, 62.0000899 ], [ -6.7880497, 62.0000813 ], [ -6.7868342, 62.0002916 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43485254.0, "name": "Undir Heygnum", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7865784, 62.001406 ], [ -6.7863765, 62.0017506 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43485255.0, "name": "Undir Heygnum", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7874143, 62.0015122 ], [ -6.7871961, 62.0018305 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43492992.0, "name": "Áargeil", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7871413, 62.0210317 ], [ -6.786982, 62.0210033 ], [ -6.7866694, 62.0210085 ], [ -6.7865756, 62.0210305 ], [ -6.7860106, 62.0211631 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43492994.0, "name": "Áargeil", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7865756, 62.0210305 ], [ -6.7863623, 62.0209169 ], [ -6.7858041, 62.0207283 ], [ -6.7852011, 62.0205083 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43493022.0, "name": "Heinagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7848178, 62.0196014 ], [ -6.7842451, 62.0198591 ], [ -6.7839274, 62.0200517 ], [ -6.7836477, 62.0202212 ], [ -6.783299, 62.0203365 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43493023.0, "name": "Heinagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7835162, 62.0204773 ], [ -6.783299, 62.0203365 ], [ -6.783016, 62.020181 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43493024.0, "name": "Heinagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7842451, 62.0198591 ], [ -6.7848482, 62.0200737 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43493026.0, "name": "Hvannkrókur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7839274, 62.0200517 ], [ -6.784671, 62.0203204 ], [ -6.7847358, 62.0206041 ], [ -6.7847967, 62.0208703 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43493027.0, "name": "Hvannkrókur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7847358, 62.0206041 ], [ -6.7837334, 62.0209038 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652912.0, "name": "Vørðubrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7868678, 61.9963669 ], [ -6.7867456, 61.9972534 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652913.0, "name": "Sandágøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7854118, 61.9972132 ], [ -6.7854082, 61.9972913 ], [ -6.7864109, 61.9976767 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652914.0, "name": "Traðartún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7867456, 61.9972534 ], [ -6.7868193, 61.9973426 ], [ -6.7872478, 61.9974736 ], [ -6.7879998, 61.9975476 ], [ -6.7902882, 61.9974793 ], [ -6.7901588, 61.9970749 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652917.0, "name": "Løkjatún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7923461, 61.9964428 ], [ -6.7923604, 61.9965302 ], [ -6.7917782, 61.9966517 ], [ -6.7914516, 61.9969722 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652918.0, "name": "Áarrás", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.793035, 61.9963424 ], [ -6.7931679, 61.9964733 ], [ -6.7933361, 61.9965522 ], [ -6.7935107, 61.9965917 ], [ -6.7937274, 61.9966099 ], [ -6.7938989, 61.9966145 ], [ -6.7961144, 61.9962257 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652919.0, "name": "Hóvabrekka", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7849341, 61.9971637 ], [ -6.785011, 61.9970083 ], [ -6.7850886, 61.9964631 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652925.0, "name": "Kvíggjartún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7810072, 61.9961912 ], [ -6.7811446, 61.9962379 ], [ -6.7815993, 61.9962913 ], [ -6.7820824, 61.9963157 ], [ -6.7825087, 61.9963491 ], [ -6.7827029, 61.9963558 ], [ -6.7827693, 61.9964002 ], [ -6.782845, 61.9964892 ], [ -6.7829129, 61.9968064 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652926.0, "name": "Kvíggjartún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7827029, 61.9963558 ], [ -6.7829235, 61.9963016 ], [ -6.7840646, 61.9963635 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652927.0, "name": "Heygstún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7846852, 61.9980338 ], [ -6.78343, 61.9980744 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652928.0, "name": "Heygstún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7834818, 61.9983143 ], [ -6.78343, 61.9980744 ], [ -6.7833847, 61.9978223 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652929.0, "name": "Rættargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7806098, 61.9993676 ], [ -6.7804222, 61.9994608 ], [ -6.7802322, 61.9995424 ], [ -6.7799613, 61.9996184 ], [ -6.7796338, 61.9996696 ], [ -6.7793508, 61.999681 ], [ -6.7789425, 61.9996924 ], [ -6.7786514, 61.9996734 ], [ -6.7783603, 61.9996317 ], [ -6.7780288, 61.9995785 ], [ -6.7776568, 61.9995254 ], [ -6.7774789, 61.9995045 ], [ -6.7770463, 61.9994893 ], [ -6.7767309, 61.9994779 ], [ -6.7765894, 61.9994703 ], [ -6.776076, 61.9993507 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652930.0, "name": "Billugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7787241, 61.9987823 ], [ -6.778235, 61.9990869 ], [ -6.7767552, 61.9986351 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652931.0, "name": "Bakkagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762442, 61.9979782 ], [ -6.7755261, 61.9984852 ], [ -6.7748388, 61.9982251 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652932.0, "name": "Argjavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7755075, 61.9977997 ], [ -6.7752067, 61.9980258 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652936.0, "name": "Kráargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7771221, 61.9982512 ], [ -6.7775423, 61.9979375 ], [ -6.7783996, 61.9970726 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652937.0, "name": "Garðsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7808707, 61.9975985 ], [ -6.7802187, 61.9973491 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652938.0, "name": "Høvdagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7749686, 61.9976917 ], [ -6.7749306, 61.9977652 ], [ -6.7746298, 61.9980142 ], [ -6.7724369, 61.9974372 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652942.0, "name": "Traðagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7742251, 61.9964358 ], [ -6.7748258, 61.9958317 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652943.0, "name": "Bringstún", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7759384, 61.9964058 ], [ -6.7759384, 61.9962888 ], [ -6.7752172, 61.996137 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652944.0, "name": "Hagagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7782561, 61.99644 ], [ -6.7783117, 61.9962922 ], [ -6.7787514, 61.9959647 ], [ -6.779277, 61.9955495 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 43652945.0, "name": "Hagagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7787514, 61.9959647 ], [ -6.779469, 61.9960264 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437038.0, "name": "Perskonugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7921227, 62.0051078 ], [ -6.7931645, 62.0047307 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437040.0, "name": "Perskonugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7922058, 62.0051262 ], [ -6.7920018, 62.0054594 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437042.0, "name": "Íslandsvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7900116, 62.0065811 ], [ -6.7888309, 62.00674 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437044.0, "name": "Jøkulstræti", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7877935, 62.0063708 ], [ -6.78847, 62.0069031 ], [ -6.788712, 62.0070935 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437046.0, "name": "Jøkulstræti", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.78847, 62.0069031 ], [ -6.7880052, 62.0070159 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437050.0, "name": "Oman Mattalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7873309, 62.0082043 ], [ -6.7872427, 62.0078365 ], [ -6.7881263, 62.0077273 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437051.0, "name": "Íslandsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7912418, 62.0080813 ], [ -6.790731, 62.0082404 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437052.0, "name": "Grønlandsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7891269, 62.0090436 ], [ -6.7888284, 62.0087612 ], [ -6.7895313, 62.0086447 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437053.0, "name": "Eiriksgøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7868089, 62.009202 ], [ -6.7862817, 62.0093774 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437054.0, "name": "Krosslíð", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7867845, 62.0101124 ], [ -6.7873148, 62.0102411 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437056.0, "name": "Lykkjugerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7909446, 62.0010691 ], [ -6.7910556, 62.0013446 ], [ -6.7914308, 62.0014687 ], [ -6.7915101, 62.0015332 ], [ -6.7914203, 62.0016026 ], [ -6.7911454, 62.0016919 ], [ -6.790432, 62.0017689 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437057.0, "name": "Heygsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7882886, 62.0015667 ], [ -6.7895071, 62.0017162 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437058.0, "name": "Á Heygnum Mikla", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7898955, 62.0029503 ], [ -6.789854, 62.0026397 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437059.0, "name": "Øksnagerði", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7946982, 62.0025113 ], [ -6.7951637, 62.0030685 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437060.0, "name": "Í Svanga", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7956083, 62.0098744 ], [ -6.7950427, 62.0095489 ], [ -6.7946886, 62.009663 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437061.0, "name": "Kongsgil", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7943757, 62.0112209 ], [ -6.7948013, 62.0114317 ], [ -6.7951501, 62.0114739 ], [ -6.7955253, 62.011655 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437062.0, "name": "Kongsgil", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7969892, 62.0110399 ], [ -6.7955253, 62.011655 ], [ -6.795203, 62.0118013 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437063.0, "name": "undir Kerjum", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7902944, 62.0129195 ], [ -6.7906421, 62.0130703 ], [ -6.7911918, 62.0129537 ], [ -6.7919634, 62.0126313 ], [ -6.7925658, 62.0129165 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437064.0, "name": "Dalalíð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7878428, 62.0139955 ], [ -6.7891811, 62.013296 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437065.0, "name": "Peturstrøð", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7840998, 62.0119174 ], [ -6.7848264, 62.0123809 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437066.0, "name": "undir Krákugjógv", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7907208, 62.0213884 ], [ -6.7897119, 62.0206849 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437069.0, "name": "Sýrugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7913042, 62.0216894 ], [ -6.7919332, 62.0213975 ], [ -6.7923813, 62.021693 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437070.0, "name": "Sóljugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7885007, 62.0218522 ], [ -6.7880774, 62.0217465 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437071.0, "name": "Sóljugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7891634, 62.0214524 ], [ -6.788868, 62.0213498 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437072.0, "name": "Villingardalsvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.792311, 62.0223599 ], [ -6.7930747, 62.0220817 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437073.0, "name": "Skørugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7934021, 62.0255614 ], [ -6.793135, 62.0253946 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437074.0, "name": "Brobbersgøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7944809, 62.026389 ], [ -6.7941081, 62.026437 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437075.0, "name": "Brobbersgøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7947177, 62.0267563 ], [ -6.7943002, 62.0268 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437076.0, "name": "Brobbersgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7943466, 62.0275006 ], [ -6.7946288, 62.0273625 ], [ -6.7947515, 62.0272474 ], [ -6.7948312, 62.0271467 ], [ -6.7948496, 62.0270488 ], [ -6.7947515, 62.02681 ], [ -6.7947177, 62.0267563 ], [ -6.794592, 62.0265567 ], [ -6.7944809, 62.026389 ], [ -6.7944509, 62.0263438 ], [ -6.7943772, 62.026243 ], [ -6.7942082, 62.0259839 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437077.0, "name": "Børkugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7938319, 62.0285857 ], [ -6.7937746, 62.0291188 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437078.0, "name": "Óluvugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.788149, 62.0269184 ], [ -6.7876208, 62.0266062 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437079.0, "name": "Óluvugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7874087, 62.0272047 ], [ -6.7869316, 62.0269136 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437082.0, "name": "Per Mohrs vegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7811562, 62.0284632 ], [ -6.7810253, 62.0286026 ], [ -6.7809644, 62.0286675 ], [ -6.7808968, 62.0289958 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437084.0, "name": "Per Mohrs vegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7810253, 62.0286026 ], [ -6.7819182, 62.0287468 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437085.0, "name": "Pætursgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7776397, 62.0303262 ], [ -6.778457, 62.0299808 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437093.0, "name": "Sanatoriivegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7685311, 62.0238834 ], [ -6.7681949, 62.0239502 ], [ -6.7681315, 62.0245253 ], [ -6.768179, 62.0248228 ], [ -6.7682424, 62.0250732 ], [ -6.7681896, 62.0252988 ], [ -6.7680258, 62.0255392 ], [ -6.7679042, 62.025859 ], [ -6.7678567, 62.0261392 ], [ -6.7678091, 62.0264788 ], [ -6.7676875, 62.0267366 ], [ -6.7676169, 62.026819 ], [ -6.767418, 62.0270514 ], [ -6.7671168, 62.0273538 ], [ -6.7669318, 62.0275298 ], [ -6.7665513, 62.0277182 ], [ -6.7657586, 62.0277727 ], [ -6.7646065, 62.0269448 ], [ -6.7643422, 62.0268754 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437094.0, "name": "Boðanesgøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7615941, 62.0261689 ], [ -6.7629153, 62.0263573 ], [ -6.7632113, 62.0262755 ], [ -6.7634755, 62.0262458 ], [ -6.7637662, 62.0262953 ], [ -6.7638983, 62.0263722 ], [ -6.7641467, 62.0265531 ], [ -6.7642788, 62.0266721 ], [ -6.7643422, 62.0268754 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437096.0, "name": "Gamlivegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7605911, 62.0276324 ], [ -6.760373, 62.0277051 ], [ -6.7601675, 62.0277622 ], [ -6.7600741, 62.0277688 ], [ -6.7599997, 62.027774 ], [ -6.75992, 62.0277386 ], [ -6.7598487, 62.0276796 ], [ -6.7598445, 62.0276186 ], [ -6.7598571, 62.0275379 ], [ -6.7598739, 62.0273943 ], [ -6.7599284, 62.0272428 ], [ -6.76004, 62.0271693 ], [ -6.760099, 62.0271175 ], [ -6.7601658, 62.0270589 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437097.0, "name": "Á Mýrini", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.763215, 62.0301446 ], [ -6.7641307, 62.0304681 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437098.0, "name": "Fútalág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7632929, 62.0174304 ], [ -6.763035, 62.0177223 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437100.0, "name": "Fútalág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7619981, 62.0171911 ], [ -6.7617613, 62.0175115 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437101.0, "name": "Tjarnarlág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7622151, 62.0163297 ], [ -6.7619146, 62.0165642 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437102.0, "name": "Tjarnarlág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7628993, 62.0164963 ], [ -6.7626122, 62.0167229 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437103.0, "name": "Tjarnarlág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7635707, 62.0166597 ], [ -6.7632834, 62.0168816 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437105.0, "name": "Tjarnarlág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7640867, 62.0167853 ], [ -6.76387, 62.016961 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437106.0, "name": "Tjarnarlág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7647794, 62.0169539 ], [ -6.7645253, 62.0171693 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437107.0, "name": "Tjarnarlág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7654403, 62.0171148 ], [ -6.7651648, 62.0173305 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437111.0, "name": "Gustugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7617514, 62.0142276 ], [ -6.7616134, 62.0146989 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437112.0, "name": "Essalág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7650468, 62.0135831 ], [ -6.7649126, 62.0139575 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437114.0, "name": "Bergsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7683067, 62.0111777 ], [ -6.7677334, 62.0117014 ], [ -6.7675575, 62.0116607 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437115.0, "name": "Sólteigur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7653766, 62.0115671 ], [ -6.7657964, 62.011717 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437116.0, "name": "Vørðslan", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7679595, 62.0099011 ], [ -6.76741, 62.0100887 ], [ -6.7678666, 62.0103348 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437120.0, "name": "Lavagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7637215, 62.011237 ], [ -6.7646239, 62.0113024 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437121.0, "name": "Lítlatrøð", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7625444, 62.0107551 ], [ -6.7629625, 62.0114155 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437122.0, "name": "Djóna í Geil gøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7629772, 62.0098389 ], [ -6.7639197, 62.009702 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437124.0, "name": "Jóan Karls gøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7640454, 62.010039 ], [ -6.764299, 62.0105292 ], [ -6.7642448, 62.0105914 ], [ -6.7643071, 62.0107438 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437125.0, "name": "Í Lon", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7643439, 62.0099948 ], [ -6.7645317, 62.0104568 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437127.0, "name": "Frúutrøð", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7648525, 62.0106246 ], [ -6.7654857, 62.0107033 ], [ -6.766687, 62.0109537 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437128.0, "name": "Abbatrøð", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.765682, 62.0096873 ], [ -6.7665169, 62.0093803 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437131.0, "name": "Jekaragøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7618745, 62.0091502 ], [ -6.7630443, 62.0087822 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437140.0, "name": "Niels Finsens gøta", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7723997, 62.0104999 ], [ -6.7724697, 62.0105474 ], [ -6.7725776, 62.0106215 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437142.0, "name": "Áarvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771522, 62.0101807 ], [ -6.7711926, 62.0101406 ], [ -6.7709477, 62.010094 ], [ -6.7708898, 62.0100783 ], [ -6.7706049, 62.0099581 ], [ -6.7702755, 62.0098245 ], [ -6.7699334, 62.0096255 ], [ -6.7698345, 62.009554 ], [ -6.7697963, 62.0095229 ], [ -6.7697532, 62.0094963 ], [ -6.7693255, 62.0092511 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437143.0, "name": "Skiparagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7763379, 62.0059545 ], [ -6.7762374, 62.0068545 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437145.0, "name": "Kirkjuvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7711562, 62.0093022 ], [ -6.7714057, 62.0094501 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437146.0, "name": "Rektaragøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7700645, 62.0084336 ], [ -6.7703189, 62.0084069 ], [ -6.7704894, 62.0084209 ], [ -6.7706544, 62.0084476 ], [ -6.770741, 62.008506 ], [ -6.7708574, 62.0085949 ], [ -6.7709899, 62.0086939 ], [ -6.7711063, 62.0087727 ], [ -6.7712362, 62.0088463 ], [ -6.7713624, 62.0089105 ], [ -6.771424, 62.0089418 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437147.0, "name": "Reyngøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7696138, 62.0081723 ], [ -6.7698438, 62.0081501 ], [ -6.7699385, 62.0082184 ], [ -6.7700645, 62.0084336 ], [ -6.7701854, 62.0085438 ], [ -6.7700941, 62.0086025 ], [ -6.770182, 62.0087327 ], [ -6.7703071, 62.008866 ], [ -6.7703376, 62.0089359 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437149.0, "name": "Reyngøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7703376, 62.0089359 ], [ -6.7703477, 62.0090073 ], [ -6.7704221, 62.0091121 ], [ -6.7705067, 62.0091994 ], [ -6.7705101, 62.0092565 ], [ -6.7706204, 62.0093777 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437150.0, "name": "Bakkahella", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7713624, 62.0089105 ], [ -6.7710309, 62.0089137 ], [ -6.7707908, 62.0089121 ], [ -6.7706807, 62.008923 ], [ -6.770598, 62.0089311 ], [ -6.7703376, 62.0089359 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437151.0, "name": "Klettaskot", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7703071, 62.008866 ], [ -6.7701042, 62.0089359 ], [ -6.7699046, 62.0090105 ], [ -6.7697694, 62.0090391 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437152.0, "name": "Gongin", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7698994, 62.0094901 ], [ -6.7698233, 62.0093779 ], [ -6.7698037, 62.0092805 ], [ -6.7697821, 62.0091718 ], [ -6.7697712, 62.0090936 ], [ -6.7697694, 62.0090391 ], [ -6.7697388, 62.0089676 ], [ -6.7696912, 62.0089006 ], [ -6.7697041, 62.0088152 ], [ -6.7696976, 62.0087411 ], [ -6.7696912, 62.0086537 ], [ -6.769808, 62.0085369 ], [ -6.7699423, 62.0084515 ], [ -6.7700645, 62.0084336 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437156.0, "name": "Kongabrúgvin", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7696186, 62.0091361 ], [ -6.7693255, 62.0092511 ], [ -6.7691168, 62.0092504 ], [ -6.768944, 62.0092399 ], [ -6.7685914, 62.0091721 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437157.0, "name": "undir Kjallara", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7688624, 62.0079081 ], [ -6.7691302, 62.0080808 ], [ -6.7691293, 62.0082807 ], [ -6.769311, 62.0085273 ], [ -6.7693597, 62.008667 ], [ -6.7693678, 62.0087762 ], [ -6.769449, 62.0089134 ], [ -6.7696186, 62.0091361 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437158.0, "name": "Tinganes", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.768931, 62.0076812 ], [ -6.7691529, 62.0077841 ], [ -6.7692611, 62.0078743 ], [ -6.7693206, 62.0079733 ], [ -6.7693828, 62.0080432 ], [ -6.7694992, 62.008113 ], [ -6.7696138, 62.0081723 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437159.0, "name": "Skipara Hansens gøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7706807, 62.008923 ], [ -6.7707385, 62.0089894 ], [ -6.7707082, 62.0090524 ], [ -6.7706887, 62.0091133 ], [ -6.7706605, 62.0091753 ], [ -6.7706605, 62.0092149 ], [ -6.7707363, 62.009286 ], [ -6.7707584, 62.0093509 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437165.0, "name": "Vestara Bryggja", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7720309, 62.005953 ], [ -6.7736534, 62.005509 ], [ -6.7742664, 62.0054147 ], [ -6.7745729, 62.0054494 ], [ -6.7746998, 62.0055933 ], [ -6.7749376, 62.006273 ], [ -6.7748477, 62.006469 ], [ -6.774277, 62.0067617 ], [ -6.7735001, 62.0069849 ], [ -6.7720309, 62.005953 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437166.0, "name": "Vestara Bryggja", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7742664, 62.0054147 ], [ -6.7745729, 62.0048888 ], [ -6.7748108, 62.0047449 ], [ -6.7751111, 62.0046934 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437167.0, "name": "Háskúlavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7791788, 62.0043914 ], [ -6.7794979, 62.0043636 ], [ -6.7796161, 62.0043331 ], [ -6.7797579, 62.0042998 ], [ -6.7799056, 62.0043109 ], [ -6.7802366, 62.0044025 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437169.0, "name": "Jákups Dahls gøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7772449, 62.0051015 ], [ -6.7777145, 62.0042375 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437170.0, "name": "í Brekkuni", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7860611, 62.0021415 ], [ -6.7857728, 62.0027365 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437171.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7627997, 62.0063097 ], [ -6.7630647, 62.0062815 ], [ -6.7640226, 62.0064743 ], [ -6.7642542, 62.0065981 ], [ -6.7666173, 62.0083394 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437172.0, "name": "Stoffalág", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762187, 62.01524 ], [ -6.7611827, 62.015053 ], [ -6.7610011, 62.0152584 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437173.0, "name": "Jansstovugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7733022, 62.0132853 ], [ -6.7731538, 62.0131577 ], [ -6.7727648, 62.0129553 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44437174.0, "name": "Jansstovugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7736083, 62.0132488 ], [ -6.7734708, 62.0130069 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619120.0, "name": "Vallaratún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7622447, 62.010303 ], [ -6.761887, 62.0099716 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619121.0, "name": "Hellutún", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.761887, 62.0099716 ], [ -6.7613477, 62.0095347 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619122.0, "name": "Langatún", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7605515, 62.0112375 ], [ -6.7611796, 62.0109511 ], [ -6.7619129, 62.0106155 ], [ -6.7624321, 62.0104703 ], [ -6.7625695, 62.0102676 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619131.0, "name": "Tórsbyrgi", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7580218, 62.0165917 ], [ -6.7576896, 62.0165228 ], [ -6.7576297, 62.0165607 ], [ -6.7574781, 62.0166565 ], [ -6.7573765, 62.0168077 ], [ -6.7578566, 62.0169299 ], [ -6.7580817, 62.0169883 ], [ -6.758307, 62.016811 ], [ -6.7583483, 62.016749 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619132.0, "name": "Tórsbyrgi", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7578566, 62.0169299 ], [ -6.7578235, 62.0169566 ], [ -6.757673, 62.0171127 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619133.0, "name": "Tórsbyrgi", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7580817, 62.0169883 ], [ -6.7583358, 62.0170577 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619134.0, "name": "Tórsbyrgi", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7576896, 62.0165228 ], [ -6.7577371, 62.0164182 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619135.0, "name": "Tórsbyrgi", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7576297, 62.0165607 ], [ -6.7573328, 62.0164918 ], [ -6.7570765, 62.0165405 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619144.0, "name": "Hákunargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7802642, 62.0319447 ], [ -6.7810847, 62.0315712 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619162.0, "name": "Spunagøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7814481, 61.9997176 ], [ -6.7818868, 61.9996428 ], [ -6.7821763, 61.9996425 ], [ -6.7823481, 61.9996724 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619164.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7776295, 62.0025831 ], [ -6.7774853, 62.0025649 ], [ -6.7777342, 62.0021799 ], [ -6.7778108, 62.0021349 ], [ -6.7778826, 62.0020113 ], [ -6.7775156, 62.0019536 ], [ -6.7768294, 62.0020742 ], [ -6.7767475, 62.0020997 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619166.0, "name": "Sandagerðisvegur", "ref": null, "type": "track", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7794393, 62.0006204 ], [ -6.7792087, 62.000695 ], [ -6.7788565, 62.0008632 ], [ -6.7783609, 62.0009525 ], [ -6.7780773, 62.0010286 ], [ -6.7776067, 62.0012056 ], [ -6.7774166, 62.0012934 ], [ -6.7770999, 62.0014305 ], [ -6.7770582, 62.0014485 ], [ -6.7768119, 62.0015465 ], [ -6.7767184, 62.0016007 ], [ -6.7766623, 62.0017031 ], [ -6.7766467, 62.0018377 ], [ -6.7766374, 62.0019665 ], [ -6.776681, 62.0020528 ], [ -6.7767475, 62.0020997 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44619167.0, "name": null, "ref": null, "type": "track", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770999, 62.0014305 ], [ -6.7769678, 62.0013827 ], [ -6.7768182, 62.0013885 ], [ -6.7765283, 62.0014368 ], [ -6.7762665, 62.0014968 ], [ -6.7758987, 62.0015817 ], [ -6.7755995, 62.0016416 ], [ -6.7753969, 62.0016738 ], [ -6.7752162, 62.001668 ], [ -6.7750042, 62.0016431 ], [ -6.77497, 62.001627 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44627287.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8234362505963, 61.986879219099997 ], [ -6.8235948, 61.9871906 ], [ -6.8238066, 61.9877044 ], [ -6.8241947, 61.9884667 ], [ -6.8245123, 61.9892291 ], [ -6.8238066, 61.9900577 ], [ -6.8231361, 61.99082 ], [ -6.8227126, 61.9913669 ], [ -6.8216187, 61.9923115 ], [ -6.8212305, 61.9925932 ], [ -6.8201718, 61.9931235 ], [ -6.819219, 61.9935046 ], [ -6.8179134, 61.9938526 ], [ -6.8167488, 61.9940017 ], [ -6.8162901, 61.9942337 ], [ -6.815549, 61.9947142 ], [ -6.8145962, 61.9953273 ], [ -6.8133446, 61.9960832 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44627291.0, "name": "undir Miðhorni", "ref": null, "type": "track", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8202717, 61.997585 ], [ -6.8201668, 61.9984862 ], [ -6.8200356, 61.9985608 ], [ -6.8198527, 61.9986094 ], [ -6.8193659, 61.9986386 ], [ -6.8191899, 61.9986483 ], [ -6.8190216, 61.9987624 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44627293.0, "name": "Liðagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7748319, 62.0114714 ], [ -6.7744322, 62.0115762 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44627294.0, "name": "Hálsatjørn", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7738109, 62.0150274 ], [ -6.77367, 62.0150677 ], [ -6.7735459, 62.0151613 ], [ -6.7734326, 62.0152727 ], [ -6.7733949, 62.0153689 ], [ -6.7733679, 62.0154524 ], [ -6.7728232, 62.0152398 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44789547.0, "name": "Glyvursvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7737797, 61.992995 ], [ -6.7738421, 61.993042 ], [ -6.7738833, 61.993073 ], [ -6.7740558, 61.9931787 ], [ -6.7743351, 61.9933168 ], [ -6.774627, 61.9934378 ], [ -6.774897, 61.9935356 ], [ -6.776048, 61.9939426 ], [ -6.7766719, 61.9941594 ], [ -6.7767585, 61.9941895 ], [ -6.7773837, 61.9944275 ], [ -6.7778953, 61.9945743 ], [ -6.7781847, 61.9946659 ], [ -6.778565, 61.9947765 ], [ -6.7789467, 61.9948737 ], [ -6.7794629, 61.9949799 ], [ -6.7800902, 61.9950978 ], [ -6.7806382, 61.9951934 ], [ -6.782223, 61.9954109 ], [ -6.7838706, 61.9956018 ], [ -6.7854903, 61.9957904 ], [ -6.786919, 61.9959635 ], [ -6.7884531, 61.9962108 ], [ -6.7891445, 61.996353 ], [ -6.7897173, 61.9964798 ], [ -6.7900531, 61.9965818 ], [ -6.7902177, 61.996656 ], [ -6.7903059, 61.9967407 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44789548.0, "name": "Glyvursvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7734997, 61.9929806 ], [ -6.7734333, 61.9929272 ], [ -6.7734363, 61.9928577 ], [ -6.7736346, 61.9927757 ], [ -6.7738538, 61.9928045 ], [ -6.773902, 61.9928529 ], [ -6.7739398, 61.9928908 ], [ -6.7738873, 61.9929681 ], [ -6.7737797, 61.992995 ], [ -6.7736967, 61.9930158 ], [ -6.7734997, 61.9929806 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44789549.0, "name": "Argjavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7815397, 61.9998001 ], [ -6.7814481, 61.9997176 ], [ -6.7813556, 61.9996568 ], [ -6.7812329, 61.999572 ], [ -6.7809524, 61.9994732 ], [ -6.7806098, 61.9993676 ], [ -6.7801077, 61.9992128 ], [ -6.7787241, 61.9987823 ], [ -6.7784915, 61.9987099 ], [ -6.777398, 61.99834 ], [ -6.7771221, 61.9982512 ], [ -6.7766888, 61.9981118 ], [ -6.7762442, 61.9979782 ], [ -6.7761221, 61.9979415 ], [ -6.775933, 61.9978883 ], [ -6.775761, 61.9978399 ], [ -6.7755075, 61.9977997 ], [ -6.775446, 61.99779 ], [ -6.7749959, 61.9976999 ], [ -6.7749686, 61.9976917 ], [ -6.774626, 61.9975891 ], [ -6.7742816, 61.9974624 ], [ -6.7738504, 61.9973063 ], [ -6.7734099, 61.9971799 ], [ -6.7730949, 61.9970799 ], [ -6.7727568, 61.99695 ], [ -6.7723377, 61.9967758 ], [ -6.7719764, 61.9966095 ], [ -6.7718139, 61.9965205 ], [ -6.7716439, 61.9964274 ], [ -6.7712658, 61.9962137 ], [ -6.7709238, 61.9960519 ], [ -6.7703432, 61.9958076 ], [ -6.7696327, 61.9955825 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 44789550.0, "name": "Argjavegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7815837, 61.9999484 ], [ -6.7815397, 61.9998001 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421140.0, "name": "Gamlivegur", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.758731, 62.0291002 ], [ -6.7587869, 62.029057 ], [ -6.7588581, 62.0290046 ], [ -6.7588691, 62.0289645 ], [ -6.7588906, 62.0288997 ], [ -6.7589361, 62.0288445 ], [ -6.7590458, 62.0287818 ], [ -6.7591796, 62.0286249 ], [ -6.7593374, 62.028522 ], [ -6.7594685, 62.0284593 ], [ -6.7595622, 62.0283965 ], [ -6.7596558, 62.0283237 ], [ -6.7597789, 62.028207 ], [ -6.7598893, 62.028116 ], [ -6.759916, 62.028047 ], [ -6.7599294, 62.0279795 ], [ -6.7599542, 62.0279257 ], [ -6.7599857, 62.0278614 ], [ -6.7600446, 62.0278267 ], [ -6.7600789, 62.0278075 ], [ -6.7600898, 62.0277895 ], [ -6.7600741, 62.0277688 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421141.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7663072, 62.0162637 ], [ -6.766442, 62.0162518 ], [ -6.766534, 62.0162477 ], [ -6.7665904, 62.0162427 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421144.0, "name": "Boganesgøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7586453, 62.0219307 ], [ -6.7585163, 62.0219494 ], [ -6.7584762, 62.0220043 ], [ -6.7585163, 62.0221189 ], [ -6.7585631, 62.022202 ], [ -6.7585765, 62.022384 ], [ -6.7585966, 62.0225551 ], [ -6.7586166, 62.0227088 ], [ -6.7586534, 62.0229316 ], [ -6.7586969, 62.0231827 ], [ -6.7587237, 62.0233709 ], [ -6.75872, 62.0235098 ], [ -6.7586772, 62.0235531 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421145.0, "name": "Boganesgøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7585385, 62.023623 ], [ -6.7584974, 62.0236455 ], [ -6.7583809, 62.0236174 ], [ -6.7582439, 62.0236013 ], [ -6.7580059, 62.0235708 ], [ -6.7578107, 62.023521 ], [ -6.7576754, 62.0234559 ], [ -6.7575572, 62.023382 ], [ -6.7574579, 62.0233218 ], [ -6.7573518, 62.0232744 ], [ -6.7571754, 62.0232214 ], [ -6.7569493, 62.023174 ], [ -6.7567712, 62.0231177 ], [ -6.7566873, 62.0230944 ], [ -6.7566137, 62.0230936 ], [ -6.7565435, 62.0231025 ], [ -6.7564853, 62.0231161 ], [ -6.7563962, 62.0231185 ], [ -6.7562438, 62.0231201 ], [ -6.7560777, 62.0231041 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421146.0, "name": "Boganesgøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7637662, 62.0262953 ], [ -6.7635747, 62.0262048 ], [ -6.7633572, 62.0260841 ], [ -6.763234, 62.0259957 ], [ -6.7630891, 62.0259243 ], [ -6.7627919, 62.0258461 ], [ -6.7624839, 62.0258189 ], [ -6.7621722, 62.0257628 ], [ -6.7619113, 62.0257238 ], [ -6.7617047, 62.0257187 ], [ -6.7613931, 62.0257085 ], [ -6.7611394, 62.0256796 ], [ -6.76098, 62.0256252 ], [ -6.7606236, 62.0255548 ], [ -6.760546, 62.025548 ], [ -6.7603622, 62.0255188 ], [ -6.760244, 62.0254931 ], [ -6.7601344, 62.0254585 ], [ -6.7600283, 62.0254039 ], [ -6.7599632, 62.0253509 ], [ -6.7598998, 62.0252898 ], [ -6.7598056, 62.0252457 ], [ -6.7596943, 62.025224 ], [ -6.7595847, 62.025191 ], [ -6.7593912, 62.0251268 ], [ -6.7592697, 62.0250705 ], [ -6.7591755, 62.0250047 ], [ -6.759119, 62.0249541 ], [ -6.7590625, 62.0248697 ], [ -6.7589974, 62.024779 ], [ -6.7589546, 62.024701 ], [ -6.7589306, 62.0246207 ], [ -6.7588484, 62.0244834 ], [ -6.7587885, 62.0243773 ], [ -6.7587457, 62.0242825 ], [ -6.7586977, 62.024203 ], [ -6.75866, 62.024142 ], [ -6.7586361, 62.0241082 ], [ -6.7585744, 62.0240648 ], [ -6.7584922, 62.024011 ], [ -6.758458, 62.0239652 ], [ -6.7584631, 62.023917 ], [ -6.7584922, 62.0238825 ], [ -6.7585504, 62.0238471 ], [ -6.758607, 62.0238118 ], [ -6.7586549, 62.0237821 ], [ -6.7586652, 62.0237475 ], [ -6.7586361, 62.0237218 ], [ -6.7585761, 62.0236785 ], [ -6.7584974, 62.0236455 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421147.0, "name": "Boganesgøta", "ref": null, "type": "footway", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7586772, 62.0235531 ], [ -6.7585385, 62.023623 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421148.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7607089, 62.0253696 ], [ -6.7608882, 62.0252855 ], [ -6.7610353, 62.0252252 ], [ -6.7611397, 62.0251348 ], [ -6.7612976, 62.0250093 ], [ -6.761442, 62.0249077 ], [ -6.7615946, 62.0248048 ], [ -6.7617444, 62.0247056 ], [ -6.7619451, 62.0245801 ], [ -6.7620548, 62.0244922 ], [ -6.7621564, 62.0243567 ], [ -6.7622608, 62.0242437 ], [ -6.7623571, 62.024132 ], [ -6.7624213, 62.0240931 ], [ -6.7624294, 62.0240454 ], [ -6.7625043, 62.0239977 ], [ -6.762614, 62.023955 ], [ -6.7627264, 62.0238722 ], [ -6.7627819, 62.0238007 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421149.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.760099, 62.0271175 ], [ -6.7601925, 62.0271191 ], [ -6.7602701, 62.0270965 ], [ -6.7603798, 62.0270551 ], [ -6.7604066, 62.0269898 ], [ -6.7604708, 62.0269183 ], [ -6.7605216, 62.0268518 ], [ -6.7605965, 62.0268079 ], [ -6.7606474, 62.026769 ], [ -6.7606955, 62.0266547 ], [ -6.7607223, 62.0265456 ], [ -6.760725, 62.0264765 ], [ -6.7607785, 62.0264037 ], [ -6.7608373, 62.0263548 ], [ -6.7609176, 62.0263322 ], [ -6.7609604, 62.0262983 ], [ -6.760939, 62.0261301 ], [ -6.7609363, 62.0260511 ], [ -6.7608106, 62.0258879 ], [ -6.7606661, 62.0257385 ], [ -6.7605778, 62.0256143 ], [ -6.760546, 62.025548 ], [ -6.7605537, 62.02549 ], [ -6.7605778, 62.0254499 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421150.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7605778, 62.0254499 ], [ -6.7607089, 62.0253696 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45421151.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7579683, 62.0295906 ], [ -6.7580425, 62.0295636 ], [ -6.7582366, 62.0294928 ], [ -6.7583394, 62.0294644 ], [ -6.7584091, 62.0294366 ], [ -6.7584566, 62.0294122 ], [ -6.7584811, 62.0293891 ], [ -6.7584337, 62.0293525 ], [ -6.7585436, 62.0293115 ], [ -6.7585699, 62.0292565 ], [ -6.758594, 62.0292236 ], [ -6.7586006, 62.0291979 ], [ -6.7586488, 62.0291614 ], [ -6.758731, 62.0291002 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45426157.0, "name": "R.C. Effersøes gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7748759, 62.0159062 ], [ -6.7752658, 62.0163952 ], [ -6.775429, 62.0166821 ], [ -6.775524, 62.0168493 ], [ -6.7756309, 62.0172589 ], [ -6.775613, 62.0174601 ], [ -6.7755953, 62.0176595 ], [ -6.7755201, 62.01789 ], [ -6.7754706, 62.0180424 ], [ -6.7752658, 62.0186123 ], [ -6.7751694, 62.0188519 ], [ -6.7751219, 62.0189505 ], [ -6.7750545, 62.0191558 ], [ -6.7750077, 62.0193238 ], [ -6.7750077, 62.0195504 ], [ -6.7750493, 62.019738 ], [ -6.7750908, 62.0199207 ], [ -6.7751328, 62.0200057 ], [ -6.7751896, 62.0201204 ], [ -6.7753715, 62.0203568 ], [ -6.775517, 62.020542 ], [ -6.7756937, 62.0207173 ], [ -6.775834, 62.0208489 ], [ -6.7759136, 62.020911 ], [ -6.7759535, 62.0209512 ], [ -6.776135, 62.0210799 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45426158.0, "name": "Hjaltarók", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7911303, 62.0145964 ], [ -6.7913734, 62.0144747 ], [ -6.7917139, 62.0142094 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45426159.0, "name": "R.C. Effersøes gøta", "ref": null, "type": "secondary", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.77296, 62.0142832 ], [ -6.7730343, 62.0143279 ], [ -6.7731606, 62.0144451 ], [ -6.7738109, 62.0150274 ], [ -6.7741002, 62.0152689 ], [ -6.7744002, 62.0155266 ], [ -6.7746772, 62.0157633 ], [ -6.7748759, 62.0159062 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45426160.0, "name": "R.C. Effersøes gøta", "ref": null, "type": "secondary", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7748759, 62.0159062 ], [ -6.7747462, 62.0157301 ], [ -6.7745408, 62.0155231 ], [ -6.7743269, 62.0153113 ], [ -6.7742522, 62.0152365 ], [ -6.774076, 62.0150703 ], [ -6.7738874, 62.0149051 ], [ -6.7738082, 62.0148656 ], [ -6.7736499, 62.014706 ], [ -6.7735135, 62.0145748 ], [ -6.7733384, 62.0144318 ], [ -6.773271, 62.0143765 ], [ -6.7732138, 62.0143457 ], [ -6.7730778, 62.0142554 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45426161.0, "name": "R.C. Effersøes gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7729027, 62.0142862 ], [ -6.77296, 62.0142832 ], [ -6.7730312, 62.0142794 ], [ -6.7730778, 62.0142554 ], [ -6.7731241, 62.0142316 ], [ -6.7731128, 62.0141563 ], [ -6.7729829, 62.0141122 ], [ -6.7729173, 62.0141168 ], [ -6.7728575, 62.0141211 ], [ -6.7727804, 62.0141609 ], [ -6.772772, 62.0141651 ], [ -6.7727853, 62.0142462 ], [ -6.7729027, 62.0142862 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45426162.0, "name": "R.C. Effersøes gøta", "ref": null, "type": "secondary", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7729173, 62.0141168 ], [ -6.7728601, 62.0140691 ], [ -6.772845, 62.0140233 ], [ -6.7728483, 62.0139861 ], [ -6.7728029, 62.0139237 ], [ -6.772717, 62.0138344 ], [ -6.7725519, 62.013674 ], [ -6.7724054, 62.0135491 ], [ -6.7722693, 62.0134164 ], [ -6.7722168, 62.0133673 ], [ -6.7721053, 62.0133053 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45426163.0, "name": "R.C. Effersøes gøta", "ref": null, "type": "secondary", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7721053, 62.0133053 ], [ -6.7721444, 62.0133824 ], [ -6.772189, 62.0134266 ], [ -6.7722556, 62.0135048 ], [ -6.7723381, 62.0136273 ], [ -6.7724172, 62.0137143 ], [ -6.7725048, 62.0137893 ], [ -6.772594, 62.0138605 ], [ -6.7726597, 62.0139197 ], [ -6.7727086, 62.0139664 ], [ -6.7727136, 62.0140059 ], [ -6.7727136, 62.0140525 ], [ -6.7727271, 62.0141078 ], [ -6.7727804, 62.0141609 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45514097.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.780551, 62.0162502 ], [ -6.7806963, 62.0163641 ], [ -6.7807319, 62.0164981 ], [ -6.78075, 62.0165642 ], [ -6.7808001, 62.0165889 ], [ -6.7808102, 62.0166279 ], [ -6.7808471, 62.0167285 ], [ -6.7809946, 62.0168258 ], [ -6.7811421, 62.0169134 ], [ -6.781192, 62.0169665 ], [ -6.7813246, 62.017 ], [ -6.781449, 62.0170676 ], [ -6.7815451, 62.0171405 ], [ -6.7816412, 62.0172201 ], [ -6.7816702, 62.0172599 ], [ -6.7817354, 62.017285 ], [ -6.7818497, 62.0173081 ], [ -6.7819365, 62.017321 ], [ -6.7820581, 62.0173319 ], [ -6.7821753, 62.0173101 ], [ -6.7822679, 62.0172966 ], [ -6.7823432, 62.0172891 ], [ -6.7823678, 62.0172653 ], [ -6.7823461, 62.0172334 ], [ -6.7823244, 62.0172022 ], [ -6.7823432, 62.0171621 ], [ -6.7824069, 62.0171316 ], [ -6.7825385, 62.0171146 ], [ -6.7826529, 62.0171227 ], [ -6.7827484, 62.0171132 ], [ -6.7828077, 62.0170834 ], [ -6.7829119, 62.0170447 ], [ -6.7830089, 62.017046 ], [ -6.7831333, 62.0170637 ], [ -6.7832983, 62.0170922 ], [ -6.7834532, 62.0170969 ], [ -6.7836181, 62.0170501 ], [ -6.7837802, 62.0169808 ], [ -6.7839813, 62.0169036 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45514102.0, "name": "Tinghúsvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7765264, 62.0163335 ], [ -6.777247, 62.0162998 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 46841794.0, "name": "Við Sandá", "ref": null, "type": "track", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8133446, 61.9960832 ], [ -6.8128309, 61.9964138 ], [ -6.8106827, 61.9975214 ], [ -6.810687, 61.9976106 ], [ -6.8107485, 61.9976758 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 47705828.0, "name": "Jóannesar Paturssonar gøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7839098, 62.0081039 ], [ -6.7842821, 62.0083539 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 47705829.0, "name": "Jóannesar Paturssonar gøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7846739, 62.0078654 ], [ -6.7852789, 62.0082231 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 47705830.0, "name": "Jóannesar Paturssonar gøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7835408, 62.0082191 ], [ -6.7838782, 62.0084463 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 47705831.0, "name": "Jóannesar Paturssonar gøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7831479, 62.0083417 ], [ -6.7834643, 62.0085612 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 47705832.0, "name": "Kongagøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7745481, 62.0120058 ], [ -6.7741282, 62.0121224 ], [ -6.7734917, 62.0123079 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 47705833.0, "name": "Kongagøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7745481, 62.0120058 ], [ -6.775261, 62.0118346 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 48205467.0, "name": null, "ref": null, "type": "pedestrian", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7732032, 62.009583 ], [ -6.7730907, 62.0096374 ], [ -6.7729602, 62.0096859 ], [ -6.7728659, 62.0097208 ], [ -6.7728097, 62.0096672 ], [ -6.7727897, 62.0096204 ], [ -6.772768, 62.0095625 ], [ -6.7727861, 62.0095319 ], [ -6.7730309, 62.0094434 ], [ -6.7732032, 62.009583 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 51097574.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7786864, 62.015791 ], [ -6.7785851, 62.0158686 ], [ -6.7785127, 62.0159245 ], [ -6.7784129, 62.0159713 ], [ -6.7783936, 62.0159774 ], [ -6.7783453, 62.0159993 ], [ -6.778223, 62.0160212 ], [ -6.7780605, 62.0160295 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 51097575.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7780097, 62.014904 ], [ -6.7780602, 62.014917 ], [ -6.7781648, 62.0149542 ], [ -6.7782931, 62.0150993 ], [ -6.7782695, 62.0152545 ], [ -6.7783977, 62.0154469 ], [ -6.778661, 62.0156427 ], [ -6.7788601, 62.0157405 ], [ -6.7790154, 62.0158384 ], [ -6.7791875, 62.0159194 ], [ -6.7792854, 62.0158992 ], [ -6.7793225, 62.0158756 ], [ -6.7793529, 62.0157979 ], [ -6.7794271, 62.0157338 ], [ -6.7795689, 62.0156798 ], [ -6.7797579, 62.0156832 ], [ -6.7798625, 62.0157372 ], [ -6.7799638, 62.0158317 ], [ -6.7801224, 62.0159228 ], [ -6.7802641, 62.0160342 ], [ -6.7804633, 62.0161861 ], [ -6.780551, 62.0162502 ], [ -6.7806443, 62.0161997 ], [ -6.7806624, 62.0161928 ], [ -6.7808041, 62.0161624 ], [ -6.7809425, 62.0161928 ], [ -6.7810708, 62.0162299 ], [ -6.781226, 62.0162063 ], [ -6.7813475, 62.0161894 ], [ -6.7814555, 62.0161894 ], [ -6.781523, 62.0162333 ], [ -6.7815905, 62.0162941 ], [ -6.7816513, 62.0163076 ], [ -6.7817277, 62.016323 ], [ -6.7817694, 62.0163244 ], [ -6.7818437, 62.0162974 ], [ -6.781955, 62.0162637 ], [ -6.7822723, 62.0161861 ], [ -6.7823972, 62.0161287 ], [ -6.7824681, 62.0160848 ], [ -6.7825558, 62.0160139 ], [ -6.7825896, 62.0159768 ], [ -6.7826166, 62.0158519 ], [ -6.7825997, 62.0157034 ], [ -6.7825877, 62.0154959 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 51097576.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.778789, 62.0157603 ], [ -6.7786864, 62.015791 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 51097577.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7779336, 62.0149371 ], [ -6.7780097, 62.014904 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 52280584.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8289105, 61.9997914 ], [ -6.8287919, 61.9998922 ], [ -6.8286914, 61.999927 ], [ -6.8286285, 61.9999274 ], [ -6.8285195, 61.9999282 ], [ -6.8283972, 61.9999096 ], [ -6.8283396, 61.9999009 ], [ -6.8282418, 61.9998636 ], [ -6.8282312, 61.9998065 ], [ -6.8282391, 61.9997507 ], [ -6.8282503, 61.9997112 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 52280586.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.799408, 62.0135686 ], [ -6.8000513, 62.0136373 ], [ -6.8006889, 62.0136865 ], [ -6.8015848, 62.0136032 ], [ -6.802141, 62.0135649 ], [ -6.8027954, 62.0135198 ], [ -6.8069278, 62.0129858 ], [ -6.8093733, 62.0127093 ], [ -6.8116498, 62.0124667 ], [ -6.8121093, 62.0124177 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 52280587.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7768466, 62.00809 ], [ -6.775903, 62.0080891 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 55335200.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8283972, 61.9999096 ], [ -6.8283283, 62.0000051 ], [ -6.8282792, 62.0001122 ], [ -6.8282406, 62.00023 ], [ -6.8282248, 62.0003544 ], [ -6.8281476, 62.0003478 ], [ -6.8280985, 62.0003668 ], [ -6.8280546, 62.0004063 ], [ -6.8279809, 62.000473 ], [ -6.827923, 62.0005249 ], [ -6.8279213, 62.0005727 ], [ -6.8278844, 62.0006196 ], [ -6.8278563, 62.0006773 ], [ -6.8278125, 62.0007226 ], [ -6.8277949, 62.0007317 ], [ -6.8277335, 62.0007448 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 55335202.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.827923, 62.0005249 ], [ -6.8280265, 62.0005439 ], [ -6.8282195, 62.000571 ], [ -6.8283704, 62.0005933 ], [ -6.8285283, 62.0006131 ], [ -6.8286477, 62.0006592 ], [ -6.8286933, 62.0006839 ], [ -6.8286985, 62.0007193 ], [ -6.828695, 62.0007432 ], [ -6.8287266, 62.0007753 ], [ -6.8287161, 62.0008297 ], [ -6.8286705, 62.0008808 ], [ -6.8286231, 62.0009203 ], [ -6.8286073, 62.0009532 ], [ -6.8286038, 62.0009977 ], [ -6.828588, 62.0010422 ], [ -6.8285459, 62.0010801 ], [ -6.828509, 62.0011048 ], [ -6.8284582, 62.0011237 ], [ -6.8284266, 62.0011534 ], [ -6.8283862, 62.0011863 ], [ -6.8283476, 62.0012234 ], [ -6.8282803, 62.0012823 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 55335203.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8268857, 62.0000235 ], [ -6.8270422, 62.0000521 ], [ -6.8271808, 62.0000793 ], [ -6.8274159, 62.000076 ], [ -6.8275932, 62.0000628 ], [ -6.8277546, 62.0000521 ], [ -6.8279546, 62.000043 ], [ -6.8280143, 62.0000233 ], [ -6.8281143, 62.0000084 ], [ -6.8282195, 62.0000002 ], [ -6.8283283, 62.0000051 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 55335204.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8286285, 61.9999274 ], [ -6.8287581, 62.0000388 ], [ -6.8288634, 62.0000563 ], [ -6.8290586, 62.0000697 ], [ -6.8292779, 62.0000851 ], [ -6.8293098, 62.000087 ], [ -6.8294512, 62.0000954 ], [ -6.8297012, 62.0001057 ], [ -6.8299885, 62.000115 ], [ -6.8301859, 62.0001201 ], [ -6.8303416, 62.0001397 ], [ -6.8305039, 62.0001562 ], [ -6.8306574, 62.0001644 ], [ -6.8308285, 62.0001747 ], [ -6.8310237, 62.0001963 ], [ -6.8311838, 62.0002231 ], [ -6.8314295, 62.0002756 ], [ -6.8315325, 62.0002993 ], [ -6.8316018, 62.0003168 ], [ -6.8314575, 62.0005129 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 55335205.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.830501, 62.00113 ], [ -6.8303112, 62.0009209 ], [ -6.8302281, 62.0008334 ], [ -6.8301405, 62.0007449 ], [ -6.8300655, 62.0006805 ], [ -6.8299951, 62.0006 ], [ -6.8299205, 62.0005052 ], [ -6.829813, 62.0004085 ], [ -6.8297341, 62.0003508 ], [ -6.8296091, 62.0002633 ], [ -6.8294797, 62.0002056 ], [ -6.8293634, 62.0001438 ], [ -6.8293098, 62.000087 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 55335208.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8272746, 62.0008576 ], [ -6.8274802, 62.0008158 ], [ -6.8275855, 62.0006931 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 57401100.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7808801, 62.0099828 ], [ -6.7814415, 62.0097507 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 58576931.0, "name": "Sigmundargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762374, 62.0068545 ], [ -6.7763993, 62.0070672 ], [ -6.7764276, 62.0070877 ], [ -6.7767733, 62.0073379 ], [ -6.7767647, 62.0074818 ], [ -6.7766979, 62.0075713 ], [ -6.7766991, 62.0076624 ], [ -6.7767142, 62.0077527 ], [ -6.7767745, 62.0079582 ], [ -6.7768466, 62.00809 ], [ -6.776884, 62.0081584 ], [ -6.7771832, 62.0085096 ], [ -6.7771832, 62.0087827 ], [ -6.7771673, 62.0090499 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 60550926.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.774414, 62.020054 ], [ -6.7743671, 62.0199279 ], [ -6.774042, 62.0193445 ], [ -6.7733054, 62.0194342 ], [ -6.7732046, 62.0194809 ], [ -6.7732112, 62.019626 ], [ -6.7728761, 62.0197022 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961385.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7807823, 62.0081672 ], [ -6.7811755, 62.0085594 ], [ -6.7814905, 62.0084662 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961387.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7678103, 62.0133928 ], [ -6.7674917, 62.0133383 ], [ -6.76695, 62.0132186 ], [ -6.76678, 62.0131638 ], [ -6.7665888, 62.0130816 ], [ -6.766148, 62.0131164 ], [ -6.7648043, 62.0131788 ], [ -6.7641272, 62.0134023 ], [ -6.7640554, 62.0132685 ], [ -6.7640713, 62.0131713 ], [ -6.7641616, 62.0130691 ], [ -6.7642094, 62.0129121 ], [ -6.7641775, 62.0128323 ], [ -6.7641882, 62.0127301 ], [ -6.7642044, 62.0126887 ], [ -6.7642125, 62.0126427 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961389.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7822122, 62.0050729 ], [ -6.7823956, 62.004981 ], [ -6.7825146, 62.0050017 ], [ -6.7829712, 62.0052248 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961393.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7834438, 62.0074264 ], [ -6.7839476, 62.007772 ], [ -6.7841723, 62.0079262 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961396.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7787592, 62.0056618 ], [ -6.7782233, 62.0059837 ], [ -6.7780023, 62.0061135 ], [ -6.7782042, 62.0061912 ], [ -6.7783399, 62.0061193 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961399.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7839476, 62.007772 ], [ -6.7841904, 62.0076961 ], [ -6.7843909, 62.0078393 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961402.0, "name": "Hoyvíksvegur", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7683972, 62.0109572 ], [ -6.7681055, 62.0110961 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961406.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7629701, 62.0131827 ], [ -6.7636963, 62.0135349 ], [ -6.7641487, 62.0135801 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961415.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7827176, 62.005318 ], [ -6.7829712, 62.0052248 ], [ -6.7831264, 62.0051676 ], [ -6.7832828, 62.0050895 ], [ -6.7832386, 62.0049826 ], [ -6.7830558, 62.0048076 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961418.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7665888, 62.0130816 ], [ -6.7657571, 62.012681 ], [ -6.7654987, 62.0126632 ], [ -6.7651561, 62.0126415 ], [ -6.7649766, 62.0126351 ], [ -6.7647972, 62.0126568 ], [ -6.7645307, 62.0126453 ], [ -6.7642125, 62.0126427 ], [ -6.7639651, 62.0125585 ], [ -6.7637557, 62.0125164 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961420.0, "name": null, "ref": null, "type": "steps", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7771399, 62.0064087 ], [ -6.7775429, 62.00633 ], [ -6.7778875, 62.0062973 ], [ -6.7779762, 62.0062777 ], [ -6.7780667, 62.0062475 ], [ -6.7782042, 62.0061912 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961431.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7764641, 62.0055209 ], [ -6.7770739, 62.0055526 ], [ -6.7770821, 62.0055066 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 61961439.0, "name": "Hoyvíksvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7683972, 62.0109572 ], [ -6.7683587, 62.010894 ], [ -6.7683358, 62.0107514 ], [ -6.768299, 62.0105005 ], [ -6.7682964, 62.010341 ], [ -6.7683161, 62.0102189 ], [ -6.7683085, 62.0101195 ], [ -6.7682808, 62.0100814 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313193.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7805413, 62.0042534 ], [ -6.7807269, 62.0042079 ], [ -6.7808843, 62.0041549 ], [ -6.7810507, 62.0040778 ], [ -6.7811948, 62.0040591 ], [ -6.7813655, 62.0040622 ], [ -6.7815562, 62.0040581 ], [ -6.7816848, 62.0040372 ], [ -6.7818356, 62.0039873 ], [ -6.782013, 62.0039561 ], [ -6.7822724, 62.0039144 ], [ -6.7825008, 62.0038894 ], [ -6.782931, 62.0038478 ], [ -6.7831594, 62.0037926 ], [ -6.7833612, 62.0036813 ], [ -6.7835297, 62.0037021 ], [ -6.7837071, 62.0037437 ], [ -6.7839466, 62.0037593 ], [ -6.7841351, 62.0037864 ], [ -6.7843346, 62.0037999 ], [ -6.7844987, 62.0038343 ], [ -6.7846828, 62.0038853 ], [ -6.7848774, 62.0039317 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313195.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8010105, 62.0083641 ], [ -6.8011303, 62.0084443 ], [ -6.8012301, 62.0085213 ], [ -6.8013143, 62.0085879 ], [ -6.8013698, 62.0086139 ], [ -6.8014518, 62.0086306 ], [ -6.8015316, 62.0086462 ], [ -6.801556, 62.0086795 ], [ -6.8015605, 62.0087305 ], [ -6.8015715, 62.0088085 ], [ -6.8015871, 62.0089084 ], [ -6.8016358, 62.0089844 ], [ -6.8016691, 62.00905 ], [ -6.8016868, 62.0091072 ], [ -6.8017135, 62.0091582 ], [ -6.8017467, 62.0092009 ], [ -6.8017933, 62.0092259 ], [ -6.8018709, 62.0092394 ], [ -6.8019352, 62.0092592 ], [ -6.8019552, 62.009307 ], [ -6.8019463, 62.0093653 ], [ -6.8019552, 62.0094246 ], [ -6.8019574, 62.0094798 ], [ -6.8019685, 62.0095464 ], [ -6.8019441, 62.0096026 ], [ -6.8019463, 62.0096515 ], [ -6.8019352, 62.0097129 ], [ -6.8020261, 62.00974 ], [ -6.8020882, 62.0097805 ], [ -6.8021813, 62.009843 ], [ -6.8022368, 62.0098919 ], [ -6.80229, 62.0099262 ], [ -6.8023676, 62.0099876 ], [ -6.8024851, 62.0100605 ], [ -6.8025539, 62.010124 ], [ -6.8026226, 62.0102176 ], [ -6.8026935, 62.0102842 ], [ -6.8027157, 62.0103602 ], [ -6.8027401, 62.0104112 ], [ -6.8027955, 62.0104986 ], [ -6.8028332, 62.010586 ], [ -6.8028554, 62.0106318 ], [ -6.8028399, 62.0106828 ], [ -6.80278, 62.0107577 ], [ -6.8027268, 62.010841 ], [ -6.802678, 62.0109471 ], [ -6.8025672, 62.0110304 ], [ -6.8024918, 62.0110668 ], [ -6.8023565, 62.011124 ], [ -6.8022966, 62.0111573 ], [ -6.8022833, 62.0111854 ], [ -6.802341, 62.0112229 ], [ -6.8024363, 62.011251 ], [ -6.8025206, 62.0112801 ], [ -6.8025849, 62.0113082 ], [ -6.8026669, 62.0113436 ], [ -6.8026825, 62.0113738 ], [ -6.8026647, 62.0114019 ], [ -6.8026204, 62.0114185 ], [ -6.8025472, 62.0114216 ], [ -6.8024452, 62.0114279 ], [ -6.8022589, 62.0114164 ], [ -6.8021259, 62.0114164 ], [ -6.8019818, 62.0114123 ], [ -6.8018975, 62.0114175 ], [ -6.8018022, 62.0114289 ], [ -6.8017778, 62.0114487 ], [ -6.8017755, 62.0114778 ], [ -6.8017888, 62.0115278 ], [ -6.8018022, 62.0116121 ], [ -6.8018088, 62.0116797 ], [ -6.8017733, 62.0117827 ], [ -6.80178, 62.01184 ], [ -6.8017667, 62.0118951 ], [ -6.8017844, 62.0119596 ], [ -6.801811, 62.0120356 ], [ -6.8018864, 62.0121064 ], [ -6.8019441, 62.0121698 ], [ -6.8019906, 62.0122219 ], [ -6.8020971, 62.0122791 ], [ -6.8021725, 62.012327 ], [ -6.8022146, 62.0123717 ], [ -6.8022833, 62.0124258 ], [ -6.8023476, 62.0124747 ], [ -6.8023964, 62.0125278 ], [ -6.8024962, 62.0125809 ], [ -6.8025405, 62.0126318 ], [ -6.8025849, 62.0126839 ], [ -6.8026337, 62.0127546 ], [ -6.8026514, 62.0128244 ], [ -6.8026226, 62.0128795 ], [ -6.8025672, 62.0129242 ], [ -6.8024962, 62.0129732 ], [ -6.8023698, 62.0130398 ], [ -6.8022789, 62.013097 ], [ -6.8022168, 62.0131584 ], [ -6.8020838, 62.0132166 ], [ -6.8019618, 62.0132551 ], [ -6.8018886, 62.0132812 ], [ -6.8018775, 62.0132978 ], [ -6.8019108, 62.013328 ], [ -6.8020062, 62.0133831 ], [ -6.8020572, 62.0134268 ], [ -6.8020993, 62.0134945 ], [ -6.802141, 62.0135649 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313198.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8017168, 62.0079101 ], [ -6.8015228, 62.0080426 ], [ -6.8014318, 62.0081175 ], [ -6.8013387, 62.0081903 ], [ -6.8012478, 62.008259 ], [ -6.8011059, 62.0083194 ], [ -6.8010105, 62.0083641 ], [ -6.8008465, 62.0084609 ], [ -6.8007622, 62.0085182 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313199.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7783609, 62.0009525 ], [ -6.7784165, 62.0008296 ], [ -6.7786114, 62.000705 ], [ -6.7787088, 62.0006212 ], [ -6.7788171, 62.0005017 ], [ -6.779039, 62.0003772 ], [ -6.7793206, 62.0002552 ], [ -6.7795533, 62.0001612 ], [ -6.7797428, 62.0001129 ], [ -6.7801218, 62.0000697 ], [ -6.7804249, 62.0000112 ], [ -6.7807173, 62.0000011 ], [ -6.7811124, 62.0000214 ], [ -6.7813885, 62.000029 ], [ -6.7815708, 62.0000645 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313200.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7837071, 62.0037437 ], [ -6.7831594, 62.0037926 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313201.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8116498, 62.0124667 ], [ -6.8115885, 62.012419 ], [ -6.8115246, 62.0123532 ], [ -6.8114927, 62.0122983 ], [ -6.8114235, 62.0122342 ], [ -6.8113738, 62.0121892 ], [ -6.8113241, 62.0121451 ], [ -6.8112567, 62.0121051 ], [ -6.8112081, 62.0120886 ], [ -6.8111745, 62.0120711 ], [ -6.8111563, 62.0120523 ], [ -6.8111473, 62.0120357 ], [ -6.8111373, 62.012014 ], [ -6.81115, 62.0119982 ], [ -6.8111691, 62.011976 ], [ -6.8112172, 62.0119466 ], [ -6.8112853, 62.0119321 ], [ -6.8113462, 62.0119138 ], [ -6.8113961, 62.0118912 ], [ -6.8114116, 62.0118699 ], [ -6.811417, 62.0118477 ], [ -6.8114288, 62.0118294 ], [ -6.8114443, 62.0118124 ], [ -6.8114906, 62.0117915 ], [ -6.8115387, 62.011783 ], [ -6.8116014, 62.0117736 ], [ -6.8116668, 62.0117587 ], [ -6.8117149, 62.0117395 ], [ -6.8117903, 62.0117177 ], [ -6.8118402, 62.0116969 ], [ -6.8118984, 62.0116845 ], [ -6.8119847, 62.0116717 ], [ -6.8120655, 62.0116615 ], [ -6.8121227, 62.0116538 ], [ -6.8121854, 62.0116491 ], [ -6.8122344, 62.0116453 ], [ -6.8122753, 62.0116393 ], [ -6.8123253, 62.0116478 ], [ -6.8123843, 62.0116551 ], [ -6.8124233, 62.0116542 ], [ -6.8125314, 62.0116568 ], [ -6.8126102, 62.0116582 ], [ -6.8127158, 62.0116614 ], [ -6.812818, 62.011679 ], [ -6.8129588, 62.0116987 ], [ -6.8130553, 62.011721 ], [ -6.8132017, 62.0117456 ], [ -6.8133164, 62.0117765 ], [ -6.8134106, 62.0118106 ], [ -6.8135162, 62.0118377 ], [ -6.8135832, 62.011859 ], [ -6.8136445, 62.0118835 ], [ -6.8137171, 62.0119006 ], [ -6.8138034, 62.0119166 ], [ -6.8138715, 62.0119246 ], [ -6.8139544, 62.0119278 ], [ -6.8140169, 62.0119107 ], [ -6.8140702, 62.0118862 ], [ -6.8141565, 62.0118628 ], [ -6.8142462, 62.0118521 ], [ -6.8143189, 62.0118489 ], [ -6.8143949, 62.0118494 ], [ -6.8144733, 62.0118489 ], [ -6.8145505, 62.0118516 ], [ -6.8146367, 62.0118681 ], [ -6.8147003, 62.0118798 ], [ -6.8147741, 62.0118995 ], [ -6.8148297, 62.0119267 ], [ -6.814916, 62.0119501 ], [ -6.8149853, 62.011972 ], [ -6.8150761, 62.0119832 ], [ -6.8151658, 62.011981 ], [ -6.8152771, 62.0119853 ], [ -6.8153679, 62.0119922 ], [ -6.8154405, 62.012005 ], [ -6.8155336, 62.012029 ], [ -6.8156188, 62.0120444 ], [ -6.8156858, 62.0120482 ], [ -6.8157891, 62.0120508 ], [ -6.815906, 62.0120636 ], [ -6.8159753, 62.0120716 ], [ -6.8160457, 62.0120716 ], [ -6.8161274, 62.0120599 ], [ -6.8161978, 62.0120471 ], [ -6.8162387, 62.0120327 ], [ -6.8162773, 62.0120231 ], [ -6.8163363, 62.012021 ], [ -6.8163919, 62.0120215 ], [ -6.8164771, 62.0120381 ], [ -6.8165736, 62.0120503 ], [ -6.8166485, 62.0120642 ], [ -6.8167337, 62.0120636 ], [ -6.8167677, 62.0120514 ], [ -6.8168143, 62.0120365 ], [ -6.816871, 62.0120226 ], [ -6.8169153, 62.0120066 ], [ -6.8170027, 62.0119762 ], [ -6.8170765, 62.0119523 ], [ -6.8171742, 62.0119208 ], [ -6.8172729, 62.0119017 ], [ -6.817366, 62.0118889 ], [ -6.8174478, 62.0118724 ], [ -6.8175182, 62.0118638 ], [ -6.8175942, 62.01185 ], [ -6.8176669, 62.0118271 ], [ -6.8177509, 62.0118132 ], [ -6.8178111, 62.01181 ], [ -6.8178826, 62.0118164 ], [ -6.8179382, 62.0118223 ], [ -6.8180075, 62.0118308 ], [ -6.8180926, 62.0118361 ], [ -6.8181732, 62.0118478 ], [ -6.8182516, 62.0118441 ], [ -6.8183435, 62.0118319 ], [ -6.8184378, 62.0118239 ], [ -6.8185104, 62.0118201 ], [ -6.8185785, 62.0118196 ], [ -6.8186467, 62.0118196 ], [ -6.8187454, 62.0118121 ], [ -6.8188306, 62.0117997 ], [ -6.8188987, 62.0117789 ], [ -6.8189634, 62.0117576 ], [ -6.8190259, 62.0117384 ], [ -6.8190974, 62.0117086 ], [ -6.8191632, 62.0116766 ], [ -6.8192563, 62.0116627 ], [ -6.8193608, 62.0116494 ], [ -6.8194822, 62.0116334 ], [ -6.8195924, 62.0116505 ], [ -6.8196741, 62.0116627 ], [ -6.8197479, 62.0116681 ], [ -6.8198251, 62.0116899 ], [ -6.8199318, 62.0117048 ], [ -6.8200158, 62.0117176 ], [ -6.8201226, 62.0117325 ], [ -6.8202202, 62.0117442 ], [ -6.8203008, 62.0117427 ], [ -6.820353, 62.0117352 ], [ -6.8204132, 62.0117208 ], [ -6.8204348, 62.0117022 ], [ -6.8204552, 62.011675 ], [ -6.8204495, 62.0116478 ], [ -6.8204325, 62.011602 ], [ -6.8204121, 62.0115604 ], [ -6.8203877, 62.011538 ], [ -6.8203877, 62.0115201 ], [ -6.8204132, 62.0115052 ], [ -6.8204477, 62.0114868 ], [ -6.8204849, 62.0114787 ], [ -6.820543, 62.0114685 ], [ -6.8205948, 62.0114472 ], [ -6.8206475, 62.0114323 ], [ -6.8206693, 62.0114101 ], [ -6.8206629, 62.0113875 ], [ -6.8206611, 62.0113662 ], [ -6.8207129, 62.0113394 ], [ -6.8207765, 62.0112997 ], [ -6.8208346, 62.0112622 ], [ -6.8208836, 62.0112298 ], [ -6.8209599, 62.0112008 ], [ -6.8210099, 62.0111659 ], [ -6.8210535, 62.011125 ], [ -6.8211052, 62.0110862 ], [ -6.8211379, 62.0110346 ], [ -6.8211761, 62.0110078 ], [ -6.8211824, 62.0109737 ], [ -6.8211579, 62.010937 ], [ -6.8211461, 62.0108914 ], [ -6.8211334, 62.0108581 ], [ -6.8211379, 62.010824 ], [ -6.8211125, 62.0107716 ], [ -6.8210607, 62.0107426 ], [ -6.8210408, 62.0107111 ], [ -6.8210035, 62.0106625 ], [ -6.820979, 62.0106177 ], [ -6.8209563, 62.0105909 ], [ -6.820939, 62.0105593 ], [ -6.8208954, 62.0105287 ], [ -6.8208473, 62.0104984 ], [ -6.8207864, 62.0104643 ], [ -6.820722, 62.0104306 ], [ -6.8206802, 62.0104153 ], [ -6.820642, 62.0103795 ], [ -6.8206021, 62.010336 ], [ -6.8205685, 62.0103134 ], [ -6.8205031, 62.0102874 ], [ -6.8204531, 62.0102571 ], [ -6.8204086, 62.0102333 ], [ -6.8203941, 62.010206 ], [ -6.8203396, 62.0101672 ], [ -6.8202742, 62.0101293 ], [ -6.8202297, 62.0100866 ], [ -6.8201084, 62.0100116 ], [ -6.8198572, 62.0098592 ], [ -6.8195064, 62.0095401 ], [ -6.8193591, 62.0093856 ], [ -6.8191642, 62.0092372 ], [ -6.8191079, 62.0091031 ], [ -6.8190776, 62.0089669 ], [ -6.819082, 62.0088348 ], [ -6.8190257, 62.0086986 ], [ -6.818952, 62.0085726 ], [ -6.8188308, 62.0084364 ], [ -6.8187225, 62.008288 ], [ -6.8185493, 62.0081579 ], [ -6.81835, 62.0080298 ], [ -6.8183544, 62.0078449 ], [ -6.8183457, 62.0076884 ], [ -6.8183371, 62.0075664 ], [ -6.8182634, 62.0074485 ], [ -6.8182764, 62.0073042 ], [ -6.8183587, 62.0071192 ], [ -6.8183934, 62.006981 ], [ -6.8184237, 62.0068895 ], [ -6.818389, 62.0068102 ], [ -6.8183207, 62.00675 ], [ -6.8183096, 62.0066886 ], [ -6.8183318, 62.0066262 ], [ -6.8183539, 62.0065575 ], [ -6.8184426, 62.0064982 ], [ -6.8185225, 62.0064617 ], [ -6.8186001, 62.0064368 ], [ -6.8186666, 62.006391 ], [ -6.8187043, 62.0063358 ], [ -6.8186998, 62.0062962 ], [ -6.8186888, 62.0062348 ], [ -6.81864, 62.0061693 ], [ -6.81862, 62.0061089 ], [ -6.8186245, 62.0060527 ], [ -6.8186888, 62.0059986 ], [ -6.8187531, 62.0059372 ], [ -6.8187464, 62.0058716 ], [ -6.8187287, 62.0057998 ], [ -6.8187265, 62.0057342 ], [ -6.818691, 62.0056541 ], [ -6.8186998, 62.0055594 ], [ -6.8187309, 62.0054927 ], [ -6.8187575, 62.0054293 ], [ -6.8188883, 62.0053585 ], [ -6.8190103, 62.0052908 ], [ -6.819181, 62.005218 ], [ -6.8193074, 62.005168 ], [ -6.8195158, 62.0051357 ], [ -6.8198263, 62.005065 ], [ -6.8201389, 62.0049817 ], [ -6.8204738, 62.0048953 ], [ -6.8207066, 62.0048131 ], [ -6.8209328, 62.0047454 ], [ -6.8210791, 62.0047277 ], [ -6.8212565, 62.0047225 ], [ -6.8213452, 62.0047184 ], [ -6.8216423, 62.0046465 ], [ -6.8218885, 62.0045872 ], [ -6.8219949, 62.0045581 ], [ -6.8221279, 62.0045175 ], [ -6.8223275, 62.0045206 ], [ -6.8224517, 62.0045279 ], [ -6.8225692, 62.0045196 ], [ -6.8226978, 62.0045248 ], [ -6.8228087, 62.0045248 ], [ -6.8229173, 62.0045071 ], [ -6.8230814, 62.0044642 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313205.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.801743, 62.0074129 ], [ -6.8015402, 62.0073921 ], [ -6.8014093, 62.0073682 ], [ -6.8013317, 62.007337 ], [ -6.8012918, 62.0072901 ], [ -6.801294, 62.0072214 ], [ -6.8013051, 62.0071465 ], [ -6.8012763, 62.0071069 ], [ -6.801179, 62.0070908 ], [ -6.8010547, 62.0070828 ], [ -6.8009802, 62.0070727 ], [ -6.8008854, 62.0070616 ], [ -6.8007062, 62.0070397 ], [ -6.8005634, 62.0070241 ], [ -6.8004893, 62.0070145 ], [ -6.800327, 62.0069945 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313206.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7764276, 62.0070877 ], [ -6.7759977, 62.0071529 ], [ -6.7755819, 62.0072301 ], [ -6.7752512, 62.0073134 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313207.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8314832, 62.0021361 ], [ -6.831472, 62.0021132 ], [ -6.8314579, 62.0020895 ], [ -6.8313913, 62.0020375 ], [ -6.831288, 62.0019997 ], [ -6.8311495, 62.0019576 ], [ -6.8310723, 62.0019272 ], [ -6.8309849, 62.0018888 ], [ -6.8309497, 62.001851 ], [ -6.8309452, 62.0018222 ], [ -6.830927, 62.0017977 ], [ -6.8308884, 62.001779 ], [ -6.8308271, 62.0017646 ], [ -6.8307669, 62.0017529 ], [ -6.8307158, 62.0017481 ], [ -6.8306545, 62.0017417 ], [ -6.8306137, 62.0017273 ], [ -6.8305614, 62.0017108 ], [ -6.8305024, 62.0016959 ], [ -6.8304286, 62.0016815 ], [ -6.8302923, 62.0016295 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313209.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8198572, 62.0098592 ], [ -6.8193675, 62.0098604 ], [ -6.8185464, 62.0098263 ], [ -6.8177495, 62.0098116 ], [ -6.8171639, 62.0097515 ], [ -6.8167932, 62.0096978 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313210.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7758046, 62.0075833 ], [ -6.7757516, 62.0075349 ], [ -6.7756895, 62.0074902 ], [ -6.7756518, 62.0074433 ], [ -6.7756031, 62.0074371 ], [ -6.7755432, 62.0074579 ], [ -6.7754944, 62.0074797 ], [ -6.7754678, 62.0074829 ], [ -6.7754218, 62.0074695 ], [ -6.7753773, 62.0074379 ], [ -6.7753047, 62.0073962 ], [ -6.7752356, 62.0073493 ], [ -6.7752093, 62.0073258 ], [ -6.7752512, 62.0073134 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62313211.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7763308, 62.0093513 ], [ -6.7760322, 62.0091282 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62333152.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8272384, 62.002871 ], [ -6.8272427, 62.0027254 ], [ -6.8271886, 62.0025323 ], [ -6.8270424, 62.0024179 ], [ -6.8269612, 62.002301 ], [ -6.8268259, 62.0022425 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62333153.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8263244, 62.0033 ], [ -6.8261234, 62.0033129 ], [ -6.8259669, 62.003298 ], [ -6.8256368, 62.0033288 ], [ -6.825421, 62.003302 ], [ -6.8251396, 62.0032712 ], [ -6.8250253, 62.0032076 ], [ -6.8248095, 62.0031709 ], [ -6.8246297, 62.0031202 ], [ -6.824562, 62.0030695 ], [ -6.824265, 62.0029683 ], [ -6.8240848, 62.0028442 ], [ -6.8237642, 62.0027976 ], [ -6.823427, 62.0026859 ], [ -6.8230104, 62.002495 ], [ -6.822455, 62.0023057 ], [ -6.8221277, 62.0022979 ], [ -6.8217828, 62.002213 ], [ -6.821355, 62.00216 ], [ -6.8211129, 62.0020274 ], [ -6.8205802, 62.0019402 ], [ -6.8203381, 62.0018076 ], [ -6.8198619, 62.0016447 ], [ -6.8196198, 62.0015765 ], [ -6.8194341, 62.0014401 ], [ -6.8192162, 62.001334 ], [ -6.819192, 62.0012582 ], [ -6.8188288, 62.0012355 ], [ -6.8185463, 62.0013226 ], [ -6.8181589, 62.0013529 ], [ -6.8177536, 62.0013955 ], [ -6.81739, 62.0014157 ], [ -6.8169503, 62.0013831 ], [ -6.816623, 62.0014001 ], [ -6.8163585, 62.0014762 ], [ -6.8161833, 62.0016252 ], [ -6.8160379, 62.0016872 ], [ -6.8157469, 62.001664 ], [ -6.8152577, 62.001664 ], [ -6.8147982, 62.0016174 ], [ -6.8143056, 62.0015615 ], [ -6.8141502, 62.0015522 ], [ -6.8139651, 62.0016717 ], [ -6.8134692, 62.0017959 ], [ -6.8130494, 62.0017819 ], [ -6.8127055, 62.0018067 ], [ -6.8124874, 62.0018766 ], [ -6.8123915, 62.0020426 ], [ -6.8119849, 62.002142 ], [ -6.8114592, 62.0023437 ], [ -6.8111716, 62.0023002 ], [ -6.8108675, 62.0023421 ], [ -6.8106823, 62.0024399 ], [ -6.8105501, 62.0025315 ], [ -6.8100212, 62.0026355 ], [ -6.8096476, 62.0027906 ], [ -6.8094449, 62.0029889 ], [ -6.8092435, 62.003132 ], [ -6.8091195, 62.0032944 ], [ -6.8089129, 62.0033817 ], [ -6.8087321, 62.0035684 ], [ -6.8085203, 62.0035757 ], [ -6.8083498, 62.003857 ], [ -6.8081381, 62.0041867 ], [ -6.8080089, 62.0045068 ], [ -6.8080038, 62.004628 ], [ -6.8080864, 62.0048535 ], [ -6.8081639, 62.0051299 ], [ -6.8081071, 62.0053651 ], [ -6.8081794, 62.0056585 ], [ -6.8081381, 62.005913 ], [ -6.8081742, 62.006107 ], [ -6.8081897, 62.0062258 ], [ -6.8084118, 62.0063107 ], [ -6.8085255, 62.0064222 ], [ -6.8086339, 62.0065968 ], [ -6.8086804, 62.0067616 ], [ -6.8087528, 62.0069313 ], [ -6.8085823, 62.0071811 ], [ -6.8084583, 62.0073556 ], [ -6.8085048, 62.0075714 ], [ -6.8085203, 62.0077532 ], [ -6.808479, 62.007952 ], [ -6.8084635, 62.0081993 ], [ -6.8085771, 62.0084733 ], [ -6.8087476, 62.0086793 ], [ -6.8087166, 62.0087981 ], [ -6.8088044, 62.0090551 ], [ -6.8086856, 62.0092442 ], [ -6.808541, 62.0094042 ], [ -6.8083602, 62.0096006 ], [ -6.8081691, 62.0097121 ], [ -6.8079624, 62.0098406 ], [ -6.8078591, 62.0099787 ], [ -6.8078281, 62.0101824 ], [ -6.8078178, 62.0103521 ], [ -6.8077507, 62.0105145 ], [ -6.8078178, 62.0105993 ], [ -6.8079831, 62.0107084 ], [ -6.8083395, 62.0107884 ], [ -6.8085616, 62.0108805 ], [ -6.8088871, 62.0110381 ], [ -6.8091092, 62.0112442 ], [ -6.809197, 62.011329 ], [ -6.8092603, 62.011645 ], [ -6.8092764, 62.0118799 ], [ -6.8092845, 62.0121753 ], [ -6.809341, 62.012395 ], [ -6.8093733, 62.0127093 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62333158.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8296935, 62.0037921 ], [ -6.829531, 62.0039099 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62333170.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8267497, 62.0032652 ], [ -6.8267663, 62.0031498 ], [ -6.8268854, 62.0030329 ], [ -6.8270262, 62.0029439 ], [ -6.8271994, 62.0028855 ], [ -6.8272384, 62.002871 ], [ -6.8273835, 62.0028169 ], [ -6.8275243, 62.0027305 ], [ -6.8276758, 62.002611 ], [ -6.8278599, 62.0025221 ], [ -6.8281089, 62.0024433 ], [ -6.82845, 62.0023696 ], [ -6.8288127, 62.0022985 ], [ -6.8290455, 62.0022959 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62360812.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7872278, 62.0465802 ], [ -6.7875722, 62.0466462 ], [ -6.7886164, 62.0468551 ], [ -6.7887045, 62.0468585 ], [ -6.7887929, 62.0467615 ], [ -6.7887423, 62.0467386 ], [ -6.7876848, 62.0465221 ], [ -6.7873353, 62.0464542 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 62360824.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.787066, 62.04677 ], [ -6.7872278, 62.0465802 ], [ -6.7873353, 62.0464542 ], [ -6.7874156, 62.04636 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498819.0, "name": "Skraddaragøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.773658, 62.0264804 ], [ -6.7736178, 62.0263592 ], [ -6.7736033, 62.026247 ], [ -6.7736612, 62.0261382 ], [ -6.7737663, 62.0260515 ], [ -6.773904, 62.0259971 ], [ -6.7741251, 62.0259903 ], [ -6.7743389, 62.0260243 ], [ -6.7746252, 62.0260549 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498825.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7700693, 62.0266492 ], [ -6.7699316, 62.0266659 ], [ -6.7697229, 62.0267366 ], [ -6.7695721, 62.026806 ], [ -6.7695026, 62.0268005 ], [ -6.769433, 62.0267502 ], [ -6.7693373, 62.0266999 ], [ -6.7692416, 62.0266632 ], [ -6.7691141, 62.0266469 ], [ -6.7690271, 62.0266795 ], [ -6.7689894, 62.0267271 ], [ -6.7689546, 62.026772 ], [ -6.7688445, 62.0267964 ], [ -6.7687575, 62.0267978 ], [ -6.7686589, 62.026757 ], [ -6.7685633, 62.0266944 ], [ -6.7684763, 62.0266523 ], [ -6.7684183, 62.0266278 ], [ -6.7683632, 62.0266931 ], [ -6.7682675, 62.0267774 ], [ -6.7681719, 62.0268209 ], [ -6.7680066, 62.0268563 ], [ -6.7678298, 62.0268631 ], [ -6.7676169, 62.026819 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498833.0, "name": "Klingran", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7715864, 62.0371106 ], [ -6.7716768, 62.0371786 ], [ -6.771717, 62.0372677 ], [ -6.77164, 62.03743 ], [ -6.7716216, 62.0375986 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498864.0, "name": null, "ref": null, "type": "construction", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7833556, 62.0368049 ], [ -6.7838168, 62.0368553 ], [ -6.7844148, 62.036908 ], [ -6.7849584, 62.0369369 ], [ -6.7852483, 62.0369505 ], [ -6.7862195, 62.0370133 ], [ -6.7867522, 62.0370286 ], [ -6.78739, 62.0370252 ], [ -6.7877995, 62.036998 ], [ -6.788267, 62.0369301 ], [ -6.7887562, 62.0368485 ], [ -6.789249, 62.0367534 ], [ -6.7896006, 62.0367262 ], [ -6.7899448, 62.036716 ], [ -6.7902565, 62.0367177 ], [ -6.7905319, 62.0367653 ], [ -6.7908073, 62.0368366 ], [ -6.7916227, 62.0370218 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498878.0, "name": "Løgmannabreyt", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7828472, 62.0358895 ], [ -6.782974, 62.0358343 ], [ -6.7833328, 62.0356574 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498882.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7664218, 62.028005 ], [ -6.7662189, 62.0280499 ], [ -6.7660739, 62.0281355 ], [ -6.7659348, 62.0282035 ], [ -6.7658652, 62.0282552 ], [ -6.7657869, 62.02833 ], [ -6.7658217, 62.028383 ], [ -6.7658971, 62.0284442 ], [ -6.765842, 62.0285095 ], [ -6.7657057, 62.0286278 ], [ -6.7656825, 62.0286808 ], [ -6.765352, 62.028757 ], [ -6.7651694, 62.0288182 ], [ -6.7650394, 62.0288907 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498892.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7860995, 62.0295415 ], [ -6.7858, 62.0296537 ], [ -6.7855101, 62.0297733 ], [ -6.7850915, 62.0299493 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498897.0, "name": null, "ref": null, "type": "construction", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7968934, 62.0320209 ], [ -6.7971788, 62.0316237 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498899.0, "name": "Skraddaragøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7766497, 62.0262369 ], [ -6.7768323, 62.026177 ], [ -6.777157, 62.0261335 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498912.0, "name": "Klingran", "ref": null, "type": "tertiary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7832289, 62.0368825 ], [ -6.7833556, 62.0368049 ], [ -6.7833281, 62.036708 ], [ -6.7831625, 62.0366486 ], [ -6.7829559, 62.0366615 ], [ -6.7828293, 62.036739 ], [ -6.7828567, 62.036836 ], [ -6.7830222, 62.0368954 ], [ -6.7832289, 62.0368825 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498914.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7684183, 62.0266278 ], [ -6.7684647, 62.0264918 ], [ -6.7685169, 62.0262457 ], [ -6.7685372, 62.0261015 ], [ -6.7685517, 62.0260023 ], [ -6.7685256, 62.0259479 ], [ -6.7684502, 62.0258309 ], [ -6.7684386, 62.0257969 ], [ -6.7684763, 62.025699 ], [ -6.7685111, 62.0256161 ], [ -6.7685459, 62.025578 ], [ -6.7685806, 62.0255657 ], [ -6.7686202, 62.025581 ], [ -6.7686536, 62.0256114 ], [ -6.7686944, 62.0256297 ], [ -6.7687408, 62.0256132 ], [ -6.7687334, 62.025581 ], [ -6.7687278, 62.0255409 ], [ -6.7687352, 62.0255079 ], [ -6.7689096, 62.0254052 ], [ -6.7689709, 62.0253538 ], [ -6.7690006, 62.0253068 ], [ -6.769008, 62.0252537 ], [ -6.768969, 62.0251615 ], [ -6.7689263, 62.0250805 ], [ -6.7688762, 62.0250187 ], [ -6.7688002, 62.0249204 ], [ -6.7687909, 62.0248429 ], [ -6.7688132, 62.0248072 ], [ -6.7689938, 62.0247803 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498917.0, "name": null, "ref": null, "type": "construction", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7915981, 62.0368967 ], [ -6.7918096, 62.0367845 ], [ -6.7919506, 62.0366548 ], [ -6.7921028, 62.0365321 ], [ -6.7923953, 62.0362992 ], [ -6.7926036, 62.0360846 ], [ -6.7929434, 62.0358064 ], [ -6.793265, 62.0355621 ], [ -6.7937769, 62.0351628 ], [ -6.7942072, 62.0348484 ], [ -6.7947281, 62.0344363 ], [ -6.795086, 62.0341474 ], [ -6.7953714, 62.0338542 ], [ -6.7956522, 62.0335972 ], [ -6.7958334, 62.0333954 ], [ -6.7961188, 62.0330194 ], [ -6.7964178, 62.0326306 ], [ -6.7967077, 62.0322759 ], [ -6.7968934, 62.0320209 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498949.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7695721, 62.026806 ], [ -6.7695268, 62.0269049 ], [ -6.7694688, 62.0270164 ], [ -6.7693673, 62.0271062 ], [ -6.76926, 62.0272136 ], [ -6.7691876, 62.0272721 ], [ -6.7690832, 62.0272965 ], [ -6.7689991, 62.0272965 ], [ -6.7689353, 62.027287 ], [ -6.7688455, 62.0272789 ], [ -6.7687904, 62.027287 ], [ -6.7687005, 62.0273278 ], [ -6.7684715, 62.0273931 ], [ -6.7681758, 62.0274964 ], [ -6.7679235, 62.027578 ], [ -6.7675264, 62.0277086 ], [ -6.7672626, 62.0277942 ], [ -6.7670712, 62.0278554 ], [ -6.7668799, 62.0279302 ], [ -6.7666306, 62.0280036 ], [ -6.7664218, 62.028005 ], [ -6.7662479, 62.0280009 ], [ -6.7660333, 62.0279724 ], [ -6.7658768, 62.0279656 ], [ -6.765784, 62.0279343 ], [ -6.7657586, 62.0277727 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498976.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7970532, 62.0319439 ], [ -6.7969003, 62.031907 ], [ -6.7967801, 62.0318938 ], [ -6.7966584, 62.0318708 ], [ -6.796504, 62.0318346 ], [ -6.7964001, 62.0318012 ], [ -6.796317, 62.0317963 ], [ -6.7962339, 62.0318102 ], [ -6.7961478, 62.0318409 ], [ -6.7960661, 62.0318673 ], [ -6.7959815, 62.0318965 ], [ -6.7959192, 62.0319279 ], [ -6.7959147, 62.0319669 ], [ -6.795934, 62.0320044 ], [ -6.7959221, 62.0320448 ], [ -6.7958954, 62.0321019 ], [ -6.795839, 62.0322237 ], [ -6.795793, 62.0323177 ], [ -6.7957366, 62.0323978 ], [ -6.7956654, 62.0324827 ], [ -6.7956297, 62.0325091 ], [ -6.7955318, 62.0325119 ], [ -6.7953373, 62.0324994 ], [ -6.7951562, 62.0324743 ], [ -6.7949039, 62.0324521 ], [ -6.7945699, 62.032427 ], [ -6.7941855, 62.032388 ], [ -6.7938603, 62.0323502 ], [ -6.7935211, 62.0323013 ], [ -6.7933037, 62.0322822 ], [ -6.7929935, 62.0322319 ], [ -6.7928629, 62.0322125 ], [ -6.7927231, 62.0321963 ], [ -6.7926257, 62.0321746 ], [ -6.7925889, 62.0321713 ], [ -6.7925671, 62.0321699 ], [ -6.7925365, 62.0321749 ], [ -6.7924849, 62.0321822 ], [ -6.7924445, 62.032197 ], [ -6.7924076, 62.032211 ], [ -6.7923886, 62.0322333 ], [ -6.7923935, 62.0322609 ], [ -6.7924168, 62.0322887 ], [ -6.7924168, 62.0323054 ], [ -6.7924095, 62.0323177 ], [ -6.7923954, 62.0323189 ], [ -6.7923779, 62.0323168 ], [ -6.7923531, 62.0323065 ], [ -6.7923312, 62.0322885 ], [ -6.7923113, 62.0322605 ], [ -6.7922933, 62.0322424 ], [ -6.7922548, 62.0322224 ], [ -6.7922137, 62.0321976 ], [ -6.7921772, 62.0321744 ], [ -6.792124, 62.0321569 ], [ -6.7920472, 62.0321188 ], [ -6.7919667, 62.0320743 ], [ -6.7919033, 62.0320431 ], [ -6.7918225, 62.032032 ], [ -6.7917014, 62.0320141 ], [ -6.7915221, 62.0319829 ], [ -6.7913202, 62.0319529 ], [ -6.7911432, 62.031927 ], [ -6.7908788, 62.0318857 ], [ -6.7906677, 62.03184 ], [ -6.7905471, 62.0318324 ], [ -6.7903963, 62.0318378 ], [ -6.7902456, 62.0318411 ], [ -6.7900879, 62.0317932 ], [ -6.7899218, 62.0317508 ], [ -6.7898235, 62.0317258 ], [ -6.78958, 62.031654 ], [ -6.7894083, 62.0315833 ], [ -6.7892761, 62.0315137 ], [ -6.7891045, 62.0314299 ], [ -6.7889723, 62.0313581 ], [ -6.7888216, 62.0312733 ], [ -6.7886569, 62.0311699 ], [ -6.7884806, 62.0310514 ], [ -6.788316, 62.0309459 ], [ -6.7881861, 62.0308599 ], [ -6.7879773, 62.0307316 ], [ -6.7877848, 62.0306163 ], [ -6.787655, 62.0305597 ], [ -6.7875297, 62.0305086 ], [ -6.7874416, 62.0304259 ], [ -6.7873534, 62.0303367 ], [ -6.7872653, 62.0302454 ], [ -6.7871633, 62.0301518 ], [ -6.7870148, 62.030067 ], [ -6.7868131, 62.0299745 ], [ -6.7867087, 62.0299071 ], [ -6.7865997, 62.0298124 ], [ -6.7864466, 62.0297113 ], [ -6.7862564, 62.0295992 ], [ -6.7860995, 62.0295415 ], [ -6.7860523, 62.0295242 ], [ -6.7858714, 62.0294339 ], [ -6.7857021, 62.0293534 ], [ -6.7854308, 62.0292468 ], [ -6.7852522, 62.0291532 ], [ -6.7850898, 62.0290455 ], [ -6.7849646, 62.028952 ], [ -6.7848301, 62.0288628 ], [ -6.7847443, 62.0287921 ], [ -6.7847206, 62.0287689 ], [ -6.784716, 62.0287497 ], [ -6.7847297, 62.0287318 ], [ -6.7847533, 62.0287169 ], [ -6.7847951, 62.0287037 ], [ -6.7848422, 62.0286884 ], [ -6.7848825, 62.0286713 ], [ -6.7849212, 62.0286502 ], [ -6.7849372, 62.0286363 ], [ -6.7849212, 62.0286213 ], [ -6.7849037, 62.028601 ], [ -6.7848837, 62.0285861 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64498981.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7899218, 62.0317508 ], [ -6.7897586, 62.0318359 ], [ -6.7896519, 62.0319382 ], [ -6.7895383, 62.031998 ], [ -6.789362, 62.0320937 ], [ -6.7892663, 62.0321199 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64499036.0, "name": "Skraddaragøta", "ref": null, "type": "service", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7764294, 62.0262586 ], [ -6.776096, 62.0262746 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64499040.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7894083, 62.0315833 ], [ -6.7892785, 62.0316031 ], [ -6.789086, 62.0316216 ], [ -6.7889515, 62.0316206 ], [ -6.7887868, 62.0316314 ], [ -6.7886546, 62.0316434 ], [ -6.7885062, 62.0316608 ], [ -6.7883461, 62.0316836 ], [ -6.7882029, 62.0317112 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64499069.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7628342, 62.027438 ], [ -6.7630772, 62.0274756 ], [ -6.7633236, 62.0275408 ], [ -6.76357, 62.027602 ], [ -6.7637613, 62.0276197 ], [ -6.7639933, 62.0276265 ], [ -6.7642716, 62.0276374 ], [ -6.7645354, 62.027704 ], [ -6.7647412, 62.0277054 ], [ -6.7649819, 62.0276836 ], [ -6.7654457, 62.0280344 ], [ -6.765784, 62.0279343 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64499110.0, "name": "Skraddaragøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7773405, 62.0267724 ], [ -6.7766497, 62.0262369 ], [ -6.7764294, 62.0262586 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 66206833.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7778998, 62.0167385 ], [ -6.7777707, 62.0166284 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 66206834.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7779237, 62.0167562 ], [ -6.7778998, 62.0167385 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827089.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7803796, 62.0197542 ], [ -6.7801015, 62.0198162 ], [ -6.7798138, 62.0198672 ], [ -6.7794718, 62.0199203 ], [ -6.7791433, 62.0199554 ], [ -6.7787695, 62.0199851 ], [ -6.7784116, 62.0200117 ], [ -6.7779308, 62.0200075 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827092.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7763746, 62.0166546 ], [ -6.7762785, 62.016667 ], [ -6.7762023, 62.0166686 ], [ -6.7761294, 62.0166717 ], [ -6.7760548, 62.0166802 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827093.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7765521, 62.0191899 ], [ -6.7764294, 62.0191501 ], [ -6.7763194, 62.0190985 ], [ -6.7762158, 62.0190286 ], [ -6.776096, 62.0189132 ], [ -6.7760572, 62.0188585 ], [ -6.7760442, 62.0188023 ], [ -6.7761488, 62.0187782 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827094.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7768039, 62.0169643 ], [ -6.7768074, 62.0170835 ], [ -6.776863, 62.0172092 ], [ -6.7770057, 62.0173332 ], [ -6.7771079, 62.01742 ], [ -6.7771344, 62.017441 ], [ -6.7772451, 62.0174559 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827095.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7758741, 62.0173194 ], [ -6.7758064, 62.0173406 ], [ -6.7757733, 62.0173764 ], [ -6.77577, 62.0174199 ], [ -6.7757634, 62.0174487 ], [ -6.7757219, 62.0174596 ], [ -6.775613, 62.0174601 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827097.0, "name": "Húsagøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7753765, 62.0149984 ], [ -6.775388, 62.014894 ], [ -6.7753554, 62.0148081 ], [ -6.7753467, 62.0147923 ], [ -6.7752563, 62.0146973 ], [ -6.775192, 62.0146181 ], [ -6.7750899, 62.0144947 ], [ -6.7750032, 62.0144056 ], [ -6.7751502, 62.0143668 ], [ -6.7753191, 62.0143253 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827099.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7764029, 62.0186493 ], [ -6.7766767, 62.0186224 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827100.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7757532, 62.0167098 ], [ -6.7756686, 62.0166987 ], [ -6.7755922, 62.0166823 ], [ -6.775429, 62.0166821 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827104.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7758527, 62.0190562 ], [ -6.7758079, 62.0191092 ], [ -6.775723, 62.0191151 ], [ -6.7755915, 62.0191092 ], [ -6.775442, 62.0190907 ], [ -6.7753847, 62.0190649 ], [ -6.775408, 62.0189997 ], [ -6.7755226, 62.0187354 ], [ -6.7759121, 62.0187651 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827105.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7760442, 62.0188023 ], [ -6.7759121, 62.0187651 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827107.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7752563, 62.0146973 ], [ -6.7742284, 62.0149333 ], [ -6.7743376, 62.015029 ], [ -6.7753554, 62.0148081 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827108.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7780683, 62.0147973 ], [ -6.7781118, 62.0147479 ], [ -6.7781234, 62.014716 ], [ -6.7781267, 62.0146701 ], [ -6.7781135, 62.0146328 ], [ -6.7780787, 62.014597 ], [ -6.7780289, 62.0145597 ], [ -6.7779047, 62.0145076 ], [ -6.7777969, 62.0144695 ], [ -6.7776511, 62.0143991 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827110.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7733382, 62.0141153 ], [ -6.7731128, 62.0141563 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827112.0, "name": "Niels Finsens gøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7758368, 62.0125702 ], [ -6.7759818, 62.0126135 ], [ -6.7761408, 62.012689 ], [ -6.7762024, 62.0127676 ], [ -6.7764042, 62.0130813 ], [ -6.776442, 62.0132198 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827113.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7742284, 62.0149333 ], [ -6.7739006, 62.0146393 ], [ -6.7733382, 62.0141153 ], [ -6.773237, 62.0139254 ], [ -6.7732653, 62.0138495 ], [ -6.7734353, 62.013783 ], [ -6.7736538, 62.0137374 ], [ -6.7738682, 62.0137336 ], [ -6.7740301, 62.0137507 ], [ -6.7741817, 62.0138686 ], [ -6.7743011, 62.0139387 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827114.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7770057, 62.0173332 ], [ -6.7767939, 62.0173249 ], [ -6.7763166, 62.0173319 ], [ -6.7759454, 62.0173404 ], [ -6.7758741, 62.0173194 ], [ -6.7758476, 62.017272 ], [ -6.7757532, 62.0167098 ], [ -6.7757979, 62.0166919 ], [ -6.7759288, 62.0166833 ], [ -6.7760548, 62.0166802 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827115.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7767836, 62.0167883 ], [ -6.7768069, 62.0168399 ], [ -6.7768039, 62.0169643 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827116.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7764294, 62.0191501 ], [ -6.7763497, 62.0191506 ], [ -6.7762647, 62.0191535 ], [ -6.7762129, 62.0191671 ], [ -6.7761839, 62.0191953 ], [ -6.7761819, 62.0192293 ], [ -6.7762026, 62.0192633 ], [ -6.7762337, 62.0193041 ], [ -6.7762751, 62.0193401 ], [ -6.7763414, 62.0194042 ], [ -6.7763683, 62.0194431 ], [ -6.7763517, 62.0194781 ], [ -6.7763227, 62.0195043 ], [ -6.7762958, 62.0195316 ], [ -6.7762431, 62.0195659 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827117.0, "name": null, "ref": null, "type": "steps", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7761488, 62.0187782 ], [ -6.7762682, 62.0187255 ], [ -6.7764029, 62.0186493 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827118.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7765847, 62.0166249 ], [ -6.7764923, 62.0166561 ], [ -6.7763746, 62.0166546 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827120.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7764029, 62.0186493 ], [ -6.7752658, 62.0186123 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827122.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7774951, 62.0139714 ], [ -6.777609, 62.0140603 ], [ -6.7777029, 62.01415 ], [ -6.7777935, 62.0141986 ], [ -6.7778323, 62.0142563 ], [ -6.7778, 62.0143231 ], [ -6.7777255, 62.0143657 ], [ -6.7776511, 62.0143991 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 67827123.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7807381, 62.019982 ], [ -6.7803796, 62.0197542 ], [ -6.7801298, 62.0195871 ], [ -6.7798614, 62.019425 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72133173.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.773902, 61.9928529 ], [ -6.7740598, 61.9928396 ], [ -6.7743587, 61.9928242 ], [ -6.774744, 61.9927979 ], [ -6.7748982, 61.9927431 ], [ -6.7750616, 61.9926685 ], [ -6.7754096, 61.9928516 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860011.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7843096, 62.006511 ], [ -6.7842005, 62.0064136 ], [ -6.7840705, 62.0062875 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860012.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7796822, 62.0060874 ], [ -6.7800592, 62.005898 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860015.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7971117, 62.0032449 ], [ -6.7972405, 62.0033715 ], [ -6.7967423, 62.0034798 ], [ -6.7969914, 62.0037309 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860019.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8006175, 62.0060089 ], [ -6.8010653, 62.0060467 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860021.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7794409, 62.005976 ], [ -6.7797224, 62.0058338 ], [ -6.7797207, 62.0057556 ], [ -6.7793925, 62.0056132 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860022.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7844943, 62.0063686 ], [ -6.7842005, 62.0064136 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860024.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8010195, 62.0069505 ], [ -6.8010967, 62.0068127 ], [ -6.8002918, 62.0067152 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860025.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7952589, 62.0036308 ], [ -6.7955655, 62.0039032 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860026.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8003699, 62.0068998 ], [ -6.8002541, 62.0068332 ], [ -6.8001343, 62.0067937 ], [ -6.8000168, 62.0067802 ], [ -6.7998572, 62.0067656 ], [ -6.7996243, 62.0067437 ], [ -6.7994802, 62.0067177 ], [ -6.7993405, 62.0066886 ], [ -6.7991831, 62.006674 ], [ -6.7989924, 62.0066532 ], [ -6.7988283, 62.006597 ], [ -6.7986132, 62.0065574 ], [ -6.7984536, 62.0065148 ], [ -6.7983864, 62.0065045 ], [ -6.7983072, 62.0064865 ], [ -6.7982229, 62.0064612 ], [ -6.7981328, 62.0064472 ], [ -6.7980376, 62.0064346 ], [ -6.797962, 62.0064281 ], [ -6.7978857, 62.0064118 ], [ -6.7978334, 62.0063896 ], [ -6.797816, 62.0063695 ], [ -6.7977535, 62.0063456 ], [ -6.797691, 62.006332 ], [ -6.7976263, 62.0063282 ], [ -6.7975776, 62.0063166 ], [ -6.7975108, 62.0062992 ], [ -6.7974505, 62.0062955 ], [ -6.7973924, 62.0062873 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860040.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7736579, 62.0116808 ], [ -6.7741282, 62.0121224 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860041.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8002556, 62.0071211 ], [ -6.8008974, 62.0071769 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860043.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7793754, 62.0059447 ], [ -6.7790488, 62.0060972 ], [ -6.7789122, 62.0060927 ], [ -6.7786811, 62.0059762 ], [ -6.7790542, 62.005794 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860046.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -6.78287, 62.0053899 ], [ -6.7826271, 62.0054893 ] ], [ [ -6.7826271, 62.0054893 ], [ -6.7825034, 62.00554 ], [ -6.7819811, 62.0052722 ], [ -6.7821006, 62.0052269 ], [ -6.7826271, 62.0054893 ] ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 72860049.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7940371, 62.0034671 ], [ -6.7942241, 62.0036634 ], [ -6.7943617, 62.0036894 ], [ -6.794859, 62.0035882 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 73466027.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7912938, 62.0286201 ], [ -6.7907423, 62.0288321 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484324.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7601547, 62.0088928 ], [ -6.7605507, 62.0090566 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484325.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.76529, 62.0079954 ], [ -6.765122, 62.0078792 ], [ -6.7650891, 62.0078532 ], [ -6.7649401, 62.0079028 ], [ -6.7648362, 62.0079304 ], [ -6.7646925, 62.0079654 ], [ -6.7645972, 62.0079654 ], [ -6.7644789, 62.0079455 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484328.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7640822, 62.0067005 ], [ -6.7639644, 62.0066176 ], [ -6.7636845, 62.0067047 ], [ -6.7632416, 62.0068424 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484330.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7619514, 62.0085812 ], [ -6.7621084, 62.0086605 ], [ -6.7619023, 62.0088011 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484332.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7633756, 62.0064412 ], [ -6.7630118, 62.0065744 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484337.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7617364, 62.0086699 ], [ -6.7615972, 62.0085991 ], [ -6.7615875, 62.0085594 ], [ -6.7618369, 62.0084365 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484338.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7650891, 62.0078532 ], [ -6.765025, 62.0077817 ], [ -6.7649678, 62.0076817 ], [ -6.7648812, 62.0075581 ], [ -6.7647877, 62.0075264 ], [ -6.7646596, 62.0075419 ], [ -6.7641434, 62.0077263 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484340.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.767041, 62.0087429 ], [ -6.7674851, 62.0084594 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484345.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7631137, 62.0083631 ], [ -6.7632751, 62.0082901 ], [ -6.7634753, 62.0082367 ], [ -6.763721, 62.0081759 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484346.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7601396, 62.0090163 ], [ -6.7599313, 62.0091105 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484347.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.763715, 62.0065046 ], [ -6.7631152, 62.0066946 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484349.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7642774, 62.0077951 ], [ -6.7642924, 62.0078743 ], [ -6.7644032, 62.0079824 ], [ -6.7645054, 62.008084 ], [ -6.7646526, 62.0082222 ], [ -6.7647548, 62.0082921 ], [ -6.7648812, 62.0083344 ], [ -6.7650752, 62.0083759 ], [ -6.7653007, 62.0084033 ], [ -6.7657533, 62.0084631 ], [ -6.7662101, 62.0084424 ], [ -6.7666173, 62.0083394 ], [ -6.7668455, 62.0082984 ], [ -6.7668001, 62.0080034 ], [ -6.7666734, 62.0079024 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484350.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7652634, 62.0085137 ], [ -6.7651537, 62.0085542 ], [ -6.765029, 62.0085559 ], [ -6.764835, 62.0085494 ], [ -6.7645562, 62.0084965 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484359.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7636845, 62.0067047 ], [ -6.7638778, 62.0068444 ], [ -6.7633816, 62.0069978 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 74484360.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7605217, 62.0091992 ], [ -6.7601645, 62.0090436 ], [ -6.7601396, 62.0090163 ], [ -6.7601143, 62.0089884 ], [ -6.7601299, 62.0089225 ], [ -6.7601547, 62.0088928 ], [ -6.760213, 62.0088104 ], [ -6.7603013, 62.0087331 ], [ -6.760549, 62.0086388 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 75905153.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7646291, 62.0222114 ], [ -6.7642612, 62.0226188 ], [ -6.7654746, 62.022828 ], [ -6.7658321, 62.0225098 ], [ -6.7658625, 62.0224617 ], [ -6.7646291, 62.0222114 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 75905154.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7664905, 62.022055 ], [ -6.7662739, 62.022045 ], [ -6.7658367, 62.0219744 ], [ -6.7649301, 62.0219694 ], [ -6.7647259, 62.0221375 ], [ -6.7644261, 62.0220781 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 75905163.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7658321, 62.0225098 ], [ -6.7659692, 62.0225089 ], [ -6.7661986, 62.0224905 ], [ -6.7665211, 62.0221593 ], [ -6.7664905, 62.022055 ], [ -6.7664509, 62.02192 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 75905165.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7643505, 62.0221537 ], [ -6.7646291, 62.0222114 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 92731012.0, "name": "Hannugøta", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7761785, 61.9976612 ], [ -6.7764145, 61.9974418 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 92731013.0, "name": "Hannugøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.775933, 61.9978883 ], [ -6.7762329, 61.9976749 ], [ -6.7761785, 61.9976612 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 103813307.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7738092, 62.010603 ], [ -6.7737006, 62.0106329 ], [ -6.7737782, 62.0106863 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 103813308.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7737164, 62.0107727 ], [ -6.7735466, 62.0106405 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 108575099.0, "name": "Kráargøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7783996, 61.9970726 ], [ -6.7789944, 61.9964556 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458308.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.784705, 61.99904 ], [ -6.7847939, 61.9991462 ], [ -6.7848691, 61.9991918 ], [ -6.784928, 61.9992689 ], [ -6.7849777, 61.9993487 ], [ -6.7849986, 61.9993905 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458309.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7849986, 61.9993905 ], [ -6.7850059, 61.9994729 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458310.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7821763, 61.9996425 ], [ -6.7821924, 61.9995928 ], [ -6.7822146, 61.9995567 ], [ -6.7822146, 61.9995229 ], [ -6.7821907, 61.9994916 ], [ -6.7821547, 61.9994611 ], [ -6.7821308, 61.9994258 ], [ -6.7821496, 61.9994025 ], [ -6.7821838, 61.9993752 ], [ -6.7822847, 61.999327 ], [ -6.7823617, 61.9993101 ], [ -6.7824387, 61.9993093 ], [ -6.7825054, 61.9993246 ], [ -6.7826132, 61.9993511 ], [ -6.7827141, 61.9993768 ], [ -6.7828304, 61.9994201 ], [ -6.782904, 61.9994547 ], [ -6.7829536, 61.9994996 ], [ -6.783034, 61.9995422 ], [ -6.7831468, 61.9995687 ], [ -6.7832939, 61.9995824 ], [ -6.7833914, 61.999592 ], [ -6.7835693, 61.9996 ], [ -6.7836617, 61.9996209 ], [ -6.7837387, 61.9996297 ], [ -6.7838943, 61.9996081 ], [ -6.783997, 61.9995735 ], [ -6.7840551, 61.9995366 ], [ -6.7841424, 61.9995117 ], [ -6.78431, 61.999478 ], [ -6.7844468, 61.999445 ], [ -6.7844896, 61.9994161 ], [ -6.784517, 61.9993856 ], [ -6.7845939, 61.9993583 ], [ -6.7846863, 61.9993567 ], [ -6.7847753, 61.9993495 ], [ -6.7849777, 61.9993487 ], [ -6.7849959, 61.9993487 ], [ -6.7850917, 61.9993519 ], [ -6.7853568, 61.9993318 ], [ -6.7856014, 61.9992933 ], [ -6.7858409, 61.9992595 ], [ -6.7861013, 61.999225 ], [ -6.7862857, 61.9991948 ], [ -6.7864969, 61.9991622 ], [ -6.7866332, 61.9991371 ], [ -6.7867054, 61.9991208 ], [ -6.7867748, 61.9990706 ], [ -6.7867962, 61.9990204 ], [ -6.7867802, 61.9989652 ], [ -6.7867668, 61.9989238 ], [ -6.7868069, 61.9988849 ], [ -6.7868951, 61.9988234 ], [ -6.7870341, 61.9987293 ], [ -6.7871597, 61.9986703 ], [ -6.7872399, 61.9986239 ], [ -6.7873308, 61.9985624 ], [ -6.7874403, 61.9984859 ], [ -6.7875045, 61.9984256 ], [ -6.7875954, 61.9983529 ], [ -6.7877343, 61.9982901 ], [ -6.7879, 61.9982487 ], [ -6.7880444, 61.9982148 ], [ -6.7882555, 61.9981923 ], [ -6.7884506, 61.9981747 ], [ -6.7887125, 61.9981621 ], [ -6.788913, 61.9981684 ], [ -6.7891535, 61.9981496 ], [ -6.7893005, 61.9981245 ], [ -6.7895357, 61.9980894 ], [ -6.7897362, 61.9980781 ], [ -6.7898832, 61.9980718 ], [ -6.790081, 61.9980668 ], [ -6.7902974, 61.9980592 ], [ -6.7904845, 61.9980592 ], [ -6.7906609, 61.998063 ], [ -6.7908266, 61.998058 ], [ -6.7909389, 61.9980341 ], [ -6.7910565, 61.997999 ], [ -6.7911874, 61.9979413 ], [ -6.7913024, 61.997871 ], [ -6.7914467, 61.9977945 ], [ -6.7915937, 61.9977255 ], [ -6.7917781, 61.9976564 ], [ -6.7918797, 61.9975874 ], [ -6.7918904, 61.9975335 ], [ -6.7919278, 61.9974757 ], [ -6.7919679, 61.9973992 ], [ -6.792016, 61.9973427 ], [ -6.7920775, 61.9973176 ], [ -6.7922218, 61.9973026 ], [ -6.7923608, 61.9973001 ], [ -6.7925719, 61.9973176 ], [ -6.7927697, 61.9973252 ], [ -6.7930156, 61.997339 ], [ -6.7933256, 61.9973691 ], [ -6.7935474, 61.9973791 ], [ -6.7937505, 61.9973904 ], [ -6.793959, 61.9973917 ], [ -6.7940927, 61.9973942 ], [ -6.794261, 61.997418 ], [ -6.7944535, 61.997423 ], [ -6.7946138, 61.9974406 ], [ -6.7947207, 61.9974494 ], [ -6.7948544, 61.9974356 ], [ -6.7950067, 61.9974017 ], [ -6.7951163, 61.9973465 ], [ -6.7952633, 61.9972423 ], [ -6.7954156, 61.9971758 ], [ -6.7955386, 61.9971357 ], [ -6.7957524, 61.9970729 ], [ -6.7959261, 61.9970089 ], [ -6.7961399, 61.9969587 ], [ -6.796327, 61.996896 ], [ -6.7964526, 61.996832 ], [ -6.7966103, 61.9967479 ], [ -6.7967814, 61.9966664 ], [ -6.7969097, 61.9965898 ], [ -6.7970914, 61.9965208 ], [ -6.7972838, 61.9964367 ], [ -6.7974228, 61.996389 ], [ -6.7976046, 61.9963564 ], [ -6.7977034, 61.9963401 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458311.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7882555, 61.9981923 ], [ -6.7880481, 61.9981643 ], [ -6.7877391, 61.9981232 ], [ -6.7873089, 61.9980702 ], [ -6.7870457, 61.9980725 ], [ -6.7869014, 61.9981069 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458312.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7850059, 61.9994729 ], [ -6.7849889, 61.9995123 ], [ -6.7849966, 61.9995328 ], [ -6.7850272, 61.9995606 ], [ -6.7850546, 61.9995847 ], [ -6.7851148, 61.9996002 ], [ -6.785175, 61.9996197 ], [ -6.7852265, 61.9996356 ], [ -6.785314, 61.9996423 ], [ -6.7854914, 61.9996654 ], [ -6.7855888, 61.9997029 ], [ -6.7856895, 61.9997353 ], [ -6.7857465, 61.9997656 ], [ -6.7859238, 61.9998484 ], [ -6.7860453, 61.9999306 ], [ -6.7861581, 62.0000118 ], [ -6.7863365, 62.0001367 ], [ -6.7865303, 62.0002575 ], [ -6.7866606, 62.0003382 ], [ -6.7868342, 62.0002916 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458314.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7920775, 61.9973176 ], [ -6.7907155, 61.9968262 ], [ -6.7905007, 61.9967103 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458315.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7872399, 61.9986239 ], [ -6.7872922, 61.9984584 ], [ -6.7873048, 61.9983467 ], [ -6.7873006, 61.9982035 ], [ -6.7873089, 61.9980702 ], [ -6.7873131, 61.9978506 ], [ -6.787334, 61.9976506 ], [ -6.7872478, 61.9974736 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111458316.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7866606, 62.0003382 ], [ -6.7858005, 62.0004815 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 111602305.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7665904, 62.0161987 ], [ -6.7667069, 62.0162052 ], [ -6.7668776, 62.0162248 ], [ -6.7669729, 62.0162248 ], [ -6.7671238, 62.0162136 ], [ -6.7673601, 62.0161652 ], [ -6.7675546, 62.0161223 ], [ -6.7676718, 62.016099 ], [ -6.7677969, 62.0160683 ], [ -6.767922, 62.0160534 ], [ -6.7679914, 62.0160524 ], [ -6.768053, 62.016059 ], [ -6.7681145, 62.0160506 ], [ -6.7681622, 62.016031 ], [ -6.7681979, 62.0160152 ], [ -6.7682615, 62.0159937 ], [ -6.7683329, 62.0159555 ], [ -6.7684254, 62.0159367 ], [ -6.7685831, 62.0159257 ], [ -6.7686656, 62.0159229 ], [ -6.7688329, 62.0159239 ], [ -6.7689995, 62.0159433 ], [ -6.7692, 62.0159641 ], [ -6.7693789, 62.0159687 ], [ -6.7696463, 62.0159724 ], [ -6.7697799, 62.0159881 ], [ -6.7698554, 62.0159982 ], [ -6.7699523, 62.0160023 ], [ -6.7700982, 62.0160141 ], [ -6.7702077, 62.0160413 ], [ -6.770253, 62.0160472 ], [ -6.7703197, 62.0160495 ], [ -6.7704015, 62.0160383 ], [ -6.7704694, 62.0160165 ], [ -6.7705802, 62.0160029 ], [ -6.7706506, 62.0159993 ], [ -6.7707261, 62.0160058 ], [ -6.7708872, 62.0159846 ], [ -6.7709765, 62.0159834 ], [ -6.771065, 62.0159952 ], [ -6.7711036, 62.0160011 ], [ -6.7711589, 62.0160041 ], [ -6.7712495, 62.0159781 ], [ -6.7712885, 62.0159592 ], [ -6.7713565, 62.0159456 ], [ -6.7714232, 62.0159096 ], [ -6.7715339, 62.01585 ], [ -6.7716308, 62.015788 ], [ -6.7717063, 62.0157337 ], [ -6.7717679, 62.0157036 ], [ -6.7718459, 62.0156805 ], [ -6.7719176, 62.0156681 ], [ -6.772017, 62.0156563 ], [ -6.7721278, 62.0156569 ], [ -6.7722486, 62.015674 ], [ -6.7723052, 62.0156994 ], [ -6.772397, 62.0157366 ], [ -6.7724323, 62.0157484 ], [ -6.7724989, 62.0157549 ], [ -6.7725983, 62.0157508 ], [ -6.7727242, 62.0157284 ], [ -6.7728814, 62.0157089 ], [ -6.7730324, 62.0156829 ], [ -6.7731255, 62.0156557 ], [ -6.7732199, 62.0156103 ], [ -6.773269, 62.0155654 ], [ -6.7733407, 62.0155087 ], [ -6.7733679, 62.0154524 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 112731374.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7691109, 62.0161892 ], [ -6.7691091, 62.0161669 ], [ -6.7690538, 62.0161415 ], [ -6.7689896, 62.016115 ], [ -6.7689493, 62.0160848 ], [ -6.7689305, 62.016053 ], [ -6.7689292, 62.0160282 ], [ -6.7689493, 62.0159986 ], [ -6.7689733, 62.0159792 ], [ -6.7689995, 62.0159433 ], [ -6.7690039, 62.01591 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 112731375.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7658728, 62.0178594 ], [ -6.7660568, 62.0178597 ], [ -6.7661767, 62.0178671 ], [ -6.7663222, 62.0178855 ], [ -6.766505, 62.0178873 ], [ -6.7666721, 62.0178883 ], [ -6.7667646, 62.0178901 ], [ -6.7668707, 62.0179067 ], [ -6.7669572, 62.0179076 ], [ -6.7670673, 62.0178818 ], [ -6.767142, 62.0178615 ], [ -6.7672698, 62.0178541 ], [ -6.7674546, 62.0178265 ], [ -6.7675745, 62.0178209 ], [ -6.7676964, 62.0178209 ], [ -6.7678478, 62.0177923 ], [ -6.7678871, 62.017773 ], [ -6.7679304, 62.0177388 ], [ -6.7679854, 62.0176909 ], [ -6.7681073, 62.0176364 ], [ -6.7681663, 62.0175986 ], [ -6.7682685, 62.0175553 ], [ -6.7683609, 62.0175193 ], [ -6.7684455, 62.0174861 ], [ -6.7685418, 62.0174593 ], [ -6.7686362, 62.0174335 ], [ -6.7685949, 62.0173819 ], [ -6.7685573, 62.0173305 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 131124171.0, "name": "Oyggjarvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 80 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7901624, 62.0182087 ], [ -6.7900659, 62.0180749 ], [ -6.7898878, 62.0177588 ], [ -6.7897365, 62.0174115 ], [ -6.7896741, 62.0170108 ], [ -6.7897008, 62.0166324 ], [ -6.7897454, 62.0164365 ], [ -6.7899234, 62.0160314 ], [ -6.7900481, 62.0158355 ], [ -6.7901906, 62.0156708 ], [ -6.7903375, 62.0155194 ], [ -6.7905378, 62.0153547 ], [ -6.7906476, 62.0152823 ], [ -6.7907337, 62.0152256 ], [ -6.7909519, 62.0150964 ], [ -6.7911923, 62.0149985 ], [ -6.7914639, 62.0148961 ], [ -6.7917488, 62.0148204 ], [ -6.7920738, 62.0147269 ], [ -6.7947495, 62.0142995 ], [ -6.7974697, 62.0138454 ], [ -6.7981509, 62.0137475 ], [ -6.798507, 62.0137208 ], [ -6.7987964, 62.0137208 ], [ -6.7991659, 62.0137119 ], [ -6.79958, 62.0137386 ], [ -6.799945, 62.0137786 ], [ -6.8020331, 62.0141081 ], [ -6.8024872, 62.0141704 ], [ -6.8032039, 62.0142327 ], [ -6.80417, 62.0142773 ], [ -6.8067701, 62.0143619 ], [ -6.8078742, 62.014393 ], [ -6.8088136, 62.0143886 ], [ -6.8094235, 62.014353 ], [ -6.8103807, 62.0142728 ], [ -6.8129807, 62.0139656 ], [ -6.8140581, 62.0138499 ], [ -6.8148951, 62.0138009 ], [ -6.8154471, 62.0137964 ], [ -6.8162708, 62.0137964 ], [ -6.816805, 62.0138276 ], [ -6.8176108, 62.0138944 ], [ -6.8181317, 62.0139612 ], [ -6.8188663, 62.0140725 ], [ -6.8195564, 62.014206 ], [ -6.8200817, 62.0143307 ], [ -6.8208119, 62.0145444 ], [ -6.8218314, 62.0148961 ], [ -6.8236122, 62.0155327 ], [ -6.826092, 62.0164118 ], [ -6.8287677, 62.0173581 ], [ -6.8309448, 62.0181283 ], [ -6.8313588, 62.0183019 ], [ -6.8317461, 62.0185023 ], [ -6.8321228027, 62.018730280830262 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 131125018.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.826092, 62.0164118 ], [ -6.8254797, 62.0164488 ], [ -6.825027, 62.016414 ], [ -6.8245579, 62.0164063 ], [ -6.8240806, 62.0164565 ], [ -6.8235621, 62.0166187 ], [ -6.8229284, 62.016804 ], [ -6.8222864, 62.0170396 ], [ -6.8213893, 62.0173408 ], [ -6.8203935, 62.0173756 ], [ -6.8197021, 62.0174142 ], [ -6.8185417, 62.0177347 ], [ -6.8178668, 62.0179471 ], [ -6.8166652, 62.0185263 ], [ -6.8155953, 62.0190283 ], [ -6.8145501, 62.0194414 ], [ -6.8126111, 62.0201529 ], [ -6.8120393, 62.020596 ], [ -6.8120679, 62.0213339 ], [ -6.811758, 62.0219723 ], [ -6.8112211, 62.0224856 ], [ -6.8108669, 62.0228902 ], [ -6.8107553, 62.02342 ], [ -6.8106481, 62.0241736 ], [ -6.810452, 62.0249131 ], [ -6.8107115, 62.0253827 ], [ -6.8116399, 62.026105 ], [ -6.8123608, 62.0266191 ], [ -6.8134659, 62.0269678 ], [ -6.8145711, 62.0274202 ], [ -6.8160579, 62.0279857 ], [ -6.8174444, 62.0283815 ], [ -6.8183285, 62.0286831 ], [ -6.8188882, 62.0289962 ], [ -6.8191082, 62.0292785 ], [ -6.8189915, 62.029616 ], [ -6.8182, 62.0310549 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188841.0, "name": "Fútalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7615344, 62.017066 ], [ -6.7608907, 62.0169014 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188842.0, "name": "Fútalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7608907, 62.0169014 ], [ -6.7605162, 62.0168034 ], [ -6.7600527, 62.0166747 ], [ -6.7587492, 62.016329 ], [ -6.7586551, 62.0163037 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188843.0, "name": "Hoyvíksvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7639597, 62.0225159 ], [ -6.7642727, 62.0222315 ], [ -6.7643505, 62.0221537 ], [ -6.7644261, 62.0220781 ], [ -6.7644968, 62.0220075 ], [ -6.7646223, 62.0218216 ], [ -6.7647122, 62.0216887 ], [ -6.7649017, 62.0212579 ], [ -6.7652291, 62.0202326 ], [ -6.7653928, 62.0196295 ], [ -6.7654647, 62.0193241 ], [ -6.7656494, 62.0185411 ], [ -6.7656881, 62.0182822 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188844.0, "name": "Hoyvíksvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7656881, 62.0182822 ], [ -6.7657892, 62.017777 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188845.0, "name": "Hoyvíksvegur", "ref": null, "type": "unclassified", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7657892, 62.017777 ], [ -6.7658097, 62.0177342 ], [ -6.7658925, 62.0175616 ], [ -6.7660504, 62.0172627 ], [ -6.7662437, 62.0170226 ], [ -6.7662619, 62.0170097 ], [ -6.7664181, 62.016812 ], [ -6.766556, 62.0165622 ], [ -6.7665904, 62.0163726 ], [ -6.7665904, 62.0162427 ], [ -6.7665904, 62.0161987 ], [ -6.7665904, 62.0161658 ], [ -6.7666077, 62.0157609 ], [ -6.7667197, 62.0154852 ], [ -6.7672751, 62.0147124 ], [ -6.7674004, 62.0145374 ], [ -6.7675917, 62.014271 ], [ -6.7676588, 62.0141497 ], [ -6.7677364, 62.0138912 ], [ -6.7677881, 62.0135466 ], [ -6.7677916, 62.0134602 ], [ -6.7678103, 62.0133928 ], [ -6.767872, 62.0133002 ], [ -6.7679823, 62.0132565 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188846.0, "name": "Jónas Broncks gøta", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7670149, 62.0104839 ], [ -6.7667238, 62.0103324 ], [ -6.7664979, 62.0102124 ], [ -6.7663547, 62.0101254 ], [ -6.7662839, 62.0100824 ], [ -6.7660729, 62.0099624 ], [ -6.7658659, 62.0098224 ], [ -6.765682, 62.0096873 ], [ -6.76552, 62.0095927 ], [ -6.7654789, 62.0095624 ], [ -6.7652699, 62.0094424 ], [ -6.7650689, 62.0093224 ], [ -6.7648379, 62.0092024 ], [ -6.7647293, 62.0091335 ], [ -6.7646489, 62.0090824 ], [ -6.7644239, 62.0089624 ], [ -6.7641874, 62.0088519 ], [ -6.7639858, 62.0087496 ], [ -6.7637487, 62.0085998 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188847.0, "name": "Stoffalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7608907, 62.0169014 ], [ -6.7610309, 62.01676 ], [ -6.761141, 62.01662 ], [ -6.76124, 62.01647 ], [ -6.7613309, 62.01631 ], [ -6.76151, 62.01597 ], [ -6.7616059, 62.0158 ], [ -6.7617199, 62.0156299 ], [ -6.761861, 62.0154599 ], [ -6.7620181, 62.0153387 ], [ -6.762187, 62.01524 ], [ -6.762341, 62.01511 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188848.0, "name": "Stoffalág", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.762341, 62.01511 ], [ -6.7626802, 62.0152002 ], [ -6.762898, 62.015232 ], [ -6.7629866, 62.0152607 ], [ -6.7635169, 62.0153396 ], [ -6.7637719, 62.0153588 ], [ -6.7639682, 62.0153507 ], [ -6.7644262, 62.0152362 ], [ -6.7649347, 62.0149164 ], [ -6.7655714, 62.0145327 ], [ -6.7663975, 62.0142137 ], [ -6.7670437, 62.0141728 ], [ -6.7675917, 62.014271 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188849.0, "name": "Tórgarðsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7619395, 62.0141633 ], [ -6.7618318, 62.014194 ], [ -6.7617514, 62.0142276 ], [ -6.761626, 62.0142799 ], [ -6.7613899, 62.01437 ], [ -6.7612601, 62.0144015 ], [ -6.761167, 62.0144499 ], [ -6.760933, 62.0144799 ], [ -6.7606849, 62.01446 ], [ -6.760385, 62.01442 ], [ -6.760061, 62.01439 ], [ -6.7597189, 62.01434 ], [ -6.7593749, 62.01427 ], [ -6.7592479, 62.014245 ], [ -6.7590739, 62.0141799 ], [ -6.758779, 62.0140799 ], [ -6.7586913, 62.0140474 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188850.0, "name": "Tórgarðsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7586913, 62.0140474 ], [ -6.7584719, 62.01396 ], [ -6.75819, 62.0138599 ], [ -6.7579639, 62.01377 ], [ -6.757812, 62.01371 ], [ -6.7577157, 62.0136654 ], [ -6.7576069, 62.0136295 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188851.0, "name": "Yviri við Strond", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7622376, 62.008462 ], [ -6.7619514, 62.0085812 ], [ -6.7618562, 62.0086209 ], [ -6.7617364, 62.0086699 ], [ -6.7613899, 62.0088117 ], [ -6.761251, 62.0088736 ], [ -6.7605217, 62.0091992 ], [ -6.760203, 62.0093415 ], [ -6.7595849, 62.0096312 ], [ -6.7594047, 62.0097831 ], [ -6.7592952, 62.0099491 ], [ -6.7592316, 62.0102175 ], [ -6.7592387, 62.0107156 ], [ -6.7592034, 62.0111041 ], [ -6.7591433, 62.0114079 ], [ -6.7590928, 62.0116462 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188852.0, "name": "Yviri við Strond", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7576069, 62.0136295 ], [ -6.7573878, 62.0137534 ], [ -6.7571052, 62.0139512 ], [ -6.7558371, 62.0149897 ], [ -6.7556322, 62.015191 ], [ -6.7555474, 62.0153041 ], [ -6.7554521, 62.0155301 ], [ -6.755385, 62.0158763 ], [ -6.7553673, 62.0161024 ], [ -6.7553814, 62.0164132 ], [ -6.7554062, 62.0166075 ], [ -6.7554945, 62.016936 ], [ -6.7555934, 62.0171585 ], [ -6.7564764, 62.0187551 ], [ -6.7569286, 62.0194333 ], [ -6.7577481, 62.0204683 ], [ -6.7579318, 62.020712 ], [ -6.7586453, 62.0219307 ], [ -6.7588113, 62.0221532 ], [ -6.7589985, 62.0223934 ], [ -6.7592352, 62.0226195 ], [ -6.7595531, 62.0228349 ], [ -6.7599487, 62.0230327 ], [ -6.7601183, 62.0230963 ], [ -6.760581, 62.0232341 ], [ -6.7611532, 62.0234036 ], [ -6.7625944, 62.0237533 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144188853.0, "name": "Yviri við Strond", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7590928, 62.0116462 ], [ -6.7588961, 62.0124959 ], [ -6.7587548, 62.0128173 ], [ -6.7585676, 62.0130328 ], [ -6.7581508, 62.0133224 ], [ -6.7576069, 62.0136295 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144528158.0, "name": "Eystara Bryggja", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7640499, 62.0077405 ], [ -6.7635446, 62.0071787 ], [ -6.7633816, 62.0069978 ], [ -6.7632416, 62.0068424 ], [ -6.7631845, 62.0067791 ], [ -6.7631152, 62.0066946 ], [ -6.7630118, 62.0065744 ], [ -6.7627997, 62.0063097 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144528159.0, "name": "Eystari Ringvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7678318, 62.0226743 ], [ -6.7680038, 62.0226293 ], [ -6.7683675, 62.0225269 ], [ -6.7687744, 62.0224121 ], [ -6.7692119, 62.0222899 ], [ -6.769664, 62.02218 ], [ -6.7701349, 62.0221 ], [ -6.770628, 62.02204 ], [ -6.771128, 62.0219999 ], [ -6.771622, 62.0219599 ], [ -6.772112, 62.0219299 ], [ -6.772589, 62.02189 ], [ -6.7730519, 62.02185 ], [ -6.773505, 62.0217999 ], [ -6.77395, 62.02174 ], [ -6.774384, 62.02169 ], [ -6.774799, 62.02164 ], [ -6.775175, 62.02156 ], [ -6.7754404, 62.021477 ], [ -6.7754949, 62.02146 ], [ -6.7758059, 62.021374 ], [ -6.7760109, 62.0212684 ], [ -6.7761239, 62.0211869 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144528161.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7647344, 62.0081391 ], [ -6.7647929, 62.0081848 ], [ -6.7648622, 62.0082019 ], [ -6.764947, 62.0082011 ], [ -6.765044, 62.0081808 ], [ -6.7651462, 62.0081523 ], [ -6.7652813, 62.0081052 ], [ -6.7653904, 62.0080735 ], [ -6.7653921, 62.0080491 ], [ -6.76529, 62.0079954 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144528162.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7647344, 62.0081391 ], [ -6.76529, 62.0079954 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144528164.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7644789, 62.0079455 ], [ -6.7646481, 62.0080726 ], [ -6.7647344, 62.0081391 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144715707.0, "name": "Hvítanesvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 40 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7687854, 62.0277381 ], [ -6.7680508, 62.0279339 ], [ -6.7671693, 62.0282144 ], [ -6.7668487, 62.0283346 ], [ -6.7667419, 62.0283881 ], [ -6.7662699, 62.0286641 ], [ -6.7660073, 62.0287887 ], [ -6.7654418, 62.0289891 ], [ -6.7651436, 62.0291048 ], [ -6.7646805, 62.0293319 ], [ -6.7637701, 62.0298217 ], [ -6.7633701, 62.0300571 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144715708.0, "name": "Hvítanesvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7633701, 62.0300571 ], [ -6.763215, 62.0301446 ], [ -6.7627751, 62.0304004 ], [ -6.7625436, 62.0306052 ], [ -6.7620939, 62.0310949 ], [ -6.7619336, 62.0313309 ], [ -6.761809, 62.031598 ], [ -6.7617155, 62.0319853 ], [ -6.761711, 62.0322524 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144715709.0, "name": "Hvítanesvegur", "ref": null, "type": "primary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 80 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.771136, 62.041785 ], [ -6.7724978, 62.0424763 ], [ -6.7734819, 62.0429081 ], [ -6.7743668, 62.043255 ], [ -6.775457, 62.043609 ], [ -6.7767879, 62.0439275 ], [ -6.7777861, 62.0441187 ], [ -6.7793861, 62.044324 ], [ -6.7806675, 62.0445364 ], [ -6.7814533, 62.0447134 ], [ -6.7820833, 62.0449045 ], [ -6.782678, 62.0451664 ], [ -6.7831877, 62.0454284 ], [ -6.783655, 62.045754 ], [ -6.7837983, 62.0458973 ], [ -6.784108, 62.0462071 ], [ -6.784731, 62.0468726 ], [ -6.7853469, 62.0473752 ], [ -6.7864796, 62.0480548 ], [ -6.7873292, 62.0484371 ], [ -6.7889504, 62.0490318 ], [ -6.7900831, 62.049407 ], [ -6.7915414, 62.0498388 ], [ -6.79266, 62.050122 ], [ -6.7937077, 62.0503415 ], [ -6.7948404, 62.0504901 ], [ -6.7958103, 62.0505468 ], [ -6.7967377, 62.0505397 ], [ -6.798189, 62.050476 ], [ -6.7999093, 62.0504477 ], [ -6.8010137, 62.0504901 ], [ -6.802734, 62.0505751 ], [ -6.8040366, 62.0505822 ], [ -6.8050985, 62.0505114 ], [ -6.8062666, 62.0503698 ], [ -6.8080293, 62.0501149 ], [ -6.8088576, 62.0500017 ], [ -6.8110027, 62.0497822 ], [ -6.8122982, 62.049584 ], [ -6.8139336, 62.0492513 ], [ -6.815484, 62.048961 ], [ -6.8171122, 62.0487557 ], [ -6.8187122, 62.0486353 ], [ -6.8208714, 62.0485008 ], [ -6.8225988, 62.0483309 ], [ -6.8236819, 62.0482035 ], [ -6.8256783, 62.0478283 ], [ -6.8266269, 62.0476584 ], [ -6.8290693, 62.0472478 ], [ -6.8298622, 62.0470991 ], [ -6.8314551, 62.0468018 ], [ -6.8321228027, 62.046709870413402 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 144715710.0, "name": "Vegurin Langi", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.774039, 62.0280955 ], [ -6.7744093, 62.0280697 ], [ -6.7759232, 62.0279404 ], [ -6.7763986, 62.0278998 ], [ -6.7766039, 62.0278715 ], [ -6.7768163, 62.0278785 ], [ -6.7770286, 62.027921 ], [ -6.7771278, 62.0279423 ], [ -6.7781897, 62.0283245 ], [ -6.7783808, 62.0283741 ], [ -6.7784728, 62.0283925 ], [ -6.778542, 62.0284063 ], [ -6.7785578, 62.0284095 ], [ -6.7787277, 62.0284237 ], [ -6.778933, 62.0284237 ], [ -6.7796976, 62.0283741 ], [ -6.7801365, 62.0283741 ], [ -6.7808798, 62.0284307 ], [ -6.7811562, 62.0284632 ], [ -6.7812409, 62.0284732 ], [ -6.7820409, 62.0286219 ], [ -6.7824585, 62.0286714 ], [ -6.7829116, 62.028721 ], [ -6.7836125, 62.028721 ], [ -6.7841128, 62.0287082 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 149920492.0, "name": "Undir Svartafossi", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.77998, 62.0224322 ], [ -6.7799624, 62.0225219 ], [ -6.7799021, 62.0226658 ], [ -6.7798129, 62.0228386 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 149920493.0, "name": "Undir Svartafossi", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7811505, 62.0221623 ], [ -6.7810059, 62.0222423 ], [ -6.7807796, 62.0223273 ], [ -6.7806137, 62.0223674 ], [ -6.7803245, 62.0224004 ], [ -6.77998, 62.0224322 ], [ -6.7791151, 62.0225302 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 151585574.0, "name": "Kráarheyggjur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 20 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8250791, 62.0054575 ], [ -6.8229555, 62.004964 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 152886428.0, "name": "Hoyvíksvegur", "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7636292, 62.0228154 ], [ -6.7637394, 62.0228408 ], [ -6.763799, 62.0228702 ], [ -6.7638245, 62.0229051 ], [ -6.763817, 62.0229515 ], [ -6.7637841, 62.0229839 ], [ -6.7637469, 62.0230272 ], [ -6.7637267, 62.0230716 ], [ -6.7637341, 62.023114 ], [ -6.7637703, 62.0231509 ], [ -6.7638106, 62.0231823 ], [ -6.7638702, 62.0232052 ], [ -6.763953, 62.0232246 ], [ -6.7640338, 62.0232361 ], [ -6.7641783, 62.0232481 ], [ -6.764241, 62.0232536 ], [ -6.7643197, 62.0232555 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 152886434.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7642612, 62.0226188 ], [ -6.7641658, 62.0227162 ], [ -6.7642109, 62.0227726 ], [ -6.7644137, 62.0227952 ], [ -6.7654746, 62.022828 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260591.0, "name": "Hvítanesvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 80 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.761711, 62.0322524 ], [ -6.7617733, 62.0325596 ], [ -6.7619692, 62.0329915 ], [ -6.7621785, 62.0332764 ], [ -6.7626059, 62.0337127 ], [ -6.7632603, 62.0342425 ], [ -6.7649031, 62.0354312 ], [ -6.7651391, 62.0356182 ], [ -6.7655398, 62.0359655 ], [ -6.765714, 62.0361914 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260595.0, "name": "Hvítanesvegur", "ref": null, "type": "secondary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 40 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.769954, 62.0261108 ], [ -6.7700431, 62.0263067 ], [ -6.7700557, 62.0263902 ], [ -6.7700876, 62.0266005 ], [ -6.7700693, 62.0266492 ], [ -6.7699807, 62.0268855 ], [ -6.769767, 62.0271526 ], [ -6.769491, 62.027393 ], [ -6.7692328, 62.0275533 ], [ -6.7690658, 62.0276312 ], [ -6.7687854, 62.0277381 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260596.0, "name": "Karlamagnusarbreyt", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7736805, 62.0322865 ], [ -6.7742295, 62.032548 ], [ -6.7755745, 62.0329564 ], [ -6.7762198, 62.0332554 ], [ -6.7770906, 62.0338059 ], [ -6.7776425, 62.0344002 ], [ -6.7777807, 62.0346009 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260600.0, "name": "Kirkjubøarvegur", "ref": null, "type": "primary", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 80 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.807551, 62.0002671 ], [ -6.8098139, 61.9999627 ], [ -6.810131, 61.9999201 ], [ -6.8131531, 61.9994905 ], [ -6.815661, 61.99916 ], [ -6.8169322, 61.9989928 ], [ -6.8180284, 61.998842 ], [ -6.8190216, 61.9987624 ], [ -6.8199665, 61.9987367 ], [ -6.8212807, 61.9987681 ], [ -6.8223708, 61.9988534 ], [ -6.8234488, 61.9989956 ], [ -6.8245874, 61.9991777 ], [ -6.825963, 61.9993799 ], [ -6.8272522, 61.9995901 ], [ -6.8282503, 61.9997112 ], [ -6.8289105, 61.9997914 ], [ -6.8290327, 61.9998062 ], [ -6.8308557, 62.0000225 ], [ -6.8321228027, 62.000173073477349 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260606.0, "name": "Steinagøta", "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7743998, 62.0111129 ], [ -6.7737544, 62.0112831 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260608.0, "name": "Tinghúsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": 50 }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7762107, 62.0153558 ], [ -6.7759926, 62.0150417 ], [ -6.775878, 62.0148848 ], [ -6.7757594, 62.0147435 ], [ -6.7755145, 62.0145082 ], [ -6.7753687, 62.0143677 ], [ -6.7753191, 62.0143253 ], [ -6.7751783, 62.0141816 ], [ -6.7749528, 62.0139846 ], [ -6.7747506, 62.0137977 ], [ -6.7747258, 62.0137648 ], [ -6.7746107, 62.01368 ], [ -6.7745407, 62.0135806 ], [ -6.774531, 62.0135113 ], [ -6.774531, 62.0134283 ], [ -6.7745038, 62.0133763 ], [ -6.7744436, 62.013317 ], [ -6.7743506, 62.0132367 ], [ -6.7742492, 62.0131719 ], [ -6.7741734, 62.0130853 ], [ -6.7740315, 62.0129357 ], [ -6.7739401, 62.0128619 ], [ -6.7738216, 62.0127524 ], [ -6.7736991, 62.0126959 ], [ -6.7735767, 62.0126384 ], [ -6.7735149, 62.0126122 ], [ -6.7733784, 62.0125317 ], [ -6.7731219, 62.0124186 ], [ -6.7730247, 62.0123575 ], [ -6.7729061, 62.0122763 ], [ -6.7727992, 62.0121778 ], [ -6.7726514, 62.0120417 ], [ -6.7726068, 62.0119817 ], [ -6.7725291, 62.011874 ], [ -6.7724657, 62.0118121 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260610.0, "name": "Tórsgøta", "ref": null, "type": "residential", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7759446, 62.0124165 ], [ -6.7758368, 62.0125702 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156260611.0, "name": "Tórsgøta", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7761408, 62.012689 ], [ -6.7759446, 62.0124165 ], [ -6.7756855, 62.0121887 ], [ -6.7754393, 62.0119964 ], [ -6.775261, 62.0118346 ], [ -6.7751365, 62.0117315 ], [ -6.7748319, 62.0114714 ], [ -6.7746793, 62.0113451 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 157464562.0, "name": "Við Myllutjørn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.772583, 62.0324545 ], [ -6.7720427, 62.0320366 ], [ -6.7714553, 62.0315839 ], [ -6.7708314, 62.0311027 ], [ -6.7704371, 62.0308067 ], [ -6.7696397, 62.0310364 ], [ -6.7700434, 62.0313454 ], [ -6.7702261, 62.0314759 ], [ -6.7706577, 62.0318122 ], [ -6.7712209, 62.0322512 ], [ -6.7717725, 62.032681 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 157464564.0, "name": "Við Myllutjørn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7724536, 62.0319199 ], [ -6.7732784, 62.0316935 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 157464565.0, "name": "Við Myllutjørn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7708811, 62.0306745 ], [ -6.7716479, 62.0304588 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 157464566.0, "name": "Við Myllutjørn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7706577, 62.0318122 ], [ -6.7714553, 62.0315839 ], [ -6.77187, 62.0314601 ], [ -6.7728698, 62.0311754 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 157464567.0, "name": "Við Myllutjørn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7721459, 62.0306941 ], [ -6.771257, 62.0309706 ], [ -6.7708314, 62.0311027 ], [ -6.7700434, 62.0313454 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 157464569.0, "name": "Við Myllutjørn", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7712209, 62.0322512 ], [ -6.7720427, 62.0320366 ], [ -6.7724536, 62.0319199 ], [ -6.77187, 62.0314601 ], [ -6.771257, 62.0309706 ], [ -6.7708811, 62.0306745 ], [ -6.7704371, 62.0308067 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 162147918.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7920993, 62.0101366 ], [ -6.7919139, 62.0100726 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 162147919.0, "name": null, "ref": null, "type": "steps", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7919139, 62.0100726 ], [ -6.7918497, 62.0100434 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 162147920.0, "name": null, "ref": null, "type": "service", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7913172, 62.0099412 ], [ -6.7911429, 62.0098362 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 162147921.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7918497, 62.0100434 ], [ -6.791496, 62.0099029 ], [ -6.7913172, 62.0099412 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 162147923.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7922522, 62.0100102 ], [ -6.7924082, 62.0100564 ], [ -6.7927435, 62.0102822 ], [ -6.7928425, 62.0103441 ], [ -6.7929542, 62.0103867 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 169702788.0, "name": "Mikkjalstrøð", "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7901656, 62.0103199 ], [ -6.7913172, 62.0099412 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 169702789.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7914908, 62.0087748 ], [ -6.7914143, 62.008734 ], [ -6.7912838, 62.0087196 ], [ -6.7909345, 62.0086692 ], [ -6.7906774, 62.0086242 ], [ -6.7904893, 62.0085269 ], [ -6.7902628, 62.0083774 ], [ -6.7901132, 62.0083071 ], [ -6.7899827, 62.0082567 ], [ -6.7898368, 62.0082422 ], [ -6.789618, 62.0082386 ], [ -6.7892918, 62.0082765 ], [ -6.7890077, 62.0083287 ], [ -6.7886162, 62.0083683 ], [ -6.7884205, 62.0083918 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 169702790.0, "name": null, "ref": null, "type": "footway", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7896808, 62.0099583 ], [ -6.7887876, 62.0102764 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 169702791.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7888284, 62.0087612 ], [ -6.7886968, 62.0086692 ], [ -6.7885586, 62.0085323 ], [ -6.7884205, 62.0083918 ], [ -6.788313, 62.0083287 ], [ -6.7882593, 62.0082621 ], [ -6.7882055, 62.008181 ], [ -6.788192, 62.0081018 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063101.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.788129, 62.0352671 ], [ -6.7881038, 62.0352951 ], [ -6.7880663, 62.035368 ], [ -6.7873635, 62.0352498 ], [ -6.7870417, 62.0351466 ], [ -6.7869719, 62.0350988 ], [ -6.786811, 62.035041 ], [ -6.7867734, 62.0350309 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063102.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7863604, 62.0324373 ], [ -6.7863657, 62.032548 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063103.0, "name": null, "ref": null, "type": "steps", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7844372, 62.0319995 ], [ -6.7842586, 62.0319723 ], [ -6.7842146, 62.031987 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063106.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7887687, 62.0344239 ], [ -6.7889218, 62.0342631 ], [ -6.7890495, 62.0341289 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063108.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7859916, 62.0317561 ], [ -6.7859875, 62.0317405 ], [ -6.7859795, 62.0316524 ], [ -6.7858722, 62.0315215 ], [ -6.7856523, 62.0311869 ], [ -6.7856523, 62.031119 ], [ -6.785722, 62.0310637 ], [ -6.7856791, 62.0309353 ], [ -6.7855933, 62.030797 ], [ -6.7857166, 62.0306913 ], [ -6.7857364, 62.0305734 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063109.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7851051, 62.0322436 ], [ -6.7848691, 62.0321505 ], [ -6.7847814, 62.0319978 ], [ -6.7847814, 62.031969 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063110.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7871132, 62.0318179 ], [ -6.7871141, 62.0318096 ], [ -6.7871972, 62.0316926 ], [ -6.7874091, 62.0314775 ], [ -6.7874689, 62.0314391 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063111.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7858102, 62.0317665 ], [ -6.78584, 62.0318511 ], [ -6.7858829, 62.0319668 ], [ -6.7859795, 62.0320951 ], [ -6.7861887, 62.0322637 ], [ -6.7862853, 62.0323568 ], [ -6.7863604, 62.0324373 ], [ -6.7860814, 62.0323996 ], [ -6.786001, 62.0324071 ], [ -6.7855611, 62.0323518 ], [ -6.7853465, 62.0322914 ], [ -6.7851051, 62.0322436 ], [ -6.7851266, 62.0322763 ], [ -6.7848476, 62.0322511 ], [ -6.7846223, 62.0321958 ], [ -6.7843434, 62.0320725 ], [ -6.7842683, 62.0319895 ], [ -6.7842146, 62.031987 ], [ -6.783823, 62.0321505 ], [ -6.7835226, 62.0322662 ], [ -6.783445, 62.0322915 ], [ -6.7832758, 62.0323467 ], [ -6.7831739, 62.0323819 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063113.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7878463, 62.0324977 ], [ -6.787841, 62.0325706 ], [ -6.7879643, 62.0326914 ], [ -6.7880199, 62.0327439 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063116.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7847814, 62.031969 ], [ -6.7847484, 62.0319769 ], [ -6.7844372, 62.0319995 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170063117.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7863604, 62.0324373 ], [ -6.7865159, 62.032465 ], [ -6.7866876, 62.0324599 ], [ -6.7868754, 62.032465 ], [ -6.7870095, 62.0324524 ], [ -6.7871015, 62.0324245 ], [ -6.7876586, 62.0324398 ], [ -6.787739, 62.03247 ], [ -6.7878463, 62.0324977 ], [ -6.7879804, 62.0324499 ], [ -6.7881843, 62.0323442 ], [ -6.7882647, 62.0322738 ], [ -6.7883233, 62.0322334 ], [ -6.7883593, 62.032202 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064041.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.783445, 62.0322915 ], [ -6.7834099, 62.0322863 ], [ -6.7830022, 62.0322763 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064042.0, "name": null, "ref": null, "type": "steps", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7830706, 62.0325499 ], [ -6.7830626, 62.0325499 ], [ -6.7829043, 62.032592 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064043.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7829043, 62.032592 ], [ -6.7828963, 62.0325958 ], [ -6.7827772, 62.0326271 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064044.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7889218, 62.0342631 ], [ -6.7888602, 62.0342637 ], [ -6.7886081, 62.0342637 ], [ -6.7881843, 62.0341807 ], [ -6.7878539, 62.0341414 ], [ -6.7877819, 62.0341329 ], [ -6.7875352, 62.0341404 ], [ -6.787326, 62.0341882 ], [ -6.7872187, 62.0342612 ], [ -6.7871811, 62.0342888 ], [ -6.7871436, 62.0342511 ], [ -6.7870953, 62.0341706 ], [ -6.7871597, 62.0340876 ], [ -6.7871329, 62.0340725 ], [ -6.7870095, 62.0341153 ], [ -6.7868807, 62.0342083 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064045.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7878539, 62.0341414 ], [ -6.7878624, 62.0341178 ], [ -6.7879815, 62.0339374 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064046.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7831739, 62.0323819 ], [ -6.7833134, 62.0324474 ], [ -6.7834421, 62.0325077 ], [ -6.7836996, 62.0326134 ], [ -6.7841127, 62.0327417 ], [ -6.7842897, 62.0328197 ], [ -6.7844614, 62.0329731 ], [ -6.7846652, 62.0330738 ], [ -6.7848852, 62.0330989 ], [ -6.7850246, 62.0331191 ], [ -6.785266, 62.0331719 ], [ -6.7856147, 62.0333002 ], [ -6.785899, 62.0333681 ], [ -6.7860224, 62.0333983 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064047.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7833134, 62.0324474 ], [ -6.7833724, 62.0324423 ], [ -6.7835333, 62.0324624 ], [ -6.7836782, 62.0324549 ], [ -6.7839529, 62.0324438 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064048.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.786345, 62.0342286 ], [ -6.7863201, 62.0342058 ], [ -6.7861458, 62.0340951 ], [ -6.785942, 62.0339593 ], [ -6.7857435, 62.0338385 ], [ -6.7855799, 62.0337304 ], [ -6.7855182, 62.033665 ], [ -6.7853599, 62.0335165 ], [ -6.7852848, 62.0334398 ], [ -6.7851668, 62.0333543 ], [ -6.7851266, 62.03327 ], [ -6.7850407, 62.0331719 ], [ -6.7848852, 62.0330989 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064049.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7880466, 62.0338517 ], [ -6.7869132, 62.0335996 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064050.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7830022, 62.0322763 ], [ -6.7830827, 62.0322536 ], [ -6.7834046, 62.0321518 ], [ -6.7834904, 62.0320964 ], [ -6.7834958, 62.0319907 ], [ -6.7834395, 62.0318322 ], [ -6.7833563, 62.0317731 ], [ -6.783528, 62.0312876 ], [ -6.78319, 62.031124 ], [ -6.7830908, 62.0310662 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064051.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7831739, 62.0323819 ], [ -6.7831417, 62.0323593 ], [ -6.7830022, 62.0322763 ], [ -6.7828896, 62.0321606 ], [ -6.7829057, 62.0319744 ], [ -6.782894, 62.0319071 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170064052.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7831739, 62.0323819 ], [ -6.7831887, 62.0323983 ], [ -6.7832222, 62.0324335 ], [ -6.7831873, 62.032487 ], [ -6.7831592, 62.0325134 ], [ -6.7831203, 62.0325411 ], [ -6.7830706, 62.0325499 ], [ -6.7830505, 62.0326404 ], [ -6.7830438, 62.032687 ], [ -6.7830291, 62.0328121 ], [ -6.7830988, 62.0328725 ], [ -6.7833134, 62.0329392 ], [ -6.7836889, 62.0329996 ], [ -6.7837586, 62.0330499 ], [ -6.7839571, 62.0331404 ], [ -6.7839625, 62.0334373 ], [ -6.7839804, 62.0335214 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170065242.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7816283, 62.0296861 ], [ -6.7816611, 62.0296887 ], [ -6.7820393, 62.0297139 ], [ -6.7825302, 62.0297378 ], [ -6.7827233, 62.0297453 ], [ -6.7828413, 62.029729 ], [ -6.7828816, 62.0297755 ], [ -6.7830344, 62.0297919 ], [ -6.7831176, 62.0298145 ], [ -6.7832436, 62.0298246 ], [ -6.7833831, 62.0297742 ], [ -6.7834153, 62.0297642 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170065243.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7814814, 62.0297604 ], [ -6.781527, 62.0297529 ], [ -6.7815995, 62.0297176 ], [ -6.7816283, 62.0296861 ], [ -6.7816397, 62.0296736 ], [ -6.7816638, 62.0294977 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170065244.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7807438, 62.0294182 ], [ -6.7807572, 62.0293943 ], [ -6.7807519, 62.0293075 ], [ -6.7808645, 62.0290698 ], [ -6.7808968, 62.0289958 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170065245.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7801216, 62.0293528 ], [ -6.7801296, 62.0293767 ], [ -6.7802369, 62.0295277 ], [ -6.7803442, 62.0296371 ], [ -6.7807036, 62.0297906 ], [ -6.7807599, 62.0298032 ], [ -6.7809557, 62.0298095 ], [ -6.7812776, 62.0297403 ], [ -6.7814814, 62.0297604 ], [ -6.7815421, 62.0298255 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170065246.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7809217, 62.0294406 ], [ -6.7808833, 62.0294358 ], [ -6.7807438, 62.0294182 ], [ -6.7805105, 62.0293654 ], [ -6.7801967, 62.0293516 ], [ -6.7801216, 62.0293528 ], [ -6.7799175, 62.0293992 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170066367.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7832436, 62.0298246 ], [ -6.7832477, 62.0298359 ], [ -6.7831511, 62.0299126 ], [ -6.7830666, 62.0299447 ], [ -6.7830291, 62.0299806 ], [ -6.7832007, 62.0300875 ], [ -6.7832785, 62.0301089 ], [ -6.7835289, 62.0302062 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170066368.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7826965, 62.0308423 ], [ -6.7826643, 62.0308536 ], [ -6.7825677, 62.0308762 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170066369.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7830908, 62.0310662 ], [ -6.7829524, 62.0309815 ], [ -6.7829325, 62.0309693 ], [ -6.7826965, 62.0308423 ], [ -6.7824712, 62.0308121 ], [ -6.7820313, 62.0306485 ], [ -6.7817577, 62.0305328 ], [ -6.7815592, 62.0303491 ], [ -6.7812186, 62.0301856 ], [ -6.7811301, 62.0301667 ], [ -6.7810389, 62.030085 ], [ -6.781004, 62.0298837 ], [ -6.7807599, 62.0298032 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170066371.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7830401, 62.0308874 ], [ -6.7829524, 62.0309815 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170066372.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7868232, 62.0337017 ], [ -6.7868324, 62.0337379 ], [ -6.7868378, 62.0339216 ], [ -6.7868807, 62.0342083 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170066373.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7831441, 62.030901 ], [ -6.7830401, 62.0308874 ], [ -6.7826965, 62.0308423 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170067000.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7830401, 62.0308874 ], [ -6.7830827, 62.0308574 ], [ -6.7831417, 62.0307618 ], [ -6.7832812, 62.0306209 ], [ -6.7837431, 62.0306433 ], [ -6.7842146, 62.0303995 ], [ -6.784389, 62.0302774 ], [ -6.7841127, 62.0301038 ], [ -6.7840153, 62.0300315 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170067001.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7827772, 62.0326271 ], [ -6.7826428, 62.0326738 ], [ -6.7820075, 62.0329167 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170068400.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7889271, 62.0325925 ], [ -6.7890553, 62.032766 ], [ -6.7891143, 62.0331282 ], [ -6.7890929, 62.0332487 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170068401.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7865065, 62.0328987 ], [ -6.7866092, 62.0330754 ], [ -6.7869149, 62.0334276 ], [ -6.7870153, 62.0335101 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073009.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7860224, 62.0333983 ], [ -6.7861351, 62.0333329 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073011.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7825677, 62.0308762 ], [ -6.782203, 62.0309064 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073013.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7861351, 62.0333329 ], [ -6.7859902, 62.0332474 ], [ -6.785899, 62.0330763 ], [ -6.7857703, 62.0327769 ], [ -6.7856845, 62.032631 ], [ -6.7856094, 62.032548 ], [ -6.7853841, 62.0324474 ], [ -6.7853787, 62.032397 ], [ -6.7855611, 62.0323518 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073014.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7867144, 62.0342863 ], [ -6.7864838, 62.0342486 ], [ -6.786345, 62.0342286 ], [ -6.7862129, 62.0342096 ], [ -6.7859339, 62.0341605 ], [ -6.7854136, 62.0341178 ], [ -6.7852338, 62.0341127 ], [ -6.7851761, 62.0341195 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073016.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7796455, 62.0294761 ], [ -6.7794875, 62.0295071 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073018.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7799175, 62.0293992 ], [ -6.7796455, 62.0294761 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073019.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.782203, 62.0309064 ], [ -6.7821228, 62.0309223 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170073021.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 1, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7868807, 62.0342083 ], [ -6.7867144, 62.0342863 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 172138576.0, "name": "Oman Viðarlund", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7806245, 62.0181227 ], [ -6.7809602, 62.0178659 ], [ -6.7813017, 62.0178071 ], [ -6.7816004, 62.0177594 ], [ -6.7819721, 62.0177047 ], [ -6.7821775, 62.0177966 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 172138577.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7821775, 62.0177966 ], [ -6.7821345, 62.017851 ], [ -6.7821793, 62.0178606 ], [ -6.7822932, 62.0177888 ], [ -6.7823589, 62.0178123 ], [ -6.782425, 62.0178353 ], [ -6.7825816, 62.0178863 ], [ -6.7827507, 62.0179432 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 175455357.0, "name": null, "ref": null, "type": "service", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7624803, 62.0217151 ], [ -6.763608, 62.0219451 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 180146892.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.796488, 62.007935 ], [ -6.7966649, 62.0078731 ], [ -6.7970218, 62.0078701 ], [ -6.7973885, 62.0078746 ], [ -6.7977616, 62.0078384 ], [ -6.7980542, 62.0077493 ], [ -6.7982568, 62.0076709 ], [ -6.7985881, 62.0075818 ], [ -6.7989644, 62.0075818 ], [ -6.7993729, 62.0076392 ], [ -6.7997218, 62.0076761 ], [ -6.7998907, 62.0075788 ], [ -6.8000397, 62.0075516 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 180146893.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7997218, 62.0076761 ], [ -6.799791, 62.0077267 ], [ -6.7998681, 62.007766 ], [ -6.7998585, 62.0078173 ], [ -6.8000819, 62.0078791 ], [ -6.8006046, 62.0079894 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 180146894.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7961181, 62.0074837 ], [ -6.7961471, 62.0075773 ], [ -6.7961824, 62.0076859 ], [ -6.7963079, 62.0078278 ], [ -6.796488, 62.007935 ], [ -6.7965243, 62.0080027 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 182373817.0, "name": "Meinhartstrøð", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8053125, 62.0024812 ], [ -6.80382, 62.0019413 ], [ -6.8032998, 62.0016808 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 182373831.0, "name": null, "ref": null, "type": "path", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7902628, 62.0083774 ], [ -6.790731, 62.0082404 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 191072008.0, "name": "Grønlandsvegur", "ref": null, "type": "residential", "oneway": 0, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7901815, 62.0088135 ], [ -6.790432, 62.0090761 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 208119770.0, "name": null, "ref": null, "type": "unclassified", "oneway": 1, "bridge": 0, "tunnel": 0, "maxspeed": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7892034, 62.0266545 ], [ -6.7892253, 62.0266531 ], [ -6.789243, 62.026647 ], [ -6.789252, 62.0266384 ], [ -6.7892514, 62.0266282 ], [ -6.7892409, 62.0266194 ], [ -6.7892167, 62.0266133 ], [ -6.7891911, 62.0266147 ], [ -6.7891736, 62.026621 ], [ -6.7891663, 62.0266293 ], [ -6.7891651, 62.0266379 ], [ -6.7891766, 62.0266482 ], [ -6.7891878, 62.0266522 ], [ -6.7892034, 62.0266545 ] ] } }
]
}
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