Skip to content

Instantly share code, notes, and snippets.

@jake-low
Last active October 2, 2017 00:01
Show Gist options
  • Save jake-low/35de268bbcacac8bf9dfa5086d7e8d79 to your computer and use it in GitHub Desktop.
Save jake-low/35de268bbcacac8bf9dfa5086d7e8d79 to your computer and use it in GitHub Desktop.
world population density (2015)
license: gpl-3.0
height: 600
scrolling: no
border: yes

Read more about this map at http://www.jakelow.com/essays/mapping-the-world-population

This gist includes coarse data derived from SEDAC's UN-adjusted population density grids. The original data has a resolution of about 2.5 arc minutes. It's distributed as a 43200x17400 GeoTIFF file. In order to produce coarser data, I ran the following command:

gdalwarp -t_srs EPSG:4326 -tr 0.5 0.5 -r average gpwv4-unpd.original.tiff gpwv4-unpd.very-coarse.tiff

If you want to use higher-resolution data than is provided in this Gist, download the original dataset from SEDAC and run the same command, but substitute smaller values, e.g. -tr 0.1 0.1.

<!DOCTYPE html>
<svg width='960' height='600'></svg>
<script src="https://unpkg.com/d3-array@1"></script>
<script src="https://unpkg.com/d3-contour@1"></script>
<script src="https://unpkg.com/d3-collection@1"></script>
<script src="https://unpkg.com/d3-color@1"></script>
<script src="https://unpkg.com/d3-dispatch@1"></script>
<script src="https://unpkg.com/d3-geo@1"></script>
<script src="https://unpkg.com/d3-geo-projection@2"></script>
<script src="https://unpkg.com/d3-interpolate@1"></script>
<script src="https://unpkg.com/d3-request@1"></script>
<script src="https://unpkg.com/d3-selection@1"></script>
<script src="https://unpkg.com/d3-scale@1"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script src="https://unpkg.com/geotiff@0.4/dist/geotiff.browserify.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
queue()
.defer(d3.json, "world-50m.json")
.defer(d3.json, "lakes-50m.json")
.defer(d3.request("gpwv4-unpd.coarse.tiff").responseType("arraybuffer").get)
.await(ready);
function ready (error, world, lakes, unpd) {
if (error) throw error;
var tiff = GeoTIFF.parse(unpd.response),
image = tiff.getImage(),
values = image.readRasters()[0],
m = image.getHeight(),
n = image.getWidth();
values = values.map((v) => v < 0 ? 0 : v);
var numThresholds = 12;
var thresholds = d3.range(0, numThresholds).map((v) => Math.pow(2, v));
var color = d3.scaleThreshold()
.domain(thresholds)
.range(d3.range(0, numThresholds).map((v) => d3.interpolateMagma(v / numThresholds)));
var contours = d3.contours()
.size([n, m])
.smooth(false)
.thresholds([0, ...thresholds]);
var projection = d3.geoInterruptedMollweide()
.scale(165)
.precision(0.1);
var path = d3.geoPath(projection);
var svg = d3.select('svg'),
width = +svg.attr("width"),
height = +svg.attr("height");
svg.append('path').attr('class', 'background')
.datum({type: 'Sphere'})
.attr('fill', color(0))
.attr('d', path);
var defs = svg.append("defs");
defs.append("path")
.datum({type: "Sphere"})
.attr("id", "sphere")
.attr("d", path);
defs.append("path")
.datum(topojson.feature(world, world.objects.land))
.attr("id", "land")
.attr("d", path);
defs.append("clipPath")
.attr("id", "clipSphere")
.append("use").attr("xlink:href", "#sphere");
defs.append("clipPath")
.attr("id", "clipLand")
.attr("clip-path", "url(#clipSphere)")
.append("use").attr("xlink:href", "#land");
svg.append('g').attr('class', 'contours')
.selectAll("path")
.data(contours(values).map(invert))
.enter().append("path")
.attr("fill", function(d) { return color(d.value); })
.attr('clip-path', 'url(#clipLand)')
.attr("d", path);
svg.insert("path")
.datum(topojson.feature(world, world.objects.land))
.attr('fill', 'none')
.attr('stroke', 'white')
.attr('stroke-width', 0.2)
.attr("d", path);
svg.insert("path")
.datum(lakes)
.attr('fill', color(0))
.attr('stroke', 'white')
.attr('stroke-width', 0.1)
.attr("d", path);
var x = d3.scaleLog()
.base(2)
.domain([0.5, thresholds.slice(-1)])//.slice(0, -1))
.rangeRound([0, 600]);
// legend code based on Mike Bostock's https://bl.ocks.org/mbostock/39b34968ad5eab65de1d7da81f78bb27
// used here under terms of GPL v3
var keyGroup = svg.append("g")
.attr("class", "key")
.attr("transform", "translate(180,560)");
keyGroup.selectAll("rect")
.data(color.range().map(function(d) {
d = color.invertExtent(d);
if (d[0] == null) d[0] = x.domain()[0];
if (d[1] == null) d[1] = x.domain()[1];
return d;
}))
.enter().append("rect")
.attr("height", 10)
.attr("x", (d) => x(d[0]))
.attr("width", (d) => x(d[1]) - x(d[0]))
.attr("fill", (d) => color(d[0]));
keyGroup.append("text")
.attr("class", "caption")
.attr("x", x.range()[0])
.attr("y", -8)
.attr("fill", "#000")
.attr("text-anchor", "start")
.attr("font-weight", "bold")
.attr("font-size", "130%")
.text("Estimated population density in 2015 (persons per square kilometer)");
keyGroup.call(d3.axisBottom(x)
.tickSize(16)
.tickValues(color.domain().slice(0, -1)))
.select(".domain")
.remove();
// 'invert' function copyright Mike Bostock, used here under terms of GPL v3
// more info: https://bl.ocks.org/mbostock/83c0be21dba7602ee14982b020b12f51
function invert(d) {
var shared = {};
var p = {
type: "Polygon",
coordinates: d3.merge(d.coordinates.map(function(polygon) {
return polygon.map(function(ring) {
return ring.map(function(point) {
return [
point[0] / n * 360 - 180,
85 - point[1] / m * 145
];
}).reverse();
});
}))
};
// Record the y-intersections with the antimeridian.
p.coordinates.forEach(function(ring) {
ring.forEach(function(p) {
if (p[0] === -180) shared[p[1]] |= 1;
else if (p[0] === 180) shared[p[1]] |= 2;
});
});
// Offset any unshared antimeridian points to prevent their stitching.
p.coordinates.forEach(function(ring) {
ring.forEach(function(p) {
if ((p[0] === -180 || p[0] === 180) && shared[p[1]] !== 3) {
p[0] = p[0] === -180 ? -179.9995 : 179.9995;
}
});
});
p = d3.geoStitch(p);
if (!p.coordinates.length) p = {type: "Sphere"}; // TODO fix d3.geoStitch
p.value = d.value;
return p;
}
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"scalerank":2,"name":"Mälaren","name_alt":null,"note":null,"admin":null,"featureclass":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[17.979785156250017,59.329052734375],[17.87617187500001,59.27080078125],[17.57050781250001,59.267626953125],[17.474511718750023,59.29150390625],[17.370703125,59.294921875],[17.304589843750023,59.27216796875],[17.175195312500023,59.355810546875],[17.065625,59.3732421875],[16.913867187500017,59.445849609375],[16.742285156250006,59.430615234375],[16.610449218750006,59.453515625],[16.144335937500017,59.44775390625],[16.044238281250017,59.478466796875],[16.251757812500017,59.493212890625],[16.47265625,59.519384765625],[16.573828125,59.611669921875],[16.646875,59.55927734375],[16.752343750000023,59.543310546875],[16.84101562500001,59.5875],[16.9775390625,59.550683593749994],[17.06269531250001,59.569238281249994],[17.3720703125,59.495751953124994],[17.390527343750023,59.58447265625],[17.534472656250017,59.539404296875],[17.687304687500017,59.5416015625],[17.67158203125001,59.594775390625],[17.760058593750017,59.620507812499994],[17.785937500000017,59.597998046875],[17.80859375,59.55322265625],[17.772851562500023,59.414111328125],[17.82929687500001,59.37900390625],[17.964257812500023,59.359375],[17.979785156250017,59.329052734375]]]}},{"type":"Feature","properties":{"scalerank":0,"name":"Lake Ladoga","name_alt":null,"note":null,"admin":null,"featureclass":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[29.836718750000017,61.22607421875],[29.836718750000017,61.22607421875],[29.836718750000017,61.22607421875],[29.836718750000017,61.22607421875],[29.860156250000017,61.239306640625],[29.864550781250017,61.2509765625],[29.855078125,61.271240234375],[29.89130859375001,61.294970703125],[29.94941406250001,61.289404296875],[30.029101562500017,61.2544921875],[30.07929687500001,61.242626953125],[30.094140625000023,61.258544921875],[30.089453125,61.270556640625],[30.09003906250001,61.299267578125],[30.129980468750006,61.31259765625],[30.173925781250006,61.3140625],[30.19296875,61.32724609375],[30.19599609375001,61.347802734374994],[30.1826171875,61.361083984375],[30.179296875,61.37265625],[30.20087890625001,61.38896484375],[30.2099609375,61.41796875],[30.216894531250006,61.43134765625],[30.2373046875,61.446337890625],[30.252050781250006,61.458642578124994],[30.2515625,61.47265625],[30.23486328125,61.492626953125],[30.23876953125,61.51484375],[30.28515625,61.5166015625],[30.466210937500023,61.487158203125],[30.48066406250001,61.4900390625],[30.486328125,61.51494140625],[30.5126953125,61.5251953125],[30.55078125,61.53544921875],[30.605859375000023,61.54130859375],[30.61669921875,61.560302734375],[30.593359375,61.579492187499994],[30.594335937500006,61.605810546875],[30.75751953125001,61.733447265625],[30.851953125000023,61.775048828124994],[30.88818359375,61.764794921874994],[30.895898437500023,61.754443359375],[30.905664062500023,61.742236328125],[31.02587890625,61.71435546875],[31.056738281250006,61.689208984375],[31.071093750000017,61.6451171875],[31.098437500000017,61.620361328125],[31.16064453125,61.618701171875],[31.172265625000023,61.629785156249994],[31.238183593750023,61.643017578125],[31.25751953125001,61.641064453125],[31.285937500000017,61.615234375],[31.30810546875,61.605029296875],[31.32783203125001,61.616650390625],[31.334082031250006,61.62744140625],[31.36484375,61.62744140625],[31.486132812500017,61.550830078125],[31.533203125,61.49736328125],[31.57578125,61.43720703125],[31.603613281250006,61.42255859375],[31.619726562500006,61.426953125],[31.616503906250017,61.44248046875],[31.620410156250017,61.461083984374994],[31.63691406250001,61.462744140625],[31.697851562500006,61.415478515625],[31.762304687500006,61.383691406249994],[31.870703125,61.34736328125],[31.89863281250001,61.323974609375],[32.35957031250001,61.180517578125],[32.52685546875,61.117529296875],[32.56337890625002,61.079443359375],[32.58125,61.044873046875],[32.58056640625,61.0138671875],[32.59257812500002,60.997607421875],[32.633398437500006,60.98671875],[32.640722656250006,60.969140625],[32.76542968750002,60.88603515625],[32.80781250000001,60.8263671875],[32.81191406250002,60.756494140624994],[32.84355468750002,60.71220703125],[32.90302734375001,60.693505859374994],[32.9365234375,60.6703125],[32.9443359375,60.642578125],[32.90693359375001,60.5859375],[32.84140625,60.497021484375],[32.81572265625002,60.481884765625],[32.781835937500006,60.488232421875],[32.72207031250002,60.521142578124994],[32.641699218750006,60.536865234375],[32.59990234375002,60.53349609375],[32.59648437500002,60.511083984375],[32.61787109375001,60.4755859375],[32.66396484375002,60.427099609375],[32.67666015625002,60.392431640625],[32.655859375,60.3716796875],[32.59492187500001,60.35458984375],[32.59023437500002,60.330224609374994],[32.614355468750006,60.285791015624994],[32.6123046875,60.245361328125],[32.58388671875002,60.208935546875],[32.50039062500002,60.176513671875],[32.36152343750001,60.148095703124994],[32.26015625000002,60.154345703125],[32.19609375000002,60.195361328125],[32.05712890625,60.226513671875],[31.84326171875,60.2478515625],[31.69941406250001,60.23564453125],[31.598925781250017,60.16962890625],[31.590625,60.15556640625],[31.596875,60.143798828125],[31.605859375000023,60.14228515625],[31.6064453125,60.133642578125],[31.548242187500023,60.071875],[31.540917968750023,60.034521484375],[31.565039062500006,59.998046875],[31.567187500000017,59.966552734375],[31.547167968750017,59.94013671875],[31.509765625,59.920361328125],[31.45478515625001,59.907177734375],[31.4013671875,59.911328125],[31.34931640625001,59.932763671874994],[31.2744140625,59.937646484374994],[31.176367187500006,59.92578125],[31.10625,59.927685546875],[31.06396484375,59.943212890625],[31.042773437500017,59.9509765625],[31.06318359375001,59.962890625],[31.145312500000017,60.005517578124994],[31.142871093750017,60.031689453125],[31.10595703125,60.056298828124994],[31.095117187500023,60.083740234375],[31.11494140625001,60.13486328125],[31.108984375,60.146435546875],[31.018945312500023,60.192919921875],[30.956835937500017,60.263623046875],[30.84912109375,60.442626953125],[30.832128906250006,60.45751953125],[30.81689453125,60.458837890625],[30.803320312500006,60.446630859375],[30.775976562500006,60.448095703125],[30.774218750000017,60.492089843749994],[30.758593750000017,60.52451171875],[30.723730468750006,60.561767578125],[30.66328125000001,60.592822265625],[30.53388671875001,60.630078125],[30.52392578125,60.65458984375],[30.504003906250006,60.703564453125],[30.504492187500006,60.731640625],[30.525390625,60.7388671875],[30.533203125,60.765527343749994],[30.527929687500006,60.81171875],[30.502050781250006,60.843212890625],[30.455859375000017,60.860009765624994],[30.441210937500017,60.8736328125],[30.435839843750017,60.902685546875],[30.40869140625,60.92802734375],[30.29267578125001,61.005126953125],[30.124902343750023,61.087353515625],[29.857226562500017,61.18798828125],[29.825,61.215576171875],[29.836718750000017,61.22607421875]]]}},{"type":"Feature","properties":{"scalerank":0,"name":"Lake Balkhash (Balqash Köli)","name_alt":null,"note":null,"admin":null,"featureclass":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[78.99082031250003,46.7486328125],[78.99082031250003,46.7486328125],[78.99082031250003,46.7486328125],[78.99082031250003,46.7486328125],[79.01884765624999,46.768457031249994],[79.02216796875001,46.794921875],[79.05185546875003,46.80771484375],[79.08417968750001,46.810107421874996],[79.12187,46.798828125],[79.1767578125,46.7638671875],[79.22197265624999,46.72041015625],[79.24472656250003,46.6796875],[79.2451171875,46.645166015624994],[79.23554687500001,46.633544921875],[79.21728515625,46.609716796875],[79.15742187500001,46.602783203125],[79.09492187500001,46.581591796874996],[79.06796875000003,46.525830078125],[79.02275390624999,46.4474609375],[78.97109375000002,46.406005859375],[78.88984375000001,46.369921875],[78.78740234374999,46.384814453124996],[78.71132812500002,46.396386718749994],[78.62529296874999,46.379833984375],[78.54433593750002,46.4013671875],[78.46542968750003,46.392431640625],[78.43837890625002,46.376855468749994],[78.43515625000003,46.3517578125],[78.46210937500001,46.312792968749996],[78.44511718749999,46.297167968749996],[78.40869140625,46.298828125],[78.36738281250001,46.338525390624994],[78.31728515625002,46.349853515625],[78.2333984375,46.336865234375],[78.16064453125,46.318652343749996],[78.12753906250003,46.318652343749996],[78.0751953125,46.328271484374994],[78.017578125,46.342626953125],[77.86542968750001,46.428662109375],[77.81748046875003,46.439404296875],[77.78115234375002,46.4228515625],[77.72578125000001,46.407128906249994],[77.65214843749999,46.415429687499994],[77.56259765625003,46.435449218749994],[77.42929687500003,46.499658203124994],[77.35527343749999,46.502246093749996],[77.28203124999999,46.472949218749996],[77.16513671875003,46.489013671875],[77.10390625000002,46.454248046874994],[77.00361328125001,46.463671875],[76.85263671875003,46.49228515625],[76.74179687500003,46.531982421875],[76.46396484375003,46.541894531249994],[76.23847656250001,46.5548828125],[76.17626953125,46.531982421875],[76.03330078125003,46.511669921875],[75.909375,46.5357421875],[75.86699218750002,46.53564453125],[75.71455078125001,46.516455078125],[75.611328125,46.507177734375],[75.55781250000001,46.530322265624996],[75.51484375000001,46.566699218749996],[75.49160156250002,46.596484375],[75.490234375,46.631005859374994],[75.50820312500002,46.636181640625],[75.54804687500001,46.63447265625],[75.56240234375002,46.64599609375],[75.55976562500001,46.652978515624994],[75.55283203125,46.67255859375],[75.50917968750002,46.678027343749996],[75.46328125000002,46.67060546875],[75.41718750000001,46.64111328125],[75.40400390625001,46.609716796875],[75.43212890625,46.541894531249994],[75.44804687500002,46.498339843749996],[75.40566406250002,46.47080078125],[75.35009765625,46.469873046874994],[75.330078125,46.5126953125],[75.30400390625002,46.519384765625],[75.27773437500002,46.514892578125],[75.255859375,46.474169921874996],[75.2408203125,46.44765625],[75.21220703125002,46.426611328125],[75.15185546875,46.4375],[75.12109375,46.446435546874994],[75.09316406250002,46.460888671875],[75.06669921875002,46.450976562499996],[75.0125,46.41708984375],[74.91123046875,46.404638671875],[74.88808593750002,46.3765625],[74.85664062500001,46.2939453125],[74.81523437500002,46.215625],[74.79384765625002,46.130273437499994],[74.77138671875002,46.1078125],[74.59921875,46.022216796875],[74.54990234375,46.005908203124996],[74.36992187500002,46.020068359374996],[74.27802734375001,46.004052734374994],[74.25820312500002,45.976708984374994],[74.253125,45.941650390625],[74.3033203125,45.789794921875],[74.28925781250001,45.764697265624996],[74.25078125000002,45.761035156249996],[74.24287109375001,45.75166015625],[74.24531250000001,45.739501953125],[74.31093750000002,45.695458984374994],[74.31269531250001,45.670947265624996],[74.28945312500002,45.650634765625],[74.23076171875002,45.61533203125],[74.1005859375,45.536865234375],[74.08935546875,45.509082031249996],[74.08281250000002,45.35205078125],[74.0865234375,45.343505859375],[74.12832031250002,45.336865234375],[74.1509765625,45.317285156249994],[74.15566406250002,45.270556640624996],[74.14335937500002,45.102929687499994],[74.13564453125002,45.070166015625],[74.10097656250002,45.05859375],[74.09423828125,45.040087890624996],[74.11953125000002,44.99970703125],[74.1,44.988916015624994],[74.05605468750002,44.994433593749996],[74.0171875,45.012939453125],[74.00957031250002,45.0337890625],[74.015625,45.056494140625],[73.99335937500001,45.112353515624996],[74.00771484375002,45.146533203124996],[73.99931640625002,45.188720703125],[73.98066406250001,45.20419921875],[73.87675781250002,45.2392578125],[73.83974609375002,45.2638671875],[73.6626953125,45.43564453125],[73.61474609375,45.513330078124994],[73.46523437500002,45.582470703125],[73.43671875000001,45.60947265625],[73.44365234375002,45.65703125],[73.49433593750001,45.686572265624996],[73.5318359375,45.734179687499996],[73.51884765625002,45.763037109375],[73.45107421875002,45.779589843749996],[73.4400390625,45.805859375],[73.4634765625,45.82626953125],[73.48828125,45.831103515624996],[73.55986328125002,45.816357421875],[73.63251953125001,45.90673828125],[73.71513671875002,45.98251953125],[73.73710937500002,46.012744140624996],[73.6626953125,46.062353515625],[73.65400390625001,46.092675781249994],[73.6455078125,46.15],[73.679296875,46.183056640625],[73.751953125,46.20263671875],[73.77490234375,46.206494140625],[73.82939453125002,46.185107421874996],[73.89755859375,46.207861328125],[73.98183593750002,46.186376953125],[74.02070312500001,46.204882812499996],[74.026953125,46.222460937499996],[73.94951171875002,46.288378906249996],[74.02324218750002,46.3693359375],[74.0943359375,46.42783203125],[74.27978515625,46.47021484375],[74.374609375,46.518017578125],[74.42998046875002,46.578271484374994],[74.52421875000002,46.622949218749994],[74.553125,46.690234375],[74.62539062500002,46.752099609374994],[74.804296875,46.780566406249996],[74.93935546875002,46.816796875],[74.97402343750002,46.8140625],[75.08867187500002,46.813623046874994],[75.1626953125,46.774560546874994],[75.20058593750002,46.7587890625],[75.3384765625,46.729931640625],[75.4267578125,46.7375],[75.82587890625001,46.81806640625],[75.95058593750002,46.7951171875],[76.203125,46.780029296875],[76.29765624999999,46.752880859375],[76.3359375,46.72861328125],[76.40517578125002,46.662255859374994],[76.45048828124999,46.64072265625],[76.49628906250001,46.635546875],[76.6,46.664599609374996],[76.66835937500002,46.673388671874996],[76.69960937500002,46.66748046875],[76.79306640625003,46.630664062499996],[76.85927734375002,46.643847656249996],[77.08242187500002,46.624609375],[77.1748046875,46.555957031249996],[77.22636718749999,46.566699218749996],[77.26601562500002,46.611376953124996],[77.37031250000001,46.62275390625],[77.6015625,46.640039062499994],[77.64472656250001,46.656054687499996],[77.69003906250003,46.658642578125],[77.85996093750003,46.647851562499994],[78.13632812500003,46.594921875],[78.16933593750002,46.58017578125],[78.29707031250001,46.468554687499996],[78.32431640625003,46.482226562499996],[78.34785156250001,46.512060546875],[78.35878906250002,46.6234375],[78.36777343750003,46.642919921875],[78.39707031250003,46.657666015625],[78.43320312500003,46.652490234374994],[78.45195312499999,46.618066406249994],[78.47646484375002,46.624609375],[78.50390625,46.664697265624994],[78.55136718750003,46.707373046875],[78.58056640625,46.723095703125],[78.63027343750002,46.746972656249994],[78.76093750000001,46.723828125],[78.78388671875001,46.734912109374996],[78.78730468750001,46.75498046875],[78.79306640625003,46.780029296875],[78.82294921875001,46.794824218749994],[78.8681640625,46.798730468749994],[78.92958984375002,46.788330078125],[78.99082031250003,46.7486328125]]]}},{"type":"Feature","properties":{"scalerank":0,"name":"Aral Sea","name_alt":null,"note":null,"admin":"admin-0","featureclass":"Alkaline Lake"},"geometry":{"type":"Polygon","coordinates":[[[61.17167968750002,46.45654296875],[61.17167968750002,46.45654296875],[61.17167968750002,46.45654296875],[61.17167968750002,46.45654296875],[61.22792968750002,46.462841796875],[61.26445312500002,46.446484375],[61.28154296875002,46.407275390624996],[61.26777343750001,46.348486328125],[61.223242187500006,46.27001953125],[61.17744140625001,46.23046875],[61.13046875,46.229833984375],[60.8779296875,46.137353515624994],[60.835058593750006,46.131787109375],[60.77949218750001,46.1021484375],[60.7294921875,46.050830078124996],[60.65966796875,46.007470703124994],[60.57021484375002,45.972021484375],[60.502539062500006,45.926806640624996],[60.45693359375002,45.871923828125],[60.41689453125002,45.848291015624994],[60.316015625,45.863232421875],[59.93535156250002,45.919970703124996],[59.88261718750002,45.92060546875],[59.847265625,45.914697265624994],[59.82929687500001,45.902294921875],[59.832617187500006,45.885888671874994],[59.84160156250002,45.8697265625],[59.84199218750001,45.85791015625],[59.823339843750006,45.8349609375],[59.818359375,45.795849609375],[59.80595703125002,45.784521484375],[59.79267578125001,45.777880859374996],[59.78212890625002,45.7642578125],[59.768652343750006,45.718554687499996],[59.74726562500001,45.696142578125],[59.73574218750002,45.662890625],[59.73388671875,45.61884765625],[59.74492187500002,45.591015625],[59.76894531250002,45.579394531249996],[59.960546875,45.58642578125],[60.00029296875002,45.577685546874996],[60.036230468750006,45.52119140625],[60.06855468750001,45.416894531249994],[60.07763671875,45.310498046875],[60.06328125000002,45.201904296875],[60.05517578125,44.841259765625],[60.03593750000002,44.716210937499994],[59.998144531250006,44.670263671875],[59.995703125,44.59296875],[60.02851562500001,44.484375],[60.034375,44.407373046874994],[60.01328125,44.362060546875],[59.975195312500006,44.335986328124996],[59.919921875,44.32919921875],[59.89013671875,44.316162109375],[59.8857421875,44.296923828124996],[59.8984375,44.281054687499996],[59.928320312500006,44.26865234375],[59.93574218750001,44.253173828125],[59.92080078125002,44.234521484374994],[59.81093750000002,44.182373046875],[59.717871093750006,44.163134765624996],[59.541015625,44.148242187499996],[59.529882812500006,44.16875],[59.53974609375001,44.197900390624994],[59.566992187500006,44.242578125],[59.648046875,44.319873046874996],[59.64863281250001,44.34033203125],[59.31015625,44.585205078125],[59.24052734375002,44.6546875],[59.20458984375,44.70810546875],[59.2021484375,44.745361328125],[59.26103515625002,44.8564453125],[59.381445312500006,45.04140625],[59.44599609375001,45.164941406249994],[59.4546875,45.227001953125],[59.441015625,45.303369140624994],[59.40498046875001,45.393994140625],[59.38886718750001,45.47216796875],[59.392578125,45.537988281249994],[59.37890625,45.570263671875],[59.34794921875002,45.568994140624994],[59.32929687500001,45.588232421875],[59.32314453125002,45.627978515624996],[59.298925781250006,45.655908203124994],[59.25664062500002,45.6720703125],[59.220703125,45.704296875],[59.16044921875002,45.78623046875],[59.129492187500006,45.804833984374994],[59.10097656250002,45.783154296875],[59.074804687500006,45.72109375],[59.053125,45.692529296874994],[59.035742187500006,45.6974609375],[59.02763671875002,45.72109375],[59.02890625,45.763232421874996],[59.01650390625002,45.78193359375],[58.99042968750001,45.776953125],[58.971875,45.739111328125],[58.960546875,45.668310546875],[58.91093750000002,45.605029296874996],[58.822851562500006,45.549169921875],[58.76015625000002,45.489550781249996],[58.72285156250001,45.42626953125],[58.71230468750002,45.354833984375],[58.728515625,45.275439453124996],[58.75458984375001,45.223925781249996],[58.79052734375,45.200341796874994],[58.776953125,45.165576171874996],[58.71357421875001,45.11962890625],[58.67138671875,45.071826171874996],[58.65029296875002,45.02216796875],[58.64716796875001,44.99365234375],[58.662109375,44.986181640625],[58.8017578125,45.04951171875],[58.81289062500002,45.04453125],[58.79238281250002,44.971240234374996],[58.77197265625,44.945849609374996],[58.74843750000002,44.94208984375],[58.73847656250001,44.90546875],[58.7421875,44.835986328124996],[58.75390625,44.78876953125],[58.77382812500002,44.763964843749996],[58.76640625000002,44.747265625],[58.731542968750006,44.738525390625],[58.7080078125,44.7447265625],[58.69560546875002,44.765869140625],[58.67578125,44.775146484375],[58.6484375,44.77265625],[58.62734375000002,44.7546875],[58.612402343750006,44.721142578125],[58.62539062500002,44.703466796875],[58.68935546875002,44.692919921874996],[58.6943359375,44.677392578124994],[58.57763671875,44.546728515625],[58.513769531250006,44.490869140624994],[58.46533203125,44.46103515625],[58.36855468750002,44.429248046874996],[58.31572265625002,44.426318359374996],[58.27802734375001,44.44921875],[58.25371093750002,44.481298828125],[58.24287109375001,44.52421875],[58.25712890625002,44.5765625],[58.29667968750002,44.638427734375],[58.29462890625001,44.708349609375],[58.2509765625,44.786425781249996],[58.23212890625001,44.851318359375],[58.23808593750002,44.903125],[58.27216796875001,44.981689453125],[58.37832031250002,45.177539062499996],[58.40410156250002,45.25302734375],[58.44921875,45.322412109374994],[58.51357421875002,45.385693359375],[58.56005859375,45.4572265625],[58.58867187500002,45.537060546875],[58.611328125,45.584716796875],[58.6279296875,45.600244140624994],[58.6552734375,45.715722656249994],[58.68125,45.783642578125],[58.720703125,45.84765625],[58.771582031250006,45.89501953125],[58.83388671875002,45.92578125],[58.88544921875001,45.93818359375],[58.92626953125,45.932275390624994],[58.9501953125,45.942333984375],[58.95742187500002,45.968212890625],[58.98164062500001,45.974609375],[59.07587890625001,45.955712890624994],[59.140722656250006,45.9572265625],[59.201757812500006,45.972460937499996],[59.25898437500001,46.00146484375],[59.30322265625,46.00205078125],[59.334570312500006,45.974267578124994],[59.32392578125001,45.934375],[59.271484375,45.88232421875],[59.24101562500002,45.829150390624996],[59.23291015625,45.774804687499994],[59.2587890625,45.729833984375],[59.31855468750001,45.694238281249994],[59.35136718750002,45.695947265624994],[59.35693359375,45.73505859375],[59.37431640625002,45.75302734375],[59.40351562500001,45.749902343749994],[59.419921875,45.733789062499994],[59.42363281250002,45.704638671874996],[59.45,45.710839843749994],[59.499121093750006,45.75244140625],[59.5484375,45.773242187499996],[59.59804687500002,45.773242187499996],[59.62470703125001,45.794970703124996],[59.62841796875,45.838427734374996],[59.65546875000001,45.91416015625],[59.70576171875001,46.022119140624994],[59.677734375,46.1369140625],[59.57167968750002,46.25859375],[59.52265625000001,46.327197265624996],[59.53076171875,46.342675781249994],[59.548828125,46.344775390624996],[59.57695312500002,46.33349609375],[59.698828125,46.331298828125],[59.74941406250002,46.322119140625],[59.77890625,46.30146484375],[59.80078125,46.254541015624994],[59.8154296875,46.181396484375],[59.81083984375002,46.12607421875],[59.78740234375002,46.088525390624994],[59.80488281250001,46.071337890624996],[59.86347656250001,46.074511718749996],[60.02871093750002,46.122998046875],[60.10429687500002,46.128564453124994],[60.16474609375001,46.108349609375],[60.237890625,46.099755859374994],[60.32353515625002,46.102783203125],[60.65117187500002,46.071044921875],[60.68496093750002,46.078417968749996],[60.72832031250002,46.10126953125],[60.81191406250002,46.16865234375],[60.82412109375002,46.213427734374996],[60.82255859375002,46.2431640625],[60.74980468750002,46.353662109374994],[60.72832031250002,46.402294921875],[60.7109375,46.407617187499994],[60.69599609375001,46.400683593749996],[60.68339843750002,46.381396484374996],[60.607519531250006,46.349023437499994],[60.58339843750002,46.326464843749996],[60.54775390625002,46.322558593749996],[60.449804687500006,46.364990234375],[60.39531250000002,46.405566406249996],[60.30292968750001,46.413916015625],[60.1728515625,46.389941406249996],[60.078710937500006,46.401757812499994],[60.02070312500001,46.4494140625],[59.99765625,46.502392578125],[60.00917968750002,46.56064453125],[60.07304687500002,46.618798828124994],[60.1890625,46.676806640624996],[60.2705078125,46.69970703125],[60.3173828125,46.687451171875],[60.359375,46.63525390625],[60.39628906250002,46.54306640625],[60.4296875,46.52890625],[60.459570312500006,46.592822265624996],[60.50117187500001,46.611767578125],[60.55458984375002,46.58564453125],[60.6044921875,46.578076171875],[60.65117187500002,46.5890625],[60.725683593750006,46.625830078125],[60.72802734375,46.676025390625],[60.637792968750006,46.72080078125],[60.58515625000001,46.754785156249994],[60.57021484375002,46.777880859374996],[60.623046875,46.781298828124996],[60.74394531250002,46.764990234375],[60.79726562500002,46.715478515624994],[60.78310546875002,46.632666015625],[60.799414062500006,46.568994140624994],[60.84619140625,46.524365234375],[60.938085937500006,46.48984375],[61.07509765625002,46.46552734375],[61.17167968750002,46.45654296875]]]}},{"type":"Feature","properties":{"scalerank":0,"name":"L. Albert","name_alt":null,"note":null,"admin":"admin-0","featureclass":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[31.471582031250023,2.385449218749997],[31.3955078125,2.280419921874994],[31.38398437500001,2.260595703124991],[31.38740234375001,2.200244140624989],[31.399804687500023,1.8955078125],[31.38740234375001,1.85693359375],[31.368554687500023,1.836474609374989],[31.34345703125001,1.834033203124989],[31.322070312500017,1.802587890624991],[31.304589843750023,1.7421875],[31.267871093750017,1.687548828124989],[31.165820312500017,1.60546875],[31.129296875000023,1.587792968749994],[31.039843750000017,1.563623046874994],[31.01416015625,1.546435546874989],[30.969140625000023,1.527148437499989],[30.892675781250006,1.448095703124991],[30.78486328125001,1.309228515624994],[30.726855468750017,1.223535156249994],[30.718554687500017,1.191113281249997],[30.59375,1.041259765625],[30.56875,1.028613281249989],[30.53925781250001,1.021484375],[30.50732421875,1.04052734375],[30.500781250000017,1.049609374999989],[30.50390625,1.120703125],[30.492089843750023,1.172900390624989],[30.491601562500023,1.203222656249991],[30.50244140625,1.211669921875],[30.49462890625,1.229736328125],[30.477832031250017,1.238818359374989],[30.468359375,1.257519531249997],[30.449511718750017,1.259179687499994],[30.4140625,1.254736328124991],[30.39960937500001,1.256103515625],[30.38740234375001,1.296972656249991],[30.441308593750023,1.381787109374997],[30.4794921875,1.466503906249997],[30.529296875,1.532421875],[30.590625,1.579394531249989],[30.67402343750001,1.676074218749989],[30.714257812500023,1.70234375],[30.867968750000017,1.858935546874989],[30.935546875,1.915332031249989],[30.981738281250017,1.932373046875],[31.17890625000001,2.072949218749997],[31.25898437500001,2.1533203125],[31.303125,2.225927734374991],[31.34423828125,2.290917968749994],[31.431054687500023,2.387890625],[31.47480468750001,2.400732421874991],[31.471582031250023,2.385449218749997],[31.471582031250023,2.385449218749997],[31.471582031250023,2.385449218749997]]]}},{"type":"Feature","properties":{"scalerank":0,"name":"Lake Tanganyika","name_alt":null,"note":null,"admin":"admin-0","featureclass":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[30.806054687500023,-8.578320312500011],[30.798632812500017,-8.56591796875],[30.71113281250001,-8.53369140625],[30.681445312500017,-8.5140625],[30.671679687500017,-8.502734375],[30.654296875,-8.5068359375],[30.62031250000001,-8.543652343750011],[30.55488281250001,-8.579785156250011],[30.5341796875,-8.57890625],[30.55976562500001,-8.55615234375],[30.569140625000017,-8.537207031250006],[30.567675781250017,-8.513867187500011],[30.542773437500017,-8.50390625],[30.494531250000023,-8.507031250000011],[30.464453125,-8.498144531250006],[30.447656250000023,-8.449121093750009],[30.460546875,-8.38232421875],[30.478125,-8.35498046875],[30.507714843750023,-8.331738281250011],[30.549121093750017,-8.312597656250006],[30.57343750000001,-8.262304687500006],[30.58056640625,-8.180957031250003],[30.566796875000023,-8.115039062500003],[30.5322265625,-8.064355468750009],[30.499414062500023,-8.033007812500003],[30.468164062500023,-8.02099609375],[30.441992187500006,-7.99658203125],[30.39609375,-7.928417968750011],[30.367480468750017,-7.90283203125],[30.29443359375,-7.87255859375],[30.27734375,-7.848339843750011],[30.265039062500023,-7.767871093750003],[30.221484375000017,-7.66953125],[30.20429687500001,-7.586523437500006],[30.213671875000017,-7.557519531250009],[30.207617187500006,-7.473925781250003],[30.147070312500006,-7.29921875],[30.089648437500017,-7.214160156250003],[30.012988281250017,-7.145214843750011],[29.928320312500006,-7.094921875000011],[29.835839843750023,-7.06328125],[29.751757812500017,-6.995312500000011],[29.61591796875001,-6.822265625],[29.536523437500023,-6.754199218750003],[29.51123046875,-6.719921875000011],[29.479882812500023,-6.633007812500011],[29.48388671875,-6.53759765625],[29.476171875,-6.5146484375],[29.453710937500006,-6.516894531250003],[29.436328125000017,-6.509082031250003],[29.42402343750001,-6.491308593750006],[29.311328125000017,-6.191113281250011],[29.289453125000023,-6.175585937500003],[29.26972656250001,-6.131445312500006],[29.249609375,-6.108984375],[29.215234375000023,-6.088476562500006],[29.193164062500017,-6.037988281250009],[29.183691406250006,-5.9578125],[29.189550781250006,-5.9150390625],[29.21435546875,-5.892285156250011],[29.32958984375,-5.798535156250011],[29.34003906250001,-5.766210937500006],[29.340722656250023,-5.746386718750003],[29.3330078125,-5.661914062500003],[29.341601562500017,-5.634667968750009],[29.37060546875,-5.630273437500009],[29.371972656250023,-5.616406250000011],[29.22607421875,-5.371386718750003],[29.15693359375001,-5.236035156250011],[29.116601562500023,-5.1240234375],[29.10175781250001,-5.054003906250003],[29.1123046875,-5.02587890625],[29.114062500000017,-4.714062500000011],[29.12421875000001,-4.586035156250006],[29.147070312500006,-4.52880859375],[29.169238281250017,-4.504101562500011],[29.20263671875,-4.511035156250003],[29.201562500000023,-4.436816406250003],[29.254492187500006,-4.101171875],[29.2451171875,-4.065039062500006],[29.227636718750006,-4.071191406250009],[29.218164062500023,-4.117871093750011],[29.145410156250023,-4.334863281250009],[29.132910156250006,-4.343457031250011],[29.06298828125,-4.3171875],[29.0576171875,-4.286328125000011],[29.08906250000001,-4.244921875],[29.09931640625001,-4.205664062500006],[29.088281250000023,-4.168554687500006],[29.08613281250001,-4.091796875],[29.103320312500017,-3.8955078125],[29.1171875,-3.852246093750011],[29.1171875,-3.816210937500003],[29.103320312500017,-3.78759765625],[29.110156250000017,-3.75],[29.1376953125,-3.703417968750003],[29.147265625000017,-3.616894531250011],[29.138671875,-3.490429687500011],[29.1421875,-3.407910156250011],[29.157519531250017,-3.36962890625],[29.17548828125001,-3.346484375],[29.19599609375001,-3.338476562500006],[29.2984375,-3.355175781250011],[29.331835937500017,-3.389941406250003],[29.3310546875,-3.462304687500009],[29.3349609375,-3.66259765625],[29.346093750000023,-3.7939453125],[29.3642578125,-3.856152343750011],[29.43408203125,-3.976953125],[29.43281250000001,-4.000878906250009],[29.523242187500017,-4.203027343750009],[29.578906250000017,-4.299511718750011],[29.629199218750017,-4.365917968750011],[29.65253906250001,-4.420117187500011],[29.641406250000017,-4.489453125000011],[29.60712890625001,-4.788769531250011],[29.61396484375001,-4.880664062500003],[29.60009765625,-4.896386718750009],[29.607812500000023,-4.907324218750006],[29.63720703125,-4.913476562500009],[29.684375,-4.9390625],[29.749121093750006,-4.984082031250011],[29.7919921875,-5.040917968750009],[29.81269531250001,-5.109375],[29.816308593750023,-5.152050781250011],[29.802636718750023,-5.168847656250009],[29.800390625,-5.2568359375],[29.787890625000017,-5.263378906250011],[29.773535156250006,-5.354394531250009],[29.751953125,-5.405468750000011],[29.758398437500006,-5.466894531250006],[29.812402343750023,-5.527734375],[29.865234375,-5.63046875],[29.923632812500017,-5.771484375],[29.951171875,-5.8609375],[29.947851562500006,-5.898828125],[29.91621093750001,-5.938378906250009],[29.8564453125,-5.979589843750006],[29.817187500000017,-5.996679687500006],[29.7984375,-5.989550781250003],[29.775390625,-6.000683593750011],[29.748046875,-6.0302734375],[29.72871093750001,-6.095410156250011],[29.717382812500006,-6.196191406250009],[29.722070312500023,-6.244140625],[29.747949218750023,-6.287695312500006],[29.820410156250006,-6.370019531250009],[29.943457031250006,-6.479296875],[29.949804687500006,-6.498046875],[29.965136718750017,-6.500390625],[30.023046875,-6.469042968750003],[30.09375,-6.457128906250006],[30.137011718750017,-6.464941406250006],[30.166406250000023,-6.482617187500011],[30.182226562500006,-6.509960937500011],[30.29931640625,-6.615820312500006],[30.3564453125,-6.690332031250009],[30.397753906250017,-6.778125],[30.454980468750023,-6.855566406250006],[30.52802734375001,-6.922753906250009],[30.5634765625,-6.99267578125],[30.56103515625,-7.0654296875],[30.54345703125,-7.10390625],[30.52070312500001,-7.107324218750009],[30.5125,-7.115625],[30.521582031250006,-7.16552734375],[30.57666015625,-7.2763671875],[30.599023437500023,-7.37578125],[30.588671875000017,-7.4638671875],[30.604101562500006,-7.541894531250009],[30.645410156250023,-7.609960937500006],[30.725,-7.701171875],[30.82539062500001,-7.910546875],[30.90595703125001,-8.03759765625],[30.9125,-8.075],[30.925390625,-8.09814453125],[30.95722656250001,-8.120507812500009],[30.962207031250017,-8.138964843750003],[30.9482421875,-8.161523437500009],[30.949804687500006,-8.190039062500006],[30.963964843750006,-8.238085937500003],[31.014550781250023,-8.303027343750003],[31.101660156250006,-8.384960937500011],[31.14277343750001,-8.45078125],[31.137792968750006,-8.500585937500006],[31.1513671875,-8.551074218750003],[31.18378906250001,-8.60234375],[31.19843750000001,-8.651953125],[31.1890625,-8.729882812500009],[31.178515625000017,-8.741992187500003],[31.165625,-8.738574218750003],[31.150488281250006,-8.71953125],[31.133105468750017,-8.724609375],[31.11347656250001,-8.75390625],[31.08417968750001,-8.776171875],[31.044921875,-8.791308593750003],[31.022070312500006,-8.786523437500009],[30.971484375000017,-8.745312500000011],[30.806054687500023,-8.578320312500011],[30.806054687500023,-8.578320312500011],[30.806054687500023,-8.578320312500011]]]}},{"type":"Feature","properties":{"scalerank":0,"name":"GREAT LAKES","name_alt":null,"note":null,"admin":"admin-0","featureclass":"Lake"},"geometry":{"type":"Polygon","coordinates":[[[-83.44736328124999,43.758447265624994],[-83.468896484375,43.730908203125],[-83.526025390625,43.7208984375],[-83.57309570312499,43.697119140625],[-83.62158203125,43.636474609375],[-83.66787109375,43.620996093749994],[-83.73520507812499,43.62666015625],[-83.84799804687499,43.663623046874996],[-83.915673828125,43.700585937499994],[-83.93828124999999,43.737548828125],[-83.939599609375,43.78193359375],[-83.91977539062499,43.833886718749994],[-83.92158203125,43.87548828125],[-83.87880859375,43.962548828124994],[-83.821435546875,43.993457031249996],[-83.7376953125,44.000634765624994],[-83.69150390624999,44.014453125],[-83.6828125,44.035009765625],[-83.656982421875,44.049560546875],[-83.61396484375,44.058251953124994],[-83.57749023437499,44.113427734374994],[-83.547509765625,44.2150390625],[-83.5125,44.270751953125],[-83.48740234374999,44.280566406249996],[-83.46420898437499,44.277246093749994],[-83.46279296875,44.264941406249996],[-83.3662109375,44.330029296875],[-83.33056640625,44.37509765625],[-83.328369140625,44.421435546874996],[-83.319287109375,44.556494140625],[-83.30791015624999,44.643798828125],[-83.29423828124999,44.683349609375],[-83.299560546875,44.785205078124996],[-83.327783203125,44.86923828125],[-83.436181640625,44.96142578125],[-83.4515625,44.991992187499996],[-83.44814453125,45.024560546874994],[-83.425927734375,45.058935546875],[-83.37783203125,45.06689453125],[-83.29306640624999,45.040380859375],[-83.2787109375,45.046777343749994],[-83.30229492187499,45.062402343749994],[-83.31611328125,45.093164062499994],[-83.32016601562499,45.138964843749996],[-83.33110351562499,45.164208984374994],[-83.34897460937499,45.168994140624996],[-83.39619140625,45.22138671875],[-83.402587890625,45.248339843749996],[-83.39726562499999,45.273583984374994],[-83.415283203125,45.2990234375],[-83.478515625,45.338818359375],[-83.59365234375,45.379443359374996],[-83.86875,45.456494140625],[-83.91826171874999,45.486279296875],[-83.986328125,45.503808593749994],[-84.07280273437499,45.509130859375],[-84.12773437499999,45.532470703125],[-84.151123046875,45.573828125],[-84.18925781249999,45.611132812499996],[-84.24228515624999,45.644433593749994],[-84.326318359375,45.666162109374994],[-84.44140625,45.67626953125],[-84.562939453125,45.712158203125],[-84.69091796875,45.773779296875],[-84.77197265625,45.794775390625],[-84.80595703124999,45.775048828124994],[-84.865869140625,45.7685546875],[-84.95151367187499,45.775390625],[-84.981396484375,45.767041015625],[-84.95546875,45.743408203125],[-84.977490234375,45.70654296875],[-85.04736328125,45.656396484374994],[-85.08779296875,45.605273437499996],[-85.09873046874999,45.553125],[-85.08769531249999,45.506884765624996],[-85.0546875,45.466650390625],[-85.00639648437499,45.440478515624996],[-84.94287109375,45.428564453125],[-84.929833984375,45.41259765625],[-84.96713867187499,45.39267578125],[-85.032958984375,45.38125],[-85.12734375,45.378466796874996],[-85.2228515625,45.35615234375],[-85.319482421875,45.314453125],[-85.37568359375,45.276953125],[-85.39145507812499,45.243798828124994],[-85.393994140625,45.195654296875],[-85.381591796875,45.078271484374994],[-85.38901367187499,45.032763671874996],[-85.43037109375,44.94931640625],[-85.48471679687499,44.84033203125],[-85.54936523437499,44.771875],[-85.561474609375,44.78125],[-85.550927734375,44.8146484375],[-85.49711914062499,44.923828125],[-85.488916015625,44.970117187499994],[-85.494091796875,44.994433593749996],[-85.512646484375,44.99677734375],[-85.53388671875,44.9755859375],[-85.557763671875,44.930957031249996],[-85.56284179687499,44.90673828125],[-85.54921875,44.902978515624994],[-85.559326171875,44.87265625],[-85.59326171875,44.815673828125],[-85.622509765625,44.803955078125],[-85.647216796875,44.8375],[-85.64531249999999,44.881640625],[-85.6046875,44.969921875],[-85.61923828124999,44.987060546875],[-85.595703125,45.041943359375],[-85.58525390624999,45.081982421875],[-85.597412109375,45.123339843749996],[-85.58774414062499,45.161328125],[-85.55620117187499,45.19599609375],[-85.565869140625,45.20654296875],[-85.6166015625,45.192919921874996],[-85.68935546875,45.128076171874994],[-85.784130859375,45.012158203125],[-85.8578125,44.9615234375],[-85.91049804687499,44.976318359375],[-85.95292968749999,44.966650390625],[-85.985009765625,44.932519531249994],[-86.019921875,44.91572265625],[-86.05766601562499,44.916357421875],[-86.08046875,44.875878906249994],[-86.08842773437499,44.794238281249996],[-86.12583007812499,44.74775390625],[-86.23701171875,44.72021484375],[-86.258740234375,44.699023437499996],[-86.260693359375,44.668847656249994],[-86.24272460937499,44.629736328125],[-86.2421875,44.551318359374996],[-86.25908203124999,44.43359375],[-86.2958984375,44.330615234374996],[-86.352734375,44.2423828125],[-86.4154296875,44.169482421874996],[-86.519189453125,44.07373046875],[-86.520947265625,44.054736328124996],[-86.469921875,43.979785156249996],[-86.4486328125,43.923974609374994],[-86.43803710937499,43.812744140625],[-86.440576171875,43.794287109375],[-86.54052734375,43.65693359375],[-86.542138671875,43.6373046875],[-86.435009765625,43.407128906249994],[-86.34018554687499,43.241748046874996],[-86.32915039062499,43.22412109375],[-86.30087890624999,43.158056640625],[-86.248486328125,43.02880859375],[-86.22153320312499,42.900439453124996],[-86.22001953124999,42.773095703124994],[-86.23271484374999,42.65],[-86.25961914062499,42.531201171875],[-86.299560546875,42.417626953124994],[-86.352490234375,42.309326171875],[-86.407373046875,42.22373046875],[-86.520166015625,42.082275390625],[-86.575341796875,41.987695312499994],[-86.632470703125,41.911328125],[-86.691552734375,41.853369140625],[-86.79819335937499,41.788525390625],[-87.07260742187499,41.669482421874996],[-87.15869140625,41.646386718749994],[-87.25322265624999,41.637646484375],[-87.35625,41.64326171875],[-87.4125,41.656494140625],[-87.425,41.678564453125],[-87.447021484375,41.68076171875],[-87.476953125,41.695458984374994],[-87.5146484375,41.720654296875],[-87.556591796875,41.765966796875],[-87.60205078125,41.859130859375],[-87.651123046875,42.000244140625],[-87.69462890624999,42.084375],[-87.73251953124999,42.1115234375],[-87.766796875,42.15390625],[-87.79746093749999,42.21142578125],[-87.8125,42.341064453125],[-87.811962890625,42.54296875],[-87.80166015625,42.68037109375],[-87.781396484375,42.75341796875],[-87.787060546875,42.8091796875],[-87.81870117187499,42.847705078124996],[-87.83818359374999,42.895654296874994],[-87.84555664062499,42.953076171875],[-87.862060546875,42.991992187499996],[-87.88774414062499,43.012451171875],[-87.89340820312499,43.04111328125],[-87.87900390624999,43.07783203125],[-87.878857421875,43.103125],[-87.8927734375,43.11689453125],[-87.89609375,43.13740234375],[-87.888818359375,43.16455078125],[-87.90166015624999,43.244921875],[-87.898388671875,43.293798828125],[-87.88071289062499,43.347021484375],[-87.82392578125,43.443017578124994],[-87.80556640625,43.490087890625],[-87.80087890624999,43.5380859375],[-87.77402343749999,43.598876953125],[-87.69970703125,43.72373046875],[-87.69794921875,43.75244140625],[-87.723388671875,43.80908203125],[-87.72939453125,43.851171875],[-87.723828125,43.907275390624996],[-87.700146484375,43.976611328124996],[-87.65849609374999,44.059033203125],[-87.60341796875,44.124951171875],[-87.534912109375,44.174267578125],[-87.5125,44.230273437499996],[-87.5361328125,44.29296875],[-87.52744140624999,44.385693359375],[-87.4865234375,44.50859375],[-87.440869140625,44.60068359375],[-87.39052734375,44.661962890625],[-87.35605468749999,44.720361328124994],[-87.3373046875,44.775830078125],[-87.34560546875,44.800634765625],[-87.38310546874999,44.827099609375],[-87.419580078125,44.865625],[-87.48017578125,44.87412109375],[-87.55537109375,44.848583984375],[-87.566015625,44.85029296875],[-87.60439453125,44.846875],[-87.67661132812499,44.790283203125],[-87.74091796875,44.692041015624994],[-87.787548828125,44.6515625],[-87.85107421875,44.6240234375],[-87.89824218749999,44.593359375],[-87.92900390624999,44.559472656249994],[-87.96923828125,44.552001953125],[-88.01875,44.571142578125],[-88.028271484375,44.617919921875],[-87.997802734375,44.692333984375],[-87.9515625,44.763720703124996],[-87.85678710937499,44.88037109375],[-87.85356445312499,44.90830078125],[-87.8302734375,44.94248046875],[-87.683203125,44.992626953125],[-87.62700195312499,45.032275390624996],[-87.60776367187499,45.082666015624994],[-87.60224609375,45.15703125],[-87.59282226562499,45.17783203125],[-87.57119140625,45.18662109375],[-87.506494140625,45.248876953125],[-87.39877929687499,45.364648437499994],[-87.30205078124999,45.484130859375],[-87.21640625,45.607324218749994],[-87.153759765625,45.6767578125],[-87.11416015625,45.69248046875],[-87.08486328125,45.729785156249996],[-87.0392578125,45.844580078125],[-87.005029296875,45.89716796875],[-86.98232421875,45.917285156249996],[-86.97109375,45.90498046875],[-86.992919921875,45.84189453125],[-86.99277343749999,45.7896484375],[-86.97421875,45.72314453125],[-86.937890625,45.700244140624996],[-86.88388671874999,45.720947265625],[-86.83745117187499,45.764794921874994],[-86.79853515625,45.831787109375],[-86.75361328125,45.85947265625],[-86.702783203125,45.847949218749996],[-86.66064453125,45.852294921875],[-86.627197265625,45.872509765625],[-86.56333007812499,45.88251953125],[-86.551513671875,45.857080078124994],[-86.55927734375,45.806298828124994],[-86.579541015625,45.7818359375],[-86.612255859375,45.783642578125],[-86.64951171874999,45.7568359375],[-86.69140625,45.701416015625],[-86.689697265625,45.65732421875],[-86.64443359375,45.62451171875],[-86.62197265625,45.62275390625],[-86.62236328124999,45.652001953124994],[-86.601171875,45.681640625],[-86.53388671875,45.735644531249996],[-86.527490234375,45.753173828125],[-86.399560546875,45.800683593749994],[-86.351318359375,45.830957031249994],[-86.3380859375,45.86572265625],[-86.27177734374999,45.936669921874994],[-86.208935546875,45.959326171875],[-86.12294921875,45.9689453125],[-86.03974609375,45.962695312499996],[-85.95932617187499,45.940673828125],[-85.913720703125,45.941162109375],[-85.90288085937499,45.964208984375],[-85.834228515625,45.9796875],[-85.70781249999999,45.987597656249996],[-85.61479492187499,46.020458984375],[-85.555078125,46.078173828124996],[-85.47880859374999,46.107568359374994],[-85.3859375,46.108642578125],[-85.25986328124999,46.088183593749996],[-85.10063476562499,46.046191406249996],[-84.971826171875,45.98896484375],[-84.80185546874999,45.874365234375],[-84.75693359374999,45.86279296875],[-84.72739257812499,45.861474609374994],[-84.713330078125,45.870507812499994],[-84.71269531249999,45.881640625],[-84.72539062499999,45.894873046875],[-84.71708984374999,45.943505859374994],[-84.72490234374999,45.95751953125],[-84.67465820312499,46.03330078125],[-84.63154296875,46.052636718749994],[-84.581494140625,46.045556640624994],[-84.54990234374999,46.029248046875],[-84.536865234375,46.003710937499996],[-84.52128906249999,45.994580078125],[-84.49033203124999,45.99375],[-84.473095703125,45.989990234375],[-84.46293945312499,45.992089843749994],[-84.44731445312499,46.006152343749996],[-84.34091796874999,45.999804687499996],[-83.97880859374999,45.9615234375],[-83.92919921875,45.967578125],[-83.90097656249999,45.980859375],[-83.894140625,46.001318359375],[-83.917431640625,46.020703125],[-84.011962890625,46.061425781249994],[-84.040771484375,46.088183593749996],[-84.04838867187499,46.113525390625],[-84.03471679687499,46.13740234375],[-84.0548828125,46.158935546875],[-84.108837890625,46.178173828125],[-84.22705078125,46.183642578124996],[-84.24794921875,46.203027343749994],[-84.2384765625,46.222460937499996],[-84.20366210937499,46.246972656249994],[-84.20224609374999,46.283154296875],[-84.213330078125,46.30380859375],[-84.22905273437499,46.3658203125],[-84.25478515625,46.407568359375],[-84.30673828124999,46.469140625],[-84.32744140624999,46.491455078125],[-84.35800781249999,46.5046875],[-84.386962890625,46.502246093749996],[-84.42416992187499,46.490673828125],[-84.4671875,46.464208984375],[-84.52836914062499,46.436083984374996],[-84.59150390625,46.443115234375],[-84.63486328124999,46.482275390625],[-84.69731445312499,46.49072265625],[-84.77880859375,46.468359375],[-84.851171875,46.469482421875],[-84.914306640625,46.493994140625],[-85.034326171875,46.505761718749994],[-85.04863281249999,46.523876953125],[-85.0462890625,46.543017578124996],[-85.02739257812499,46.563134765624994],[-85.016748046875,46.6109375],[-85.01450195312499,46.686474609375],[-84.998193359375,46.739697265625],[-84.967919921875,46.770703125],[-85.0146484375,46.783496093749996],[-85.138427734375,46.77802734375],[-85.280712890625,46.75244140625],[-85.44150390624999,46.706640625],[-85.61611328125,46.690576171874994],[-85.80449218749999,46.704248046874994],[-85.94677734375,46.7021484375],[-86.104638671875,46.679248046874996],[-86.13203125,46.686816406249996],[-86.23134765625,46.65625],[-86.40268554687499,46.587744140625],[-86.531005859375,46.5244140625],[-86.6375,46.452978515625],[-86.65390625,46.45224609375],[-86.67905273437499,46.468212890625],[-86.73291015625,46.490136718749994],[-86.79038085937499,46.4908203125],[-86.85146484375,46.47021484375],[-86.91362304687499,46.483300781249994],[-86.9767578125,46.530078125],[-87.034130859375,46.543212890625],[-87.085693359375,46.522705078125],[-87.170654296875,46.513525390625],[-87.35810546875,46.5244140625],[-87.37783203125,46.53955078125],[-87.394482421875,46.590087890625],[-87.41489257812499,46.612060546875],[-87.45122070312499,46.62744140625],[-87.50947265625,46.683447265625],[-87.6375,46.826513671875],[-87.67290039062499,46.843554687499996],[-87.777587890625,46.887890625],[-87.877099609375,46.90771484375],[-88.129150390625,46.935498046875],[-88.183740234375,46.955322265625],[-88.216259765625,46.9515625],[-88.3830078125,46.874316406249996],[-88.38994140624999,46.857421875],[-88.4,46.84091796875],[-88.42729492187499,46.813916015625],[-88.44912109375,46.801513671875],[-88.46274414062499,46.81416015625],[-88.47607421875,46.83671875],[-88.47373046874999,46.886279296874996],[-88.45585937499999,46.962841796875],[-88.466015625,47.012548828125],[-88.50439453125,47.035449218749996],[-88.52084960937499,47.0630859375],[-88.51542968749999,47.095507812499996],[-88.54326171874999,47.12158203125],[-88.60439453125,47.141259765624994],[-88.63271484375,47.166894531249994],[-88.62822265624999,47.198632812499994],[-88.63413085937499,47.2203125],[-88.65048828124999,47.231982421874996],[-88.71562,47.207177734374994],[-88.82963867187499,47.145849609375],[-88.90712890625,47.091113281249996],[-88.94809570312499,47.04296875],[-89.00913085937499,47.01572265625],[-89.090234375,47.00927734375],[-89.15478515625,46.988623046875],[-89.26943359375,46.9181640625],[-89.35498046875,46.88193359375],[-89.496826171875,46.855419921875],[-89.69511718749999,46.83857421875],[-89.860595703125,46.792773437499996],[-89.99326171874999,46.717919921874994],[-90.153564453125,46.6544921875],[-90.34135742187499,46.602490234375],[-90.46884765624999,46.584130859374994],[-90.5361328125,46.599365234375],[-90.61650390624999,46.63134765625],[-90.73681640625,46.688867187499994],[-90.754345703125,46.683544921875],[-90.74501953125,46.671679687499996],[-90.74755859375,46.661865234375],[-90.769970703125,46.645410156249994],[-90.922998046875,46.603076171874996],[-90.943505859375,46.618994140625],[-90.88642578125,46.677490234375],[-90.863916015625,46.72080078125],[-90.86533203124999,46.760693359375],[-90.83989257812499,46.809960937499994],[-90.78769531249999,46.868408203125],[-90.76835937499999,46.908007812499996],[-90.78193359375,46.9287109375],[-90.83994140624999,46.962451171874996],[-90.886669921875,46.964794921875],[-90.946044921875,46.953759765624994],[-91.12724609374999,46.86767578125],[-91.14541015625,46.874316406249996],[-91.203369140625,46.888037109375],[-91.21762695312499,46.885644531249994],[-91.35698242187499,46.8107421875],[-91.49907226562499,46.76611328125],[-91.83564453125,46.702099609375],[-91.92080078125,46.69443359375],[-91.9873046875,46.698974609375],[-92.07280273437499,46.736181640625],[-92.10703125,46.761865234374994],[-92.104248046875,46.789404296875],[-92.06455078124999,46.81884765625],[-91.645166015625,47.050048828125],[-91.38627929687499,47.214746093749994],[-90.95712890624999,47.523730468749996],[-90.84672851562499,47.585253906249996],[-90.59746093749999,47.687744140625],[-90.197265625,47.786425781249996],[-89.99985351562499,47.841162109375],[-89.828759765625,47.90087890625],[-89.71953124999999,47.946728515625],[-89.6720703125,47.9787109375],[-89.63383789062499,47.993701171874996],[-89.604736328125,47.991650390625],[-89.54746093749999,48.012939453125],[-89.449658203125,48.092236328125],[-89.4384765625,48.098779296874994],[-89.34541015625,48.121142578124996],[-89.31513671875,48.158984375],[-89.29667968749999,48.204248046874994],[-89.25224609374999,48.279736328125],[-89.22148437499999,48.3107421875],[-89.21391601562499,48.344921875],[-89.22939453125,48.382275390625],[-89.225,48.417578125],[-89.20073242187499,48.450830078124994],[-89.08642578125,48.49765625],[-88.774560546875,48.583056640624996],[-88.76376953124999,48.57236328125],[-88.81826171875,48.5064453125],[-88.876416015625,48.381494140624994],[-88.896923828125,48.378076171874994],[-88.915673828125,48.362744140625],[-88.93271484374999,48.335400390625],[-88.88847656249999,48.337304687499994],[-88.782861328125,48.368310546874994],[-88.734375,48.384082031249996],[-88.721923828125,48.414599609374996],[-88.705712890625,48.476123046874996],[-88.68315429687499,48.510107421875],[-88.65410156249999,48.516552734375],[-88.63486328124999,48.54609375],[-88.62529296874999,48.59873046875],[-88.60209960937499,48.629931640624996],[-88.56533203125,48.63984375],[-88.54960937499999,48.658154296875],[-88.551953125,48.683740234374994],[-88.542431640625,48.753222656249996],[-88.53515625,48.785693359374996],[-88.50263671875,48.833056640624996],[-88.45761718749999,48.8478515625],[-88.39531249999999,48.844873046874994],[-88.35244140625,48.82080078125],[-88.32915039062499,48.775683593749996],[-88.32285156249999,48.7384765625],[-88.33359375,48.70908203125],[-88.393798828125,48.655810546874996],[-88.56650390624999,48.52802734375],[-88.58452148437499,48.492431640625],[-88.5693359375,48.473925781249996],[-88.55937,48.446826171874996],[-88.53876953125,48.443408203124996],[-88.500927734375,48.4669921875],[-88.48447265624999,48.488085937499996],[-88.489453125,48.506591796875],[-88.475830078125,48.530664062499994],[-88.443505859375,48.56025390625],[-88.4181640625,48.569140625],[-88.399658203125,48.557275390624994],[-88.36875,48.562402343749994],[-88.32548828124999,48.58447265625],[-88.247998046875,48.595947265625],[-88.23310546875,48.596972656249996],[-88.138427734375,48.682861328125],[-88.10917968749999,48.73291015625],[-88.1087890625,48.7759765625],[-88.147216796875,48.820751953125],[-88.22431640625,48.867138671875],[-88.24658203125,48.9169921875],[-88.24863281249999,48.94189453125],[-88.26357421875,48.973681640624996],[-88.24755859375,48.985546875],[-88.200439453125,48.977441406249994],[-88.16064453125,48.981640625],[-88.12822265624999,48.99814453125],[-88.06982421875,49.001416015625],[-88.02250976562499,48.998681640624994],[-87.96562,48.95869140625],[-87.7609375,48.919921875],[-87.68525390625,48.89921875],[-87.59160156249999,48.878173828125],[-87.5677734375,48.871240234374994],[-87.552001953125,48.84833984375],[-87.51728515625,48.83857421875],[-87.46372070312499,48.842041015625],[-87.40708007812499,48.834814453125],[-87.31142578125,48.7994140625],[-87.2236328125,48.77578125],[-87.084716796875,48.77890625],[-87.008544921875,48.788818359375],[-86.887646484375,48.772412109375],[-86.81987304687499,48.77255859375],[-86.7515625,48.800585937499996],[-86.692529296875,48.807910156249996],[-86.64287109374999,48.794580078124994],[-86.62143554687499,48.777490234374994],[-86.58095703125,48.75302734375],[-86.45927734374999,48.764941406249996],[-86.43242187499999,48.758154296875],[-86.396142578125,48.731298828125],[-86.39018554687499,48.714111328125],[-86.37099609375,48.687548828124996],[-86.324951171875,48.636621093749994],[-86.31425781249999,48.619091796875],[-86.28256835937499,48.597949218749996],[-86.256982421875,48.5484375],[-86.23740234374999,48.470605468749994],[-86.21552734375,48.42294921875],[-86.191357421875,48.405566406249996],[-86.18100585937499,48.3853515625],[-86.158935546875,48.303955078125],[-86.104150390625,48.210302734375],[-86.022412109375,48.118798828124994],[-85.91362304687499,48.029541015625],[-85.77768554687499,47.970166015625],[-85.61459960937499,47.940722656249996],[-85.46953124999999,47.93408203125],[-85.34248046875,47.950244140624996],[-85.173828125,47.958984375],[-84.96357421875,47.960205078125],[-84.854736328125,47.949951171875],[-84.847265625,47.928027343749996],[-84.8673828125,47.896435546875],[-84.915185546875,47.855126953124994],[-84.92026367187499,47.827880859375],[-84.92246093749999,47.792578125],[-84.96098632812499,47.74580078125],[-84.981103515625,47.717626953125],[-84.9748046875,47.697998046875],[-84.98583984375,47.671728515625],[-85.01425781249999,47.63876953125],[-84.99760742187499,47.594775390624996],[-84.93583984374999,47.53984375],[-84.86044921874999,47.495507812499994],[-84.77133789062499,47.461669921875],[-84.71562,47.426660156249994],[-84.693310546875,47.390478515625],[-84.66845703125,47.37060546875],[-84.64116210937499,47.367041015625],[-84.616455078125,47.350244140624994],[-84.59433593749999,47.320214843749994],[-84.61826171874999,47.2671875],[-84.68818359375,47.191162109375],[-84.71953124999999,47.14208984375],[-84.7123046875,47.119873046875],[-84.7716796875,47.03671875],[-84.775146484375,47.00400390625],[-84.750390625,46.98125],[-84.6556640625,46.948974609375],[-84.62490234375,46.92236328125],[-84.600341796875,46.918408203125],[-84.58208007812499,46.937158203124994],[-84.544580078125,46.945703125],[-84.48798828125,46.94404296875],[-84.434765625,46.93076171875],[-84.385009765625,46.90576171875],[-84.367431640625,46.87998046875],[-84.38203125,46.853320312499996],[-84.40776367187499,46.843652343749994],[-84.4845703125,46.84765625],[-84.527734375,46.833984375],[-84.553466796875,46.805566406249994],[-84.56103515625,46.729785156249996],[-84.53994140625,46.697314453124996],[-84.5275390625,46.69736328125],[-84.51025390625,46.712744140625],[-84.48808593749999,46.743505859375],[-84.464013671875,46.746923828125],[-84.438134765625,46.723046875],[-84.465966796875,46.674072265625],[-84.547607421875,46.599951171875],[-84.5685546875,46.57666015625],[-84.56845703124999,46.543310546875],[-84.50053710937499,46.483251953125],[-84.47543945312499,46.489013671875],[-84.45888671875,46.503857421875],[-84.43242187499999,46.5220703125],[-84.3439453125,46.531152343749994],[-84.23564453124999,46.556787109374994],[-84.16538085937499,46.56259765625],[-84.11826171874999,46.539453125],[-84.087109375,46.506982421874994],[-84.08383789062499,46.472509765625],[-84.10615234375,46.43046875],[-84.1087890625,46.393212890624994],[-84.09184570312499,46.36083984375],[-84.033642578125,46.343798828124996],[-83.934228515625,46.342041015625],[-83.88173828125,46.332910156249994],[-83.86313476562499,46.306201171874996],[-83.842724609375,46.301953125],[-83.66064453125,46.28984375],[-83.5927734375,46.27783203125],[-83.571728515625,46.260498046875],[-83.459130859375,46.237646484375],[-83.02548828124999,46.181298828124994],[-82.8947265625,46.188427734375],[-82.719140625,46.20712890625],[-82.66362304687499,46.175927734374994],[-82.638134765625,46.172412109374996],[-82.59765625,46.177099609375],[-82.350048828125,46.193261718749994],[-82.31772460937499,46.162939453125],[-82.19599609375,46.133935546874994],[-82.11582031249999,46.131640625],[-82.01176757812499,46.128710937499996],[-81.8166015625,46.11474609375],[-81.769287109375,46.104443359375],[-81.765771484375,46.071435546874994],[-81.76518554687499,46.057910156249996],[-81.7501953125,46.057470703125],[-81.72705078125,46.073095703125],[-81.688671875,46.07880859375],[-81.66171875,46.09287109375],[-81.64619140625,46.115283203124996],[-81.61533203124999,46.119384765625],[-81.54453125,46.090380859374996],[-81.541650390625,46.074658203125],[-81.640234375,46.0400390625],[-81.62949218749999,46.025390625],[-81.62382812499999,46.01669921875],[-81.597265625,46.0119140625],[-81.594970703125,45.996386718749996],[-81.62705078124999,45.97802734375],[-81.59672851562499,45.966552734375],[-81.502392578125,45.99296875],[-81.4494140625,45.994433593749996],[-81.30351562499999,45.97412109375],[-81.23681640625,45.97412109375],[-81.19697265625,45.990966796875],[-81.19130859375,46.006152343749996],[-81.17368164062499,46.016064453125],[-81.16201171875,46.012060546875],[-81.15751953124999,45.99169921875],[-81.16025390624999,45.954882812499996],[-81.09702148437499,45.9416015625],[-80.96796875,45.951806640624994],[-80.89042968749999,45.951025390625],[-80.8177734375,45.951025390625],[-80.80517578125,45.94248046875],[-80.78662109375,45.919140625],[-80.731591796875,45.877246093749996],[-80.71337890625,45.85849609375],[-80.696435546875,45.81591796875],[-80.65615234375,45.790234375],[-80.64311523437499,45.7671875],[-80.641015625,45.747265625],[-80.628857421875,45.7271484375],[-80.59267578125,45.68203125],[-80.54550781249999,45.650048828124994],[-80.519921875,45.62255859375],[-80.510693359375,45.589746093749994],[-80.485546875,45.576953125],[-80.444287109375,45.584130859374994],[-80.42705078124999,45.597802734374994],[-80.42949218749999,45.625244140625],[-80.414013671875,45.619873046875],[-80.38852539062499,45.573583984375],[-80.391748046875,45.500537109374996],[-80.38486328124999,45.458398437499994],[-80.349609375,45.399267578125],[-80.302490234375,45.383105468749996],[-80.270703125,45.36015625],[-80.17729492187499,45.34384765625],[-80.16767578125,45.348486328125],[-80.185498046875,45.386572265625],[-80.17612304687499,45.39658203125],[-80.14482421874999,45.398828125],[-80.09165039062499,45.393359375],[-80.057080078125,45.374560546874996],[-80.04111328124999,45.3423828125],[-80.04970703125,45.301123046875],[-80.111474609375,45.259228515625],[-80.12109375,45.22333984375],[-80.107568359375,45.200976562499996],[-80.0921875,45.196875],[-80.07490234375,45.21103515625],[-80.04936523437499,45.204052734375],[-80.015380859375,45.17587890625],[-80.006494140625,45.153271484375],[-80.02265625,45.136132812499994],[-80.08334960937499,45.126416015625],[-80.0859375,45.109375],[-80.02158203124999,45.072119140625],[-79.971875,45.02216796875],[-79.94609374999999,45.0171875],[-79.931787109375,45.001220703125],[-79.92890625,44.974365234375],[-79.90239257812499,44.95654296875],[-79.828369140625,44.936328125],[-79.799951171875,44.88486328125],[-79.7845703125,44.854150390624994],[-79.77158203124999,44.8193359375],[-79.749609375,44.815478515624996],[-79.73276367187499,44.83203125],[-79.73247070312499,44.862939453124994],[-79.695947265625,44.875146484374994],[-79.6923828125,44.858789062499994],[-79.71337890625,44.821142578125],[-79.70859375,44.791162109374994],[-79.6779296875,44.768945312499994],[-79.71738281249999,44.761181640625],[-79.82695312499999,44.768017578125],[-79.87626953124999,44.79853515625],[-79.89130859375,44.809375],[-79.924951171875,44.812890625],[-79.935302734375,44.823535156249996],[-79.92041015625,44.854541015624996],[-79.92958984375,44.86298828125],[-79.99677734375,44.855712890625],[-80.06474609374999,44.83359375],[-80.10820312499999,44.806787109374994],[-80.10791015625,44.77548828125],[-80.07890624999999,44.743115234375],[-80.021142578125,44.709521484374996],[-79.9974609375,44.65234375],[-80.0078125,44.571679687499994],[-80.03696289062499,44.517382812499996],[-80.08481445312499,44.48935546875],[-80.2259765625,44.509521484375],[-80.46025390624999,44.577783203124994],[-80.59287109374999,44.638525390625],[-80.64951171874999,44.7212890625],[-80.670166015625,44.727001953125],[-80.78984374999999,44.70029296875],[-80.85405273437499,44.66611328125],[-80.90966796875,44.617578125],[-80.925390625,44.632861328124996],[-80.90117187499999,44.71201171875],[-80.89116210937499,44.761328125],[-80.89536132812499,44.78095703125],[-80.91943359375,44.796777343749994],[-80.96347656249999,44.808984375],[-81.02197265625,44.802148437499994],[-81.11025390625,44.76533203125],[-81.13017578124999,44.769677734374994],[-81.12753906249999,44.782421875],[-81.03642578124999,44.842822265624996],[-81.00634765625,44.876171875],[-81.00595703124999,44.90693359375],[-80.992578125,44.934375],[-80.966259765625,44.958642578124994],[-80.97275390624999,44.969628906249994],[-81.01201171874999,44.967333984374996],[-81.03203124999999,44.956933593749994],[-81.07402343749999,44.91376953125],[-81.13359374999999,44.917871093749994],[-81.14111328125,44.927783203124996],[-81.125,44.952539062499994],[-81.137939453125,44.968066406249996],[-81.17998046874999,44.974365234375],[-81.193310546875,45.00263671875],[-81.20737304687499,45.008691406249994],[-81.259521484375,45.0283203125],[-81.26416015625,45.081347656249996],[-81.28183593749999,45.123974609375],[-81.31254882812499,45.15625],[-81.3158203125,45.188671875],[-81.28520507812499,45.241259765624996],[-81.296484375,45.24873046875],[-81.39990234375,45.255615234375],[-81.595361328125,45.261962890625],[-81.69736328124999,45.251220703125],[-81.7060546875,45.223486328125],[-81.68315429687499,45.20283203125],[-81.62880859375,45.189111328124994],[-81.59033203125,45.165869140625],[-81.57744140624999,45.145410156249994],[-81.541455078125,45.124902343749994],[-81.49931640624999,45.081445312499994],[-81.451171875,45.014990234375],[-81.415478515625,44.987353515624996],[-81.376953125,44.984130859375],[-81.355224609375,44.9775390625],[-81.358349609375,44.911035156249994],[-81.34111328124999,44.869921875],[-81.300048828125,44.831982421875],[-81.27817382812499,44.789941406249994],[-81.280712890625,44.716259765625],[-81.277734375,44.643701171874994],[-81.297509765625,44.5966796875],[-81.35190429687499,44.542285156249996],[-81.38676757812499,44.496923828125],[-81.40219726562499,44.460595703124994],[-81.43134765625,44.436474609375],[-81.47431640625,44.424560546875],[-81.51884765624999,44.39892578125],[-81.56494140625,44.359667968749996],[-81.594970703125,44.310839843749996],[-81.60893554687499,44.2525390625],[-81.646630859375,44.19248046875],[-81.70810546874999,44.130712890625],[-81.73198242187499,44.060400390625],[-81.718359375,43.981591796874994],[-81.71650390625,43.642138671874996],[-81.70517578124999,43.5576171875],[-81.71279296875,43.474072265625],[-81.739404296875,43.391552734375],[-81.78452148437499,43.32685546875],[-81.84819335937499,43.280126953125],[-81.911376953125,43.24560546875],[-81.97412109375,43.2234375],[-82.03305664062499,43.185791015625],[-82.0880859375,43.132666015625],[-82.1810546875,43.085107421874994],[-82.31201171875,43.043261718749996],[-82.417236328125,43.017382812499996],[-82.43193359374999,43.03857421875],[-82.46127929687499,43.081005859375],[-82.51621093749999,43.279638671875],[-82.59672851562499,43.634423828124994],[-82.663330078125,43.85419921875],[-82.71611328124999,43.939013671874996],[-82.787744140625,44.003515625],[-82.87822265624999,44.047753906249994],[-82.947216796875,44.0669921875],[-82.99462890625,44.061083984374996],[-83.069482421875,44.025048828124994],[-83.20927734374999,43.993603515625],[-83.2666015625,43.9728515625],[-83.299462890625,43.945117187499996],[-83.338134765625,43.92890625],[-83.382568359375,43.924072265625],[-83.3875,43.9166015625],[-83.35307617187499,43.90634765625],[-83.352978515625,43.879345703125],[-83.44736328124999,43.758447265624994],[-83.44736328124999,43.758447265624994],[-83.44736328124999,43.758447265624994],[-83.44736328124999,43.758447265624994]],[[-83.34526367187499,45.9927734375],[-83.39228515625,45.988232421875],[-83.43740234375,45.963232421875],[-83.46665039062499,45.93603515625],[-83.47998046875,45.90673828125],[-83.4533203125,45.88427734375],[-83.38657226562499,45.868554687499994],[-83.331982421875,45.88037109375],[-83.269189453125,45.946582031249996],[-83.27104492187499,45.961328125],[-83.29638671875,45.97666015625],[-83.34526367187499,45.9927734375],[-83.34526367187499,45.9927734375],[-83.34526367187499,45.9927734375]],[[-83.52900390625,46.023583984374994],[-83.580078125,46.080078125],[-83.60820312499999,46.096582031249994],[-83.68388671874999,46.10625],[-83.6994140625,46.095605468749994],[-83.68022460937499,46.07041015625],[-83.683251953125,46.0572265625],[-83.714794921875,46.0375],[-83.775,46.011083984375],[-83.820263671875,46.00498046875],[-83.8505859375,46.019140625],[-83.87109375,46.017382812499996],[-83.875146484375,45.991259765624996],[-83.86572265625,45.9791015625],[-83.8232421875,45.9556640625],[-83.73076171874999,45.94296875],[-83.58828125,45.94111328125],[-83.518017578125,45.957861328125],[-83.49375,45.9908203125],[-83.50346679687499,46.013134765625],[-83.52900390625,46.023583984374994],[-83.52900390625,46.023583984374994],[-83.52900390625,46.023583984374994]],[[-83.82895507812499,46.14765625],[-83.80830078125,46.1666015625],[-83.794580078125,46.214306640625],[-83.82211914062499,46.253466796874996],[-83.891064453125,46.2841796875],[-83.970703125,46.302978515625],[-84.06113281249999,46.309765625],[-84.09702148437499,46.28759765625],[-84.07822265624999,46.23642578125],[-84.03876953125,46.177050781249996],[-83.97861328124999,46.109423828124996],[-83.93027343749999,46.091699218749994],[-83.90683593749999,46.097216796874996],[-83.88725585937499,46.118896484375],[-83.875927734375,46.147900390625],[-83.85649414062499,46.157470703125],[-83.82895507812499,46.14765625],[-83.82895507812499,46.14765625],[-83.82895507812499,46.14765625]],[[-84.16875,46.324462890625],[-84.188134765625,46.323486328125],[-84.1955078125,46.30341796875],[-84.18491210937499,46.279443359374994],[-84.13486328124999,46.2404296875],[-84.12065429687499,46.245898437499996],[-84.11557617187499,46.260791015624996],[-84.119580078125,46.285009765625],[-84.13730468749999,46.30625],[-84.16875,46.324462890625],[-84.16875,46.324462890625],[-84.16875,46.324462890625]],[[-84.13271484375,46.340673828125],[-84.1328125,46.362207031249994],[-84.16357421875,46.410009765625],[-84.16508789062499,46.456787109375],[-84.137353515625,46.502587890624994],[-84.14243164062499,46.530908203124994],[-84.18027343749999,46.541796875],[-84.21552734375,46.536083984375],[-84.274169921875,46.4875],[-84.23505859375,46.44453125],[-84.20947265625,46.38427734375],[-84.18896484375,46.36005859375],[-84.16342773437499,46.345556640625],[-84.13271484375,46.340673828125],[-84.13271484375,46.340673828125],[-84.13271484375,46.340673828125]],[[-84.42900390624999,45.806542968749994],[-84.55717773437499,45.820458984374994],[-84.56308593749999,45.803857421874994],[-84.4875,45.753515625],[-84.44121093749999,45.73447265625],[-84.4123046875,45.736279296875],[-84.39013671875,45.74658203125],[-84.374755859375,45.765380859375],[-84.3802734375,45.7876953125],[-84.416748046875,45.814306640625],[-84.42900390624999,45.806542968749994],[-84.42900390624999,45.806542968749994],[-84.42900390624999,45.806542968749994]],[[-85.492333984375,45.760205078125],[-85.538525390625,45.775390625],[-85.57285156249999,45.737890625],[-85.60771484374999,45.656054687499996],[-85.612060546875,45.609277343749994],[-85.5859375,45.597509765625],[-85.55166015625,45.602587890624996],[-85.50908203124999,45.624462890625],[-85.492333984375,45.662890625],[-85.50146484375,45.750244140625],[-85.492333984375,45.760205078125],[-85.492333984375,45.760205078125],[-85.492333984375,45.760205078125]],[[-86.05244140625,45.156396484374994],[-86.0595703125,45.146826171875],[-86.03793945312499,45.102832031249996],[-86.015771484375,45.089160156249996],[-85.98818359375,45.08798828125],[-85.976220703125,45.1021484375],[-85.97983398437499,45.131640625],[-85.998486328125,45.150146484375],[-86.05244140625,45.156396484374994],[-86.05244140625,45.156396484374994],[-86.05244140625,45.156396484374994]],[[-86.92631835937499,45.414941406249994],[-86.93798828125,45.425585937499996],[-86.96669921875,45.368310546874994],[-86.946875,45.345703125],[-86.89194335937499,45.34228515625],[-86.86186523437499,45.35224609375],[-86.856591796875,45.394384765625],[-86.86186523437499,45.40859375],[-86.87846679687499,45.41416015625],[-86.92631835937499,45.414941406249994],[-86.92631835937499,45.414941406249994],[-86.92631835937499,45.414941406249994]],[[-87.04912109374999,45.302880859374994],[-87.088134765625,45.279150390625],[-87.122021484375,45.224511718749994],[-87.16640625,45.189501953124996],[-87.221142578125,45.173974609374994],[-87.2587890625,45.137988281249996],[-87.27934570312499,45.081494140625],[-87.31552734374999,45.031103515625],[-87.396484375,44.954150390624996],[-87.40302734375,44.932861328125],[-87.39824218749999,44.9029296875],[-87.38203125,44.8642578125],[-87.35458984374999,44.838818359375],[-87.3158203125,44.8265625],[-87.2802734375,44.834863281249994],[-87.18808593749999,44.92197265625],[-87.17949218749999,44.941064453124994],[-87.19130859375,44.950244140624996],[-87.17856445312499,44.9833984375],[-87.141357421875,45.040673828124994],[-87.113916015625,45.06845703125],[-87.096337890625,45.066748046875],[-87.07802734375,45.078125],[-87.05893554687499,45.102441406249994],[-87.0615234375,45.124902343749994],[-87.085693359375,45.145410156249994],[-87.0841796875,45.153955078124994],[-87.056884765625,45.150537109374994],[-87.046630859375,45.171875],[-87.05356445312499,45.217919921874994],[-87.04150390625,45.236669921875],[-87.01035156249999,45.228173828124994],[-86.99189453125,45.241015625],[-86.9859375,45.275195312499996],[-87.005029296875,45.295800781249994],[-87.04912109374999,45.302880859374994],[-87.04912109374999,45.302880859374994],[-87.04912109374999,45.302880859374994]],[[-85.64111328125,47.781787109374996],[-85.76513671875,47.80673828125],[-85.82744140624999,47.804492187499996],[-85.88271484375,47.791015625],[-85.930908203125,47.766455078125],[-85.95073242187499,47.747314453125],[-85.94218749999999,47.733740234375],[-85.85859375,47.719091796875],[-85.666015625,47.733349609375],[-85.605859375,47.742138671875],[-85.59609375,47.757080078125],[-85.64111328125,47.781787109374996],[-85.64111328125,47.781787109374996],[-85.64111328125,47.781787109374996]],[[-87.6669921875,48.821435546874994],[-87.702099609375,48.84140625],[-87.73134765625,48.840478515624994],[-87.748193359375,48.83466796875],[-87.752685546875,48.824072265625],[-87.73105468749999,48.793847656249994],[-87.729931640625,48.77841796875],[-87.74370117187499,48.76416015625],[-87.73046875,48.7546875],[-87.69028320312499,48.75],[-87.62167968749999,48.756884765624996],[-87.62602539062499,48.780419921874994],[-87.6669921875,48.821435546874994],[-87.6669921875,48.821435546874994],[-87.6669921875,48.821435546874994]],[[-87.994287109375,47.484228515625],[-88.11020507812499,47.472509765625],[-88.3203125,47.42109375],[-88.39433593749999,47.388720703124996],[-88.561962890625,47.27216796875],[-88.60888671875,47.2171875],[-88.61572265625,47.174169921875],[-88.57373046875,47.143310546875],[-88.43408203125,47.122314453125],[-88.42705078124999,47.136572265625],[-88.43315429687499,47.143359375],[-88.45380859375,47.15185546875],[-88.416748046875,47.191455078124996],[-88.405419921875,47.17548828125],[-88.40908203125,47.1314453125],[-88.438427734375,47.099560546875],[-88.46845703125,47.07724609375],[-88.46865234375,47.047607421875],[-88.4390625,47.0107421875],[-88.40224609375,47.019287109375],[-88.35820312499999,47.073388671874994],[-88.236767578125,47.158935546875],[-88.240380859375,47.1783203125],[-88.221875,47.210595703124994],[-88.01552734375,47.320849609374996],[-87.97490234374999,47.354931640625],[-87.983056640625,47.367919921875],[-88.026953125,47.386328125],[-88.020654296875,47.392382812499996],[-87.790478515625,47.411425781249996],[-87.74101562499999,47.433642578124996],[-87.79345703125,47.46728515625],[-87.8779296875,47.484179687499996],[-87.994287109375,47.484228515625],[-87.994287109375,47.484228515625],[-87.994287109375,47.484228515625]],[[-88.596826171875,48.087451171874996],[-88.581298828125,48.110742187499994],[-88.48486328125,48.167431640625],[-88.49921875,48.175927734374994],[-88.58828125,48.158496093749996],[-88.755517578125,48.103515625],[-89.146630859375,47.95263671875],[-89.192626953125,47.928955078125],[-89.20009765625,47.91708984375],[-89.169091796875,47.91708984375],[-89.16879882812499,47.902148437499996],[-89.199169921875,47.872265625],[-89.19521484375,47.851806640625],[-89.15678710937499,47.840771484375],[-89.081640625,47.8505859375],[-88.969873046875,47.88125],[-88.93037109375,47.896240234375],[-88.92373046875,47.904541015625],[-88.960107421875,47.909472656249996],[-88.95517578124999,47.926025390625],[-88.91103515625,47.93623046875],[-88.624755859375,48.042041015624996],[-88.59306640624999,48.07197265625],[-88.596826171875,48.087451171874996],[-88.596826171875,48.087451171874996],[-88.596826171875,48.087451171874996]],[[-88.05668945312499,48.716699218749994],[-88.030908203125,48.717529296875],[-87.9984375,48.743212890624996],[-87.94121093749999,48.7568359375],[-87.85922851562499,48.758349609374996],[-87.81630859375,48.767871093749996],[-87.81235351562499,48.7853515625],[-87.78212890625,48.79541015625],[-87.77021484375,48.8109375],[-87.76513671875,48.841113281249996],[-87.813427734375,48.859033203124994],[-87.9150390625,48.864648437499994],[-87.99614257812499,48.857226562499996],[-88.05673828124999,48.836767578125],[-88.086572265625,48.808007812499994],[-88.07568359375,48.740625],[-88.05668945312499,48.716699218749994],[-88.05668945312499,48.716699218749994],[-88.05668945312499,48.716699218749994]],[[-90.47172851562499,47.017529296875],[-90.45932617187499,47.010107421875],[-90.42666015625,47.02587890625],[-90.41015625,47.04375],[-90.40971679687499,47.063671875],[-90.422119140625,47.071142578125],[-90.44736328124999,47.066162109375],[-90.4638671875,47.048291015625],[-90.47172851562499,47.017529296875],[-90.47172851562499,47.017529296875],[-90.47172851562499,47.017529296875]],[[-90.65043945312499,46.936767578125],[-90.651806640625,46.922265625],[-90.57998046875,46.913525390625],[-90.54667968749999,46.919287109375],[-90.534814453125,46.954296875],[-90.542626953125,46.962744140625],[-90.57587890625,46.956982421875],[-90.65043945312499,46.936767578125],[-90.65043945312499,46.936767578125],[-90.65043945312499,46.936767578125]],[[-90.75229492187499,46.813623046874994],[-90.78208007812499,46.791064453124996],[-90.79160156249999,46.772314453125],[-90.767724609375,46.769775390625],[-90.710546875,46.783349609374994],[-90.68046874999999,46.797802734375],[-90.67753906249999,46.813037109374996],[-90.65336914062499,46.827685546874996],[
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment