Skip to content

Instantly share code, notes, and snippets.

@sarubenfeld
Last active December 9, 2016 21:00
Show Gist options
  • Save sarubenfeld/372462f3ea07b8ec8ba68d981230a01e to your computer and use it in GitHub Desktop.
Save sarubenfeld/372462f3ea07b8ec8ba68d981230a01e to your computer and use it in GitHub Desktop.
world tour
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: radial-gradient(720px at 490px, #081f2b 0%, #061616 100%);
height: 960px;
}
</style>
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-array.v1.min.js"></script>
<script src="https://d3js.org/d3-timer.v1.min.js"></script>
<script src="https://d3js.org/d3-geo.v1.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<script src="https://d3js.org/d3-geo-projection.v1.min.js"></script>
<script>
var width = 960,
height = 960,
speed = 1e-2,
start = Date.now();
var sphere = {type: "Sphere"};
var projection = d3.geoStereographic()
.scale(width / 2.2)
.clipAngle(90)
.translate([width / 2, height / 2])
.precision(.5);
var graticule = d3.geoGraticule();
var canvas = d3.select("body").append("canvas")
.attr("width", width)
.attr("height", height);
var context = canvas.node().getContext("2d");
var path = d3.geoPath()
.projection(projection)
.context(context);
d3.queue()
.defer(d3.json, "oceans.json")
.defer(d3.json, "lands.json")
.defer(d3.json, "lake.json")
.defer(d3.json, "river.json")
.defer(d3.json, "coast.json")
.defer(d3.json, "glaciate.json")
.await(ready)
function ready(error, oceans, lands , lake, river, coast, glaciate) {
if (error) throw error;
var ocean = topojson.feature(oceans, oceans.objects.oceans),
land = topojson.feature(lands, lands.objects.land)
lake = topojson.feature(lake, lake.objects.lakes)
river = topojson.feature(river, river.objects.rivers)
coast = topojson.feature(coast, coast.objects.coastline)
glaciate = topojson.feature(glaciate, glaciate.objects.glaciated)
grid = graticule();
d3.timer(function() {
projection.rotate([speed * (Date.now() - start), -15]);
context.clearRect(0, 0, width, height);
context.beginPath();
path(sphere);
context.fillStyle = "#fff";
context.fill();
context.beginPath();
path(grid);
context.lineWidth = .5;
context.strokeStyle = "#ddd";
context.stroke();
context.beginPath();
path(ocean);
context.fillStyle = "rgba(70,130,180,.5)";
context.fill();
context.beginPath();
path(land);
context.fillStyle = "#FBB448";
context.fill();
context.beginPath();
path(lake);
context.fillStyle = "rgba(70,130,180,.5)";
context.fill();
context.beginPath();
path(glaciate);
context.lineWidth = .5;
context.strokeStyle = "white";
context.stroke();
context.beginPath();
path(coast);
context.lineWidth = .5;
context.strokeStyle = "steelblue";
context.stroke();
context.beginPath();
path(river);
context.lineWidth = .5;
context.strokeStyle = "steelblue";
context.stroke();
context.beginPath();
path(sphere);
context.lineWidth = .5;
context.strokeStyle = "#000";
context.stroke();
});
d3.select(self.frameElement).style("height", height + "px");
}
</script>
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"rivers":{"type":"GeometryCollection","geometries":[{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Brahmaputra","name_alt":null},"arcs":[0]},{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Mekong","name_alt":null},"arcs":[1]},{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Ob","name_alt":null},"arcs":[2]},{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Peace","name_alt":null},"arcs":[3]},{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Danube","name_alt":null},"arcs":[4]},{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Paraná","name_alt":null},"arcs":[5]},{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Peace","name_alt":null},"arcs":[6]},{"type":"LineString","properties":{"scalerank":2,"featurecla":"River","name":"Congo","name_alt":null},"arcs":[7]},{"type":"LineString","properties":{"scalerank":1,"featurecla":"River","name":"Lena","name_alt":null},"arcs":[8]},{"type":"LineString","properties":{"scalerank":1,"featurecla":"River","name":"Chang (Yangtze)","name_alt":null},"arcs":[9]},{"type":"LineString","properties":{"scalerank":1,"featurecla":"River","name":"Nile","name_alt":null},"arcs":[10]},{"type":"LineString","properties":{"scalerank":1,"featurecla":"River","name":"Amazon","name_alt":null},"arcs":[11]},{"type":"LineString","properties":{"scalerank":1,"featurecla":"River","name":"Mississippi","name_alt":null},"arcs":[12]},{"type":"LineString","properties":{"scalerank":1,"featurecla":"River","name":"Yangtze","name_alt":null},"arcs":[13]}]}},"arcs":[[[82.40047977084697,30.411477362585146],[82.72273400261909,30.3650460881709],[83.76101688022743,29.833321438103667],[84.06673465366615,29.613283189404868],[84.37906701043823,29.494504909781995],[84.70721235549163,29.29635163015881],[85.4086682474215,29.27438914643477],[87.66021040237845,29.15152842866084],[87.78872968948832,29.265604152945144],[87.9841182799839,29.34203359630483],[88.6307971536844,29.350663560497566],[91.03798872270445,29.316505438752642],[92.09549523312535,29.25340851492426],[93.25005008339039,29.069802150991237],[93.60749596555328,29.10858531342629],[94.35602908730107,29.309529120393236],[94.82039350787582,29.542150580355113],[95.15060591022092,29.810118720004624],[95.26543094277343,29.828541368116674],[95.33602094928415,29.740717271436637],[95.37260786334679,29.595739040641774],[95.31690066933615,29.41768789318013],[94.8764624369125,28.967947902943962],[94.87082970579272,28.831961371367896],[95.04353234251215,28.511231594348374],[95.08792239785086,28.21724437103991],[95.39648237506563,28.002916368109368],[95.38283979694057,27.90434357351262],[95.28992557167979,27.78786489512673],[94.83150394081858,27.464163723250437],[94.3951998229783,27.042406521100318],[93.75162153521532,26.732037868755327],[92.67788862505475,26.555123602804102],[92.32225141802209,26.464431464131863],[91.68342736202996,26.214860134378256],[91.25037885942405,26.183208319599487],[90.60607710160897,26.180831203714064],[90.33405236202455,26.13476166432585],[90.11236046749241,26.02952260996345],[89.9249817240021,25.87379568125189],[89.78803917842862,25.632105007422794],[89.61264936723,24.94837413176903],[89.71419355668354,24.584623724866532],[89.74442426957427,23.858673204030282],[90.00570031124198,23.65902130787063],[90.2256868835085,23.418415839119675],[90.38727908728518,23.11982941333723],[90.50753014522837,22.780237738531184]],[[94.08400434771664,33.15585765230966],[94.44770307818683,33.1632990585597],[94.9414197123034,33.089272569301585],[95.84043460488513,32.6322720403284],[96.2393249857461,32.52587026623944],[96.94129764199889,31.96554271089866],[97.16515994668728,31.488517564412376],[97.25678226114078,31.096474310830075],[97.84625532429419,30.277738755813786],[98.28457482299385,29.66689748790769],[98.62398563028688,28.963116156524663],[99.02809533080932,27.516279405216792],[99.15015506388275,27.027859605410157],[99.1725826354974,26.02644786224208],[99.24027876179977,25.66825267181096],[99.39127729695662,25.344758205663837],[99.6668160339369,25.013563951105226],[99.91656823120351,24.833833319594092],[100.30031741740297,24.72146291757541],[100.42129194539825,24.647255560804282],[100.48733442586726,24.52594513599911],[100.51994225464341,24.377917995699036],[100.4755521993047,24.163977566010672],[100.13851850789712,23.473115342700623],[100.12239546102205,23.311135565681738],[100.17148807169932,23.106574408454364],[100.98373823446298,21.844971828696714],[101.01825809123395,21.79771373136579],[101.15003299357824,21.849984442629022],[101.18000532430753,21.43657298429403],[100.32910119018953,20.786121731036232],[100.11598758341785,20.41784963630819],[100.54888105672688,20.109237982661128],[100.55908715210452,20.00237112068153],[100.56929324748216,19.89553009691808],[100.59730187378435,19.89304962816807],[101.11478966675517,19.85214773200906],[101.47156375529826,19.870131130446623],[102.18480187379072,20.04890574796036],[101.88373497925826,19.55518911384381],[101.76482750855465,18.721777452056614],[101.49228600464733,18.16002879482781],[101.48598147990771,17.969704494696842],[101.5636511576424,17.82051463467019],[101.58597537639247,17.810463568589427],[102.1135917500925,18.109101670804165],[102.41300499879162,17.932781683824288],[102.99870568238771,17.9616946476916],[103.20019209189374,18.309632066312773],[103.9564766784853,18.24095408779688],[104.7169470560925,17.42885895433008],[104.7793205098688,16.44186493577145],[105.58903852745016,15.570316066952856],[105.5760677429449,15.324646307837298],[105.78168826703427,15.120524400284395],[105.89103559776387,14.771088365126744],[105.86969323122733,14.217840481009958],[105.96493289594125,13.857397365774133],[105.9493266133891,13.350089829964816],[105.97227094932668,12.659641018113092],[105.92989627484735,12.397073065638082],[105.81016198122708,12.286769720911082],[105.65068851117437,12.233956407108792],[105.3681217794024,11.970484117068665],[105.04984663291677,11.804602769411758],[104.95114464723929,11.590920721884856],[105.11258182171909,10.93261465091868],[105.20797651572988,10.706866156451639],[105.5666109558355,10.26707387943165],[106.36108442589074,9.433791408725185]],[[90.32537072139951,47.650166734398894],[90.20052046098235,47.40801097267918],[89.7334171894961,47.162496242860485],[89.39690026241144,47.06914276792523],[89.04813602087359,47.08743622495655],[86.94356163935473,47.660114447615086],[86.40013227737339,47.85656240497265],[85.2670748229418,47.99438344989507],[84.35684614455272,47.73212555601381],[83.8356376484569,48.0355178899994],[83.61973351434145,48.193983669622426],[83.55115888869014,48.313123684271346],[83.4915759622576,48.778573309924255],[83.61901004428935,48.8964989284143],[83.86840050652995,49.025354112334085],[84.01164757684302,49.17591339781646],[83.88276655470708,49.34623891865047],[83.3637284687675,49.643843492219375],[82.48481570834733,50.06040721292416],[82.14003055209594,50.18215688740382],[81.78108605339659,50.25186839456556],[80.42778364453702,50.3851935898786],[78.54531456900864,50.767289130244706],[77.24286176952427,51.869030666707445],[76.99884565624205,52.13010000264599],[76.6061047708238,52.692520453494595],[76.32787885936435,52.90178416606054],[75.58952599477806,53.29648875590587],[75.30933637889154,53.496321519578544],[75.11782352081784,53.687886054084515],[75.02191206248412,53.8479021266763],[74.99359337758818,53.98559398051799],[74.51992719920088,54.375285956431014],[74.39617506296992,54.42505036072808],[74.12368523549486,54.534526882538415],[73.85061404815653,54.64400340434875],[73.72509199411957,54.69376780864583],[73.63321129750463,54.74134888367857],[73.46589592885161,54.82971558289768],[73.37612104685255,54.877296657930415],[73.08177208851805,55.229549058647976],[73.11515506377859,55.30603017843994],[73.33405643096697,55.445763251357164],[73.65517378122865,55.58549632427439],[74.24108117055391,55.76124787049906],[74.47186811716944,55.87488434510888],[74.62452029815964,56.02727814393762],[74.71030317576412,56.203339748756036],[74.70265506378493,56.41234507916052],[74.6298429706857,56.644346421934884],[74.47806928904447,56.859475409565945],[74.27994184763742,57.02778554954058],[73.69021040232255,57.255471910218574],[72.90105960479335,57.446312974672466],[71.47432498564703,57.65875478782435],[70.28902265816834,57.94623078066405],[68.8398604674073,58.03358978945346],[68.68060662219185,58.06849721946662],[68.38450066515941,58.13310567893953],[68.22403242378508,58.16727671979254],[68.24538770942968,58.24941640892047],[68.26811242053003,58.332382920965074],[68.5037052753487,58.52707387962471],[68.60142540881262,58.74607859967766],[68.79314497261547,58.98407440859789],[68.96832807808491,59.40474640566988],[69.12955854683557,59.55042226830068],[69.33430057157597,59.64953766543648],[69.78274865100485,59.87262482364051],[69.804556105432,59.996028143953495],[69.7676591327756,60.10713247338103],[69.83731896350506,60.25686493594672],[69.8040910175414,60.51501455346079],[69.7250777525671,60.65833913842229],[69.49749474475371,60.81308421492031],[69.39806928902414,60.86172465681503],[69.17914208361961,60.96873362898343],[68.95981438586483,61.07570384382761],[68.85913577665218,61.12422801374967],[68.82178663521324,61.106709703202725],[68.78611697782378,61.08934642195267],[68.40846561063475,61.20691030541667],[68.22589277534757,61.44767080346452],[67.64510135281921,61.730470079181785],[67.23282677599465,62.06812388777689],[66.28074018744917,62.44683462182789],[65.68873497911346,62.66237702091729],[65.40994062689882,62.84727529565761],[65.3032287942161,63.0750650092002],[65.42725223171658,63.3065237494355],[65.68899336127492,63.58733348250952],[65.83332563666613,64.01516266545396],[65.91838504421855,64.11505320907413],[65.92603315619775,64.22434886337145],[65.5822815285922,64.7073684760036],[65.51065799343567,64.96564728459838],[65.41102583197693,65.04016469996326],[65.36839277533613,65.16746959091428],[65.76630130398357,65.802676296646],[65.8353926939578,65.99979604762335],[65.8392684263797,66.15717662216825],[66.34140831895982,66.44317983668763],[66.677305128857,66.56653148056832],[67.03309736518653,66.60508209905807],[68.19287153511306,66.57575572373243],[69.013493279908,66.78835256618119],[69.93043989449501,66.74683055283468],[70.84010013212887,66.65303782822492],[71.46957075387618,66.66347646754788]],[[-124.83563045947423,56.75692352968272],[-124.20045039940291,56.243492336646824],[-123.88873815981833,56.088824774797246],[-123.54353959210863,56.04471893983613],[-122.7300750331861,56.09853994406811],[-122.2217081305148,56.021232001359465],[-121.97363541729766,56.019785061255305],[-121.3571355800556,56.18974884706327],[-120.24459366924387,56.151973375057906],[-119.50944474345967,56.25145050721977],[-119.18871415899591,56.24437083599578],[-118.67034786667612,56.01621938742716],[-118.34623328334149,55.98131195741399],[-117.77913611537048,56.054098212297106],[-117.50612952357251,56.15535818137303],[-117.20036007370149,56.41231924094437],[-117.17689897344098,56.545024319069896],[-117.25821183965225,56.854876207091976],[-117.13227637415694,57.28102590598691],[-117.10752336308914,57.65415558535038],[-117.03701087122688,57.929229234440015],[-116.85415381556209,58.06958242454475],[-116.67623185918117,58.12740835227936],[-116.5421056791676,58.288948879623746],[-116.32315263554695,58.37095937767096],[-115.98847022180863,58.418708401108645],[-114.97251156295039,58.40971670188986],[-114.61323116744114,58.475862535223456],[-114.48895903711025,58.5121652289085],[-114.21144044681779,58.59048086204683],[-113.92362209761417,58.66495952008749],[-113.76845069054974,58.68975128847953],[-113.58348782026906,58.72357351341455],[-113.29752982262794,58.807844855374526],[-113.14918616418008,58.85532257754268],[-112.64761471235515,59.097607530343126],[-112.32267330610385,59.12590037702293],[-112.06504045291271,59.08357737897589],[-111.92647009972205,58.97345490176191],[-111.41076514366532,59.00505504010839],[-111.44383806033211,59.53662466087874],[-111.56902421755917,59.84794932722113],[-112.38313473188535,60.221544094475234],[-112.49320553266703,60.314613349032896],[-112.48369706912533,60.45052236596052],[-112.57134029829234,60.54059438744525],[-113.16011572960981,60.8532368028111],[-113.28245968306082,61.17381155053373],[-113.45965816938966,61.242670396562644],[-113.58197951440154,61.24420777042333],[-113.70401017948177,61.245874335364746],[-113.83890020176014,61.25600291609395],[-114.13603484277289,61.278107510006805],[-114.43324215376855,61.3001862657035],[-114.56835018599566,61.31021149356813],[-116.33434058313813,61.08939809838495],[-116.6986335925797,61.12138580997362],[-117.66810930059138,61.30783437768271],[-118.15497880742927,61.42147085229253],[-119.07063351120897,61.30132314721392],[-119.7683695074581,61.33413768171927],[-120.31781917380145,61.4633546006651],[-120.57503861553425,61.569678860105626],[-120.81339615948052,61.780957953530944],[-121.58916276104611,61.973685207763495],[-123.02421728579144,62.24229930281665],[-123.25466833559705,62.34890778263478],[-123.29611283429513,62.50993154565626],[-123.2289334723157,62.86667979598322],[-123.3205041103369,63.05733999292407],[-123.9544189052613,63.74101919214557],[-124.33648860741127,64.00276032170389],[-124.48934749413064,64.22316030542875],[-124.7616822923088,64.42387156845037],[-125.02515458234892,64.69202057561291],[-125.30022823143857,64.80596710881649],[-126.18162146060875,65.04910472274976],[-126.92932775943987,65.2913896755502],[-128.03019079655365,65.60834707301241],[-128.67141780664736,65.72275869410662],[-128.90856095443476,65.86055390081289],[-128.98336259017725,66.02966502548806],[-128.84207922429127,66.3225153672861],[-129.02560807357585,66.45547882757309],[-129.77052384506322,66.7316118435247],[-130.0437113043742,66.88087921819978],[-130.34503658106811,67.21377879502403],[-130.5328287360168,67.30584035915201],[-130.75940405340052,67.35366689723814],[-131.20867895574605,67.45469432236875],[-132.65282853257474,67.29330882432124],[-133.01577633988822,67.29274038356603],[-133.3725504284313,67.35935130479025],[-133.8297318249175,67.52058177354088],[-134.19007158728874,67.74152435980479],[-134.39956784379999,68.05264232041803],[-134.40719011756306,68.18209178330916],[-134.15968584510114,68.4496723497165],[-134.24422848833063,68.70619415961333],[-134.83589779985644,68.9637753363722],[-135.3134138724495,69.37499054633476]],[[8.219788038779399,48.04680919045518],[8.553359409223447,47.98081838641845],[9.41408206547689,48.13835399026023],[10.71989383306024,48.64871043557477],[11.683555942439085,48.794127916044104],[12.032991977596737,49.02749868427421],[12.155762261614143,49.00075613056316],[12.38378451910205,48.95181854918275],[12.506554803119457,48.92755646422172],[12.659697910216437,48.87510488544547],[12.99660241054329,48.75609406187728],[13.33350691087017,48.636385606473155],[13.486650017967122,48.58184113218908],[14.701666294013677,48.234058742864775],[14.995601840889833,48.21305227313813],[15.634425896881964,48.37461863869868],[15.936733025789437,48.353482977891304],[16.87807091641821,48.17178864195307],[17.48847293464982,47.86746613218622],[17.857132602620027,47.75842886005037],[18.696512892336926,47.880953681014404],[18.909884881270074,47.80610036883962],[19.025691766036175,47.668201809268766],[18.933242628665994,47.17593211525637],[18.9523112321817,46.77776520444749],[18.88228966642623,46.279656073586125],[18.764209018639292,46.0343480494966],[18.78051293302738,45.96511454933356],[18.810976189863425,45.901436265641905],[18.8872247657101,45.80624827736027],[19.00909071216242,45.6216600612137],[19.072768995854062,45.52151113543205],[19.155205824467686,45.44800141049686],[19.308633151942246,45.313461819024965],[19.39223270028242,45.246825059584594],[19.51297468433239,45.23265279802855],[19.77689914315505,45.19142792416771],[20.040487705167834,45.14827810320399],[20.16024783700425,45.12830516212318],[20.541981642344325,44.801761786470834],[20.767807651459805,44.7441942408977],[21.360071241956973,44.82666982683553],[21.56202273935361,44.7689472519655],[22.14508792490281,44.47842234962059],[22.459022251075936,44.7025171982543],[22.705725538837356,44.57800283464702],[22.474008416440597,44.40922760678177],[22.65714969248299,44.23492300066128],[22.944832391051847,43.82378530534713],[23.332302280376325,43.897010809904714],[24.100679152124172,43.74105133724785],[25.569271681426926,43.68844472917472],[26.065158725699746,43.94349376075127],[27.242399529740908,44.1759860296324],[27.28505842459785,44.1530416936948],[27.301517368282816,44.13337881120775],[27.384419284787043,44.16655508073913],[27.600853102333502,44.23523305925504],[27.823836907672927,44.303084214854266],[27.926388787556164,44.33378001563564],[28.05278934094207,44.40940847429479],[28.044107700317028,44.49583730730295],[27.876676059691363,44.74411672624926],[27.98819380057722,45.21848053647251],[28.046730279255854,45.279316616388115],[28.15744703544118,45.39591156674665],[28.223011508911497,45.46936961524955],[28.346117689738804,45.43491435401894],[28.563701307903756,45.351095180841526],[28.679779493939378,45.3040308701317],[29.149724969201657,45.464925442072456],[29.603289015427436,45.29330801043113]],[[-55.0752890692212,-14.319384047099],[-55.43245073100648,-14.357366224833527],[-56.12057410340506,-14.689128920147354],[-56.3346695623903,-14.85857594163241],[-56.39368404806761,-15.068382256737415],[-56.08721696636066,-15.843322035386343],[-55.9346939764512,-16.078863213772706],[-55.9273300848496,-16.215340671455543],[-55.99913448751917,-16.336883640206025],[-56.42939246278131,-16.6524716122125],[-56.54054846864112,-16.808224379140206],[-56.58974443218298,-17.067174981354782],[-56.980159878148086,-17.594739678622517],[-57.1750058661046,-17.735196221591828],[-57.31822709820153,-17.92546884529051],[-57.44271562359265,-18.46755462003226],[-57.59976030132765,-18.8793641089662],[-57.33719234885264,-19.210920098550858],[-57.38695675314972,-19.393492933838047],[-57.45651323101458,-19.484314263591017],[-57.610399186825745,-19.683933861980485],[-57.76641679546894,-19.883078683148277],[-57.842381150937996,-19.972475681236197],[-57.93052176576582,-20.021981703371814],[-58.01009701194127,-20.073348077069937],[-58.166392381408045,-20.176700941653678],[-57.8706739976178,-20.732687676681948],[-57.888786587136096,-21.102639255459465],[-57.937155727761294,-22.09017587655717],[-57.974672817605196,-22.16221282317204],[-57.83235592307338,-22.550147800387137],[-57.82928117535201,-22.81979542408613],[-57.34210160992038,-23.702738946225075],[-57.20110246441199,-24.043079929299353],[-57.12177914084397,-24.334741713154692],[-57.13038326682057,-24.639529310812158],[-57.26846269390445,-24.97160206471974],[-57.573146938697334,-25.258457940371926],[-57.630507778541315,-25.421755466414247],[-57.62866034608689,-25.510535577091687],[-57.62973263205694,-25.601176039331634],[-57.70431464296219,-25.714818973495497],[-57.88774013938219,-25.99701105113334],[-58.125425889708666,-26.363377577420614],[-58.36278220277927,-26.729537397978724],[-58.54523230653977,-27.011109358429067],[-58.61817359071975,-27.123718763947096],[-58.85022660992641,-27.610769138298004],[-58.893066372296374,-27.96475269949734],[-59.0738046942372,-28.348553562129077],[-59.2273612127925,-29.05832935965796],[-59.39623979352234,-29.19682219820018],[-59.52264034690826,-29.40301116304476],[-59.58896704775488,-29.70495655692617],[-59.654286058171806,-30.717246189091682],[-60.06351172549115,-31.269615573859518],[-60.38044328473721,-31.531666762011604],[-60.59117977562347,-31.781573988575104],[-60.696212124256704,-32.05111825940951],[-60.72649451357974,-32.33456349053044],[-60.71249020042865,-32.55703053154696],[-60.64159013532419,-32.784613539360365],[-60.49017818870901,-33.01943124769464],[-60.248952602770544,-33.24339690524762],[-59.868510708237764,-33.49831674574343],[-59.20043779156843,-33.81235442478115],[-58.66884233258193,-33.99358367282875],[-58.429477098205965,-33.99094817478186]],[[-113.823382738076,58.7102151556671],[-113.71351864302348,58.669261583075794]],[[26.249281853955694,-11.742900485890779],[25.938293084423208,-11.653500258025836],[25.639603305776177,-11.18577686935209],[25.711175164500418,-10.742548109584689],[25.467107374785883,-10.375180352421765],[25.448193800567083,-10.092923679243547],[25.501937290150607,-9.455029799032665],[25.646734653432446,-9.248272393432877],[25.923203566193962,-9.099702650593741],[26.08143680187169,-8.766234633014285],[26.441311476352297,-8.272001234574809],[26.73204308442638,-8.161723728063947],[26.857565138463343,-8.046588636917654],[26.9193701514844,-7.916674086135885],[26.888260939244702,-7.642375583530622],[27.009390496536867,-6.987428480663418],[27.017090284948353,-6.622179457224455],[26.93048058442716,-5.61025156008499],[26.98189863455758,-5.252237237166895],[26.946396925573055,-5.008634535343006],[26.81245161307254,-4.746738376487791],[26.359611036898826,-4.334722181824681],[26.1366272315594,-4.068278496927782],[26.014464145621417,-3.742975355650444],[25.992850477815352,-3.587061099871825],[25.945321079214892,-3.244330081804044],[25.897778761506373,-2.902309614680277],[25.876178012808367,-2.748514092625626],[25.86847822439688,-2.604982801934952],[25.85013309093327,-2.259480635185518],[25.82822228364151,-1.846359856782179],[25.809877150177897,-1.499966271575715],[25.80217736176641,-1.35464568441693],[25.68156456879717,-1.012340996915555],[25.552425164499766,-0.778815199388589],[25.480181512155752,-0.539036553554297],[25.513409458119412,-0.054414971521098],[25.409436476348162,0.345663967282576],[24.933599887804604,0.53857208902815],[24.292295363062436,0.781709702961408],[22.73487104664997,1.950036322432226],[22.347091098731738,2.129379380701181],[21.712607863052114,2.141032416182995],[20.267528110442186,1.923448798018057],[19.907653435961578,1.842885240075034],[19.14284223804185,1.573599351402081],[18.712480909915115,1.19010854736409],[18.4875850765809,0.911365871581722],[18.33586307137196,0.586992906085626],[18.19923058439224,0.099787502437849],[17.59957726407734,-0.649055677903689],[17.523716261472856,-0.743830254726987],[16.865306837642123,-1.225816338713287],[16.407091912510054,-1.740927015798682],[15.972803175529151,-2.712392266453612],[16.0062895036543,-3.535132744972529],[15.753540073314753,-3.855164890156097],[15.170991652088446,-4.343507175314301],[14.582603794013181,-4.97023894615014],[14.19590905117309,-4.971840915551191],[14.074624464584076,-5.020313409040966],[13.826422560286204,-5.257714938989835],[13.60994998541554,-5.363393243026714],[13.46959679531082,-5.759596449408505],[13.428152296612723,-5.776442966335658],[13.375597364971895,-5.864241224799549],[13.024869419006961,-5.984388929878158],[12.735171339578699,-5.965682061388499],[12.322431674863509,-6.10009246177966]],[[107.98010704959515,54.00414581971077],[108.0433590027204,54.10204682068773],[108.04067182824122,54.18501333273234],[107.78290978396936,54.29379222270673],[107.18170617068569,53.9213601751792],[107.02316287641423,53.87113068299149],[106.92714806521593,53.884334011442064],[106.10735314333766,53.88544505473634],[105.66541629437754,54.02166413025772],[105.28776492718853,54.38500112570189],[105.15526655479218,54.88093984640699],[105.16973595583391,55.053590806694146],[105.72319054567987,55.844756985082725],[105.78571902875302,56.22912628846967],[106.24641442263507,56.485260525124346],[106.18802005414526,56.564790554421535],[105.98229617719133,56.65116771099741],[105.86189008995126,56.760721747456174],[106.0110282735456,56.896940822977555],[106.32501427615102,57.010396430074366],[106.80725874229879,57.111294664124244],[107.0328780456851,57.270845648825414],[107.3934761902178,57.30092133241928],[107.69723025922943,57.438303127667226],[108.0815478861841,57.760298977277884],[108.60890587772266,58.04532033958371],[108.92506229048433,58.16513214785242],[109.48569990441888,58.28305776634248],[110.0088204285095,58.56332489687745],[111.10126020715973,58.783053086982505],[111.83387698776161,59.14274689395009],[112.34996951706054,59.30067007103405],[112.6427681824263,59.5445311550194],[113.51082889206518,59.92807363548968],[114.43092776902199,60.493052069736734],[114.94443647670633,60.73241730411269],[115.4717944682449,60.74453542748513],[116.15180464077366,60.607153632237186],[116.86235558478691,60.355282701246594],[117.46821007697685,60.013184719474395],[117.80162641812402,59.88042796491658],[118.31740888882919,59.80053620059334],[118.66007531135662,59.87737905541135],[119.36297814339068,60.16428660749584],[119.4966909119459,60.18916880964437],[119.81561201383519,60.24858378767196],[120.19651899625859,60.319625962965205],[120.51608605355153,60.379428514234974],[120.65111657113022,60.405098781975965],[120.79356265674275,60.4534033270608],[121.05522627165266,60.541434129470005],[121.19583784391884,60.58867930769284],[123.55114627491787,60.59165070254963],[124.99488244028822,60.75763540307112],[126.32420698456434,61.055705064530656],[128.47611697806258,61.28907583276076],[129.21560672415927,61.49919220645951],[129.74306806856242,61.9093997259924],[129.91990481986522,62.14494090437876],[129.95602664603723,62.41520864526525],[129.8574280132243,62.712038072349785],[129.37962772025367,63.48987173120706],[128.30114057832225,63.599761664475736],[127.95501183483128,63.716472886806926],[126.85265018118105,64.22445221623603],[125.50916629445692,64.6799799668889],[124.7972200867718,65.01840892196837],[124.52566043507801,65.23653514267237],[124.17963504445163,65.8563939480134],[123.69687381398091,66.50265941025556],[123.23354292205198,67.35958384873557],[123.145899692885,67.64946279567683],[123.1834167827289,67.88851797145902],[123.74286583872072,68.41127676052362],[124.07633385630015,68.97548004828629],[124.32381229054596,69.18342601182879],[124.62157189341173,69.33643992784503],[125.07126020721557,69.77558624946137],[125.48477501841518,69.97366201443613],[125.90872846893768,70.22785838487984],[125.94066450409406,70.42787201606554],[127.10173058482786,70.64121816678254],[127.33623823456838,70.74999705675692],[127.46036502493348,70.87029979113241],[127.45550744029805,71.00434845649754],[127.27557010305776,71.3314085964728],[127.10989546113001,71.83029287381855],[126.92882124237929,72.06983897570753],[126.6896627137325,72.29439891223187],[126.01228803925062,72.32971975370334],[124.6116500184117,72.6515864122333],[122.75191857309173,72.9065062527291]],[[90.7946960794743,34.30041311292622],[91.15157352088198,34.320902818329955],[92.99280480344143,34.10029612887594],[93.83761111854898,34.320902818329955],[94.15583458860235,34.55639232028402],[94.38894697467097,34.65382823337035],[94.68169396360443,34.67452464450324],[95.00405154824116,34.60171255140399],[95.37482994993533,34.406582343069886],[96.00378380735972,33.88408193616675],[96.40985721230928,33.68094188082739],[97.0328166035878,33.236860459927186],[97.45015547077699,32.78089345959984],[98.16179161986835,32.28658254651192],[98.37531863809838,32.00975189872436],[98.54151004434905,31.689797268189224],[98.77415734252708,31.359688218708726],[98.69870975138093,31.150941270465708],[98.90903283080885,30.675853990190376],[98.98437706909041,30.342773545853106],[99.0964115742992,29.25048879649978],[99.23221723836224,28.433381049100674],[99.27536705932596,28.353670152290462],[99.35546552937836,28.204997056586734],[99.39861535034206,28.123012396755684],[99.43455630900107,28.0165718653425],[99.51364708862377,27.785720323186624],[99.59273786824647,27.55550827688036],[99.62867882690549,27.45098623301601],[99.79822920125511,27.165008856712788],[99.98049197794856,27.080621242780154],[100.14037885945962,27.245546576439665],[100.2460054870642,27.495660508732342],[100.3712691589397,27.65851878510017],[100.47007449748176,27.569118557235242],[100.51198408407046,27.36037160899221],[100.44061893107539,26.798648789979552],[100.45317630412234,26.376116441345047],[100.50490441284649,26.240775865172637],[100.61476850789902,26.215144354755864],[101.0021867207912,26.258449205016447],[101.66302493693968,26.529853827413376],[101.82306684774758,26.52954376881962],[101.88611209514369,26.41048126881914],[101.91215701701879,26.2209062769564],[101.9965446309514,26.104272569273647],[102.44297732952091,26.27700104420923],[102.75639489137112,26.312554429626047],[102.89736819866334,26.393221340433655],[102.98092898967931,26.592175604757372],[102.95777794801256,27.223661607364065],[103.02516401572115,27.37352326101049],[103.1470170430654,27.434346421818034],[103.4706148620771,27.88530080821306],[103.54363366090553,28.146137600206288],[103.7897685079117,28.332224432889333],[103.84563073121922,28.483067938749315],[103.85074669801614,28.668043728138073],[104.32560143434614,28.66719106700525],[104.74123497926968,28.777210191354655],[105.11278852744826,28.766926581328576],[105.54712894086146,28.880485541289957],[105.82003217979482,28.876894029245676],[105.90571170453475,29.01202789968893],[106.61429894412092,29.548739325472326],[107.60431603396864,29.923677679966005],[107.88987999881354,30.141261298130942],[108.30814904178396,30.57952912039832],[108.40199344282601,30.735979519161972],[108.57603966678502,30.859744574501008],[108.863567336057,30.937285061154967],[109.4600167175698,31.010019639605773],[110.25578209843238,31.02270620373342],[110.82758182174194,30.921704616818957],[111.21505171106642,30.72897736258642],[111.53358523971352,30.379748033157938],[112.03257286992385,30.351739406855742],[112.20796268112247,30.220326239537513],[112.44040327357132,29.818231919874435],[112.59579430547299,29.741234035759547],[112.78188113815602,29.74394704845487],[112.91582645065657,29.709995632439117],[112.95654747930254,29.550935573844725],[113.12769982305323,29.462775580354787],[113.6575899597741,29.893524481723702],[113.93498904831688,30.06400503185459],[113.9228450867283,30.218440049758854],[114.05053755092152,30.301768296829508],[114.30323530482877,30.593042507442647],[114.54353071498599,30.595445461544216],[114.78765018113279,30.517930813106403],[115.39035241095291,30.013155422479386],[115.6791719910322,29.85613658296053],[115.9761047709813,29.805442002882202],[116.26337405809181,29.83872162527817],[116.69533735561959,30.04953563081287],[116.95433963426646,30.408170070918473],[117.32661665249711,30.694767564409204],[117.59895145067529,30.815432033810723],[117.87733239143162,31.104975083942094],[118.27301883349048,31.382219143187996],[118.55036624560097,31.820848700481406],[118.73800337125277,32.022180080690546],[119.00444705614967,32.15069936780044],[119.33181725471869,32.20490794527461],[119.74584883024116,32.13703095145924],[120.57742597868199,31.61375539807173],[120.92122928271982,31.51619029390467],[121.85822635303609,31.4149044866126]],[[33.206893344868945,0.261534735511418],[33.18725630059802,0.428191229652711],[32.8931140479927,1.31144481038541],[32.80150465264725,1.366544806316611],[32.62475833510098,1.471712805584616],[32.51003665541302,1.536754055177965],[32.36248752211165,1.606878973798047],[32.24095747246923,1.665841783043078],[32.172589552547095,1.682223212079592],[32.159360385880376,1.725269680178727],[32.2945976091882,1.930580145674341],[32.295321079240296,2.07914988851347],[32.18824751153153,2.207824204920243],[31.99864668145264,2.284201971847622],[31.766929559055882,2.292935288904957],[31.662943658176573,2.267000179448473],[31.469906345350267,2.218876501876665],[31.366230503064713,2.193096421717058],[31.42064578626804,2.296875616867212],[31.47475101087764,2.400577297368926],[31.457168104790327,2.538211015224292],[31.439559360486868,2.675728461107013],[31.461418491346336,2.950414536954455],[31.564047885877983,3.224661363127439],[31.71974897637341,3.435216986500677],[32.01585493340585,3.613655707204515],[31.729567498508857,4.022597154146254],[31.604665561659402,4.342680975762107],[31.603477003716705,4.686277574070786],[31.745535516087045,5.419281927914852],[31.6728267758524,5.929974270039295],[31.14831098808986,6.829660956240815],[30.789934930145733,7.241289577661732],[30.592065870900143,7.544190985540553],[30.458430616993354,7.880397854031472],[30.288415154753096,8.573094590687887],[30.264023878711328,8.908939724152773],[30.329911329883487,9.21098847089877],[30.519098748504035,9.3993749048188],[30.792260369598864,9.460818182813838],[31.12474653496477,9.432525336134034],[31.321582065564513,9.404077460157367],[31.53851972832581,9.459629624871127],[31.78393110527992,9.633934230991613],[32.15822350436994,10.040007635941151],[32.23945885593278,10.220410061072087],[32.175121697729395,10.439414781125038],[32.19920291517741,10.569742743365154],[32.58481245293936,11.130328680867393],[32.68811364109084,11.470721340373956],[32.74914350762754,11.995340481001065],[32.778599074033906,12.634267889857782],[32.748058302549396,12.995692857307148],[32.650183139788595,13.344948024951776],[32.317180210099764,14.124564520723126],[32.253618198380764,14.462838446505728],[32.49014122898066,15.634549872291657],[32.55933597181948,15.945512803608011],[32.70273807142942,16.218751939351293],[32.95109500502417,16.438583482320922],[33.3120032081506,16.64239533128007],[33.5804622739069,16.871864528872138],[33.77233686700663,17.168358059146755],[33.881064080548725,17.555569566309757],[33.91269005711135,17.913816433173167],[33.8773433774237,18.197313340726396],[33.59591352716217,18.804898993398098],[33.379699334452965,19.423129991121925],[33.159092644998964,19.448528957593382],[32.91704023614383,19.400418199129646],[32.64465376153336,19.248360297110807],[32.09290449395303,18.793685207590755],[31.494801466606873,18.150106919827763],[31.310006544731152,18.039493516507008],[31.144590284964863,18.035023505113756],[30.977261997203783,18.07765656175455],[30.82187096530211,18.205529893460806],[30.685083449025512,18.40688711188608],[30.494500766733097,19.02449799242241],[30.347739699024174,19.821761989821425],[30.55857954277502,20.08590607348134],[30.585244581837628,20.194581610591158],[30.36489627454506,20.528669745358116],[30.345465936003336,20.65062612556693],[30.61180626803565,21.0546324732248],[31.09064008965214,21.609198106365042],[31.433564894341004,22.09673940682272],[31.77235558444653,22.44478017830849],[32.00448611830163,22.617844550053974],[32.45117719903257,22.729620673101294],[32.58904992038731,22.860878811122646],[32.745112745908756,23.0691348332589],[32.859576043435254,23.350978094978785],[32.896834751117694,23.659796454355018],[32.87947146986764,23.987683417246956],[32.88892825697704,24.563048814384672],[32.84133426283623,24.885923163344287],[32.589773390439376,25.32723989511689],[32.523214145647444,25.612002875261254],[32.72444217299201,25.8766120468118],[32.74919518405983,26.003994452411263],[32.66460086439801,26.084661363218885],[32.12194664890106,26.13850820566701],[31.7852230160872,26.49047638600696],[31.303546990694656,27.09855296478544],[31.085885857881294,27.29941925710395],[30.927445916474397,27.520129299422535],[30.852825148244932,27.76900299734021],[30.83742557142196,28.037668768825654],[30.77158979668212,28.267887274685947],[30.798978305796794,28.455756944283053],[31.168568149548292,29.302526963817698],[31.22727257663186,29.652298895785236],[31.237607863090233,30.12069407807877],[31.175544467907685,31.016892605100594],[31.033537631969608,31.531796576456813]],[[-71.66874650743861,-15.336376234603065],[-71.50115983751607,-14.792326755434225],[-71.55753882514651,-14.286879571187413],[-71.65921220568077,-14.077951755431364],[-71.85713294135864,-13.901683444883787],[-72.13680579292227,-13.739212741758138],[-72.75074764676586,-13.486825046444629],[-73.2211065334865,-13.42186777105374],[-73.5623001776936,-13.017551364802124],[-73.85866451688749,-12.496136162977123],[-73.98067257352861,-12.198376560111349],[-74.14422848173237,-11.452788995004198],[-74.14515865751363,-11.27765756596704],[-73.8025955878508,-11.188774102425015],[-73.73572628446512,-11.029765720262922],[-73.78828121610596,-10.80207935958493],[-73.99537451851563,-10.394352308802048],[-74.0505907864195,-10.181703789920988],[-74.00661414253912,-9.860328057497831],[-74.16688859729237,-9.681475925335654],[-74.47550025093943,-9.029215996947627],[-74.46818803577014,-8.738846123899592],[-74.33734330920711,-8.511676527544516],[-74.48307084827019,-8.390133558794034],[-74.66032101103131,-8.069016208532332],[-74.90839372424846,-7.836368910354317],[-75.02177181669683,-7.461508070509069],[-75.21568762887208,-7.17806283938814],[-75.20819454618976,-7.085458672721103],[-75.13602840849416,-7.012336521028104],[-75.16078141956197,-6.526629733916785],[-75.10347225615027,-6.238481947457295],[-74.93844356962617,-6.066037692899314],[-74.74708574084937,-5.970126234565598],[-74.30618242053511,-5.639862155788236],[-74.06433671740913,-5.137877292504982],[-73.9742646959244,-5.044911390811897],[-73.80657467313728,-4.972357679874108],[-73.48863542346152,-4.444844659038665],[-73.35828162300527,-4.173388360209451],[-73.21578386096044,-4.037220961120369],[-73.13912187365544,-3.683702487811658],[-73.0350455390196,-3.554769789243437],[-72.87210974800334,-3.494773451352572],[-72.47585486518925,-3.481027520362936],[-72.13262000190662,-3.420101006690814],[-71.86555619982222,-3.435965671404418],[-71.54273352729489,-3.731296481952477],[-71.26582536485888,-3.859660739765488],[-70.90047298855534,-3.960068047708603],[-70.62899085150998,-3.888186130390608],[-70.36549272325371,-3.911182142760488],[-70.11338924831782,-4.068330173360074],[-69.86929562038715,-4.320356133647543],[-69.66403683132383,-4.27172861086089],[-69.50324561224767,-4.139178562032235],[-69.26287268744201,-3.622155856952041],[-68.95294328477151,-3.443303724789864],[-68.06875952825756,-3.296904392106988],[-67.96010982936389,-3.217012627783753],[-67.9323854234393,-3.108027032080194],[-67.65821611191477,-2.865406182469847],[-67.37890499537718,-2.707327976089005],[-66.8465860663386,-2.659217217625269],[-66.54146257187124,-2.486256198744371],[-65.99787818059302,-2.496539808770457],[-65.76096757675093,-2.602993259291715],[-65.62045935734932,-2.609246107599027],[-65.43910091822099,-2.684642022312872],[-64.57561357283993,-3.39819019939906],[-64.01112606469965,-3.743543796405653],[-63.177275153237986,-4.035153903828693],[-62.736501024004454,-3.855888360208183],[-62.41055192732345,-3.789432468280836],[-61.81082109236013,-3.855164890156097],[-61.49355363630417,-3.769588718280758],[-60.59606319847505,-3.350854587419704],[-59.92450212262601,-3.205953871273294],[-59.82996008974803,-3.141926771663663],[-59.65792924664838,-3.123219903174004],[-58.689047817608056,-3.342327976091546],[-58.535594651917336,-3.226262709163997],[-58.315918138244584,-3.211844984554567],[-57.76649431011738,-2.658493747573182],[-57.47589189312403,-2.495506280124616],[-56.7022440252824,-2.479279880384965],[-56.11954057475923,-2.132996107597123],[-55.82214270691949,-2.014502048351858],[-55.51484880229587,-1.949493096528684],[-55.15102088074494,-2.137595310071099],[-54.80639075379044,-2.175629164237918],[-54.52511593282577,-2.440315850436896],[-54.1859635076942,-2.311176446139505],[-53.79198238790096,-1.978535251476714],[-53.49644487162374,-1.828105157075072],[-52.436199510291374,-1.430765069182854],[-51.788177049351276,-1.085101413582521],[-51.000240647980945,-0.483174330246769],[-50.55481563984114,0.056275946448096]],[[-110.74369991742566,44.726727606783044],[-110.92939917686651,44.67892690691306],[-111.09967302126823,44.7565190699993],[-111.20441468996982,44.812471727063325],[-111.30919511599564,44.8684502223435],[-111.4255123055306,44.905566819837134],[-111.54179073774135,44.94265757911464],[-111.63594519737715,45.07750722918027],[-111.65405778689545,45.30971527768381],[-111.44851477745452,46.024581203793446],[-111.45280392133475,46.22265696876819],[-111.48432008547876,46.29164500587784],[-111.51579749229855,46.36143402768802],[-111.5628488839003,46.43974966082635],[-111.65045012596607,46.58417236997407],[-111.69803443077583,46.66213918719443],[-111.78362352175925,46.738116461771554],[-111.8686700102036,46.81368032489034],[-111.92197425011267,46.941295274435134],[-111.85590593142751,47.10818431252173],[-111.64449764692145,47.292255764345384],[-111.17062476280498,47.58802582456792],[-110.51154354535441,47.913819891952045],[-110.22665137412932,47.96425608986891],[-109.81907935264331,47.8069271917563],[-108.93802202028303,47.76413910581863],[-108.8212865746242,47.73876597756332],[-108.56467917563634,47.68294251158002],[-108.30860630474503,47.627106126488655],[-108.1934679838217,47.601694240909126],[-108.10808721345597,47.58687602394943],[-107.94651923300692,47.55944875751052],[-107.85922481975787,47.54469513609119],[-106.88396135132949,47.7509616155842],[-106.75995729249111,47.82080231382666],[-106.52967580597895,47.95054891620349],[-106.40572180868435,48.02053172463475],[-106.23357146383503,48.03178426776631],[-105.8229666817289,48.05846222593699],[-105.33286739787277,48.09024323179649],[-104.9222367775505,48.11685659442681],[-104.75003475626887,48.12801870380186],[-103.77231665730663,48.02730133726499],[-103.24043697794252,48.09241364195276],[-102.89402401407395,48.05866893166616],[-102.14009070515166,47.65021841083119],[-101.7936260648508,47.553273423851635],[-101.69159417906751,47.540974432966166],[-101.50206440408303,47.51815928810932],[-101.39987748900288,47.50598948830458],[-101.35539699990764,47.427002061546446],[-101.31107154010928,47.347859605491436],[-101.00527625202213,47.171126207053234],[-100.94612934548705,47.05254171405146],[-100.83629108865068,46.83227092140734],[-100.7771764798858,46.71353139910869],[-100.6914517382676,46.60477834735045],[-100.60568823932522,46.49618032488908],[-100.57041907428601,46.14054311785641],[-100.35539343951953,45.35033295346523],[-100.3705087959649,45.08492279721416],[-100.45936642129078,44.910204779635336],[-100.63987219928629,44.74770823829354],[-100.62938188353104,44.640117906261864],[-100.55718990761929,44.5337161321729],[-100.47547654905776,44.48413259538884],[-100.39391821979311,44.43496247006313],[-100.27124159930923,44.37287323666443],[-100.04319673338222,44.25697591814183],[-99.92038123248653,44.19451203060903],[-99.62551550982911,44.166451727874545],[-99.55783230263482,44.12086019548504],[-99.43218105751714,44.0362400376071],[-99.36465287961973,43.99075185808218],[-99.37696155983625,43.91478750261312],[-99.39957645851797,43.77352997494329],[-99.41173010943763,43.69746226660965],[-99.37731360553124,43.59467784278111],[-99.2501831225392,43.51065196387452],[-98.97351073382552,43.32353160254566],[-98.70437018511839,43.13080434831312],[-98.5998416817,43.02993195247937],[-98.61203731972088,43.0037513799695],[-98.59407975949946,43.000011298182386],[-98.33611100949842,42.87363658301261],[-97.96817481158028,42.794545803389894],[-97.88182349322057,42.83971100521299],[-97.6440860664618,42.836352037114025],[-97.28738949256714,42.84617055924947],[-97.02828386105568,42.71765127213959],[-96.7541403877473,42.63383209896217],[-96.70879431841118,42.55109813086288],[-96.62303727902282,42.502651475589246],[-96.45539893266798,42.48887970638346],[-96.41036292192561,42.389273383140875],[-96.34659420447744,42.224606431642826],[-96.34891964393057,42.141949978191974],[-96.1672511462085,41.95330516211048],[-96.10456763383846,41.78768219661504],[-96.09689368364312,41.55668854427036],[-96.02485673702824,41.52454580338481],[-95.95863338904621,41.40491486262913],[-95.85595231808225,41.11656037044047],[-95.83424821651967,40.944038601234055],[-95.86186926957967,40.764721381181246],[-95.79636939164973,40.584189764969594],[-95.77642228878506,40.50135244400572],[-95.60813798702657,40.34322256119259],[-95.45235938188273,40.21506500910874],[-95.32293575720772,40.00133128514955],[-95.08517249223281,39.86798025162037],[-94.95499955928959,39.86999563247976],[-94.92655168331291,39.725379136710956],[-95.0670599027145,39.5396798772701],[-94.99130225297463,39.44441437434003],[-94.86800228552622,39.23460805923503],[-94.60478837764757,39.139704291331],[-93.18169694697781,39.317962144521815],[-92.9925353665734,39.27553579361019],[-92.84479244665093,39.03348338475506],[-92.5315815905299,38.87687795669453],[-92.29291398798988,38.658880927071266],[-92.0472442288743,38.614465033516396],[-91.4517508613589,38.67048228612079],[-90.88537716343998,38.635058091784714],[-90.43271745477931,38.79494497329577],[-90.35547087783402,38.80027410537586],[-90.21419720127909,38.80545466771312],[-90.14459550653598,38.794299017892115],[-90.18284898554003,38.680287889148175],[-90.21249833856749,38.58482859959702],[-90.30549007847671,38.43907522231778],[-90.36972388381551,38.26340119074156],[-90.22794959182275,38.113384507798244],[-90.03018388544176,37.9721786565607],[-89.91701249872256,37.96853546808413],[-89.65496131057047,37.74860057224991],[-89.55388220900755,37.71901581476281],[-89.47928727899424,37.47737681736602],[-89.51623592808293,37.32681753188365],[-89.3883109199444,37.08145783136183],[-89.28017798537365,37.107089341778604],[-89.10295366082867,36.952215074199856],[-89.13437293166214,36.851988633769764],[-89.11509762241727,36.69455638279257],[-89.27382178420176,36.61171906182871],[-89.49820085321306,36.50640249281787],[-89.524039069359,36.40943166762216],[-89.58535315627331,36.266882229145025],[-89.66302283400799,36.02327952732114],[-89.68426507745698,36.02327952732114],[-89.68731075718517,36.02327952732114],[-89.67142025425542,35.981718756650395],[-89.67374569370855,35.94015798597967],[-89.77510901564906,35.79941722263274],[-89.95026628290238,35.70198130954641],[-89.98897193068899,35.53646169691555],[-90.14728268101516,35.40525523532648],[-90.13519039585884,35.113877671848755],[-90.24939531122388,35.020653387994216],[-90.26807634149739,34.94148509372306],[-90.44638587112051,34.866993516574325],[-90.45010657424552,34.72204112399562],[-90.58433610712366,34.454253851859136],[-90.69972958043141,34.3975389674188],[-90.87654049351806,34.261733303355754],[-90.9819087389612,34.054872544891396],[-91.20062923863654,33.706159979785824],[-91.22341854527727,33.46906850843071],[-91.10830929234712,33.20665558525258],[-91.1561099922171,33.00992340751742],[-91.08464148635744,32.952872626267194],[-91.17564368362343,32.80854035087599],[-91.03102718785462,32.60260976819288],[-91.07182573114906,32.47889638928612],[-90.94307390009385,32.30668467867346],[-91.08161841506836,32.2046754013293],[-91.12820471877949,32.0154621444926],[-91.32144873733495,31.859606024700312],[-91.41141740595509,31.64995473889219],[-91.50216122105962,31.40862580008914],[-91.62466020380751,31.296953029906405],[-91.5837583076485,31.04735586193665],[-91.52892961298681,30.80835236258673],[-91.34036231155378,30.64686351167464],[-91.12184851760759,30.269987290969993],[-90.99136552607061,30.133768215448626],[-90.78339372431196,30.052894598911834],[-90.0458935208585,29.8957207300961],[-89.9526950752201,29.801333726514997],[-89.88768612339692,29.647699693311253],[-89.40386552606425,29.15721283621295]],[[116.19758995978427,29.75138845470491],[116.21185265509683,29.78515900320764]]],"bbox":[-135.3134138724495,-33.99358367282875,129.95602664603723,72.9065062527291]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment