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
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": 44789551.0, "name": null, "type": "stream", "width": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8024997, 62.0325133 ], [ -6.802463, 62.0324627 ], [ -6.8024608, 62.0324081 ], [ -6.8025363, 62.0323696 ], [ -6.8026377, 62.0323129 ], [ -6.802696, 62.0322563 ], [ -6.8026658, 62.0321278 ], [ -6.8026464, 62.0320408 ], [ -6.8025903, 62.0319639 ], [ -6.8025709, 62.0318829 ], [ -6.8025493, 62.0318131 ], [ -6.8024759, 62.0317959 ], [ -6.802381, 62.031715 ], [ -6.8023271, 62.0316421 ], [ -6.8022278, 62.031629 ], [ -6.8021243, 62.0315774 ], [ -6.8020401, 62.0315177 ], [ -6.8019301, 62.0314529 ], [ -6.8017791, 62.0314266 ], [ -6.8016324, 62.0314327 ], [ -6.8015806, 62.0314691 ], [ -6.8015525, 62.0315136 ], [ -6.8014684, 62.0315652 ], [ -6.8012958, 62.0316796 ], [ -6.8012116, 62.0317554 ], [ -6.8011901, 62.0318323 ], [ -6.8012354, 62.0318506 ], [ -6.8012548, 62.031889 ], [ -6.8012224, 62.0319568 ], [ -6.8011016, 62.0320974 ], [ -6.8009808, 62.0321167 ], [ -6.800888, 62.032143 ], [ -6.8007866, 62.0321946 ], [ -6.8007262, 62.0322401 ], [ -6.8005752, 62.0322543 ], [ -6.8003487, 62.032233 ], [ -6.8002192, 62.0322097 ], [ -6.8000854, 62.0322097 ], [ -6.8000078, 62.0322269 ], [ -6.7999323, 62.0322603 ], [ -6.7998503, 62.0322877 ], [ -6.7996475, 62.0323059 ], [ -6.79938, 62.0322846 ], [ -6.7992462, 62.0322846 ], [ -6.7991254, 62.0322968 ], [ -6.7990499, 62.0323423 ], [ -6.79897, 62.0323919 ], [ -6.7988902, 62.0323909 ], [ -6.7988125, 62.0323534 ], [ -6.7987219, 62.0323575 ], [ -6.7985709, 62.0323848 ], [ -6.7984091, 62.032401 ], [ -6.7983293, 62.0323898 ], [ -6.7981977, 62.0323473 ], [ -6.7981243, 62.0323403 ], [ -6.7980207, 62.032318 ], [ -6.7979647, 62.0322694 ], [ -6.7979258, 62.0322249 ], [ -6.7978395, 62.0321743 ], [ -6.7977726, 62.0321369 ], [ -6.7976863, 62.0321177 ], [ -6.7976, 62.0320833 ], [ -6.797503, 62.0320307 ], [ -6.7974318, 62.031978 ], [ -6.7973692, 62.0319254 ], [ -6.7972074, 62.0318597 ], [ -6.7970564, 62.0318313 ], [ -6.7968234, 62.031806 ], [ -6.7966745, 62.0317898 ], [ -6.7965731, 62.0317605 ], [ -6.7964177, 62.0316765 ], [ -6.7962969, 62.0315966 ], [ -6.796133, 62.0315025 ], [ -6.7960445, 62.0314509 ], [ -6.7959366, 62.0314438 ], [ -6.7958093, 62.0314489 ], [ -6.7956216, 62.0314883 ], [ -6.7954706, 62.0315106 ], [ -6.7953369, 62.0315521 ], [ -6.7952096, 62.0315693 ], [ -6.7951103, 62.0315521 ], [ -6.7950413, 62.0315399 ], [ -6.794914, 62.0315359 ], [ -6.7947543, 62.0315359 ], [ -6.7946163, 62.031546 ], [ -6.7945537, 62.0315855 ], [ -6.7945235, 62.0316421 ], [ -6.7945213, 62.0316957 ], [ -6.7944739, 62.0317342 ], [ -6.7943725, 62.0317848 ], [ -6.794202, 62.0318566 ], [ -6.7941179, 62.0318576 ], [ -6.7940079, 62.0318556 ], [ -6.7939194, 62.0318718 ], [ -6.7937684, 62.0318789 ], [ -6.7936648, 62.0318678 ], [ -6.7935915, 62.0318364 ], [ -6.7935116, 62.0317686 ], [ -6.7934275, 62.0316876 ], [ -6.7933067, 62.0316269 ], [ -6.7931535, 62.0315804 ], [ -6.7930521, 62.0315743 ], [ -6.7928903, 62.0315672 ], [ -6.7927954, 62.0315146 ], [ -6.792681, 62.0314883 ], [ -6.7924696, 62.0314286 ], [ -6.792325, 62.0313912 ], [ -6.7922128, 62.031372 ], [ -6.7920402, 62.0313123 ], [ -6.7918137, 62.0312374 ], [ -6.7916411, 62.031204 ], [ -6.7914944, 62.0311311 ], [ -6.7913477, 62.0311058 ], [ -6.7912053, 62.0310876 ], [ -6.7909442, 62.0310087 ], [ -6.7908536, 62.0309703 ], [ -6.7907695, 62.0309622 ], [ -6.7906422, 62.0309632 ], [ -6.7905775, 62.0309804 ], [ -6.790543, 62.0310239 ], [ -6.7904976, 62.0311028 ], [ -6.7904437, 62.0311939 ], [ -6.7903941, 62.0312151 ], [ -6.7903121, 62.0312161 ], [ -6.7901654, 62.031201 ], [ -6.7900122, 62.0311817 ], [ -6.7898375, 62.0311676 ], [ -6.78968, 62.0311342 ], [ -6.7894836, 62.0310957 ], [ -6.7893412, 62.0310502 ], [ -6.7892139, 62.0310107 ], [ -6.7891341, 62.0310047 ], [ -6.7890306, 62.0309662 ], [ -6.7889745, 62.0309227 ], [ -6.7889205, 62.030865 ], [ -6.7889119, 62.0308053 ], [ -6.7888946, 62.0307224 ], [ -6.7888968, 62.0306353 ], [ -6.7888213, 62.0305888 ], [ -6.7887069, 62.0305433 ], [ -6.788666, 62.0304815 ], [ -6.7885818, 62.0303358 ], [ -6.788502, 62.030268 ], [ -6.7884135, 62.0301739 ], [ -6.7883941, 62.0300991 ], [ -6.7883402, 62.0300545 ], [ -6.7882129, 62.0300019 ], [ -6.7880726, 62.0299503 ], [ -6.7879863, 62.0299159 ], [ -6.787913, 62.0297651 ], [ -6.7877965, 62.0297135 ], [ -6.7877296, 62.0296629 ], [ -6.7876498, 62.029585 ], [ -6.7875246, 62.0295395 ], [ -6.787406, 62.0294869 ], [ -6.7873283, 62.029413 ], [ -6.7872355, 62.0293897 ], [ -6.7871557, 62.0293675 ], [ -6.7870435, 62.0292744 ], [ -6.7870435, 62.0292025 ], [ -6.7870133, 62.0291489 ], [ -6.7869206, 62.0290983 ], [ -6.7868386, 62.0290345 ], [ -6.7867825, 62.0289718 ], [ -6.7867242, 62.0288959 ], [ -6.7865969, 62.0288403 ], [ -6.7864955, 62.0287957 ], [ -6.7863898, 62.0287775 ], [ -6.7862733, 62.0287836 ], [ -6.7862064, 62.0288089 ], [ -6.7861072, 62.0288524 ], [ -6.7860338, 62.0288888 ], [ -6.7859411, 62.0289081 ], [ -6.7858548, 62.0289263 ], [ -6.7857037, 62.0289293 ], [ -6.7856023, 62.0289253 ], [ -6.7855225, 62.028902 ], [ -6.7854017, 62.0288484 ], [ -6.7853089, 62.0288271 ], [ -6.7852011, 62.0287785 ], [ -6.785145, 62.028731 ], [ -6.785132, 62.0286895 ], [ -6.7851601, 62.0286227 ], [ -6.7852032, 62.028563 ], [ -6.785214, 62.0284851 ], [ -6.7852399, 62.0284193 ], [ -6.7852938, 62.0283839 ], [ -6.7853327, 62.0283232 ], [ -6.7853176, 62.0282645 ], [ -6.7852658, 62.028228 ], [ -6.7851665, 62.0281977 ], [ -6.7851255, 62.0281633 ], [ -6.7850781, 62.0281309 ], [ -6.785041, 62.0280626 ], [ -6.7850545, 62.0280294 ], [ -6.7851185, 62.0279883 ], [ -6.7851152, 62.0279298 ], [ -6.7849567, 62.0278033 ], [ -6.7847848, 62.0276989 ], [ -6.78465, 62.027642 ], [ -6.7845758, 62.0275867 ], [ -6.7843061, 62.0274965 ], [ -6.7842117, 62.0274586 ], [ -6.7841578, 62.0273447 ], [ -6.7840735, 62.0273289 ], [ -6.7840701, 62.0272894 ], [ -6.783996, 62.0272341 ], [ -6.7839083, 62.0271914 ], [ -6.7838139, 62.0271186 ], [ -6.7836446, 62.026993 ], [ -6.7835022, 62.0269333 ], [ -6.7834353, 62.026911 ], [ -6.783431, 62.0268179 ], [ -6.7833706, 62.0267916 ], [ -6.783349, 62.026741 ], [ -6.7832713, 62.0266975 ], [ -6.7832001, 62.0266803 ], [ -6.7828981, 62.0265305 ], [ -6.7825874, 62.0263838 ], [ -6.782486, 62.0263676 ], [ -6.7824278, 62.0263251 ], [ -6.7823156, 62.0262775 ], [ -6.7821883, 62.0262462 ], [ -6.7819941, 62.0262249 ], [ -6.7818496, 62.0261824 ], [ -6.7816403, 62.0261349 ], [ -6.7815022, 62.0261338 ], [ -6.7813706, 62.0261166 ], [ -6.781198, 62.0260954 ], [ -6.7810578, 62.0260681 ], [ -6.7809152, 62.026058 ], [ -6.7808316, 62.0260453 ], [ -6.7807183, 62.0260213 ], [ -6.7806158, 62.0259758 ], [ -6.7805052, 62.025953 ], [ -6.7804001, 62.0259555 ], [ -6.7802787, 62.0259884 ], [ -6.7802086, 62.0260264 ], [ -6.7801088, 62.026077 ], [ -6.7800306, 62.0260922 ], [ -6.7799065, 62.0261276 ], [ -6.7798068, 62.0261706 ], [ -6.7797043, 62.0261832 ], [ -6.7795344, 62.0261971 ], [ -6.7793564, 62.0261997 ], [ -6.7791703, 62.0261845 ], [ -6.7789815, 62.0261276 ], [ -6.7788224, 62.0260631 ], [ -6.7787604, 62.0259947 ], [ -6.7787307, 62.0258872 ], [ -6.7787712, 62.0258176 ], [ -6.7787955, 62.025743 ], [ -6.7787955, 62.0256734 ], [ -6.778755, 62.0255963 ], [ -6.7786795, 62.0255254 ], [ -6.7785258, 62.0254811 ], [ -6.7784799, 62.0254015 ], [ -6.7784257, 62.0252857 ], [ -6.7783539, 62.0251808 ], [ -6.7782876, 62.0251297 ], [ -6.7781987, 62.0250982 ], [ -6.7779391, 62.0250918 ], [ -6.7778312, 62.0250776 ], [ -6.7776559, 62.0250112 ], [ -6.7774267, 62.0248926 ], [ -6.7773905, 62.0248051 ], [ -6.7772904, 62.0247315 ], [ -6.7771609, 62.0246975 ], [ -6.776818, 62.0246798 ], [ -6.7765652, 62.0246551 ], [ -6.7764282, 62.0245044 ], [ -6.776444, 62.0244352 ], [ -6.7765546, 62.0243586 ], [ -6.7766547, 62.0242029 ], [ -6.7766863, 62.024072 ], [ -6.7765652, 62.0239781 ], [ -6.7764177, 62.0239015 ], [ -6.7762755, 62.0238125 ], [ -6.7762439, 62.023731 ], [ -6.776049, 62.0235753 ], [ -6.7759278, 62.0234567 ], [ -6.7757961, 62.023348 ], [ -6.775596, 62.0232936 ], [ -6.7754854, 62.0232343 ], [ -6.7753484, 62.0231602 ], [ -6.7751061, 62.0231281 ], [ -6.774848, 62.0231429 ], [ -6.7746479, 62.0231637 ], [ -6.7744684, 62.0233118 ], [ -6.7736687, 62.0236162 ], [ -6.7734707, 62.0238021 ], [ -6.7734496, 62.0238594 ], [ -6.7733358, 62.0239009 ], [ -6.7732937, 62.0239543 ], [ -6.7732895, 62.0240472 ], [ -6.7733527, 62.0241124 ], [ -6.7735339, 62.0241816 ], [ -6.7736266, 62.0242705 ], [ -6.7735802, 62.0243377 ], [ -6.7735844, 62.0244247 ], [ -6.7735254, 62.0245216 ], [ -6.7733864, 62.0246006 ], [ -6.7731968, 62.024741 ], [ -6.7730704, 62.0248438 ], [ -6.7730451, 62.0249643 ], [ -6.7729524, 62.0250612 ], [ -6.7730366, 62.0253201 ], [ -6.773024, 62.0253794 ], [ -6.7729891, 62.025441 ], [ -6.7728883, 62.025486 ], [ -6.772657, 62.0254756 ], [ -6.7725521, 62.0254545 ], [ -6.7725015, 62.025417 ], [ -6.7724256, 62.0253221 ], [ -6.7724341, 62.0252727 ], [ -6.7722908, 62.0252035 ], [ -6.772097, 62.0250988 ], [ -6.7719326, 62.0250454 ], [ -6.771829, 62.0247538 ], [ -6.7718513, 62.0244416 ], [ -6.7717851, 62.0243468 ], [ -6.7715637, 62.024282 ], [ -6.7714502, 62.0242025 ], [ -6.7711965, 62.0241642 ], [ -6.7709519, 62.0242003 ], [ -6.7705342, 62.024162 ], [ -6.7701003, 62.0241026 ], [ -6.7696993, 62.0240116 ], [ -6.7696066, 62.0240076 ], [ -6.7694296, 62.0240215 ], [ -6.769181, 62.0240274 ], [ -6.7689366, 62.0239641 ], [ -6.7687723, 62.023889 ], [ -6.7685826, 62.0237961 ], [ -6.7683509, 62.0237467 ], [ -6.768216, 62.0237269 ], [ -6.7679, 62.023804 ], [ -6.7679211, 62.024063 ], [ -6.7678115, 62.024227 ], [ -6.7675966, 62.0243516 ], [ -6.7675208, 62.0245512 ], [ -6.7675208, 62.0247133 ], [ -6.7674955, 62.0250236 ], [ -6.7674576, 62.0251837 ], [ -6.767348, 62.0252411 ], [ -6.7673354, 62.0252905 ], [ -6.7672342, 62.0253577 ], [ -6.766971, 62.0254347 ], [ -6.7668294, 62.0255881 ], [ -6.7666844, 62.0257099 ], [ -6.7664552, 62.0258142 ], [ -6.7663102, 62.0258727 ], [ -6.7661113, 62.0258775 ], [ -6.765936, 62.0258459 ], [ -6.7659428, 62.0257905 ], [ -6.7658416, 62.0257304 ], [ -6.7656394, 62.0257114 ], [ -6.7654641, 62.0257051 ], [ -6.7652686, 62.0257241 ], [ -6.7651169, 62.0257621 ], [ -6.7648, 62.02577 ], [ -6.7645067, 62.0258174 ], [ -6.7643279, 62.0258485 ], [ -6.7641236, 62.0258527 ], [ -6.7637844, 62.0258312 ], [ -6.7635959, 62.0258148 ], [ -6.7634543, 62.0258007 ], [ -6.7632552, 62.0257782 ], [ -6.7629326, 62.0257354 ], [ -6.7623901, 62.0256711 ], [ -6.7616685, 62.0255921 ], [ -6.7611734, 62.0255155 ], [ -6.7607309, 62.0254586 ], [ -6.7599356, 62.0251152 ], [ -6.7599356, 62.0249991 ], [ -6.7599619, 62.0248632 ], [ -6.7598829, 62.0247767 ], [ -6.7597881, 62.0246828 ], [ -6.759688, 62.0246433 ], [ -6.7595247, 62.0246408 ], [ -6.7593035, 62.0246235 ], [ -6.7590243, 62.024411 ], [ -6.7589677, 62.0243136 ], [ -6.758903, 62.0242314 ], [ -6.7589974, 62.0242213 ], [ -6.7590459, 62.0241491 ], [ -6.7589785, 62.0240821 ], [ -6.7589785, 62.023991 ], [ -6.7589192, 62.0239467 ], [ -6.7588922, 62.0238645 ], [ -6.7589192, 62.0238152 ], [ -6.7587708, 62.0236874 ], [ -6.7586036, 62.0235874 ], [ -6.7584095, 62.0234938 ], [ -6.7582881, 62.023318 ], [ -6.758164, 62.0231497 ], [ -6.7580562, 62.0231257 ], [ -6.7579672, 62.0231649 ], [ -6.7577433, 62.0231889 ], [ -6.7576355, 62.0231016 ], [ -6.757595, 62.0229916 ], [ -6.7573766, 62.0228562 ], [ -6.7571716, 62.022841 ], [ -6.7570636, 62.0227221 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 45514096.0, "name": "Havnará", "type": "stream", "width": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7782436, 62.0179066 ], [ -6.7779434, 62.0176269 ], [ -6.7779755, 62.0175124 ], [ -6.7780462, 62.0173797 ], [ -6.778014, 62.0172501 ], [ -6.7779627, 62.0171567 ], [ -6.7778021, 62.0170452 ], [ -6.7777057, 62.0169608 ], [ -6.777725, 62.0168794 ], [ -6.7778213, 62.016804 ], [ -6.7780517, 62.0166552 ], [ -6.7782754, 62.0165318 ], [ -6.7784175, 62.0164392 ], [ -6.778678, 62.0162984 ], [ -6.778778, 62.0161984 ], [ -6.7788227, 62.0161083 ], [ -6.7788226, 62.0160055 ], [ -6.7788173, 62.0159339 ], [ -6.7788015, 62.0158685 ], [ -6.7787752, 62.015808 ], [ -6.7787173, 62.0157351 ], [ -6.7786331, 62.0156796 ], [ -6.7784516, 62.0155623 ], [ -6.7783463, 62.0154685 ], [ -6.7782358, 62.0153376 ], [ -6.778199, 62.0152413 ], [ -6.7782253, 62.0151153 ], [ -6.7781463, 62.0149795 ], [ -6.7779253, 62.0149054 ], [ -6.7776727, 62.0147758 ], [ -6.7775017, 62.014661 ], [ -6.7773438, 62.0145634 ], [ -6.7770412, 62.0144313 ], [ -6.7768491, 62.0143609 ], [ -6.7767781, 62.0142942 ], [ -6.7767518, 62.0142276 ], [ -6.7767781, 62.0141461 ], [ -6.7767544, 62.0140078 ], [ -6.7766912, 62.0139041 ], [ -6.7766228, 62.0138201 ], [ -6.776586, 62.0136966 ], [ -6.7765544, 62.0136201 ], [ -6.7764992, 62.0135336 ], [ -6.7764281, 62.0134435 ], [ -6.7764069, 62.0133921 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 64499098.0, "name": null, "type": "stream", "width": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7839754, 62.0322544 ], [ -6.7832222, 62.032075 ], [ -6.78319, 62.0319291 ], [ -6.7832007, 62.0312901 ], [ -6.7828681, 62.0311089 ], [ -6.7817014, 62.0305588 ], [ -6.7811717, 62.0303333 ], [ -6.7808399, 62.0300687 ], [ -6.7804639, 62.0298509 ], [ -6.7798999, 62.0295034 ], [ -6.7794797, 62.0292181 ], [ -6.7793359, 62.029021 ], [ -6.7790815, 62.0288187 ], [ -6.7787514, 62.0285533 ], [ -6.7782803, 62.0282439 ], [ -6.77811, 62.0281538 ], [ -6.7780085, 62.0280756 ], [ -6.7779687, 62.0279685 ], [ -6.7778817, 62.0277544 ], [ -6.7777005, 62.0275674 ], [ -6.7775374, 62.0273991 ], [ -6.777494, 62.0272597 ], [ -6.7773381, 62.0271629 ], [ -6.7771685, 62.0269991 ], [ -6.7771198, 62.0268936 ], [ -6.7770178, 62.0267956 ], [ -6.7768554, 62.026701 ], [ -6.7767001, 62.0266009 ], [ -6.7765563, 62.0264682 ], [ -6.7763475, 62.0263518 ], [ -6.7761411, 62.0261821 ], [ -6.7759579, 62.0259928 ], [ -6.7758234, 62.0258394 ], [ -6.7756378, 62.025699 ], [ -6.7755033, 62.0256218 ], [ -6.775385, 62.0255554 ], [ -6.7751531, 62.025525 ], [ -6.7748933, 62.0255522 ], [ -6.7745362, 62.0255696 ], [ -6.7736757, 62.0255826 ], [ -6.7731191, 62.0255968 ], [ -6.7729591, 62.0255489 ], [ -6.7728883, 62.025486 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156799018.0, "name": "Sandá", "type": "stream", "width": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8237315, 61.9967234 ], [ -6.8223328, 61.9965142 ], [ -6.8219865, 61.9964603 ], [ -6.8216283, 61.9963663 ], [ -6.8211437, 61.9963317 ], [ -6.8206697, 61.9963267 ], [ -6.8204484, 61.9964454 ], [ -6.820322, 61.9966384 ], [ -6.8199744, 61.9967323 ], [ -6.8194477, 61.996851 ], [ -6.8188367, 61.9969005 ], [ -6.8182678, 61.9969599 ], [ -6.8179202, 61.9969747 ], [ -6.8176252, 61.9969351 ], [ -6.8170247, 61.997034 ], [ -6.8165823, 61.9971082 ], [ -6.8162768, 61.9971082 ], [ -6.8153919, 61.9972566 ], [ -6.8149073, 61.9973209 ], [ -6.8145175, 61.9974297 ], [ -6.8137063, 61.9974545 ], [ -6.8132112, 61.9975138 ], [ -6.8125956, 61.9976123 ], [ -6.8120427, 61.9975554 ], [ -6.811645, 61.9975744 ], [ -6.8112135, 61.9975997 ], [ -6.810937, 61.9976187 ], [ -6.8096021, 61.9977105 ], [ -6.8091706, 61.9977864 ], [ -6.8088874, 61.9978118 ], [ -6.8086798, 61.9977124 ], [ -6.8084425, 61.9974338 ], [ -6.8084047, 61.9972793 ], [ -6.8082483, 61.9971476 ], [ -6.8080056, 61.9970464 ], [ -6.8075956, 61.996978 ], [ -6.8070293, 61.9968893 ], [ -6.8065441, 61.9968338 ], [ -6.8061029, 61.9968678 ], [ -6.8054906, 61.9969389 ], [ -6.8049771, 61.9969203 ], [ -6.8045293, 61.9968399 ], [ -6.8039104, 61.9967657 ], [ -6.8031335, 61.996741 ], [ -6.8024027, 61.9967967 ], [ -6.8018496, 61.996809 ], [ -6.8011188, 61.9968276 ], [ -6.8008291, 61.9968121 ], [ -6.8006711, 61.996741 ], [ -6.8005131, 61.9966545 ], [ -6.8003353, 61.9965988 ], [ -6.7999402, 61.9965741 ], [ -6.7994859, 61.9965679 ], [ -6.7991897, 61.9965339 ], [ -6.798867, 61.9964937 ], [ -6.7986103, 61.9964071 ], [ -6.7982152, 61.9963453 ], [ -6.7978728, 61.9963453 ], [ -6.7975107, 61.9964164 ], [ -6.7972276, 61.9965432 ], [ -6.7970367, 61.9966143 ], [ -6.7968062, 61.9967967 ], [ -6.796668, 61.996911 ], [ -6.7961083, 61.9970223 ], [ -6.7956261, 61.9971682 ], [ -6.795487, 61.9972197 ], [ -6.7954744, 61.9972711 ], [ -6.7953016, 61.9973878 ], [ -6.7952595, 61.9974591 ], [ -6.7950151, 61.9975164 ], [ -6.7947918, 61.9975758 ], [ -6.7944715, 61.9975817 ], [ -6.7941639, 61.9974828 ], [ -6.7937509, 61.9974551 ], [ -6.7932116, 61.9974413 ], [ -6.7927228, 61.9974136 ], [ -6.7922803, 61.9975224 ], [ -6.7920064, 61.9976094 ], [ -6.7919854, 61.9977321 ], [ -6.7915977, 61.9978765 ], [ -6.7914249, 61.9979774 ], [ -6.79113, 61.9981317 ], [ -6.7909614, 61.9981752 ], [ -6.7906833, 61.9981416 ], [ -6.7901186, 61.9981396 ], [ -6.7897857, 61.9982128 ], [ -6.7892548, 61.9982168 ], [ -6.7886269, 61.9982524 ], [ -6.7883531, 61.9982663 ], [ -6.7880286, 61.9983315 ], [ -6.7877083, 61.9984483 ], [ -6.787485, 61.998565 ], [ -6.7871985, 61.9987628 ], [ -6.7870889, 61.9988301 ], [ -6.7871816, 61.9990358 ], [ -6.7870552, 61.9991624 ], [ -6.7866675, 61.9992356 ], [ -6.7861703, 61.9992633 ], [ -6.7857068, 61.9993365 ], [ -6.785395, 61.999388 ], [ -6.7850115, 61.9994038 ], [ -6.7847797, 61.9994196 ], [ -6.7844637, 61.9995522 ], [ -6.7842109, 61.9996669 ], [ -6.7838527, 61.9997243 ], [ -6.7835746, 61.9997559 ], [ -6.7829636, 61.9998153 ], [ -6.782361, 61.9998469 ], [ -6.7821419, 61.9998865 ], [ -6.7818722, 61.9998489 ], [ -6.7812949, 61.9998548 ], [ -6.7808103, 61.9998548 ], [ -6.7804184, 61.9998608 ], [ -6.7799633, 61.9999063 ], [ -6.7796094, 61.9999716 ], [ -6.7792991, 62.0000639 ], [ -6.7791804, 62.0000525 ], [ -6.7790833, 62.00005 ], [ -6.7790375, 62.0000614 ], [ -6.7788979, 62.0001225 ], [ -6.7788233, 62.0001447 ], [ -6.778743, 62.0001704 ], [ -6.7785408, 62.0001472 ], [ -6.7783396, 62.0000897 ], [ -6.7780877, 62.0000286 ], [ -6.777948, 62.0000138 ], [ -6.7778124, 61.9999973 ], [ -6.7773395, 61.9999049 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 156799023.0, "name": "Sandá", "type": "stream", "width": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.8321228027, 61.996735112702218 ], [ -6.8316804, 61.9966131 ], [ -6.8309726, 61.9966209 ], [ -6.830627, 61.9966479 ], [ -6.8300838, 61.9965706 ], [ -6.8297628, 61.9965745 ], [ -6.8293101, 61.9965706 ], [ -6.8290056, 61.9964972 ], [ -6.8285365, 61.9963658 ], [ -6.8281003, 61.9964199 ], [ -6.8273761, 61.9965629 ], [ -6.8269234, 61.9966402 ], [ -6.8262071, 61.9967258 ], [ -6.825949, 61.9967629 ], [ -6.8258226, 61.9968272 ], [ -6.8254644, 61.9968816 ], [ -6.8250799, 61.9968025 ], [ -6.8245584, 61.9967209 ], [ -6.8237315, 61.9967234 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 170066370.0, "name": null, "type": "stream", "width": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7869022, 62.0343945 ], [ -6.7866876, 62.0342134 ], [ -6.7864623, 62.0339165 ], [ -6.7862585, 62.0334587 ], [ -6.7856684, 62.033197 ], [ -6.785457, 62.0329633 ] ] } }
,
{ "type": "Feature", "properties": { "osm_id": 180146895.0, "name": null, "type": "dam", "width": null }, "geometry": { "type": "LineString", "coordinates": [ [ -6.7972112, 62.007161 ], [ -6.7960096, 62.007404 ] ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment