Skip to content

Instantly share code, notes, and snippets.

@Fil
Last active August 28, 2019 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fil/6bc12c535edc3602813a6ef2d1c73891 to your computer and use it in GitHub Desktop.
Save Fil/6bc12c535edc3602813a6ef2d1c73891 to your computer and use it in GitHub Desktop.
geoContours
license: mit

Simple demo for d3.geoContour() — available in d3-geo-voronoi.

The dots denote the weather stations, each with [longitude, latitude, temperature].

Built with blockbuilder.org

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/d3-delaunay@5"></script>
<script src="https://unpkg.com/d3-tricontour@0.1"></script>
<script src="https://unpkg.com/d3-geo-voronoi@1.5"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
</style>
</head>
<body>
<script>
const canvas = d3.select("body").append("canvas")
.attr("width", 960)
.attr("height", 500),
context = canvas.node().getContext("2d"),
projection = d3.geoEqualEarth(),
path = d3.geoPath(projection).context(context).pointRadius(1),
contour = d3.geoContour(),
color = d3.scaleSequential(d3.interpolateRdBu).domain([40, -20]);
(async function() {
const points = await d3.json("points.json");
for (const c of contour.thresholds(40).isobands(points)) {
context.beginPath();
path(c);
context.fillStyle = color(c.value);
context.fill();
context.lineWidth = 0.5;
context.stroke();
}
context.beginPath();
path({type:"MultiPoint", coordinates:points})
context.fillStyle="#00000095";
context.fill();
})();
</script>
</body>
[[6.95,36.93,26.1],[7.82,36.83,26],[3.25,36.72,26.1],[5.07,36.72,25.4],[7.47,36.47,28.2],[6.62,36.28,27.4],[1.33,36.22,30],[2.23,36.3,27.7],[4.77,36.07,29.1],[5.42,36.18,27.5],[0.12,35.88,25.5],[-0.65,35.7,26.3],[6.18,35.55,28.5],[8.13,35.48,28.9],[-0.6,35.6,26],[-1.35,35.3,25.8],[-1.78,34.82,27.3],[5.73,34.8,36.3],[-1.47,35.02,26.2],[3.25,34.68,28.6],[0.15,34.87,28.4],[0.07,34.15,29.8],[2.93,33.77,33.2],[-0.3,33.6,30.3],[1,33.67,28.9],[6.13,33.12,36.3],[6.12,33.5,36.3],[-0.6,32.77,31.3],[3.82,32.38,36.8],[-2.23,31.62,35.5],[5.4,31.92,37.5],[2.9,31.7,36.9],[2.87,30.57,36],[-2.17,30.13,38.1],[0.28,29.25,38.1],[9.63,28.05,32.9],[-0.28,27.88,38.7],[2.47,27.2,38.5],[-8.13,27.67,37],[9.47,24.55,32.2],[5.52,22.78,30.2],[2.93,11.13,25.9],[1.38,10.32,24.9],[2.62,9.35,24.6],[2.47,8.03,25.3],[2.07,7.17,25],[2.38,6.35,26.5],[-0.03,14.03,28.8],[-2.42,13.57,27.7],[-1.52,12.35,27],[0.37,12.03,26.7],[-4.32,11.17,25.1],[-2.93,11.75,26.7],[-3.18,10.33,25.9],[9.73,4,26.5],[15.03,12.13,27.4],[42.7,-17.05,25.3],[40.33,-22.32,21.8],[11.9,-4.82,22.7],[12.7,-4.2,22.2],[13.92,-3.98,21.3],[12.62,-3.48,23.8],[15.25,-4.25,23.3],[14.77,-2.53,21.6],[15.87,-1.87,25.6],[15.58,-0.02,24.7],[16.05,1.62,24.7],[18.07,1.62,25.1],[-5.95,6.13,24.6],[-6.47,6.87,24.3],[-4.7,6.65,26],[-3.93,5.25,25.2],[-3.3,5.3,25.1],[-6.65,4.75,25.5],[-6.08,4.95,24.5],[27.22,31.33,27.2],[29.95,31.2,28.3],[31.33,29.87,30.3],[30.73,28.08,31],[32.88,24.03,36.3],[30.53,25.45,34.2],[37.43,12.53,18.5],[35.62,3.12,29],[41.87,3.93,28.8],[35,1.02,18.2],[39.63,-0.47,26.9],[36.92,-1.32,18.5],[39.62,-4.03,24.8],[10.98,31.87,30.2],[46.35,-15.67,24.4],[44.03,-18.05,23.1],[47.48,-18.8,13.8],[49.4,-18.12,21.5],[46.95,-25.03,21.4],[59.62,-16.45,24.3],[63.42,-19.68,22.7],[57.67,-20.43,22.6],[-5.53,33.88,27],[-8.03,31.62,30.7],[-6.9,30.93,31.7],[40.5,-13,23.1],[35.3,-13.3,15.4],[39.28,-15.1,20.5],[36.88,-17.88,20.8],[34.9,-19.8,20.8],[35.38,-23.87,21.5],[32.6,-25.9,20.1],[18.12,-26.53,15.1],[12.92,18.68,35],[7.98,16.97,31.8],[1.45,14.2,29.7],[13.12,14.25,29.7],[2.17,13.48,29.1],[12.47,9.23,26.4],[-16.45,16.05,27.7],[-14.97,16.65,31.2],[-13.25,15.65,30.9],[-17.5,14.73,27.5],[-16.23,14.65,29.4],[-16.07,14.13,28.9],[-13.68,13.77,28.5],[-16.27,12.55,26.9],[-14.97,12.88,27.2],[-12.22,12.57,26.9],[56.75,-10.43,25.4],[55.52,-4.67,26.5],[29.45,-23.87,13.6],[28.18,-25.73,14.2],[21.27,-28.4,11],[28.33,-28.25,7.4],[24.02,-30.65,8.8],[19.77,-31.47,8.6],[18.5,-33.9,12.4],[22.38,-34,11.9],[25.6,-33.98,13.1],[-9.88,-40.35,10.7],[37.87,-46.88,4],[51.87,-46.43,3.7],[70.25,-49.35,3.1],[-5.7,-16,15.8],[31.32,21.92,35.8],[33.32,19.53,37.3],[37.22,19.58,37.5],[30.48,19.17,37.3],[31.85,18.55,36.4],[33.97,17.7,35.7],[32.55,15.6,32.6],[36.4,15.47,30.3],[33.48,14.4,28.7],[35.4,14.03,27.7],[25.33,13.62,29.7],[33.62,13.55,27.8],[22.45,13.48,27.2],[30.23,13.17,27],[32.67,13.17,27.5],[28.43,12.7,27.8],[24.88,12.05,26.9],[34.13,12.73,26.7],[34.38,11.78,27.4],[29.72,11,27.4],[32.92,-2.47,21.6],[32.83,-5.08,22],[35.77,-6.17,20.2],[39.2,-6.87,23.4],[35.58,-10.68,17.8],[40.18,-10.27,23.5],[10.23,36.83,29.5],[8.8,36.48,29.1],[10.1,35.67,32.2],[8.82,34.42,32.7],[10.1,33.88,29.1],[15.43,-4.38,22],[31.13,-17.92,13.3],[28.62,-20.15,14.5],[77.5,-37.8,11.6],[-14.4,-7.97,25.1],[-16.5,28.3,19.5],[-16.32,28.47,21.6],[-16.25,28.45,25.7],[-15.3,27.9,24.5],[-13.87,28.45,24.8],[-5.32,35.9,25],[45.28,-12.8,25.1],[55.52,-20.88,22],[54.52,-15.88,24.2],[50.65,26.27,36],[89.23,25.73,28.6],[89.37,24.85,28.8],[91.88,24.9,28.1],[89.17,23.18,28.9],[91.82,22.27,27.4],[91.97,21.43,27],[119.75,49.22,21.2],[123.92,47.38,23.9],[128.73,45.97,22.8],[88.08,47.73,21.9],[84.85,45.6,27.4],[81.33,43.95,24.5],[87.62,43.78,24.6],[82.95,41.72,23.9],[86.13,41.75,26.9],[75.98,39.47,25.3],[88.17,39.03,28.5],[79.93,37.13,26.1],[93.52,42.82,27.2],[101.07,41.95,28],[97.03,41.8,21.7],[94.68,40.15,26.1],[104.5,40.75,24.2],[98.48,39.77,22.4],[98.1,36.3,14],[101.77,36.62,17.2],[106.22,38.48,24.8],[112.55,37.78,24.5],[109.5,36.6,24],[120.9,44.57,24.2],[116.07,43.95,21.3],[125.22,43.9,23.5],[118.97,42.27,23.2],[129.47,42.88,21.1],[123.43,41.77,24.8],[116.28,39.93,27.4],[121.63,38.9,23.7],[116.98,36.68,28.1],[120.33,36.07,24.9],[80.08,32.5,16.3],[88.63,30.95,10.1],[91.13,29.67,16.9],[92.43,34.22,8.9],[97.02,33.02,13.8],[99.65,33.75,10.8],[102.97,33.58,12.5],[93.78,31.88,13],[97.17,31.15,17],[98.9,28.5,14.5],[102.27,27.9,22.9],[98.48,25.12,20],[102.68,25.02,20.5],[100.98,22.77,22.5],[103.38,23.38,23.4],[113.65,34.72,28.9],[107.03,33.07,26],[111.3,30.7,29],[114.13,30.62,30.3],[106.48,29.52,28.5],[109.68,27.45,28],[106.72,26.58,22.8],[114.95,25.85,30.3],[117.15,34.28,29],[118.8,32,29.4],[121.4,31.2,29.7],[115.92,28.6,31],[118.87,28.97,30.2],[121.88,28.45,26.9],[119.28,26.08,29.9],[106.6,23.9,28.3],[113.32,23.13,28.1],[116.68,23.4,28.9],[108.35,22.82,28.2],[110.35,20.03,28.5],[112.33,16.83,29.2],[126.88,41.78,22.5],[128.17,41.4,21.1],[127.43,39.18,23.2],[125.78,39.03,24.9],[125.7,38.03,24.1],[74.83,34.08,24.7],[74.87,31.63,31.9],[79.65,29.47,17.9],[73.3,28,35.6],[77.2,28.58,32.7],[95.02,27.48,28.3],[73.02,26.3,32.8],[89.98,26.02,28.7],[91.58,26.1,29.4],[75.85,25.15,31.1],[81.73,25.45,30.9],[91.73,25.25,19.7],[84.07,24.05,29.3],[92.8,24.75,29.7],[72.63,23.07,30.9],[69.08,22.37,29.5],[75.8,22.72,26.5],[88.33,22.53,30.1],[79.05,21.1,27.6],[70.37,20.9,29],[77.07,20.7,28.1],[82.03,19.08,24.7],[72.82,18.9,28.5],[73.85,18.53,26.1],[78.5,17.5,26.7],[81.15,16.2,29.5],[73.82,15.48,27.1],[74.62,15.85,23.4],[80.18,13,31.1],[77.58,12.97,24.6],[75.78,11.25,27.7],[92.72,11.67,27.7],[79.3,9.27,30.7],[73.15,8.3,28.4],[76.95,8.48,27.8],[45.08,37.53,25.1],[50,36.25,25.9],[53.38,35.55,32.8],[47.12,34.27,29.4],[49.4,34.1,28.3],[48.3,33.5,30.7],[59.2,32.87,29.2],[48.25,30.37,39],[56.97,30.25,28.2],[52.58,29.53,30.9],[141.68,45.42,17.2],[142.37,43.77,21.1],[144.28,44.02,17.4],[141.33,43.05,21.8],[144.4,42.98,16.4],[145.58,43.33,14.8],[140.23,42.8,19.8],[142.78,42.17,18.7],[140.75,41.82,20.7],[139.92,37.48,24.6],[140.77,40.82,21.9],[140.1,39.72,23.6],[140.9,38.27,22.8],[136.9,37.38,25.1],[139.05,37.92,25.4],[136.63,36.58,26.8],[139.1,36.4,26.1],[136.97,35.17,26.9],[140.87,35.73,23.6],[138.22,34.6,25.1],[139.77,35.68,26.4],[139.37,34.75,24.6],[139.78,33.1,25.1],[133.33,36.2,25.1],[133.07,35.45,26.7],[134.23,35.48,27.2],[135.32,35.45,26.7],[132.47,34.4,27.4],[135.52,34.68,27.8],[135.77,33.45,26],[129.3,34.2,26],[130.38,33.58,28],[131.62,33.23,26.8],[129.87,32.73,27.1],[130.55,31.55,28],[131.42,31.92,27.3],[128.83,32.7,26.6],[132.78,33.83,27.3],[134.05,34.32,27.7],[133.53,33.55,27.2],[129.5,28.38,28.9],[124.17,24.33,29.7],[125.28,24.78,29.1],[127.68,26.2,29.1],[131.23,25.83,28.9],[142.2,27.1,27.3],[153.97,24.3,28.2],[69.38,53.28,22.3],[63.62,53.22,24.1],[68.37,51.82,23.2],[51.28,51.25,24.6],[57.15,50.28,26.2],[73.13,49.8,21.3],[54.68,49.07,26.5],[69.65,48.3,25.5],[51.85,47.02,27.9],[61.65,46.78,29.6],[75.08,46.8,24.5],[62.12,45.77,28.2],[56.12,45.4,29.6],[80.3,50.42,22.9],[83.55,50.33,19],[82.37,48.75,22.5],[80.07,44.17,24.8],[76.93,43.23,25.4],[68.22,43.27,29.6],[76,41.43,18.2],[102.13,19.88,27.7],[101.73,19.23,27.4],[102.57,17.95,27.6],[105,16.67,27.2],[105.78,15.12,28.3],[99.67,51.12,15.2],[100.15,50.43,13.5],[94.4,49.65,19.6],[89.93,48.93,18.3],[91.72,49.02,17.8],[91.57,48.02,16.3],[98.28,48.73,16.3],[102,49.57,17.5],[100.17,49.57,17.9],[101.38,48.53,15.9],[103.55,48.8,16.8],[106.1,48.9,15.6],[114.55,48.08,20.8],[96.85,47.75,12.8],[96.25,46.4,12.3],[101.47,47.45,12.7],[100.13,46.7,14.6],[102.77,46.9,13],[100.68,46.13,18],[102.78,46.27,17.4],[106.8,47.8,18.4],[107.48,47.3,17.2],[108.22,46.45,20.4],[112.12,47.78,18.2],[110.63,47.32,19.2],[113.28,46.68,20.4],[103.9,45.45,21],[106.28,45.77,20.5],[105.32,44.42,21.9],[112.37,45.73,21.1],[110.1,44.9,24.1],[111.9,43.73,24.9],[104.42,43.58,19.2],[85.37,27.7,24.8],[58.9,20.67,27.1],[54.03,17.67,28.9],[54.08,17.03,26.5],[71.58,34.02,33.5],[72.67,32.05,33.4],[73.72,32.93,32.8],[74.53,32.5,31.7],[69.5,31.4,30.5],[70.92,31.82,33.3],[74.33,31.55,33.6],[66.9,30.3,29.9],[71.43,30.2,34.9],[62.75,28.82,37.2],[64.4,28.88,37.4],[68.47,28.3,35.6],[70.68,28.65,34],[64.1,26.97,33.3],[68.37,26.25,34.5],[61.8,25.07,29.2],[63.48,25.27,29.2],[68.42,25.38,31.7],[69.78,25.52,31.9],[67.13,24.9,30.1],[51.57,25.25,37.2],[127.73,37.9,25],[128.9,37.75,25.3],[126.97,37.57,25.4],[126.63,37.48,24.5],[130.9,37.48,23.4],[127.4,36.3,26.3],[129.38,36.03,26.5],[129.03,35.1,25.5],[126.38,34.78,25.1],[127.73,34.73,25.1],[126.53,33.52,26.6],[58.05,80.62,1],[76.98,79.5,2.1],[104.3,77.72,2.3],[80.4,73.5,8.7],[52.7,72.37,8.8],[102.47,71.98,15.2],[137.87,76,3.8],[147.88,70.62,9.3],[-178.48,70.98,3.1],[53.03,67.63,13.5],[66.67,66.53,16],[52.27,65.43,15.1],[87.93,65.78,18.6],[77.82,64.92,18.7],[65.05,63.93,17.8],[56.2,62.7,17.3],[60.87,62.43,18.7],[90.02,61.6,19.9],[96.37,61.67,18.8],[56.52,60.4,18.5],[60.45,60.68,18.8],[69.03,61.02,20.4],[77.87,60.43,20],[124,68.73,16],[133.38,67.55,16.8],[114.28,66.25,17.1],[123.4,66.77,17.3],[100.23,64.27,19.6],[121.62,63.77,20.2],[143.15,63.25,14.8],[117.65,62.15,20.2],[108.02,61.27,19],[102.27,60.33,19.1],[129.72,62.02,21],[134.45,60.38,19.6],[-179.37,68.9,3.8],[167.97,67.25,11.5],[159.42,66.55,12.6],[-169.83,66.17,7.1],[150.9,65.73,14.8],[170.42,64.68,14],[177.57,64.78,10.9],[-173.23,64.42,8.2],[166,60.35,12.9],[49.43,52.98,22.4],[65.72,59.62,20.7],[58.85,58.52,18],[68.25,58.15,20.5],[57.78,56.65,20.4],[60.6,56.8,21.8],[74.38,56.9,21.3],[63.65,56.07,19],[65.4,55.47,22.6],[73.38,55.02,22.8],[55.83,54.72,22.1],[82.95,58.32,20.8],[92.15,58.45,19.7],[97.45,58.38,19.9],[92.75,56.03,20.1],[78.37,55.33,22.7],[75.45,53.35,25],[91.7,53.7,20.6],[112.58,59.45,19.5],[108.07,57.77,18.8],[101.75,57.28,18],[118.27,56.9,17.7],[109.55,55.78,18.2],[105.22,54.8,17.9],[113.58,54.47,16.2],[109.63,53.62,18.8],[119.73,53.75,18.3],[104.32,52.27,18.3],[113.48,52.08,19.2],[119.62,51.32,19.7],[106.45,50.37,19.1],[111.97,49.57,18.2],[116.52,50.4,20.5],[125.37,58.62,18.5],[143.2,59.37,12.2],[131.13,56.28,16.6],[138.15,56.45,12.6],[128.93,54.72,19.3],[132.98,53.07,18.8],[140.7,53.15,16.5],[136.5,52.42,18.1],[130.97,47.73,21.1],[133.73,45.87,21.6],[131.93,43.12,18.3],[142.17,50.9,15.7],[143.1,49.22,14.8],[142.72,46.92,16.4],[145.87,44.02,12.6],[159.17,58.5,10.7],[160.83,56.32,16.4],[165.98,55.2,9.5],[38.73,31.68,31.4],[46.12,28.32,39],[36.6,28.37,33.3],[41.68,27.43,34.8],[36.47,26.2,31.7],[43.77,26.3,37.3],[50.15,26.27,37.5],[39.7,24.55,38.6],[38.22,24.02,34.3],[40.55,21.48,30.4],[42.5,16.9,34.5],[81.25,8.58,31.1],[79.83,8.03,29.2],[79.87,6.9,28.5],[80.77,6.97,16.4],[81.13,6.12,28.7],[99.83,19.92,26.4],[98.98,18.78,27.6],[102.8,17.38,28.1],[100.27,16.78,27.8],[100.17,15.8,28.6],[104.87,15.25,27.9],[102.08,14.97,28.9],[100.57,13.73,28.7],[102.58,13.7,28.2],[102.12,12.6,27.7],[99.83,11.83,27.8],[99.18,10.48,27.9],[98.32,8.12,28.3],[100.6,7.2,28.8],[52.98,40.03,27.9],[63.6,39.08,30],[53.97,37.47,28.7],[56.28,38.98,32.1],[58.33,37.97,31.2],[62.18,37.6,32],[59.82,42.95,28.9],[64.62,41.73,31.6],[69.27,41.27,28.3],[71.75,40.37,28],[66.95,39.57,27.4],[67.27,37.23,30.5],[105.8,21.02,30.3],[106.63,20.8,28.3],[108.18,16.03,29.6],[109.2,12.25,29.4],[-65.6,-22.1,4.9],[-65.08,-24.38,10.9],[-65.48,-24.85,8.7],[-60.58,-24.7,14.9],[-65.1,-26.85,11.4],[-64.3,-27.77,10.2],[-59.05,-27.45,12.6],[-58.23,-26.2,14.1],[-55.97,-27.37,14.9],[-66.82,-29.38,10],[-65.77,-28.6,10.4],[-61.95,-29.88,10.7],[-59.7,-29.18,11.7],[-68.75,-30.25,6.4],[-68.87,-31.57,6.6],[-64.22,-31.32,9.3],[-63.88,-31.67,8.5],[-60.48,-31.78,9.8],[-58.02,-31.3,9.9],[-68.78,-32.83,7.2],[-66.35,-33.27,9.2],[-65.38,-33.73,5.6],[-64.23,-33.12,8.1],[-60.78,-32.92,8],[-58.62,-33,8.7],[-68.4,-34.58,6.3],[-63.37,-34.13,6.8],[-61.9,-35.87,7.1],[-60.92,-34.55,6.5],[-58.53,-34.82,7.5],[-64.27,-36.57,7],[-57.73,-36.35,4.8],[-60.25,-38.33,5.8],[-57.58,-37.93,5.1],[-68.13,-38.95,6],[-62.2,-38.7,6.6],[-71.17,-41.15,2],[-65.1,-40.78,6.4],[-63.02,-40.85,6],[-71.15,-42.93,2.8],[-65.27,-43.2,6.4],[-67.5,-45.78,6.5],[-65.92,-47.73,3.2],[-67.75,-49.32,3.7],[-69.28,-51.62,1.9],[-68.32,-54.8,1.8],[-56.98,-63.4,-8.6],[-68.78,-11.03,25.1],[-66.12,-11,25.3],[-64.82,-13.07,24.3],[-64.12,-13.33,24.1],[-67.38,-14.32,22.5],[-67.57,-14.47,22.4],[-66.87,-14.87,22.6],[-64.92,-14.82,22.9],[-62.02,-16.15,20.4],[-68.18,-16.52,5],[-60.97,-16.38,20.5],[-66.18,-17.42,14.7],[-67.07,-18.05,5.3],[-63.18,-17.8,19.7],[-60.73,-17.8,20.4],[-59.77,-18.32,19.7],[-65.27,-19.02,12.2],[-57.82,-18.98,20.8],[-63.53,-20,15.9],[-63.65,-21.95,14],[-60.65,2.82,26.8],[-67.08,-0.13,25.3],[-48.47,-1.45,26.8],[-60.02,-3.13,27.8],[-38.6,-3.77,26.7],[-70.03,-4.38,25.5],[-63.08,-4.92,27.4],[-45.27,-5.5,27.7],[-42.82,-5.08,27.5],[-39.3,-5.2,27.5],[-43.02,-6.77,29.7],[-72.67,-7.63,24.7],[-47.47,-7.33,27.8],[-34.92,-8.05,24.4],[-67.8,-9.97,23.4],[-40.48,-9.38,24.8],[-37.05,-10.92,25.4],[-38.52,-13.02,23.4],[-43.42,-13.27,25.1],[-56.12,-15.55,23.5],[-47.93,-15.87,19.8],[-49.25,-16.67,22.8],[-43.87,-16.72,21.3],[-39.25,-17.73,22.6],[-46.93,-19.57,18.9],[-43.93,-19.93,19.8],[-55.73,-22.53,17.1],[-51.13,-23.33,17.2],[-46.62,-23.5,17.8],[-49.27,-25.43,13.7],[-48.57,-27.58,16.1],[-51.18,-30,13.3],[-53.35,-33.52,8.9],[-70.33,-18.33,16.9],[-70.43,-23.43,13.2],[-109.42,-27.15,17.8],[-71.2,-29.9,9.7],[-70.78,-33.38,7.5],[-70.68,-33.43,7.9],[-78.98,-33.67,12],[-73.05,-36.77,7.4],[-72.63,-38.75,5.5],[-73.08,-41.42,4.6],[-71.68,-45.92,0.8],[-70.85,-53,1.7],[-58.88,-62.42,-6.1],[-59.68,-62.5,-4.7],[-81.72,12.58,28.3],[-75.6,6.22,24],[-75.3,3,28.7],[-77.7,0.8,10.3],[-69.95,-4.17,25],[-89.6,-0.9,24.1],[-75.4,-0.92,24.7],[-77.95,-1.5,20.6],[-79.2,-4.03,15.6],[-61.5,-22.7,15.1],[-60.6,-22.02,15.9],[-57.87,-22.28,17.4],[-55.65,-22.58,17.1],[-57.3,-23.42,17],[-57.63,-25.27,15.4],[-56.3,-25.8,15.3],[-58.32,-26.85,13.5],[-57.15,-26.67,14.5],[-55.83,-27.32,14.1],[-80.4,-3.55,25.1],[-76.38,-6.45,25.7],[-70.3,-18.07,14.4],[-55.2,5.45,26.3],[-56.5,-30.38,10.6],[-55.53,-30.88,10.5],[-58.03,-32.33,9.3],[-54.22,-32.37,9.3],[-56.52,-32.8,9],[-58.07,-33.25,8.1],[-54.3,-34.48,8.1],[-56,-34.83,7.9],[-69.68,11.42,29.5],[-71.73,10.57,30],[-69.32,10.07,23.7],[-67.65,10.25,25.5],[-66.98,10.6,27.8],[-64.68,10.12,27],[-62.3,10.58,26.1],[-63.18,9.75,26.7],[-71.18,8.6,20.2],[-63.55,8.15,26.9],[-72.45,7.85,27.6],[-67.42,7.9,26.3],[-67.5,5.6,26.3],[-61.12,4.6,20.9],[-54.03,5.5,26.1],[-52.37,4.83,26.2],[-51.8,3.88,26],[-54.03,3.63,26],[-36.5,-54.27,-1.5],[-59.48,13.07,27.7],[-88.3,17.53,28],[-117.17,58.62,19],[-114.78,55.3,18.2],[-97.85,55.8,18],[-131.82,53.25,13.6],[-110.28,54.42,19.6],[-115.57,51.18,15.5],[-57.58,50.23,16.5],[-59.17,47.57,15.8],[-60.02,43.93,16.9],[-66.08,43.83,18.5],[-74.62,47.92,17.3],[-71,48.33,19.6],[-54.57,48.95,18.5],[-61.82,50.18,15.4],[-60.42,53.32,17.8],[-57.03,53.7,14.8],[-77.7,53.63,13],[-66.8,54.8,14.1],[-86.93,49.78,19.2],[-80.65,51.27,16.5],[-91.9,50.12,21.6],[-102.97,49.22,21.9],[-101.1,53.97,21],[-105.68,53.22,20.2],[-126.55,49.38,13.8],[-68.4,58.1,13.1],[-78.12,58.45,10.3],[-68.6,63.8,8.1],[-94.07,58.73,14.6],[-83.37,64.2,10.3],[-85.93,79.98,8.6],[-94.98,74.72,7.4],[-105.12,69.1,10.8],[-96.08,64.3,12.2],[-112,60,19.8],[-122.58,58.83,19.5],[-133.48,68.3,17.5],[-135.07,60.72,13.3],[-139.13,64.05,15.1],[-84.95,21.87,27.2],[-82.35,23.17,27.4],[-77.85,21.4,26.9],[-75.13,19.9,28.3],[-74.15,20.25,29.2],[-89.83,13.57,29],[-87.22,14.05,22.4],[-77.92,18.5,28.6],[-110.95,29.07,33.1],[-107.83,28.95,19.7],[-106.08,28.63,25.2],[-100.52,28.7,32.1],[-108.28,26.72,28.5],[-101.42,26.88,29.6],[-103.45,25.53,29.1],[-100.98,25.45,19.9],[-100.2,25.87,28.6],[-110.42,24.27,30.9],[-105.4,23.2,29.2],[-102.57,22.78,15],[-97.85,22.22,28],[-101.25,21.02,19.5],[-100,21.85,24.7],[-100.38,20.6,20.5],[-97.4,20.95,27.5],[-88.22,20.7,27.3],[-102.32,19.98,20.8],[-101.18,19.7,18.8],[-99.2,19.4,16.7],[-98.23,19.32,16],[-96.92,19.53,19.4],[-96.12,19.15,27.7],[-90.55,19.85,28.3],[-88.3,18.48,28.8],[-95.2,16.17,30.6],[-92.63,16.73,16.4],[-92.27,14.92,27.8],[-86.2,12.1,27],[-77.47,25.05,28.7],[-87.05,31.06,28.1],[-87.88,30.55,27.6],[-88.13,32.83,28.1],[-87.58,32.7,27.3],[-87.6,34.74,28.9],[-86.81,34.17,26.4],[-86.05,34.67,27.3],[-87.02,32.41,28.5],[-86.14,33.42,27.9],[-87.88,31.54,27.6],[-85.97,31.81,28.2],[-87.62,33.21,28.7],[-85.75,32.01,27.1],[-85.61,34.57,26.3],[-112.86,32.37,32],[-109.54,36.15,24.9],[-111.74,35.27,17.6],[-109.84,31.94,24.9],[-112.43,34.57,23.6],[-111.15,33.67,31.9],[-109.4,34.52,23.3],[-112.88,35.33,23.4],[-110.06,31.71,26.2],[-112.74,33.98,30.6],[-112.19,35.24,19.8],[-91.22,34.88,28.7],[-92.43,35.08,30.7],[-90.59,36.42,29.2],[-93.79,36.42,29.1],[-94.45,36.43,30.2],[-91.53,36.49,26.5],[-94.25,34.57,27.9],[-91.27,35.6,28.6],[-93.87,35.51,29.9],[-92.02,34.23,29.5],[-90.97,36.26,28.5],[-93.39,33.82,28.7],[-91.27,33.81,28.2],[-93.64,35.3,30.5],[-122.26,37.87,16.9],[-120.17,41.53,23.1],[-117.09,32.64,20.1],[-116.59,32.99,21],[-121.78,38.54,22.7],[-116.87,36.46,39.2],[-118.43,34.7,26.1],[-123.76,39.51,12.6],[-119.72,36.78,28.5],[-119.64,36.32,26.5],[-121.77,37.69,22],[-122.31,41.32,19.6],[-122.26,38.28,20],[-114.62,34.77,35.3],[-117.88,33.6,18.5],[-119.23,34.45,22.4],[-122.2,39.75,24.9],[-123.53,41.31,22.3],[-118.14,34.15,23.9],[-120.69,35.63,21.1],[-122.61,38.26,18.6],[-120.66,35.31,18.4],[-119.68,34.42,18.7],[-122.7,38.44,18.6],[-120.66,40.42,21],[-120.14,39.17,16.7],[-118.75,35.02,27.4],[-123.21,39.15,21.8],[-119.35,35.6,27.6],[-122.93,40.72,21.6],[-122.31,39.52,23.7],[-122.64,41.7,21.9],[-105.27,39.99,23.3],[-105.23,38.46,25.1],[-105.28,39.22,21.4],[-102.35,38.82,26.8],[-106.04,39.63,14.8],[-102.78,38.48,26.8],[-105.13,40.61,24.2],[-103.82,40.26,24.4],[-106.97,38.53,17.5],[-107.11,37.77,14.8],[-102.63,38.09,28.6],[-103.22,38.06,28.4],[-105.94,37.17,18.5],[-107.88,38.49,23.5],[-103.69,38.04,26],[-106.82,40.49,18.7],[-104.49,37.18,23.2],[-102.22,40.06,27.6],[-73.37,41.95,23],[-72.04,41.35,23.7],[-73.55,41.12,24.2],[-72.23,41.8,22.3],[-75.52,39.26,26.8],[-75.54,39.77,27],[-85.02,29.73,27.2],[-81.87,27.22,27.8],[-81.39,25.85,28.7],[-80.2,26.1,28.1],[-81.86,26.59,28.7],[-80.35,27.46,27.5],[-82.31,28.8,27.8],[-81.75,24.55,28],[-83.41,30.45,27.7],[-82.08,29.08,27.6],[-87.19,30.48,28.4],[-80.44,25.58,26.9],[-82.26,28.34,27.2],[-84.35,30.39,28.3],[-82.76,28.16,27.7],[-80.82,28.62,28.7],[-84.15,31.53,28.6],[-84.62,30.82,28.5],[-81.5,31.17,29.4],[-84.2,31.19,27.8],[-83.86,34.3,26.9],[-83.47,33.28,28.8],[-83.25,33.08,29.3],[-84.82,33.45,27.3],[-81.21,32.13,28.9],[-84.52,32.69,27.5],[-83.48,31.45,27.9],[-83.33,34.58,27.8],[-82.62,33.4,28.1],[-82.71,33.73,30.4],[-82.31,31.25,28.8],[-85.19,32.87,27.7],[-115.92,43.59,25.4],[-111.27,44.04,21.3],[-111.39,42.34,20.9],[-116.68,44.57,26],[-116.8,47.68,21.2],[-116.32,46.5,22.4],[-115.54,46.09,22.6],[-114.14,42.6,23.4],[-114.57,42.35,22.8],[-114.52,42.73,25.5],[-116.13,47.53,21.2],[-114.36,43.68,17.5],[-117.02,46.37,25.3],[-111.31,42.12,20.1],[-113.63,43.92,19.2],[-113.9,44.57,19.8],[-116.96,46.72,19.1],[-116.58,43.6,26],[-116.29,44.96,19.2],[-113.9,42.23,22.6],[-116.93,44.08,25.6],[-116.5,49,19.9],[-116.84,48.35,20],[-113.9,45.19,21.2],[-116.56,48.29,20.1],[-88.31,41.78,27.1],[-89.87,39.29,28.2],[-88.17,39.48,28.8],[-87.65,40.14,27],[-88.95,39.83,27.7],[-89.5,41.85,26.6],[-89.19,37.99,28.9],[-90.04,41.17,26],[-89.48,39.15,28.7],[-87.66,40.47,26.7],[-90.2,39.73,27.7],[-90.97,40.58,27.1],[-89.34,40.15,26.4],[-88.65,42.29,26],[-89.03,40.91,27.1],[-90.64,40.92,25.9],[-89.97,41.8,25.8],[-89.98,42.1,26.2],[-88.85,38.35,28.3],[-88.08,38.7,28.7],[-88.91,41.33,27.3],[-87.62,39,28.1],[-89.02,39.37,29],[-87.69,39.64,27.6],[-90.82,39.81,27.8],[-88.64,40.89,26.8],[-90.56,40.12,27.5],[-88.24,40.08,27.8],[-89.6,41.55,26.4],[-90.38,39.44,27.4],[-88.6,39.44,27.5],[-85.72,40.11,26.4],[-84.99,41.64,24.9],[-84.93,40.67,25.8],[-86.52,39.17,27.9],[-85.01,39.42,27.5],[-85.92,39.2,27.5],[-86.8,40,26.2],[-85.88,41.56,26.1],[-86.88,39.64,26.3],[-85.76,39.79,26.8],[-85.5,40.86,25.6],[-86.73,41.61,25.9],[-85.66,40.58,25.7],[-87.9,37.93,29.3],[-86.55,38.89,27.5],[-86.49,38.56,27.5],[-87.59,38.36,29],[-87.16,40.94,26.3],[-86.21,41.07,25.6],[-87.23,39.76,27.2],[-85.45,39.6,26.6],[-85.98,38.98,26.6],[-86.79,38.55,27.4],[-87.49,38.74,29.1],[-87.2,38.65,27.9],[-86.35,40,26.7],[-86.59,41.03,25.4],[-92.79,41.07,27.6],[-94.31,43.07,25.3],[-92.67,43.08,25.5],[-95.02,40.72,26.6],[-90.26,41.79,27],[-91.96,41.02,27.6],[-91.82,42.85,25.4],[-93.63,43.28,26],[-94.2,42.58,25.2],[-93.65,41.37,27.4],[-93.25,42.52,25.5],[-96.15,42.78,26.6],[-95.79,41.64,26.8],[-94.24,40.71,26.8],[-91.56,40.95,26.5],[-92.31,43.05,24.8],[-96.17,43.43,26.2],[-94.63,42.4,26],[-95.17,42.63,25.1],[-92.58,42.04,25.9],[-91.71,41.28,27.1],[-98.03,37.16,30.3],[-99.76,37.19,29.7],[-99.33,37.27,29.3],[-94.84,37.18,29.7],[-96.51,38.68,29.6],[-96.84,37.82,29.6],[-98.23,38.73,30.3],[-94.71,37.84,30],[-99.34,38.86,29.7],[-95.52,39.67,28.8],[-95.7,37.24,30.6],[-99.92,38.2,29.2],[-101.25,37.94,29.2],[-96.58,39.2,30],[-97.61,38.38,30.3],[-97.7,39.12,30.6],[-99.84,39.74,28.1],[-100.53,39.82,27.8],[-95.28,38.61,29.4],[-101.81,39.77,27.2],[-100.92,38.48,28],[-96.19,37.13,30.6],[-98.78,39.78,29.4],[-99.88,39.03,29.5],[-82.61,38.45,25.9],[-83.88,36.88,26.1],[-86.42,36.96,29.2],[-83.55,38.12,25],[-85.5,37.26,27.7],[-87.65,37.76,29.1],[-86.29,37.51,26.8],[-92.46,31.32,28.4],[-92.01,32.77,28.3],[-91.15,30.54,28.5],[-92.18,30.96,27.8],[-92.35,32.51,28.4],[-91.03,30.07,27.2],[-91.54,29.82,27.3],[-92.04,30.42,27.4],[-92.66,30.2,27.5],[-91.99,30.21,28],[-90.13,29.92,29.1],[-91.23,31.95,28.9],[-91.7,32.1,28.1],[-68.26,44.37,21.5],[-69.81,45.66,19.3],[-69.24,44.92,21],[-70.16,44.69,20.1],[-69.79,44.22,22.2],[-67.84,46.21,20.4],[-70.3,43.65,21.9],[-68.01,46.65,20.1],[-76.93,39.03,26.5],[-78.76,39.64,26.1],[-76.9,39.08,27.5],[-76.61,39.28,30.1],[-79.4,39.41,22.6],[-76.19,38.71,27.7],[-72.54,42.39,22.8],[-71.11,42.21,23.6],[-71.17,42.7,24.7],[-70.7,41.98,22.6],[-71.13,42.52,22.5],[-71.25,42.16,23.7],[-84.02,41.92,25.5],[-84.65,43.39,23.9],[-83.71,42.29,25.7],[-86.92,46.34,21.3],[-84.47,45.65,21.4],[-84.99,41.96,25.3],[-83.5,44.28,21.8],[-86.42,43.67,23.7],[-84.64,41.94,24.6],[-88.08,45.79,22.6],[-90.19,46.47,21.1],[-84.2,43.61,24.6],[-82.82,42.61,23.8],[-84.77,43.59,24.9],[-86.66,46.41,20.9],[-85.51,46.31,20.9],[-84.18,43.02,24],[-88.63,46.06,19.7],[-96.52,47.3,24.1],[-93.3,43.61,25.3],[-96.83,48.33,23.3],[-92.53,46.7,21.6],[-95.84,46.84,23.1],[-92.53,47.46,21.7],[-94.47,43.64,26.1],[-92.56,43.7,24],[-93.5,47.24,22.5],[-95.19,47.23,22.1],[-94.22,47.25,22.9],[-95.93,45.12,25.5],[-93.23,44.88,26.8],[-95.75,44.94,25],[-93.31,45.88,23.4],[-95.87,45.59,24],[-94.93,44.76,23.6],[-95.07,46.9,22.9],[-94.11,46.67,23.7],[-96.33,44.01,25],[-93.97,44.32,25.6],[-93.32,46.8,23.1],[-91.67,47.03,21.6],[-94.19,43.77,25.6],[-92.67,44.3,24.3],[-88.52,33.83,28],[-89.98,34.31,28.2],[-88.58,34.66,27],[-90.46,31.54,27.3],[-90.04,32.67,27.5],[-90.56,34.19,28],[-88.38,33.47,28],[-88.62,34.88,28.1],[-90.38,31.95,27.6],[-91.06,33.36,27.1],[-89.34,31.25,27.3],[-89.99,34.82,28.1],[-89.43,34.82,28],[-89.58,33.06,27.7],[-89.07,33.14,27.9],[-90.51,33.45,28],[-91.34,31.59,27],[-89,34.14,27.5],[-89.55,30.84,27.3],[-90.97,31.98,27.1],[-88.78,33.47,28.2],[-89.54,34.38,27.9],[-89.63,34.16,27.9],[-89.38,30.29,27.1],[-88.67,31.68,28.4],[-90.38,32.9,29.5],[-94.03,38.19,29.2],[-91.17,39.34,28.4],[-93.13,39.42,29],[-93.77,38.4,29.5],[-94.68,40.24,28.7],[-90.81,36.62,28.5],[-92.18,38.59,29.3],[-94.27,37.5,29.1],[-92.69,37.69,29.1],[-93.95,37.39,28.8],[-89.97,37.3,28.6],[-91.89,39.18,29.5],[-92.44,39.42,28.1],[-92.26,37.15,28.4],[-94.36,36.86,28.8],[-91.78,37.96,29.7],[-93.72,40.25,28.3],[-91.89,39.97,28.3],[-93.4,38.26,29],[-93,40.48,28.1],[-91.14,38.84,28.5],[-112.96,46.13,19.7],[-109.95,45.83,23.2],[-111.05,45.66,20.8],[-111.71,47.22,21.5],[-109.23,48.59,22.7],[-112.19,47.82,19.7],[-112.38,48.6,20],[-112.64,45.21,20.5],[-104.55,45.89,24.1],[-111.71,45.34,19.6],[-109.8,48.5,22],[-106.62,48.21,24.6],[-104.72,47.11,25.4],[-111.38,47.47,22.8],[-114.16,46.26,20.9],[-111.96,46.61,23],[-108.24,45.92,24.6],[-107.14,45.94,25.1],[-106.91,47.31,25.4],[-114.26,48.3,19.5],[-115.54,48.4,21.1],[-107.73,48.39,25.1],[-104.45,48.48,22.5],[-104.96,46.76,25.4],[-105.88,46.43,27.3],[-109.95,47.06,21.7],[-111.63,45.49,23.1],[-113.3,46.32,17.6],[-104.52,46.42,24.6],[-104.34,47.45,24.6],[-112.25,48.31,20.5],[-105.37,47.88,24.1],[-111.95,45.29,20],[-110.9,46.54,19.4],[-102.9,42.11,25.2],[-96.38,41.04,28.6],[-99.03,42.51,27.6],[-95.75,40.37,27.9],[-99.83,40.13,27.8],[-103.1,41.67,26.7],[-99.67,41.41,25.8],[-96.95,40.62,28],[-100.49,40.67,28],[-97.13,41.25,27.4],[-97.17,40.07,27.6],[-97.6,40.53,26.6],[-97.76,41.45,26.7],[-100.15,40.94,26],[-103.88,42.69,23.9],[-97.26,42.62,27.8],[-98.38,40.65,27.2],[-97.59,40.18,27.8],[-99.38,40.45,26.3],[-101.66,40.52,26.1],[-103.63,41.25,24],[-102.64,41.15,26.8],[-98.95,40.52,27.2],[-97.97,42.07,26.6],[-96.16,40.12,27.8],[-100.25,42.07,26.6],[-98.52,40.1,27.9],[-97.09,40.9,26.4],[-100.6,41.46,25.6],[-96.19,40.68,28.3],[-96.19,40.35,27.9],[-96.23,41.79,27.4],[-117.07,39.49,23.6],[-116.89,40.61,25.2],[-115.79,40.83,23.4],[-118.78,39.46,23.6],[-118.48,40.19,23.9],[-114.77,39.41,22.3],[-118.11,38.38,25.8],[-119.77,39.48,25.4],[-114.92,35.47,28.8],[-117.81,40.9,23.5],[-71.66,44.31,19.1],[-70.95,43.15,22.1],[-71.29,45.09,18],[-72.28,43.7,22.3],[-72.32,42.94,21.9],[-74.42,39.38,26],[-75.08,40.83,23.9],[-74.4,40.9,25.3],[-74.42,41.03,23.4],[-74.88,40.56,25],[-74.56,40.27,24.9],[-74.79,39.81,25.4],[-74,40.28,25.3],[-74.44,40.47,25.8],[-108,36.84,24.4],[-104.22,32.35,27.7],[-106.58,36.92,17.7],[-104.95,36.47,21.2],[-103.15,36.45,26.1],[-107,36.94,19.9],[-107.18,33.15,28.6],[-106.69,35.78,22.2],[-106.74,32.62,25.8],[-106.76,34.77,26.1],[-108.94,33.82,19.6],[-105.82,32.95,19.1],[-106.26,34.52,21.7],[-105.4,36.71,14.9],[-104.51,33.31,28.1],[-103.33,35.11,28.3],[-104.68,34.94,25.1],[-106.76,32.28,27.7],[-103.69,35.2,28.3],[-106.04,33.07,26.1],[-77.23,42.1,22.8],[-73.81,42.74,23.8],[-77.78,42.26,20.3],[-78.75,42.1,20.7],[-76.54,42.93,22.9],[-78.17,43.03,23.3],[-75.98,42.21,22.4],[-78.74,42.94,24.2],[-75.11,44.58,21],[-73.72,44.72,20.8],[-77.72,42.57,23.1],[-75.43,42.06,22.5],[-76.84,42.1,22.8],[-77.03,42.88,23.2],[-77.61,42.77,22.3],[-74.27,43.76,18.6],[-76.45,42.45,22.4],[-75.48,43.8,20.9],[-74.31,44.84,20.1],[-75.01,42.47,21.4],[-74.16,41.77,23.4],[-73.97,40.78,26],[-75.52,42.51,22],[-75.44,44.73,22.8],[-76.49,43.46,22.9],[-74.68,41.38,22.9],[-73.91,41.6,24.2],[-77.68,43.12,23.6],[-73.82,43.03,23.7],[-73.83,42.69,19.6],[-76.1,43.11,24.6],[-73.68,42.75,24.4],[-74.44,44.23,19.6],[-74.16,41.55,23.8],[-78.51,42.74,21.5],[-75.88,43.98,23.4],[-73.96,41.39,24.4],[-73.8,41.27,24.4],[-80.2,35.4,27.8],[-75.62,35.23,27.8],[-79.08,35.91,28],[-76.55,36.02,27.9],[-76.2,36.31,27.8],[-78.86,35.06,28.3],[-78.41,36.35,27.2],[-82.45,35.33,24.9],[-83.19,35.05,20.6],[-77.54,35.2,28.3],[-81.54,35.91,26.3],[-79.03,34.63,28.7],[-82.67,35.8,24.1],[-80.52,34.98,28.3],[-76.74,34.73,27.5],[-81.67,35.73,26],[-80.65,36.5,25.3],[-79.69,36.38,26.8],[-80.48,35.68,27.1],[-78.35,35.52,28.2],[-78.01,33.99,29],[-80.88,35.81,26],[-77.54,35.88,27.7],[-81.3,36.39,21.5],[-82.97,35.49,22.9],[-77.95,35.69,28.2],[-100.44,48.82,22.8],[-97.23,46.88,24.4],[-103.29,48.91,22.6],[-102.81,46.89,23.5],[-98.4,46.16,23.4],[-97.1,47.92,23.9],[-98.69,46.88,24.2],[-98.34,48.76,21.4],[-100.91,46.81,23.8],[-99.77,46.51,23.7],[-102.87,46.54,24],[-97.24,48.97,21.6],[-102.32,46.89,24.4],[-100.39,48.37,22.6],[-100.29,48.61,21.9],[-82.97,40.81,24.6],[-81.94,41.05,23.7],[-82.95,39.61,26.2],[-84.39,41.28,27],[-83.66,41.05,26],[-84.65,40.1,25.8],[-83.62,39.2,25.4],[-81.15,41.3,23.3],[-81.92,40.55,24.5],[-80.86,40.77,24.4],[-82.62,41.27,25.4],[-81.92,39.84,25.6],[-82.89,38.76,26.2],[-83.78,40.1,25.5],[-80.82,41.2,23.3],[-84.15,41.52,25.7],[-82.98,39.11,26.4],[-81.92,40.78,24.6],[-95.61,34.22,28.8],[-96.03,36.77,29.7],[-100.53,36.81,29.2],[-102.48,36.72,26.3],[-95.58,36.32,30.2],[-97.87,36.42,31.1],[-101.62,36.59,27.7],[-97.4,35.82,30.3],[-99.05,34.99,30.9],[-96.98,35.51,29.4],[-94.88,36.88,30.1],[-95.33,35.78,30.8],[-99.17,36.23,29.6],[-97.06,36.89,30.3],[-122.71,42.21,19.8],[-123.88,46.16,15.2],[-117.81,44.84,19.7],[-121.28,44.06,18.7],[-120.18,45.23,19.9],[-123.19,44.63,18.6],[-123.03,43.79,18.4],[-122.13,42.9,11.9],[-117.34,42.94,21.7],[-123.33,43.67,19.4],[-121.13,45.45,20],[-123.1,45.52,18.9],[-123.32,42.42,22.4],[-122.15,45.45,17.3],[-119.56,45.37,20.9],[-119.26,45.83,22.9],[-122.12,44.18,19.2],[-123.16,45.22,19.5],[-118.41,45.94,23.5],[-120.72,45.48,20.3],[-124.24,43.41,15.4],[-120.54,42.69,19.5],[-118.83,45.48,21.6],[-120.81,44.3,19.7],[-122.52,42.73,19.4],[-123.36,42.95,21],[-123.37,43.21,21],[-122.07,45.12,17.4],[-123.87,45.46,14.6],[-117.53,45.57,20.3],[-75.45,40.65,25.3],[-77.64,39.94,25.6],[-80.18,42.08,24],[-79.83,41.4,23.5],[-76.47,40.33,25.4],[-80.36,41.02,24.5],[-75.45,41.74,21],[-78.75,41.42,22.3],[-76.86,40.78,24.9],[-77.87,40.79,24.3],[-75.19,41.01,24.3],[-76.44,41.75,23.1],[-79.72,39.91,24.7],[-79.15,41.85,22.5],[-77.39,41.7,21.2],[-75.64,39.97,25.2],[-76.92,41.24,24.9],[-76.75,39.92,26.2],[-71.54,41.49,23],[-71.43,41.72,24.1],[-82.66,34.53,28.1],[-82.59,34.09,28.4],[-79.93,32.78,28.4],[-79.88,34.73,28.4],[-82.82,34.66,28],[-81.02,33.98,30],[-79.06,33.83,28.7],[-79.88,34.3,29],[-82.22,34.88,27.6],[-82.02,34.5,27],[-81.42,34.19,28.6],[-81.62,34.3,27.9],[-80.87,33.49,27.3],[-81.77,34,28.7],[-81.52,34.63,28.8],[-80.23,33.04,28.2],[-80.36,33.94,27.4],[-83.08,34.75,27.5],[-81.09,34.37,28.7],[-81.03,34.94,27.8],[-80.84,32.68,27.5],[-98.41,45.44,24.9],[-99.06,43.49,27.2],[-96.59,43.31,27.2],[-101.86,43.96,27.1],[-101.6,45.05,25.5],[-99.13,45.04,24.8],[-98.07,44.04,27],[-99.46,44.52,24.9],[-103.47,43.44,25.5],[-97.52,44.01,26.3],[-99.86,43.91,27.4],[-98.58,45.16,25],[-97.57,43.24,27.5],[-100.71,43.89,27.9],[-100.29,44.38,27.4],[-103.28,44.12,24.9],[-96.92,42.76,27.4],[-97.15,44.9,25.1],[-100.48,43.5,26.1],[-87.36,36.55,28.2],[-89.7,35.55,27.9],[-85.13,36.01,25],[-87.39,36.07,26.5],[-87.86,36.48,28.2],[-88.85,35.62,28.1],[-86.81,35.41,27.3],[-85.78,35.67,27.2],[-86.37,35.92,27.5],[-83.2,35.98,26.1],[-82.98,36.42,25.1],[-86.21,35.35,27],[-89.03,36.39,27.5],[-87.76,35.3,26.3],[-99.3,32.73,29.3],[-103.66,30.38,25.1],[-99.98,31.74,29.6],[-103.74,30.98,26.5],[-97.71,28.46,28.6],[-98.43,30.11,27.9],[-98.73,29.8,28.1],[-102.26,35.53,28.1],[-96.4,30.16,28.4],[-98.95,31.74,30],[-97.51,27.77,30],[-96.47,32.11,30.1],[-101.25,33.65,27.1],[-96.23,29.06,27.3],[-100.48,28.76,29.8],[-106.38,31.81,28.1],[-99.35,28.02,30.9],[-102.92,30.91,27.2],[-97.06,33.65,29.4],[-96.94,29.47,27.9],[-99.75,33.16,30],[-94.8,30.06,28.5],[-98.65,30.74,28.7],[-97.66,29.68,27.9],[-94.35,32.54,28.9],[-102.22,31.13,29.4],[-102.73,34.22,25.9],[-98.12,29.72,28.8],[-95.56,33.67,30.6],[-101.7,34.19,27.8],[-98.81,26.38,31.5],[-98.47,29.53,29.6],[-100.91,32.71,28.5],[-102.08,36.34,27.1],[-97.77,32.75,28.8],[-112.48,37.44,19.6],[-109.48,37.61,24.7],[-109.56,37.28,27.1],[-112.65,39.29,23.9],[-110.4,40.17,21.3],[-111.6,37.77,23.7],[-111.94,41.02,27.3],[-112.33,38.97,23],[-109.86,40.28,23.3],[-111.43,40.49,20.9],[-112.54,37.03,24.8],[-111.32,41.83,19.8],[-111.87,39.56,22.9],[-111.8,41.75,24.6],[-111.63,39.26,19.6],[-109.55,38.57,27.9],[-111.83,39.71,24.4],[-112.44,37.82,18.6],[-112.08,38.76,22.3],[-113.56,37.11,30.3],[-111.42,38.91,18.4],[-112.11,39.25,23.4],[-111.2,39.68,15.4],[-111.6,40.08,24.5],[-112.3,40.53,25.6],[-109.55,40.43,22.9],[-114.04,40.72,26.5],[-111.15,41.53,18.8],[-112.98,37.21,29.3],[-73.15,44.47,22.8],[-72.6,43.38,21.2],[-73.21,43.96,21.9],[-72.81,44.91,21],[-72.02,44.42,20.5],[-73.3,44.63,23.1],[-72.97,44.07,19.6],[-80.41,37.2,23.7],[-78.29,37.71,27.9],[-81.34,37.09,21.2],[-78.52,38.03,27.7],[-78.94,38.46,25.1],[-78.39,37.33,27.6],[-77.28,37.3,28.5],[-77.69,39.09,25.5],[-76.19,36.9,28],[-78.12,38.23,26.3],[-79.9,36.98,25.8],[-79.09,38.18,24.8],[-76.7,37.3,27.9],[-78.48,38.9,24.9],[-123.83,46.97,15.3],[-122.51,48.72,16.8],[-122.79,48.98,17.1],[-121.76,47.41,14.8],[-122.95,46.72,17.1],[-122.33,48.97,17.1],[-120.95,47.19,19.4],[-117.9,48.55,22.4],[-119.75,48.55,20.3],[-123.16,47.37,16.1],[-118,46.32,21.6],[-120.54,46.97,21],[-122.2,47.98,17.4],[-124.35,47.96,14.7],[-120.84,45.81,20],[-119.1,46.21,25],[-124.04,46.37,14.6],[-121.81,46.75,15.9],[-122.92,46.15,18.7],[-122.26,47.14,16.5],[-117.81,48.91,20.5],[-118.7,47.33,22.3],[-122.81,48.61,16.5],[-117.59,46.47,20.2],[-117.19,46.76,19.6],[-123.73,46.65,15.3],[-118.38,47.11,21.6],[-117.59,47.09,21.7],[-117.53,47.62,22.3],[-120.01,46.32,21.6],[-122.65,45.68,18.8],[-118.28,46.1,24.1],[-120.07,47.65,20.7],[-120.31,47.42,24.9],[-118.68,47.76,21],[-120.19,48.45,20.2],[-80.22,38.98,23.7],[-80.83,38.93,24.9],[-80.4,37.86,23.8],[-77.98,39.4,25.8],[-81.54,37.57,24.7],[-81.36,38.8,23.7],[-82.28,37.67,26.7],[-81.92,38.53,25.9],[-89.39,42.62,26.5],[-90.12,42.67,26],[-88.45,43.8,24.8],[-89.53,44.12,25],[-90.79,42.83,26],[-87.65,44.09,22.9],[-90.13,44.63,23.6],[-90.34,45.13,22.6],[-88.03,43.07,26.4],[-89.73,45.89,20.6],[-90.64,44.53,23.8],[-88.72,44.36,23.8],[-87.95,44.88,22.8],[-88.56,44.02,25.9],[-89.43,43.53,26],[-91.14,43.05,26.3],[-87.79,42.7,25.5],[-91.88,45.82,23.4],[-90.88,43.56,24.4],[-88.74,43.17,25.5],[-111.03,43.77,19],[-108.03,44.38,25.4],[-106.38,42.63,22.2],[-104.82,41.15,22.4],[-104.82,41.76,23.7],[-109.06,44.52,24.3],[-104.15,44.87,25.5],[-109.66,43.54,17.3],[-110.95,41.27,18.7],[-109.48,41.53,22.6],[-105.67,41.31,19.9],[-106.28,43.41,24.9],[-104.21,43.86,26],[-108.69,43.25,23.4],[-109.86,42.88,17.1],[-108.76,44.78,22.9],[-108.37,43.03,24.5],[-109.07,41.59,22.2],[-106.84,44.84,25.1],[-104.95,42.11,25.6],[-107.97,44.01,25.3],[-110.7,44.98,19.5],[-156.78,71.3,6.6],[-143.63,70.13,8.8],[-162.63,66.87,12.3],[-151.52,66.92,14.5],[-165.43,64.5,10.6],[-161.8,60.78,11.3],[-155.62,62.97,13.7],[-150.1,62.3,13.7],[-147.87,64.82,16],[-145.73,64,14.9],[-145.45,62.15,12.7],[-150.02,61.17,13.1],[-170.22,57.15,7.1],[-162.72,55.2,9.1],[-156.65,58.68,11.3],[-151.5,59.63,10.1],[-152.5,57.75,11.1],[-139.67,59.52,11.1],[-131.57,55.03,13.9],[-80.28,25.82,28.6],[-80.1,26.68,28.1],[-81.32,28.43,28.3],[-81.7,30.4,28.2],[-82.53,27.97,28.5],[-83.65,32.7,28.5],[-81.97,33.37,28.7],[-88.25,30.68,27.6],[-86.4,32.3,29.2],[-86.75,33.57,28.3],[-88.75,32.33,27.6],[-90.08,32.32,28.5],[-93.22,30.12,27.7],[-95.35,29.97,28.3],[-93.78,32.47,28.9],[-97.42,25.92,29.7],[-97.7,30.3,29.5],[-96.92,28.85,28.7],[-97.22,31.62,30.2],[-97.03,32.9,31],[-100.92,29.37,31.1],[-100.5,31.37,29.8],[-102.18,31.95,28.7],[-99.68,32.42,29.8],[-101.82,33.65,27.8],[-110.93,32.12,29.9],[-112.02,33.43,34.4],[-117.17,32.73,20.4],[-118.27,33.72,19.2],[-78.78,35.87,28.6],[-83.32,33.95,28.1],[-80.93,35.22,27.9],[-82.55,35.43,24.9],[-79.95,36.08,27.4],[-85.2,35.03,28.3],[-83.98,35.8,27.2],[-86.68,36.12,28.6],[-90,35.05,29.6],[-92.25,34.83,30.7],[-94.37,35.33,31.1],[-98.48,33.97,31.3],[-97.6,35.38,30.5],[-95.88,36.2,31.6],[-101.72,35.22,28.1],[-106.62,35.05,26.6],[-110.73,35.02,26.1],[-119.05,35.43,28.4],[-115.17,36.08,33.1],[-120.45,34.9,17.1],[-77.33,37.5,28.2],[-77.45,38.95,27],[-77.03,38.85,28.9],[-76.67,39.18,27.5],[-74.57,39.45,25.8],[-75.2,40,27.6],[-79.2,37.33,26.4],[-79.97,37.32,27.1],[-81.12,37.78,23.4],[-81.6,38.37,25.8],[-84.67,39.05,27.4],[-84.6,38.03,26.9],[-85.73,38.18,29.1],[-82.55,38.37,25.8],[-82.88,40,26.9],[-84.2,39.9,26.7],[-87.53,38.05,29.2],[-90.37,38.75,31.1],[-88.77,37.07,29.2],[-86.27,39.73,28.9],[-93.38,37.23,29],[-92.22,38.82,29.6],[-97.43,37.65,31.2],[-99.97,37.77,28.9],[-95.62,39.07,30.2],[-97.65,39.55,28.7],[-105.87,37.43,18.9],[-104.5,38.28,26.6],[-101.68,39.37,26.9],[-114.85,39.28,20.4],[-121.25,37.9,23.9],[-122.38,37.62,16.9],[-72.68,41.93,24.6],[-71.03,42.37,24.1],[-75.73,41.33,24.4],[-80.22,40.5,24.9],[-81.43,40.92,25.3],[-81.87,41.42,25.5],[-80.67,41.25,23.8],[-87.9,42,27.2],[-89.68,40.67,28],[-85.2,41,26.3],[-86.32,41.7,26.4],[-83.8,41.6,25.5],[-83,42.4,25.5],[-90.5,41.45,27.1],[-93.65,41.53,29.1],[-90.7,42.4,25.7],[-95.9,41.3,29.4],[-98.32,40.95,28],[-97.43,41.98,28],[-96.38,42.4,26.8],[-100.68,41.13,26.9],[-100.55,42.87,28.1],[-106.47,42.92,24],[-108.73,42.82,24.2],[-112.6,42.92,22.7],[-122.87,42.37,23.2],[-71.5,43.2,22],[-85.52,42.88,26.2],[-86.23,43.17,25.3],[-83.75,42.97,24.5],[-84.68,44.37,22.3],[-83.57,45.07,21.7],[-87.9,42.95,25.9],[-89.33,43.13,26.3],[-92.5,43.92,25],[-88.13,44.48,24.5],[-96.73,43.58,27.4],[-98.22,44.38,26.8],[-94.07,45.55,24.8],[-108.53,45.8,25.7],[-116.22,43.57,27.4],[-118.95,43.58,21],[-118.85,45.68,22.5],[-123.22,44.12,18.9],[-123,44.92,19.4],[-122.6,45.6,20],[-68.02,46.87,19.7],[-84.4,46.5,21.4],[-87.4,46.6,20.7],[-92.18,46.83,22.1],[-93.38,48.57,20.6],[-96.8,46.9,24.8],[-100.75,46.77,24.3],[-103.63,48.18,23.9],[-114.08,46.92,22.1],[-120.53,46.57,23.4],[-122.9,46.97,17],[-122.33,47.6,17.9],[-124.55,47.95,14.5],[-157.93,21.35,26.5],[-156.43,20.9,25.6],[-64.68,32.37,26.9],[-61.52,16.27,27.6],[-61.1,14.6,28],[-63.12,18.05,28.4],[-68.97,12.2,28.6],[130.87,-12.4,24.6],[136.82,-12.27,23.8],[122.22,-17.95,20.6],[127.65,-18.22,18.4],[134.18,-19.63,17.3],[145.75,-16.88,21.9],[146.75,-19.25,19.6],[113.67,-24.87,16.8],[114.08,-22.23,17.5],[119.57,-20.1,18.9],[118.33,-22.23,17.4],[133.88,-23.8,9.4],[139.48,-20.67,16.3],[143.13,-20.72,17],[144.27,-23.43,14.6],[149.22,-21.12,17],[150.47,-23.38,16.5],[151.25,-23.85,17.6],[114.7,-28.78,13.9],[118.53,-26.6,13.3],[135.45,-27.58,11],[138.05,-29.65,12.1],[142.02,-29.42,11.4],[146.27,-26.4,11.7],[152.72,-27.63,13.7],[153.1,-27.4,15.3],[153.35,-29.43,14.8],[115.12,-34.37,14.8],[116,-31.9,12.4],[118.47,-33.12,10.1],[121.45,-30.78,10.3],[121.88,-33.82,12.9],[128.9,-31.68,11.9],[133.7,-32.12,10.9],[134.57,-30.72,10.3],[136.82,-31.13,10.8],[138.52,-34.93,11.3],[139,-34.47,9.1],[141.47,-31.97,10.3],[142.08,-34.22,10.2],[147.23,-33.92,8.7],[145.82,-31.48,10.2],[150.53,-34.95,11.2],[151.18,-33.95,13.1],[151.82,-32.78,12.5],[153.12,-30.32,14.1],[117.8,-34.95,11.8],[139.75,-37.17,11.3],[140.78,-37.73,9.8],[141.55,-38.43,11.4],[141.63,-36.33,9.3],[144.73,-37.85,10],[144.83,-37.67,9.8],[146.42,-39.12,10.9],[147.13,-38.1,8.7],[147.45,-35.15,8.2],[149.18,-35.3,6],[150.15,-35.9,11.3],[147.48,-42.83,8.7],[148.33,-40.98,10.6],[159.07,-31.53,15.9],[158.95,-54.48,4.2],[128.12,-30.83,10.7],[150.78,-33.6,10.8],[148.3,-36.5,1.3],[177.05,-12.5,26.8],[-179.98,-16.13,24.9],[177.45,-17.75,23.4],[178.57,-18.05,23],[98.68,3.57,27.5],[98.88,1.55,26.4],[104.53,0.92,26.7],[103.65,-1.63,26.6],[104.7,-2.9,26.8],[106.13,-2.17,26.9],[102.33,-3.88,26.6],[105.18,-5.27,26.7],[117.57,3.33,27.3],[116.9,-1.27,26],[114.75,-3.43,26],[106.65,-6.23,26.3],[106.83,-6.18,28.7],[106.75,-6.5,25.9],[108.27,-6.75,27.5],[109.15,-6.85,26.9],[109.02,-7.73,25.4],[110.38,-6.98,27.3],[112.63,-5.85,27.5],[112.72,-7.22,27.7],[124.92,1.53,26.3],[123.07,0.52,26.3],[122.43,-4.1,26.1],[119.55,-5.07,27.9],[115.17,-8.75,25.8],[116.07,-8.53,24],[120.33,-9.67,25.3],[123.67,-10.17,24.9],[131.12,-0.93,26.2],[134.05,-0.88,27.1],[136.12,-1.18,26.5],[138.95,-4.07,18.6],[128.08,-3.7,25.4],[136.43,-4.72,25.3],[132.75,-5.68,25.9],[131.3,-7.98,25.9],[140.38,-8.47,25.6],[102.28,6.17,27.3],[100.7,4.22,27.6],[101.55,3.12,28.4],[103.22,3.62,27.1],[102.25,2.27,27.2],[110.33,1.48,26.8],[111.83,2.33,26.5],[113.03,3.2,26.7],[113.98,4.33,26.8],[115.25,5.3,27.3],[116.05,5.93,27.4],[118.07,5.9,27.5],[173.27,-35.13,12.4],[177.98,-38.65,9.8],[174.18,-39.02,9.8],[170.98,-42.72,8.6],[-176.57,-43.95,8.5],[-177.92,-29.25,17.1],[120.53,18.18,27.8],[121.63,18.37,28.5],[121.73,17.62,27.8],[120.33,16.05,27.9],[120.6,16.42,19.4],[120.97,15.48,28.3],[120.98,14.58,28.4],[121.02,14.63,27],[123.73,13.13,27.6],[125,11.25,28.1],[123.85,9.6,28],[123.97,10.3,27.6],[125.5,9.8,28.5],[126.33,8.37,27.5],[122.07,6.9,27.8],[125.18,6.12,26.9],[103.98,1.37,27.7],[-170.72,-14.33,26.6],[96.82,-12.18,26.8],[149.98,-16.3,24.5],[151.85,7.47,27.7],[158.22,6.97,27.5],[138.08,9.48,28.7],[-139.03,-9.8,25.9],[-149.62,-17.55,25.5],[-145.03,-14.48,26.9],[-145,-19.87,24.5],[-134.9,-23.1,20.7],[-144.33,-27.62,18.3],[167.73,8.73,28.3],[171.38,7.08,28.8],[164.28,-20.57,20.5],[166.45,-22.27,20.3],[167.93,-29.03,16.5],[144.8,13.48,28],[134.48,7.33,27.4],[-176.17,-13.23,26.8],[44.47,40.13,24.9],[14.13,48.05,19.7],[16.37,48.25,21.5],[11.35,47.27,18.3],[12.95,47.05,4],[13,47.8,19.1],[14.33,46.65,20.7],[15.43,47,20.5],[27.63,53.93,21],[23.68,52.12,21.8],[29.83,52.25,21.1],[4.35,50.8,17.3],[18.4,43.9,23.2],[27.92,43.2,25.8],[23.38,42.65,25],[15.98,45.82,24.8],[16.43,43.52,29.2],[33.63,34.88,29.3],[13.93,50.55,16],[14.25,50.1,18.6],[14.45,50.02,19.7],[16.7,49.15,20.9],[18.12,49.68,20.1],[9.87,57.1,16.6],[24.8,59.42,17.7],[26.65,67.37,10.7],[29.18,65.97,14.9],[27.68,64.28,16.1],[29.63,62.67,17.2],[25.68,62.4,16.7],[28.2,61.05,17.6],[23.5,60.82,16.7],[25,60.3,18],[3.1,50.57,17.3],[1.18,49.38,16.8],[-4.42,48.45,15.8],[7.63,48.55,19.4],[-1.6,47.17,17.8],[2.37,47.07,19.1],[5.08,47.27,19.1],[1.18,45.87,17.4],[3.17,45.78,19.2],[-0.7,44.83,19.8],[3.58,44.12,12.7],[1.37,43.63,21.7],[3.97,43.58,23.7],[5.4,43.3,24.3],[7.2,43.65,24.3],[2.87,42.73,23.8],[8.8,41.92,23.7],[8.42,55.02,16.6],[9.52,54.47,16.2],[10,53.63,17.2],[10.7,53.82,17],[12.08,54.18,17.3],[13.4,54.1,17.6],[8.8,53.05,17.3],[9.68,52.47,17.5],[10.45,52.3,17.5],[11.58,52.12,18.6],[13.07,52.38,18.4],[13.4,52.47,19.2],[14.12,52.22,18.5],[6.97,51.4,17.5],[9.45,51.3,17.3],[9.95,51.5,16.9],[10.62,51.8,10.8],[10.77,51.85,17.7],[12.23,51.42,18.8],[13.75,51.13,18.9],[14.95,51.17,18.7],[10.38,50.57,16.7],[10.97,50.98,17.3],[12.95,50.43,12.4],[6.67,49.75,17.4],[7.95,49.98,19],[8.6,50.05,19.4],[7.12,49.22,17.3],[9.22,48.68,18.5],[9.2,48.83,19],[11.05,49.5,18.8],[12.1,49.05,19],[7.85,48,19.2],[9.18,47.68,19],[10.98,47.42,3.9],[11.02,47.8,15.7],[22.97,40.52,30.6],[19.92,39.62,30.1],[22.42,39.63,31.1],[23.72,37.97,31],[23.73,37.9,31.2],[26.92,37.7,31.4],[22.02,37.07,29.1],[21.7,36.83,27.1],[24.12,35.48,29.1],[25.18,35.33,28.2],[19.18,47.43,24.1],[21.63,47.48,23.9],[18.23,46,24.1],[20.1,46.25,24.4],[-8.48,51.85,10.4],[-6.43,53.3,11.2],[-6.25,53.43,10.9],[-10,54.23,11.1],[-7.33,55.37,10.8],[34.9,32,28.7],[34.95,29.55,35.5],[7.73,45.03,21.5],[13.75,45.65,26.2],[10.38,43.68,24.1],[12.73,43.52,25.9],[11.07,42.75,26.2],[12.22,42.08,25.2],[15,42,28.5],[12.45,41.65,25.5],[14.65,41.57,24.5],[15.95,41.7,22.9],[12.95,40.92,26],[15.28,40.02,25.9],[16.88,40.43,27.8],[18.35,39.82,27.7],[13.18,38.7,26.8],[12.5,37.92,26.6],[14.28,37.57,25.5],[14.92,37.4,27.2],[15.13,36.68,27],[38.2,32.5,30.8],[35.78,30.17,26.5],[49.48,49.67,25.6],[21.02,56.48,18.1],[23.83,54.88,19.4],[25.1,54.63,19.5],[6.22,49.62,17],[14.48,35.85,28.5],[28.98,47.02,26],[5.18,52.1,17.3],[5.78,50.92,17.3],[-8.67,70.93,4.8],[15.47,78.25,6.6],[19,69.5,10.8],[19.02,74.52,4.7],[25.5,69.47,12],[31.1,70.37,9.5],[14.37,67.27,11.9],[6.53,62.87,12.1],[9.28,62.12,9.7],[9.6,63.7,12.7],[5.3,60.4,14.8],[11.08,60.2,14.9],[4.88,59.3,13.6],[5.63,58.88,14.5],[8.8,58.4,15.5],[17.53,54.75,17.2],[19.43,54.17,18.9],[14.62,53.4,18.3],[23.17,53.1,19.4],[16.83,52.42,19.7],[20.97,52.17,21.1],[22.27,52.18,20.4],[16.88,51.1,20],[23.53,51.55,21.6],[19.8,50.08,20.2],[-27.1,38.77,20.7],[-9.15,38.72,21.9],[-6.73,41.8,21],[24.5,47.13,23.9],[27.63,47.17,26.3],[23.57,46.78,23.3],[21.25,45.77,25.3],[24.15,45.8,24.5],[25.45,45.45,10.4],[29.67,45.15,25.8],[26.1,44.4,26.6],[28.63,44.22,26.1],[33.05,68.97,12.3],[43.3,68.65,9.9],[32.35,67.15,14],[40.73,64.5,16.6],[38.12,63.9,17.1],[30.72,61.72,17.4],[34.27,61.82,17.4],[36.45,61.02,18.1],[30.3,59.97,19.5],[32.07,54.75,19.4],[39.92,59.32,18.1],[42.75,59.88,18],[40.78,57.73,19.3],[49.28,55.6,21.6],[37.62,55.83,20.9],[41.77,54.95,20.1],[39.25,53.78,20.6],[39.22,51.7,22.1],[45.45,51.63,22.6],[45.35,46.18,27],[48.05,46.28,26.6],[42.08,45.12,27],[47.55,42.83,24.7],[20.47,44.8,26.7],[21.9,43.33,26.2],[19.15,48.65,21],[20.25,49.07,17.9],[21.22,48.67,22.3],[14.52,46.07,22.7],[-8.42,43.37,18.8],[-5.87,43.35,18],[-3.82,43.47,18.7],[-2.8,43.3,18.9],[-2.05,43.3,18.2],[-8.1,42.8,17.5],[-6.58,42.53,20.7],[-3.63,42.37,18.7],[-4.77,41.65,21.6],[-1.02,41.67,25.1],[-5.5,40.95,20.5],[-4.02,40.78,17],[-3.55,40.45,25],[-0.38,39.48,25.9],[-0.02,39.98,25.6],[2.73,39.55,24.8],[4.3,39.9,24.4],[-6.82,38.88,26.1],[-0.5,38.37,25.9],[-5.62,37.15,27.2],[-3.78,37.18,25.6],[-6.35,36.65,24.2],[-2.38,36.85,25.8],[-2.95,35.28,26],[22.5,68.45,12.2],[14.5,63.18,13.7],[13.47,59.37,15.9],[14.08,57.77,15.4],[18.35,57.67,17],[6.95,46.82,18.6],[8.57,47.38,17.9],[9.35,47.25,5.9],[6.13,46.25,19.8],[8.97,46,23],[37.22,36.18,31],[38.3,34.55,31.4],[36.52,33.42,29.4],[31.8,41.45,23.7],[35.17,42.03,24.6],[36.33,41.28,24.8],[38.4,40.92,25.2],[41.82,41.17,22.2],[26.57,41.67,28.7],[27.48,40.98,27],[29.08,40.97,27.4],[30.42,40.78,26.6],[31.6,40.73,22.6],[33.77,41.37,21.8],[34.97,40.55,21.9],[36.57,40.3,23.6],[39.45,40.45,20.7],[37.02,39.75,21.4],[39.5,39.73,24.4],[41.27,39.92,19],[43.08,40.6,18],[43.05,39.72,20.7],[26.4,40.13,28.2],[29.07,40.18,26.7],[32.9,40,26.7],[34.82,39.83,20.8],[27.92,39.62,27.1],[34.17,39.13,17.7],[43.32,38.45,21.7],[29.42,38.67,25.8],[30.53,38.75,24.6],[34.72,38.62,23.2],[39.28,38.6,28],[40.5,38.87,26.8],[41.52,38.73,25.3],[42,37.93,31],[27.85,37.85,30.4],[29.08,37.77,30.3],[30.55,37.75,25.4],[32.55,37.97,25.9],[34.68,37.97,24.5],[36.93,37.6,30.2],[37.37,37.08,29.1],[38.77,37.13,33.3],[40.18,37.88,31.3],[41.17,37.87,30.8],[43.77,37.57,24.7],[28.35,37.2,29.4],[30.73,36.7,30.2],[34.6,36.82,30],[36.17,36.58,29.5],[30.15,36.3,30.3],[26.13,50.58,22],[30.57,50.4,23.7],[33.02,50,23.7],[23.95,49.82,21.4],[34.55,49.6,24.4],[28.6,49.23,22.5],[30.23,48.77,23.4],[22.27,48.63,22.8],[25.9,48.37,23.2],[32.2,48.52,24.3],[30.77,46.43,25.7],[28.85,45.37,26.5],[33.88,46.45,26.3],[34,45,25.3],[36.13,49.97,24.7],[-1.18,60.13,11.3],[-6.32,58.22,12.6],[-2.22,57.2,13.3],[-6.88,56.5,12.9],[-3.2,55.32,12.6],[-1.53,54.3,15.1],[-4.53,53.25,14.5],[-0.52,53.17,15.9],[-1.83,50.78,15.6],[-6.22,54.65,14.1],[-6.77,62.02,10.1],[-5.35,36.15,25],[-16.9,32.63,22.8],[-16.35,33.07,21.7],[-8.25,-70.67,-29.5],[0,-90,-60.6],[-26.65,-75.5,-32.8],[-34.62,-77.87,-23.6],[-58.93,-62.2,-5.4],[-56.72,-64.23,-13],[-64.08,-64.77,-3.4],[-68.13,-67.57,-7.4],[-64.27,-65.25,-3.8],[-67.13,-68.13,-7.7],[11.83,-70.77,-19.2],[39.58,-69,-19.3],[62.87,-67.6,-20.8],[77.97,-68.58,-20.5],[93.02,-66.55,-20.9],[106.87,-78.45,-69.8],[110.52,-66.28,-17.7],[140.02,-66.67,-18.5],[166.67,-77.85,-24.8],[-44.72,-60.75,-9.8]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment