Last active
May 24, 2016 00:37
-
-
Save pgiraud/8955139 to your computer and use it in GitHub Desktop.
D3js save SVG file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
font: 10px sans-serif; | |
} | |
.axis path, | |
.axis line { | |
fill: none; | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
.area { | |
fill: steelblue; | |
} | |
</style> | |
<body> | |
<div id="chart"></div> | |
<button id="generate">Save as SVG</button> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="profile.js"></script> | |
<script src="http://eligrey.com/demos/FileSaver.js/Blob.js"></script> | |
<script src="http://eligrey.com/demos/FileSaver.js/FileSaver.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var margin = {top: 20, right: 20, bottom: 30, left: 50}, | |
width = 500 - margin.left - margin.right, | |
height = 300 - margin.top - margin.bottom; | |
var x = d3.scale.linear() | |
.range([0, width]); | |
var y = d3.scale.linear() | |
.range([height, 0]); | |
var xAxis = d3.svg.axis() | |
.scale(x) | |
.orient("bottom"); | |
var yAxis = d3.svg.axis() | |
.scale(y) | |
.orient("left"); | |
var area = d3.svg.area() | |
.x(function(d) { return x(d.dist); }) | |
.y0(height) | |
.y1(function(d) { return y(d.alts.DTM25); }); | |
var svg = d3.select("#chart").append("svg") | |
.attr("width", width + margin.left + margin.right) | |
.attr("height", height + margin.top + margin.bottom) | |
.append("g") | |
.attr("transform", "translate(" + margin.left + "," + margin.top + ")"); | |
svg. | |
style("font-family", "Georgia"). | |
style("font-size", "15px"). | |
style("font-style", "normal"). | |
style("font-variant", "normal"). | |
style("font-weight", "normal"). | |
style("text-rendering", "optimizeLegibility"). | |
style("shape-rendering", "default"); | |
d3.json('profile.json', function(data) { | |
x.domain(d3.extent(data, function(d) { return d.dist; })); | |
y.domain([0, d3.max(data, function(d) { return d.alts.DTM25; })]); | |
svg.append("path") | |
.datum(data) | |
.attr("class", "area") | |
.style('fill', 'steelblue') | |
.attr("d", area); | |
svg.append("g") | |
.attr("class", "x axis") | |
.attr("transform", "translate(0," + height + ")") | |
.call(xAxis); | |
svg.append("g") | |
.attr("class", "y axis") | |
.call(yAxis) | |
.append("text") | |
.attr("transform", "rotate(-90)") | |
.attr("y", 6) | |
.attr("dy", ".71em") | |
.style("text-anchor", "end") | |
.text("Elevation"); | |
}); | |
d3.select("#generate") | |
.on("click", writeDownloadLink); | |
function writeDownloadLink(){ | |
try { | |
var isFileSaverSupported = !!new Blob(); | |
} catch (e) { | |
alert("blob not supported"); | |
} | |
var html = d3.select("svg") | |
.attr("title", "test2") | |
.attr("version", 1.1) | |
.attr("xmlns", "http://www.w3.org/2000/svg") | |
.node().parentNode.innerHTML; | |
var blob = new Blob([html], {type: "image/svg+xml"}); | |
saveAs(blob, "myProfile.svg"); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"dist": 0.0, | |
"alts": { | |
"DTM25": 1138.0 | |
}, | |
"easting": 550050.0, | |
"northing": 206550.0 | |
}, | |
{ | |
"dist": 64.700000000000003, | |
"alts": { | |
"DTM25": 1149.5999999999999 | |
}, | |
"easting": 550111.06200000003, | |
"northing": 206528.761 | |
}, | |
{ | |
"dist": 129.30000000000001, | |
"alts": { | |
"DTM25": 1162.5999999999999 | |
}, | |
"easting": 550172.12399999995, | |
"northing": 206507.522 | |
}, | |
{ | |
"dist": 194.0, | |
"alts": { | |
"DTM25": 1175.7 | |
}, | |
"easting": 550233.18599999999, | |
"northing": 206486.283 | |
}, | |
{ | |
"dist": 258.60000000000002, | |
"alts": { | |
"DTM25": 1194.9000000000001 | |
}, | |
"easting": 550294.24800000002, | |
"northing": 206465.04399999999 | |
}, | |
{ | |
"dist": 323.30000000000001, | |
"alts": { | |
"DTM25": 1213.9000000000001 | |
}, | |
"easting": 550355.31000000006, | |
"northing": 206443.80499999999, | |
"poi": "Pic de Belle Étoile" | |
}, | |
{ | |
"dist": 387.89999999999998, | |
"alts": { | |
"DTM25": 1231.9000000000001 | |
}, | |
"easting": 550416.37199999997, | |
"northing": 206422.56599999999 | |
}, | |
{ | |
"dist": 452.60000000000002, | |
"alts": { | |
"DTM25": 1248.9000000000001 | |
}, | |
"easting": 550477.43400000001, | |
"northing": 206401.32699999999 | |
}, | |
{ | |
"dist": 517.20000000000005, | |
"alts": { | |
"DTM25": 1265.2 | |
}, | |
"easting": 550538.49600000004, | |
"northing": 206380.08799999999 | |
}, | |
{ | |
"dist": 581.89999999999998, | |
"alts": { | |
"DTM25": 1277.8 | |
}, | |
"easting": 550599.55799999996, | |
"northing": 206358.85000000001 | |
}, | |
{ | |
"dist": 646.5, | |
"alts": { | |
"DTM25": 1288.5999999999999 | |
}, | |
"easting": 550660.61899999995, | |
"northing": 206337.611 | |
}, | |
{ | |
"dist": 711.20000000000005, | |
"alts": { | |
"DTM25": 1299.0999999999999 | |
}, | |
"easting": 550721.68099999998, | |
"northing": 206316.372 | |
}, | |
{ | |
"dist": 775.79999999999995, | |
"alts": { | |
"DTM25": 1307.3 | |
}, | |
"easting": 550782.74300000002, | |
"northing": 206295.133 | |
}, | |
{ | |
"dist": 840.5, | |
"alts": { | |
"DTM25": 1314.3 | |
}, | |
"easting": 550843.80500000005, | |
"northing": 206273.894 | |
}, | |
{ | |
"dist": 905.10000000000002, | |
"alts": { | |
"DTM25": 1318.8 | |
}, | |
"easting": 550904.86699999997, | |
"northing": 206252.655 | |
}, | |
{ | |
"dist": 969.79999999999995, | |
"alts": { | |
"DTM25": 1319.8 | |
}, | |
"easting": 550965.929, | |
"northing": 206231.416 | |
}, | |
{ | |
"dist": 1034.4000000000001, | |
"alts": { | |
"DTM25": 1316.5 | |
}, | |
"easting": 551026.99100000004, | |
"northing": 206210.177 | |
}, | |
{ | |
"dist": 1099.0999999999999, | |
"alts": { | |
"DTM25": 1307.8 | |
}, | |
"easting": 551088.05299999996, | |
"northing": 206188.93799999999 | |
}, | |
{ | |
"dist": 1163.7, | |
"alts": { | |
"DTM25": 1295.4000000000001 | |
}, | |
"easting": 551149.11499999999, | |
"northing": 206167.69899999999 | |
}, | |
{ | |
"dist": 1228.4000000000001, | |
"alts": { | |
"DTM25": 1278.8 | |
}, | |
"easting": 551210.17700000003, | |
"northing": 206146.45999999999 | |
}, | |
{ | |
"dist": 1293.0, | |
"alts": { | |
"DTM25": 1259.5999999999999 | |
}, | |
"easting": 551271.23899999994, | |
"northing": 206125.22099999999 | |
}, | |
{ | |
"dist": 1357.7, | |
"alts": { | |
"DTM25": 1246.5 | |
}, | |
"easting": 551332.30099999998, | |
"northing": 206103.98199999999 | |
}, | |
{ | |
"dist": 1422.3, | |
"alts": { | |
"DTM25": 1241.9000000000001 | |
}, | |
"easting": 551393.36300000001, | |
"northing": 206082.74299999999 | |
}, | |
{ | |
"dist": 1487.0, | |
"alts": { | |
"DTM25": 1245.9000000000001 | |
}, | |
"easting": 551454.42500000005, | |
"northing": 206061.50399999999 | |
}, | |
{ | |
"dist": 1551.5999999999999, | |
"alts": { | |
"DTM25": 1260.7 | |
}, | |
"easting": 551515.48699999996, | |
"northing": 206040.26500000001 | |
}, | |
{ | |
"dist": 1616.3, | |
"alts": { | |
"DTM25": 1281.0999999999999 | |
}, | |
"easting": 551576.549, | |
"northing": 206019.027 | |
}, | |
{ | |
"dist": 1680.9000000000001, | |
"alts": { | |
"DTM25": 1295.7 | |
}, | |
"easting": 551637.61100000003, | |
"northing": 205997.788 | |
}, | |
{ | |
"dist": 1745.5999999999999, | |
"alts": { | |
"DTM25": 1302.5999999999999 | |
}, | |
"easting": 551698.67299999995, | |
"northing": 205976.549 | |
}, | |
{ | |
"dist": 1810.2, | |
"alts": { | |
"DTM25": 1303.3 | |
}, | |
"easting": 551759.73499999999, | |
"northing": 205955.31 | |
}, | |
{ | |
"dist": 1874.9000000000001, | |
"alts": { | |
"DTM25": 1297.7 | |
}, | |
"easting": 551820.79599999997, | |
"northing": 205934.071 | |
}, | |
{ | |
"dist": 1939.5, | |
"alts": { | |
"DTM25": 1288.2 | |
}, | |
"easting": 551881.85800000001, | |
"northing": 205912.83199999999 | |
}, | |
{ | |
"dist": 2004.2, | |
"alts": { | |
"DTM25": 1276.0999999999999 | |
}, | |
"easting": 551942.92000000004, | |
"northing": 205891.59299999999 | |
}, | |
{ | |
"dist": 2068.8000000000002, | |
"alts": { | |
"DTM25": 1264.4000000000001 | |
}, | |
"easting": 552003.98199999996, | |
"northing": 205870.35399999999 | |
}, | |
{ | |
"dist": 2133.5, | |
"alts": { | |
"DTM25": 1252.4000000000001 | |
}, | |
"easting": 552065.04399999999, | |
"northing": 205849.11499999999 | |
}, | |
{ | |
"dist": 2198.0999999999999, | |
"alts": { | |
"DTM25": 1242.3 | |
}, | |
"easting": 552126.10600000003, | |
"northing": 205827.87599999999 | |
}, | |
{ | |
"dist": 2262.8000000000002, | |
"alts": { | |
"DTM25": 1233.8 | |
}, | |
"easting": 552187.16799999995, | |
"northing": 205806.63699999999 | |
}, | |
{ | |
"dist": 2327.4000000000001, | |
"alts": { | |
"DTM25": 1225.8 | |
}, | |
"easting": 552248.22999999998, | |
"northing": 205785.39799999999 | |
}, | |
{ | |
"dist": 2392.0999999999999, | |
"alts": { | |
"DTM25": 1218.8 | |
}, | |
"easting": 552309.29200000002, | |
"northing": 205764.15900000001 | |
}, | |
{ | |
"dist": 2456.6999999999998, | |
"alts": { | |
"DTM25": 1211.0999999999999 | |
}, | |
"easting": 552370.35400000005, | |
"northing": 205742.92000000001 | |
}, | |
{ | |
"dist": 2521.4000000000001, | |
"alts": { | |
"DTM25": 1203.4000000000001 | |
}, | |
"easting": 552431.41599999997, | |
"northing": 205721.68100000001 | |
}, | |
{ | |
"dist": 2586.0, | |
"alts": { | |
"DTM25": 1195.5 | |
}, | |
"easting": 552492.478, | |
"northing": 205700.44200000001 | |
}, | |
{ | |
"dist": 2650.6999999999998, | |
"alts": { | |
"DTM25": 1188.0 | |
}, | |
"easting": 552553.54000000004, | |
"northing": 205679.204 | |
}, | |
{ | |
"dist": 2715.3000000000002, | |
"alts": { | |
"DTM25": 1180.0999999999999 | |
}, | |
"easting": 552614.60199999996, | |
"northing": 205657.965 | |
}, | |
{ | |
"dist": 2780.0, | |
"alts": { | |
"DTM25": 1172.9000000000001 | |
}, | |
"easting": 552675.66399999999, | |
"northing": 205636.726 | |
}, | |
{ | |
"dist": 2844.5999999999999, | |
"alts": { | |
"DTM25": 1165.4000000000001 | |
}, | |
"easting": 552736.72600000002, | |
"northing": 205615.48699999999 | |
}, | |
{ | |
"dist": 2909.3000000000002, | |
"alts": { | |
"DTM25": 1157.0999999999999 | |
}, | |
"easting": 552797.78799999994, | |
"northing": 205594.24799999999 | |
}, | |
{ | |
"dist": 2973.9000000000001, | |
"alts": { | |
"DTM25": 1148.9000000000001 | |
}, | |
"easting": 552858.84999999998, | |
"northing": 205573.00899999999 | |
}, | |
{ | |
"dist": 3038.5999999999999, | |
"alts": { | |
"DTM25": 1140.5999999999999 | |
}, | |
"easting": 552919.91200000001, | |
"northing": 205551.76999999999 | |
}, | |
{ | |
"dist": 3103.1999999999998, | |
"alts": { | |
"DTM25": 1132.7 | |
}, | |
"easting": 552980.973, | |
"northing": 205530.53099999999 | |
}, | |
{ | |
"dist": 3167.9000000000001, | |
"alts": { | |
"DTM25": 1124.3 | |
}, | |
"easting": 553042.03500000003, | |
"northing": 205509.29199999999 | |
}, | |
{ | |
"dist": 3232.5, | |
"alts": { | |
"DTM25": 1115.8 | |
}, | |
"easting": 553103.09699999995, | |
"northing": 205488.05300000001 | |
}, | |
{ | |
"dist": 3297.1999999999998, | |
"alts": { | |
"DTM25": 1106.5999999999999 | |
}, | |
"easting": 553164.15899999999, | |
"northing": 205466.81400000001 | |
}, | |
{ | |
"dist": 3361.8000000000002, | |
"alts": { | |
"DTM25": 1097.5 | |
}, | |
"easting": 553225.22100000002, | |
"northing": 205445.57500000001 | |
}, | |
{ | |
"dist": 3426.5, | |
"alts": { | |
"DTM25": 1087.2 | |
}, | |
"easting": 553286.28300000005, | |
"northing": 205424.33600000001 | |
}, | |
{ | |
"dist": 3491.0999999999999, | |
"alts": { | |
"DTM25": 1076.3 | |
}, | |
"easting": 553347.34499999997, | |
"northing": 205403.09700000001 | |
}, | |
{ | |
"dist": 3555.8000000000002, | |
"alts": { | |
"DTM25": 1064.2 | |
}, | |
"easting": 553408.40700000001, | |
"northing": 205381.85800000001 | |
}, | |
{ | |
"dist": 3620.4000000000001, | |
"alts": { | |
"DTM25": 1048.8 | |
}, | |
"easting": 553469.46900000004, | |
"northing": 205360.61900000001 | |
}, | |
{ | |
"dist": 3685.0999999999999, | |
"alts": { | |
"DTM25": 1034.5 | |
}, | |
"easting": 553530.53099999996, | |
"northing": 205339.38099999999 | |
}, | |
{ | |
"dist": 3749.6999999999998, | |
"alts": { | |
"DTM25": 1019.7 | |
}, | |
"easting": 553591.59299999999, | |
"northing": 205318.14199999999 | |
}, | |
{ | |
"dist": 3814.4000000000001, | |
"alts": { | |
"DTM25": 1004.8 | |
}, | |
"easting": 553652.65500000003, | |
"northing": 205296.90299999999 | |
}, | |
{ | |
"dist": 3879.0, | |
"alts": { | |
"DTM25": 989.79999999999995 | |
}, | |
"easting": 553713.71699999995, | |
"northing": 205275.66399999999 | |
}, | |
{ | |
"dist": 3943.6999999999998, | |
"alts": { | |
"DTM25": 975.79999999999995 | |
}, | |
"easting": 553774.77899999998, | |
"northing": 205254.42499999999 | |
}, | |
{ | |
"dist": 4008.3000000000002, | |
"alts": { | |
"DTM25": 961.10000000000002 | |
}, | |
"easting": 553835.84100000001, | |
"northing": 205233.18599999999 | |
}, | |
{ | |
"dist": 4073.0, | |
"alts": { | |
"DTM25": 945.20000000000005 | |
}, | |
"easting": 553896.90300000005, | |
"northing": 205211.94699999999 | |
}, | |
{ | |
"dist": 4137.6000000000004, | |
"alts": { | |
"DTM25": 928.5 | |
}, | |
"easting": 553957.96499999997, | |
"northing": 205190.70800000001 | |
}, | |
{ | |
"dist": 4202.3000000000002, | |
"alts": { | |
"DTM25": 908.70000000000005 | |
}, | |
"easting": 554019.027, | |
"northing": 205169.46900000001, | |
"poi": "Mont de la Touffe" | |
}, | |
{ | |
"dist": 4266.8999999999996, | |
"alts": { | |
"DTM25": 887.29999999999995 | |
}, | |
"easting": 554080.08799999999, | |
"northing": 205148.23000000001 | |
}, | |
{ | |
"dist": 4331.6000000000004, | |
"alts": { | |
"DTM25": 864.20000000000005 | |
}, | |
"easting": 554141.15000000002, | |
"northing": 205126.99100000001 | |
}, | |
{ | |
"dist": 4396.1999999999998, | |
"alts": { | |
"DTM25": 843.60000000000002 | |
}, | |
"easting": 554202.21200000006, | |
"northing": 205105.75200000001 | |
}, | |
{ | |
"dist": 4460.8999999999996, | |
"alts": { | |
"DTM25": 824.20000000000005 | |
}, | |
"easting": 554263.27399999998, | |
"northing": 205084.51300000001 | |
}, | |
{ | |
"dist": 4525.5, | |
"alts": { | |
"DTM25": 810.60000000000002 | |
}, | |
"easting": 554324.33600000001, | |
"northing": 205063.274 | |
}, | |
{ | |
"dist": 4590.1999999999998, | |
"alts": { | |
"DTM25": 802.0 | |
}, | |
"easting": 554385.39800000004, | |
"northing": 205042.035 | |
}, | |
{ | |
"dist": 4654.8000000000002, | |
"alts": { | |
"DTM25": 795.60000000000002 | |
}, | |
"easting": 554446.45999999996, | |
"northing": 205020.796 | |
}, | |
{ | |
"dist": 4719.5, | |
"alts": { | |
"DTM25": 791.79999999999995 | |
}, | |
"easting": 554507.522, | |
"northing": 204999.55799999999 | |
}, | |
{ | |
"dist": 4784.1000000000004, | |
"alts": { | |
"DTM25": 790.10000000000002 | |
}, | |
"easting": 554568.58400000003, | |
"northing": 204978.31899999999 | |
}, | |
{ | |
"dist": 4848.8000000000002, | |
"alts": { | |
"DTM25": 788.20000000000005 | |
}, | |
"easting": 554629.64599999995, | |
"northing": 204957.07999999999 | |
}, | |
{ | |
"dist": 4913.3999999999996, | |
"alts": { | |
"DTM25": 786.20000000000005 | |
}, | |
"easting": 554690.70799999998, | |
"northing": 204935.84099999999 | |
}, | |
{ | |
"dist": 4978.1000000000004, | |
"alts": { | |
"DTM25": 784.60000000000002 | |
}, | |
"easting": 554751.77000000002, | |
"northing": 204914.60200000001 | |
}, | |
{ | |
"dist": 5042.6999999999998, | |
"alts": { | |
"DTM25": 781.79999999999995 | |
}, | |
"easting": 554812.83200000005, | |
"northing": 204893.36300000001 | |
}, | |
{ | |
"dist": 5107.3999999999996, | |
"alts": { | |
"DTM25": 778.5 | |
}, | |
"easting": 554873.89399999997, | |
"northing": 204872.12400000001 | |
}, | |
{ | |
"dist": 5172.0, | |
"alts": { | |
"DTM25": 774.5 | |
}, | |
"easting": 554934.95600000001, | |
"northing": 204850.88500000001 | |
}, | |
{ | |
"dist": 5236.6999999999998, | |
"alts": { | |
"DTM25": 769.79999999999995 | |
}, | |
"easting": 554996.01800000004, | |
"northing": 204829.64600000001 | |
}, | |
{ | |
"dist": 5301.3000000000002, | |
"alts": { | |
"DTM25": 765.0 | |
}, | |
"easting": 555057.07999999996, | |
"northing": 204808.40700000001 | |
}, | |
{ | |
"dist": 5366.0, | |
"alts": { | |
"DTM25": 759.60000000000002 | |
}, | |
"easting": 555118.14199999999, | |
"northing": 204787.16800000001 | |
}, | |
{ | |
"dist": 5430.6000000000004, | |
"alts": { | |
"DTM25": 754.29999999999995 | |
}, | |
"easting": 555179.20400000003, | |
"northing": 204765.929 | |
}, | |
{ | |
"dist": 5495.3000000000002, | |
"alts": { | |
"DTM25": 747.60000000000002 | |
}, | |
"easting": 555240.26500000001, | |
"northing": 204744.69 | |
}, | |
{ | |
"dist": 5559.8999999999996, | |
"alts": { | |
"DTM25": 739.29999999999995 | |
}, | |
"easting": 555301.32700000005, | |
"northing": 204723.451 | |
}, | |
{ | |
"dist": 5624.6000000000004, | |
"alts": { | |
"DTM25": 730.20000000000005 | |
}, | |
"easting": 555362.38899999997, | |
"northing": 204702.212 | |
}, | |
{ | |
"dist": 5689.1999999999998, | |
"alts": { | |
"DTM25": 723.5 | |
}, | |
"easting": 555423.451, | |
"northing": 204680.973 | |
}, | |
{ | |
"dist": 5753.8999999999996, | |
"alts": { | |
"DTM25": 719.5 | |
}, | |
"easting": 555484.51300000004, | |
"northing": 204659.73499999999 | |
}, | |
{ | |
"dist": 5818.5, | |
"alts": { | |
"DTM25": 717.10000000000002 | |
}, | |
"easting": 555545.57499999995, | |
"northing": 204638.49600000001 | |
}, | |
{ | |
"dist": 5883.1999999999998, | |
"alts": { | |
"DTM25": 716.79999999999995 | |
}, | |
"easting": 555606.63699999999, | |
"northing": 204617.25700000001 | |
}, | |
{ | |
"dist": 5947.8000000000002, | |
"alts": { | |
"DTM25": 716.20000000000005 | |
}, | |
"easting": 555667.69900000002, | |
"northing": 204596.01800000001 | |
}, | |
{ | |
"dist": 6012.5, | |
"alts": { | |
"DTM25": 712.5 | |
}, | |
"easting": 555728.76100000006, | |
"northing": 204574.77900000001 | |
}, | |
{ | |
"dist": 6077.1000000000004, | |
"alts": { | |
"DTM25": 710.5 | |
}, | |
"easting": 555789.82299999997, | |
"northing": 204553.54000000001 | |
}, | |
{ | |
"dist": 6141.8000000000002, | |
"alts": { | |
"DTM25": 706.10000000000002 | |
}, | |
"easting": 555850.88500000001, | |
"northing": 204532.30100000001 | |
}, | |
{ | |
"dist": 6206.3999999999996, | |
"alts": { | |
"DTM25": 700.5 | |
}, | |
"easting": 555911.94700000004, | |
"northing": 204511.06200000001 | |
}, | |
{ | |
"dist": 6271.1000000000004, | |
"alts": { | |
"DTM25": 695.89999999999998 | |
}, | |
"easting": 555973.00899999996, | |
"northing": 204489.823 | |
}, | |
{ | |
"dist": 6335.6999999999998, | |
"alts": { | |
"DTM25": 689.70000000000005 | |
}, | |
"easting": 556034.071, | |
"northing": 204468.584 | |
}, | |
{ | |
"dist": 6400.3999999999996, | |
"alts": { | |
"DTM25": 683.29999999999995 | |
}, | |
"easting": 556095.13300000003, | |
"northing": 204447.345 | |
}, | |
{ | |
"dist": 6465.0, | |
"alts": { | |
"DTM25": 676.79999999999995 | |
}, | |
"easting": 556156.19499999995, | |
"northing": 204426.106 | |
}, | |
{ | |
"dist": 6529.6999999999998, | |
"alts": { | |
"DTM25": 669.39999999999998 | |
}, | |
"easting": 556217.25699999998, | |
"northing": 204404.867 | |
}, | |
{ | |
"dist": 6594.3000000000002, | |
"alts": { | |
"DTM25": 661.79999999999995 | |
}, | |
"easting": 556278.31900000002, | |
"northing": 204383.628 | |
}, | |
{ | |
"dist": 6659.0, | |
"alts": { | |
"DTM25": 654.20000000000005 | |
}, | |
"easting": 556339.38100000005, | |
"northing": 204362.389 | |
}, | |
{ | |
"dist": 6723.6000000000004, | |
"alts": { | |
"DTM25": 647.5 | |
}, | |
"easting": 556400.44200000004, | |
"northing": 204341.14999999999 | |
}, | |
{ | |
"dist": 6788.3000000000002, | |
"alts": { | |
"DTM25": 641.20000000000005 | |
}, | |
"easting": 556461.50399999996, | |
"northing": 204319.91200000001 | |
}, | |
{ | |
"dist": 6852.8999999999996, | |
"alts": { | |
"DTM25": 635.89999999999998 | |
}, | |
"easting": 556522.56599999999, | |
"northing": 204298.67300000001 | |
}, | |
{ | |
"dist": 6917.6000000000004, | |
"alts": { | |
"DTM25": 633.0 | |
}, | |
"easting": 556583.62800000003, | |
"northing": 204277.43400000001 | |
}, | |
{ | |
"dist": 6982.1999999999998, | |
"alts": { | |
"DTM25": 632.10000000000002 | |
}, | |
"easting": 556644.68999999994, | |
"northing": 204256.19500000001 | |
}, | |
{ | |
"dist": 7046.8999999999996, | |
"alts": { | |
"DTM25": 632.60000000000002 | |
}, | |
"easting": 556705.75199999998, | |
"northing": 204234.95600000001 | |
}, | |
{ | |
"dist": 7111.5, | |
"alts": { | |
"DTM25": 633.29999999999995 | |
}, | |
"easting": 556766.81400000001, | |
"northing": 204213.717 | |
}, | |
{ | |
"dist": 7176.1999999999998, | |
"alts": { | |
"DTM25": 633.5 | |
}, | |
"easting": 556827.87600000005, | |
"northing": 204192.478 | |
}, | |
{ | |
"dist": 7240.8000000000002, | |
"alts": { | |
"DTM25": 632.0 | |
}, | |
"easting": 556888.93799999997, | |
"northing": 204171.239 | |
}, | |
{ | |
"dist": 7305.5, | |
"alts": { | |
"DTM25": 630.5 | |
}, | |
"easting": 556950.0, | |
"northing": 204150.0 | |
}, | |
{ | |
"dist": 7369.6999999999998, | |
"alts": { | |
"DTM25": 631.60000000000002 | |
}, | |
"easting": 556997.12600000005, | |
"northing": 204193.67800000001 | |
}, | |
{ | |
"dist": 7434.0, | |
"alts": { | |
"DTM25": 632.60000000000002 | |
}, | |
"easting": 557044.25300000003, | |
"northing": 204237.356 | |
}, | |
{ | |
"dist": 7498.1999999999998, | |
"alts": { | |
"DTM25": 634.20000000000005 | |
}, | |
"easting": 557091.37899999996, | |
"northing": 204281.03400000001, | |
"poi": "Coulée du Grand Bronze" | |
}, | |
{ | |
"dist": 7562.5, | |
"alts": { | |
"DTM25": 635.70000000000005 | |
}, | |
"easting": 557138.50600000005, | |
"northing": 204324.71299999999 | |
}, | |
{ | |
"dist": 7626.8000000000002, | |
"alts": { | |
"DTM25": 636.60000000000002 | |
}, | |
"easting": 557185.63199999998, | |
"northing": 204368.391 | |
}, | |
{ | |
"dist": 7691.0, | |
"alts": { | |
"DTM25": 637.79999999999995 | |
}, | |
"easting": 557232.75899999996, | |
"northing": 204412.06899999999 | |
}, | |
{ | |
"dist": 7755.3000000000002, | |
"alts": { | |
"DTM25": 639.39999999999998 | |
}, | |
"easting": 557279.88500000001, | |
"northing": 204455.747 | |
}, | |
{ | |
"dist": 7819.5, | |
"alts": { | |
"DTM25": 642.10000000000002 | |
}, | |
"easting": 557327.01100000006, | |
"northing": 204499.42499999999 | |
}, | |
{ | |
"dist": 7883.8000000000002, | |
"alts": { | |
"DTM25": 645.60000000000002 | |
}, | |
"easting": 557374.13800000004, | |
"northing": 204543.103 | |
}, | |
{ | |
"dist": 7948.0, | |
"alts": { | |
"DTM25": 649.79999999999995 | |
}, | |
"easting": 557421.26399999997, | |
"northing": 204586.78200000001 | |
}, | |
{ | |
"dist": 8012.3000000000002, | |
"alts": { | |
"DTM25": 654.29999999999995 | |
}, | |
"easting": 557468.39099999995, | |
"northing": 204630.45999999999 | |
}, | |
{ | |
"dist": 8076.5, | |
"alts": { | |
"DTM25": 658.5 | |
}, | |
"easting": 557515.51699999999, | |
"northing": 204674.13800000001 | |
}, | |
{ | |
"dist": 8140.8000000000002, | |
"alts": { | |
"DTM25": 662.89999999999998 | |
}, | |
"easting": 557562.64399999997, | |
"northing": 204717.81599999999 | |
}, | |
{ | |
"dist": 8205.0, | |
"alts": { | |
"DTM25": 667.10000000000002 | |
}, | |
"easting": 557609.77000000002, | |
"northing": 204761.49400000001 | |
}, | |
{ | |
"dist": 8269.2999999999993, | |
"alts": { | |
"DTM25": 672.5 | |
}, | |
"easting": 557656.897, | |
"northing": 204805.17199999999 | |
}, | |
{ | |
"dist": 8333.6000000000004, | |
"alts": { | |
"DTM25": 679.29999999999995 | |
}, | |
"easting": 557704.02300000004, | |
"northing": 204848.851 | |
}, | |
{ | |
"dist": 8397.7999999999993, | |
"alts": { | |
"DTM25": 685.10000000000002 | |
}, | |
"easting": 557751.14899999998, | |
"northing": 204892.52900000001 | |
}, | |
{ | |
"dist": 8462.1000000000004, | |
"alts": { | |
"DTM25": 689.60000000000002 | |
}, | |
"easting": 557798.27599999995, | |
"northing": 204936.20699999999 | |
}, | |
{ | |
"dist": 8526.2999999999993, | |
"alts": { | |
"DTM25": 694.29999999999995 | |
}, | |
"easting": 557845.402, | |
"northing": 204979.88500000001 | |
}, | |
{ | |
"dist": 8590.6000000000004, | |
"alts": { | |
"DTM25": 697.79999999999995 | |
}, | |
"easting": 557892.52899999998, | |
"northing": 205023.56299999999 | |
}, | |
{ | |
"dist": 8654.7999999999993, | |
"alts": { | |
"DTM25": 701.60000000000002 | |
}, | |
"easting": 557939.65500000003, | |
"northing": 205067.24100000001 | |
}, | |
{ | |
"dist": 8719.1000000000004, | |
"alts": { | |
"DTM25": 705.79999999999995 | |
}, | |
"easting": 557986.78200000001, | |
"northing": 205110.92000000001 | |
}, | |
{ | |
"dist": 8783.2999999999993, | |
"alts": { | |
"DTM25": 710.20000000000005 | |
}, | |
"easting": 558033.90800000005, | |
"northing": 205154.598 | |
}, | |
{ | |
"dist": 8847.6000000000004, | |
"alts": { | |
"DTM25": 715.29999999999995 | |
}, | |
"easting": 558081.03399999999, | |
"northing": 205198.27600000001 | |
}, | |
{ | |
"dist": 8911.7999999999993, | |
"alts": { | |
"DTM25": 719.5 | |
}, | |
"easting": 558128.16099999996, | |
"northing": 205241.954 | |
}, | |
{ | |
"dist": 8976.1000000000004, | |
"alts": { | |
"DTM25": 723.10000000000002 | |
}, | |
"easting": 558175.28700000001, | |
"northing": 205285.63200000001 | |
}, | |
{ | |
"dist": 9040.3999999999996, | |
"alts": { | |
"DTM25": 727.0 | |
}, | |
"easting": 558222.41399999999, | |
"northing": 205329.31 | |
}, | |
{ | |
"dist": 9104.6000000000004, | |
"alts": { | |
"DTM25": 730.89999999999998 | |
}, | |
"easting": 558269.54000000004, | |
"northing": 205372.989 | |
}, | |
{ | |
"dist": 9168.8999999999996, | |
"alts": { | |
"DTM25": 734.39999999999998 | |
}, | |
"easting": 558316.66700000002, | |
"northing": 205416.66699999999 | |
}, | |
{ | |
"dist": 9233.1000000000004, | |
"alts": { | |
"DTM25": 737.5 | |
}, | |
"easting": 558363.79299999995, | |
"northing": 205460.345 | |
}, | |
{ | |
"dist": 9297.3999999999996, | |
"alts": { | |
"DTM25": 740.5 | |
}, | |
"easting": 558410.92000000004, | |
"northing": 205504.02299999999 | |
}, | |
{ | |
"dist": 9361.6000000000004, | |
"alts": { | |
"DTM25": 742.60000000000002 | |
}, | |
"easting": 558458.04599999997, | |
"northing": 205547.701 | |
}, | |
{ | |
"dist": 9425.8999999999996, | |
"alts": { | |
"DTM25": 744.20000000000005 | |
}, | |
"easting": 558505.17200000002, | |
"northing": 205591.37899999999 | |
}, | |
{ | |
"dist": 9490.1000000000004, | |
"alts": { | |
"DTM25": 745.29999999999995 | |
}, | |
"easting": 558552.299, | |
"northing": 205635.057 | |
}, | |
{ | |
"dist": 9554.3999999999996, | |
"alts": { | |
"DTM25": 748.20000000000005 | |
}, | |
"easting": 558599.42500000005, | |
"northing": 205678.736 | |
}, | |
{ | |
"dist": 9618.7000000000007, | |
"alts": { | |
"DTM25": 753.20000000000005 | |
}, | |
"easting": 558646.55200000003, | |
"northing": 205722.41399999999 | |
}, | |
{ | |
"dist": 9682.8999999999996, | |
"alts": { | |
"DTM25": 759.60000000000002 | |
}, | |
"easting": 558693.67799999996, | |
"northing": 205766.092 | |
}, | |
{ | |
"dist": 9747.2000000000007, | |
"alts": { | |
"DTM25": 766.10000000000002 | |
}, | |
"easting": 558740.80500000005, | |
"northing": 205809.76999999999 | |
}, | |
{ | |
"dist": 9811.3999999999996, | |
"alts": { | |
"DTM25": 772.79999999999995 | |
}, | |
"easting": 558787.93099999998, | |
"northing": 205853.448 | |
}, | |
{ | |
"dist": 9875.7000000000007, | |
"alts": { | |
"DTM25": 777.70000000000005 | |
}, | |
"easting": 558835.05700000003, | |
"northing": 205897.12599999999 | |
}, | |
{ | |
"dist": 9939.8999999999996, | |
"alts": { | |
"DTM25": 779.60000000000002 | |
}, | |
"easting": 558882.18400000001, | |
"northing": 205940.80499999999 | |
}, | |
{ | |
"dist": 10004.200000000001, | |
"alts": { | |
"DTM25": 777.5 | |
}, | |
"easting": 558929.31000000006, | |
"northing": 205984.48300000001 | |
}, | |
{ | |
"dist": 10068.4, | |
"alts": { | |
"DTM25": 769.79999999999995 | |
}, | |
"easting": 558976.43700000003, | |
"northing": 206028.16099999999 | |
}, | |
{ | |
"dist": 10132.700000000001, | |
"alts": { | |
"DTM25": 751.0 | |
}, | |
"easting": 559023.56299999997, | |
"northing": 206071.83900000001 | |
}, | |
{ | |
"dist": 10196.9, | |
"alts": { | |
"DTM25": 723.5 | |
}, | |
"easting": 559070.68999999994, | |
"northing": 206115.51699999999 | |
}, | |
{ | |
"dist": 10261.200000000001, | |
"alts": { | |
"DTM25": 695.5 | |
}, | |
"easting": 559117.81599999999, | |
"northing": 206159.19500000001 | |
}, | |
{ | |
"dist": 10325.5, | |
"alts": { | |
"DTM25": 664.5 | |
}, | |
"easting": 559164.94299999997, | |
"northing": 206202.87400000001 | |
}, | |
{ | |
"dist": 10389.700000000001, | |
"alts": { | |
"DTM25": 651.20000000000005 | |
}, | |
"easting": 559212.06900000002, | |
"northing": 206246.552 | |
}, | |
{ | |
"dist": 10454.0, | |
"alts": { | |
"DTM25": 661.70000000000005 | |
}, | |
"easting": 559259.19499999995, | |
"northing": 206290.23000000001 | |
}, | |
{ | |
"dist": 10518.200000000001, | |
"alts": { | |
"DTM25": 677.39999999999998 | |
}, | |
"easting": 559306.32200000004, | |
"northing": 206333.908 | |
}, | |
{ | |
"dist": 10582.5, | |
"alts": { | |
"DTM25": 699.10000000000002 | |
}, | |
"easting": 559353.44799999997, | |
"northing": 206377.58600000001 | |
}, | |
{ | |
"dist": 10646.700000000001, | |
"alts": { | |
"DTM25": 719.5 | |
}, | |
"easting": 559400.57499999995, | |
"northing": 206421.264 | |
}, | |
{ | |
"dist": 10711.0, | |
"alts": { | |
"DTM25": 732.39999999999998 | |
}, | |
"easting": 559447.701, | |
"northing": 206464.943 | |
}, | |
{ | |
"dist": 10775.200000000001, | |
"alts": { | |
"DTM25": 740.29999999999995 | |
}, | |
"easting": 559494.82799999998, | |
"northing": 206508.62100000001 | |
}, | |
{ | |
"dist": 10839.5, | |
"alts": { | |
"DTM25": 743.5 | |
}, | |
"easting": 559541.95400000003, | |
"northing": 206552.299 | |
}, | |
{ | |
"dist": 10903.700000000001, | |
"alts": { | |
"DTM25": 744.0 | |
}, | |
"easting": 559589.07999999996, | |
"northing": 206595.97700000001 | |
}, | |
{ | |
"dist": 10968.0, | |
"alts": { | |
"DTM25": 743.5 | |
}, | |
"easting": 559636.20700000005, | |
"northing": 206639.655 | |
}, | |
{ | |
"dist": 11032.299999999999, | |
"alts": { | |
"DTM25": 743.89999999999998 | |
}, | |
"easting": 559683.33299999998, | |
"northing": 206683.33300000001 | |
}, | |
{ | |
"dist": 11096.5, | |
"alts": { | |
"DTM25": 745.39999999999998 | |
}, | |
"easting": 559730.45999999996, | |
"northing": 206727.011 | |
}, | |
{ | |
"dist": 11160.799999999999, | |
"alts": { | |
"DTM25": 747.79999999999995 | |
}, | |
"easting": 559777.58600000001, | |
"northing": 206770.69 | |
}, | |
{ | |
"dist": 11225.0, | |
"alts": { | |
"DTM25": 751.60000000000002 | |
}, | |
"easting": 559824.71299999999, | |
"northing": 206814.36799999999 | |
}, | |
{ | |
"dist": 11289.299999999999, | |
"alts": { | |
"DTM25": 757.0 | |
}, | |
"easting": 559871.83900000004, | |
"northing": 206858.046 | |
}, | |
{ | |
"dist": 11353.5, | |
"alts": { | |
"DTM25": 762.29999999999995 | |
}, | |
"easting": 559918.96600000001, | |
"northing": 206901.72399999999 | |
}, | |
{ | |
"dist": 11417.799999999999, | |
"alts": { | |
"DTM25": 769.89999999999998 | |
}, | |
"easting": 559966.09199999995, | |
"northing": 206945.402 | |
}, | |
{ | |
"dist": 11482.0, | |
"alts": { | |
"DTM25": 777.79999999999995 | |
}, | |
"easting": 560013.21799999999, | |
"northing": 206989.07999999999 | |
}, | |
{ | |
"dist": 11546.299999999999, | |
"alts": { | |
"DTM25": 784.29999999999995 | |
}, | |
"easting": 560060.34499999997, | |
"northing": 207032.75899999999 | |
}, | |
{ | |
"dist": 11610.6, | |
"alts": { | |
"DTM25": 792.10000000000002 | |
}, | |
"easting": 560107.47100000002, | |
"northing": 207076.43700000001 | |
}, | |
{ | |
"dist": 11674.799999999999, | |
"alts": { | |
"DTM25": 799.0 | |
}, | |
"easting": 560154.598, | |
"northing": 207120.11499999999 | |
}, | |
{ | |
"dist": 11739.1, | |
"alts": { | |
"DTM25": 805.20000000000005 | |
}, | |
"easting": 560201.72400000005, | |
"northing": 207163.79300000001 | |
}, | |
{ | |
"dist": 11803.299999999999, | |
"alts": { | |
"DTM25": 812.70000000000005 | |
}, | |
"easting": 560248.85100000002, | |
"northing": 207207.47099999999 | |
}, | |
{ | |
"dist": 11867.6, | |
"alts": { | |
"DTM25": 819.60000000000002 | |
}, | |
"easting": 560295.97699999996, | |
"northing": 207251.149 | |
}, | |
{ | |
"dist": 11931.799999999999, | |
"alts": { | |
"DTM25": 827.0 | |
}, | |
"easting": 560343.103, | |
"northing": 207294.82800000001 | |
}, | |
{ | |
"dist": 11996.1, | |
"alts": { | |
"DTM25": 834.60000000000002 | |
}, | |
"easting": 560390.22999999998, | |
"northing": 207338.50599999999 | |
}, | |
{ | |
"dist": 12060.299999999999, | |
"alts": { | |
"DTM25": 841.10000000000002 | |
}, | |
"easting": 560437.35600000003, | |
"northing": 207382.18400000001 | |
}, | |
{ | |
"dist": 12124.6, | |
"alts": { | |
"DTM25": 848.39999999999998 | |
}, | |
"easting": 560484.48300000001, | |
"northing": 207425.86199999999 | |
}, | |
{ | |
"dist": 12188.799999999999, | |
"alts": { | |
"DTM25": 856.60000000000002 | |
}, | |
"easting": 560531.60900000005, | |
"northing": 207469.54000000001 | |
}, | |
{ | |
"dist": 12253.1, | |
"alts": { | |
"DTM25": 865.89999999999998 | |
}, | |
"easting": 560578.73600000003, | |
"northing": 207513.21799999999 | |
}, | |
{ | |
"dist": 12317.4, | |
"alts": { | |
"DTM25": 876.89999999999998 | |
}, | |
"easting": 560625.86199999996, | |
"northing": 207556.897 | |
}, | |
{ | |
"dist": 12381.6, | |
"alts": { | |
"DTM25": 887.79999999999995 | |
}, | |
"easting": 560672.98899999994, | |
"northing": 207600.57500000001 | |
}, | |
{ | |
"dist": 12445.9, | |
"alts": { | |
"DTM25": 897.60000000000002 | |
}, | |
"easting": 560720.11499999999, | |
"northing": 207644.253 | |
}, | |
{ | |
"dist": 12510.1, | |
"alts": { | |
"DTM25": 906.5 | |
}, | |
"easting": 560767.24100000004, | |
"northing": 207687.93100000001 | |
}, | |
{ | |
"dist": 12574.4, | |
"alts": { | |
"DTM25": 914.79999999999995 | |
}, | |
"easting": 560814.36800000002, | |
"northing": 207731.609 | |
}, | |
{ | |
"dist": 12638.6, | |
"alts": { | |
"DTM25": 920.60000000000002 | |
}, | |
"easting": 560861.49399999995, | |
"northing": 207775.28700000001 | |
}, | |
{ | |
"dist": 12702.9, | |
"alts": { | |
"DTM25": 926.70000000000005 | |
}, | |
"easting": 560908.62100000004, | |
"northing": 207818.96599999999 | |
}, | |
{ | |
"dist": 12767.1, | |
"alts": { | |
"DTM25": 930.70000000000005 | |
}, | |
"easting": 560955.74699999997, | |
"northing": 207862.644 | |
}, | |
{ | |
"dist": 12831.4, | |
"alts": { | |
"DTM25": 934.39999999999998 | |
}, | |
"easting": 561002.87399999995, | |
"northing": 207906.32199999999 | |
}, | |
{ | |
"dist": 12895.6, | |
"alts": { | |
"DTM25": 937.29999999999995 | |
}, | |
"easting": 561050.0, | |
"northing": 207950.0 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment