forked from pgiraud's block: d3js Elevation profile - Ratio automatically chosen
Last active
March 23, 2019 12:42
-
-
Save vjwilson/884b5b15288074d8936ef16f9a928a89 to your computer and use it in GitHub Desktop.
d3js Elevation profile - Ratio automatically chosen
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
license: mit |
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; | |
} | |
line.poi { | |
stroke: grey; | |
shape-rendering: crispEdges; | |
} | |
line.poi2 { | |
stroke: #000; | |
shape-rendering: crispEdges; | |
} | |
.chart { | |
border:1px solid grey; | |
} | |
</style> | |
<body> | |
<div id="chart" class="chart"> | |
</div> | |
<div>Ratio: 1:<span id="ratio"></span></div> | |
<script src="https://d3js.org/d3.v3.min.js"></script> | |
<script src="profile.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 = 600 - margin.left - margin.right, | |
height = 300 - margin.top - margin.bottom; | |
var data = ['profile.json', 'profile_short.json', 'profile_long_flat.json', 'profile_long_not_flat.json']; | |
d3.json(data[0], function(data) { | |
drawChart(data); | |
}); | |
function drawChart(data) { | |
d3.select("#chart").html(""); | |
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 + ")"); | |
var xDomain = d3.extent(data, function(d) { return d.dist; }); | |
x.domain(xDomain); | |
var yDomain = [d3.min(data, function(d) { return d.alts.DTM25; }), | |
d3.max(data, function(d) { return d.alts.DTM25; })]; | |
y.domain(yDomain); | |
var xResolution = (xDomain[1] - xDomain[0]) / width; | |
var yResolution = (yDomain[1] - yDomain[0]) / height; | |
var ratioXY = yResolution / xResolution; | |
var ratios = [0.05, 0.1, 0.2]; | |
// determine the more appropriate ratio | |
for (var i = 0; i < ratios.length; i++) { | |
if (ratioXY <= ratios[i]) { | |
ratioXY = ratios[i]; | |
break; | |
} | |
} | |
// change the domain accordingly | |
var mean = (yDomain[1] - yDomain[0]) / 2 + yDomain[0]; | |
y.domain([mean - (xResolution * ratioXY) * height / 2, | |
mean + (xResolution * ratioXY) * height / 2]); | |
svg.append("path") | |
.datum(data) | |
.attr("class", "area") | |
.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); | |
d3.select('#ratio').text(1 / ratioXY); | |
} |
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 | |
}, | |
{ | |
"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 | |
} | |
] |
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": 392.7 | |
}, | |
"easting": 545085.0, | |
"northing": 148747.234 | |
}, | |
{ | |
"dist": 187.2, | |
"alts": { | |
"DTM25": 393.4 | |
}, | |
"easting": 545255.0, | |
"northing": 148825.567 | |
}, | |
{ | |
"dist": 374.4, | |
"alts": { | |
"DTM25": 393.7 | |
}, | |
"easting": 545425.0, | |
"northing": 148903.901 | |
}, | |
{ | |
"dist": 561.5, | |
"alts": { | |
"DTM25": 396.6 | |
}, | |
"easting": 545595.0, | |
"northing": 148982.234 | |
}, | |
{ | |
"dist": 748.7, | |
"alts": { | |
"DTM25": 397.6 | |
}, | |
"easting": 545765.0, | |
"northing": 149060.567 | |
}, | |
{ | |
"dist": 935.9, | |
"alts": { | |
"DTM25": 399.7 | |
}, | |
"easting": 545935.0, | |
"northing": 149138.901 | |
}, | |
{ | |
"dist": 1123.1, | |
"alts": { | |
"DTM25": 404.4 | |
}, | |
"easting": 546105.0, | |
"northing": 149217.234 | |
}, | |
{ | |
"dist": 1303.6, | |
"alts": { | |
"DTM25": 403.7 | |
}, | |
"easting": 546270.0, | |
"northing": 149143.901 | |
}, | |
{ | |
"dist": 1484.2, | |
"alts": { | |
"DTM25": 405.1 | |
}, | |
"easting": 546435.0, | |
"northing": 149070.567 | |
}, | |
{ | |
"dist": 1664.8, | |
"alts": { | |
"DTM25": 402.7 | |
}, | |
"easting": 546600.0, | |
"northing": 148997.234 | |
}, | |
{ | |
"dist": 1845.3, | |
"alts": { | |
"DTM25": 399.5 | |
}, | |
"easting": 546765.0, | |
"northing": 148923.901 | |
}, | |
{ | |
"dist": 2025.9, | |
"alts": { | |
"DTM25": 399.7 | |
}, | |
"easting": 546930.0, | |
"northing": 148850.567 | |
}, | |
{ | |
"dist": 2206.5, | |
"alts": { | |
"DTM25": 400.4 | |
}, | |
"easting": 547095.0, | |
"northing": 148777.234 | |
}, | |
{ | |
"dist": 2387.9, | |
"alts": { | |
"DTM25": 394.8 | |
}, | |
"easting": 547223.333, | |
"northing": 148648.901 | |
}, | |
{ | |
"dist": 2569.4, | |
"alts": { | |
"DTM25": 391.1 | |
}, | |
"easting": 547351.667, | |
"northing": 148520.567 | |
}, | |
{ | |
"dist": 2750.9, | |
"alts": { | |
"DTM25": 391.1 | |
}, | |
"easting": 547480.0, | |
"northing": 148392.234 | |
}, | |
{ | |
"dist": 2932.4, | |
"alts": { | |
"DTM25": 390.3 | |
}, | |
"easting": 547608.333, | |
"northing": 148263.901 | |
}, | |
{ | |
"dist": 3113.9, | |
"alts": { | |
"DTM25": 395.1 | |
}, | |
"easting": 547736.667, | |
"northing": 148135.567 | |
}, | |
{ | |
"dist": 3295.4, | |
"alts": { | |
"DTM25": 403.8 | |
}, | |
"easting": 547865.0, | |
"northing": 148007.234 | |
}, | |
{ | |
"dist": 3464.4, | |
"alts": { | |
"DTM25": 413.7 | |
}, | |
"easting": 548018.333, | |
"northing": 147936.123 | |
}, | |
{ | |
"dist": 3633.4, | |
"alts": { | |
"DTM25": 424.8 | |
}, | |
"easting": 548171.667, | |
"northing": 147865.012 | |
}, | |
{ | |
"dist": 3802.5, | |
"alts": { | |
"DTM25": 434.4 | |
}, | |
"easting": 548325.0, | |
"northing": 147793.901 | |
}, | |
{ | |
"dist": 3971.5, | |
"alts": { | |
"DTM25": 444.4 | |
}, | |
"easting": 548478.333, | |
"northing": 147722.79 | |
}, | |
{ | |
"dist": 4140.5, | |
"alts": { | |
"DTM25": 451.2 | |
}, | |
"easting": 548631.667, | |
"northing": 147651.678 | |
}, | |
{ | |
"dist": 4309.5, | |
"alts": { | |
"DTM25": 455.1 | |
}, | |
"easting": 548785.0, | |
"northing": 147580.567 | |
}, | |
{ | |
"dist": 4478.5, | |
"alts": { | |
"DTM25": 454.7 | |
}, | |
"easting": 548938.333, | |
"northing": 147509.456 | |
}, | |
{ | |
"dist": 4647.6, | |
"alts": { | |
"DTM25": 446.3 | |
}, | |
"easting": 549091.667, | |
"northing": 147438.345 | |
}, | |
{ | |
"dist": 4816.6, | |
"alts": { | |
"DTM25": 436.0 | |
}, | |
"easting": 549245.0, | |
"northing": 147367.234 | |
}, | |
{ | |
"dist": 4999.2, | |
"alts": { | |
"DTM25": 424.8 | |
}, | |
"easting": 549426.667, | |
"northing": 147348.901 | |
}, | |
{ | |
"dist": 5181.8, | |
"alts": { | |
"DTM25": 414.5 | |
}, | |
"easting": 549608.333, | |
"northing": 147330.567 | |
}, | |
{ | |
"dist": 5364.3, | |
"alts": { | |
"DTM25": 411.8 | |
}, | |
"easting": 549790.0, | |
"northing": 147312.234 | |
}, | |
{ | |
"dist": 5546.9, | |
"alts": { | |
"DTM25": 406.3 | |
}, | |
"easting": 549971.667, | |
"northing": 147293.901 | |
}, | |
{ | |
"dist": 5729.5, | |
"alts": { | |
"DTM25": 406.8 | |
}, | |
"easting": 550153.333, | |
"northing": 147275.567 | |
}, | |
{ | |
"dist": 5912.1, | |
"alts": { | |
"DTM25": 415.3 | |
}, | |
"easting": 550335.0, | |
"northing": 147257.234 | |
}, | |
{ | |
"dist": 6091.0, | |
"alts": { | |
"DTM25": 416.9 | |
}, | |
"easting": 550503.571, | |
"northing": 147197.234 | |
}, | |
{ | |
"dist": 6270.0, | |
"alts": { | |
"DTM25": 417.2 | |
}, | |
"easting": 550672.143, | |
"northing": 147137.234 | |
}, | |
{ | |
"dist": 6448.9, | |
"alts": { | |
"DTM25": 414.4 | |
}, | |
"easting": 550840.714, | |
"northing": 147077.234 | |
}, | |
{ | |
"dist": 6627.8, | |
"alts": { | |
"DTM25": 407.2 | |
}, | |
"easting": 551009.286, | |
"northing": 147017.234 | |
}, | |
{ | |
"dist": 6806.8, | |
"alts": { | |
"DTM25": 401.8 | |
}, | |
"easting": 551177.857, | |
"northing": 146957.234 | |
}, | |
{ | |
"dist": 6985.7, | |
"alts": { | |
"DTM25": 395.4 | |
}, | |
"easting": 551346.429, | |
"northing": 146897.234 | |
}, | |
{ | |
"dist": 7164.6, | |
"alts": { | |
"DTM25": 392.6 | |
}, | |
"easting": 551515.0, | |
"northing": 146837.234 | |
}, | |
{ | |
"dist": 7348.0, | |
"alts": { | |
"DTM25": 391.7 | |
}, | |
"easting": 551697.5, | |
"northing": 146819.734 | |
}, | |
{ | |
"dist": 7531.3, | |
"alts": { | |
"DTM25": 390.0 | |
}, | |
"easting": 551880.0, | |
"northing": 146802.234 | |
}, | |
{ | |
"dist": 7714.6, | |
"alts": { | |
"DTM25": 389.7 | |
}, | |
"easting": 552062.5, | |
"northing": 146784.734 | |
}, | |
{ | |
"dist": 7898.0, | |
"alts": { | |
"DTM25": 390.9 | |
}, | |
"easting": 552245.0, | |
"northing": 146767.234 | |
}, | |
{ | |
"dist": 8081.3, | |
"alts": { | |
"DTM25": 392.9 | |
}, | |
"easting": 552427.5, | |
"northing": 146749.734 | |
}, | |
{ | |
"dist": 8264.7, | |
"alts": { | |
"DTM25": 397.9 | |
}, | |
"easting": 552610.0, | |
"northing": 146732.234 | |
}, | |
{ | |
"dist": 8448.0, | |
"alts": { | |
"DTM25": 404.3 | |
}, | |
"easting": 552792.5, | |
"northing": 146714.734 | |
}, | |
{ | |
"dist": 8631.3, | |
"alts": { | |
"DTM25": 405.3 | |
}, | |
"easting": 552975.0, | |
"northing": 146697.234 | |
}, | |
{ | |
"dist": 8797.5, | |
"alts": { | |
"DTM25": 404.3 | |
}, | |
"easting": 553140.0, | |
"northing": 146677.234 | |
}, | |
{ | |
"dist": 8963.7, | |
"alts": { | |
"DTM25": 399.4 | |
}, | |
"easting": 553305.0, | |
"northing": 146657.234 | |
}, | |
{ | |
"dist": 9130.0, | |
"alts": { | |
"DTM25": 394.4 | |
}, | |
"easting": 553470.0, | |
"northing": 146637.234 | |
}, | |
{ | |
"dist": 9296.2, | |
"alts": { | |
"DTM25": 391.0 | |
}, | |
"easting": 553635.0, | |
"northing": 146617.234 | |
}, | |
{ | |
"dist": 9468.7, | |
"alts": { | |
"DTM25": 387.1 | |
}, | |
"easting": 553733.0, | |
"northing": 146475.234 | |
}, | |
{ | |
"dist": 9641.2, | |
"alts": { | |
"DTM25": 385.7 | |
}, | |
"easting": 553831.0, | |
"northing": 146333.234 | |
}, | |
{ | |
"dist": 9813.8, | |
"alts": { | |
"DTM25": 384.3 | |
}, | |
"easting": 553929.0, | |
"northing": 146191.234 | |
}, | |
{ | |
"dist": 9986.3, | |
"alts": { | |
"DTM25": 383.5 | |
}, | |
"easting": 554027.0, | |
"northing": 146049.234 | |
}, | |
{ | |
"dist": 10158.8, | |
"alts": { | |
"DTM25": 383.2 | |
}, | |
"easting": 554125.0, | |
"northing": 145907.234 | |
}, | |
{ | |
"dist": 10326.3, | |
"alts": { | |
"DTM25": 382.9 | |
}, | |
"easting": 554270.0, | |
"northing": 145823.484 | |
}, | |
{ | |
"dist": 10493.7, | |
"alts": { | |
"DTM25": 382.8 | |
}, | |
"easting": 554415.0, | |
"northing": 145739.734 | |
}, | |
{ | |
"dist": 10661.2, | |
"alts": { | |
"DTM25": 382.0 | |
}, | |
"easting": 554560.0, | |
"northing": 145655.984 | |
}, | |
{ | |
"dist": 10828.6, | |
"alts": { | |
"DTM25": 381.4 | |
}, | |
"easting": 554705.0, | |
"northing": 145572.234 | |
}, | |
{ | |
"dist": 10996.1, | |
"alts": { | |
"DTM25": 380.7 | |
}, | |
"easting": 554850.0, | |
"northing": 145488.484 | |
}, | |
{ | |
"dist": 11163.5, | |
"alts": { | |
"DTM25": 380.5 | |
}, | |
"easting": 554995.0, | |
"northing": 145404.734 | |
}, | |
{ | |
"dist": 11331.0, | |
"alts": { | |
"DTM25": 381.4 | |
}, | |
"easting": 555140.0, | |
"northing": 145320.984 | |
}, | |
{ | |
"dist": 11498.4, | |
"alts": { | |
"DTM25": 383.9 | |
}, | |
"easting": 555285.0, | |
"northing": 145237.234 | |
}, | |
{ | |
"dist": 11665.3, | |
"alts": { | |
"DTM25": 387.1 | |
}, | |
"easting": 555413.333, | |
"northing": 145130.567 | |
}, | |
{ | |
"dist": 11832.2, | |
"alts": { | |
"DTM25": 390.5 | |
}, | |
"easting": 555541.667, | |
"northing": 145023.901 | |
}, | |
{ | |
"dist": 11999.0, | |
"alts": { | |
"DTM25": 393.6 | |
}, | |
"easting": 555670.0, | |
"northing": 144917.234 | |
}, | |
{ | |
"dist": 12165.9, | |
"alts": { | |
"DTM25": 396.5 | |
}, | |
"easting": 555798.333, | |
"northing": 144810.567 | |
}, | |
{ | |
"dist": 12332.8, | |
"alts": { | |
"DTM25": 397.1 | |
}, | |
"easting": 555926.667, | |
"northing": 144703.901 | |
}, | |
{ | |
"dist": 12499.7, | |
"alts": { | |
"DTM25": 395.9 | |
}, | |
"easting": 556055.0, | |
"northing": 144597.234 | |
}, | |
{ | |
"dist": 12680.6, | |
"alts": { | |
"DTM25": 395.4 | |
}, | |
"easting": 556221.904, | |
"northing": 144527.388 | |
}, | |
{ | |
"dist": 12861.5, | |
"alts": { | |
"DTM25": 394.1 | |
}, | |
"easting": 556388.808, | |
"northing": 144457.542 | |
}, | |
{ | |
"dist": 13042.5, | |
"alts": { | |
"DTM25": 394.7 | |
}, | |
"easting": 556555.712, | |
"northing": 144387.695 | |
}, | |
{ | |
"dist": 13223.4, | |
"alts": { | |
"DTM25": 400.3 | |
}, | |
"easting": 556722.616, | |
"northing": 144317.849 | |
}, | |
{ | |
"dist": 13404.3, | |
"alts": { | |
"DTM25": 401.7 | |
}, | |
"easting": 556889.519, | |
"northing": 144248.003 | |
}, | |
{ | |
"dist": 13579.2, | |
"alts": { | |
"DTM25": 403.3 | |
}, | |
"easting": 557039.519, | |
"northing": 144158.003 | |
}, | |
{ | |
"dist": 13754.2, | |
"alts": { | |
"DTM25": 409.7 | |
}, | |
"easting": 557189.519, | |
"northing": 144068.003 | |
}, | |
{ | |
"dist": 13929.1, | |
"alts": { | |
"DTM25": 411.5 | |
}, | |
"easting": 557339.519, | |
"northing": 143978.003 | |
}, | |
{ | |
"dist": 14104.0, | |
"alts": { | |
"DTM25": 409.2 | |
}, | |
"easting": 557489.519, | |
"northing": 143888.003 | |
}, | |
{ | |
"dist": 14279.0, | |
"alts": { | |
"DTM25": 408.8 | |
}, | |
"easting": 557639.519, | |
"northing": 143798.003 | |
}, | |
{ | |
"dist": 14453.3, | |
"alts": { | |
"DTM25": 405.8 | |
}, | |
"easting": 557809.519, | |
"northing": 143759.253 | |
}, | |
{ | |
"dist": 14627.7, | |
"alts": { | |
"DTM25": 402.9 | |
}, | |
"easting": 557979.519, | |
"northing": 143720.503 | |
}, | |
{ | |
"dist": 14802.0, | |
"alts": { | |
"DTM25": 401.5 | |
}, | |
"easting": 558149.519, | |
"northing": 143681.753 | |
}, | |
{ | |
"dist": 14976.4, | |
"alts": { | |
"DTM25": 402.1 | |
}, | |
"easting": 558319.519, | |
"northing": 143643.003 | |
}, | |
{ | |
"dist": 15150.8, | |
"alts": { | |
"DTM25": 405.7 | |
}, | |
"easting": 558489.519, | |
"northing": 143604.253 | |
}, | |
{ | |
"dist": 15325.1, | |
"alts": { | |
"DTM25": 406.7 | |
}, | |
"easting": 558659.519, | |
"northing": 143565.503 | |
}, | |
{ | |
"dist": 15499.5, | |
"alts": { | |
"DTM25": 411.0 | |
}, | |
"easting": 558829.519, | |
"northing": 143526.753 | |
}, | |
{ | |
"dist": 15673.8, | |
"alts": { | |
"DTM25": 414.4 | |
}, | |
"easting": 558999.519, | |
"northing": 143488.003 | |
}, | |
{ | |
"dist": 15868.5, | |
"alts": { | |
"DTM25": 407.7 | |
}, | |
"easting": 559107.519, | |
"northing": 143326.003 | |
}, | |
{ | |
"dist": 16063.2, | |
"alts": { | |
"DTM25": 401.9 | |
}, | |
"easting": 559215.519, | |
"northing": 143164.003 | |
}, | |
{ | |
"dist": 16257.9, | |
"alts": { | |
"DTM25": 399.7 | |
}, | |
"easting": 559323.519, | |
"northing": 143002.003 | |
}, | |
{ | |
"dist": 16452.6, | |
"alts": { | |
"DTM25": 399.3 | |
}, | |
"easting": 559431.519, | |
"northing": 142840.003 | |
}, | |
{ | |
"dist": 16647.3, | |
"alts": { | |
"DTM25": 400.6 | |
}, | |
"easting": 559539.519, | |
"northing": 142678.003 | |
}, | |
{ | |
"dist": 16834.9, | |
"alts": { | |
"DTM25": 404.2 | |
}, | |
"easting": 559677.853, | |
"northing": 142551.336 | |
}, | |
{ | |
"dist": 17022.5, | |
"alts": { | |
"DTM25": 406.3 | |
}, | |
"easting": 559816.186, | |
"northing": 142424.67 | |
}, | |
{ | |
"dist": 17210.0, | |
"alts": { | |
"DTM25": 402.1 | |
}, | |
"easting": 559954.519, | |
"northing": 142298.003 | |
}, | |
{ | |
"dist": 17397.6, | |
"alts": { | |
"DTM25": 398.9 | |
}, | |
"easting": 560092.853, | |
"northing": 142171.336 | |
}, | |
{ | |
"dist": 17585.2, | |
"alts": { | |
"DTM25": 397.4 | |
}, | |
"easting": 560231.186, | |
"northing": 142044.67 | |
}, | |
{ | |
"dist": 17772.7, | |
"alts": { | |
"DTM25": 396.7 | |
}, | |
"easting": 560369.519, | |
"northing": 141918.003 | |
}, | |
{ | |
"dist": 17960.3, | |
"alts": { | |
"DTM25": 398.1 | |
}, | |
"easting": 560441.186, | |
"northing": 141744.67 | |
}, | |
{ | |
"dist": 18147.9, | |
"alts": { | |
"DTM25": 400.3 | |
}, | |
"easting": 560512.853, | |
"northing": 141571.336 | |
}, | |
{ | |
"dist": 18335.4, | |
"alts": { | |
"DTM25": 403.6 | |
}, | |
"easting": 560584.519, | |
"northing": 141398.003 | |
}, | |
{ | |
"dist": 18523.0, | |
"alts": { | |
"DTM25": 409.3 | |
}, | |
"easting": 560656.186, | |
"northing": 141224.67 | |
}, | |
{ | |
"dist": 18710.6, | |
"alts": { | |
"DTM25": 412.7 | |
}, | |
"easting": 560727.853, | |
"northing": 141051.336 | |
}, | |
{ | |
"dist": 18898.1, | |
"alts": { | |
"DTM25": 416.6 | |
}, | |
"easting": 560799.519, | |
"northing": 140878.003 | |
}, | |
{ | |
"dist": 19069.7, | |
"alts": { | |
"DTM25": 424.4 | |
}, | |
"easting": 560838.091, | |
"northing": 140710.86 | |
}, | |
{ | |
"dist": 19241.2, | |
"alts": { | |
"DTM25": 423.2 | |
}, | |
"easting": 560876.662, | |
"northing": 140543.717 | |
}, | |
{ | |
"dist": 19412.7, | |
"alts": { | |
"DTM25": 417.1 | |
}, | |
"easting": 560915.234, | |
"northing": 140376.574 | |
}, | |
{ | |
"dist": 19584.3, | |
"alts": { | |
"DTM25": 405.7 | |
}, | |
"easting": 560953.805, | |
"northing": 140209.431 | |
}, | |
{ | |
"dist": 19755.8, | |
"alts": { | |
"DTM25": 398.8 | |
}, | |
"easting": 560992.377, | |
"northing": 140042.289 | |
}, | |
{ | |
"dist": 19927.3, | |
"alts": { | |
"DTM25": 396.3 | |
}, | |
"easting": 561030.948, | |
"northing": 139875.146 | |
}, | |
{ | |
"dist": 20098.9, | |
"alts": { | |
"DTM25": 395.2 | |
}, | |
"easting": 561069.519, | |
"northing": 139708.003 | |
}, | |
{ | |
"dist": 20279.3, | |
"alts": { | |
"DTM25": 393.9 | |
}, | |
"easting": 560982.409, | |
"northing": 139549.988 | |
}, | |
{ | |
"dist": 20459.7, | |
"alts": { | |
"DTM25": 393.4 | |
}, | |
"easting": 560895.298, | |
"northing": 139391.973 | |
}, | |
{ | |
"dist": 20640.2, | |
"alts": { | |
"DTM25": 390.9 | |
}, | |
"easting": 560808.187, | |
"northing": 139233.958 | |
}, | |
{ | |
"dist": 20820.6, | |
"alts": { | |
"DTM25": 385.7 | |
}, | |
"easting": 560721.077, | |
"northing": 139075.944 | |
}, | |
{ | |
"dist": 21001.0, | |
"alts": { | |
"DTM25": 381.2 | |
}, | |
"easting": 560633.966, | |
"northing": 138917.929 | |
}, | |
{ | |
"dist": 21181.5, | |
"alts": { | |
"DTM25": 377.5 | |
}, | |
"easting": 560546.855, | |
"northing": 138759.914 | |
}, | |
{ | |
"dist": 21361.9, | |
"alts": { | |
"DTM25": 375.0 | |
}, | |
"easting": 560459.745, | |
"northing": 138601.899 | |
}, | |
{ | |
"dist": 21542.4, | |
"alts": { | |
"DTM25": 373.9 | |
}, | |
"easting": 560372.634, | |
"northing": 138443.884 | |
}, | |
{ | |
"dist": 21729.9, | |
"alts": { | |
"DTM25": 373.5 | |
}, | |
"easting": 560245.134, | |
"northing": 138306.384 | |
}, | |
{ | |
"dist": 21917.4, | |
"alts": { | |
"DTM25": 373.7 | |
}, | |
"easting": 560117.634, | |
"northing": 138168.884 | |
}, | |
{ | |
"dist": 22104.9, | |
"alts": { | |
"DTM25": 373.9 | |
}, | |
"easting": 559990.134, | |
"northing": 138031.384 | |
}, | |
{ | |
"dist": 22292.4, | |
"alts": { | |
"DTM25": 374.0 | |
}, | |
"easting": 559862.634, | |
"northing": 137893.884 | |
}, | |
{ | |
"dist": 22463.4, | |
"alts": { | |
"DTM25": 374.5 | |
}, | |
"easting": 559693.467, | |
"northing": 137868.884 | |
}, | |
{ | |
"dist": 22634.4, | |
"alts": { | |
"DTM25": 374.2 | |
}, | |
"easting": 559524.301, | |
"northing": 137843.884 | |
}, | |
{ | |
"dist": 22805.4, | |
"alts": { | |
"DTM25": 373.9 | |
}, | |
"easting": 559355.134, | |
"northing": 137818.884 | |
}, | |
{ | |
"dist": 22976.4, | |
"alts": { | |
"DTM25": 373.9 | |
}, | |
"easting": 559185.967, | |
"northing": 137793.884 | |
}, | |
{ | |
"dist": 23147.4, | |
"alts": { | |
"DTM25": 373.9 | |
}, | |
"easting": 559016.801, | |
"northing": 137768.884 | |
}, | |
{ | |
"dist": 23318.4, | |
"alts": { | |
"DTM25": 374.2 | |
}, | |
"easting": 558847.634, | |
"northing": 137743.884 | |
}, | |
{ | |
"dist": 23489.4, | |
"alts": { | |
"DTM25": 374.5 | |
}, | |
"easting": 558678.467, | |
"northing": 137718.884 | |
}, | |
{ | |
"dist": 23660.5, | |
"alts": { | |
"DTM25": 374.4 | |
}, | |
"easting": 558509.301, | |
"northing": 137693.884 | |
}, | |
{ | |
"dist": 23831.5, | |
"alts": { | |
"DTM25": 374.2 | |
}, | |
"easting": 558340.134, | |
"northing": 137668.884 | |
}, | |
{ | |
"dist": 24002.5, | |
"alts": { | |
"DTM25": 373.8 | |
}, | |
"easting": 558170.967, | |
"northing": 137643.884 | |
}, | |
{ | |
"dist": 24173.5, | |
"alts": { | |
"DTM25": 373.3 | |
}, | |
"easting": 558001.801, | |
"northing": 137618.884 | |
}, | |
{ | |
"dist": 24344.5, | |
"alts": { | |
"DTM25": 373.1 | |
}, | |
"easting": 557832.634, | |
"northing": 137593.884 | |
}, | |
{ | |
"dist": 24525.7, | |
"alts": { | |
"DTM25": 372.9 | |
}, | |
"easting": 557654.172, | |
"northing": 137562.346 | |
}, | |
{ | |
"dist": 24706.9, | |
"alts": { | |
"DTM25": 373.1 | |
}, | |
"easting": 557475.711, | |
"northing": 137530.807 | |
}, | |
{ | |
"dist": 24888.1, | |
"alts": { | |
"DTM25": 373.3 | |
}, | |
"easting": 557297.249, | |
"northing": 137499.269 | |
}, | |
{ | |
"dist": 25069.4, | |
"alts": { | |
"DTM25": 373.3 | |
}, | |
"easting": 557118.788, | |
"northing": 137467.73 | |
}, | |
{ | |
"dist": 25250.6, | |
"alts": { | |
"DTM25": 373.5 | |
}, | |
"easting": 556940.326, | |
"northing": 137436.192 | |
}, | |
{ | |
"dist": 25431.8, | |
"alts": { | |
"DTM25": 373.8 | |
}, | |
"easting": 556761.865, | |
"northing": 137404.653 | |
}, | |
{ | |
"dist": 25613.1, | |
"alts": { | |
"DTM25": 373.7 | |
}, | |
"easting": 556583.403, | |
"northing": 137373.115 | |
}, | |
{ | |
"dist": 25794.3, | |
"alts": { | |
"DTM25": 374.0 | |
}, | |
"easting": 556404.942, | |
"northing": 137341.577 | |
}, | |
{ | |
"dist": 25975.5, | |
"alts": { | |
"DTM25": 374.3 | |
}, | |
"easting": 556226.48, | |
"northing": 137310.038 | |
}, | |
{ | |
"dist": 26156.7, | |
"alts": { | |
"DTM25": 373.9 | |
}, | |
"easting": 556048.019, | |
"northing": 137278.5 | |
}, | |
{ | |
"dist": 26338.0, | |
"alts": { | |
"DTM25": 373.8 | |
}, | |
"easting": 555869.557, | |
"northing": 137246.961 | |
}, | |
{ | |
"dist": 26519.2, | |
"alts": { | |
"DTM25": 373.4 | |
}, | |
"easting": 555691.096, | |
"northing": 137215.423 | |
}, | |
{ | |
"dist": 26700.4, | |
"alts": { | |
"DTM25": 373.2 | |
}, | |
"easting": 555512.634, | |
"northing": 137183.884 | |
}, | |
{ | |
"dist": 26886.4, | |
"alts": { | |
"DTM25": 374.6 | |
}, | |
"easting": 555334.634, | |
"northing": 137237.884 | |
}, | |
{ | |
"dist": 27072.4, | |
"alts": { | |
"DTM25": 376.8 | |
}, | |
"easting": 555156.634, | |
"northing": 137291.884 | |
}, | |
{ | |
"dist": 27258.4, | |
"alts": { | |
"DTM25": 381.3 | |
}, | |
"easting": 554978.634, | |
"northing": 137345.884 | |
}, | |
{ | |
"dist": 27444.5, | |
"alts": { | |
"DTM25": 388.5 | |
}, | |
"easting": 554800.634, | |
"northing": 137399.884 | |
}, | |
{ | |
"dist": 27630.5, | |
"alts": { | |
"DTM25": 395.2 | |
}, | |
"easting": 554622.634, | |
"northing": 137453.884 | |
}, | |
{ | |
"dist": 27820.4, | |
"alts": { | |
"DTM25": 400.9 | |
}, | |
"easting": 554434.063, | |
"northing": 137431.027 | |
}, | |
{ | |
"dist": 28010.4, | |
"alts": { | |
"DTM25": 402.9 | |
}, | |
"easting": 554245.491, | |
"northing": 137408.17 | |
}, | |
{ | |
"dist": 28200.3, | |
"alts": { | |
"DTM25": 404.0 | |
}, | |
"easting": 554056.92, | |
"northing": 137385.313 | |
}, | |
{ | |
"dist": 28390.3, | |
"alts": { | |
"DTM25": 402.4 | |
}, | |
"easting": 553868.348, | |
"northing": 137362.456 | |
}, | |
{ | |
"dist": 28580.2, | |
"alts": { | |
"DTM25": 397.0 | |
}, | |
"easting": 553679.777, | |
"northing": 137339.599 | |
}, | |
{ | |
"dist": 28770.2, | |
"alts": { | |
"DTM25": 393.2 | |
}, | |
"easting": 553491.205, | |
"northing": 137316.741 | |
}, | |
{ | |
"dist": 28960.1, | |
"alts": { | |
"DTM25": 388.7 | |
}, | |
"easting": 553302.634, | |
"northing": 137293.884 | |
}, | |
{ | |
"dist": 29142.7, | |
"alts": { | |
"DTM25": 381.7 | |
}, | |
"easting": 553129.153, | |
"northing": 137350.759 | |
}, | |
{ | |
"dist": 29325.3, | |
"alts": { | |
"DTM25": 380.5 | |
}, | |
"easting": 552955.671, | |
"northing": 137407.634 | |
}, | |
{ | |
"dist": 29507.8, | |
"alts": { | |
"DTM25": 378.8 | |
}, | |
"easting": 552782.19, | |
"northing": 137464.509 | |
}, | |
{ | |
"dist": 29690.4, | |
"alts": { | |
"DTM25": 381.2 | |
}, | |
"easting": 552608.708, | |
"northing": 137521.384 | |
}, | |
{ | |
"dist": 29873.0, | |
"alts": { | |
"DTM25": 389.2 | |
}, | |
"easting": 552435.227, | |
"northing": 137578.259 | |
}, | |
{ | |
"dist": 30055.5, | |
"alts": { | |
"DTM25": 396.0 | |
}, | |
"easting": 552261.745, | |
"northing": 137635.134 | |
}, | |
{ | |
"dist": 30238.1, | |
"alts": { | |
"DTM25": 404.9 | |
}, | |
"easting": 552088.264, | |
"northing": 137692.009 | |
}, | |
{ | |
"dist": 30420.7, | |
"alts": { | |
"DTM25": 414.2 | |
}, | |
"easting": 551914.782, | |
"northing": 137748.884 | |
}, | |
{ | |
"dist": 30603.2, | |
"alts": { | |
"DTM25": 413.8 | |
}, | |
"easting": 551741.301, | |
"northing": 137805.759 | |
}, | |
{ | |
"dist": 30785.8, | |
"alts": { | |
"DTM25": 410.2 | |
}, | |
"easting": 551567.819, | |
"northing": 137862.634 | |
}, | |
{ | |
"dist": 30968.4, | |
"alts": { | |
"DTM25": 410.0 | |
}, | |
"easting": 551394.338, | |
"northing": 137919.509 | |
}, | |
{ | |
"dist": 31150.9, | |
"alts": { | |
"DTM25": 408.0 | |
}, | |
"easting": 551220.857, | |
"northing": 137976.384 | |
}, | |
{ | |
"dist": 31333.5, | |
"alts": { | |
"DTM25": 404.0 | |
}, | |
"easting": 551047.375, | |
"northing": 138033.259 | |
}, | |
{ | |
"dist": 31516.1, | |
"alts": { | |
"DTM25": 399.5 | |
}, | |
"easting": 550873.894, | |
"northing": 138090.134 | |
}, | |
{ | |
"dist": 31695.3, | |
"alts": { | |
"DTM25": 391.5 | |
}, | |
"easting": 550700.257, | |
"northing": 138134.679 | |
}, | |
{ | |
"dist": 31874.6, | |
"alts": { | |
"DTM25": 382.2 | |
}, | |
"easting": 550526.621, | |
"northing": 138179.225 | |
}, | |
{ | |
"dist": 32053.8, | |
"alts": { | |
"DTM25": 377.0 | |
}, | |
"easting": 550352.985, | |
"northing": 138223.77 | |
}, | |
{ | |
"dist": 32233.1, | |
"alts": { | |
"DTM25": 373.6 | |
}, | |
"easting": 550179.348, | |
"northing": 138268.316 | |
}, | |
{ | |
"dist": 32412.4, | |
"alts": { | |
"DTM25": 372.0 | |
}, | |
"easting": 550005.712, | |
"northing": 138312.861 | |
}, | |
{ | |
"dist": 32591.6, | |
"alts": { | |
"DTM25": 372.1 | |
}, | |
"easting": 549832.075, | |
"northing": 138357.406 | |
}, | |
{ | |
"dist": 32770.9, | |
"alts": { | |
"DTM25": 374.2 | |
}, | |
"easting": 549658.439, | |
"northing": 138401.952 | |
}, | |
{ | |
"dist": 32950.1, | |
"alts": { | |
"DTM25": 377.5 | |
}, | |
"easting": 549484.803, | |
"northing": 138446.497 | |
}, | |
{ | |
"dist": 33129.4, | |
"alts": { | |
"DTM25": 380.4 | |
}, | |
"easting": 549311.166, | |
"northing": 138491.043 | |
}, | |
{ | |
"dist": 33308.7, | |
"alts": { | |
"DTM25": 386.6 | |
}, | |
"easting": 549137.53, | |
"northing": 138535.588 | |
}, | |
{ | |
"dist": 33487.9, | |
"alts": { | |
"DTM25": 388.7 | |
}, | |
"easting": 548963.894, | |
"northing": 138580.134 | |
}, | |
{ | |
"dist": 33661.9, | |
"alts": { | |
"DTM25": 384.9 | |
}, | |
"easting": 548802.227, | |
"northing": 138644.3 | |
}, | |
{ | |
"dist": 33835.8, | |
"alts": { | |
"DTM25": 384.3 | |
}, | |
"easting": 548640.56, | |
"northing": 138708.467 | |
}, | |
{ | |
"dist": 34009.7, | |
"alts": { | |
"DTM25": 383.7 | |
}, | |
"easting": 548478.894, | |
"northing": 138772.634 | |
}, | |
{ | |
"dist": 34183.7, | |
"alts": { | |
"DTM25": 382.1 | |
}, | |
"easting": 548317.227, | |
"northing": 138836.8 | |
}, | |
{ | |
"dist": 34357.6, | |
"alts": { | |
"DTM25": 382.2 | |
}, | |
"easting": 548155.56, | |
"northing": 138900.967 | |
}, | |
{ | |
"dist": 34531.5, | |
"alts": { | |
"DTM25": 381.0 | |
}, | |
"easting": 547993.894, | |
"northing": 138965.134 | |
}, | |
{ | |
"dist": 34705.5, | |
"alts": { | |
"DTM25": 381.7 | |
}, | |
"easting": 547832.227, | |
"northing": 139029.3 | |
}, | |
{ | |
"dist": 34879.4, | |
"alts": { | |
"DTM25": 386.3 | |
}, | |
"easting": 547670.56, | |
"northing": 139093.467 | |
}, | |
{ | |
"dist": 35053.3, | |
"alts": { | |
"DTM25": 390.5 | |
}, | |
"easting": 547508.894, | |
"northing": 139157.634 | |
}, | |
{ | |
"dist": 35227.3, | |
"alts": { | |
"DTM25": 392.1 | |
}, | |
"easting": 547347.227, | |
"northing": 139221.8 | |
}, | |
{ | |
"dist": 35401.2, | |
"alts": { | |
"DTM25": 394.9 | |
}, | |
"easting": 547185.56, | |
"northing": 139285.967 | |
}, | |
{ | |
"dist": 35575.1, | |
"alts": { | |
"DTM25": 393.7 | |
}, | |
"easting": 547023.894, | |
"northing": 139350.134 | |
} | |
] |
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": 677.7 | |
}, | |
"easting": 567927.974, | |
"northing": 131069.761 | |
}, | |
{ | |
"dist": 337.3, | |
"alts": { | |
"DTM25": 712.5 | |
}, | |
"easting": 568132.52, | |
"northing": 131337.943 | |
}, | |
{ | |
"dist": 674.6, | |
"alts": { | |
"DTM25": 772.4 | |
}, | |
"easting": 568337.065, | |
"northing": 131606.124 | |
}, | |
{ | |
"dist": 1011.9, | |
"alts": { | |
"DTM25": 835.3 | |
}, | |
"easting": 568541.61, | |
"northing": 131874.306 | |
}, | |
{ | |
"dist": 1349.1, | |
"alts": { | |
"DTM25": 882.7 | |
}, | |
"easting": 568746.156, | |
"northing": 132142.488 | |
}, | |
{ | |
"dist": 1686.4, | |
"alts": { | |
"DTM25": 916.6 | |
}, | |
"easting": 568950.701, | |
"northing": 132410.67 | |
}, | |
{ | |
"dist": 2023.7, | |
"alts": { | |
"DTM25": 932.7 | |
}, | |
"easting": 569155.247, | |
"northing": 132678.852 | |
}, | |
{ | |
"dist": 2361.0, | |
"alts": { | |
"DTM25": 921.1 | |
}, | |
"easting": 569359.792, | |
"northing": 132947.033 | |
}, | |
{ | |
"dist": 2698.3, | |
"alts": { | |
"DTM25": 915.7 | |
}, | |
"easting": 569564.338, | |
"northing": 133215.215 | |
}, | |
{ | |
"dist": 3035.6, | |
"alts": { | |
"DTM25": 925.1 | |
}, | |
"easting": 569768.883, | |
"northing": 133483.397 | |
}, | |
{ | |
"dist": 3372.8, | |
"alts": { | |
"DTM25": 930.9 | |
}, | |
"easting": 569973.429, | |
"northing": 133751.579 | |
}, | |
{ | |
"dist": 3710.1, | |
"alts": { | |
"DTM25": 938.5 | |
}, | |
"easting": 570177.974, | |
"northing": 134019.761 | |
}, | |
{ | |
"dist": 4049.4, | |
"alts": { | |
"DTM25": 956.8 | |
}, | |
"easting": 570517.26, | |
"northing": 134023.332 | |
}, | |
{ | |
"dist": 4388.7, | |
"alts": { | |
"DTM25": 967.0 | |
}, | |
"easting": 570856.545, | |
"northing": 134026.904 | |
}, | |
{ | |
"dist": 4728.0, | |
"alts": { | |
"DTM25": 982.7 | |
}, | |
"easting": 571195.831, | |
"northing": 134030.475 | |
}, | |
{ | |
"dist": 5067.3, | |
"alts": { | |
"DTM25": 1037.7 | |
}, | |
"easting": 571535.117, | |
"northing": 134034.046 | |
}, | |
{ | |
"dist": 5406.6, | |
"alts": { | |
"DTM25": 1033.8 | |
}, | |
"easting": 571874.403, | |
"northing": 134037.618 | |
}, | |
{ | |
"dist": 5745.9, | |
"alts": { | |
"DTM25": 1028.5 | |
}, | |
"easting": 572213.688, | |
"northing": 134041.189 | |
}, | |
{ | |
"dist": 6085.3, | |
"alts": { | |
"DTM25": 1034.5 | |
}, | |
"easting": 572552.974, | |
"northing": 134044.761 | |
}, | |
{ | |
"dist": 6424.6, | |
"alts": { | |
"DTM25": 1027.3 | |
}, | |
"easting": 572892.26, | |
"northing": 134048.332 | |
}, | |
{ | |
"dist": 6763.9, | |
"alts": { | |
"DTM25": 1037.2 | |
}, | |
"easting": 573231.545, | |
"northing": 134051.904 | |
}, | |
{ | |
"dist": 7103.2, | |
"alts": { | |
"DTM25": 1065.9 | |
}, | |
"easting": 573570.831, | |
"northing": 134055.475 | |
}, | |
{ | |
"dist": 7442.5, | |
"alts": { | |
"DTM25": 1091.7 | |
}, | |
"easting": 573910.117, | |
"northing": 134059.046 | |
}, | |
{ | |
"dist": 7781.8, | |
"alts": { | |
"DTM25": 1110.3 | |
}, | |
"easting": 574249.403, | |
"northing": 134062.618 | |
}, | |
{ | |
"dist": 8121.1, | |
"alts": { | |
"DTM25": 1130.7 | |
}, | |
"easting": 574588.688, | |
"northing": 134066.189 | |
}, | |
{ | |
"dist": 8460.4, | |
"alts": { | |
"DTM25": 1148.7 | |
}, | |
"easting": 574927.974, | |
"northing": 134069.761 | |
}, | |
{ | |
"dist": 8790.7, | |
"alts": { | |
"DTM25": 1147.5 | |
}, | |
"easting": 575254.445, | |
"northing": 134019.761 | |
}, | |
{ | |
"dist": 9120.9, | |
"alts": { | |
"DTM25": 1147.6 | |
}, | |
"easting": 575580.915, | |
"northing": 133969.761 | |
}, | |
{ | |
"dist": 9451.2, | |
"alts": { | |
"DTM25": 1145.1 | |
}, | |
"easting": 575907.386, | |
"northing": 133919.761 | |
}, | |
{ | |
"dist": 9781.5, | |
"alts": { | |
"DTM25": 1140.4 | |
}, | |
"easting": 576233.856, | |
"northing": 133869.761 | |
}, | |
{ | |
"dist": 10111.8, | |
"alts": { | |
"DTM25": 1145.1 | |
}, | |
"easting": 576560.327, | |
"northing": 133819.761 | |
}, | |
{ | |
"dist": 10442.0, | |
"alts": { | |
"DTM25": 1146.5 | |
}, | |
"easting": 576886.798, | |
"northing": 133769.761 | |
}, | |
{ | |
"dist": 10772.3, | |
"alts": { | |
"DTM25": 1152.2 | |
}, | |
"easting": 577213.268, | |
"northing": 133719.761 | |
}, | |
{ | |
"dist": 11102.6, | |
"alts": { | |
"DTM25": 1160.4 | |
}, | |
"easting": 577539.739, | |
"northing": 133669.761 | |
}, | |
{ | |
"dist": 11432.9, | |
"alts": { | |
"DTM25": 1176.0 | |
}, | |
"easting": 577866.209, | |
"northing": 133619.761 | |
}, | |
{ | |
"dist": 11763.2, | |
"alts": { | |
"DTM25": 1201.1 | |
}, | |
"easting": 578192.68, | |
"northing": 133569.761 | |
}, | |
{ | |
"dist": 12093.4, | |
"alts": { | |
"DTM25": 1235.5 | |
}, | |
"easting": 578519.151, | |
"northing": 133519.761 | |
}, | |
{ | |
"dist": 12423.7, | |
"alts": { | |
"DTM25": 1269.6 | |
}, | |
"easting": 578845.621, | |
"northing": 133469.761 | |
}, | |
{ | |
"dist": 12754.0, | |
"alts": { | |
"DTM25": 1303.8 | |
}, | |
"easting": 579172.092, | |
"northing": 133419.761 | |
}, | |
{ | |
"dist": 13084.3, | |
"alts": { | |
"DTM25": 1334.3 | |
}, | |
"easting": 579498.562, | |
"northing": 133369.761 | |
}, | |
{ | |
"dist": 13414.5, | |
"alts": { | |
"DTM25": 1354.0 | |
}, | |
"easting": 579825.033, | |
"northing": 133319.761 | |
}, | |
{ | |
"dist": 13744.8, | |
"alts": { | |
"DTM25": 1386.9 | |
}, | |
"easting": 580151.503, | |
"northing": 133269.761 | |
}, | |
{ | |
"dist": 14075.1, | |
"alts": { | |
"DTM25": 1424.4 | |
}, | |
"easting": 580477.974, | |
"northing": 133219.761 | |
}, | |
{ | |
"dist": 14407.4, | |
"alts": { | |
"DTM25": 1468.9 | |
}, | |
"easting": 580732.52, | |
"northing": 133006.124 | |
}, | |
{ | |
"dist": 14739.7, | |
"alts": { | |
"DTM25": 1567.2 | |
}, | |
"easting": 580987.065, | |
"northing": 132792.488 | |
}, | |
{ | |
"dist": 15072.0, | |
"alts": { | |
"DTM25": 1694.4 | |
}, | |
"easting": 581241.61, | |
"northing": 132578.852 | |
}, | |
{ | |
"dist": 15404.4, | |
"alts": { | |
"DTM25": 1826.3 | |
}, | |
"easting": 581496.156, | |
"northing": 132365.215 | |
}, | |
{ | |
"dist": 15736.7, | |
"alts": { | |
"DTM25": 1974.0 | |
}, | |
"easting": 581750.701, | |
"northing": 132151.579 | |
}, | |
{ | |
"dist": 16069.0, | |
"alts": { | |
"DTM25": 2138.1 | |
}, | |
"easting": 582005.247, | |
"northing": 131937.943 | |
}, | |
{ | |
"dist": 16401.3, | |
"alts": { | |
"DTM25": 2292.3 | |
}, | |
"easting": 582259.792, | |
"northing": 131724.306 | |
}, | |
{ | |
"dist": 16733.6, | |
"alts": { | |
"DTM25": 2467.3 | |
}, | |
"easting": 582514.338, | |
"northing": 131510.67 | |
}, | |
{ | |
"dist": 17065.9, | |
"alts": { | |
"DTM25": 2632.0 | |
}, | |
"easting": 582768.883, | |
"northing": 131297.033 | |
}, | |
{ | |
"dist": 17398.3, | |
"alts": { | |
"DTM25": 2762.3 | |
}, | |
"easting": 583023.429, | |
"northing": 131083.397 | |
}, | |
{ | |
"dist": 17730.6, | |
"alts": { | |
"DTM25": 2856.0 | |
}, | |
"easting": 583277.974, | |
"northing": 130869.761 | |
}, | |
{ | |
"dist": 18057.5, | |
"alts": { | |
"DTM25": 2833.6 | |
}, | |
"easting": 583460.117, | |
"northing": 130598.332 | |
}, | |
{ | |
"dist": 18384.3, | |
"alts": { | |
"DTM25": 2795.1 | |
}, | |
"easting": 583642.26, | |
"northing": 130326.904 | |
}, | |
{ | |
"dist": 18711.2, | |
"alts": { | |
"DTM25": 2756.4 | |
}, | |
"easting": 583824.403, | |
"northing": 130055.475 | |
}, | |
{ | |
"dist": 19038.1, | |
"alts": { | |
"DTM25": 2704.3 | |
}, | |
"easting": 584006.545, | |
"northing": 129784.046 | |
}, | |
{ | |
"dist": 19365.0, | |
"alts": { | |
"DTM25": 2669.6 | |
}, | |
"easting": 584188.688, | |
"northing": 129512.618 | |
}, | |
{ | |
"dist": 19691.8, | |
"alts": { | |
"DTM25": 2643.3 | |
}, | |
"easting": 584370.831, | |
"northing": 129241.189 | |
}, | |
{ | |
"dist": 20018.7, | |
"alts": { | |
"DTM25": 2609.0 | |
}, | |
"easting": 584552.974, | |
"northing": 128969.761 | |
}, | |
{ | |
"dist": 20345.6, | |
"alts": { | |
"DTM25": 2555.5 | |
}, | |
"easting": 584735.117, | |
"northing": 128698.332 | |
}, | |
{ | |
"dist": 20672.5, | |
"alts": { | |
"DTM25": 2467.5 | |
}, | |
"easting": 584917.26, | |
"northing": 128426.904 | |
}, | |
{ | |
"dist": 20999.4, | |
"alts": { | |
"DTM25": 2324.8 | |
}, | |
"easting": 585099.403, | |
"northing": 128155.475 | |
}, | |
{ | |
"dist": 21326.2, | |
"alts": { | |
"DTM25": 2157.2 | |
}, | |
"easting": 585281.545, | |
"northing": 127884.046 | |
}, | |
{ | |
"dist": 21653.1, | |
"alts": { | |
"DTM25": 1992.7 | |
}, | |
"easting": 585463.688, | |
"northing": 127612.618 | |
}, | |
{ | |
"dist": 21980.0, | |
"alts": { | |
"DTM25": 1883.1 | |
}, | |
"easting": 585645.831, | |
"northing": 127341.189 | |
}, | |
{ | |
"dist": 22306.9, | |
"alts": { | |
"DTM25": 1863.0 | |
}, | |
"easting": 585827.974, | |
"northing": 127069.761 | |
}, | |
{ | |
"dist": 22626.8, | |
"alts": { | |
"DTM25": 1941.6 | |
}, | |
"easting": 586117.974, | |
"northing": 126934.761 | |
}, | |
{ | |
"dist": 22946.6, | |
"alts": { | |
"DTM25": 2072.1 | |
}, | |
"easting": 586407.974, | |
"northing": 126799.761 | |
}, | |
{ | |
"dist": 23266.5, | |
"alts": { | |
"DTM25": 2180.7 | |
}, | |
"easting": 586697.974, | |
"northing": 126664.761 | |
}, | |
{ | |
"dist": 23586.4, | |
"alts": { | |
"DTM25": 2228.7 | |
}, | |
"easting": 586987.974, | |
"northing": 126529.761 | |
}, | |
{ | |
"dist": 23906.3, | |
"alts": { | |
"DTM25": 2226.6 | |
}, | |
"easting": 587277.974, | |
"northing": 126394.761 | |
}, | |
{ | |
"dist": 24226.2, | |
"alts": { | |
"DTM25": 2192.8 | |
}, | |
"easting": 587567.974, | |
"northing": 126259.761 | |
}, | |
{ | |
"dist": 24546.0, | |
"alts": { | |
"DTM25": 2133.6 | |
}, | |
"easting": 587857.974, | |
"northing": 126124.761 | |
}, | |
{ | |
"dist": 24865.9, | |
"alts": { | |
"DTM25": 2054.6 | |
}, | |
"easting": 588147.974, | |
"northing": 125989.761 | |
}, | |
{ | |
"dist": 25185.8, | |
"alts": { | |
"DTM25": 1962.1 | |
}, | |
"easting": 588437.974, | |
"northing": 125854.761 | |
}, | |
{ | |
"dist": 25505.7, | |
"alts": { | |
"DTM25": 1848.1 | |
}, | |
"easting": 588727.974, | |
"northing": 125719.761 | |
}, | |
{ | |
"dist": 25843.0, | |
"alts": { | |
"DTM25": 1725.3 | |
}, | |
"easting": 588981.974, | |
"northing": 125497.761 | |
}, | |
{ | |
"dist": 26180.4, | |
"alts": { | |
"DTM25": 1593.0 | |
}, | |
"easting": 589235.974, | |
"northing": 125275.761 | |
}, | |
{ | |
"dist": 26517.7, | |
"alts": { | |
"DTM25": 1454.4 | |
}, | |
"easting": 589489.974, | |
"northing": 125053.761 | |
}, | |
{ | |
"dist": 26855.1, | |
"alts": { | |
"DTM25": 1334.3 | |
}, | |
"easting": 589743.974, | |
"northing": 124831.761 | |
}, | |
{ | |
"dist": 27192.4, | |
"alts": { | |
"DTM25": 1203.5 | |
}, | |
"easting": 589997.974, | |
"northing": 124609.761 | |
}, | |
{ | |
"dist": 27529.8, | |
"alts": { | |
"DTM25": 1103.7 | |
}, | |
"easting": 590251.974, | |
"northing": 124387.761 | |
}, | |
{ | |
"dist": 27867.1, | |
"alts": { | |
"DTM25": 1046.2 | |
}, | |
"easting": 590505.974, | |
"northing": 124165.761 | |
}, | |
{ | |
"dist": 28204.4, | |
"alts": { | |
"DTM25": 993.2 | |
}, | |
"easting": 590759.974, | |
"northing": 123943.761 | |
}, | |
{ | |
"dist": 28541.8, | |
"alts": { | |
"DTM25": 1012.6 | |
}, | |
"easting": 591013.974, | |
"northing": 123721.761 | |
}, | |
{ | |
"dist": 28879.1, | |
"alts": { | |
"DTM25": 1077.7 | |
}, | |
"easting": 591267.974, | |
"northing": 123499.761 | |
}, | |
{ | |
"dist": 29216.5, | |
"alts": { | |
"DTM25": 1094.5 | |
}, | |
"easting": 591521.974, | |
"northing": 123277.761 | |
}, | |
{ | |
"dist": 29553.8, | |
"alts": { | |
"DTM25": 1082.7 | |
}, | |
"easting": 591775.974, | |
"northing": 123055.761 | |
}, | |
{ | |
"dist": 29891.2, | |
"alts": { | |
"DTM25": 1051.0 | |
}, | |
"easting": 592029.974, | |
"northing": 122833.761 | |
}, | |
{ | |
"dist": 30228.5, | |
"alts": { | |
"DTM25": 994.5 | |
}, | |
"easting": 592283.974, | |
"northing": 122611.761 | |
}, | |
{ | |
"dist": 30565.8, | |
"alts": { | |
"DTM25": 930.4 | |
}, | |
"easting": 592537.974, | |
"northing": 122389.761 | |
}, | |
{ | |
"dist": 30903.2, | |
"alts": { | |
"DTM25": 870.7 | |
}, | |
"easting": 592791.974, | |
"northing": 122167.761 | |
}, | |
{ | |
"dist": 31240.5, | |
"alts": { | |
"DTM25": 819.1 | |
}, | |
"easting": 593045.974, | |
"northing": 121945.761 | |
}, | |
{ | |
"dist": 31577.9, | |
"alts": { | |
"DTM25": 767.9 | |
}, | |
"easting": 593299.974, | |
"northing": 121723.761 | |
}, | |
{ | |
"dist": 31915.2, | |
"alts": { | |
"DTM25": 718.0 | |
}, | |
"easting": 593553.974, | |
"northing": 121501.761 | |
}, | |
{ | |
"dist": 32252.5, | |
"alts": { | |
"DTM25": 666.3 | |
}, | |
"easting": 593807.974, | |
"northing": 121279.761 | |
}, | |
{ | |
"dist": 32589.9, | |
"alts": { | |
"DTM25": 611.1 | |
}, | |
"easting": 594061.974, | |
"northing": 121057.761 | |
}, | |
{ | |
"dist": 32927.2, | |
"alts": { | |
"DTM25": 574.2 | |
}, | |
"easting": 594315.974, | |
"northing": 120835.761 | |
}, | |
{ | |
"dist": 33264.6, | |
"alts": { | |
"DTM25": 554.3 | |
}, | |
"easting": 594569.974, | |
"northing": 120613.761 | |
}, | |
{ | |
"dist": 33601.9, | |
"alts": { | |
"DTM25": 518.1 | |
}, | |
"easting": 594823.974, | |
"northing": 120391.761 | |
}, | |
{ | |
"dist": 33939.3, | |
"alts": { | |
"DTM25": 505.1 | |
}, | |
"easting": 595077.974, | |
"northing": 120169.761 | |
}, | |
{ | |
"dist": 34271.7, | |
"alts": { | |
"DTM25": 514.4 | |
}, | |
"easting": 595117.974, | |
"northing": 120499.761 | |
}, | |
{ | |
"dist": 34604.1, | |
"alts": { | |
"DTM25": 528.8 | |
}, | |
"easting": 595157.974, | |
"northing": 120829.761 | |
}, | |
{ | |
"dist": 34936.5, | |
"alts": { | |
"DTM25": 567.5 | |
}, | |
"easting": 595197.974, | |
"northing": 121159.761 | |
}, | |
{ | |
"dist": 35268.9, | |
"alts": { | |
"DTM25": 646.0 | |
}, | |
"easting": 595237.974, | |
"northing": 121489.761 | |
}, | |
{ | |
"dist": 35601.3, | |
"alts": { | |
"DTM25": 701.4 | |
}, | |
"easting": 595277.974, | |
"northing": 121819.761 | |
}, | |
{ | |
"dist": 35933.8, | |
"alts": { | |
"DTM25": 754.1 | |
}, | |
"easting": 595317.974, | |
"northing": 122149.761 | |
}, | |
{ | |
"dist": 36266.2, | |
"alts": { | |
"DTM25": 810.4 | |
}, | |
"easting": 595357.974, | |
"northing": 122479.761 | |
}, | |
{ | |
"dist": 36598.6, | |
"alts": { | |
"DTM25": 843.3 | |
}, | |
"easting": 595397.974, | |
"northing": 122809.761 | |
}, | |
{ | |
"dist": 36931.0, | |
"alts": { | |
"DTM25": 876.6 | |
}, | |
"easting": 595437.974, | |
"northing": 123139.761 | |
}, | |
{ | |
"dist": 37263.4, | |
"alts": { | |
"DTM25": 931.2 | |
}, | |
"easting": 595477.974, | |
"northing": 123469.761 | |
}, | |
{ | |
"dist": 37595.8, | |
"alts": { | |
"DTM25": 989.6 | |
}, | |
"easting": 595517.974, | |
"northing": 123799.761 | |
}, | |
{ | |
"dist": 37928.2, | |
"alts": { | |
"DTM25": 1053.5 | |
}, | |
"easting": 595557.974, | |
"northing": 124129.761 | |
}, | |
{ | |
"dist": 38260.7, | |
"alts": { | |
"DTM25": 1121.3 | |
}, | |
"easting": 595597.974, | |
"northing": 124459.761 | |
}, | |
{ | |
"dist": 38593.1, | |
"alts": { | |
"DTM25": 1188.3 | |
}, | |
"easting": 595637.974, | |
"northing": 124789.761 | |
}, | |
{ | |
"dist": 38925.5, | |
"alts": { | |
"DTM25": 1257.6 | |
}, | |
"easting": 595677.974, | |
"northing": 125119.761 | |
}, | |
{ | |
"dist": 39257.9, | |
"alts": { | |
"DTM25": 1329.9 | |
}, | |
"easting": 595717.974, | |
"northing": 125449.761 | |
}, | |
{ | |
"dist": 39590.3, | |
"alts": { | |
"DTM25": 1413.6 | |
}, | |
"easting": 595757.974, | |
"northing": 125779.761 | |
}, | |
{ | |
"dist": 39922.7, | |
"alts": { | |
"DTM25": 1507.4 | |
}, | |
"easting": 595797.974, | |
"northing": 126109.761 | |
}, | |
{ | |
"dist": 40255.2, | |
"alts": { | |
"DTM25": 1603.6 | |
}, | |
"easting": 595837.974, | |
"northing": 126439.761 | |
}, | |
{ | |
"dist": 40587.6, | |
"alts": { | |
"DTM25": 1704.6 | |
}, | |
"easting": 595877.974, | |
"northing": 126769.761 | |
}, | |
{ | |
"dist": 40920.0, | |
"alts": { | |
"DTM25": 1793.5 | |
}, | |
"easting": 595917.974, | |
"northing": 127099.761 | |
}, | |
{ | |
"dist": 41252.4, | |
"alts": { | |
"DTM25": 1873.5 | |
}, | |
"easting": 595957.974, | |
"northing": 127429.761 | |
}, | |
{ | |
"dist": 41584.8, | |
"alts": { | |
"DTM25": 1953.6 | |
}, | |
"easting": 595997.974, | |
"northing": 127759.761 | |
}, | |
{ | |
"dist": 41917.2, | |
"alts": { | |
"DTM25": 2032.2 | |
}, | |
"easting": 596037.974, | |
"northing": 128089.761 | |
}, | |
{ | |
"dist": 42249.6, | |
"alts": { | |
"DTM25": 2120.3 | |
}, | |
"easting": 596077.974, | |
"northing": 128419.761 | |
}, | |
{ | |
"dist": 42591.8, | |
"alts": { | |
"DTM25": 2225.2 | |
}, | |
"easting": 596030.752, | |
"northing": 128758.65 | |
}, | |
{ | |
"dist": 42934.0, | |
"alts": { | |
"DTM25": 2317.6 | |
}, | |
"easting": 595983.53, | |
"northing": 129097.538 | |
}, | |
{ | |
"dist": 43276.1, | |
"alts": { | |
"DTM25": 2412.5 | |
}, | |
"easting": 595936.307, | |
"northing": 129436.427 | |
}, | |
{ | |
"dist": 43618.3, | |
"alts": { | |
"DTM25": 2515.9 | |
}, | |
"easting": 595889.085, | |
"northing": 129775.316 | |
}, | |
{ | |
"dist": 43960.5, | |
"alts": { | |
"DTM25": 2573.9 | |
}, | |
"easting": 595841.863, | |
"northing": 130114.205 | |
}, | |
{ | |
"dist": 44302.6, | |
"alts": { | |
"DTM25": 2645.1 | |
}, | |
"easting": 595794.641, | |
"northing": 130453.094 | |
}, | |
{ | |
"dist": 44644.8, | |
"alts": { | |
"DTM25": 2676.6 | |
}, | |
"easting": 595747.419, | |
"northing": 130791.983 | |
}, | |
{ | |
"dist": 44987.0, | |
"alts": { | |
"DTM25": 2644.6 | |
}, | |
"easting": 595700.196, | |
"northing": 131130.872 | |
}, | |
{ | |
"dist": 45329.1, | |
"alts": { | |
"DTM25": 2612.6 | |
}, | |
"easting": 595652.974, | |
"northing": 131469.761 | |
}, | |
{ | |
"dist": 45671.3, | |
"alts": { | |
"DTM25": 2581.0 | |
}, | |
"easting": 595605.752, | |
"northing": 131808.65 | |
}, | |
{ | |
"dist": 46013.4, | |
"alts": { | |
"DTM25": 2564.3 | |
}, | |
"easting": 595558.53, | |
"northing": 132147.538 | |
}, | |
{ | |
"dist": 46355.6, | |
"alts": { | |
"DTM25": 2578.8 | |
}, | |
"easting": 595511.307, | |
"northing": 132486.427 | |
}, | |
{ | |
"dist": 46697.8, | |
"alts": { | |
"DTM25": 2625.9 | |
}, | |
"easting": 595464.085, | |
"northing": 132825.316 | |
}, | |
{ | |
"dist": 47039.9, | |
"alts": { | |
"DTM25": 2713.7 | |
}, | |
"easting": 595416.863, | |
"northing": 133164.205 | |
}, | |
{ | |
"dist": 47382.1, | |
"alts": { | |
"DTM25": 2783.9 | |
}, | |
"easting": 595369.641, | |
"northing": 133503.094 | |
}, | |
{ | |
"dist": 47724.3, | |
"alts": { | |
"DTM25": 2842.7 | |
}, | |
"easting": 595322.419, | |
"northing": 133841.983 | |
}, | |
{ | |
"dist": 48066.4, | |
"alts": { | |
"DTM25": 2879.5 | |
}, | |
"easting": 595275.196, | |
"northing": 134180.872 | |
}, | |
{ | |
"dist": 48408.6, | |
"alts": { | |
"DTM25": 2876.2 | |
}, | |
"easting": 595227.974, | |
"northing": 134519.761 | |
}, | |
{ | |
"dist": 48736.5, | |
"alts": { | |
"DTM25": 2844.0 | |
}, | |
"easting": 595511.857, | |
"northing": 134683.84 | |
}, | |
{ | |
"dist": 49064.4, | |
"alts": { | |
"DTM25": 2817.6 | |
}, | |
"easting": 595795.74, | |
"northing": 134847.92 | |
}, | |
{ | |
"dist": 49392.3, | |
"alts": { | |
"DTM25": 2793.3 | |
}, | |
"easting": 596079.623, | |
"northing": 135012.0 | |
}, | |
{ | |
"dist": 49720.1, | |
"alts": { | |
"DTM25": 2761.7 | |
}, | |
"easting": 596363.506, | |
"northing": 135176.08 | |
}, | |
{ | |
"dist": 50048.0, | |
"alts": { | |
"DTM25": 2771.6 | |
}, | |
"easting": 596647.389, | |
"northing": 135340.16 | |
}, | |
{ | |
"dist": 50375.9, | |
"alts": { | |
"DTM25": 2741.1 | |
}, | |
"easting": 596931.272, | |
"northing": 135504.239 | |
}, | |
{ | |
"dist": 50703.8, | |
"alts": { | |
"DTM25": 2710.4 | |
}, | |
"easting": 597215.155, | |
"northing": 135668.319 | |
}, | |
{ | |
"dist": 51031.7, | |
"alts": { | |
"DTM25": 2695.9 | |
}, | |
"easting": 597499.038, | |
"northing": 135832.399 | |
}, | |
{ | |
"dist": 51359.6, | |
"alts": { | |
"DTM25": 2653.0 | |
}, | |
"easting": 597782.921, | |
"northing": 135996.479 | |
}, | |
{ | |
"dist": 51687.5, | |
"alts": { | |
"DTM25": 2623.9 | |
}, | |
"easting": 598066.804, | |
"northing": 136160.558 | |
}, | |
{ | |
"dist": 52015.4, | |
"alts": { | |
"DTM25": 2632.8 | |
}, | |
"easting": 598350.687, | |
"northing": 136324.638 | |
}, | |
{ | |
"dist": 52343.3, | |
"alts": { | |
"DTM25": 2607.9 | |
}, | |
"easting": 598634.57, | |
"northing": 136488.718 | |
}, | |
{ | |
"dist": 52671.2, | |
"alts": { | |
"DTM25": 2583.4 | |
}, | |
"easting": 598918.453, | |
"northing": 136652.798 | |
}, | |
{ | |
"dist": 52999.0, | |
"alts": { | |
"DTM25": 2569.3 | |
}, | |
"easting": 599202.335, | |
"northing": 136816.878 | |
}, | |
{ | |
"dist": 53326.9, | |
"alts": { | |
"DTM25": 2549.0 | |
}, | |
"easting": 599486.218, | |
"northing": 136980.957 | |
}, | |
{ | |
"dist": 53654.8, | |
"alts": { | |
"DTM25": 2530.0 | |
}, | |
"easting": 599770.101, | |
"northing": 137145.037 | |
}, | |
{ | |
"dist": 53986.6, | |
"alts": { | |
"DTM25": 2498.4 | |
}, | |
"easting": 599954.717, | |
"northing": 136869.396 | |
}, | |
{ | |
"dist": 54318.3, | |
"alts": { | |
"DTM25": 2492.0 | |
}, | |
"easting": 600139.332, | |
"northing": 136593.755 | |
}, | |
{ | |
"dist": 54650.1, | |
"alts": { | |
"DTM25": 2510.8 | |
}, | |
"easting": 600323.948, | |
"northing": 136318.114 | |
}, | |
{ | |
"dist": 54981.8, | |
"alts": { | |
"DTM25": 2548.3 | |
}, | |
"easting": 600508.563, | |
"northing": 136042.473 | |
}, | |
{ | |
"dist": 55313.6, | |
"alts": { | |
"DTM25": 2600.9 | |
}, | |
"easting": 600693.178, | |
"northing": 135766.832 | |
}, | |
{ | |
"dist": 55645.3, | |
"alts": { | |
"DTM25": 2599.8 | |
}, | |
"easting": 600877.794, | |
"northing": 135491.191 | |
}, | |
{ | |
"dist": 55977.1, | |
"alts": { | |
"DTM25": 2566.2 | |
}, | |
"easting": 601062.409, | |
"northing": 135215.55 | |
}, | |
{ | |
"dist": 56308.9, | |
"alts": { | |
"DTM25": 2533.2 | |
}, | |
"easting": 601247.024, | |
"northing": 134939.909 | |
}, | |
{ | |
"dist": 56640.6, | |
"alts": { | |
"DTM25": 2491.1 | |
}, | |
"easting": 601431.64, | |
"northing": 134664.268 | |
}, | |
{ | |
"dist": 56972.4, | |
"alts": { | |
"DTM25": 2458.2 | |
}, | |
"easting": 601616.255, | |
"northing": 134388.627 | |
}, | |
{ | |
"dist": 57304.1, | |
"alts": { | |
"DTM25": 2417.4 | |
}, | |
"easting": 601800.871, | |
"northing": 134112.986 | |
}, | |
{ | |
"dist": 57635.9, | |
"alts": { | |
"DTM25": 2344.9 | |
}, | |
"easting": 601985.486, | |
"northing": 133837.345 | |
}, | |
{ | |
"dist": 57967.6, | |
"alts": { | |
"DTM25": 2238.4 | |
}, | |
"easting": 602170.101, | |
"northing": 133561.704 | |
}, | |
{ | |
"dist": 58299.4, | |
"alts": { | |
"DTM25": 2122.6 | |
}, | |
"easting": 602354.717, | |
"northing": 133286.063 | |
}, | |
{ | |
"dist": 58631.1, | |
"alts": { | |
"DTM25": 2056.7 | |
}, | |
"easting": 602539.332, | |
"northing": 133010.422 | |
}, | |
{ | |
"dist": 58962.9, | |
"alts": { | |
"DTM25": 2038.6 | |
}, | |
"easting": 602723.948, | |
"northing": 132734.781 | |
}, | |
{ | |
"dist": 59294.6, | |
"alts": { | |
"DTM25": 2071.7 | |
}, | |
"easting": 602908.563, | |
"northing": 132459.14 | |
}, | |
{ | |
"dist": 59626.4, | |
"alts": { | |
"DTM25": 2142.5 | |
}, | |
"easting": 603093.178, | |
"northing": 132183.499 | |
}, | |
{ | |
"dist": 59958.1, | |
"alts": { | |
"DTM25": 2153.4 | |
}, | |
"easting": 603277.794, | |
"northing": 131907.858 | |
}, | |
{ | |
"dist": 60289.9, | |
"alts": { | |
"DTM25": 2103.0 | |
}, | |
"easting": 603462.409, | |
"northing": 131632.217 | |
}, | |
{ | |
"dist": 60621.7, | |
"alts": { | |
"DTM25": 2030.9 | |
}, | |
"easting": 603647.024, | |
"northing": 131356.576 | |
}, | |
{ | |
"dist": 60953.4, | |
"alts": { | |
"DTM25": 1932.2 | |
}, | |
"easting": 603831.64, | |
"northing": 131080.935 | |
}, | |
{ | |
"dist": 61285.2, | |
"alts": { | |
"DTM25": 1822.9 | |
}, | |
"easting": 604016.255, | |
"northing": 130805.294 | |
}, | |
{ | |
"dist": 61616.9, | |
"alts": { | |
"DTM25": 1726.8 | |
}, | |
"easting": 604200.871, | |
"northing": 130529.652 | |
}, | |
{ | |
"dist": 61948.7, | |
"alts": { | |
"DTM25": 1635.3 | |
}, | |
"easting": 604385.486, | |
"northing": 130254.011 | |
}, | |
{ | |
"dist": 62280.4, | |
"alts": { | |
"DTM25": 1548.4 | |
}, | |
"easting": 604570.101, | |
"northing": 129978.37 | |
}, | |
{ | |
"dist": 62612.2, | |
"alts": { | |
"DTM25": 1475.8 | |
}, | |
"easting": 604754.717, | |
"northing": 129702.729 | |
}, | |
{ | |
"dist": 62943.9, | |
"alts": { | |
"DTM25": 1395.1 | |
}, | |
"easting": 604939.332, | |
"northing": 129427.088 | |
}, | |
{ | |
"dist": 63275.7, | |
"alts": { | |
"DTM25": 1311.7 | |
}, | |
"easting": 605123.948, | |
"northing": 129151.447 | |
}, | |
{ | |
"dist": 63607.4, | |
"alts": { | |
"DTM25": 1222.7 | |
}, | |
"easting": 605308.563, | |
"northing": 128875.806 | |
}, | |
{ | |
"dist": 63939.2, | |
"alts": { | |
"DTM25": 1124.3 | |
}, | |
"easting": 605493.178, | |
"northing": 128600.165 | |
}, | |
{ | |
"dist": 64271.0, | |
"alts": { | |
"DTM25": 1025.7 | |
}, | |
"easting": 605677.794, | |
"northing": 128324.524 | |
}, | |
{ | |
"dist": 64602.7, | |
"alts": { | |
"DTM25": 926.0 | |
}, | |
"easting": 605862.409, | |
"northing": 128048.883 | |
}, | |
{ | |
"dist": 64934.5, | |
"alts": { | |
"DTM25": 836.4 | |
}, | |
"easting": 606047.024, | |
"northing": 127773.242 | |
}, | |
{ | |
"dist": 65266.2, | |
"alts": { | |
"DTM25": 751.7 | |
}, | |
"easting": 606231.64, | |
"northing": 127497.601 | |
}, | |
{ | |
"dist": 65598.0, | |
"alts": { | |
"DTM25": 673.0 | |
}, | |
"easting": 606416.255, | |
"northing": 127221.96 | |
}, | |
{ | |
"dist": 65929.7, | |
"alts": { | |
"DTM25": 620.2 | |
}, | |
"easting": 606600.871, | |
"northing": 126946.319 | |
}, | |
{ | |
"dist": 66261.5, | |
"alts": { | |
"DTM25": 581.2 | |
}, | |
"easting": 606785.486, | |
"northing": 126670.678 | |
}, | |
{ | |
"dist": 66593.2, | |
"alts": { | |
"DTM25": 554.6 | |
}, | |
"easting": 606970.101, | |
"northing": 126395.037 | |
} | |
] |
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": 731.2 | |
}, | |
"easting": 546925.0, | |
"northing": 152610.0 | |
}, | |
{ | |
"dist": 22.3, | |
"alts": { | |
"DTM25": 731.0 | |
}, | |
"easting": 546947.267, | |
"northing": 152609.2 | |
}, | |
{ | |
"dist": 44.6, | |
"alts": { | |
"DTM25": 730.4 | |
}, | |
"easting": 546969.533, | |
"northing": 152608.4 | |
}, | |
{ | |
"dist": 66.8, | |
"alts": { | |
"DTM25": 729.5 | |
}, | |
"easting": 546991.8, | |
"northing": 152607.6 | |
}, | |
{ | |
"dist": 89.1, | |
"alts": { | |
"DTM25": 728.1 | |
}, | |
"easting": 547014.067, | |
"northing": 152606.8 | |
}, | |
{ | |
"dist": 111.4, | |
"alts": { | |
"DTM25": 726.1 | |
}, | |
"easting": 547036.333, | |
"northing": 152606.0 | |
}, | |
{ | |
"dist": 133.7, | |
"alts": { | |
"DTM25": 723.5 | |
}, | |
"easting": 547058.6, | |
"northing": 152605.2 | |
}, | |
{ | |
"dist": 156.0, | |
"alts": { | |
"DTM25": 720.3 | |
}, | |
"easting": 547080.867, | |
"northing": 152604.4 | |
}, | |
{ | |
"dist": 178.2, | |
"alts": { | |
"DTM25": 716.4 | |
}, | |
"easting": 547103.133, | |
"northing": 152603.6 | |
}, | |
{ | |
"dist": 200.5, | |
"alts": { | |
"DTM25": 711.8 | |
}, | |
"easting": 547125.4, | |
"northing": 152602.8 | |
}, | |
{ | |
"dist": 222.8, | |
"alts": { | |
"DTM25": 707.3 | |
}, | |
"easting": 547147.667, | |
"northing": 152602.0 | |
}, | |
{ | |
"dist": 245.1, | |
"alts": { | |
"DTM25": 702.8 | |
}, | |
"easting": 547169.933, | |
"northing": 152601.2 | |
}, | |
{ | |
"dist": 267.4, | |
"alts": { | |
"DTM25": 698.7 | |
}, | |
"easting": 547192.2, | |
"northing": 152600.4 | |
}, | |
{ | |
"dist": 289.7, | |
"alts": { | |
"DTM25": 695.0 | |
}, | |
"easting": 547214.467, | |
"northing": 152599.6 | |
}, | |
{ | |
"dist": 311.9, | |
"alts": { | |
"DTM25": 692.2 | |
}, | |
"easting": 547236.733, | |
"northing": 152598.8 | |
}, | |
{ | |
"dist": 334.2, | |
"alts": { | |
"DTM25": 689.8 | |
}, | |
"easting": 547259.0, | |
"northing": 152598.0 | |
}, | |
{ | |
"dist": 356.5, | |
"alts": { | |
"DTM25": 688.0 | |
}, | |
"easting": 547281.267, | |
"northing": 152597.2 | |
}, | |
{ | |
"dist": 378.8, | |
"alts": { | |
"DTM25": 686.8 | |
}, | |
"easting": 547303.533, | |
"northing": 152596.4 | |
}, | |
{ | |
"dist": 401.1, | |
"alts": { | |
"DTM25": 686.1 | |
}, | |
"easting": 547325.8, | |
"northing": 152595.6 | |
}, | |
{ | |
"dist": 423.3, | |
"alts": { | |
"DTM25": 685.7 | |
}, | |
"easting": 547348.067, | |
"northing": 152594.8 | |
}, | |
{ | |
"dist": 445.6, | |
"alts": { | |
"DTM25": 685.4 | |
}, | |
"easting": 547370.333, | |
"northing": 152594.0 | |
}, | |
{ | |
"dist": 467.9, | |
"alts": { | |
"DTM25": 685.3 | |
}, | |
"easting": 547392.6, | |
"northing": 152593.2 | |
}, | |
{ | |
"dist": 490.2, | |
"alts": { | |
"DTM25": 685.2 | |
}, | |
"easting": 547414.867, | |
"northing": 152592.4 | |
}, | |
{ | |
"dist": 512.5, | |
"alts": { | |
"DTM25": 685.1 | |
}, | |
"easting": 547437.133, | |
"northing": 152591.6 | |
}, | |
{ | |
"dist": 534.7, | |
"alts": { | |
"DTM25": 685.1 | |
}, | |
"easting": 547459.4, | |
"northing": 152590.8 | |
}, | |
{ | |
"dist": 557.0, | |
"alts": { | |
"DTM25": 685.1 | |
}, | |
"easting": 547481.667, | |
"northing": 152590.0 | |
}, | |
{ | |
"dist": 579.3, | |
"alts": { | |
"DTM25": 685.0 | |
}, | |
"easting": 547503.933, | |
"northing": 152589.2 | |
}, | |
{ | |
"dist": 601.6, | |
"alts": { | |
"DTM25": 685.1 | |
}, | |
"easting": 547526.2, | |
"northing": 152588.4 | |
}, | |
{ | |
"dist": 623.9, | |
"alts": { | |
"DTM25": 685.0 | |
}, | |
"easting": 547548.467, | |
"northing": 152587.6 | |
}, | |
{ | |
"dist": 646.1, | |
"alts": { | |
"DTM25": 685.0 | |
}, | |
"easting": 547570.733, | |
"northing": 152586.8 | |
}, | |
{ | |
"dist": 668.4, | |
"alts": { | |
"DTM25": 685.2 | |
}, | |
"easting": 547593.0, | |
"northing": 152586.0 | |
}, | |
{ | |
"dist": 690.7, | |
"alts": { | |
"DTM25": 685.8 | |
}, | |
"easting": 547615.267, | |
"northing": 152585.2 | |
}, | |
{ | |
"dist": 713.0, | |
"alts": { | |
"DTM25": 686.4 | |
}, | |
"easting": 547637.533, | |
"northing": 152584.4 | |
}, | |
{ | |
"dist": 735.3, | |
"alts": { | |
"DTM25": 687.5 | |
}, | |
"easting": 547659.8, | |
"northing": 152583.6 | |
}, | |
{ | |
"dist": 757.6, | |
"alts": { | |
"DTM25": 689.0 | |
}, | |
"easting": 547682.067, | |
"northing": 152582.8 | |
}, | |
{ | |
"dist": 779.8, | |
"alts": { | |
"DTM25": 689.8 | |
}, | |
"easting": 547704.333, | |
"northing": 152582.0 | |
}, | |
{ | |
"dist": 802.1, | |
"alts": { | |
"DTM25": 690.7 | |
}, | |
"easting": 547726.6, | |
"northing": 152581.2 | |
}, | |
{ | |
"dist": 824.4, | |
"alts": { | |
"DTM25": 692.3 | |
}, | |
"easting": 547748.867, | |
"northing": 152580.4 | |
}, | |
{ | |
"dist": 846.7, | |
"alts": { | |
"DTM25": 694.5 | |
}, | |
"easting": 547771.133, | |
"northing": 152579.6 | |
}, | |
{ | |
"dist": 869.0, | |
"alts": { | |
"DTM25": 697.3 | |
}, | |
"easting": 547793.4, | |
"northing": 152578.8 | |
}, | |
{ | |
"dist": 891.2, | |
"alts": { | |
"DTM25": 700.7 | |
}, | |
"easting": 547815.667, | |
"northing": 152578.0 | |
}, | |
{ | |
"dist": 913.5, | |
"alts": { | |
"DTM25": 704.6 | |
}, | |
"easting": 547837.933, | |
"northing": 152577.2 | |
}, | |
{ | |
"dist": 935.8, | |
"alts": { | |
"DTM25": 708.0 | |
}, | |
"easting": 547860.2, | |
"northing": 152576.4 | |
}, | |
{ | |
"dist": 958.1, | |
"alts": { | |
"DTM25": 711.6 | |
}, | |
"easting": 547882.467, | |
"northing": 152575.6 | |
}, | |
{ | |
"dist": 980.4, | |
"alts": { | |
"DTM25": 715.8 | |
}, | |
"easting": 547904.733, | |
"northing": 152574.8 | |
}, | |
{ | |
"dist": 1002.6, | |
"alts": { | |
"DTM25": 719.8 | |
}, | |
"easting": 547927.0, | |
"northing": 152574.0 | |
}, | |
{ | |
"dist": 1024.9, | |
"alts": { | |
"DTM25": 723.8 | |
}, | |
"easting": 547949.267, | |
"northing": 152573.2 | |
}, | |
{ | |
"dist": 1047.2, | |
"alts": { | |
"DTM25": 727.9 | |
}, | |
"easting": 547971.533, | |
"northing": 152572.4 | |
}, | |
{ | |
"dist": 1069.5, | |
"alts": { | |
"DTM25": 729.9 | |
}, | |
"easting": 547993.8, | |
"northing": 152571.6 | |
}, | |
{ | |
"dist": 1091.8, | |
"alts": { | |
"DTM25": 732.1 | |
}, | |
"easting": 548016.067, | |
"northing": 152570.8 | |
}, | |
{ | |
"dist": 1114.1, | |
"alts": { | |
"DTM25": 735.0 | |
}, | |
"easting": 548038.333, | |
"northing": 152570.0 | |
}, | |
{ | |
"dist": 1136.3, | |
"alts": { | |
"DTM25": 737.5 | |
}, | |
"easting": 548060.6, | |
"northing": 152569.2 | |
}, | |
{ | |
"dist": 1158.6, | |
"alts": { | |
"DTM25": 739.0 | |
}, | |
"easting": 548082.867, | |
"northing": 152568.4 | |
}, | |
{ | |
"dist": 1180.9, | |
"alts": { | |
"DTM25": 739.3 | |
}, | |
"easting": 548105.133, | |
"northing": 152567.6 | |
}, | |
{ | |
"dist": 1203.2, | |
"alts": { | |
"DTM25": 738.7 | |
}, | |
"easting": 548127.4, | |
"northing": 152566.8 | |
}, | |
{ | |
"dist": 1225.5, | |
"alts": { | |
"DTM25": 737.1 | |
}, | |
"easting": 548149.667, | |
"northing": 152566.0 | |
}, | |
{ | |
"dist": 1247.7, | |
"alts": { | |
"DTM25": 735.0 | |
}, | |
"easting": 548171.933, | |
"northing": 152565.2 | |
}, | |
{ | |
"dist": 1270.0, | |
"alts": { | |
"DTM25": 732.6 | |
}, | |
"easting": 548194.2, | |
"northing": 152564.4 | |
}, | |
{ | |
"dist": 1292.3, | |
"alts": { | |
"DTM25": 730.1 | |
}, | |
"easting": 548216.467, | |
"northing": 152563.6 | |
}, | |
{ | |
"dist": 1314.6, | |
"alts": { | |
"DTM25": 727.9 | |
}, | |
"easting": 548238.733, | |
"northing": 152562.8 | |
}, | |
{ | |
"dist": 1336.9, | |
"alts": { | |
"DTM25": 726.0 | |
}, | |
"easting": 548261.0, | |
"northing": 152562.0 | |
}, | |
{ | |
"dist": 1359.1, | |
"alts": { | |
"DTM25": 724.5 | |
}, | |
"easting": 548283.267, | |
"northing": 152561.2 | |
}, | |
{ | |
"dist": 1381.4, | |
"alts": { | |
"DTM25": 723.7 | |
}, | |
"easting": 548305.533, | |
"northing": 152560.4 | |
}, | |
{ | |
"dist": 1403.7, | |
"alts": { | |
"DTM25": 723.2 | |
}, | |
"easting": 548327.8, | |
"northing": 152559.6 | |
}, | |
{ | |
"dist": 1426.0, | |
"alts": { | |
"DTM25": 722.9 | |
}, | |
"easting": 548350.067, | |
"northing": 152558.8 | |
}, | |
{ | |
"dist": 1448.3, | |
"alts": { | |
"DTM25": 722.4 | |
}, | |
"easting": 548372.333, | |
"northing": 152558.0 | |
}, | |
{ | |
"dist": 1470.5, | |
"alts": { | |
"DTM25": 721.6 | |
}, | |
"easting": 548394.6, | |
"northing": 152557.2 | |
}, | |
{ | |
"dist": 1492.8, | |
"alts": { | |
"DTM25": 720.3 | |
}, | |
"easting": 548416.867, | |
"northing": 152556.4 | |
}, | |
{ | |
"dist": 1515.1, | |
"alts": { | |
"DTM25": 718.7 | |
}, | |
"easting": 548439.133, | |
"northing": 152555.6 | |
}, | |
{ | |
"dist": 1537.4, | |
"alts": { | |
"DTM25": 716.6 | |
}, | |
"easting": 548461.4, | |
"northing": 152554.8 | |
}, | |
{ | |
"dist": 1559.7, | |
"alts": { | |
"DTM25": 714.0 | |
}, | |
"easting": 548483.667, | |
"northing": 152554.0 | |
}, | |
{ | |
"dist": 1582.0, | |
"alts": { | |
"DTM25": 711.2 | |
}, | |
"easting": 548505.933, | |
"northing": 152553.2 | |
}, | |
{ | |
"dist": 1604.2, | |
"alts": { | |
"DTM25": 708.1 | |
}, | |
"easting": 548528.2, | |
"northing": 152552.4 | |
}, | |
{ | |
"dist": 1626.5, | |
"alts": { | |
"DTM25": 704.0 | |
}, | |
"easting": 548550.467, | |
"northing": 152551.6 | |
}, | |
{ | |
"dist": 1648.8, | |
"alts": { | |
"DTM25": 700.7 | |
}, | |
"easting": 548572.733, | |
"northing": 152550.8 | |
}, | |
{ | |
"dist": 1671.1, | |
"alts": { | |
"DTM25": 697.7 | |
}, | |
"easting": 548595.0, | |
"northing": 152550.0 | |
}, | |
{ | |
"dist": 1693.3, | |
"alts": { | |
"DTM25": 694.9 | |
}, | |
"easting": 548614.208, | |
"northing": 152538.812 | |
}, | |
{ | |
"dist": 1715.5, | |
"alts": { | |
"DTM25": 693.1 | |
}, | |
"easting": 548633.416, | |
"northing": 152527.624 | |
}, | |
{ | |
"dist": 1737.8, | |
"alts": { | |
"DTM25": 691.7 | |
}, | |
"easting": 548652.624, | |
"northing": 152516.436 | |
}, | |
{ | |
"dist": 1760.0, | |
"alts": { | |
"DTM25": 690.7 | |
}, | |
"easting": 548671.832, | |
"northing": 152505.248 | |
}, | |
{ | |
"dist": 1782.2, | |
"alts": { | |
"DTM25": 690.0 | |
}, | |
"easting": 548691.04, | |
"northing": 152494.059 | |
}, | |
{ | |
"dist": 1804.5, | |
"alts": { | |
"DTM25": 689.2 | |
}, | |
"easting": 548710.248, | |
"northing": 152482.871 | |
}, | |
{ | |
"dist": 1826.7, | |
"alts": { | |
"DTM25": 688.5 | |
}, | |
"easting": 548729.455, | |
"northing": 152471.683 | |
}, | |
{ | |
"dist": 1848.9, | |
"alts": { | |
"DTM25": 687.4 | |
}, | |
"easting": 548748.663, | |
"northing": 152460.495 | |
}, | |
{ | |
"dist": 1871.1, | |
"alts": { | |
"DTM25": 686.4 | |
}, | |
"easting": 548767.871, | |
"northing": 152449.307 | |
}, | |
{ | |
"dist": 1893.4, | |
"alts": { | |
"DTM25": 685.8 | |
}, | |
"easting": 548787.079, | |
"northing": 152438.119 | |
}, | |
{ | |
"dist": 1915.6, | |
"alts": { | |
"DTM25": 685.2 | |
}, | |
"easting": 548806.287, | |
"northing": 152426.931 | |
}, | |
{ | |
"dist": 1937.8, | |
"alts": { | |
"DTM25": 684.9 | |
}, | |
"easting": 548825.495, | |
"northing": 152415.743 | |
}, | |
{ | |
"dist": 1960.1, | |
"alts": { | |
"DTM25": 684.5 | |
}, | |
"easting": 548844.703, | |
"northing": 152404.554 | |
}, | |
{ | |
"dist": 1982.3, | |
"alts": { | |
"DTM25": 684.2 | |
}, | |
"easting": 548863.911, | |
"northing": 152393.366 | |
}, | |
{ | |
"dist": 2004.5, | |
"alts": { | |
"DTM25": 683.9 | |
}, | |
"easting": 548883.119, | |
"northing": 152382.178 | |
}, | |
{ | |
"dist": 2026.7, | |
"alts": { | |
"DTM25": 683.7 | |
}, | |
"easting": 548902.327, | |
"northing": 152370.99 | |
}, | |
{ | |
"dist": 2049.0, | |
"alts": { | |
"DTM25": 683.8 | |
}, | |
"easting": 548921.535, | |
"northing": 152359.802 | |
}, | |
{ | |
"dist": 2071.2, | |
"alts": { | |
"DTM25": 684.3 | |
}, | |
"easting": 548940.743, | |
"northing": 152348.614 | |
}, | |
{ | |
"dist": 2093.4, | |
"alts": { | |
"DTM25": 685.1 | |
}, | |
"easting": 548959.95, | |
"northing": 152337.426 | |
}, | |
{ | |
"dist": 2115.7, | |
"alts": { | |
"DTM25": 685.8 | |
}, | |
"easting": 548979.158, | |
"northing": 152326.238 | |
}, | |
{ | |
"dist": 2137.9, | |
"alts": { | |
"DTM25": 686.0 | |
}, | |
"easting": 548998.366, | |
"northing": 152315.05 | |
}, | |
{ | |
"dist": 2160.1, | |
"alts": { | |
"DTM25": 685.4 | |
}, | |
"easting": 549017.574, | |
"northing": 152303.861 | |
}, | |
{ | |
"dist": 2182.3, | |
"alts": { | |
"DTM25": 683.1 | |
}, | |
"easting": 549036.782, | |
"northing": 152292.673 | |
}, | |
{ | |
"dist": 2204.6, | |
"alts": { | |
"DTM25": 680.1 | |
}, | |
"easting": 549055.99, | |
"northing": 152281.485 | |
}, | |
{ | |
"dist": 2226.8, | |
"alts": { | |
"DTM25": 677.1 | |
}, | |
"easting": 549075.198, | |
"northing": 152270.297 | |
}, | |
{ | |
"dist": 2249.0, | |
"alts": { | |
"DTM25": 674.6 | |
}, | |
"easting": 549094.406, | |
"northing": 152259.109 | |
}, | |
{ | |
"dist": 2271.3, | |
"alts": { | |
"DTM25": 672.8 | |
}, | |
"easting": 549113.614, | |
"northing": 152247.921 | |
}, | |
{ | |
"dist": 2293.5, | |
"alts": { | |
"DTM25": 671.9 | |
}, | |
"easting": 549132.822, | |
"northing": 152236.733 | |
}, | |
{ | |
"dist": 2315.7, | |
"alts": { | |
"DTM25": 671.5 | |
}, | |
"easting": 549152.03, | |
"northing": 152225.545 | |
}, | |
{ | |
"dist": 2337.9, | |
"alts": { | |
"DTM25": 671.4 | |
}, | |
"easting": 549171.238, | |
"northing": 152214.356 | |
}, | |
{ | |
"dist": 2360.2, | |
"alts": { | |
"DTM25": 671.4 | |
}, | |
"easting": 549190.446, | |
"northing": 152203.168 | |
}, | |
{ | |
"dist": 2382.4, | |
"alts": { | |
"DTM25": 671.4 | |
}, | |
"easting": 549209.653, | |
"northing": 152191.98 | |
}, | |
{ | |
"dist": 2404.6, | |
"alts": { | |
"DTM25": 671.6 | |
}, | |
"easting": 549228.861, | |
"northing": 152180.792 | |
}, | |
{ | |
"dist": 2426.9, | |
"alts": { | |
"DTM25": 672.0 | |
}, | |
"easting": 549248.069, | |
"northing": 152169.604 | |
}, | |
{ | |
"dist": 2449.1, | |
"alts": { | |
"DTM25": 672.2 | |
}, | |
"easting": 549267.277, | |
"northing": 152158.416 | |
}, | |
{ | |
"dist": 2471.3, | |
"alts": { | |
"DTM25": 672.8 | |
}, | |
"easting": 549286.485, | |
"northing": 152147.228 | |
}, | |
{ | |
"dist": 2493.5, | |
"alts": { | |
"DTM25": 673.3 | |
}, | |
"easting": 549305.693, | |
"northing": 152136.04 | |
}, | |
{ | |
"dist": 2515.8, | |
"alts": { | |
"DTM25": 672.9 | |
}, | |
"easting": 549324.901, | |
"northing": 152124.851 | |
}, | |
{ | |
"dist": 2538.0, | |
"alts": { | |
"DTM25": 673.3 | |
}, | |
"easting": 549344.109, | |
"northing": 152113.663 | |
}, | |
{ | |
"dist": 2560.2, | |
"alts": { | |
"DTM25": 674.6 | |
}, | |
"easting": 549363.317, | |
"northing": 152102.475 | |
}, | |
{ | |
"dist": 2582.5, | |
"alts": { | |
"DTM25": 676.4 | |
}, | |
"easting": 549382.525, | |
"northing": 152091.287 | |
}, | |
{ | |
"dist": 2604.7, | |
"alts": { | |
"DTM25": 678.9 | |
}, | |
"easting": 549401.733, | |
"northing": 152080.099 | |
}, | |
{ | |
"dist": 2626.9, | |
"alts": { | |
"DTM25": 681.4 | |
}, | |
"easting": 549420.941, | |
"northing": 152068.911 | |
}, | |
{ | |
"dist": 2649.1, | |
"alts": { | |
"DTM25": 683.3 | |
}, | |
"easting": 549440.149, | |
"northing": 152057.723 | |
}, | |
{ | |
"dist": 2671.4, | |
"alts": { | |
"DTM25": 684.3 | |
}, | |
"easting": 549459.356, | |
"northing": 152046.535 | |
}, | |
{ | |
"dist": 2693.6, | |
"alts": { | |
"DTM25": 684.9 | |
}, | |
"easting": 549478.564, | |
"northing": 152035.347 | |
}, | |
{ | |
"dist": 2715.8, | |
"alts": { | |
"DTM25": 685.7 | |
}, | |
"easting": 549497.772, | |
"northing": 152024.158 | |
}, | |
{ | |
"dist": 2738.1, | |
"alts": { | |
"DTM25": 686.6 | |
}, | |
"easting": 549516.98, | |
"northing": 152012.97 | |
}, | |
{ | |
"dist": 2760.3, | |
"alts": { | |
"DTM25": 687.9 | |
}, | |
"easting": 549536.188, | |
"northing": 152001.782 | |
}, | |
{ | |
"dist": 2782.5, | |
"alts": { | |
"DTM25": 688.6 | |
}, | |
"easting": 549555.396, | |
"northing": 151990.594 | |
}, | |
{ | |
"dist": 2804.7, | |
"alts": { | |
"DTM25": 688.1 | |
}, | |
"easting": 549574.604, | |
"northing": 151979.406 | |
}, | |
{ | |
"dist": 2827.0, | |
"alts": { | |
"DTM25": 686.9 | |
}, | |
"easting": 549593.812, | |
"northing": 151968.218 | |
}, | |
{ | |
"dist": 2849.2, | |
"alts": { | |
"DTM25": 685.2 | |
}, | |
"easting": 549613.02, | |
"northing": 151957.03 | |
}, | |
{ | |
"dist": 2871.4, | |
"alts": { | |
"DTM25": 683.8 | |
}, | |
"easting": 549632.228, | |
"northing": 151945.842 | |
}, | |
{ | |
"dist": 2893.7, | |
"alts": { | |
"DTM25": 682.9 | |
}, | |
"easting": 549651.436, | |
"northing": 151934.653 | |
}, | |
{ | |
"dist": 2915.9, | |
"alts": { | |
"DTM25": 682.8 | |
}, | |
"easting": 549670.644, | |
"northing": 151923.465 | |
}, | |
{ | |
"dist": 2938.1, | |
"alts": { | |
"DTM25": 683.1 | |
}, | |
"easting": 549689.851, | |
"northing": 151912.277 | |
}, | |
{ | |
"dist": 2960.3, | |
"alts": { | |
"DTM25": 683.4 | |
}, | |
"easting": 549709.059, | |
"northing": 151901.089 | |
}, | |
{ | |
"dist": 2982.6, | |
"alts": { | |
"DTM25": 683.5 | |
}, | |
"easting": 549728.267, | |
"northing": 151889.901 | |
}, | |
{ | |
"dist": 3004.8, | |
"alts": { | |
"DTM25": 683.2 | |
}, | |
"easting": 549747.475, | |
"northing": 151878.713 | |
}, | |
{ | |
"dist": 3027.0, | |
"alts": { | |
"DTM25": 682.4 | |
}, | |
"easting": 549766.683, | |
"northing": 151867.525 | |
}, | |
{ | |
"dist": 3049.3, | |
"alts": { | |
"DTM25": 680.8 | |
}, | |
"easting": 549785.891, | |
"northing": 151856.337 | |
}, | |
{ | |
"dist": 3071.5, | |
"alts": { | |
"DTM25": 678.7 | |
}, | |
"easting": 549805.099, | |
"northing": 151845.149 | |
}, | |
{ | |
"dist": 3093.7, | |
"alts": { | |
"DTM25": 676.1 | |
}, | |
"easting": 549824.307, | |
"northing": 151833.96 | |
}, | |
{ | |
"dist": 3115.9, | |
"alts": { | |
"DTM25": 673.3 | |
}, | |
"easting": 549843.515, | |
"northing": 151822.772 | |
}, | |
{ | |
"dist": 3138.2, | |
"alts": { | |
"DTM25": 670.2 | |
}, | |
"easting": 549862.723, | |
"northing": 151811.584 | |
}, | |
{ | |
"dist": 3160.4, | |
"alts": { | |
"DTM25": 667.2 | |
}, | |
"easting": 549881.931, | |
"northing": 151800.396 | |
}, | |
{ | |
"dist": 3182.6, | |
"alts": { | |
"DTM25": 664.7 | |
}, | |
"easting": 549901.139, | |
"northing": 151789.208 | |
}, | |
{ | |
"dist": 3204.9, | |
"alts": { | |
"DTM25": 662.5 | |
}, | |
"easting": 549920.347, | |
"northing": 151778.02 | |
}, | |
{ | |
"dist": 3227.1, | |
"alts": { | |
"DTM25": 661.4 | |
}, | |
"easting": 549939.554, | |
"northing": 151766.832 | |
}, | |
{ | |
"dist": 3249.3, | |
"alts": { | |
"DTM25": 661.1 | |
}, | |
"easting": 549958.762, | |
"northing": 151755.644 | |
}, | |
{ | |
"dist": 3271.5, | |
"alts": { | |
"DTM25": 661.7 | |
}, | |
"easting": 549977.97, | |
"northing": 151744.455 | |
}, | |
{ | |
"dist": 3293.8, | |
"alts": { | |
"DTM25": 662.9 | |
}, | |
"easting": 549997.178, | |
"northing": 151733.267 | |
}, | |
{ | |
"dist": 3316.0, | |
"alts": { | |
"DTM25": 664.4 | |
}, | |
"easting": 550016.386, | |
"northing": 151722.079 | |
}, | |
{ | |
"dist": 3338.2, | |
"alts": { | |
"DTM25": 665.9 | |
}, | |
"easting": 550035.594, | |
"northing": 151710.891 | |
}, | |
{ | |
"dist": 3360.5, | |
"alts": { | |
"DTM25": 667.2 | |
}, | |
"easting": 550054.802, | |
"northing": 151699.703 | |
}, | |
{ | |
"dist": 3382.7, | |
"alts": { | |
"DTM25": 668.2 | |
}, | |
"easting": 550074.01, | |
"northing": 151688.515 | |
}, | |
{ | |
"dist": 3404.9, | |
"alts": { | |
"DTM25": 668.9 | |
}, | |
"easting": 550093.218, | |
"northing": 151677.327 | |
}, | |
{ | |
"dist": 3427.2, | |
"alts": { | |
"DTM25": 669.3 | |
}, | |
"easting": 550112.426, | |
"northing": 151666.139 | |
}, | |
{ | |
"dist": 3449.4, | |
"alts": { | |
"DTM25": 669.2 | |
}, | |
"easting": 550131.634, | |
"northing": 151654.95 | |
}, | |
{ | |
"dist": 3471.6, | |
"alts": { | |
"DTM25": 668.9 | |
}, | |
"easting": 550150.842, | |
"northing": 151643.762 | |
}, | |
{ | |
"dist": 3493.8, | |
"alts": { | |
"DTM25": 668.5 | |
}, | |
"easting": 550170.05, | |
"northing": 151632.574 | |
}, | |
{ | |
"dist": 3516.1, | |
"alts": { | |
"DTM25": 667.7 | |
}, | |
"easting": 550189.257, | |
"northing": 151621.386 | |
}, | |
{ | |
"dist": 3538.3, | |
"alts": { | |
"DTM25": 667.0 | |
}, | |
"easting": 550208.465, | |
"northing": 151610.198 | |
}, | |
{ | |
"dist": 3560.5, | |
"alts": { | |
"DTM25": 666.8 | |
}, | |
"easting": 550227.673, | |
"northing": 151599.01 | |
}, | |
{ | |
"dist": 3582.8, | |
"alts": { | |
"DTM25": 665.3 | |
}, | |
"easting": 550246.881, | |
"northing": 151587.822 | |
}, | |
{ | |
"dist": 3605.0, | |
"alts": { | |
"DTM25": 664.9 | |
}, | |
"easting": 550266.089, | |
"northing": 151576.634 | |
}, | |
{ | |
"dist": 3627.2, | |
"alts": { | |
"DTM25": 665.1 | |
}, | |
"easting": 550285.297, | |
"northing": 151565.446 | |
}, | |
{ | |
"dist": 3649.4, | |
"alts": { | |
"DTM25": 666.1 | |
}, | |
"easting": 550304.505, | |
"northing": 151554.257 | |
}, | |
{ | |
"dist": 3671.7, | |
"alts": { | |
"DTM25": 668.8 | |
}, | |
"easting": 550323.713, | |
"northing": 151543.069 | |
}, | |
{ | |
"dist": 3693.9, | |
"alts": { | |
"DTM25": 671.9 | |
}, | |
"easting": 550342.921, | |
"northing": 151531.881 | |
}, | |
{ | |
"dist": 3716.1, | |
"alts": { | |
"DTM25": 675.7 | |
}, | |
"easting": 550362.129, | |
"northing": 151520.693 | |
}, | |
{ | |
"dist": 3738.4, | |
"alts": { | |
"DTM25": 679.2 | |
}, | |
"easting": 550381.337, | |
"northing": 151509.505 | |
}, | |
{ | |
"dist": 3760.6, | |
"alts": { | |
"DTM25": 682.2 | |
}, | |
"easting": 550400.545, | |
"northing": 151498.317 | |
}, | |
{ | |
"dist": 3782.8, | |
"alts": { | |
"DTM25": 684.8 | |
}, | |
"easting": 550419.752, | |
"northing": 151487.129 | |
}, | |
{ | |
"dist": 3805.0, | |
"alts": { | |
"DTM25": 687.1 | |
}, | |
"easting": 550438.96, | |
"northing": 151475.941 | |
}, | |
{ | |
"dist": 3827.3, | |
"alts": { | |
"DTM25": 689.3 | |
}, | |
"easting": 550458.168, | |
"northing": 151464.752 | |
}, | |
{ | |
"dist": 3849.5, | |
"alts": { | |
"DTM25": 691.3 | |
}, | |
"easting": 550477.376, | |
"northing": 151453.564 | |
}, | |
{ | |
"dist": 3871.7, | |
"alts": { | |
"DTM25": 692.7 | |
}, | |
"easting": 550496.584, | |
"northing": 151442.376 | |
}, | |
{ | |
"dist": 3894.0, | |
"alts": { | |
"DTM25": 694.0 | |
}, | |
"easting": 550515.792, | |
"northing": 151431.188 | |
}, | |
{ | |
"dist": 3916.2, | |
"alts": { | |
"DTM25": 695.3 | |
}, | |
"easting": 550535.0, | |
"northing": 151420.0 | |
}, | |
{ | |
"dist": 3938.1, | |
"alts": { | |
"DTM25": 696.0 | |
}, | |
"easting": 550553.8, | |
"northing": 151408.8 | |
}, | |
{ | |
"dist": 3959.9, | |
"alts": { | |
"DTM25": 696.5 | |
}, | |
"easting": 550572.6, | |
"northing": 151397.6 | |
}, | |
{ | |
"dist": 3981.8, | |
"alts": { | |
"DTM25": 696.6 | |
}, | |
"easting": 550591.4, | |
"northing": 151386.4 | |
}, | |
{ | |
"dist": 4003.7, | |
"alts": { | |
"DTM25": 696.4 | |
}, | |
"easting": 550610.2, | |
"northing": 151375.2 | |
}, | |
{ | |
"dist": 4025.6, | |
"alts": { | |
"DTM25": 696.2 | |
}, | |
"easting": 550629.0, | |
"northing": 151364.0 | |
}, | |
{ | |
"dist": 4047.5, | |
"alts": { | |
"DTM25": 696.0 | |
}, | |
"easting": 550647.8, | |
"northing": 151352.8 | |
}, | |
{ | |
"dist": 4069.4, | |
"alts": { | |
"DTM25": 696.0 | |
}, | |
"easting": 550666.6, | |
"northing": 151341.6 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment