Skip to content

Instantly share code, notes, and snippets.

@gcmsrc
Created January 21, 2017 18:04
Show Gist options
  • Save gcmsrc/4814d656b061e04b0e04c268f2b8cc75 to your computer and use it in GitHub Desktop.
Save gcmsrc/4814d656b061e04b0e04c268f2b8cc75 to your computer and use it in GitHub Desktop.
DAND Data Viz
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for converting objects
for the Data Analyst Nanodegree - Data Visualisation project.*/
// Convert countryData into an object format
function convert_CountryData(countryData) {
return Object.keys(countryData)
.map(function(key) {
return {
'year': key,
'value': countryData[key]
};
});
};
function convert_NestedToObject(nested) {
nested.forEach(function(obj) {
newObj = {};
obj.values.forEach(function(d) {
newObj[d.year] = d.value;
});
// Replace array with object
obj.values = newObj;
});
return nested;
}
// Convert Purpose Name ad-hoc
function convert_PurposeName(purpose, datum) {
if(purpose == 'VFR') {
return 'Visiting friends and relatives'
} else {
return datum.purpose;
};
};
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for creating objects
for the Data Analyst Nanodegree - Data Visualisation project.*/
// Create nested data, i.e. visits by country
function create_Nested(data) {
return d3.nest()
.key(function(d) {
return d.market;
})
.entries(data);
};
// Create Purpose Data, i.e. for each purpose, I create an array of objects.
function create_PurposesData(data) {
var dataPurposes = Object.keys(data[0]).slice(1,6).map(function(purpose) {
return {
purpose: purpose,
values: data.map(function(d) {
return {
year: d.year,
value: d[purpose]
};
})
}
});;
return dataPurposes;
};
year Business Holiday Miscellaneous Study VFR visits
2002 0.240537416822 0.419084373331 0.0919486883813 0.016049084009 0.232380437456 11603.3820794
2003 0.233770307173 0.422897682993 0.085784628018 0.0181440926277 0.239403289189 11695.7504415
2004 0.215826107241 0.437541332975 0.0890771265708 0.0154869013269 0.242068531886 13389.3304112
2005 0.228533909167 0.42173304222 0.087183370819 0.0133643225538 0.249185355241 13892.5689795
2006 0.234664484002 0.419806489788 0.093073567256 0.013739721358 0.238715737597 15592.6461415
2007 0.233333961796 0.42387871279 0.0849470608291 0.0165324393778 0.241307825207 15339.7714895
2008 0.210064603451 0.443573192493 0.0827974900599 0.0132584581988 0.250306255797 14752.993692
2009 0.179890520023 0.4964035094 0.0830677885476 0.011952853439 0.228685328591 14211.2979861
2010 0.18873697009 0.498114965082 0.0805382743866 0.0137382315809 0.218871558861 14705.5413382
2011 0.196025160757 0.498118487455 0.0712648770799 0.011640846875 0.222950627834 15289.4929047
2012 0.198437950809 0.494743422747 0.0669662869851 0.0115857100563 0.228266629403 15460.8642467
2013 0.193008040602 0.506139968784 0.0652531982258 0.0105825027692 0.225016289619 16810.7582222
2014 0.188156322911 0.512160505986 0.058654456489 0.0141020379591 0.226926676655 17404.2156497
2015 0.199749941472 0.495645761132 0.0610388286996 0.00971210251104 0.233853366185 18581.145357
market year value
Argentina 2002 14.595359056
Argentina 2003 21.530759141
Argentina 2004 23.171488881
Argentina 2005 20.924879968
Argentina 2006 28.379647088999995
Argentina 2007 30.49079013
Argentina 2008 20.118808958
Argentina 2009 55.37418897699999
Argentina 2010 52.414780794
Argentina 2011 61.069963991000016
Argentina 2012 93.74335129200003
Argentina 2013 93.48125041100002
Argentina 2014 92.49973935000003
Argentina 2015 113.33215731700001
Australia 2002 436.89172697699996
Australia 2003 450.7136469439999
Australia 2004 477.734498041
Australia 2005 552.6481023080001
Australia 2006 578.8438092760001
Australia 2007 595.2522444740002
Australia 2008 583.7169744429999
Australia 2009 571.190791364
Australia 2010 624.2764789800002
Australia 2011 681.266423449
Australia 2012 596.9382011990001
Australia 2013 687.3322455110003
Australia 2014 614.8706871279999
Australia 2015 628.9603035599997
Austria 2002 109.51329462
Austria 2003 128.980634988
Austria 2004 128.65854089299995
Austria 2005 122.257793143
Austria 2006 140.786416167
Austria 2007 163.69116187
Austria 2008 141.65906441600004
Austria 2009 168.772010803
Austria 2010 165.92553487299998
Austria 2011 164.87809062
Austria 2012 153.01341540599998
Austria 2013 142.83758166599998
Austria 2014 145.39774116800007
Austria 2015 152.69029878100005
Bahrain 2011 12.069186924
Bahrain 2012 21.520883024999996
Bahrain 2013 23.936109067000004
Bahrain 2014 19.202672242
Bahrain 2015 11.562628361
Belgium 2002 288.6138012900001
Belgium 2003 306.21036789999994
Belgium 2004 359.22573455699995
Belgium 2005 300.53348135099986
Belgium 2006 342.79421469599987
Belgium 2007 351.08822833499994
Belgium 2008 307.7372220229999
Belgium 2009 349.9166236289999
Belgium 2010 488.81148054200014
Belgium 2011 406.373370059
Belgium 2012 470.31799221199987
Belgium 2013 530.6930997000001
Belgium 2014 490.205149656
Belgium 2015 529.8111867639997
Brazil 2002 64.70641233000002
Brazil 2003 46.13551995200002
Brazil 2004 58.59348563699999
Brazil 2005 65.44075825599998
Brazil 2006 91.48631691800004
Brazil 2007 108.88517896699996
Brazil 2008 150.89464420500005
Brazil 2009 108.44268606799997
Brazil 2010 149.18974625
Brazil 2011 211.282784145
Brazil 2012 215.20779751499992
Brazil 2013 219.95547194800002
Brazil 2014 255.997815108
Brazil 2015 259.638746712
Bulgaria 2008 44.320264249
Bulgaria 2009 55.70139277
Bulgaria 2010 49.265095859
Bulgaria 2011 52.61544012599999
Bulgaria 2012 53.871897102
Bulgaria 2013 55.159902929000005
Bulgaria 2014 71.739023285
Bulgaria 2015 70.26984971799999
Canada 2002 358.33433616800005
Canada 2003 317.24028409499994
Canada 2004 368.86533402800006
Canada 2005 399.2036534009998
Canada 2006 439.5411430050002
Canada 2007 478.147525676
Canada 2008 499.69143672800004
Canada 2009 371.213649843
Canada 2010 389.4524776110001
Canada 2011 428.7708054889999
Canada 2012 402.8562592230001
Canada 2013 434.47924126500004
Canada 2014 359.187932734
Canada 2015 407.53204172400007
Chile 2011 18.697606742999998
Chile 2012 16.651711196999997
Chile 2013 28.986941899999998
Chile 2014 38.009156614
Chile 2015 31.626925320000005
China 2002 39.520290702000004
China 2003 42.630867945000006
China 2004 61.00658490999998
China 2005 58.081053897000025
China 2006 64.77106988300001
China 2007 79.168682084
China 2008 60.107489675000004
China 2009 46.699951595000016
China 2010 55.352449081
China 2011 80.62607251200001
China 2012 104.125517014
China 2013 96.42514362899999
China 2014 98.879508137
China 2015 167.07382965400004
Czech Republic 2002 63.630266074000005
Czech Republic 2003 79.656266543
Czech Republic 2004 126.10342004500002
Czech Republic 2005 106.91572417200003
Czech Republic 2006 112.03087833599996
Czech Republic 2007 134.118388508
Czech Republic 2008 169.69502594899996
Czech Republic 2009 144.812957886
Czech Republic 2010 109.73616490999999
Czech Republic 2011 108.74955594099998
Czech Republic 2012 144.62534684199994
Czech Republic 2013 136.47425049699999
Czech Republic 2014 134.691170811
Czech Republic 2015 166.2559162739999
Denmark 2002 191.42862081899997
Denmark 2003 209.83347041199994
Denmark 2004 238.12045698800006
Denmark 2005 286.6856983179999
Denmark 2006 291.33200356399993
Denmark 2007 312.299082285
Denmark 2008 298.39092804400013
Denmark 2009 332.161131937
Denmark 2010 273.7646143329999
Denmark 2011 340.2379000419999
Denmark 2012 325.727032146
Denmark 2013 378.45346414600004
Denmark 2014 339.44392232800004
Denmark 2015 422.7334180980001
Egypt 2002 19.676177787000007
Egypt 2003 25.033167229
Egypt 2004 21.556451096999997
Egypt 2005 19.483566181000004
Egypt 2006 33.632623029
Egypt 2007 21.840031042000003
Egypt 2008 31.642433169000004
Egypt 2009 30.472555996
Egypt 2010 31.046822862000006
Egypt 2011 29.872413916
Egypt 2012 35.044817822000006
Egypt 2013 39.11707574
Egypt 2014 39.88489869200001
Egypt 2015 38.13918298699999
Finland 2002 66.27873899199999
Finland 2003 59.29279686399999
Finland 2004 78.12335582399999
Finland 2005 97.46617019500002
Finland 2006 102.584148766
Finland 2007 99.40250362600003
Finland 2008 94.937135783
Finland 2009 94.38610871700003
Finland 2010 103.60001514699997
Finland 2011 124.47414685200003
Finland 2012 130.73427016499997
Finland 2013 134.2075737149999
Finland 2014 159.43935228700005
Finland 2015 160.692837382
France 2002 1102.8633108580004
France 2003 1190.87091954
France 2004 1258.1196182840001
France 2005 1367.347915872999
France 2006 1447.549875937
France 2007 1342.3534987340004
France 2008 1409.8554764379999
France 2009 1528.2479291619995
France 2010 1624.253066575001
France 2011 1600.4690838269996
France 2012 1681.2708605259995
France 2013 1903.9821559480004
France 2014 2009.9768748670008
France 2015 2071.3970698949993
Germany 2002 889.4346487779998
Germany 2003 891.7289075200005
Germany 2004 1172.9192244300004
Germany 2005 1280.9184800990004
Germany 2006 1274.7184991340002
Germany 2007 1196.5759770230002
Germany 2008 1052.3987693000001
Germany 2009 1068.9323414700004
Germany 2010 1257.3681874509998
Germany 2011 1214.4722536309994
Germany 2012 1199.0605367759997
Germany 2013 1295.2619027330002
Germany 2014 1341.073394546
Germany 2015 1401.2194024319995
Greece 2002 97.846777886
Greece 2003 96.63115020000002
Greece 2004 109.76634034599995
Greece 2005 111.77623444800003
Greece 2006 102.48796759100001
Greece 2007 99.55207789100001
Greece 2008 124.44705915300003
Greece 2009 116.93206042600002
Greece 2010 104.54719407699997
Greece 2011 134.37727784400002
Greece 2012 92.300163656
Greece 2013 110.83236959300002
Greece 2014 155.35499172800002
Greece 2015 147.76058228000002
Hong Kong S.A.R. 2002 96.09616112900001
Hong Kong S.A.R. 2003 78.75378606199999
Hong Kong S.A.R. 2004 82.86582170999996
Hong Kong S.A.R. 2005 88.94374181400003
Hong Kong S.A.R. 2006 96.55038294600003
Hong Kong S.A.R. 2007 85.092973074
Hong Kong S.A.R. 2008 84.47433289799997
Hong Kong S.A.R. 2009 86.69165674899997
Hong Kong S.A.R. 2010 84.37004225
Hong Kong S.A.R. 2011 97.925671338
Hong Kong S.A.R. 2012 92.73019874499998
Hong Kong S.A.R. 2013 99.48366519899999
Hong Kong S.A.R. 2014 107.488126599
Hong Kong S.A.R. 2015 134.414885638
Hungary 2002 43.683604775999996
Hungary 2003 45.148987085999984
Hungary 2004 83.478904787
Hungary 2005 120.89838106400003
Hungary 2006 119.511893779
Hungary 2007 149.11481496300001
Hungary 2008 108.247728972
Hungary 2009 102.422103076
Hungary 2010 75.62250823000002
Hungary 2011 80.74965408899999
Hungary 2012 104.92136956400003
Hungary 2013 88.179874986
Hungary 2014 115.56501291399998
Hungary 2015 95.239152401
Iceland 2002 20.138197987999998
Iceland 2003 23.700039997
Iceland 2004 49.79567146300001
Iceland 2005 42.968266815
Iceland 2006 46.66595318899999
Iceland 2007 46.103127715
Iceland 2008 32.328583897
Iceland 2009 23.710144104000005
Iceland 2010 19.937233922
Iceland 2011 24.46911308
Iceland 2012 25.399086513
Iceland 2013 28.956171185
Iceland 2014 28.497370123
Iceland 2015 26.062992604000005
India 2002 135.24556920000003
India 2003 130.36824330800002
India 2004 160.28338171499993
India 2005 166.02863210299995
India 2006 229.56392790099994
India 2007 219.69035085699997
India 2008 241.64290944900003
India 2009 177.912951888
India 2010 235.92660682199997
India 2011 235.27043844200008
India 2012 231.53000343799994
India 2013 243.57792019299998
India 2014 252.31917277899998
India 2015 275.7453048030001
Indonesia 2011 19.232790185
Indonesia 2012 18.511527147999995
Indonesia 2013 17.862094968999997
Indonesia 2014 22.100618511999997
Indonesia 2015 24.770477862
Ireland 2002 628.8731627799998
Ireland 2003 623.5519496440003
Ireland 2004 682.7932528919999
Ireland 2005 726.5361173530001
Ireland 2006 718.4119690699995
Ireland 2007 732.273407233
Ireland 2008 736.1492586729998
Ireland 2009 690.420430604
Ireland 2010 656.638842603
Ireland 2011 620.3188509109999
Ireland 2012 595.9400475330004
Ireland 2013 610.624598379
Ireland 2014 620.2920184010002
Ireland 2015 793.2304510920001
Israel 2002 152.70756545900002
Israel 2003 122.67384915400001
Israel 2004 127.445260059
Israel 2005 106.940677091
Israel 2006 138.398791702
Israel 2007 102.69934831400002
Israel 2008 125.66391813899999
Israel 2009 124.930476672
Israel 2010 122.84391088999998
Israel 2011 120.50557012799997
Israel 2012 108.20603365000001
Israel 2013 140.96326714900002
Israel 2014 147.57870230499998
Israel 2015 164.65256870400006
Italy 2002 541.5962966260001
Italy 2003 601.4144014649999
Italy 2004 765.3620940920001
Italy 2005 643.726423381
Italy 2006 851.1752784069996
Italy 2007 837.7434506400003
Italy 2008 981.0446883459999
Italy 2009 747.6399869050002
Italy 2010 932.2429438089999
Italy 2011 1009.290218019
Italy 2012 962.8072050670002
Italy 2013 1072.1807178389997
Italy 2014 1185.7482357719996
Italy 2015 1165.0836310529996
Japan 2002 294.47076965300005
Japan 2003 232.52912602099997
Japan 2004 264.9933933579999
Japan 2005 242.9283887919998
Japan 2006 245.20231034200017
Japan 2007 220.05665104399998
Japan 2008 167.83790707299997
Japan 2009 180.45148927600002
Japan 2010 168.20516651100002
Japan 2011 166.35645556000003
Japan 2012 177.854013144
Japan 2013 155.34927841699994
Japan 2014 157.478226994
Japan 2015 151.39913751499998
Kenya 2002 31.580496979999992
Kenya 2003 19.836604095
Kenya 2004 22.092889157999995
Kenya 2005 16.468625933000002
Kenya 2006 15.9477102
Kenya 2007 12.670248942
Kenya 2008 24.644500955999998
Kenya 2009 14.897177068000001
Kenya 2010 18.549059943000003
Kenya 2011 17.843812079000003
Kenya 2012 20.771585136999995
Kenya 2013 22.347663999000005
Kenya 2014 12.465435056999999
Kenya 2015 22.400750873
Kuwait 2002 31.059023976000006
Kuwait 2003 36.17274383100001
Kuwait 2004 32.452613876
Kuwait 2005 33.815372246999985
Kuwait 2006 43.64871711600002
Kuwait 2007 46.689408015000005
Kuwait 2008 35.422521858
Kuwait 2009 48.981363492
Kuwait 2010 41.93610004699998
Kuwait 2011 52.781241206999994
Kuwait 2012 50.478253753999994
Kuwait 2013 105.68905795200001
Kuwait 2014 84.27489629299997
Kuwait 2015 83.36739936700002
Luxembourg 2002 23.933049037
Luxembourg 2003 16.853040887000002
Luxembourg 2004 38.373454112000005
Luxembourg 2005 25.894775986000003
Luxembourg 2006 28.203738065
Luxembourg 2007 31.687745869
Luxembourg 2008 34.968839024000005
Luxembourg 2009 27.883183557
Luxembourg 2010 26.796334176
Luxembourg 2011 39.95505609799999
Luxembourg 2012 40.060612677
Luxembourg 2013 51.21206161300001
Luxembourg 2014 56.09707565600001
Luxembourg 2015 78.103773057
Malaysia 2002 60.489580400999984
Malaysia 2003 46.671644109
Malaysia 2004 65.029698134
Malaysia 2005 52.811654209
Malaysia 2006 52.73174015900001
Malaysia 2007 46.97762699499998
Malaysia 2008 45.606669153999995
Malaysia 2009 77.88868209800002
Malaysia 2010 89.84081590100001
Malaysia 2011 82.47354252700002
Malaysia 2012 72.02053042899996
Malaysia 2013 113.36988623799999
Malaysia 2014 109.536848217
Malaysia 2015 126.01923207600004
Mexico 2002 53.038406775
Mexico 2003 57.868399021999984
Mexico 2004 52.16182879600002
Mexico 2005 54.978638791
Mexico 2006 69.46794288000004
Mexico 2007 38.147950918999996
Mexico 2008 50.40036481400002
Mexico 2009 60.741047926000014
Mexico 2010 51.855554385000005
Mexico 2011 62.158638969
Mexico 2012 69.80439256
Mexico 2013 91.442435235
Mexico 2014 72.79023395099998
Mexico 2015 82.20943600200002
Netherlands 2002 492.361354336
Netherlands 2003 619.2048370560002
Netherlands 2004 578.316150527
Netherlands 2005 606.7170003150001
Netherlands 2006 659.7670236399999
Netherlands 2007 665.328416209
Netherlands 2008 654.148838244
Netherlands 2009 683.8694758600005
Netherlands 2010 621.1703229250002
Netherlands 2011 631.2341157400002
Netherlands 2012 637.930629298
Netherlands 2013 686.7109881319999
Netherlands 2014 705.1862861199999
Netherlands 2015 690.48509869
New Zealand 2002 82.67217579499996
New Zealand 2003 100.54281580199999
New Zealand 2004 101.89609722799999
New Zealand 2005 121.74206997600001
New Zealand 2006 124.546996139
New Zealand 2007 119.74246621700001
New Zealand 2008 103.12724301299998
New Zealand 2009 108.81879197000005
New Zealand 2010 111.30152317800001
New Zealand 2011 95.538711549
New Zealand 2012 104.54087000899997
New Zealand 2013 93.70729327999999
New Zealand 2014 106.60637670799997
New Zealand 2015 118.41910725
Nigeria 2002 93.006873726
Nigeria 2003 85.612025783
Nigeria 2004 120.64473516
Nigeria 2005 119.830542859
Nigeria 2006 118.35013170399995
Nigeria 2007 125.048341018
Nigeria 2008 113.607711358
Nigeria 2009 116.506480483
Nigeria 2010 124.566580578
Nigeria 2011 106.09020167599996
Nigeria 2012 109.89716079400004
Nigeria 2013 120.67499908800002
Nigeria 2014 95.80541807200001
Nigeria 2015 89.781191708
Norway 2002 178.391173858
Norway 2003 182.01539769700003
Norway 2004 218.04298469699995
Norway 2005 265.90286889
Norway 2006 302.1912594200001
Norway 2007 306.60037301599993
Norway 2008 337.61603778299997
Norway 2009 324.07993614399993
Norway 2010 372.106886018
Norway 2011 382.14464229300006
Norway 2012 396.79784211099997
Norway 2013 480.109934232
Norway 2014 471.9369396520001
Norway 2015 434.6297132019999
Oman 2011 8.083898005999998
Oman 2012 8.475467951
Oman 2013 12.137767048999999
Oman 2014 9.607254713
Oman 2015 14.259101365000003
Pakistan 2002 43.01746578399999
Pakistan 2003 35.563234237
Pakistan 2004 49.235691172
Pakistan 2005 58.26557506600001
Pakistan 2006 66.121777165
Pakistan 2007 55.53223288000001
Pakistan 2008 47.742180077
Pakistan 2009 38.37639894800001
Pakistan 2010 32.486232877999996
Pakistan 2011 31.407247062
Pakistan 2012 40.592528316
Pakistan 2013 39.72704714399999
Pakistan 2014 49.00551920800001
Pakistan 2015 35.145472198
Poland 2002 115.33006335799999
Poland 2003 167.22525453000003
Poland 2004 277.79681419700006
Poland 2005 425.19047109099995
Poland 2006 528.204189355
Poland 2007 432.71474399999994
Poland 2008 451.259513744
Poland 2009 359.55149619
Poland 2010 355.72928833799995
Poland 2011 353.732700054
Poland 2012 396.2196193720001
Poland 2013 419.2277231170002
Poland 2014 446.49400552000003
Poland 2015 531.353701889
Portugal 2002 97.80148359899998
Portugal 2003 97.46053817999999
Portugal 2004 96.98215337900001
Portugal 2005 113.63602124
Portugal 2006 120.75442385400002
Portugal 2007 144.05546588199996
Portugal 2008 133.780615654
Portugal 2009 136.70651247599997
Portugal 2010 172.387961782
Portugal 2011 165.59096936900005
Portugal 2012 152.95365451200004
Portugal 2013 137.99903750100003
Portugal 2014 191.27908957499997
Portugal 2015 222.978525757
Qatar 2011 24.602314903000003
Qatar 2012 31.665262997
Qatar 2013 43.60443186399999
Qatar 2014 32.847070363
Qatar 2015 41.836869585
Republic of Serbia 2011 18.796171903999998
Republic of Serbia 2012 17.821087
Republic of Serbia 2013 16.262249113000003
Republic of Serbia 2014 12.519155801999997
Republic of Serbia 2015 16.909916253
Romania 2008 101.05905654700003
Romania 2009 107.84048572199998
Romania 2010 121.93434050699999
Romania 2011 127.93483901000002
Romania 2012 109.833407299
Romania 2013 158.621421161
Romania 2014 170.45366854499994
Romania 2015 237.738125816
Russia 2002 143.199269516
Russia 2003 160.12249570900005
Russia 2004 193.37077346800007
Russia 2005 133.19067581
Russia 2006 159.58775847299998
Russia 2007 165.12277963799994
Russia 2008 125.00690186500007
Russia 2009 85.735525481
Russia 2010 119.07894284800003
Russia 2011 154.36411086199996
Russia 2012 155.282329175
Russia 2013 147.24373388799995
Russia 2014 164.825299916
Russia 2015 99.00938686899997
Saudi Arabia 2002 42.841656881000006
Saudi Arabia 2003 34.14979388100001
Saudi Arabia 2004 37.725659101000005
Saudi Arabia 2005 36.982993765
Saudi Arabia 2006 39.512731388000006
Saudi Arabia 2007 56.48027217199998
Saudi Arabia 2008 63.827496203
Saudi Arabia 2009 58.58815504599998
Saudi Arabia 2010 54.21153989400001
Saudi Arabia 2011 66.835191606
Saudi Arabia 2012 74.44187283300002
Saudi Arabia 2013 90.946555524
Saudi Arabia 2014 99.14712965699998
Saudi Arabia 2015 103.90909166899999
Singapore 2002 57.456061361999986
Singapore 2003 52.554538756
Singapore 2004 57.15577941100001
Singapore 2005 49.90519098800001
Singapore 2006 70.865267975
Singapore 2007 63.444957898000006
Singapore 2008 76.959014416
Singapore 2009 64.700659195
Singapore 2010 89.24954079000003
Singapore 2011 88.866435722
Singapore 2012 106.65452638099998
Singapore 2013 91.50625695099998
Singapore 2014 120.61848810400002
Singapore 2015 148.586448654
South Africa 2002 162.53059424699998
South Africa 2003 156.75393201699998
South Africa 2004 167.64389037899997
South Africa 2005 180.13048152399995
South Africa 2006 216.82457813600004
South Africa 2007 174.82944750699994
South Africa 2008 164.23228400899995
South Africa 2009 131.536326752
South Africa 2010 123.43992708600001
South Africa 2011 108.73481208199998
South Africa 2012 118.816167048
South Africa 2013 142.34256589199995
South Africa 2014 124.489544614
South Africa 2015 134.48145320599997
South Korea 2002 66.99341514799998
South Korea 2003 88.62836422599996
South Korea 2004 114.55906924099997
South Korea 2005 119.13064748699998
South Korea 2006 119.403595416
South Korea 2007 127.95651462700002
South Korea 2008 109.46713204
South Korea 2009 58.031894744999995
South Korea 2010 84.789878621
South Korea 2011 108.10505147100001
South Korea 2012 130.74695834
South Korea 2013 154.82306945099998
South Korea 2014 164.58170167000003
South Korea 2015 181.91495477000004
Spain 2002 444.35032662699984
Spain 2003 526.5628755910001
Spain 2004 691.6298150980002
Spain 2005 709.6882412069999
Spain 2006 933.5185725249999
Spain 2007 967.5133240500003
Spain 2008 895.2936935569998
Spain 2009 1011.262230911
Spain 2010 875.2385267690003
Spain 2011 894.8486538060002
Spain 2012 795.8884000999999
Spain 2013 865.731672618
Spain 2014 984.288076086
Spain 2015 1153.2126313230003
Sweden 2002 291.889962082
Sweden 2003 307.88287822399985
Sweden 2004 327.23262297599996
Sweden 2005 333.75659607099993
Sweden 2006 383.0678488109999
Sweden 2007 401.86255744399995
Sweden 2008 417.5198874970002
Sweden 2009 335.08804212900003
Sweden 2010 442.61978441799994
Sweden 2011 457.67308495300017
Sweden 2012 503.056276106
Sweden 2013 516.1356765140001
Sweden 2014 547.4053099270001
Sweden 2015 553.649813626
Switzerland 2002 310.6436904900001
Switzerland 2003 297.14938551000006
Switzerland 2004 292.6073416160002
Switzerland 2005 331.37878951899995
Switzerland 2006 389.227227379
Switzerland 2007 372.4189723909998
Switzerland 2008 348.246871795
Switzerland 2009 354.31432338900004
Switzerland 2010 314.5090652509999
Switzerland 2011 391.20889158700015
Switzerland 2012 425.0321077760002
Switzerland 2013 453.77063772599996
Switzerland 2014 503.073927285
Switzerland 2015 504.37247451300016
Taiwan 2002 18.857968017
Taiwan 2003 20.369664952999994
Taiwan 2004 23.325825051000002
Taiwan 2005 22.123662174
Taiwan 2006 18.944392949999997
Taiwan 2007 23.110429958000005
Taiwan 2008 17.792403013
Taiwan 2009 23.055323988000005
Taiwan 2010 23.329388187
Taiwan 2011 23.635838922
Taiwan 2012 27.022714092999994
Taiwan 2013 28.75108879800001
Taiwan 2014 37.919176399000015
Taiwan 2015 33.658773453
Thailand 2002 21.438677997
Thailand 2003 26.333806054000007
Thailand 2004 29.555614788999996
Thailand 2005 27.289642807999996
Thailand 2006 29.681224137000005
Thailand 2007 36.54388094
Thailand 2008 22.049665063000003
Thailand 2009 39.387633326999996
Thailand 2010 30.076497867000004
Thailand 2011 35.89586111799999
Thailand 2012 38.022603778
Thailand 2013 41.94417494799999
Thailand 2014 35.467313957
Thailand 2015 43.326052338
Turkey 2002 41.18685379499999
Turkey 2003 61.043753971000015
Turkey 2004 55.925491034999986
Turkey 2005 51.86198698
Turkey 2006 91.641897084
Turkey 2007 77.89266464300002
Turkey 2008 75.40592864100002
Turkey 2009 58.85791119500001
Turkey 2010 71.74700676
Turkey 2011 69.419882848
Turkey 2012 91.463656944
Turkey 2013 90.81364351799999
Turkey 2014 102.98828426400001
Turkey 2015 116.80588760799999
United Arab Emirates 2002 60.55888007400001
United Arab Emirates 2003 58.28502412599999
United Arab Emirates 2004 73.19576777799999
United Arab Emirates 2005 61.776979348999994
United Arab Emirates 2006 89.06955610199999
United Arab Emirates 2007 91.49001893399999
United Arab Emirates 2008 123.68644351899998
United Arab Emirates 2009 121.42699499899999
United Arab Emirates 2010 107.22309557900005
United Arab Emirates 2011 118.191408584
United Arab Emirates 2012 133.326225036
United Arab Emirates 2013 161.31613233799996
United Arab Emirates 2014 152.078279318
United Arab Emirates 2015 181.312990062
United States of America 2002 2446.330244300999
United States of America 2003 2233.116193237
United States of America 2004 2406.376630444999
United States of America 2005 2276.8150966149997
United States of America 2006 2536.896371216
United States of America 2007 2333.6141901279993
United States of America 2008 1907.8710551309998
United States of America 2009 1839.1486334340004
United States of America 2010 1765.5577235
United States of America 2011 1842.7915298310008
United States of America 2012 1862.321358502
United States of America 2013 1877.873296906999
United States of America 2014 1982.1863286459998
United States of America 2015 2142.3243470760012
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for extracting
data on the Data Analyst Nanodegree - Data Visualisation project.*/
// Extract max value of the max values in an object
function extract_MaxMax(data) {
return d3.max(data, function(d) {
return d3.max(d.values, function(d) {
return d.value;
});
});
};
// Extract purpose percentage
function extract_PurposePerc(datum, index) {
return format_Perc(datum.values[index].value);
};
// Extract years from geo dataset
function extract_Years(data) {
// Use a for loop and an empty set
years = d3.set();
data.forEach(function(d) {
years.add(d.year);
})
return years.values();
};
// Extract data of a specific country
function extract_CountryData(countries, country) {
// Return visitors array for a given country
var filterData = countries.filter(function(d) {
return d.properties.name == country;
});
// Return data only if there are visitors values.
if(filterData.data()[0].properties.visitors) {
return filterData.data()[0].properties.visitors;
};
};
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for formatting data
for the Data Analyst Nanodegree - Data Visualisation project.*/
// Two decimal numbers
var format_Dec = d3.format('.2f');
// Integer with thousand-separing comma
var format_Int = d3.format(',.0f');
// Percentage
var format_Perc = d3.format(',%');
// Format millions (formatting different if for tooltip)
function format_Mill(value, tooltip = false) {
if(tooltip) {
return format_Dec(parseFloat(value) / 1e3) + ' M';
} else {
return format_Int(parseFloat(value) / 1e3) + ' M';
};
};
// Format thousands into units
function format_Units(value) {
return format_Int(parseFloat(value) * 1e3);
};
// Move selected object to front
d3.selection.prototype.format_MoveToFront = function() {
return this.each(function() {
this.parentNode.appendChild(this);
});
};
// Format purposeBox Y ad-hoc
function format_PurposeBoxY(purpose, datum, index) {
if (purpose == 'Business') {
return yScale(datum.values[index].value) + 25;
} else if (purpose == 'VFR') {
return yScale(datum.values[index].value) - 25;
} else {
return yScale(datum.values[index].value) - 15;
};
};
/*Round up to the next hundredth thousand for a value expressed
in thousands*/
function format_RoundUpThousand(value) {
return Math.ceil(value / 1e2) * 1e2;
};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DAND - Data Viz</title>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://d3js.org/colorbrewer.v1.min.js"></script>
<script src="https://d3js.org/d3-color.v1.min.js"></script>
<script src="https://d3js.org/d3-interpolate.v1.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<!--CUSTOM SCRIPTS-->
<script type="text/javascript" src='setup.js'></script>
<script type="text/javascript" src='format.js'></script>
<script type="text/javascript" src='utility.js'></script>
<script type="text/javascript" src='parse.js'></script>
<script type="text/javascript" src='create.js'></script>
<script type="text/javascript" src='extract.js'></script>
<script type="text/javascript" src='convert.js'></script>
<script type="text/javascript" src='legend.js'></script>
<script type="text/javascript" src='trends.js'></script>
<script type="text/javascript" src='map.js'></script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700" rel="stylesheet">
<!--CUSTOM STYLESHEET-->
<link rel="stylesheet" type="text/css" href="newstyle.css">
</head>
<body>
<script type="text/javascript">
// Add chart
var chart = d3.select("body")
.append("svg")
.attr("width", outerWidth)
.attr("height", outerHeight)
.append('g');
// Append buttons
chart.selectAll('circle')
.data(['visits', 'purpose', 'origin'])
.enter()
.append('circle')
.attr('id', function(d) {return d;})
.attr('class', 'button')
.attr('cx', function(d, i) {
return 0.88 * outerWidth + i * 20;
})
.attr('cy', 1.2 * padding.top)
.attr('r', 8)
.on('mouseover', function() {
d3.select(this).style('cursor', 'pointer');
})
// Add drawing area
var area = chart.append('g')
.attr('class', 'area');
// Append title
chart.append('g')
.attr('id', 'title')
.attr('transform', 'translate(' + (3 * padding.left) + ',' + (1.5 * padding.top) + ')')
.append('text')
.style("text-anchor", "start")
.text('Three facts about international visitors to London');
// Append subtitle box
chart.append('g')
.attr('transform', 'translate(' + (3 * padding.left) + ',' + (2.8 * padding.top) + ')')
.append('text')
.attr('class', 'subtitle')
.style("text-anchor", "start");
// Apend comment box
chart.append('g')
.attr('transform', 'translate(' + (3 * padding.left) + ',' + (3.6 * padding.top + 2) + ')')
.attr('class', 'comment');
// Append source
chart.append('g')
.attr('transform', 'translate(' + (width - 50) + ',' + (height + 30) + ')')
.append('text')
.attr('class', 'source')
.text('Source: data.london.gov.uk')
.style('text-anchor', 'end');
// Start with first visulisation
trends(1);
// Add click behaviour to buttons
d3.select('#visits')
.on('click', function() {
trends(1)
});
d3.select('#purpose')
.on('click', function() {
trends(2)
});
d3.select('#origin')
.on('click', function() {
map();
});
</script>
</body>
</html>
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for adding a legend to
the map of the Data Analyst Nanodegree - Data Visualisation project.*/
// Add legend
function legend_Add() {
// Append legend to area
var legend = area.append('g')
.attr('class', 'map legend')
.attr('transform', 'translate(' + (5 * padding.right) + ',' + (0.86 * outerHeight + 25) + ')');
// Define legendData
var legendData = [];
for (var i = 0; i < 150; i += 1) {
legendData.push(i);
};
// Update legend scale
legendColor.domain([0, legendData.length - 1]);
// Add legend sections
legend.append('g')
.attr('class', 'legend-bar')
.selectAll('rect')
.data(legendData)
.enter()
.append('rect')
.attr('x', function(d) {return d})
.attr('y', '5')
.attr('height', '10')
.attr('width', '1')
.attr('fill', function(d, i) {
return utility_ColorMapInterpolate(i, true);
});
// Append title
legend.append('text')
.attr('class', 'legend-title')
.text('International Visitors to London');
// Append min
legend.append('text')
.attr('class', 'legend-range min')
.text(0)
.attr("transform","translate(0" +',' + 30 + ')');
// Append max
legend.append('text')
.attr('class', 'legend-range')
.text(format_Units(mapColor.domain()[1]))
.attr("transform","translate(" + 150 +',' + 30 + ')');
};
/// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains the code for rendering the
visualisation of the final chart in the project (i.e. map)*/
function map() {
// Remove all elements in area
utility_RemoveObjs('*');
// Define tooltipHeight
var tooltipHeight = 50;
// Append map tooltip
area.append('g')
.attr('id', 'tooltip')
.attr('class', 'map')
.attr('transform', 'translate(' + (5 * padding.right) + ',' + (0.74 * innerHeight) + ')')
.append('rect')
.attr('class', 'ttip-map-container')
.attr('height', tooltipHeight);
// Change fill of button
utility_FillButton(2);
// Update subtitle
utility_ChangeSubtitle('Fewer from USA, more from Europe')
// Change comment
utility_ChangeComment('The number of visitors travelling to London<br>'
+ 'from the USA has diminished, while those<br>'
+ 'from Europe have increased<br><br>'
+ 'Click on a country and/or mouse over<br>'
+ 'the year to interact with the chart.');
// Append yearBox
var yearBox = area.append('text')
.attr('x', 5 * padding.right)
.attr('y', 0.86 * outerHeight)
.attr('class', 'map year')
// Append focus
var focus = area.append('g')
.attr('id', 'focus')
.attr('class', 'map')
.attr('transform', 'translate(' + (5 * padding.right) + ',' + (0.58 * outerHeight) + ')');
d3.csv('dataset_geo.csv', parse_Map, function(data) {
// Extract years
var years = extract_Years(data);
// Add first year to text of yearBox
yearBox.text(years[0]);
// Get BBox of yearBox
var box = yearBox.node().getBBox();
// Update tooltip width
area.select('.ttip-trend-container').attr('width', box.width);
// Append country name to tooltip
area.select('#tooltip')
.append('text')
.attr('class', 'ttip-map-country')
.attr('x', 0)
.attr('y', 1 / 3 * tooltipHeight)
.style('alignment-baseline', 'middle');
// Append value to tooltip
area.select('#tooltip')
.append('text')
.attr('class', 'ttip-map-value')
.attr('x', 0)
.attr('y', 3 / 4 * tooltipHeight)
.style('alignment-baseline', 'middle');
// Define domain and range of yearBoxScale
yearBoxScale.domain([years[0], years[years.length - 1]])
.range([box.x + 5, box.x + box.width - 20]);
// Update xScale
xScale.rangeRoundBands([5, box.width], 0.05);
// Append xAxis
focus.append('g').attr('class', 'axis focus-x');
// Call xScale on xAxis
xFocusAxis.tickValues([years[0], years[years.length - 1]])
.scale(xScale);
focus.select('.focus-x').call(xFocusAxis);
// Update yScale
yScale.range([-30, 0]);
// Append yAxis
focus.append('g').attr('class', 'axis focus-y');
// Nesting by market, i.e. by country of origin
var nested = d3.nest()
.key(function(d) {
return d.market;
})
.entries(data);
/*Update mapColor domain (max is the maximum number of
international visitors from a country throughout history)*/
mapColor.domain([0, format_RoundUpThousand(extract_MaxMax(nested))]);
// Format legend
legend_Add();
/*Convert nested values from array of objects to a single
object, where keys are represented by the years*/
var nested = convert_NestedToObject(nested);
// Load geoJSON data
d3.json('world_simple.json', function(json) {
// Add data to map as per Scott Murray choropleth
for (var i = 0; i < nested.length; i++) {
var dataCountry = nested[i].key;
var dataValues = nested[i].values;
for (var j = 0; j < json.features.length; j++) {
var mapCountry = json.features[j].properties.name;
if (dataCountry == mapCountry) {
json.features[j].properties.visitors = dataValues;
break;
}
}
};
// Bind data
var countries = area.selectAll('path')
.data(json.features)
.enter()
.append('path')
.attr('d', mapPath)
.attr('class', 'map country');
// Change tooltip value based on countryData
function newTtipValue(countryData, year) {
if(countryData[year]) {
return format_Units(countryData[year]);
} else {
return 'N/A';
}
};
// Create focus mini chart, i.e. a line chart with a circle for a given year
function appendFocusChart(country, year) {
// Remove any existing focus line
utility_RemoveObjs('.focus-line');
// Remove any existing focus circle
utility_RemoveObjs('.focus-circle');
// Extract countryData
var countryData = extract_CountryData(countries, country);
// Change tooltip value
area.select('.ttip-map-value')
.text(newTtipValue(countryData, year));
// Convert to focusData
var focusData = convert_CountryData(countryData);
// Update yScale
yScale.domain([
d3.max(focusData, function(d) {
return d.value;
}),
d3.min(focusData, function(d) {
return d.value;
})]);
// Update yAxis scale
yFocusAxis.scale(yScale)
// Call yAxis
focus.select('.focus-y').call(yFocusAxis);
// Append focus line
focus.append('path')
.attr('d', line(focusData))
.attr('class', 'focus-line');
// Append circle
focus.append('circle')
.attr('r', 4)
.attr('class', 'focus-circle')
.attr('cx', function() {
return xScale(year) + xScale.rangeBand() / 2;
})
.attr('cy', function() {
return yScale(countryData[year])
});
};
// Start with the US
area.select('.ttip-map-country')
.text('United States of America');
// Append focusChart
appendFocusChart(area.select('.ttip-map-country').text(), years[0]);
// Initialise chart
updateMap(years[0]);
function updateMap(year) {
// Transition country fills
countries.transition()
.duration(50)
.style('fill', function(d) {
if(d.properties.visitors) {
if(d.properties.visitors[year]) {
return utility_ColorMapInterpolate(d.properties.visitors[year]);
};
};
});
// Transition yearBox value
yearBox.transition()
.duration(50)
.text(year);
// Extract name of country in tooltip
var country = area.select('.ttip-map-country').text();
// Extract country data
var countryData = extract_CountryData(countries, country);
// Update tooltip-value
area.select('.ttip-map-value')
.transition()
.duration(500)
.text(newTtipValue(countryData, year));
// Update circle
focus.select('.focus-circle')
.transition()
.duration(50)
.attr('cx', xScale(year) + xScale.rangeBand()/2)
.call(function() {
// Extract countryData
var state = area.select('.ttip-map-country').text();
var countryData = extract_CountryData(countries, state)
if(countryData[year]) {
// Change circle position
this.attr('cy', yScale(countryData[year]));
// Change circle fill
this.style('fill', 'red');
} else {
// Change circle fill
this.style('fill', 'white');
}
});
// Add countries mouseover and click effect
countries.on('mouseover', function(d) {
if(d.properties.visitors) {
// Change the cursor
d3.select(this).style('cursor', 'pointer');
};
})
.on('click', function(d) {
if(d.properties.visitors) {
// Define previous country value
var previousCountry = area.select('.ttip-map-country').text();
// Extract clicked state
var clickedCountry= d.properties.name;
// Change tooltip title
area.select('.ttip-map-country')
.text(clickedCountry);
// Change focus and tooltip based on country value
if(clickedCountry != previousCountry) {
appendFocusChart(clickedCountry, year);
};
};
});
};
// Add yearBox mousemove effect
yearBox.on('mousemove', function() {
// Cancel current transition if any
area.transition().duration(0);
// Extract year using yearBoxScale
var yearValue = Math.round(yearBoxScale.invert(d3.mouse(this)[0]));
// Trim yearValue
if(yearValue < years[0]) {
yearValue = years[0];
} else if (yearValue > years[years.length - 1]) {
yearValue = years[years.length -1];
} else {
// Conver number to string
yearValue = yearValue.toString();
};
// Change text of yearBox
yearBox.transition()
.duration(150)
.text(yearValue);
// Update map
updateMap(yearValue);
});
});
});
};
/*/// UDACITY DAND - Data Visualisation - Giacomo Sarchioni*/
/*This is the main CSS stylesheet for the project*/
.axis {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300i;
font-size: 14px;
}
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.axis path {
display: none;
}
.bar {
fill: #428bca;
}
.bar.highlight {
fill: #ffbf00;
}
.comment {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
font-size: 14px;
fill: #a6a6a6;
}
.country {
stroke: #beb7b7;
stroke-width: 0.75;
fill: white;
}
.focus-circle {
fill: red;
stroke: white;
stroke-width: 2;
}
.focus-line {
fill: none;
stroke: rgb(8,52,112);
stroke-width: 2;
}
.focus-x {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300i;
font-size: 10px;
}
.focus-y line{
shape-rendering: crispEdges;
stroke: #000;
}
.hidden {
display: none;
}
.legend-range {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300i;
font-size: 12px;
text-anchor: end;
fill: #beb7b7;
}
.legend-title {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 400;
font-size: 12px;
text-anchor: start;
fill: grey;
}
.legend-range.min{
text-anchor: start;
}
.line {
fill: none;
}
.purpose path {
stroke-width: 2;
}
.purpose text {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
font-size: 16px;
}
.purpose.focused path {
stroke-width: 3;
}
.purpose.focused text {
font-weight: 400;
}
.purpose.unfocused path {
stroke: #d8d8d8;
}
.purpose.unfocused text {
fill: #d8d8d8;
}
.purpose .percentage-box {
text-align: left;
alignment-baseline: middle;
}
.purpose .purpose-box {
cursor: default;
text-anchor: start;
}
.source {
position: fixed;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
font-size: 14px;
fill: #a6a6a6;
top: 480px;
}
.subtitle {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 700;
font-size: 18px;
fill: #595959;
}
.tick line {
stroke-width: 0.5;
opacity: 0.3;
}
#title {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
font-size: 22px;
}
#tooltip text {
font-family: 'Roboto Condensed', sans-serif;
}
.ttip-map-container {
fill: white;
}
.ttip-map-country {
font-weight: 700;
font-size: 16px;
text-align: left;
}
.ttip-map-value {
font-weight: 400;
font-size: 16px;
text-align: left;
}
.ttip-trend-container {
fill: white;
stroke: black;
opacity: 0.97;
}
.ttip-trend-year {
font-weight: 700;
font-size: 15px;
text-anchor
}
.ttip-trend-value {
font-weight: 400;
font-size: 17px;
}
.year {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 300;
font-size: 80px;
fill: grey;
cursor: ew-resize;
}
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for parsing the data
for the Data Analyst Nanodegree - Data Visualisation project.*/
// Parse trend data
function parse_Trend(data) {
for (var key in data) {
if (key != 'year') {
data[key] = +data[key];
};
};
return data;
};
// Parse map data
function parse_Map(data) {
for (var key in data) {
if (key == 'value') {
data[key] = +data[key];
};
};
return data;
};
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for setting up the
page for the Data Analyst Nanodegree - Data Visualisation project.*/
// ### MARGINS ###
//Margins as per convention from bl.ocks.org
var margin = {top: 20, right: 10, bottom: 20, left: 10};
var padding = {top: 20, right: 20, bottom: 20, left:20};
var outerWidth = 960,
outerHeight = 500,
width = outerWidth - margin.left - margin.right,
height = outerHeight - margin.top - margin.bottom,
innerWidth = width - padding.left - padding.right,
innerHeight = height - padding.top - padding.bottom;
// ### AXIS SCALES ###
// xScale
var xScale = d3.scale.ordinal();
// yScale
var yScale = d3.scale.linear();
// Scale for yearBox
var yearBoxScale = d3.scale.linear();
// ### COLOR SCALES ###
// Color scale for trend chart
var purposeColor = d3.scale.ordinal().range(colorbrewer.Set1[5]);
// Scale for legend
var legendColor = d3.scale.linear().range([0,1]);
// Color scale for map
var mapColor = d3.scale.linear().range([0,1]);
// ### AXIS ###
var xAxis = d3.svg.axis().orient('bottom').innerTickSize(0);
var yAxis = d3.svg.axis().orient('left').ticks(4);
var xFocusAxis = d3.svg.axis().orient('bottom').innerTickSize(0).tickPadding(5);
var yFocusAxis = d3.svg.axis().orient('left').ticks(0);
// ### LINE ###
var line = d3.svg.line()
.x(function(d) { return xScale(d.year) + xScale.rangeBand() / 2; })
.y(function(d) { return yScale(d.value); });
// ### PROJECTIONS ###
var mapProjection = d3.geo.mercator()
.scale(105)
.translate([outerWidth/1.65, outerHeight/1.4]);
var mapPath = d3.geo.path().projection(mapProjection);
// UDACITY DAND - Data Visualisation - Giacomo Sarchioni
/*This JavaScript modules contains all the code for performing
administartive action on the Data Analyst Nanodegree - Data Visualisation project.*/
// Change class of a specific object
function utility_ChangeClass(object, className, boolean) {
d3.select(object).classed(className, boolean);
};
// Change class of all objects specified
function utility_ChangeClassAll(objects, className, boolean) {
d3.selectAll(objects).classed(className, boolean);
};
// Change comment text
function utility_ChangeComment(newText) {
// Remove existing text
chart.select('.comment').selectAll('text').remove();
newText = newText.split('<br>');
for (var i = 0; i < newText.length; i++) {
chart.select('.comment')
.append('text')
.text(newText[i])
.attr('transform', 'translate(0' + ',' + (i * 15) + ')')
.style("text-anchor", "start");
};
};
// Change axis label text
function utility_ChangeLabel(newText) {
chart.select('.label').text(newText);
};
// Change subtitle text
function utility_ChangeSubtitle(newText) {
chart.select('.subtitle').text(newText);
};
// InterpolateBlues
function utility_ColorMapInterpolate(value, legend = false) {
if(legend) {
return d3.interpolateBlues(legendColor(value));
} else {
return d3.interpolateBlues(mapColor(value));
};
};
function utility_FillButton(index) {
chart.selectAll('.button')
.style('fill', function(d, i) {
if(i==index) {
return '#666666';
} else {
return '#b2b2b2';
};
});
};
// Remove specific ojects from area
function utility_RemoveObjs(objects) {
area.selectAll(objects).remove();
};
Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"geometry": null, "type": "Feature", "properties": {"name": "Aruba"}}, {"geometry": {"type": "Polygon", "coordinates": [[[74.54140625000002, 37.02216796875], [72.62285156250002, 36.82958984375], [71.18505859375, 36.04208984375], [71.62050781250002, 35.183007812499994], [70.965625, 34.53037109375], [71.05156250000002, 34.049707031249994], [69.86806640625002, 33.89765625], [70.2841796875, 33.369042968749994], [69.5015625, 33.020068359374996], [69.279296875, 31.936816406249996], [68.86894531250002, 31.634228515624997], [68.21396484375, 31.807373046875], [67.28730468750001, 31.217822265624996], [66.39716796875001, 30.91220703125], [66.17705078125002, 29.835595703124994], [64.09873046875, 29.391943359375], [62.4765625, 29.408349609374994], [60.843359375, 29.858691406249996], [61.7841796875, 30.831933593749994], [61.66015625, 31.382421875], [60.854101562500006, 31.483251953125], [60.82929687500001, 32.249414062499994], [60.4859375, 33.7119140625], [60.48574218750002, 34.094775390624996], [61.080078125, 34.855615234374994], [61.3447265625, 35.6294921875], [62.61054687500001, 35.233154296875], [63.10859375000001, 35.818701171875], [64.184375, 36.14892578125], [64.81630859375002, 37.132080078125], [66.471875, 37.3447265625], [67.7, 37.22724609375], [68.06777343750002, 36.9498046875], [69.49208984375002, 37.553076171875], [69.9849609375, 37.566162109375], [70.41777343750002, 38.075439453125], [70.87890625, 38.456396484375], [71.55195312500001, 37.933154296874996], [71.530859375, 36.845117187499994], [71.665625, 36.696923828124994], [73.48134765625002, 37.4716796875], [74.25966796875002, 37.415429687499994], [74.54140625000002, 37.02216796875]]]}, "type": "Feature", "properties": {"name": "Afghanistan"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[17.57958984375, -8.099023437500009], [17.643359375000017, -8.090722656250009], [18.56269531250001, -7.9359375], [19.34082031249997, -7.966601562500031], [19.527636718750017, -7.144433593749952], [20.482226562500074, -6.915820312500017], [20.60781250000008, -7.277734375000023], [21.751074218750034, -7.305468749999989], [21.905371093750034, -8.693359374999943], [21.813183593750068, -9.46875], [22.30244140625001, -10.39667968750004], [22.203515625000023, -10.829492187500009], [22.226171875, -11.121972656250009], [23.83388671875008, -11.013671874999972], [23.96650390625001, -10.871777343750011], [23.909375, -12.636132812500009], [23.843164062500023, -13.0009765625], [22.209570312500006, -13.0009765625], [21.97890625000008, -13.0009765625], [21.97978515624999, -15.955566406250014], [22.15068359374999, -16.597167968749986], [23.380664062500017, -17.640625], [21.41689453125008, -18.00068359375001], [19.076464843750045, -17.81767578125003], [18.39638671875005, -17.3994140625], [16.531054687500074, -17.390820312500026], [13.93798828125, -17.388769531249963], [13.101171875000063, -16.967675781249966], [11.743066406250023, -17.24921875000004], [11.750878906250023, -15.831933593749966], [11.967871093750006, -15.63398437500004], [12.55048828125004, -13.437792968750003], [13.4169921875, -12.52041015624998], [13.785351562499983, -11.81279296874996], [13.847460937500045, -11.054394531249997], [12.99853515625, -9.048046875], [13.378515625000063, -8.369726562500006], [12.302539062500074, -6.092578124999989], [13.346484375000017, -5.863378906250006], [13.978515625, -5.857226562500003], [16.315234375000074, -5.865625], [16.71777343750003, -6.241406250000011], [16.98476562500005, -7.257421874999977], [17.57958984375, -8.099023437500009]]], [[[12.255273437500023, -5.74648437499999], [12.018359375000074, -5.004296874999966], [12.829687499999977, -4.73662109374996], [12.255273437500023, -5.74648437499999]]]]}, "type": "Feature", "properties": {"name": "Angola"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Anguilla"}}, {"geometry": {"type": "Polygon", "coordinates": [[[20.06396484375, 42.54726562499999], [20.566210937500017, 41.873681640624994], [20.48896484375001, 41.272607421874994], [20.964257812500023, 40.849902343749996], [20.95576171875001, 40.775292968749994], [20.881640625000017, 40.467919921874994], [20.4560546875, 40.065576171874994], [20.382421875, 39.802636718749994], [19.39814453125001, 40.28486328125], [19.342382812500006, 41.869091796875], [20.06396484375, 42.54726562499999]]]}, "type": "Feature", "properties": {"name": "Albania"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Aland"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Andorra"}}, {"geometry": {"type": "Polygon", "coordinates": [[[56.29785156250003, 25.650683593750045], [56.38798828125002, 24.97919921875004], [56.06386718750005, 24.73876953125], [55.1999023437501, 23.034765625000034], [55.185839843750074, 22.7041015625], [55.104296875000074, 22.621484375000023], [52.55507812500005, 22.932812499999955], [51.56835937500003, 24.286181640625074], [51.906054687500074, 23.98535156249997], [52.64824218750002, 24.154638671875006], [53.89335937500002, 24.077050781249994], [56.08046875, 26.06264648437505], [56.29785156250003, 25.650683593750045]]]}, "type": "Feature", "properties": {"name": "United Arab Emirates"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-68.65322265624994, -54.85361328124999], [-68.62993164062499, -52.65263671875004], [-68.00849609374995, -53.5640625], [-67.29423828125002, -54.049804687500014], [-65.34599609374993, -54.87792968749997], [-66.5111328125, -55.032128906249945], [-68.65322265624994, -54.85361328124999]]], [[[-61.084716796875, -23.65644531250001], [-59.89248046874994, -24.093554687499974], [-59.372949218749966, -24.45390625000003], [-57.82167968749994, -25.136425781249983], [-57.943115234375, -26.05292968750001], [-58.64174804687494, -27.196093750000017], [-56.437158203124966, -27.553808593749977], [-55.789990234374926, -27.416406249999966], [-54.934472656249994, -26.70253906250001], [-54.615869140624994, -25.576074218750023], [-53.89116210937499, -25.66884765625001], [-53.67128906249994, -26.22509765625], [-53.83818359375002, -27.121093750000014], [-54.82910156250003, -27.55058593750003], [-55.72548828125002, -28.20410156250003], [-57.60888671875003, -30.187792968750045], [-57.81059570312499, -30.85859375000001], [-58.18901367187499, -31.924218750000037], [-58.17099609374998, -32.95927734374996], [-58.54721679687498, -33.66347656249998], [-58.28334960937494, -34.68349609375005], [-57.303662109374926, -35.188476562499986], [-57.26499023437495, -36.14414062499999], [-56.67202148437494, -36.85126953124998], [-57.546972656250034, -38.085644531250026], [-58.17919921874994, -38.435839843750045], [-59.82832031250001, -38.83818359375003], [-61.112207031249994, -38.99296875000003], [-62.06689453125, -38.91914062500001], [-62.39501953124997, -40.89082031249997], [-63.77299804687493, -41.15], [-65.13339843749998, -40.88066406250003], [-65.05908203125003, -41.96992187499998], [-64.42041015625003, -42.43378906249998], [-63.59589843750001, -42.40654296875003], [-65.28359375000002, -43.62998046874996], [-65.63876953125, -45.0078125], [-66.94140625, -45.25732421875003], [-67.56337890624997, -46.34541015625001], [-66.77685546874994, -47.005859375], [-65.73808593749999, -47.34492187499998], [-65.81005859374997, -47.941113281250026], [-67.03310546875002, -48.627734375000024], [-67.68486328125002, -49.2466796875], [-67.78349609374996, -49.85888671875002], [-68.939453125, -50.382324218749986], [-69.23515625000002, -50.95058593750003], [-68.443359375, -52.35664062500004], [-69.96025390624993, -52.00820312500002], [-71.91865234374995, -51.98955078125004], [-72.40766601562501, -51.54082031250002], [-72.27631835937498, -50.910253906249984], [-73.15292968749998, -50.73828125000003], [-73.57626953124998, -49.582910156250016], [-72.61440429687494, -48.79287109375], [-72.517919921875, -47.87636718749998], [-71.90498046875001, -47.201660156250014], [-71.77265624999995, -45.724414062499974], [-71.21259765624998, -44.44121093750003], [-72.14643554687498, -42.990039062499974], [-71.76093749999998, -42.101464843749966], [-71.93212890624994, -40.69169921874999], [-71.42558593749996, -38.98564453125006], [-70.95161132812493, -38.73847656249997], [-71.16757812499998, -37.76230468749996], [-71.05551757812498, -36.52373046874996], [-70.40478515625, -36.06171874999998], [-70.47041015624995, -35.32617187499997], [-69.85244140625, -34.224316406250026], [-69.79775390624997, -33.398632812500026], [-70.585205078125, -31.569433593749963], [-70.16142578124999, -30.44023437499996], [-70.02680664062501, -29.324023437500017], [-69.65693359374995, -28.413574218749986], [-69.17441406249998, -27.924707031250037], [-68.84633789062494, -27.153710937499994], [-68.34599609374996, -27.02792968750005], [-68.56201171875, -24.83769531249996], [-68.25029296875002, -24.391992187500023], [-67.35620117187503, -24.033789062499963], [-67.00878906249994, -23.00136718750005], [-67.19487304687493, -22.821679687500037], [-66.99111328125, -22.509863281250006], [-66.09858398437495, -21.83505859375002], [-65.77104492187493, -22.099609375000014], [-64.60551757812499, -22.228808593750045], [-62.843359375, -21.997265625000026], [-61.798535156249955, -23.18203125], [-61.084716796875, -23.65644531250001]]]]}, "type": "Feature", "properties": {"name": "Argentina"}}, {"geometry": {"type": "Polygon", "coordinates": [[[46.490625, 38.90668945312498], [46.1144531250001, 38.877783203125034], [45.76630859375004, 39.37846679687499], [44.76826171875004, 39.70351562500005], [43.79169921875004, 40.07026367187498], [43.43945312500003, 41.10712890625001], [44.077246093750006, 41.182519531249994], [45.001367187499994, 41.29096679687498], [45.96464843750002, 40.233789062499966], [45.789648437500006, 39.88110351562497], [46.55, 39.20141601562497], [46.490625, 38.90668945312498]]]}, "type": "Feature", "properties": {"name": "Armenia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "American Samoa"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-159.05292968749995, -79.80742187499999], [-164.22578124999998, -79.32080078124997], [-163.25610351562497, -78.72207031250004], [-159.68408203125003, -79.40244140625], [-159.05292968749995, -79.80742187499999]]], [[[-45.22265625000003, -78.81074218749998], [-42.96538085937496, -79.47705078125001], [-43.527929687500006, -80.19140624999997], [-54.1625, -80.87011718749996], [-50.339257812499966, -79.47949218749997], [-50.21962890625002, -78.60527343750005], [-49.08125, -78.0474609375], [-46.82568359375003, -77.78525390624996], [-43.80859374999997, -78.28652343750004], [-45.22265625000003, -78.81074218749998]]], [[[-120.55625, -73.75605468750005], [-121.06240234374995, -74.3373046875], [-122.85908203124997, -74.34267578125002], [-123.112158203125, -73.68222656250002], [-120.55625, -73.75605468750005]]], [[[-98.09111328124999, -71.9125], [-95.609375, -72.06845703124998], [-96.0517578125, -72.57724609374998], [-98.40781250000003, -72.54765624999999], [-102.128125, -71.98544921875002], [-98.09111328124999, -71.9125]]], [[[-70.05112304687498, -69.1890625], [-68.33598632812496, -70.85605468749998], [-68.24101562499999, -71.82216796875007], [-69.209326171875, -72.5341796875], [-72.36748046874999, -72.66972656249999], [-71.10664062499998, -72.04707031250005], [-72.41220703124995, -71.66230468750001], [-73.89926757812495, -72.15234375], [-75.35307617187502, -71.87841796874997], [-74.18720703125001, -71.38300781250004], [-72.62158203124997, -71.38837890624998], [-71.19404296874995, -70.984765625], [-71.85361328125003, -69.96933593749998], [-71.86899414062495, -68.941015625], [-70.05112304687498, -69.1890625]]], [[[-57.020654296874994, -63.3728515625], [-58.26298828124996, -63.76337890624998], [-58.895458984374955, -64.38886718750004], [-59.963085937499926, -64.43134765625], [-62.14531249999999, -65.33173828125001], [-61.87543945312498, -66.29609375000001], [-63.752539062500034, -66.277734375], [-65.443115234375, -67.326171875], [-65.63950195312498, -68.13056640625001], [-63.455957031249994, -69.04189453125004], [-61.96108398437502, -70.12011718749997], [-61.96108398437502, -70.90058593749998], [-61.01723632812502, -71.16689453125005], [-60.38466796875002, -73.00732421875001], [-61.01079101562496, -74.47832031250002], [-63.92470703125002, -75.00449218750002], [-63.36337890624998, -75.45146484375005], [-71.79868164062503, -76.75273437500002], [-77.19003906249998, -76.62978515625002], [-75.38691406249998, -77.47421875], [-72.85195312500002, -77.59023437500002], [-80.15117187499999, -79.26806640624999], [-76.49912109375, -79.32568359375], [-75.23652343749998, -80.80263671874998], [-70.239111328125, -80.85664062499997], [-64.75014648437497, -81.52167968750001], [-65.91318359375003, -82.18320312500003], [-62.73564453124999, -82.52734374999999], [-61.58984374999997, -83.34121093750005], [-53.98608398437494, -82.20058593750002], [-48.360791015624955, -81.89228515625001], [-43.66933593749994, -82.27011718749998], [-41.43383789062497, -81.29775390625004], [-38.77172851562494, -80.88232421874996], [-25.258642578124977, -79.7625], [-29.949316406250006, -79.5990234375], [-36.23916015625002, -78.77421875], [-34.07578125, -77.425390625], [-28.933642578125017, -76.37031250000001], [-24.26958007812499, -75.76699218750002], [-19.493017578124977, -75.53994140625004], [-15.595996093749989, -73.09677734375003], [-14.320996093749926, -73.12304687499997], [-11.496972656249966, -72.41289062499997], [-9.887988281250017, -71.02734374999997], [-5.936328124999989, -70.71269531249999], [-5.950048828124949, -71.34160156250005], [-0.89584960937492, -71.34921875], [5.113085937500074, -70.6556640625], [8.523046875000034, -70.473828125], [9.141601562500028, -70.18369140625003], [11.701269531250034, -70.76660156249996], [12.92939453125004, -70.21337890624996], [18.124609375, -70.54033203125005], [19.26513671875003, -70.90234374999999], [22.97900390625, -70.81035156249999], [27.206835937500045, -70.91093750000005], [30.003320312499994, -70.3], [32.6212890625001, -70.00058593750003], [32.5675781250001, -69.07421874999997], [34.19287109374997, -68.70244140624999], [35.2248046875001, -69.6373046875], [37.55976562500004, -69.718359375], [38.85927734375005, -70.0060546875], [39.86386718750006, -68.96699218749997], [42.81953125000004, -68.12324218750003], [47.11718750000003, -67.57265625000002], [48.64804687500006, -67.79404296875], [49.24707031249997, -66.94160156249998], [51.88457031250002, -66.02001953125], [53.671777343749994, -65.85869140624999], [55.710351562499994, -66.07998046875005], [57.62744140625003, -67.0140625], [59.250781250000074, -67.48496093750002], [60.48203125, -67.38515625000002], [62.68789062500005, -67.64755859375], [63.699023437500074, -67.50830078124997], [68.32792968750002, -67.88955078125002], [69.41640625, -67.74296875], [69.98222656250002, -68.46425781250005], [69.6294921875, -69.23164062499997], [67.26796875, -70.27314453124997], [69.2501953125001, -70.4310546875], [68.03740234375002, -71.39101562499998], [66.89208984375003, -72.94863281250005], [69.55468750000003, -72.37451171874997], [71.27675781250005, -71.62392578125], [71.9048828125, -70.706640625], [73.94218750000002, -69.7431640625], [75.8912109375, -69.57558593750005], [77.81748046875012, -69.06894531250003], [78.7262695312501, -68.27783203124999], [82.0169921875, -67.69003906249996], [83.30429687500006, -67.60302734375], [84.48515625000002, -67.11445312500004], [85.71074218750002, -67.16132812499998], [87.98027343750002, -66.78847656250005], [89.69843750000004, -66.82304687499999], [92.0734375000001, -66.50791015625], [93.9642578125, -66.6896484375], [98.25761718750002, -66.46748046875004], [99.37011718749997, -66.64824218749999], [101.47441406250007, -65.951171875], [103.95117187499997, -65.98808593749997], [109.46279296875, -66.90869140625003], [110.90673828125003, -66.07666015625], [113.09941406250007, -65.79990234375], [115.31035156250007, -66.56083984375005], [115.27373046875007, -67.02792968749999], [118.13867187500003, -67.082421875], [119.1330078125001, -67.370703125], [123.96933593750006, -66.60810546874998], [125.865625, -66.36445312500001], [127.54121093750004, -67.05107421874999], [129.23691406250012, -67.04160156250002], [129.74121093749997, -66.46855468749999], [130.95175781250006, -66.19140625], [135.35195312500005, -66.12714843749998], [139.9000976562501, -66.71513671875005], [143.44824218749997, -66.87675781250002], [145.97519531250006, -67.62421874999997], [146.79765625000002, -68.27363281250001], [148.45625, -68.46699218749998], [151.06826171875, -68.38496093750005], [153.08183593750007, -68.8568359375], [154.19970703124997, -68.41787109375001], [155.52031250000007, -69.02441406250003], [159.78398437500007, -69.521875], [161.03701171875, -70.31718750000006], [162.67480468749997, -70.30458984374998], [167.56943359375006, -70.81025390624997], [170.1623046875001, -71.63046875], [169.54501953125012, -73.050390625], [167.61582031250012, -73.33681640625], [164.77568359375002, -74.02851562500004], [162.53359375000005, -75.16708984375], [162.76279296875012, -76.745703125], [164.42968749999997, -78.0421875], [166.20859375000012, -78.45166015625001], [160.48271484375002, -79.20146484375], [160.90781250000006, -81.39023437499996], [167.2326171875001, -82.95234374999997], [168.11005859375004, -83.36201171875003], [180.0, -84.35156250000001], [180.0, -89.99892578124998], [-180.0, -89.99892578124998], [-180.0, -89.58291015625005], [-180.0, -89.29296874999996], [-180.0, -88.58701171875002], [-180.0, -87.8810546875], [-180.0, -87.1751953125], [-180.0, -86.46933593749998], [-180.0, -85.76337890625004], [-180.0, -85.05751953125004], [-180.0, -84.35156250000001], [-171.70366210937493, -84.54238281249998], [-162.93339843749996, -84.90117187499999], [-164.95087890625, -83.80585937500004], [-159.44438476562496, -83.54316406249998], [-153.00986328125003, -82.44960937500005], [-153.95664062499998, -81.70019531249996], [-156.52822265624997, -81.16230468749998], [-148.12275390625004, -80.90078125], [-150.575390625, -80.35371093750001], [-148.17651367187497, -79.77587890624997], [-155.20991210937495, -78.96484375000003], [-158.50039062500002, -77.77832031249997], [-158.21357421875, -77.15712890625], [-154.81494140624997, -77.12695312499997], [-149.71772460937498, -77.79746093749996], [-145.96699218749995, -77.06875], [-146.38300781249998, -76.09970703125003], [-143.57426757812502, -75.56357421874996], [-141.50571289062503, -75.69042968749997], [-139.69116210937503, -75.21279296875], [-136.54951171875, -75.13945312499999], [-135.36206054687506, -74.69042968749999], [-129.79082031249993, -74.89140624999999], [-127.86337890625002, -74.71923828125], [-119.67700195312497, -74.65458984375005], [-118.34204101562496, -74.38154296875003], [-115.10517578125, -74.455078125], [-113.93183593749997, -74.98183593750002], [-106.61884765624994, -75.34394531249998], [-104.90185546875, -75.11513671875], [-98.55786132812494, -75.18974609375002], [-101.25170898437496, -74.48574218750002], [-102.67504882812503, -73.32089843750003], [-102.40927734374996, -72.98740234375003], [-98.01240234374993, -73.03320312499996], [-96.15214843749993, -73.30927734374998], [-90.29541015625003, -72.97792968749998], [-85.98076171874996, -73.20849609374997], [-82.18349609374997, -73.85683593749998], [-80.44223632812495, -72.94453125000001], [-77.13491210937494, -73.81767578124999], [-68.820947265625, -73.10546875000003], [-66.827734375, -72.0904296875], [-68.70795898437498, -69.43222656249998], [-67.37177734375001, -69.41230468750001], [-66.70498046874997, -67.52714843749999], [-67.49335937499998, -67.11279296874996], [-65.61728515624998, -66.13525390625003], [-64.06591796875003, -65.55371093750003], [-64.03803710937493, -65.17900390624999], [-61.63178710937498, -64.60468750000004], [-60.86416015625002, -64.0734375], [-57.38964843749994, -63.22626953124998], [-57.020654296874994, -63.3728515625]]]]}, "type": "Feature", "properties": {"name": "Antarctica"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Ashmore and Cartier Islands"}}, {"geometry": null, "type": "Feature", "properties": {"name": "French Southern and Antarctic Lands"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Antigua and Barbuda"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[145.04296875000003, -40.78671875], [146.31748046875006, -41.16347656250001], [148.29287109375, -40.947070312499974], [148.30146484375004, -42.03994140624995], [146.87392578125, -43.6125], [146.04316406250004, -43.547167968749974], [145.26816406250006, -42.54433593749995], [145.23818359375, -42.01962890624999], [144.64609375000006, -40.980859375], [145.04296875000003, -40.78671875]]], [[[143.17890625000004, -11.954492187499966], [143.75634765625003, -14.348828124999969], [144.473046875, -14.231835937500023], [145.28769531250006, -14.943164062499989], [145.42607421875002, -16.406152343749966], [146.12587890625005, -17.63525390625], [146.03222656249997, -18.272851562500037], [146.48115234375004, -19.07871093749999], [147.41855468750012, -19.378125], [147.915625, -19.86923828125002], [148.759375, -20.28955078125003], [149.70390625000002, -22.440527343750006], [150.07617187500003, -22.16445312499998], [150.76386718750004, -22.576171875000014], [150.84316406250005, -23.4580078125], [151.902734375, -24.200976562500017], [152.91347656250005, -25.432128906250014], [153.16494140625, -25.964160156250045], [153.11679687500006, -27.194433593750034], [153.57568359375003, -28.24052734374999], [153.03056640625002, -30.563378906249994], [152.94394531250012, -31.43486328124999], [152.4704101562501, -32.439062500000034], [151.812890625, -32.90107421875001], [150.96035156250005, -34.29707031250001], [150.69033203125, -35.177734375000014], [150.19531249999997, -35.83359374999996], [149.93271484375012, -37.528515625000026], [149.29843750000012, -37.802148437499994], [148.2625, -37.830664062500034], [146.8568359375, -38.663476562499966], [145.79082031250007, -38.66699218749997], [144.6652343750001, -38.20996093750003], [143.53896484375005, -38.82089843749998], [142.61210937500007, -38.451660156249986], [141.42421875, -38.36347656250004], [140.62724609375007, -38.02841796874999], [139.78427734375012, -37.24580078124998], [139.85732421875, -36.662109375], [139.03769531250006, -35.68925781249996], [138.184375, -35.612695312499994], [138.5111328125, -35.02441406249996], [138.0892578125, -34.16982421875002], [137.49384765625004, -34.16113281250003], [137.23730468750003, -33.62949218749999], [136.43066406249997, -34.02998046875004], [135.64755859375006, -34.93964843750001], [134.79101562499997, -33.32832031250001], [134.30126953124997, -33.16503906249996], [134.23417968750007, -32.54853515625004], [132.75742187500012, -31.95625], [132.21464843750002, -32.00712890624996], [131.14365234375006, -31.49570312500005], [128.94619140625, -31.702636718750014], [127.31982421874997, -32.2640625], [125.91718750000004, -32.296972656250034], [124.12607421875006, -33.129394531249986], [123.65039062499997, -33.83632812500002], [121.40507812500007, -33.826757812500034], [119.85410156250012, -33.97470703124998], [118.13554687500002, -34.98662109374999], [116.51718750000012, -34.98789062499998], [115.00878906250003, -34.25585937499997], [115.18164062499997, -33.643457031249994], [115.68300781250005, -33.19287109375003], [115.6984375000001, -31.694531250000054], [115.17685546875006, -30.80800781250001], [114.95898437499997, -29.433593749999957], [114.16513671875012, -28.08066406250002], [114.028125, -27.34726562499999], [113.58164062500006, -26.558105468749986], [113.539453125, -25.625195312499997], [114.2142578125, -25.851562500000014], [113.41767578125004, -24.435644531250034], [113.7570312500001, -23.418164062500054], [113.68281250000004, -22.637792968749963], [114.37773437500007, -22.341503906249997], [114.85908203125004, -21.7359375], [115.45615234375012, -21.49169921874997], [116.7067382812501, -20.653808593749986], [117.40625, -20.72119140625003], [119.10449218749997, -19.995312500000026], [119.58593750000003, -20.03828125], [120.87841796874997, -19.665039062499986], [121.49355468750005, -19.106445312499957], [122.23740234375006, -17.968554687500045], [122.16025390625006, -17.313671875000026], [122.97070312499997, -16.436816406250003], [123.52519531250007, -17.485742187499994], [123.778125, -16.867773437499963], [123.4904296875001, -16.49072265624997], [124.5768554687501, -16.11367187499998], [124.38164062500002, -15.758203125000037], [125.17871093749997, -14.714746093749994], [126.90322265625, -13.744140624999972], [127.67285156249997, -14.195117187500003], [128.19941406250004, -14.751757812499989], [129.45898437499997, -14.933203125], [129.37871093750002, -14.39248046874998], [130.1681640625001, -12.957421875], [130.67236328124997, -12.40693359375004], [132.37207031250003, -12.239160156249966], [132.6828125000001, -11.505566406249997], [134.73027343750002, -11.984375], [135.2179687500001, -12.221679687499957], [135.7884765625, -11.907031249999974], [136.5402343750001, -11.957617187499977], [136.94746093750004, -12.34990234374996], [136.59433593750012, -13.003808593750051], [135.92734375000012, -13.304296874999977], [135.88339843750006, -14.153125], [135.53076171874997, -15.000390625000023], [136.78466796874997, -15.89423828125004], [137.70371093750006, -16.233007812499963], [138.24501953125005, -16.718359374999977], [139.00986328125006, -16.899316406249994], [139.2484375, -17.328613281249957], [140.03583984375004, -17.702636718749957], [140.83046875, -17.414453125000037], [141.21914062500005, -16.646191406250026], [141.62548828124997, -15.056640625000014], [141.47255859375, -13.797558593750011], [141.67773437500003, -12.491406250000011], [142.168359375, -10.946582031249974], [142.45644531250005, -10.707324218749989], [143.17890625000004, -11.954492187499966]]]]}, "type": "Feature", "properties": {"name": "Australia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[16.953125, 48.598828125], [17.147363281250023, 48.00595703125], [16.093066406250017, 46.86328125], [14.503515625, 46.417041015624996], [13.7, 46.520263671875], [12.38828125, 46.70263671875], [11.775683593750017, 46.986083984375], [10.452832031250011, 46.86494140625], [9.580273437500011, 47.057373046875], [9.527539062500011, 47.270751953125], [9.524023437500006, 47.52421875], [11.297949218750006, 47.42490234375], [12.685839843750017, 47.669335937499994], [13.215234375000023, 48.301904296874994], [13.814746093750017, 48.766943359375], [14.97216796875, 48.983935546874996], [16.953125, 48.598828125]]]}, "type": "Feature", "properties": {"name": "Austria"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[46.1144531250001, 38.877783203125034], [45.4796875000001, 39.00625], [44.81718750000002, 39.65043945312496], [44.76826171875004, 39.70351562500005], [45.76630859375004, 39.37846679687499], [46.1144531250001, 38.877783203125034]]], [[[48.572851562500006, 41.84448242187503], [49.77597656250006, 40.583984375], [49.013476562500074, 39.13398437500001], [48.86875, 38.43549804687498], [48.59267578125005, 38.41108398437498], [47.772851562499994, 39.64858398437505], [46.490625, 38.90668945312498], [46.55, 39.20141601562497], [45.789648437500006, 39.88110351562497], [45.96464843750002, 40.233789062499966], [45.001367187499994, 41.29096679687498], [46.086523437500006, 41.183837890625], [46.43095703125002, 41.077050781249994], [46.30546875000002, 41.507714843749994], [46.42988281250004, 41.890966796875006], [47.26113281250005, 41.315087890624994], [47.861132812500074, 41.212744140625034], [48.572851562500006, 41.84448242187503]]]]}, "type": "Feature", "properties": {"name": "Azerbaijan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[30.553613281250023, -2.400097656250011], [30.811132812500006, -3.116406250000011], [30.4, -3.65390625], [29.7177734375, -4.455859375], [29.403222656250023, -4.449316406250006], [29.224414062500017, -3.053515625], [29.01435546875001, -2.72021484375], [29.8681640625, -2.71640625], [30.553613281250023, -2.400097656250011]]]}, "type": "Feature", "properties": {"name": "Burundi"}}, {"geometry": {"type": "Polygon", "coordinates": [[[5.693554687500011, 50.774755859375006], [5.993945312500017, 50.75043945312504], [6.116503906250045, 50.120996093749966], [5.789746093749983, 49.53828125000001], [2.839746093750023, 50.71176757812498], [2.52490234375, 51.097119140624955], [3.35009765625, 51.37768554687503], [4.226171875000034, 51.38647460937503], [5.827148437500057, 51.125634765624994], [5.693554687500011, 50.774755859375006]]]}, "type": "Feature", "properties": {"name": "Belgium"}}, {"geometry": {"type": "Polygon", "coordinates": [[[3.595410156250011, 11.6962890625], [3.71640625, 11.07958984375], [3.7568359375, 10.76875], [3.83447265625, 10.607421875], [3.646582031250006, 10.408984374999989], [2.703125, 8.371826171875], [2.706445312500023, 6.369238281249991], [1.62265625, 6.216796875], [1.600195312500006, 9.050048828125], [1.330078125, 9.996972656249994], [0.779980468750011, 10.359570312499997], [0.900488281250006, 10.993261718749991], [1.4267578125, 11.447119140624991], [1.980371093750023, 11.418408203124997], [2.38916015625, 11.897070312499991], [2.878125, 12.367724609374989], [3.595410156250011, 11.6962890625]]]}, "type": "Feature", "properties": {"name": "Benin"}}, {"geometry": {"type": "Polygon", "coordinates": [[[0.217480468750011, 14.911474609374991], [0.163867187500017, 14.497216796874994], [0.9873046875, 13.041894531249994], [1.56494140625, 12.635400390624994], [2.073828125, 12.713964843749991], [2.38916015625, 11.897070312499991], [1.980371093750023, 11.418408203124997], [1.4267578125, 11.447119140624991], [0.900488281250006, 10.993261718749991], [-0.068603515625, 11.115625], [-0.701416015625, 10.988964843749997], [-2.829931640624977, 10.998388671874991], [-2.695849609374989, 9.481347656249994], [-3.223535156249994, 9.895458984374997], [-4.18115234375, 9.78173828125], [-4.969921874999983, 9.93007812499999], [-5.262304687499977, 10.319677734374991], [-5.523535156249977, 10.426025390625], [-5.288134765624989, 11.827929687499989], [-4.4287109375, 12.337597656249997], [-4.328710937499977, 13.119042968749994], [-3.575781249999977, 13.194189453124991], [-2.457226562499983, 14.274121093749997], [-0.760449218749983, 15.047753906249994], [0.217480468750011, 14.911474609374991]]]}, "type": "Feature", "properties": {"name": "Burkina Faso"}}, {"geometry": {"type": "Polygon", "coordinates": [[[88.94072265625002, 26.24536132812497], [88.97041015625004, 26.250878906250023], [88.95195312500002, 26.412109375], [89.01865234375012, 26.410253906249977], [89.57275390625003, 26.13232421875003], [89.82490234375004, 25.56015625], [89.80087890625012, 25.33613281250001], [89.81406250000006, 25.305371093749955], [89.86630859375012, 25.293164062499955], [90.11962890625003, 25.21997070312497], [90.61308593750002, 25.16772460937497], [92.04970703125005, 25.16948242187499], [92.38496093750004, 24.848779296875023], [92.22666015625012, 24.77099609374997], [92.11748046875002, 24.493945312500017], [92.06416015625004, 24.374365234375006], [91.72656250000003, 24.20507812499997], [91.35019531250012, 24.06049804687501], [91.359375, 23.06835937500003], [91.43623046875004, 23.19990234375001], [91.75097656250003, 23.053515625000017], [92.04404296875006, 23.677783203125017], [92.33378906250002, 23.242382812499955], [92.36162109375002, 22.929003906250074], [92.46445312500006, 22.734423828125045], [92.49140625000004, 22.685400390625006], [92.5612304687501, 22.04804687500001], [92.57490234375004, 21.978076171875045], [92.32412109375, 20.791845703125063], [91.48212890625004, 22.79741210937499], [90.94560546875002, 22.597021484375034], [90.15878906250012, 21.816845703124983], [89.09394531250004, 21.872753906249983], [89.05, 22.274609374999983], [88.92070312500002, 22.632031249999955], [88.89970703125002, 22.843505859375057], [88.72441406250002, 23.254980468750034], [88.69765625, 23.493017578125034], [88.49853515625003, 24.34663085937504], [88.3375, 24.45385742187503], [88.225, 24.460644531249983], [88.14550781250003, 24.485791015624955], [88.57382812500006, 25.18789062499999], [88.92978515625012, 25.222998046875063], [88.94414062500002, 25.290771484375], [88.85478515625002, 25.333544921875017], [88.76914062500006, 25.490478515625], [88.14746093749997, 25.811425781250023], [88.1066406250001, 25.841113281250045], [88.33398437499997, 26.257519531249955], [88.44042968749997, 26.369482421875034], [88.38623046875003, 26.471533203125034], [88.35146484375005, 26.482568359374966], [88.68281250000004, 26.291699218749983], [88.94072265625002, 26.24536132812497]]]}, "type": "Feature", "properties": {"name": "Bangladesh"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.585351562500023, 43.742236328124996], [27.92890625000001, 43.1861328125], [27.294921875, 42.079541015625], [26.549707031250023, 41.896728515625], [26.155175781250023, 41.434863281249996], [25.25117187500001, 41.243554687499994], [24.056054687500023, 41.527246093749994], [22.916015625, 41.336279296875], [23.005664062500017, 41.716943359374994], [22.344042968750017, 42.31396484375], [22.799902343750006, 42.985742187499994], [22.420800781250023, 44.007421875], [22.705078125, 44.23779296875], [23.224609375, 43.873876953125], [25.4970703125, 43.670800781249994], [27.0869140625, 44.167382812499994], [28.585351562500023, 43.742236328124996]]]}, "type": "Feature", "properties": {"name": "Bulgaria"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Bahrain"}}, {"geometry": null, "type": "Feature", "properties": {"name": "The Bahamas"}}, {"geometry": {"type": "Polygon", "coordinates": [[[19.007128906250045, 44.86918945312502], [19.583789062500017, 44.04345703125003], [19.19433593749997, 43.533300781250006], [18.46601562500001, 42.777246093749994], [18.436328125000017, 42.559716796874994], [17.667578125000063, 42.897119140624994], [17.585156250000068, 42.93837890625005], [15.736621093750045, 44.76582031250001], [16.53066406250008, 45.21669921875002], [18.66259765625, 45.07744140624999], [19.007128906250045, 44.86918945312502]]]}, "type": "Feature", "properties": {"name": "Bosnia and Herzegovina"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Saint Barthelemy"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.14794921875, 56.142919921875], [28.284277343750006, 56.055908203125], [30.625585937500006, 55.666259765625], [31.754199218750017, 53.81044921875], [32.45097656250002, 53.6533203125], [31.849707031250006, 53.106201171875], [31.585546875, 52.532470703125], [30.449511718750017, 51.274316406249994], [29.135644531250023, 51.61728515625], [27.689746093750017, 51.572412109374994], [25.785742187500006, 51.923828125], [24.361914062500006, 51.867529296875], [23.61376953125, 51.525390625], [23.605273437500017, 51.517919921875], [23.8447265625, 52.664208984375], [23.484667968750017, 53.939794921875], [25.573046875000017, 54.139892578125], [25.859277343750023, 54.919287109375], [26.593554687500017, 55.667529296874996], [28.14794921875, 56.142919921875]]]}, "type": "Feature", "properties": {"name": "Belarus"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-89.2328125, 15.888671875], [-89.16147460937503, 17.81484375], [-88.29565429687494, 18.47241210937503], [-88.31342773437501, 16.632763671874983], [-88.89404296875, 15.890625], [-89.2328125, 15.888671875]]]}, "type": "Feature", "properties": {"name": "Belize"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Bermuda"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-58.15976562499999, -20.164648437500006], [-58.18017578125, -19.81787109375], [-59.09052734375, -19.286230468750006], [-60.00737304687499, -19.29755859375001], [-61.7568359375, -19.6453125], [-62.276318359375, -20.5625], [-62.65097656249999, -22.233691406250003], [-62.84335937499999, -21.99726562500001], [-64.60551757812499, -22.228808593750003], [-65.77104492187499, -22.099609375], [-66.098583984375, -21.835058593750006], [-66.99111328125, -22.509863281250006], [-67.87944335937499, -22.82294921875001], [-68.197021484375, -21.30029296875], [-68.75932617187499, -20.115527343750003], [-68.462890625, -19.43281250000001], [-68.96831054687499, -18.96796875000001], [-69.0939453125, -18.05048828125001], [-69.5109375, -17.50605468750001], [-69.62485351562499, -17.2001953125], [-69.020703125, -16.6421875], [-69.41850585937499, -15.603417968750009], [-69.37470703125, -14.962988281250006], [-68.880322265625, -14.198828125], [-69.07412109375, -13.682812500000011], [-68.97861328124999, -12.880078125000011], [-68.68525390625, -12.501953125], [-69.57861328125, -10.951757812500006], [-68.678369140625, -11.11279296875], [-66.72998046875, -9.975488281250009], [-65.396142578125, -9.71240234375], [-65.389892578125, -11.246289062500011], [-64.99252929687499, -11.975195312500006], [-64.42050781249999, -12.439746093750003], [-63.06748046874999, -12.669140625000011], [-61.789941406249994, -13.525585937500011], [-61.07700195312499, -13.48974609375], [-60.506591796875, -13.78984375], [-60.372705078124994, -14.41875], [-60.17558593749999, -16.269335937500003], [-58.53793945312499, -16.328222656250006], [-58.39599609375, -17.23427734375001], [-57.832470703125, -17.512109375], [-57.57402343749999, -18.279296875], [-58.131494140624994, -19.74453125], [-58.15976562499999, -20.164648437500006]]]}, "type": "Feature", "properties": {"name": "Bolivia"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-49.62866210937497, -0.229199218749969], [-48.37968749999999, -0.352832031250017], [-48.928906249999955, -1.482324218749994], [-50.50761718749999, -1.787988281250009], [-50.759765625, -1.240234374999972], [-50.6455078125, -0.27285156249998], [-49.62866210937497, -0.229199218749969]]], [[[-59.69970703125, 4.353515625], [-59.854394531249994, 3.5875], [-59.99433593749998, 2.689990234375031], [-59.75620117187498, 1.900634765624972], [-58.8625, 1.203613281249986], [-58.34067382812498, 1.587548828125051], [-57.03759765625, 1.936474609374997], [-56.96953124999999, 1.91640625], [-56.019921874999966, 1.842236328124983], [-56.12939453124997, 2.299511718749969], [-55.005810546874955, 2.592968749999983], [-54.61625976562499, 2.326757812500006], [-52.70063476562501, 2.36367187499998], [-51.990625, 3.702001953124963], [-51.65253906249998, 4.061279296874972], [-51.219921874999955, 4.093603515624991], [-50.65893554687497, 2.130957031250006], [-49.957128906250006, 1.65986328125004], [-49.898876953124955, 1.16298828124998], [-50.81635742187498, 0.172558593749997], [-51.28291015625001, -0.085205078125028], [-51.70263671874997, -0.762304687499949], [-51.94755859374996, -1.586718749999946], [-50.917871093749966, -1.115234375], [-50.40322265625002, -2.015527343750009], [-48.99130859374998, -1.829785156249997], [-48.11508789062498, -0.7375], [-46.81123046875001, -0.779687500000023], [-44.651269531249966, -1.745800781250026], [-44.30815429687496, -2.53515625], [-42.93671874999998, -2.465039062500011], [-42.24960937499998, -2.7919921875], [-41.318212890625034, -2.936230468749997], [-39.96469726562498, -2.861523437499955], [-38.475781249999955, -3.717480468749997], [-37.174658203125006, -4.912402343749974], [-35.549414062500006, -5.129394531249957], [-35.235449218750006, -5.56669921874996], [-34.80546874999999, -7.288378906249974], [-34.83466796874998, -7.97148437499996], [-35.34086914062499, -9.230664062499983], [-36.39833984374994, -10.484082031249983], [-36.93779296874999, -10.820410156250034], [-38.23974609375003, -12.844238281249957], [-38.787988281249966, -12.782714843750028], [-39.08935546875, -13.588183593749989], [-38.88061523437503, -15.864257812499972], [-39.215234374999966, -17.315820312500023], [-39.73979492187499, -18.639843750000026], [-39.69985351562502, -19.27783203124997], [-40.39594726562501, -20.56943359375002], [-40.78925781250001, -20.90605468750003], [-41.122509765624955, -22.084375], [-41.70551757812498, -22.30966796874999], [-42.042382812499966, -22.947070312500003], [-44.63725585937496, -23.05546875], [-45.423291015624955, -23.68535156250003], [-46.86728515624998, -24.236328125000014], [-47.87656249999998, -24.99746093750001], [-48.54516601562503, -25.815917968750043], [-48.55415039062498, -27.195996093749997], [-48.799658203125006, -28.575292968749977], [-49.745996093749966, -29.363183593749994], [-50.299511718749955, -30.42578125000003], [-51.15727539062499, -30.364257812500014], [-51.46367187499996, -31.052636718750023], [-51.97246093749999, -31.383789062499986], [-52.12739257812501, -32.1677734375], [-52.652246093749994, -33.137792968750006], [-53.76171875, -32.05683593749997], [-54.58764648437503, -31.48515625000003], [-55.87368164062502, -31.069628906250017], [-56.4072265625, -30.44746093750001], [-56.83271484374998, -30.107226562499974], [-57.60888671875003, -30.187792968750045], [-55.72548828125002, -28.20410156250003], [-54.82910156250003, -27.55058593750003], [-53.83818359375002, -27.121093750000014], [-53.67128906249994, -26.22509765625], [-53.89116210937499, -25.66884765625001], [-54.615869140624994, -25.576074218750023], [-54.281005859375, -24.30605468750001], [-54.62548828125, -23.8125], [-55.366308593750034, -23.99101562499996], [-55.84916992187499, -22.307617187500014], [-56.77519531249999, -22.261328125], [-57.82031250000003, -22.142285156249997], [-57.94267578124999, -21.79833984375], [-57.830224609374994, -20.99794921875001], [-58.131494140624994, -19.74453125], [-57.57402343749993, -18.279296875000014], [-57.83247070312501, -17.512109375000037], [-58.39599609374997, -17.234277343750023], [-58.537939453125034, -16.32822265624999], [-60.17558593749996, -16.26933593749999], [-60.372705078124994, -14.41875], [-60.506591796875, -13.78984375], [-61.077001953125034, -13.489746093750014], [-61.789941406249966, -13.525585937500026], [-63.067480468750006, -12.669140624999983], [-64.42050781249995, -12.439746093749974], [-64.99252929687498, -11.975195312500006], [-65.389892578125, -11.246289062500011], [-65.39614257812494, -9.712402343749986], [-66.72998046875, -9.975488281250023], [-68.678369140625, -11.11279296875], [-69.228515625, -10.955664062499963], [-70.642333984375, -11.010253906249986], [-70.59916992187499, -9.620507812500009], [-71.11528320312499, -9.852441406250009], [-72.18159179687495, -10.003710937500003], [-72.37905273437497, -9.51015625], [-72.97402343750002, -8.9931640625], [-74.00205078125003, -7.556054687499966], [-73.79301757812499, -7.135058593750003], [-73.75810546874999, -6.90576171875], [-73.137353515625, -6.4658203125], [-73.23554687500001, -6.098437500000017], [-72.88706054687498, -5.122753906250026], [-71.8447265625, -4.504394531249986], [-70.79951171874995, -4.173339843749957], [-69.96591796875003, -4.2359375], [-69.40024414062498, -1.194921874999977], [-69.66748046874997, -0.482421874999957], [-70.07050781249993, -0.13886718750004], [-69.84858398437493, 1.708740234375043], [-68.17656249999999, 1.719824218749991], [-67.35195312499997, 2.085839843750051], [-66.87602539062499, 1.223046875000037], [-66.42924804687502, 0.82167968749998], [-65.10375976562497, 1.108105468749983], [-64.11484375000003, 1.619287109375037], [-63.924169921875006, 2.452441406250031], [-64.22109375000002, 3.587402343749972], [-63.29472656249993, 3.92226562499998], [-62.153125, 4.098388671874986], [-61.00283203125002, 4.535253906249991], [-60.742138671874926, 5.202050781250037], [-59.990673828124955, 5.082861328124991], [-59.69970703125, 4.353515625]]]]}, "type": "Feature", "properties": {"name": "Brazil"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Barbados"}}, {"geometry": {"type": "Polygon", "coordinates": [[[115.02675781250005, 4.899707031249989], [114.60830078125005, 4.023974609375017], [114.0638671875, 4.592675781249966], [115.02675781250005, 4.899707031249989]]]}, "type": "Feature", "properties": {"name": "Brunei"}}, {"geometry": {"type": "Polygon", "coordinates": [[[91.63193359375003, 27.759960937499997], [92.08339843750002, 27.290625], [91.99833984374999, 26.85498046875], [89.76386718750001, 26.7015625], [88.73876953125, 27.175585937499996], [89.53691406249999, 28.107421875], [91.60556640625003, 27.951708984374996], [91.63193359375003, 27.759960937499997]]]}, "type": "Feature", "properties": {"name": "Bhutan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[25.2587890625, -17.793554687500006], [26.168066406250006, -19.53828125000001], [27.699609375000023, -20.53066406250001], [27.66943359375, -21.064257812500003], [28.04560546875001, -21.573046875], [29.03730468750001, -21.811328125], [29.36484375, -22.193945312500006], [28.21015625000001, -22.693652343750003], [27.812597656250006, -23.108007812500006], [27.7685546875, -23.14892578125], [26.98701171875001, -23.70458984375], [26.835058593750006, -24.240820312500006], [25.912109375, -24.74746093750001], [25.518164062500006, -25.66279296875001], [24.748144531250006, -25.8173828125], [23.148730468750017, -25.288671875], [22.640234375, -26.07119140625001], [21.646289062500017, -26.85419921875001], [20.641406250000017, -26.7421875], [20.79316406250001, -25.915625], [20.34521484375, -25.029882812500006], [19.98046875, -24.77675781250001], [19.977343750000017, -22.00019531250001], [20.970996093750017, -22.00019531250001], [20.97412109375, -18.31884765625], [23.298632812500017, -18.02734375], [23.58056640625, -18.452929687500003], [24.358984375, -17.97822265625001], [25.2587890625, -17.793554687500006]]]}, "type": "Feature", "properties": {"name": "Botswana"}}, {"geometry": {"type": "Polygon", "coordinates": [[[22.86005859375001, 10.919677734375], [23.646289062500017, 9.822900390624994], [23.53730468750001, 8.815820312499994], [24.147363281250023, 8.665625], [24.853320312500017, 8.137548828124991], [25.380664062500017, 7.333398437499994], [26.36181640625, 6.635302734374989], [26.514257812500006, 6.069238281249994], [27.083398437500023, 5.77685546875], [27.4033203125, 5.109179687499989], [26.822070312500017, 5.062402343749994], [25.52509765625001, 5.31210937499999], [25.249316406250017, 5.024560546874994], [24.31982421875, 4.994140625], [23.41718750000001, 4.663134765624989], [22.755761718750023, 4.646679687499997], [22.422167968750017, 4.134960937499997], [20.55810546875, 4.462695312499989], [19.5009765625, 5.127490234374989], [18.567480468750006, 4.257568359375], [18.6103515625, 3.478417968749994], [17.43798828125, 3.684619140624989], [16.67333984375, 3.535205078124989], [16.183398437500017, 2.270068359374989], [16.0634765625, 2.90859375], [15.128710937500017, 3.826904296875], [14.708984375, 4.665576171874989], [14.616894531250011, 5.865136718749994], [15.480078125, 7.523779296874991], [16.784765625, 7.550976562499997], [17.6494140625, 7.98359375], [18.455078125, 8.032031249999989], [19.108691406250017, 8.656152343749994], [19.1455078125, 9.015966796874991], [20.342089843750017, 9.127099609374994], [20.773242187500017, 9.405664062499994], [22.49384765625001, 10.996240234374994], [22.86005859375001, 10.919677734375]]]}, "type": "Feature", "properties": {"name": "Central African Republic"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-74.70888671874997, 45.0038574218751], [-73.55810546875, 45.425097656250045], [-73.1595703125, 46.01005859375002], [-71.90092773437499, 46.63193359375006], [-70.51948242187501, 47.032519531250045], [-68.987060546875, 48.275], [-66.17817382812493, 49.21313476562503], [-64.83632812499994, 49.191748046875006], [-64.253759765625, 48.550390625], [-65.259423828125, 48.02124023437503], [-64.70322265625, 47.72485351562503], [-65.31889648437502, 47.101220703124994], [-64.54150390625, 46.240332031250034], [-63.29277343749999, 45.751953125], [-61.955517578124955, 45.86816406249997], [-61.28378906249998, 45.23549804687505], [-63.761132812499994, 44.486425781250034], [-64.28608398437493, 44.55034179687499], [-64.86235351562499, 43.867871093749955], [-65.73813476562498, 43.56074218750001], [-66.09956054687498, 44.367480468750045], [-64.44882812499995, 45.256054687499955], [-64.89790039062495, 45.6259765625], [-65.88447265624995, 45.22290039062506], [-67.12485351562498, 45.16943359375], [-67.78466796875, 45.70170898437499], [-67.806787109375, 47.08281249999999], [-69.24287109374998, 47.46298828124998], [-70.00771484375002, 46.70893554687501], [-70.296240234375, 45.90610351562506], [-71.51752929687495, 45.00756835937497], [-74.663232421875, 45.00390625000003], [-74.70888671874997, 45.0038574218751]]], [[[-127.19731445312495, 50.640380859375], [-125.48208007812501, 50.316796874999966], [-124.64287109375002, 49.428662109374955], [-123.99580078125, 49.22402343750002], [-123.49702148437498, 48.58208007812499], [-124.689404296875, 48.597314453124966], [-126.54853515625003, 49.41894531250003], [-128.267431640625, 50.609277343749966], [-127.19731445312495, 50.640380859375]]], [[[-55.45874023437494, 51.53652343750005], [-56.693994140624966, 50.059667968750006], [-55.02617187500002, 49.30537109374998], [-53.957714843749955, 49.44184570312498], [-53.53120117187501, 48.231884765624955], [-52.653662109375034, 47.549414062500006], [-53.06977539062498, 46.68125], [-54.173730468749994, 46.88037109375003], [-54.856640624999955, 47.385009765625], [-56.22128906249995, 47.67138671874997], [-56.95249023437498, 47.57446289062506], [-59.36240234374995, 47.865673828124955], [-58.01582031249998, 49.54248046874997], [-56.75019531249998, 51.27490234375003], [-55.45874023437494, 51.53652343750005]]], [[[-132.65551757812503, 54.12749023437496], [-131.70253906250002, 53.98637695312499], [-132.01132812499998, 53.26518554687496], [-132.747509765625, 53.310498046874955], [-132.65551757812503, 54.12749023437496]]], [[[-84.91962890624995, 65.26108398437503], [-83.40712890625002, 65.10390625], [-82.05, 64.64428710937506], [-81.71611328124996, 64.021875], [-83.49433593749993, 64.09921875000003], [-84.63291015625, 63.30922851562502], [-85.49550781249997, 63.13911132812501], [-86.37426757812503, 64.56582031249997], [-85.96166992187497, 65.704248046875], [-84.91962890624995, 65.26108398437503]]], [[[-75.67587890624998, 68.32250976562506], [-75.12729492187503, 67.53730468749995], [-77.0048828125, 67.26694335937503], [-76.740234375, 68.23125], [-75.67587890624998, 68.32250976562506]]], [[[-97.439453125, 69.64267578125006], [-95.68564453125003, 68.73583984375006], [-97.47202148437498, 68.543701171875], [-99.56406249999995, 69.03413085937498], [-97.439453125, 69.64267578125006]]], [[[-74.70888671874997, 45.0038574218751], [-74.76245117187494, 44.99907226562502], [-74.99614257812496, 44.970117187499966], [-75.40126953124997, 44.77226562499999], [-75.81933593749997, 44.468017578125], [-76.18579101562503, 44.24223632812502], [-76.819970703125, 43.62880859375011], [-78.72041015624993, 43.62495117187501], [-79.066064453125, 43.10610351562502], [-79.02617187499996, 43.01733398437506], [-78.98076171874993, 42.98061523437502], [-78.91508789062496, 42.90913085937504], [-79.17373046875, 42.74853515625], [-81.02822265624997, 42.247167968750006], [-81.50732421874997, 42.10346679687504], [-81.97416992187496, 41.88872070312499], [-82.69003906249995, 41.675195312499994], [-83.10952148437497, 42.25068359375001], [-82.54531249999997, 42.62470703124998], [-82.19038085937495, 43.47407226562501], [-82.137841796875, 43.570898437500034], [-82.48505859374993, 45.08374023437503], [-82.91933593749994, 45.51796875000002], [-83.59267578125, 45.81713867187506], [-83.61596679687503, 46.116845703124994], [-84.12319335937497, 46.50292968749997], [-84.44047851562496, 46.49814453125006], [-84.66577148437503, 46.54326171875002], [-84.87597656249994, 46.89990234375003], [-85.07006835937497, 46.97993164062498], [-85.65224609375, 47.21997070312503], [-86.67216796874996, 47.636425781249955], [-87.20800781249997, 47.848486328125006], [-87.74389648437497, 48.06054687500003], [-88.37817382812497, 48.30307617187506], [-89.45566406249992, 47.99624023437508], [-90.79731445312495, 48.13105468750001], [-91.38720703124997, 48.05854492187498], [-92.00517578125002, 48.301855468750006], [-92.3484375, 48.276611328125], [-92.41459960937493, 48.276611328125], [-92.50058593749995, 48.43535156250002], [-92.83671875, 48.567773437499994], [-93.25795898437497, 48.62885742187501], [-93.37788085937498, 48.61655273437498], [-93.85161132812496, 48.607275390625034], [-94.71279296874997, 48.863427734374994], [-94.80346679687497, 49.0029296875], [-94.86040039062493, 49.258593750000045], [-94.85434570312495, 49.304589843749994], [-95.16206054687493, 48.991748046875045], [-95.39790039062493, 48.99316406249997], [-96.25068359374993, 48.99316406249997], [-96.67705078124993, 48.99316406249997], [-97.52983398437493, 48.99316406249997], [-98.80898437499995, 48.99316406249997], [-102.64643554687497, 48.993115234375125], [-107.76298828124989, 48.993115234375125], [-111.17407226562491, 48.993066406250136], [-113.73237304687493, 48.993066406250136], [-117.56977539062493, 48.993066406250136], [-123.04921875, 48.993017578125034], [-124.78237304687492, 50.02011718749992], [-125.05668945312495, 50.418652343750125], [-126.4044921875, 50.529882812500034], [-127.70810546875, 51.15117187499996], [-128.3576171875, 52.1588867187501], [-128.1087890624999, 52.85805664062508], [-128.6523437499999, 53.24384765624998], [-129.56372070312506, 53.251464843750114], [-130.33525390625002, 53.723925781250074], [-130.4302734375, 54.42099609374998], [-129.89013671874994, 55.16464843749995], [-130.01406249999997, 55.950537109375006], [-130.09785156249995, 56.10927734375002], [-130.47709960937496, 56.230566406250034], [-130.649072265625, 56.26367187500003], [-131.86616210937495, 56.792822265625006], [-132.062890625, 56.95336914062503], [-133.00141601562495, 57.948974609375], [-133.27529296875, 58.22285156250004], [-133.54638671874997, 58.50346679687499], [-134.21850585937503, 58.849902343750045], [-134.32963867187505, 58.93969726562506], [-134.39306640625, 59.009179687499994], [-134.67724609374997, 59.19926757812499], [-134.94375, 59.28828125000001], [-135.36787109374998, 59.743310546874994], [-135.70258789062504, 59.72875976562506], [-136.46635742187493, 59.459082031250006], [-137.59331054687493, 59.22626953124998], [-138.317626953125, 59.611132812500074], [-138.70546874999997, 59.90131835937504], [-139.23476562499997, 60.339746093749994], [-139.67631835937505, 60.32832031249998], [-139.97329101562497, 60.183154296875074], [-140.45283203125004, 60.29970703125002], [-141.00214843750004, 60.884667968749994], [-141.00214843750004, 61.761279296875045], [-141.00214843750004, 63.22226562499998], [-141.00214843750004, 64.09887695312506], [-141.00214843750004, 65.55991210937498], [-141.00214843750004, 66.43652343750006], [-141.00214843750004, 67.89755859374998], [-141.00214843750004, 68.77416992187506], [-141.00214843750004, 69.65078125000011], [-138.12836914062495, 69.15195312500009], [-135.876318359375, 68.9169921875], [-135.1408203124999, 69.46782226562496], [-133.16313476562496, 69.43388671874999], [-130.49843749999997, 70.14316406250006], [-128.9714355468749, 69.71240234375006], [-127.13847656249996, 70.23935546874995], [-126.06381835937495, 69.46708984374999], [-124.767919921875, 69.99003906249996], [-120.96245117187502, 69.66040039062511], [-118.09521484374994, 69.0429199218751], [-114.41386718749993, 68.65957031250014], [-115.42685546874989, 67.92353515625013], [-112.43515624999988, 67.68476562499998], [-110.04248046874994, 67.97719726562505], [-108.59291992187495, 67.59086914062502], [-108.31347656249996, 68.61079101562498], [-106.16445312499992, 68.91987304687507], [-104.19355468749994, 68.03120117187504], [-101.55498046874992, 67.69316406250007], [-98.41713867187497, 67.82646484375007], [-97.2659179687499, 68.45292968749996], [-95.65048828124986, 67.73745117187505], [-93.65170898437489, 68.54311523437505], [-94.2708007812499, 69.45512695312505], [-96.11909179687504, 69.871875], [-96.4056640625, 71.27363281249998], [-95.20122070312493, 71.90371093750008], [-92.94868164062493, 71.26210937500011], [-92.98144531249994, 70.8522460937501], [-91.56406249999995, 70.1782714843751], [-92.75092773437498, 69.71391601562502], [-90.82211914062495, 69.29047851562507], [-89.05673828124992, 69.26611328125009], [-88.041357421875, 68.81171875000007], [-88.19589843749986, 67.76582031249995], [-86.53642578125002, 67.51616210937507], [-85.38676757812493, 69.23188476562504], [-85.50737304687487, 69.84526367187493], [-82.61835937499993, 69.69106445312514], [-81.3286621093749, 69.11992187499996], [-82.55268554687504, 68.44648437500007], [-81.27011718749995, 67.45991210937498], [-82.64150390624991, 66.5875], [-84.47841796875005, 66.17929687500003], [-85.44223632812495, 66.53735351562497], [-87.2914550781249, 65.35483398437495], [-87.28051757812491, 64.82617187500006], [-88.65302734374993, 64.009375], [-91.33007812499997, 63.50683593750006], [-90.87119140625, 62.945947265624994], [-92.3612792968749, 62.81938476562496], [-94.06074218749993, 61.317822265625125], [-94.78579101562494, 59.953320312499955], [-94.71337890624991, 58.903320312500114], [-93.278125, 58.75639648437502], [-92.24902343749994, 57.00898437500001], [-90.59218749999991, 57.224462890625034], [-88.94848632812489, 56.85131835937503], [-87.560888671875, 56.05634765625007], [-85.06093749999997, 55.285644531250085], [-82.57744140625002, 55.1487304687501], [-82.14145507812492, 53.81762695312497], [-82.26044921874993, 52.9611328125001], [-81.66123046874986, 52.29389648437507], [-79.83623046874996, 51.17333984375003], [-78.49165039062495, 52.25209960937508], [-79.241796875, 54.098876953125085], [-79.66552734374991, 54.69746093749998], [-77.89111328124989, 55.236425781250006], [-76.65048828124992, 56.10722656249996], [-76.5728515625, 57.1812011718751], [-77.15678710937496, 58.018896484375034], [-78.51508789062493, 58.68237304687503], [-77.31181640624993, 60.042382812499994], [-77.8715332031249, 60.7858398437501], [-78.13715820312493, 62.10737304687504], [-77.372412109375, 62.572509765625114], [-74.68989257812493, 62.18344726562509], [-73.62998046874989, 62.454199218750006], [-71.42270507812489, 61.158935546875085], [-69.64047851562489, 60.68979492187509], [-69.68188476562489, 59.34174804687507], [-67.5696289062499, 58.21347656250006], [-65.60625, 59.11074218750008], [-65.4333984374999, 59.776513671874994], [-64.49941406250005, 60.26826171875001], [-63.18535156249993, 58.85776367187506], [-62.593847656249864, 58.47402343750005], [-61.33374023437494, 57.01059570312498], [-61.514599609374926, 56.3903320312501], [-59.93032226562491, 55.25942382812508], [-58.99711914062496, 55.149462890625074], [-57.40444335937494, 54.570410156250034], [-57.14897460937493, 53.847705078125074], [-55.79794921874995, 53.211962890625045], [-55.695214843749994, 52.13779296875006], [-56.97597656250005, 51.45766601562505], [-58.510351562500006, 51.295068359375136], [-60.08017578124989, 50.2545898437501], [-66.49550781249991, 50.2118652343751], [-67.37202148437495, 49.348437500000045], [-68.929052734375, 48.82895507812509], [-69.9055664062499, 47.83222656250007], [-71.26777343749995, 46.79594726562499], [-72.98100585937493, 46.209716796875085], [-73.97382812499995, 45.345117187499994], [-74.70888671874997, 45.0038574218751]]], [[[-114.52153320312502, 72.592919921875], [-112.75361328125001, 72.98603515624995], [-108.69829101562502, 72.499267578125], [-107.72001953125002, 73.32905273437504], [-105.41513671874995, 72.788330078125], [-104.34956054687501, 71.43398437500005], [-104.56958007812499, 71.10405273437507], [-102.18212890624997, 69.845947265625], [-101.85712890625001, 69.02397460937505], [-103.46821289062497, 68.80854492187504], [-106.140869140625, 69.16201171875002], [-108.9458984375, 68.75981445312505], [-113.12773437500002, 68.49414062500003], [-113.69414062499995, 69.19501953124998], [-116.51347656249993, 69.42460937500005], [-117.81406249999996, 71.15844726562503], [-118.868408203125, 71.68676757812503], [-118.37451171875, 72.53388671875004], [-114.63823242187499, 73.37265625000003], [-114.52153320312502, 72.592919921875]]], [[[-79.53730468749998, 73.65449218749998], [-77.20654296874997, 73.49956054687505], [-76.28955078125003, 73.08100585937504], [-79.50053710937496, 72.75595703124998], [-80.82416992187495, 73.38066406250007], [-79.53730468749998, 73.65449218749998]]], [[[-86.58935546874997, 71.01079101562507], [-84.78959960937493, 71.09326171875], [-84.65996093749999, 71.58613281249995], [-85.91162109375, 71.98652343749998], [-85.018408203125, 73.33549804687502], [-82.65961914062498, 73.72958984375], [-81.40615234374997, 73.634521484375], [-80.27470703124993, 72.74555664062498], [-75.18579101562494, 72.434228515625], [-74.31572265624999, 71.84267578125], [-71.45991210937493, 71.46372070312498], [-70.56093750000002, 70.73828124999997], [-69.16870117187497, 70.76416015625], [-67.36367187499994, 70.03442382812503], [-68.51303710937498, 69.57729492187497], [-68.037939453125, 68.55073242187501], [-66.2251953125, 67.958740234375], [-64.52753906250001, 67.81269531250001], [-64.00795898437502, 67.34731445312497], [-61.96855468749993, 67.01904296874997], [-61.29970703125002, 66.64873046875002], [-63.40180664062498, 65.11845703125002], [-64.66533203125002, 65.1689453125], [-65.30537109374993, 66.00844726562497], [-66.47695312499997, 66.27973632812498], [-68.2568359375, 65.93862304687505], [-66.86064453124996, 65.09160156250005], [-65.2748046875, 64.63154296875004], [-64.51435546874998, 63.263964843750045], [-65.978857421875, 63.000683593749955], [-66.25668945312503, 61.868261718750006], [-69.08232421874996, 62.405175781249966], [-69.54516601562503, 62.74458007812501], [-71.25371093749993, 63.042529296875045], [-73.44365234374996, 64.423486328125], [-74.512451171875, 64.670166015625], [-76.72382812499995, 64.24204101562498], [-77.79116210937497, 64.36708984374997], [-78.09560546875, 64.93925781250002], [-77.32670898437493, 65.453125], [-75.82832031249993, 65.22705078125003], [-73.56074218750001, 65.54291992187498], [-74.433935546875, 66.139013671875], [-72.22001953124999, 67.25429687500002], [-73.32822265624998, 68.26674804687497], [-75.78715820312499, 69.31865234375005], [-78.809814453125, 70.17856445312498], [-82.13872070312499, 69.8412109375], [-87.90068359374996, 70.25190429687501], [-88.84843749999993, 70.52290039062498], [-90.02519531249996, 71.94877929687502], [-89.26323242187499, 73.068994140625], [-87.71977539062496, 73.72290039062497], [-84.97451171874997, 73.69477539062501], [-86.62934570312493, 72.87080078125001], [-86.03613281249997, 71.77094726562504], [-85.02338867187495, 71.35322265625001], [-86.58935546874997, 71.01079101562507]]], [[[-100.00190429687497, 73.9458984375], [-97.58183593749996, 73.88754882812503], [-97.79589843749997, 73.285302734375], [-96.61342773437494, 71.83383789062506], [-98.66289062499993, 71.302099609375], [-100.594482421875, 72.15234375000003], [-100.48476562500002, 72.77294921874997], [-101.45087890625003, 73.43095703125002], [-100.00190429687497, 73.9458984375]]], [[[-93.17084960937498, 74.16098632812506], [-90.35458984375, 73.86865234375], [-92.11791992187497, 72.75380859375], [-93.340625, 72.80185546875], [-94.03754882812498, 72.02875976562498], [-95.19296875, 72.02744140624998], [-95.63291015625003, 73.69545898437497], [-93.17084960937498, 74.16098632812506]]], [[[-119.73632812499997, 74.11264648437498], [-117.96586914062497, 74.26606445312495], [-115.446875, 73.43886718750002], [-118.96157226562497, 72.68413085937499], [-120.17988281250001, 72.21264648437506], [-120.61933593750001, 71.50576171875002], [-123.210595703125, 71.12343750000002], [-125.76259765624997, 72.1375], [-123.79726562499997, 73.76816406250003], [-124.69624023437497, 74.34819335937499], [-121.31523437499995, 74.52998046874998], [-119.73632812499997, 74.11264648437498]]], [[[-93.54257812499995, 75.0279296875], [-94.697265625, 74.64218750000003], [-96.565771484375, 75.09873046875003], [-94.42724609374997, 75.593359375], [-93.54257812499995, 75.0279296875]]], [[[-97.70092773437497, 76.46650390624998], [-97.79936523437496, 75.11665039062495], [-100.234375, 75.00771484374997], [-102.54140625, 75.51362304687501], [-100.38793945312501, 76.61357421875002], [-97.70092773437497, 76.46650390624998]]], [[[-108.29238281250001, 76.05712890625], [-105.48090820312503, 75.74565429687505], [-105.86259765624997, 75.19155273437505], [-108.83129882812501, 75.06489257812498], [-110.94086914062501, 74.63872070312505], [-113.51406249999994, 74.430078125], [-114.45175781250002, 75.08789062499997], [-117.60009765624997, 75.27167968750001], [-115.58066406249996, 76.4375], [-112.69760742187496, 76.20170898437505], [-111.05268554687495, 75.54853515625001], [-108.29238281250001, 76.05712890625]]], [[[-94.29497070312493, 76.91245117187498], [-91.305029296875, 76.68076171875003], [-90.25136718749994, 76.05346679687503], [-88.201318359375, 75.51201171875005], [-86.06875, 75.50224609375002], [-82.153662109375, 75.83105468750003], [-79.66020507812499, 75.44951171875002], [-79.50795898437497, 74.880126953125], [-81.80883789062503, 74.47661132812505], [-88.42304687499995, 74.49414062499997], [-91.96157226562502, 74.79321289062497], [-92.18510742187499, 75.84653320312498], [-94.29497070312493, 76.91245117187498]]], [[[-115.55126953125001, 77.36328125], [-116.22045898437501, 76.61108398437506], [-119.36791992187497, 76.22177734375003], [-121.61376953125001, 76.44145507812505], [-119.09018554687496, 77.30507812500002], [-115.55126953125001, 77.36328125]]], [[[-103.42602539062499, 79.315625], [-99.60942382812495, 78.58305664062507], [-102.73134765624995, 78.37104492187495], [-103.42602539062499, 79.315625]]], [[[-91.88554687499999, 81.13286132812505], [-90.64301757812498, 80.59370117187498], [-87.675, 80.37211914062505], [-87.14423828124993, 79.66264648437502], [-85.28984374999999, 79.208349609375], [-88.79101562499997, 78.19243164062507], [-92.67827148437502, 78.38911132812498], [-96.77324218749999, 80.13579101562502], [-95.26977539062503, 81.00078125000005], [-91.88554687499999, 81.13286132812505]]], [[[-69.4888671875, 83.01679687499998], [-61.392480468749994, 82.44189453125], [-65.48398437499998, 81.28476562499998], [-70.14350585937498, 80.39765625000001], [-71.387841796875, 79.76176757812505], [-75.25947265624995, 79.421044921875], [-74.43310546875, 78.72412109375003], [-75.86596679687497, 78.00981445312499], [-78.01259765624997, 77.94604492187506], [-78.284326171875, 76.57124023437501], [-85.141259765625, 76.30458984375005], [-89.57006835937497, 76.49194335937503], [-86.873779296875, 77.20029296875], [-88.09467773437495, 77.71918945312501], [-86.80791015624999, 78.77436523437495], [-84.31611328124993, 78.97529296874995], [-86.42075195312498, 79.84521484374997], [-85.30742187500002, 80.52597656250003], [-88.92143554687499, 80.80561523437498], [-90.49018554687501, 81.87724609374999], [-82.12250976562498, 82.60175781249998], [-79.88632812500003, 82.93852539062502], [-69.4888671875, 83.01679687499998]]]]}, "type": "Feature", "properties": {"name": "Canada"}}, {"geometry": {"type": "Polygon", "coordinates": [[[9.524023437500006, 47.52421875], [9.527539062500011, 47.270751953125], [9.580273437500011, 47.057373046875], [10.452832031250011, 46.86494140625], [9.939257812500017, 46.36181640625], [9.203417968750017, 46.21923828125], [8.826757812500006, 46.06103515625], [8.818554687500011, 46.0771484375], [8.08154296875, 46.256005859374994], [7.327929687500017, 45.912353515625], [6.060253906250011, 46.428173828125], [6.429003906250017, 46.832275390625], [7.000585937500006, 47.322509765625], [8.572656250000023, 47.775634765625], [9.524023437500006, 47.52421875]]]}, "type": "Feature", "properties": {"name": "Switzerland"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-68.62993164062499, -52.65263671875004], [-68.65322265624994, -54.85361328124999], [-70.49716796875, -54.80957031249999], [-70.86772460937499, -53.88417968750002], [-70.09038085937499, -53.41816406250003], [-69.76357421875002, -52.731347656249994], [-68.62993164062499, -52.65263671875004]]], [[[-74.47617187499998, -49.14785156250002], [-74.59472656249997, -50.00664062500001], [-75.30009765624996, -49.8474609375], [-75.184228515625, -49.08359375], [-74.47617187499998, -49.14785156250002]]], [[[-73.77338867187498, -43.3458984375], [-74.35493164062498, -43.26357421875001], [-74.03666992187496, -41.79550781249998], [-73.52783203124997, -41.89628906249999], [-73.43632812499996, -42.9365234375], [-73.77338867187498, -43.3458984375]]], [[[-67.19487304687493, -22.821679687500037], [-67.00878906249994, -23.00136718750005], [-67.35620117187503, -24.033789062499963], [-68.25029296875002, -24.391992187500023], [-68.56201171875, -24.83769531249996], [-68.34599609374996, -27.02792968750005], [-68.84633789062494, -27.153710937499994], [-69.17441406249998, -27.924707031250037], [-69.65693359374995, -28.413574218749986], [-70.02680664062501, -29.324023437500017], [-70.16142578124999, -30.44023437499996], [-70.585205078125, -31.569433593749963], [-69.79775390624997, -33.398632812500026], [-69.85244140625, -34.224316406250026], [-70.47041015624995, -35.32617187499997], [-70.40478515625, -36.06171874999998], [-71.05551757812498, -36.52373046874996], [-71.16757812499998, -37.76230468749996], [-70.95161132812493, -38.73847656249997], [-71.42558593749996, -38.98564453125006], [-71.93212890624994, -40.69169921874999], [-71.76093749999998, -42.101464843749966], [-72.14643554687498, -42.990039062499974], [-71.21259765624998, -44.44121093750003], [-71.77265624999995, -45.724414062499974], [-71.90498046875001, -47.201660156250014], [-72.517919921875, -47.87636718749998], [-72.61440429687494, -48.79287109375], [-73.57626953124998, -49.582910156250016], [-73.15292968749998, -50.73828125000003], [-72.27631835937498, -50.910253906249984], [-72.40766601562501, -51.54082031250002], [-71.91865234374995, -51.98955078125004], [-69.96025390624993, -52.00820312500002], [-68.443359375, -52.35664062500004], [-69.24101562499996, -52.20546874999997], [-70.79511718749995, -52.76875], [-70.99584960937497, -53.77929687499997], [-72.1744140625, -53.632324218749964], [-74.01445312499999, -52.63935546875], [-73.51816406250003, -52.04101562499996], [-73.8958984375, -51.331445312499994], [-75.09467773437495, -50.68125], [-74.333740234375, -49.97460937499997], [-74.34101562499998, -48.59570312499998], [-74.654931640625, -47.702246093750034], [-74.15190429687499, -46.97441406249999], [-75.65678710937499, -46.610351562499986], [-73.54990234375, -45.48378906249998], [-72.66386718749999, -44.43642578124995], [-73.26508789062498, -44.16865234375001], [-72.78515625, -42.301269531249986], [-73.52128906249996, -41.797070312500026], [-73.96586914062493, -41.118261718750034], [-73.22646484375002, -39.22441406250003], [-73.66181640624998, -37.69853515625003], [-73.21596679687502, -37.16689453124998], [-72.62392578125002, -35.5857421875], [-72.22377929687494, -35.096191406250014], [-71.66435546875002, -33.65263671875], [-71.45224609374998, -32.65957031250001], [-71.66948242187499, -30.33037109374996], [-71.31572265624996, -29.649707031250017], [-71.51923828124993, -28.926464843750026], [-71.18642578125, -28.37783203124998], [-70.64658203124998, -26.329394531250017], [-70.44536132812502, -25.17265624999999], [-70.57412109374994, -24.644335937500003], [-70.56318359374995, -23.057031250000023], [-70.33168945312494, -22.848632812500014], [-70.08754882812494, -21.49306640624998], [-70.14814453124995, -19.80507812499999], [-70.37749023437496, -18.333593749999977], [-69.92636718749998, -18.206054687500014], [-69.49501953125002, -17.61953125], [-69.09394531249993, -18.05048828125004], [-68.96831054687502, -18.967968749999983], [-68.46289062499997, -19.43281250000001], [-68.75932617187499, -20.115527343750003], [-68.197021484375, -21.30029296874997], [-67.87944335937496, -22.822949218750026], [-67.19487304687493, -22.821679687500037]]]]}, "type": "Feature", "properties": {"name": "Chile"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[110.88876953125006, 19.99194335937497], [111.01367187500003, 19.65546875000001], [110.45126953125012, 18.747949218750023], [109.51933593750007, 18.21826171875003], [108.7015625, 18.535253906250034], [108.69355468750004, 19.33828125000005], [109.21894531250004, 19.842822265625074], [110.1715820312501, 20.053710937500057], [110.88876953125006, 19.99194335937497]]], [[[130.52695312500012, 42.535400390625], [129.71972656249997, 42.475], [128.92343750000006, 42.038232421874966], [128.04521484375007, 41.9875], [128.11123046875, 41.389257812500006], [126.9035156250001, 41.78105468749999], [125.98906250000002, 40.904638671875034], [124.8893554687501, 40.459814453125006], [124.36210937500002, 40.004052734374994], [122.33486328125005, 39.36611328125005], [121.51757812499997, 39.638964843750045], [122.27500000000012, 40.541845703125034], [121.1745117187501, 40.901269531249994], [120.47910156250006, 40.23095703125003], [119.59111328125007, 39.90263671875002], [118.9123046875001, 39.16640625000005], [117.78466796875003, 39.13447265625001], [117.5578125000001, 38.625146484374994], [118.01494140625007, 38.18339843749996], [118.94003906250006, 38.04277343750002], [118.95263671875003, 37.33115234374998], [119.4499023437501, 37.12475585937503], [120.75, 37.83393554687501], [121.64023437500012, 37.46035156250002], [121.93271484375006, 36.95947265625003], [120.98994140625004, 36.59794921874999], [119.21582031250003, 35.01176757812496], [120.20146484375007, 34.32568359375], [120.87109374999997, 33.016503906249994], [121.40097656250012, 32.371923828125034], [121.351953125, 31.85878906250005], [121.87792968750003, 30.91699218750003], [120.99765625000012, 30.558251953125023], [121.94433593749997, 29.89409179687499], [121.60205078124997, 28.366601562500023], [121.09843750000002, 28.29052734374997], [120.2787109375, 27.097070312500023], [119.53945312500005, 25.59125976562504], [118.56035156250007, 24.580371093750045], [116.53828125000004, 23.17968749999997], [116.47070312499997, 22.945898437500034], [114.26601562500005, 22.540966796874983], [114.01542968750007, 22.51191406250001], [112.30498046875002, 21.74169921875003], [110.77109375000006, 21.386523437500045], [110.1935546875001, 21.037646484375045], [109.93076171875012, 21.480566406250034], [108.32480468750006, 21.693505859374994], [107.97265624999997, 21.507958984375023], [106.72949218749997, 22.000341796875063], [106.78027343749997, 22.778906250000034], [105.8429687500001, 22.922802734374955], [105.27539062500003, 23.34521484375003], [104.37177734375004, 22.704052734374983], [102.51718750000012, 22.741015625000045], [102.12744140624997, 22.379199218750045], [101.7365234375001, 21.826513671874977], [101.1388671875001, 21.567480468749977], [100.21474609375, 21.462988281250006], [99.9176757812501, 22.02802734375001], [99.19296875000006, 22.12597656249997], [99.34082031249997, 23.095898437499955], [98.86376953125003, 23.191259765625034], [98.76435546875004, 24.116064453125063], [97.68603515624997, 23.898095703124966], [97.53144531250004, 24.49169921875003], [97.8195312500001, 25.251855468749994], [98.6546875, 25.917773437500017], [98.65117187500007, 27.572460937499983], [98.09892578125002, 28.142285156249983], [97.3224609375001, 28.21796875000004], [96.65283203125003, 28.44975585937499], [96.3890625, 28.36791992187503], [96.32988281250002, 28.496826171875], [96.58085937500007, 28.763671875], [96.14140625000007, 28.963476562500034], [96.18085937500004, 29.11767578125], [96.23496093750006, 29.245800781249983], [95.49375000000012, 29.137011718750045], [95.42021484375007, 29.054296875000063], [95.27910156250002, 29.04956054687497], [94.99882812500002, 29.14916992187503], [94.46806640625007, 29.216210937499994], [94.01328125000006, 28.90751953124999], [93.76074218750003, 28.729785156250017], [93.36054687500004, 28.654052734375057], [92.70185546875004, 28.147119140624994], [92.65253906250004, 28.093359375000034], [92.41484375000002, 27.82460937499999], [91.63193359375012, 27.759960937499983], [89.98105468750006, 28.311181640625023], [88.80371093750003, 28.006933593750034], [88.57792968750002, 28.093359375000034], [87.68271484375006, 27.821386718750063], [86.40869140625003, 27.928662109374983], [85.1224609375, 28.315966796875017], [83.58349609375003, 29.18359375000003], [82.04335937500005, 30.326757812500034], [80.98544921875006, 30.23710937499999], [80.87353515625003, 30.290576171875045], [80.19121093750002, 30.56840820312496], [80.20712890625006, 30.683740234375023], [79.92451171875004, 30.888769531250034], [79.66425781250004, 30.96523437499999], [78.74355468750005, 31.323779296875017], [78.7550781250001, 31.55029296875], [78.69345703125006, 31.740380859374994], [78.49589843750002, 32.21577148437504], [78.4552734375001, 32.30034179687502], [78.41748046874997, 32.466699218749994], [78.38964843749997, 32.51987304687498], [78.73671875, 32.55839843750002], [78.75351562500012, 32.49926757812506], [79.16992187500003, 32.497216796874994], [79.14550781250003, 33.00146484375006], [79.10283203125007, 33.05253906249996], [79.13515625000005, 33.17192382812496], [79.1125, 33.22626953125001], [78.94843750000004, 33.346533203125006], [78.86503906250002, 33.43110351562501], [78.78378906250006, 33.80878906250004], [78.72666015625006, 34.013378906249955], [78.93642578125, 34.35195312500002], [78.86484375000006, 34.39033203125001], [78.32695312500007, 34.60639648437498], [78.15849609375002, 34.94648437499998], [78.07578125000006, 35.13491210937502], [77.79941406250006, 35.49589843750002], [76.25166015625004, 35.8109375], [75.840234375, 36.64970703124999], [74.89130859375004, 37.231640624999955], [74.74501953125, 38.51000976562497], [73.80166015625, 38.60688476562501], [73.63164062500007, 39.44887695312502], [73.99160156250005, 40.04311523437502], [75.58349609375003, 40.605322265625006], [76.4801757812501, 40.44951171874996], [76.82402343750002, 40.982324218749966], [78.1234375, 41.07563476562498], [78.36240234375012, 41.37163085937496], [80.209375, 42.190039062500006], [80.16503906249997, 42.66552734375006], [80.78574218750006, 43.16157226562504], [80.05917968750012, 45.006445312500006], [82.32666015625003, 45.51992187499999], [83.19306640625004, 47.18657226562499], [84.78613281249997, 46.83071289062505], [85.65664062500005, 47.254638671875], [85.7494140625, 48.38505859374999], [86.54941406250012, 48.52861328125002], [87.32285156250012, 49.085791015625006], [87.81425781250002, 49.162304687499955], [87.9796875000001, 48.55512695312498], [89.04765625000007, 48.002539062500034], [90.31328125000007, 47.67617187499999], [90.86992187500002, 46.95449218750005], [90.87724609375002, 45.19609375000002], [93.6564453125001, 44.900976562500006], [94.71201171875012, 44.35083007812503], [95.35029296875004, 44.27807617187503], [95.9125, 43.20649414062504], [96.38544921875004, 42.72036132812502], [97.20566406250012, 42.78979492187506], [99.46787109375012, 42.568212890625034], [99.98378906250005, 42.67734375000006], [101.71386718749997, 42.46582031250006], [101.97294921875002, 42.21586914062502], [103.7111328125001, 41.75131835937506], [105.19707031250002, 41.738037109375], [106.77001953125003, 42.28872070312502], [109.44316406250002, 42.455957031249994], [110.40039062499997, 42.77368164062497], [111.00722656250005, 43.34140624999998], [111.93320312500006, 43.71142578125006], [111.40224609375005, 44.367285156250006], [111.89804687500006, 45.064062500000034], [113.58701171875006, 44.745703125], [114.51718750000006, 45.36459960937506], [115.6810546875, 45.45825195312503], [116.56259765625012, 46.28979492187497], [118.30869140625012, 46.71704101562497], [119.70664062500006, 46.60600585937502], [119.71113281250004, 47.15], [118.49843750000005, 47.98398437499998], [115.89824218750002, 47.68691406250005], [115.55761718750003, 47.945019531249955], [116.6833007812501, 49.82377929687499], [117.8734375, 49.51347656250002], [119.25986328125012, 50.06640625000003], [119.19189453125003, 50.37983398437504], [120.06689453125003, 51.60068359375006], [120.74980468750007, 52.096533203125006], [120.70410156249997, 53.171826171874955], [123.6078125, 53.546533203124994], [125.64902343750012, 53.042285156250045], [126.312890625, 52.39975585937506], [126.92480468749997, 51.10014648437496], [127.99960937500006, 49.56860351562506], [129.49814453125012, 49.38881835937502], [130.80429687500012, 48.34150390624998], [131.00273437500002, 47.69145507812499], [132.5619140625, 47.768505859374955], [134.29335937500005, 48.37343750000002], [134.75234375, 47.71542968749998], [134.1676757812501, 47.30219726562501], [133.86132812500003, 46.24775390625004], [132.93603515624997, 45.029931640624994], [131.97753906250003, 45.243994140625006], [131.08232421875002, 44.91000976562498], [131.26181640625006, 43.43305664062501], [130.52695312500012, 42.535400390625]]]]}, "type": "Feature", "properties": {"name": "China"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-5.262304687499977, 10.319677734374991], [-4.969921874999926, 9.930078125000023], [-4.18115234375, 9.78173828125], [-3.223535156249937, 9.895458984374997], [-2.705761718749983, 9.351367187499989], [-2.505859375000028, 8.208740234375], [-2.959082031249977, 7.454541015624997], [-3.227148437499977, 6.749121093749991], [-2.754980468749977, 5.432519531249994], [-2.815673828125, 5.153027343749997], [-4.037207031249977, 5.23012695312498], [-5.56474609374996, 5.089453125], [-7.544970703124989, 4.351318359375], [-7.574658203124983, 4.572314453124989], [-7.585058593749977, 4.916748046875], [-7.39990234375, 5.550585937499989], [-7.636132812499994, 5.90771484375], [-7.730371093749994, 5.919042968749991], [-7.800927734374994, 6.038916015624991], [-8.587890625, 6.490527343749989], [-8.324511718749989, 6.920019531249991], [-8.408740234374989, 7.411816406249997], [-8.429980468749989, 7.601855468749989], [-7.953125, 8.477734375], [-7.823583984374977, 8.467675781249994], [-7.950976562499989, 8.786816406249997], [-7.896191406249955, 9.415869140624991], [-8.136621093749994, 10.022070312500034], [-7.385058593749989, 10.340136718749989], [-6.950341796874994, 10.342333984374989], [-6.482617187499983, 10.561230468749997], [-6.034570312499937, 10.194824218750057], [-5.262304687499977, 10.319677734374991]]]}, "type": "Feature", "properties": {"name": "Ivory Coast"}}, {"geometry": {"type": "Polygon", "coordinates": [[[15.480078125, 7.523779296874991], [14.616894531250011, 5.865136718749994], [14.708984375, 4.665576171874989], [15.128710937500017, 3.826904296875], [16.0634765625, 2.90859375], [16.183398437500017, 2.270068359374989], [15.741601562500023, 1.914990234374997], [14.484082031250011, 2.154736328124997], [13.293554687500006, 2.161572265624997], [11.328710937500006, 2.167431640624997], [9.979882812500023, 2.167773437499989], [9.876171875000011, 3.309765625], [9.42529296875, 3.922314453124997], [8.5328125, 4.60585937499999], [8.997167968750006, 5.917724609375], [9.490234375, 6.418652343749997], [10.1435546875, 6.996435546874991], [10.954199218750006, 6.7765625], [11.551660156250023, 6.697265625], [11.767382812500017, 7.272265624999989], [11.809179687500006, 7.345068359374991], [12.403515625000011, 8.595556640624991], [12.651562500000011, 8.667773437499989], [12.929492187500017, 9.42626953125], [13.89208984375, 11.140087890624997], [14.559765625000011, 11.492285156249991], [14.627148437500011, 12.108691406249989], [14.272851562500023, 12.356494140624989], [14.184863281250017, 12.447216796874997], [14.06396484375, 13.07851562499999], [14.516210937500006, 12.979736328125], [15.08125, 11.845507812499989], [15.029882812500006, 11.11367187499999], [15.540917968750023, 9.960302734374991], [14.243261718750006, 9.979736328125], [13.977246093750011, 9.691552734374994], [15.1162109375, 8.557324218749997], [15.480078125, 7.523779296874991]]]}, "type": "Feature", "properties": {"name": "Cameroon"}}, {"geometry": {"type": "Polygon", "coordinates": [[[27.4033203125, 5.109179687499989], [28.19208984375001, 4.350244140624994], [29.676855468750006, 4.5869140625], [30.83857421875001, 3.49072265625], [30.728613281250006, 2.455371093749989], [31.252734375000017, 2.044580078124994], [29.94287109375, 0.819238281249994], [29.717675781250023, 0.098339843749997], [29.576953125000017, -1.387890625000011], [29.12939453125, -1.860253906250009], [29.01435546875001, -2.72021484375], [29.224414062500017, -3.053515625], [29.403222656250023, -4.449316406250006], [29.3427734375, -4.983105468750011], [29.70966796875001, -6.616894531250011], [30.31318359375001, -7.203710937500006], [30.75117187500001, -8.193652343750003], [28.972265625, -8.464941406250006], [28.400683593750017, -9.224804687500011], [28.63007812500001, -9.83125], [28.63886718750001, -10.669238281250003], [28.357226562500017, -11.483007812500006], [29.064355468750023, -12.348828125000011], [29.79511718750001, -12.155468750000011], [29.795312500000023, -13.392773437500011], [29.014257812500006, -13.368847656250011], [28.357714843750017, -12.48203125], [26.949609375000023, -11.898828125], [26.025976562500006, -11.89013671875], [25.349414062500017, -11.623046875], [25.184863281250017, -11.24296875], [24.5185546875, -11.4384765625], [23.96650390625001, -10.871777343750011], [23.833886718750023, -11.013671875], [22.226171875, -11.121972656250009], [22.203515625000023, -10.829492187500009], [22.30244140625001, -10.396679687500011], [21.81318359375001, -9.46875], [21.905371093750006, -8.693359375], [21.751074218750006, -7.30546875], [20.607812500000023, -7.277734375], [20.482226562500017, -6.915820312500003], [19.527636718750017, -7.144433593750009], [19.3408203125, -7.966601562500003], [18.56269531250001, -7.9359375], [17.643359375000017, -8.090722656250009], [17.57958984375, -8.099023437500009], [16.984765625000023, -7.257421875], [16.7177734375, -6.241406250000011], [16.315234375000017, -5.865625], [13.978515625, -5.857226562500003], [13.346484375000017, -5.863378906250006], [12.41171875, -5.986328125], [12.522363281250023, -5.14892578125], [13.07275390625, -4.634765625], [13.414941406250023, -4.83740234375], [14.358300781250023, -4.299414062500006], [14.707910156250023, -4.881738281250009], [16.146777343750017, -3.464160156250003], [16.21533203125, -2.177832031250006], [16.8798828125, -1.225878906250003], [17.752832031250023, -0.549023437500011], [18.072167968750023, 2.01328125], [18.6103515625, 3.478417968749994], [18.567480468750006, 4.257568359375], [19.5009765625, 5.127490234374989], [20.55810546875, 4.462695312499989], [22.422167968750017, 4.134960937499997], [22.755761718750023, 4.646679687499997], [23.41718750000001, 4.663134765624989], [24.31982421875, 4.994140625], [25.249316406250017, 5.024560546874994], [25.52509765625001, 5.31210937499999], [26.822070312500017, 5.062402343749994], [27.4033203125, 5.109179687499989]]]}, "type": "Feature", "properties": {"name": "Democratic Republic of the Congo"}}, {"geometry": {"type": "Polygon", "coordinates": [[[18.6103515625, 3.478417968749994], [18.072167968750023, 2.01328125], [17.752832031250023, -0.549023437500011], [16.8798828125, -1.225878906250003], [16.21533203125, -2.177832031250006], [16.146777343750017, -3.464160156250003], [14.707910156250023, -4.881738281250009], [14.358300781250023, -4.299414062500006], [13.414941406250023, -4.83740234375], [13.07275390625, -4.634765625], [11.777539062500011, -4.565820312500009], [11.130175781250017, -3.916308593750003], [11.934179687500006, -3.318554687500011], [11.5751953125, -2.397070312500006], [12.991992187500017, -2.313378906250009], [14.08740234375, -2.466894531250006], [14.383984375000011, -1.890039062500009], [14.480566406250006, -0.618359375000011], [13.860058593750011, -0.203320312500011], [13.884570312500017, 0.190820312499994], [14.434472656250023, 0.811474609374997], [14.180859375000011, 1.370214843749991], [13.274121093750011, 1.241015624999989], [13.293554687500006, 2.161572265624997], [14.484082031250011, 2.154736328124997], [15.741601562500023, 1.914990234374997], [16.183398437500017, 2.270068359374989], [16.67333984375, 3.535205078124989], [17.43798828125, 3.684619140624989], [18.6103515625, 3.478417968749994]]]}, "type": "Feature", "properties": {"name": "Republic of Congo"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Cook Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-71.31972656249997, 11.861914062500048], [-71.95810546875, 11.66640625], [-72.690087890625, 10.835839843749994], [-73.00654296874998, 9.789160156250006], [-72.41655273437496, 8.381982421875037], [-72.44296875, 7.454882812499989], [-72.08427734374993, 7.096875], [-70.09501953124996, 6.937939453125011], [-69.43925781249993, 6.134912109375009], [-67.85917968749999, 6.289892578124963], [-67.43935546875, 6.025537109375023], [-67.82490234374995, 5.270458984375026], [-67.85527343750002, 4.506884765624989], [-67.3111328125, 3.41586914062502], [-67.83476562499999, 2.892822265625043], [-67.21083984375, 2.390136718750043], [-66.87602539062499, 1.223046875000037], [-67.35195312499997, 2.085839843750051], [-68.17656249999999, 1.719824218749991], [-69.84858398437493, 1.708740234375043], [-70.07050781249993, -0.13886718750004], [-69.66748046874997, -0.482421874999957], [-69.40024414062498, -1.194921874999977], [-69.96591796875003, -4.2359375], [-70.16752929687499, -4.050195312500009], [-70.73510742187497, -3.781542968749989], [-70.07402343749993, -2.750195312500011], [-70.91455078125003, -2.218554687499974], [-71.75253906249995, -2.15273437499998], [-72.39560546874995, -2.428906250000026], [-73.15449218749993, -2.278222656249966], [-73.66430664062497, -1.248828124999946], [-74.24638671874999, -0.970605468750023], [-74.80175781249997, -0.200097656249994], [-75.28447265624999, -0.10654296875002], [-76.31103515624997, 0.448486328124986], [-76.49462890624997, 0.23544921875002], [-77.46767578124997, 0.636523437500017], [-78.85966796874996, 1.455371093750031], [-78.617041015625, 2.306787109375023], [-77.67001953124998, 2.87885742187504], [-77.1666015625, 3.862255859375011], [-77.42729492187499, 4.06044921874998], [-77.24926757812497, 5.780175781250037], [-77.35986328125003, 6.504492187499991], [-77.90117187499999, 7.229345703125048], [-77.2123046875, 8.033886718749997], [-77.37421874999993, 8.65830078125002], [-76.88798828124999, 8.619873046875], [-75.63935546874998, 9.450439453125014], [-75.67089843750003, 10.196337890625003], [-74.84458007812498, 11.109716796875006], [-74.05913085937502, 11.340625], [-73.31337890624997, 11.295751953124991], [-72.275, 11.88925781250002], [-71.71455078124993, 12.41997070312496], [-71.31972656249997, 11.861914062500048]]]}, "type": "Feature", "properties": {"name": "Colombia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Comoros"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Cape Verde"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-83.6419921875, 10.917236328125], [-82.77841796874999, 9.66953125], [-83.02734375, 8.337744140624991], [-83.73408203125, 8.614453125], [-83.63725585937499, 9.035351562499997], [-84.65888671875, 9.646679687499997], [-85.62485351562499, 9.902441406249991], [-85.7443359375, 11.06210937499999], [-83.6419921875, 10.917236328125]]]}, "type": "Feature", "properties": {"name": "Costa Rica"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-81.83745117187499, 23.163037109374955], [-80.65014648437494, 23.10307617187499], [-77.49726562499995, 21.871630859375045], [-76.64741210937501, 21.284521484375063], [-75.72294921874996, 21.111035156249983], [-75.64277343749998, 20.733496093749977], [-74.882568359375, 20.65063476562497], [-74.25283203124997, 20.0796875], [-75.11640624999995, 19.901416015625017], [-76.15844726562497, 19.98974609374997], [-77.715087890625, 19.85546874999997], [-77.22958984374995, 20.64375], [-77.99731445312494, 20.715380859375017], [-78.63647460937497, 21.51552734375005], [-79.27441406249997, 21.562646484374966], [-80.49907226562499, 22.063525390625045], [-81.81621093750002, 22.2001953125], [-81.90341796875, 22.679003906250017], [-82.73803710937497, 22.689257812500074], [-83.37963867187503, 22.222998046875034], [-84.04492187500003, 22.666015625000057], [-83.25781249999997, 22.967578125000017], [-81.83745117187499, 23.163037109374955]]]}, "type": "Feature", "properties": {"name": "Cuba"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Cura\u00e7ao"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Cayman Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[34.004492187500006, 35.065234375], [32.71269531250002, 35.171044921874994], [32.94160156250001, 35.390429687499996], [34.004492187500006, 35.065234375]]]}, "type": "Feature", "properties": {"name": "Northern Cyprus"}}, {"geometry": {"type": "Polygon", "coordinates": [[[32.71269531250002, 35.171044921874994], [34.004492187500006, 35.065234375], [32.94179687500002, 34.57587890625], [32.71269531250002, 35.171044921874994]]]}, "type": "Feature", "properties": {"name": "Cyprus"}}, {"geometry": {"type": "Polygon", "coordinates": [[[14.809375, 50.858984375], [17.151953125, 50.378320312499994], [18.83222656250001, 49.510791015624996], [16.953125, 48.598828125], [14.97216796875, 48.983935546874996], [13.814746093750017, 48.766943359375], [12.632031250000011, 49.461230468749996], [12.5125, 49.87744140625], [12.3056640625, 50.205712890624994], [13.016406250000017, 50.490380859374994], [13.18115234375, 50.510498046875], [14.809375, 50.858984375]]]}, "type": "Feature", "properties": {"name": "Czech Republic"}}, {"geometry": {"type": "Polygon", "coordinates": [[[9.739746093750028, 54.82553710937498], [11.39960937500004, 53.94462890625002], [12.57539062500004, 54.467382812500006], [14.25, 53.73188476562501], [14.128613281250011, 52.87822265625002], [14.619433593750017, 52.52851562499998], [14.9638671875, 51.095117187499994], [13.18115234375, 50.510498046875], [13.016406250000017, 50.490380859374994], [12.3056640625, 50.205712890624994], [12.5125, 49.87744140625], [12.63203125000004, 49.46123046875002], [13.769921875000051, 48.81596679687502], [13.215234375000023, 48.301904296874994], [12.685839843750074, 47.66933593750002], [11.297949218750034, 47.424902343750034], [8.572656250000023, 47.775634765625], [7.615625, 47.59272460937504], [7.584179687499983, 48.064306640625006], [8.134863281250006, 48.97358398437498], [6.735449218750006, 49.16059570312498], [6.344335937500006, 49.45273437499998], [6.4873046875, 49.798486328124994], [6.116503906250045, 50.120996093749966], [5.993945312500017, 50.75043945312504], [6.193261718750051, 51.48891601562502], [7.035156250000057, 52.38022460937498], [7.197265625000028, 53.28227539062499], [7.285253906250034, 53.68134765625001], [8.53847656250008, 53.55688476562497], [8.897753906250074, 53.83569335937503], [8.670312500000023, 54.903417968750034], [9.739746093750028, 54.82553710937498]]]}, "type": "Feature", "properties": {"name": "Germany"}}, {"geometry": {"type": "Polygon", "coordinates": [[[43.24599609375002, 11.499804687499989], [42.92275390625002, 10.999316406249989], [41.79824218750002, 10.98046875], [41.76650390625002, 11.589111328125], [42.378515625, 12.46640625], [43.11669921875, 12.70859375], [43.409765625, 12.18994140625], [43.24599609375002, 11.499804687499989]]]}, "type": "Feature", "properties": {"name": "Djibouti"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Dominica"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[12.56875, 55.785058593749966], [11.653808593750057, 55.186914062499966], [10.978906250000051, 55.721533203125006], [12.218945312499983, 56.11865234374997], [12.56875, 55.785058593749966]]], [[[9.739746093750028, 54.82553710937498], [8.670312500000023, 54.903417968750034], [8.132128906250074, 55.59980468749998], [8.16396484375008, 56.60688476562498], [8.618554687500051, 57.11127929687498], [10.537109375000028, 57.44853515625002], [10.18300781250008, 55.86518554687504], [9.591113281250017, 55.49321289062502], [9.739746093750028, 54.82553710937498]]]]}, "type": "Feature", "properties": {"name": "Denmark"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-71.647216796875, 19.195947265624994], [-71.557763671875, 19.89536132812499], [-70.95415039062499, 19.913964843749994], [-68.684765625, 18.90478515625], [-68.9349609375, 18.408007812500003], [-71.02783203125, 18.273193359375], [-71.7619140625, 18.34130859375], [-71.647216796875, 19.195947265624994]]]}, "type": "Feature", "properties": {"name": "Dominican Republic"}}, {"geometry": {"type": "Polygon", "coordinates": [[[8.207617187500006, 36.518945312499994], [8.318066406250011, 35.654931640624994], [8.24560546875, 34.73408203125], [7.513867187500011, 34.080517578125], [7.877246093750017, 33.172119140625], [8.333398437500023, 32.543603515624994], [9.044042968750006, 32.07236328125], [9.160253906250006, 31.621337890625], [9.224023437500023, 31.373681640624994], [9.51875, 30.229394531249994], [9.842578125000017, 28.966992187499997], [9.859375, 26.551953125], [9.4482421875, 26.067138671875], [10.000683593750011, 25.332080078125003], [10.255859375, 24.591015625], [11.536914062500017, 24.290820312500003], [11.967871093750006, 23.517871093750003], [9.378710937500017, 21.99140625], [7.481738281250017, 20.873095703125003], [5.836621093750011, 19.479150390624994], [4.227636718750006, 19.142773437499997], [3.40087890625, 18.988427734374994], [3.203710937500006, 19.789697265624994], [1.685449218750023, 20.378369140624997], [1.1455078125, 21.102246093749997], [-1.29296875, 22.696533203125], [-4.822607421874977, 24.99560546875], [-8.683349609375, 27.2859375], [-8.683349609375, 27.656445312499997], [-8.683349609375, 27.900390625], [-8.659912109375, 28.718603515625], [-7.485742187499994, 29.392236328124994], [-6.500878906249994, 29.809130859374996], [-5.448779296874989, 29.956933593749994], [-4.96826171875, 30.465380859374996], [-4.148779296874977, 30.8095703125], [-3.837109374999983, 31.512353515624994], [-2.448388671874994, 32.12998046875], [-1.275341796874983, 32.089013671874994], [-1.16259765625, 32.399169921875], [-1.67919921875, 33.318652343749996], [-1.795605468749983, 34.751904296875], [-2.131787109374983, 34.970849609374994], [-0.426123046874977, 35.8615234375], [0.047949218750006, 35.900537109374994], [1.257226562500023, 36.519580078124996], [2.593359375, 36.60068359375], [3.779003906250011, 36.89619140625], [5.195605468750017, 36.676806640624996], [6.486523437500011, 37.085742187499996], [7.607714843750017, 36.999755859375], [8.207617187500006, 36.518945312499994]]]}, "type": "Feature", "properties": {"name": "Algeria"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-75.28447265624999, -0.10654296875002], [-75.570556640625, -1.53125], [-76.6791015625, -2.562597656249991], [-77.860595703125, -2.981640625000011], [-78.240380859375, -3.472558593750009], [-78.64799804687499, -4.248144531250006], [-79.07626953125003, -4.990625], [-79.638525390625, -4.454882812500031], [-80.293359375, -4.416796875], [-80.303125, -3.374804687499989], [-79.72988281249997, -2.579101562499972], [-80.45009765624997, -2.625976562500028], [-80.770361328125, -2.076660156250028], [-80.90239257812499, -1.078906249999974], [-80.1333984375, -0.006054687499983], [-80.08828124999997, 0.78476562500002], [-78.89965820312503, 1.20625], [-78.85966796874996, 1.455371093750031], [-77.46767578124997, 0.636523437500017], [-76.49462890624997, 0.23544921875002], [-76.31103515624997, 0.448486328124986], [-75.28447265624999, -0.10654296875002]]]}, "type": "Feature", "properties": {"name": "Ecuador"}}, {"geometry": {"type": "Polygon", "coordinates": [[[34.24531250000001, 31.208300781249996], [34.904296875, 29.47734375], [34.39970703125002, 28.01601562499999], [33.54707031250001, 27.898144531249997], [33.959082031250006, 26.6490234375], [35.19414062500002, 24.475146484375003], [35.62470703125001, 24.06601562499999], [35.697851562500006, 22.946191406249994], [36.87138671875002, 21.996728515624994], [33.91845703125, 21.996240234374994], [31.434472656250023, 21.995849609375], [28.036425781250017, 21.995361328125], [24.980273437500017, 21.995849609375], [24.980273437500017, 24.01694335937499], [24.980273437500017, 27.160839843749997], [24.980273437500017, 29.181884765625], [24.726464843750023, 30.2505859375], [25.150488281250006, 31.654980468749997], [27.248046875, 31.377880859374997], [29.072070312500017, 30.830273437499997], [30.395117187500006, 31.4576171875], [31.193945312500006, 31.587597656249997], [32.10175781250001, 31.092822265624996], [34.24531250000001, 31.208300781249996]]]}, "type": "Feature", "properties": {"name": "Egypt"}}, {"geometry": {"type": "Polygon", "coordinates": [[[40.938574218750006, 13.983105468749997], [40.82011718750002, 14.111669921874991], [39.531835937500006, 14.53671875], [38.43144531250002, 14.428613281249994], [37.884179687499994, 14.852294921874972], [36.52431640625005, 14.256835937499986], [36.566015625, 15.362109375], [36.887792968750006, 16.624658203124994], [37.78242187500004, 17.458007812500057], [38.60947265625006, 18.00507812500004], [39.5065429687501, 15.532128906249994], [40.20410156250003, 15.014111328124983], [41.17646484375004, 14.620312500000054], [41.65820312499997, 13.983056640624994], [42.24511718749997, 13.587646484374986], [42.796191406250074, 12.864257812500057], [42.37851562500006, 12.46640625], [40.938574218750006, 13.983105468749997]]]}, "type": "Feature", "properties": {"name": "Eritrea"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-1.794042968749949, 43.407324218750006], [-1.285449218749989, 43.05961914062496], [-0.041162109374994, 42.689111328124966], [1.428320312499977, 42.59589843749998], [1.7060546875, 42.50332031250005], [3.21142578125, 42.43115234375], [3.248046875, 41.94423828125002], [2.082617187500063, 41.287402343750045], [1.032910156250068, 41.06206054687496], [-0.327001953124949, 39.519873046875006], [0.20156250000008, 38.75917968750002], [-0.646777343749989, 38.15185546875003], [-2.111523437499983, 36.77666015624999], [-4.366845703124994, 36.71811523437506], [-6.040673828124937, 36.18842773437498], [-6.492431640624943, 36.95463867187502], [-7.406152343749937, 37.17944335937497], [-7.046044921874937, 38.907031250000045], [-7.44511718749996, 39.53618164062496], [-6.8101562499999, 40.343115234375034], [-6.928466796874972, 41.009130859375006], [-6.2125, 41.53203125], [-6.61826171874992, 41.9423828125], [-8.777148437500017, 41.941064453124994], [-9.235205078124977, 42.97690429687498], [-8.873681640624966, 43.33442382812498], [-7.698144531249994, 43.76455078125005], [-7.261962890624972, 43.594628906249966], [-4.52304687499992, 43.41572265625004], [-1.794042968749949, 43.407324218750006]]]}, "type": "Feature", "properties": {"name": "Spain"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.0125, 59.484277343749966], [27.464453125000034, 58.84130859375], [27.75283203125008, 57.841015624999955], [27.35195312500005, 57.528125], [26.29804687500001, 57.60107421875], [25.66015625, 57.920166015625], [23.767578125000057, 58.36083984374997], [23.494433593750017, 59.19565429687498], [25.50927734374997, 59.63901367187506], [28.0125, 59.484277343749966]]]}, "type": "Feature", "properties": {"name": "Estonia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[38.43144531250002, 14.428613281249994], [39.531835937500006, 14.53671875], [40.82011718750002, 14.111669921874991], [40.938574218750006, 13.983105468749997], [42.378515625, 12.46640625], [41.76650390625002, 11.589111328125], [41.79824218750002, 10.98046875], [42.92275390625002, 10.999316406249989], [42.65957031250002, 10.621386718749989], [43.482519531250006, 9.379492187499991], [44.02285156250002, 8.986035156249997], [46.97822265625001, 7.9970703125], [47.97822265625001, 7.9970703125], [45.93496093750002, 5.997216796874994], [44.940527343750006, 4.912011718749994], [44.028125, 4.950976562499989], [41.88398437500001, 3.977734375], [41.02080078125002, 4.057470703124991], [40.765234375, 4.27304687499999], [39.84218750000002, 3.851464843749994], [39.49443359375002, 3.456103515624989], [38.08613281250001, 3.64882812499999], [37.15458984375002, 4.254541015624994], [36.90556640625002, 4.411474609374991], [36.08193359375002, 4.44970703125], [35.325292968750006, 5.364892578124994], [35.26835937500002, 5.492285156249991], [34.71064453125001, 6.660302734374994], [33.666113281250006, 7.670996093749991], [33.01259765625002, 7.951513671874991], [33.23427734375002, 8.396386718749994], [34.09453125000002, 8.582226562499997], [34.078125, 9.461523437499991], [34.27568359375002, 10.528125], [34.93144531250002, 10.864794921874989], [35.1123046875, 11.816552734374994], [35.59609375000002, 12.537304687499997], [36.107519531250006, 12.726464843749994], [36.52431640625002, 14.2568359375], [37.88417968750002, 14.852294921875], [38.43144531250002, 14.428613281249994]]]}, "type": "Feature", "properties": {"name": "Ethiopia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.96582031250003, 69.02197265625], [28.470703125000057, 68.48837890625], [29.941210937500074, 67.54746093749998], [29.087011718750034, 66.97094726562503], [29.903417968750006, 66.091064453125], [29.60419921875004, 64.968408203125], [30.50390625000003, 64.02060546875], [30.05537109375004, 63.689013671875045], [31.180859375000097, 63.208300781250074], [31.28564453125003, 62.567822265624955], [29.69013671875004, 61.54609375000001], [27.797656250000074, 60.53613281250003], [23.721777343750063, 59.965673828125006], [21.436035156250057, 60.596386718749955], [21.605957031250057, 61.59155273437503], [21.103613281250034, 62.622949218749994], [23.248730468750068, 63.89614257812505], [25.34785156250004, 65.47924804687497], [24.15546875000004, 65.80527343750006], [23.63886718750004, 67.95439453125002], [20.622167968750006, 69.036865234375], [22.410937500000074, 68.719873046875], [24.94140625000003, 68.59326171875006], [26.011523437500074, 69.65263671875005], [27.889941406250045, 70.06166992187497], [29.14160156250003, 69.67143554687505], [28.96582031250003, 69.02197265625]]]}, "type": "Feature", "properties": {"name": "Finland"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[178.28017578124994, -17.37197265625001], [178.66767578125004, -18.080859375], [177.8470703125, -18.254882812500014], [177.32138671875, -18.077539062500037], [177.61796875000007, -17.461035156250034], [178.28017578124994, -17.37197265625001]]], [[[179.99921875000004, -16.168554687499977], [179.9279296875001, -16.74443359374996], [179.00683593750003, -16.90019531249999], [178.80507812499994, -16.631445312500034], [180.0, -16.15292968749999], [179.99921875000004, -16.168554687499977]]]]}, "type": "Feature", "properties": {"name": "Fiji"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-58.85019531249995, -51.26992187499998], [-57.83818359374993, -51.70917968750003], [-59.06801757812502, -52.17304687500003], [-58.85019531249995, -51.26992187499998]]]}, "type": "Feature", "properties": {"name": "Falkland Islands"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-51.65253906249998, 4.061279296874972], [-51.990625, 3.702001953124963], [-52.70063476562501, 2.36367187499998], [-54.61625976562499, 2.326757812500006], [-54.19550781249998, 2.817871093750057], [-54.03422851562499, 3.62939453125], [-54.350732421874994, 4.054101562500023], [-54.45219726562496, 5.013476562499989], [-53.84716796875, 5.782226562500014], [-52.899316406249966, 5.425048828124986], [-52.29052734375003, 4.942187500000031], [-51.65253906249998, 4.061279296874972]]], [[[9.480371093750023, 42.80541992187503], [9.550683593750051, 42.12973632812506], [8.80751953125008, 41.58837890625], [8.71308593750004, 42.54975585937501], [9.480371093750023, 42.80541992187503]]], [[[5.789746093749983, 49.53828125000001], [6.344335937500006, 49.45273437499998], [6.735449218750006, 49.16059570312498], [8.134863281250006, 48.97358398437498], [7.584179687499983, 48.064306640625006], [7.615625, 47.59272460937504], [6.429003906250017, 46.832275390625], [7.021093750000034, 45.92578124999997], [6.627734375000017, 45.11796874999999], [6.96728515625, 44.280029296875], [7.4931640625, 43.767138671875045], [6.115917968750011, 43.07236328124998], [4.052636718750023, 43.59306640625002], [3.051757812500057, 42.915136718750006], [3.21142578125, 42.43115234375], [1.7060546875, 42.50332031250005], [1.428320312499977, 42.59589843749998], [-0.041162109374994, 42.689111328124966], [-1.285449218749989, 43.05961914062496], [-1.794042968749949, 43.407324218750006], [-1.484863281249943, 43.56376953124999], [-1.066015624999949, 45.80566406250003], [-2.01889648437492, 47.03764648437502], [-3.158837890624994, 47.694677734375034], [-4.312109374999949, 47.82290039062502], [-4.72075195312496, 48.539892578125006], [-3.231445312499972, 48.84082031250003], [-1.437646484374994, 48.64140624999999], [-1.138525390624977, 49.38789062500001], [-0.163476562499937, 49.296777343749994], [0.186718749999983, 49.703027343749994], [1.245507812500051, 49.99824218750001], [1.579492187500051, 50.73925781249997], [2.52490234375, 51.097119140624955], [2.839746093750023, 50.71176757812498], [5.789746093749983, 49.53828125000001]]]]}, "type": "Feature", "properties": {"name": "France"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Faroe Islands"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Federated States of Micronesia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[13.293554687500006, 2.161572265624997], [13.274121093750011, 1.241015624999989], [14.180859375000011, 1.370214843749991], [14.434472656250023, 0.811474609374997], [13.884570312500017, 0.190820312499994], [13.860058593750011, -0.203320312500011], [14.480566406250006, -0.618359375000011], [14.383984375000011, -1.890039062500009], [14.08740234375, -2.466894531250006], [12.991992187500017, -2.313378906250009], [11.5751953125, -2.397070312500006], [11.934179687500006, -3.318554687500011], [11.130175781250017, -3.916308593750003], [9.759472656250011, -2.5185546875], [9.265625, -1.825097656250009], [8.821386718750006, -0.708398437500009], [9.296679687500017, -0.351269531250011], [9.676464843750011, 1.07470703125], [11.335351562500023, 0.999707031249997], [11.332324218750017, 1.528369140624989], [11.328710937500006, 2.167431640624997], [13.293554687500006, 2.161572265624997]]]}, "type": "Feature", "properties": {"name": "Gabon"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-6.218017578125, 54.08872070312506], [-7.355175781249955, 54.12124023437502], [-8.118261718749977, 54.41425781250004], [-7.218652343749937, 55.09199218749998], [-6.129150390625028, 55.217382812500034], [-5.470410156249926, 54.500195312499955], [-6.218017578125, 54.08872070312506]]], [[[-3.109667968749932, 58.515478515625034], [-3.99003906249996, 57.95903320312502], [-1.777929687499949, 57.49375], [-2.652734375000023, 56.318261718749966], [-1.655371093749949, 55.57036132812502], [-1.291748046874943, 54.77387695312501], [-0.671386718749943, 54.50390625], [0.55878906250004, 52.96694335937505], [1.656738281249972, 52.753710937500045], [1.558984375000051, 52.08686523437498], [0.205078125, 50.763037109375034], [-3.40458984374996, 50.63242187499998], [-5.342285156249943, 50.24614257812496], [-4.188183593749926, 51.18852539062502], [-5.088085937499926, 51.99589843750002], [-3.980322265624949, 52.54174804687503], [-4.111035156249926, 53.218945312499955], [-2.925097656249989, 53.732763671875006], [-3.957910156249994, 54.780957031249955], [-5.135498046875, 54.857519531250006], [-4.721142578124955, 55.42099609375006], [-5.936767578125, 56.605712890625], [-5.338281250000023, 58.23872070312498], [-4.715429687499949, 58.510009765625], [-3.109667968749932, 58.515478515625034]]]]}, "type": "Feature", "properties": {"name": "United Kingdom"}}, {"geometry": {"type": "Polygon", "coordinates": [[[46.30546875000002, 41.507714843749994], [46.43095703125002, 41.077050781249994], [46.086523437500006, 41.183837890625], [45.28095703125001, 41.449560546875], [44.077246093750006, 41.182519531249994], [43.43339843750002, 41.155517578125], [41.76298828125002, 41.970019531249996], [41.48876953125, 42.659326171874994], [40.02373046875002, 43.48486328125], [41.58056640625, 43.21923828125], [42.419042968750006, 43.22421875], [43.78261718750002, 42.747021484375], [44.87099609375002, 42.756396484374996], [45.7275390625, 42.475048828125], [46.21269531250002, 41.989892578124994], [46.30546875000002, 41.507714843749994]]]}, "type": "Feature", "properties": {"name": "Georgia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Guernsey"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-0.068603515625, 11.115625], [0.362695312500023, 10.236474609374994], [0.261914062500011, 9.49560546875], [0.634765625, 7.353662109374994], [0.525585937500011, 6.850927734374991], [1.187207031250011, 6.089404296874989], [0.259667968750023, 5.75732421875], [-2.001855468749994, 4.762451171875], [-2.815673828125, 5.153027343749997], [-2.754980468749977, 5.432519531249994], [-3.227148437499977, 6.749121093749991], [-2.959082031249977, 7.454541015624997], [-2.505859375, 8.208740234375], [-2.705761718749983, 9.351367187499989], [-2.695849609374989, 9.481347656249994], [-2.829931640624977, 10.998388671874991], [-0.701416015625, 10.988964843749997], [-0.068603515625, 11.115625]]]}, "type": "Feature", "properties": {"name": "Ghana"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-11.389404296875, 12.404394531249991], [-10.677343749999977, 11.8994140625], [-9.82070312499999, 12.04248046875], [-9.043066406249977, 12.40234375], [-8.822021484375, 11.673242187499994], [-8.407470703125, 11.386279296874989], [-7.990625, 10.1625], [-8.136962890625, 9.49570312499999], [-7.950976562499989, 8.786816406249997], [-7.823583984374977, 8.467675781249994], [-7.953125, 8.477734375], [-8.429980468749989, 7.601855468749989], [-8.486425781249977, 7.558496093749994], [-9.11757812499999, 7.215917968749991], [-9.518261718749983, 8.34609375], [-10.283203125, 8.485156249999989], [-10.677343749999977, 8.400585937499997], [-10.758593749999989, 9.385351562499991], [-11.205664062499977, 9.977734375], [-12.142333984375, 9.87539062499999], [-12.557861328125, 9.704980468749994], [-12.958789062499989, 9.263330078124994], [-14.426904296874994, 10.248339843749989], [-14.775927734374989, 10.931640625], [-14.682958984374977, 11.508496093749997], [-13.953222656249977, 11.664599609374989], [-13.759765625, 12.262353515624994], [-13.729248046875, 12.673925781249991], [-12.291210937499983, 12.328027343749994], [-11.389404296875, 12.404394531249991]]]}, "type": "Feature", "properties": {"name": "Guinea"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Gambia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-13.759765625, 12.262353515624994], [-13.953222656249977, 11.664599609374989], [-14.682958984374949, 11.508496093749983], [-15.04301757812496, 10.940136718750011], [-15.501904296875011, 11.723779296874966], [-16.138427734375, 11.917285156250045], [-16.144189453124937, 12.457421875000037], [-15.19609375, 12.679931640624986], [-13.729248046875, 12.673925781250006], [-13.759765625, 12.262353515624994]]]}, "type": "Feature", "properties": {"name": "Guinea Bissau"}}, {"geometry": {"type": "Polygon", "coordinates": [[[11.332324218750017, 1.528369140624989], [11.335351562500023, 0.999707031250011], [9.385937500000068, 1.13925781250002], [9.979882812499994, 2.167773437500045], [11.328710937500006, 2.167431640624969], [11.332324218750017, 1.528369140624989]]]}, "type": "Feature", "properties": {"name": "Equatorial Guinea"}}, {"geometry": {"type": "Polygon", "coordinates": [[[26.03896484375008, 40.726757812499955], [25.10449218750003, 40.994726562500006], [24.38378906250003, 40.91274414062502], [23.66455078125003, 40.22382812499998], [22.629492187500034, 40.49555664062501], [23.25292968750003, 38.66123046875006], [23.073535156250074, 36.77495117187499], [21.58291015625005, 37.080957031249994], [20.382421875, 39.802636718749994], [20.4560546875, 40.065576171874994], [20.881640625000017, 40.467919921874994], [20.95576171875001, 40.775292968749994], [21.929492187500045, 41.10742187499997], [24.05605468750005, 41.527246093749966], [25.251171875000068, 41.243554687499994], [26.320898437500034, 41.716552734375], [26.62490234375008, 41.401757812499994], [26.03896484375008, 40.726757812499955]]]}, "type": "Feature", "properties": {"name": "Greece"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Grenada"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-52.73115234375001, 69.94472656250005], [-53.57841796874996, 69.25664062500002], [-54.804101562499994, 69.63051757812497], [-54.83046875000002, 70.16108398437498], [-52.73115234375001, 69.94472656250005]]], [[[-29.952880859375, 83.56484374999997], [-21.520654296874966, 82.59541015625001], [-21.14658203124995, 81.695166015625], [-17.226220703125023, 81.430419921875], [-15.555517578125006, 81.83359374999998], [-11.528808593749972, 81.42402343750001], [-14.503564453124994, 80.76328125000006], [-19.429199218749943, 80.25771484375], [-19.07495117187497, 79.15234375000006], [-20.955664062499977, 78.55502929687503], [-20.23193359374997, 77.36840820312497], [-21.56909179687497, 76.29370117187506], [-19.508984374999926, 75.75751953124995], [-20.484960937500006, 75.31425781249999], [-19.22509765625, 74.4794921875], [-21.129443359374932, 74.11088867187505], [-20.509667968749966, 73.49287109375001], [-22.18505859374997, 73.26987304687506], [-22.29321289062497, 72.11953125], [-21.522656249999926, 70.52622070312503], [-23.327832031249983, 70.45097656250007], [-24.377001953124932, 71.14638671875], [-27.68876953124999, 70.99345703124999], [-26.747265624999926, 70.47553710937501], [-23.173242187499937, 70.114599609375], [-23.08823242187492, 69.882958984375], [-26.3414062499999, 68.70214843750003], [-33.15698242187497, 67.62670898437506], [-34.101660156250034, 66.72592773437503], [-36.37919921874996, 65.830810546875], [-39.57792968749996, 65.34077148437501], [-40.655468749999926, 64.91533203125002], [-40.550390625000034, 63.72524414062505], [-42.15297851562502, 62.568457031250006], [-42.110205078125006, 61.857226562500074], [-43.32011718749993, 59.928125], [-45.37924804687495, 60.20292968750002], [-46.04663085937503, 60.61572265625], [-47.79624023437495, 60.828857421875], [-48.92207031249998, 61.27744140624998], [-49.553466796875, 62.23271484374999], [-51.46884765624995, 63.64228515625001], [-52.259033203125, 65.154931640625], [-53.634716796874955, 66.413671875], [-53.88442382812502, 67.13554687499999], [-53.03945312500002, 68.61088867187499], [-51.24941406250002, 68.73994140625001], [-50.5, 69.935791015625], [-54.01445312499996, 70.42167968750005], [-51.130078124999955, 70.97172851562502], [-55.59404296874999, 71.55351562500005], [-55.60170898437494, 72.453466796875], [-54.737939453124994, 72.87250976562501], [-56.10405273437496, 73.55815429687499], [-56.80131835937499, 74.67167968749999], [-58.51621093749995, 75.68906250000006], [-63.438867187499994, 76.33945312500003], [-66.82617187499997, 75.96879882812502], [-69.372900390625, 76.331884765625], [-70.86284179687496, 77.175439453125], [-69.35136718749999, 77.467138671875], [-72.81806640624995, 78.1943359375], [-72.39560546874995, 78.50434570312501], [-65.96787109374998, 79.13237304687507], [-64.79228515624993, 80.00063476562502], [-66.99589843749999, 80.41298828125002], [-58.717382812500006, 82.09306640624999], [-48.861181640625006, 82.40541992187502], [-43.19458007812503, 83.25512695312503], [-29.952880859375, 83.56484374999997]]]]}, "type": "Feature", "properties": {"name": "Greenland"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-89.2328125, 15.888671875], [-88.22832031249999, 15.72900390625], [-89.22236328125, 14.866064453124991], [-89.36259765624999, 14.416015625], [-90.09521484375, 13.736523437499997], [-91.14604492187499, 13.925585937500003], [-92.23515624999999, 14.54541015625], [-92.187158203125, 15.320898437499991], [-91.433984375, 16.070458984374994], [-90.44716796875, 16.072705078124997], [-90.975830078125, 16.867822265624994], [-90.98916015625, 17.81640625], [-89.16147460937499, 17.81484375], [-89.2328125, 15.888671875]]]}, "type": "Feature", "properties": {"name": "Guatemala"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Guam"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-57.194775390625, 5.5484375], [-57.711083984374994, 4.991064453124991], [-58.05449218749999, 4.171923828124989], [-56.704345703125, 2.036474609374991], [-56.4828125, 1.942138671875], [-56.96953124999999, 1.91640625], [-57.03759765625, 1.936474609374997], [-58.34067382812499, 1.587548828124994], [-58.8625, 1.20361328125], [-59.75620117187499, 1.900634765625], [-59.9943359375, 2.689990234374989], [-59.854394531249994, 3.5875], [-59.69970703125, 4.353515625], [-59.990673828125, 5.082861328124991], [-60.742138671875, 5.202050781249994], [-61.37680664062499, 5.906982421875], [-61.14560546874999, 6.69453125], [-60.39501953125, 6.945361328124989], [-60.71923828125, 7.498681640624994], [-59.66611328124999, 8.362597656249989], [-58.626611328124994, 7.5458984375], [-58.48056640624999, 7.038134765624989], [-57.19023437499999, 6.097314453124994], [-57.194775390625, 5.5484375]]]}, "type": "Feature", "properties": {"name": "Guyana"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Hong Kong S.A.R."}}, {"geometry": null, "type": "Feature", "properties": {"name": "Heard Island and McDonald Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-83.635498046875, 14.876416015624997], [-84.64594726562498, 14.661083984375011], [-85.78671874999995, 13.844433593749997], [-86.73364257812494, 13.763476562500017], [-86.710693359375, 13.31337890624998], [-87.337255859375, 12.979248046875028], [-87.781884765625, 13.521386718749994], [-89.05712890625, 14.329150390624974], [-89.22236328125001, 14.86606445312502], [-88.22832031249999, 15.729003906249972], [-87.61816406249994, 15.909863281249955], [-86.35664062499998, 15.783203125], [-85.78398437500002, 16.002832031249966], [-84.26142578124998, 15.822607421875034], [-83.635498046875, 14.876416015624997]]]}, "type": "Feature", "properties": {"name": "Honduras"}}, {"geometry": {"type": "Polygon", "coordinates": [[[18.905371093750006, 45.931738281250034], [19.007128906250045, 44.86918945312502], [18.66259765625, 45.07744140624999], [16.53066406250008, 45.21669921875002], [15.736621093750045, 44.76582031250001], [17.585156250000068, 42.93837890625005], [16.903125, 43.392431640625006], [15.941503906250063, 43.65664062499999], [15.122949218749994, 44.256787109374955], [14.854589843750034, 45.08100585937501], [13.878710937500017, 45.428369140624994], [14.95458984375, 45.499902343749994], [16.1064453125, 46.382226562499994], [16.748046875000057, 46.41640625000002], [17.96386718750003, 45.770263671875], [18.905371093750006, 45.931738281250034]]]}, "type": "Feature", "properties": {"name": "Croatia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-71.647216796875, 19.195947265624994], [-72.05986328124993, 18.228564453125017], [-73.38515625000002, 18.251171874999983], [-73.88496093749998, 18.041894531249994], [-74.22773437499998, 18.662695312499977], [-72.78935546874996, 18.434814453125], [-72.63701171875002, 19.90087890625], [-71.75742187499998, 19.68818359375001], [-71.647216796875, 19.195947265624994]]]}, "type": "Feature", "properties": {"name": "Haiti"}}, {"geometry": {"type": "Polygon", "coordinates": [[[22.1318359375, 48.405322265624996], [22.253710937500017, 48.407373046874994], [22.582421875000023, 48.134033203125], [22.87666015625001, 47.947265625], [22.290625, 47.727832031249996], [21.151953125, 46.304345703124994], [20.241796875, 46.10859375], [19.61347656250001, 46.169189453125], [19.421289062500023, 46.064453125], [17.9638671875, 45.770263671875], [16.516210937500006, 46.499902343749994], [16.093066406250017, 46.86328125], [17.147363281250023, 48.00595703125], [17.76191406250001, 47.770166015624994], [19.89863281250001, 48.13134765625], [20.490039062500017, 48.526904296874996], [22.1318359375, 48.405322265624996]]]}, "type": "Feature", "properties": {"name": "Hungary"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[120.0125, -9.374707031250026], [120.83261718750006, -10.0375], [120.4391601562501, -10.294042968749991], [119.60107421874997, -9.773535156250006], [120.0125, -9.374707031250026]]], [[[125.06816406250002, -9.511914062499997], [124.42753906250002, -10.14863281250004], [123.85761718750004, -10.34355468749996], [123.5892578125, -9.966796875000028], [124.0363281250001, -9.341601562500031], [124.44443359375012, -9.190332031250023], [124.92226562500005, -8.942480468749977], [125.06816406250002, -9.511914062499997]]], [[[122.7829101562501, -8.61171875], [121.03525390625012, -8.935449218749966], [119.80791015625002, -8.697656250000023], [120.61025390625005, -8.24042968750004], [121.44453125000004, -8.57783203125004], [121.96650390625004, -8.455175781250006], [122.7829101562501, -8.61171875]]], [[[118.24238281250004, -8.317773437499994], [118.98779296875003, -8.33769531249996], [119.00625, -8.749609375000034], [117.06132812500002, -9.099023437499994], [116.83505859375012, -8.532421875000026], [118.24238281250004, -8.317773437499994]]], [[[138.53535156250004, -8.273632812499969], [137.68515625000012, -8.262207031249943], [138.00751953125004, -7.641601562499986], [138.76982421875002, -7.390429687499974], [138.98906250000002, -7.696093749999989], [138.53535156250004, -8.273632812499969]]], [[[107.37392578125005, -6.007617187499989], [108.29501953125012, -6.265039062500037], [108.67783203125006, -6.790527343749972], [110.42626953124997, -6.947265625000028], [110.73691406250006, -6.472363281249997], [112.53925781250004, -6.926464843749955], [112.79453125000012, -7.55244140625004], [114.07070312500005, -7.633007812500011], [114.38691406250004, -8.405175781250037], [113.25332031250005, -8.286718749999963], [112.67880859375006, -8.409179687499957], [110.60722656250002, -8.149414062499972], [110.03867187500006, -7.890527343749994], [108.74121093749997, -7.667089843750034], [107.91748046875003, -7.724121093750014], [106.63144531250006, -7.415527343750028], [106.51972656250004, -7.053710937499943], [105.48369140625007, -6.781542968750017], [106.075, -5.914160156249963], [107.37392578125005, -6.007617187499989]]], [[[126.86113281250007, -3.087890624999986], [127.22958984375006, -3.633007812500011], [126.68632812500007, -3.823632812500037], [126.02646484375012, -3.17050781250002], [126.86113281250007, -3.087890624999986]]], [[[129.75468750000007, -2.865820312500034], [129.844140625, -3.327148437499957], [128.41923828125002, -3.416015624999943], [128.19853515625002, -2.865917968749969], [129.75468750000007, -2.865820312500034]]], [[[106.04570312500002, -1.669433593750014], [106.54677734375005, -3.055566406249966], [105.99873046875004, -2.824902343749955], [105.58544921875003, -1.526757812499994], [106.04570312500002, -1.669433593750014]]], [[[140.97343750000007, -2.609765625], [140.97353515625, -2.803417968750026], [140.97519531250006, -6.90537109375002], [140.97617187500012, -9.11875], [139.93476562500004, -8.101171875], [138.85615234375004, -8.145117187499991], [139.08798828125012, -7.587207031250017], [138.86455078125007, -6.858398437499943], [138.43867187500004, -6.343359375], [138.2521484375001, -5.688183593750026], [137.75908203125007, -5.256152343750017], [135.97968750000004, -4.530859374999963], [135.19560546875007, -4.450683593749972], [133.653125, -3.364355468749991], [133.24873046875004, -4.062304687499989], [132.34824218750006, -2.97509765625], [133.19101562500006, -2.43779296874996], [132.30761718749997, -2.24228515625002], [131.93037109375004, -1.559667968750034], [131.29375, -1.393457031250009], [131.2572265625, -0.855468750000014], [132.62509765625006, -0.358886718750014], [133.97451171875, -0.744335937500026], [134.25957031250007, -1.362988281250026], [134.15566406250005, -2.195214843750023], [135.03740234375002, -3.33310546875002], [135.48662109375002, -3.34511718749998], [137.1234375, -1.840917968749963], [137.80625000000012, -1.483203125], [139.78955078125003, -2.34824218750002], [140.97343750000007, -2.609765625]]], [[[124.88886718750004, 0.995312500000011], [124.42753906250002, 0.470605468750051], [123.75380859375, 0.305517578124991], [123.08251953125003, 0.485839843750043], [120.34902343750005, 0.449218750000043], [120.01328125000012, -0.196191406249994], [120.09746093750002, -0.649902343749972], [120.66738281250005, -1.370117187499972], [121.03369140624997, -1.406542968750017], [121.51933593750007, -0.855566406250034], [122.88876953125006, -0.755175781250003], [122.50664062500002, -1.347851562499955], [121.71875, -1.862792968749972], [122.39902343750006, -3.200878906249997], [122.25292968749997, -3.620410156250017], [122.87734375, -4.109082031250011], [121.91699218749997, -4.847949218749989], [121.61806640625, -4.092675781249952], [120.9142578125001, -3.555761718749991], [121.0521484375, -2.751660156249955], [120.25410156250004, -3.052832031250034], [120.43662109375012, -3.70732421874996], [120.31162109375006, -5.541601562500006], [119.71728515625003, -5.693359375000014], [119.3761718750001, -5.424804687500014], [119.62363281250006, -4.034375], [118.99462890624997, -3.537597656250028], [118.78369140624997, -2.764746093749963], [119.32187500000012, -1.929687500000014], [119.308984375, -1.408203125], [119.7716796875001, -0.483593750000011], [119.80927734375004, 0.238671875000051], [120.26953125000003, 0.970800781249991], [120.91210937499997, 1.288964843749966], [122.89248046875005, 0.85], [124.88886718750004, 0.995312500000011]]], [[[117.5744140625001, 4.17060546875004], [117.16640625, 3.591992187500026], [118.0666015625001, 2.317822265624969], [117.8646484375, 1.968408203125009], [118.98496093750006, 0.982128906249983], [117.74511718749997, 0.72963867187498], [117.52216796875004, 0.235888671875017], [117.5625, -0.770898437500009], [116.55449218750007, -1.473925781249974], [116.56542968749997, -2.299707031249994], [115.95615234375012, -3.595019531250003], [114.6935546875001, -4.169726562500017], [114.53613281249997, -3.494433593750031], [113.52597656250006, -3.184082031249943], [112.28496093750002, -3.32099609375004], [111.82304687500007, -3.057226562499949], [110.2326171875001, -2.925097656250031], [110.01923828125004, -1.398828124999952], [109.160546875, -0.494921875000017], [108.94453125000004, 0.355664062499997], [109.07587890625004, 1.495898437500031], [109.62890625000003, 2.027539062499983], [109.65400390625004, 1.614892578125023], [110.50576171875005, 0.861962890625023], [111.76972656250004, 0.999462890624969], [112.47617187500006, 1.559082031250028], [113.6222656250001, 1.2359375], [114.54589843750003, 1.467138671875034], [115.45439453125002, 3.034326171875009], [115.56845703125006, 3.938769531249974], [115.89619140625004, 4.348681640624989], [117.10058593750003, 4.337060546875023], [117.5744140625001, 4.17060546875004]]], [[[96.49257812500005, 5.229345703124991], [97.54716796875002, 5.205859375], [98.3073242187501, 4.09287109375002], [99.73232421875005, 3.183056640625026], [100.45703124999997, 2.257421875], [101.04619140625002, 2.257470703125023], [101.78476562500012, 1.621386718750017], [102.46923828124997, 0.779296875000057], [103.47890625000005, 0.48017578125004], [103.42851562500007, -0.19179687499998], [103.72109375, -0.886718749999986], [104.36054687500004, -1.038378906249974], [104.66845703124997, -2.385546874999974], [105.39697265624997, -2.380175781249946], [106.0443359375, -3.10625], [105.84375, -3.61367187499998], [105.81611328125004, -5.6765625], [105.34941406250007, -5.549511718750011], [104.60156249999997, -5.90458984374996], [103.8314453125, -5.079589843750028], [102.53769531250006, -4.152148437499989], [101.57861328124997, -3.166992187500014], [100.848046875, -2.143945312499966], [100.30820312500006, -0.82666015625], [99.59765624999997, 0.102441406250009], [99.15917968749997, 0.351757812499997], [98.56425781250002, 1.902148437500017], [97.70078125000006, 2.358544921875009], [97.59082031249997, 2.846582031250037], [96.9689453125001, 3.575146484374969], [96.44472656250005, 3.81630859374998], [95.49472656250006, 4.761376953125051], [95.39609375000012, 5.628808593750023], [96.49257812500005, 5.229345703124991]]]]}, "type": "Feature", "properties": {"name": "Indonesia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Isle of Man"}}, {"geometry": {"type": "Polygon", "coordinates": [[[78.71972656250009, 31.887646484374983], [78.69345703125006, 31.740380859374994], [78.7550781250001, 31.55029296875], [78.74355468750005, 31.323779296875017], [79.66425781250004, 30.96523437499999], [79.92451171875004, 30.888769531250034], [80.20712890625006, 30.683740234375023], [80.19121093750002, 30.56840820312496], [80.87353515625003, 30.290576171875045], [80.98544921875006, 30.23710937499999], [80.40185546875003, 29.730273437500102], [80.07070312500005, 28.830175781250063], [81.85263671875018, 27.867089843750136], [83.28974609375004, 27.370996093750136], [84.09101562499993, 27.491357421875136], [85.29296875000009, 26.741015625000045], [88.05488281250004, 26.43002929687492], [88.10898437499995, 27.93300781250005], [88.57792968750002, 28.093359375000034], [88.80371093750003, 28.006933593750034], [88.85761718750015, 26.961474609375017], [89.76386718750004, 26.7015625], [91.99833984375013, 26.85498046875], [92.0833984375, 27.290625], [91.63193359375012, 27.759960937499983], [92.41484375000002, 27.82460937499999], [92.65253906250004, 28.093359375000034], [92.70185546875004, 28.147119140624994], [93.36054687500004, 28.654052734375057], [93.76074218750003, 28.729785156250017], [94.01328125000006, 28.90751953124999], [94.46806640625007, 29.216210937499994], [94.99882812500002, 29.14916992187503], [95.27910156250002, 29.04956054687497], [95.42021484375007, 29.054296875000063], [95.49375000000012, 29.137011718750045], [96.23496093750006, 29.245800781249983], [96.18085937500004, 29.11767578125], [96.14140625000007, 28.963476562500034], [96.58085937500007, 28.763671875], [96.32988281250002, 28.496826171875], [96.3890625, 28.36791992187503], [96.65283203125003, 28.44975585937499], [97.30273437499997, 28.08598632812496], [97.34355468750002, 27.982324218749994], [97.04970703125005, 27.760009765625], [96.96279296875, 27.698291015625017], [96.79785156249997, 27.29619140624999], [96.19082031250005, 27.26127929687499], [95.20146484375007, 26.641406250000017], [94.99199218750002, 25.77045898437504], [94.66777343750007, 25.458886718749966], [94.70371093750012, 25.097851562499955], [94.49316406250003, 24.637646484374983], [94.37724609375002, 24.473730468750006], [94.07480468750006, 23.8720703125], [93.68339843750007, 24.00654296875004], [93.45214843750003, 23.987402343750034], [93.32626953125006, 24.064208984375057], [93.36601562500007, 23.132519531249955], [93.34941406250007, 23.08496093750003], [93.20390625000002, 23.03701171875005], [93.16201171875, 22.360205078125006], [93.07060546875002, 22.20942382812501], [92.77138671875, 22.104785156250017], [92.5612304687501, 22.04804687500001], [92.49140625000004, 22.685400390625006], [92.46445312500006, 22.734423828125045], [92.36162109375002, 22.929003906250074], [92.33378906250002, 23.242382812499955], [92.04404296875006, 23.677783203125017], [91.75097656250003, 23.053515625000017], [91.43623046875004, 23.19990234375001], [91.359375, 23.06835937500003], [91.35019531250012, 24.06049804687501], [91.72656250000003, 24.20507812499997], [92.06416015625004, 24.374365234375006], [92.11748046875002, 24.493945312500017], [92.22666015625012, 24.77099609374997], [92.38496093750004, 24.848779296875023], [92.04970703125016, 25.16948242187499], [90.61308593750002, 25.16772460937497], [90.11962890625003, 25.21997070312497], [89.86630859375012, 25.293164062499955], [89.81406250000006, 25.305371093749955], [89.80087890625012, 25.33613281250001], [89.82490234375004, 25.56015625], [89.57275390625003, 26.13232421875003], [89.01865234375012, 26.410253906249977], [88.95195312500002, 26.412109375], [88.97041015625004, 26.250878906250023], [88.94072265625002, 26.24536132812497], [88.68281250000004, 26.291699218749983], [88.35146484375005, 26.482568359374966], [88.38623046875003, 26.471533203125034], [88.44042968749997, 26.369482421875034], [88.33398437499997, 26.257519531249955], [88.1066406250001, 25.841113281250045], [88.14746093749997, 25.811425781250023], [88.76914062500006, 25.490478515625], [88.85478515625002, 25.333544921875017], [88.94414062500002, 25.290771484375], [88.92978515625012, 25.222998046875063], [88.57382812500006, 25.18789062499999], [88.14550781250003, 24.485791015624955], [88.225, 24.460644531249983], [88.3375, 24.45385742187503], [88.49853515625003, 24.34663085937504], [88.69765625, 23.493017578125034], [88.72441406250002, 23.254980468750034], [88.89970703125002, 22.843505859375057], [88.92070312500002, 22.632031249999955], [89.05, 22.274609374999983], [89.05166015625, 21.654101562500045], [87.94843749999993, 21.825439453124943], [87.10068359375006, 21.500781250000074], [86.97548828125005, 20.70014648437501], [86.27949218750021, 19.919433593749943], [85.575, 19.69291992187499], [84.77099609375009, 19.125390625000023], [84.10410156250018, 18.29267578125001], [82.35957031250004, 17.09619140624997], [82.25878906250014, 16.55986328124996], [81.23857421875013, 16.263964843750074], [80.97871093750004, 15.758349609375074], [80.29345703125014, 15.710742187499989], [80.0534179687501, 15.074023437499932], [80.34238281250006, 13.361328125000071], [79.85849609375018, 11.988769531250043], [79.83818359375002, 10.322558593750045], [79.39052734375005, 10.305957031250045], [78.97958984375018, 9.268554687500085], [78.19248046874995, 8.890869140625057], [78.06015625000006, 8.384570312499932], [77.51757812500003, 8.078320312500068], [76.96689453125012, 8.407275390624946], [76.32460937500016, 9.452099609374997], [76.34648437500002, 9.922119140625], [75.72382812500015, 11.361767578125026], [75.1966796875, 12.057519531250009], [74.77050781250009, 13.077343750000125], [74.38222656250005, 14.494726562500048], [73.47607421875003, 16.05424804687496], [72.87089843750019, 18.683056640624955], [72.66777343750019, 19.83095703125005], [72.81386718750011, 21.117187500000085], [72.33261718750012, 22.270214843749955], [72.01523437500012, 21.155712890625097], [71.0246093750001, 20.73886718750009], [70.12734375, 21.094677734375097], [69.00878906250009, 22.196777343750114], [70.17724609375014, 22.57275390624997], [68.64072265625006, 23.189941406250114], [68.16503906250009, 23.857324218749994], [68.72812500000012, 24.265625], [69.71621093750016, 24.172607421875114], [71.04785156250003, 24.687744140625085], [70.65205078125004, 25.422900390625102], [70.10019531250006, 25.91005859375005], [70.14921875000002, 26.347558593749994], [69.47001953125002, 26.804443359375], [69.56796875, 27.174609375000102], [70.4037109375, 28.025048828124994], [70.73740234374995, 27.729003906250057], [71.8703125000001, 27.9625], [72.34189453125006, 28.751904296875097], [72.90332031250003, 29.02875976562501], [73.38164062500013, 29.934375], [74.63281250000014, 31.034667968750114], [74.50996093750015, 31.712939453125074], [75.33349609374997, 32.279199218749994], [74.65781250000006, 32.518945312499966], [73.99423828125006, 33.24218750000006], [74.15, 33.506982421874994], [73.96123046875007, 34.653466796874994], [74.30039062500006, 34.76538085937506], [75.70917968750004, 34.50307617187508], [76.5944335937501, 34.73583984375006], [77.79941406250006, 35.49589843750002], [78.07578125000006, 35.13491210937502], [78.15849609375002, 34.94648437499998], [78.32695312500007, 34.60639648437498], [78.86484375000006, 34.39033203125001], [78.93642578125, 34.35195312500002], [78.72666015625006, 34.013378906249955], [78.78378906250006, 33.80878906250004], [78.86503906250002, 33.43110351562501], [78.94843750000004, 33.346533203125006], [79.1125, 33.22626953125001], [79.13515625000005, 33.17192382812496], [79.10283203125007, 33.05253906249996], [79.14550781250003, 33.00146484375006], [79.16992187500003, 32.497216796874994], [78.75351562500012, 32.49926757812506], [78.73671875, 32.55839843750002], [78.38964843749997, 32.51987304687498], [78.41748046874997, 32.466699218749994], [78.4552734375001, 32.30034179687502], [78.49589843750002, 32.21577148437504], [78.71972656250009, 31.887646484374983]]]}, "type": "Feature", "properties": {"name": "India"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Indian Ocean Territories"}}, {"geometry": null, "type": "Feature", "properties": {"name": "British Indian Ocean Territory"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-6.218017578125, 54.08872070312506], [-6.027392578124989, 52.927099609375006], [-6.561083984374989, 52.18881835937498], [-7.527294921874926, 52.09887695312503], [-8.813427734374926, 51.584912109374955], [-9.955810546874972, 52.13666992187501], [-9.299218749999966, 53.09755859375002], [-9.795410156249972, 53.39497070312504], [-9.995947265624977, 54.27602539062502], [-8.623144531249977, 54.346875], [-8.274609374999955, 55.146289062500045], [-7.218652343749937, 55.09199218749998], [-8.118261718749977, 54.41425781250004], [-7.355175781249955, 54.12124023437502], [-6.218017578125, 54.08872070312506]]]}, "type": "Feature", "properties": {"name": "Ireland"}}, {"geometry": {"type": "Polygon", "coordinates": [[[46.1144531250001, 38.877783203125034], [46.490625, 38.90668945312498], [47.772851562499994, 39.64858398437505], [48.59267578125005, 38.41108398437498], [48.86875, 38.43549804687498], [49.08095703125005, 37.667578125000034], [50.13046875, 37.407128906249994], [51.11855468750005, 36.742578124999966], [52.19013671875004, 36.62172851562505], [54.0171875, 36.952490234375034], [53.91416015625006, 37.34355468750002], [54.745214843750006, 37.501904296874955], [55.075585937499994, 37.90249023437502], [56.440625, 38.249414062499994], [59.240820312500006, 37.52075195312497], [60.34130859375003, 36.63764648437501], [61.11962890625003, 36.64257812500003], [61.26201171875002, 35.61958007812498], [61.08007812499997, 34.85561523437505], [60.48574218750005, 34.09477539062502], [60.4859375, 33.7119140625], [60.82929687500004, 32.24941406250005], [60.854101562500006, 31.483251953125006], [61.66015625000003, 31.382421874999977], [61.78417968749997, 30.831933593750023], [60.84335937500006, 29.85869140624999], [61.15214843750002, 29.542724609375], [61.8898437500001, 28.546533203124994], [62.7625, 28.202050781249994], [62.782324218750006, 27.800537109375], [62.75273437500002, 27.265625], [63.168066406250006, 26.66557617187496], [62.31230468750002, 26.490869140624994], [61.8698242187501, 26.242431640625], [61.41220703125006, 25.102099609375017], [57.334570312500006, 25.791552734375074], [56.98222656250002, 26.905468749999983], [56.3561523437501, 27.20024414062499], [54.89580078125002, 26.55668945312499], [53.70576171875004, 26.72558593750003], [52.475878906250074, 27.61650390624999], [51.27890625, 28.13134765624997], [50.64960937500004, 29.420068359374966], [49.9831054687501, 30.209375], [48.54648437500006, 29.962353515624955], [47.679492187500074, 31.00239257812501], [47.829980468749994, 31.79443359375], [47.3712890625001, 32.42373046875002], [46.37705078125006, 32.92924804687499], [45.39707031250006, 33.970849609374994], [45.678125, 34.798437500000034], [46.13378906249997, 35.127636718749955], [45.36162109375002, 36.015332031249955], [44.76513671875003, 37.142431640625006], [44.02324218750002, 39.37744140625006], [44.81718750000002, 39.65043945312496], [45.4796875000001, 39.00625], [46.1144531250001, 38.877783203125034]]]}, "type": "Feature", "properties": {"name": "Iran"}}, {"geometry": {"type": "Polygon", "coordinates": [[[47.14824218750002, 30.0009765625], [46.3564453125, 29.063671875], [44.69082031250002, 29.20234375], [42.07441406250001, 31.080371093749996], [40.36933593750001, 31.93896484375], [39.14541015625002, 32.12451171875], [38.773535156250006, 33.372216796874994], [40.689453125, 34.33203125], [41.19472656250002, 34.768994140625], [41.41679687500002, 36.5146484375], [42.358984375, 37.10859375], [42.77460937500001, 37.371875], [44.73095703125, 37.165283203125], [45.36162109375002, 36.01533203125], [46.1337890625, 35.12763671875], [45.678125, 34.7984375], [45.397070312500006, 33.970849609374994], [46.377050781250006, 32.929248046874996], [47.37128906250001, 32.423730468749994], [47.82998046875002, 31.79443359375], [47.67949218750002, 31.002392578124997], [48.01494140625002, 30.465625], [47.14824218750002, 30.0009765625]]]}, "type": "Feature", "properties": {"name": "Iraq"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-15.543115234374994, 66.228515625], [-13.616015624999989, 65.487158203125], [-14.547070312499983, 64.445947265625], [-18.65361328124999, 63.406689453125], [-20.198144531249994, 63.555810546874994], [-21.832763671875, 64.205419921875], [-22.68398437499999, 65.0263671875], [-24.223974609374977, 65.48720703125], [-23.527929687499977, 66.164404296875], [-22.426123046874977, 66.430126953125], [-21.303466796875, 65.87646484375], [-18.777539062499983, 66.168798828125], [-15.543115234374994, 66.228515625]]]}, "type": "Feature", "properties": {"name": "Iceland"}}, {"geometry": {"type": "Polygon", "coordinates": [[[35.78730468750001, 32.734912109374996], [35.55146484375001, 32.3955078125], [35.303808593750006, 32.512939453125], [34.88046875, 31.3681640625], [35.45058593750002, 31.479296875], [34.97343750000002, 29.555029296875], [34.904296875, 29.47734375], [34.24531250000001, 31.208300781249996], [34.52558593750001, 31.525634765625], [35.10859375000001, 33.08369140625], [35.869140625, 33.43173828125], [35.78730468750001, 32.734912109374996]]]}, "type": "Feature", "properties": {"name": "Israel"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[15.576562500000051, 38.220312500000034], [15.099511718750023, 37.45859375], [15.112597656250017, 36.687841796875006], [14.501855468750023, 36.798681640625034], [12.435546874999972, 37.819775390624955], [13.351660156250006, 38.180517578125006], [13.68154296875008, 38.00073242187497], [15.576562500000051, 38.220312500000034]]], [[[9.632031250000011, 40.88203124999998], [9.805273437500063, 40.499560546875045], [9.5625, 39.16601562500006], [8.418164062500068, 39.205712890624966], [8.471289062500063, 40.29267578124998], [8.189941406250028, 40.651611328125], [9.283007812500045, 41.20166015624997], [9.632031250000011, 40.88203124999998]]], [[[13.420996093750006, 46.212304687499994], [13.663476562500023, 45.7919921875], [13.831152343750006, 45.680419921875], [13.206347656250074, 45.771386718749966], [12.27431640625008, 45.44604492187503], [12.396289062500074, 44.223876953125], [13.56416015625004, 43.57128906250003], [14.010449218750011, 42.68955078125006], [15.16875, 41.93403320312498], [15.96406250000004, 41.939453125], [16.01259765625005, 41.435400390625006], [17.954980468749994, 40.65517578125002], [16.92822265625, 40.45805664062502], [16.52998046875004, 39.85966796874996], [17.174609375000017, 38.998095703125045], [16.19677734375, 38.759228515624955], [15.692773437499994, 39.99018554687501], [14.95087890625004, 40.23901367187497], [14.765722656250063, 40.66840820312498], [13.733398437500057, 41.23564453124999], [12.630859374999972, 41.469677734374955], [10.708398437500023, 42.93632812499999], [10.047656250000045, 44.01997070312504], [8.76582031250004, 44.42231445312501], [7.4931640625, 43.767138671875045], [6.96728515625, 44.280029296875], [6.627734375000017, 45.11796874999999], [7.021093750000034, 45.92578124999997], [7.327929687500017, 45.912353515625], [8.081542968750057, 46.25600585937502], [8.818554687500011, 46.0771484375], [8.826757812500006, 46.06103515625], [9.203417968750017, 46.21923828125], [9.939257812500074, 46.36181640625], [10.452832031249983, 46.86494140625001], [11.775683593750017, 46.986083984375], [13.490039062500045, 46.55556640625002], [13.420996093750006, 46.212304687499994]]]]}, "type": "Feature", "properties": {"name": "Italy"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-77.261474609375, 18.45742187499999], [-77.76816406249999, 17.877392578124997], [-78.21669921875, 18.44809570312499], [-77.261474609375, 18.45742187499999]]]}, "type": "Feature", "properties": {"name": "Jamaica"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Jersey"}}, {"geometry": {"type": "Polygon", "coordinates": [[[39.14541015625002, 32.12451171875], [36.95859375, 31.491503906249996], [37.980078125, 30.5], [37.46923828125, 29.995068359374997], [36.75527343750002, 29.866015625], [36.01542968750002, 29.190478515624996], [34.95078125, 29.353515625], [34.97343750000002, 29.555029296875], [35.45058593750002, 31.479296875], [35.55146484375001, 32.3955078125], [35.78730468750001, 32.734912109374996], [36.818359375, 32.317285156249994], [38.773535156250006, 33.372216796874994], [39.14541015625002, 32.12451171875]]]}, "type": "Feature", "properties": {"name": "Jordan"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[131.17460937500007, 33.602587890625045], [131.58300781249997, 33.65239257812496], [131.97666015625012, 32.84394531250001], [131.33720703125007, 31.4046875], [130.58876953125, 31.178515625000017], [130.19443359375012, 32.090771484374955], [130.64052734375005, 32.61923828124998], [129.58007812500003, 33.23627929687501], [130.953125, 33.87202148437504], [131.17460937500007, 33.602587890625045]]], [[[134.35742187500003, 34.25634765625], [134.73886718750012, 33.82050781250001], [134.18164062500003, 33.24721679687502], [133.63203125000004, 33.51098632812503], [132.97724609375004, 32.84199218749998], [132.36591796875004, 33.51245117187506], [132.78427734375006, 33.99243164062506], [134.35742187500003, 34.25634765625]]], [[[141.22929687500007, 41.37265625], [141.97783203125007, 39.84443359374998], [141.90078125, 39.111328125], [140.92792968750004, 37.94960937500002], [140.96835937500012, 37.002050781250006], [140.62734375, 36.50278320312498], [140.87402343749997, 35.72495117187506], [139.79921875000005, 34.956933593749994], [139.24941406250005, 35.27802734375004], [138.57714843750003, 35.08647460937502], [138.18906250000012, 34.596337890624994], [136.88457031250002, 34.80585937500004], [135.91621093750004, 33.561718749999955], [135.4528320312501, 33.55336914062505], [134.74003906250007, 34.765234375], [133.14238281250002, 34.30244140624998], [131.74052734375007, 34.05205078125002], [131.35439453125, 34.41318359375006], [132.92294921875006, 35.511279296875045], [134.21406250000004, 35.539257812499955], [135.17431640625003, 35.74707031250003], [135.68027343750006, 35.503125], [136.69814453125005, 36.742041015625034], [137.34257812500002, 36.770361328125034], [138.31992187500012, 37.21840820312502], [139.40097656250006, 38.142578125], [140.04814453125002, 39.463720703125034], [139.92285156250003, 40.59843750000002], [141.1185546875, 40.88227539062501], [141.22929687500007, 41.37265625]]], [[[143.82431640625012, 44.11699218749999], [145.10107421874997, 43.76455078125005], [145.34746093750007, 43.17670898437501], [143.96933593750006, 42.88139648437499], [143.2365234375001, 42.000195312499955], [141.85136718750007, 42.57905273437501], [140.98613281250002, 42.34213867187498], [140.3849609375001, 41.51928710937503], [139.82089843750012, 42.387597656249994], [140.78066406250005, 43.214990234374994], [141.29628906250005, 43.19965820312498], [141.93769531250004, 45.509521484375], [142.70410156249997, 44.81918945312506], [143.82431640625012, 44.11699218749999]]]]}, "type": "Feature", "properties": {"name": "Japan"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Siachen Glacier"}}, {"geometry": {"type": "Polygon", "coordinates": [[[87.32285156250012, 49.085791015625006], [86.54941406250012, 48.52861328125002], [85.7494140625, 48.38505859374999], [85.65664062500005, 47.254638671875], [84.78613281249997, 46.83071289062505], [83.19306640625004, 47.18657226562499], [82.32666015625003, 45.51992187499999], [80.05917968750012, 45.006445312500006], [80.78574218750006, 43.16157226562504], [80.16503906249997, 42.66552734375006], [80.209375, 42.190039062500006], [79.16484375000007, 42.759033203125], [75.78955078124997, 42.93291015624999], [75.68173828125, 42.83046875], [74.20908203125006, 43.24038085937502], [73.88603515625002, 43.132568359375], [73.2829101562501, 42.50410156250004], [71.816796875, 42.822167968749994], [70.94677734374997, 42.24868164062505], [69.06494140625003, 41.366943359375], [68.29189453125, 40.656103515625034], [67.9357421875001, 41.19658203125002], [66.81425781250002, 41.14238281249999], [66.49863281250006, 41.99487304687503], [66.00957031250007, 42.00488281250003], [66.1002929687501, 42.99082031249998], [64.9054687500001, 43.714697265625006], [61.99023437500003, 43.492138671874955], [61.007910156250006, 44.39379882812497], [58.555273437500006, 45.55537109375001], [55.97568359375006, 44.99492187499996], [55.97744140625005, 41.32221679687504], [55.54521484375002, 41.26274414062499], [54.90371093750005, 41.91909179687505], [54.120996093749994, 42.335205078125], [53.25009765625006, 42.20585937500002], [52.4938476562501, 41.780371093750034], [52.59658203125005, 42.760156249999966], [51.84414062500005, 42.910449218750045], [50.8307617187501, 44.192773437499966], [51.4157226562501, 45.35786132812501], [52.53105468750002, 45.39863281249998], [53.13525390625003, 46.19165039062497], [52.91601562500003, 46.95439453125002], [52.18876953125002, 46.839501953124966], [51.178027343750074, 47.110156250000045], [49.232226562500074, 46.33715820312503], [48.109960937500006, 47.74541015624996], [47.09326171875003, 47.947705078124955], [46.660937500000074, 48.41225585937502], [46.80205078125002, 49.36708984375002], [47.32646484375002, 50.273535156250034], [48.43427734375004, 49.828515624999966], [48.80839843750002, 50.60131835937503], [50.79394531249997, 51.729199218749955], [51.60908203125004, 51.483984375], [52.33105468749997, 51.681298828124966], [53.33808593750004, 51.48237304687504], [54.42148437500006, 50.78032226562499], [55.79765625000002, 50.60205078125], [56.49140625000004, 51.01953124999997], [57.44218750000002, 50.88886718749998], [58.359179687500074, 51.063818359375034], [59.812402343749994, 50.58203125], [61.38945312500002, 50.86103515625001], [61.363085937500074, 51.44189453125003], [60.06552734375006, 51.976464843749966], [60.937597656250006, 52.28056640625002], [60.80234375000006, 52.74472656249998], [61.33369140625004, 54.04926757812501], [61.92871093750003, 53.94648437500004], [65.476953125, 54.62329101562497], [68.07382812500006, 54.959570312500006], [68.9772460937501, 55.389599609374955], [70.73808593750007, 55.30517578125], [71.09316406250005, 54.21220703124999], [72.91406249999997, 54.10732421875002], [74.45195312500007, 53.64726562500002], [76.26660156249997, 54.31196289062498], [77.70439453125007, 53.379150390625], [79.98623046875, 50.774560546874966], [80.87734375, 51.28144531250004], [81.46591796875006, 50.73984375], [82.49394531250007, 50.72758789062499], [83.35732421875005, 50.99458007812504], [85.21015625000004, 49.66484375000002], [86.61425781249997, 49.60971679687498], [87.32285156250012, 49.085791015625006]]]}, "type": "Feature", "properties": {"name": "Kazakhstan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[35.325292968750006, 5.364892578124994], [36.081933593749994, 4.449707031249972], [36.90556640625002, 4.411474609374991], [37.15458984375002, 4.254541015624994], [38.0861328125001, 3.648828124999966], [39.49443359375002, 3.45610351562496], [39.8421875, 3.851464843750037], [40.765234375, 4.273046875000034], [41.02080078125002, 4.057470703124991], [41.88398437500004, 3.977734375000011], [40.964453125, 2.814648437500026], [40.9787109375001, -0.870312500000011], [41.521875, -1.572265625000028], [40.64414062500006, -2.53945312499998], [40.22246093750002, -2.688378906250037], [40.1154296875001, -3.250585937499991], [39.49091796875004, -4.478417968750023], [39.221777343750006, -4.692382812500014], [37.79726562500005, -3.674414062500006], [37.643847656250074, -3.045410156250028], [35.83691406249997, -2.036621093749943], [33.90322265625005, -1.002050781250034], [33.94316406250002, 0.173779296874969], [34.78759765625003, 1.230712890625], [34.9640625000001, 2.06240234374998], [34.392871093750074, 3.691503906250048], [33.97607421874997, 4.220214843750028], [35.325292968750006, 5.364892578124994]]]}, "type": "Feature", "properties": {"name": "Kenya"}}, {"geometry": {"type": "Polygon", "coordinates": [[[72.63994140625002, 39.385986328125], [71.73222656250002, 39.422998046874994], [71.404296875, 39.5978515625], [69.59882812500001, 39.573779296874996], [69.47099609375002, 39.990625], [70.59921875, 39.974511718749994], [71.69248046875, 40.15234375], [72.3892578125, 40.427392578124994], [73.13212890625002, 40.82851562499999], [72.36406250000002, 41.04345703125], [71.60625, 41.367431640625], [71.40839843750001, 41.136035156249996], [70.18095703125002, 41.571435546874994], [70.84189453125, 42.01962890625], [71.25664062500002, 42.733544921874994], [71.81679687500002, 42.822167968749994], [73.28291015625001, 42.5041015625], [73.88603515625002, 43.132568359375], [74.20908203125, 43.240380859374994], [75.68173828125, 42.83046875], [75.78955078125, 42.932910156249996], [78.52421874999999, 42.864648437499994], [79.92109375000001, 42.413134765624996], [80.21621093750002, 42.032421875], [78.36240234375003, 41.371630859374996], [78.12343750000002, 41.075634765625], [76.82402343749999, 40.982324218749994], [76.48017578125001, 40.449511718749996], [75.58349609375, 40.605322265625], [73.99160156250002, 40.043115234374994], [73.82294921875001, 39.48896484375], [72.63994140625002, 39.385986328125]]]}, "type": "Feature", "properties": {"name": "Kyrgyzstan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[104.42636718750006, 10.411230468749991], [103.53222656249997, 10.604638671874966], [103.15283203124997, 10.913720703125051], [102.93388671875002, 11.706689453125037], [102.49960937500012, 12.669970703125003], [102.31972656250005, 13.539990234375054], [103.19941406250004, 14.332617187499977], [105.1833007812501, 14.346240234374989], [106.81992187500006, 14.314697265625057], [107.51943359375005, 14.705078125], [107.3314453125, 14.126611328125009], [107.60546874999997, 13.437792968750017], [107.50644531250006, 12.364550781250031], [105.85146484375005, 11.635009765625], [105.85605468750006, 11.294287109375048], [104.85058593749997, 10.534472656249974], [104.42636718750006, 10.411230468749991]]]}, "type": "Feature", "properties": {"name": "Cambodia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Kiribati"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Saint Kitts and Nevis"}}, {"geometry": {"type": "Polygon", "coordinates": [[[128.37460937500012, 38.6234375], [129.33515625000004, 37.274560546874994], [129.5617187500001, 35.94765625000002], [129.21416015625007, 35.18183593749998], [127.71484374999997, 34.95468749999998], [126.50830078125003, 34.35063476562502], [126.29111328125012, 35.154150390625034], [126.71738281250006, 35.76884765625002], [126.21718750000005, 36.870947265625006], [126.74638671875002, 37.19355468750001], [126.63388671875012, 37.78183593750006], [127.16953125000006, 38.304541015625034], [128.03896484375, 38.30854492187498], [128.37460937500012, 38.6234375]]]}, "type": "Feature", "properties": {"name": "South Korea"}}, {"geometry": {"type": "Polygon", "coordinates": [[[21.5625, 42.247509765625], [20.566210937500017, 41.873681640624994], [20.06396484375, 42.54726562499999], [20.344335937500006, 42.827929687499996], [21.057031250000023, 43.091699218749994], [21.52998046875001, 42.35], [21.5625, 42.247509765625]]]}, "type": "Feature", "properties": {"name": "Kosovo"}}, {"geometry": {"type": "Polygon", "coordinates": [[[48.442480468750006, 28.542919921874983], [47.671289062499994, 28.53315429687504], [47.433203125, 28.989550781250017], [46.53144531250004, 29.09624023437499], [47.14824218750002, 30.0009765625], [47.97871093750004, 29.98281250000005], [48.442480468750006, 28.542919921874983]]]}, "type": "Feature", "properties": {"name": "Kuwait"}}, {"geometry": {"type": "Polygon", "coordinates": [[[102.12744140625011, 22.37919921874999], [102.94863281250008, 21.569775390625068], [103.1044921875, 20.89165039062499], [104.05205078124999, 20.941210937500102], [104.58320312500001, 20.646679687499955], [104.92792968750007, 20.01811523437499], [103.89638671875002, 19.339990234375023], [105.45820312500007, 18.154296875000057], [106.50224609374999, 16.9541015625], [106.69609375000005, 16.458984375], [107.39638671875008, 16.04301757812499], [107.653125, 15.255224609375091], [107.51943359375008, 14.705078125000114], [106.81992187500003, 14.314697265624943], [105.47558593750006, 14.530126953124977], [105.62207031250006, 15.699951171875114], [104.75058593750015, 16.647558593750034], [104.81601562499998, 17.30029296875], [103.94960937500008, 18.318994140625023], [103.36699218750005, 18.42333984375], [102.71757812500005, 17.892236328125136], [102.10146484375014, 18.21064453125001], [101.10517578125001, 17.479541015625102], [101.0505859375001, 18.407031250000045], [101.28632812499995, 18.977148437500034], [101.15468750000014, 19.57919921875009], [100.62548828125, 19.49985351562509], [100.2493164062501, 20.730273437499932], [100.75664062500005, 21.312646484375136], [101.70478515625013, 21.150146484375057], [101.73652343750001, 21.826513671874977], [102.12744140625011, 22.37919921874999]]]}, "type": "Feature", "properties": {"name": "Laos"}}, {"geometry": {"type": "Polygon", "coordinates": [[[35.869140625, 33.43173828125], [35.10859375000001, 33.08369140625], [35.97626953125001, 34.629199218749996], [36.5849609375, 34.221240234374996], [35.869140625, 33.43173828125]]]}, "type": "Feature", "properties": {"name": "Lebanon"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-8.486425781249977, 7.558496093749994], [-8.408740234374989, 7.411816406249997], [-8.324511718749989, 6.920019531249991], [-8.587890625, 6.490527343749989], [-7.800927734374994, 6.038916015624991], [-7.730371093749994, 5.919042968749991], [-7.636132812499994, 5.90771484375], [-7.39990234375, 5.550585937499989], [-7.585058593749977, 4.916748046875], [-7.574658203124983, 4.572314453124989], [-7.544970703124989, 4.351318359375], [-9.132177734374977, 5.054638671874997], [-10.2763671875, 6.07763671875], [-11.507519531249983, 6.906542968749989], [-11.267675781249977, 7.232617187499997], [-10.878076171874994, 7.538232421874994], [-10.283203125, 8.485156249999989], [-9.518261718749983, 8.34609375], [-9.11757812499999, 7.215917968749991], [-8.486425781249977, 7.558496093749994]]]}, "type": "Feature", "properties": {"name": "Liberia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[25.150488281250006, 31.654980468749997], [24.726464843750023, 30.2505859375], [24.980273437500017, 29.181884765625], [24.980273437500017, 27.160839843749997], [24.980273437500017, 24.01694335937499], [24.980273437500017, 21.995849609375], [24.9794921875, 20.002587890624994], [23.980273437500017, 19.99594726562499], [23.980273437500017, 19.496630859375003], [21.5849609375, 20.679492187500003], [18.231347656250023, 22.33554687499999], [15.984082031250011, 23.445214843749994], [14.97900390625, 22.99619140624999], [14.230761718750017, 22.618457031250003], [13.48125, 23.18017578125], [11.967871093750006, 23.517871093750003], [11.536914062500017, 24.290820312500003], [10.255859375, 24.591015625], [10.000683593750011, 25.332080078125003], [9.4482421875, 26.067138671875], [9.859375, 26.551953125], [9.842578125000017, 28.966992187499997], [9.51875, 30.229394531249994], [10.21640625, 30.783203125], [10.274609375000011, 31.684960937499994], [11.504980468750006, 32.413671875], [11.504589843750011, 33.181933593749996], [12.279882812500006, 32.858544921874994], [13.283496093750017, 32.9146484375], [15.176562500000017, 32.391162109374996], [15.496386718750017, 31.656787109374996], [16.123046875, 31.264453125], [17.34921875, 31.081494140624997], [18.936425781250023, 30.290429687499994], [19.713281250000023, 30.48837890625], [20.150976562500006, 31.07861328125], [19.926367187500006, 31.817529296874994], [20.62109375, 32.58017578125], [21.63593750000001, 32.937304687499996], [23.090625, 32.61875], [23.28632812500001, 32.213818359375], [24.683886718750017, 32.015966796875], [25.150488281250006, 31.654980468749997]]]}, "type": "Feature", "properties": {"name": "Libya"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Saint Lucia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Liechtenstein"}}, {"geometry": {"type": "Polygon", "coordinates": [[[79.98232421875, 9.812695312500011], [80.71113281250004, 9.366357421875023], [81.37285156250002, 8.431445312499989], [81.87412109375012, 7.288330078124986], [81.63740234375004, 6.425146484374991], [80.72412109375003, 5.97905273437496], [80.09531250000012, 6.153173828125006], [79.79208984375006, 7.585205078124972], [79.98232421875, 9.812695312500011]]]}, "type": "Feature", "properties": {"name": "Sri Lanka"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.128710937500017, -30.52509765625001], [28.05683593750001, -30.63105468750001], [27.364062500000017, -30.27919921875001], [27.19355468750001, -29.94130859375001], [27.73554687500001, -28.940039062500006], [28.625781250000017, -28.58173828125001], [29.301367187500006, -29.08984375], [29.098046875000023, -29.919042968750006], [28.128710937500017, -30.52509765625001]]]}, "type": "Feature", "properties": {"name": "Lesotho"}}, {"geometry": {"type": "Polygon", "coordinates": [[[25.573046875000017, 54.139892578125], [23.484667968750074, 53.939794921875006], [22.766210937499977, 54.356787109375034], [22.83125, 54.838476562500034], [21.235742187500023, 55.26411132812498], [21.04609375000004, 56.07006835937503], [22.084570312500034, 56.40673828125006], [24.120703125000063, 56.26425781249998], [24.90302734375001, 56.398193359375], [26.593554687500074, 55.66752929687502], [25.85927734375005, 54.91928710937498], [25.573046875000017, 54.139892578125]]]}, "type": "Feature", "properties": {"name": "Lithuania"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Luxembourg"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.14794921875, 56.142919921875], [26.593554687500017, 55.667529296874996], [24.90302734375001, 56.398193359375], [24.120703125, 56.2642578125], [22.084570312500006, 56.40673828125], [21.0712890625, 56.82373046875], [21.72871093750001, 57.57099609375], [22.554589843750023, 57.724267578125], [23.647753906250017, 56.971044921875], [24.403222656250023, 57.325], [24.322558593750017, 57.87060546875], [25.66015625, 57.920166015625], [26.29804687500001, 57.60107421875], [27.4697265625, 57.5240234375], [28.14794921875, 56.142919921875]]]}, "type": "Feature", "properties": {"name": "Latvia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Macao S.A.R"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Saint Martin"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-1.16259765625, 32.399169921875], [-1.275341796874983, 32.089013671874966], [-2.448388671874937, 32.12998046875006], [-3.837109374999983, 31.512353515624994], [-4.148779296874977, 30.8095703125], [-4.968261718749943, 30.465380859375045], [-5.44877929687496, 29.956933593750023], [-6.500878906249994, 29.809130859375017], [-7.485742187499994, 29.392236328124994], [-8.659912109375, 28.718603515625063], [-8.683349609375, 27.900390625], [-8.753857421874955, 27.191015624999977], [-9.7353515625, 26.860937500000063], [-10.922802734374983, 27.010351562500034], [-11.718212890624926, 26.104101562500063], [-12.03076171875, 26.030859375000063], [-12.431152343749943, 24.830664062500063], [-14.020996093750028, 23.410742187499977], [-14.221191406249943, 22.310156250000034], [-14.52099609375, 21.990869140624994], [-14.840820312499972, 21.45078125], [-17.003076171874937, 21.420703125000017], [-16.21025390624999, 23.097900390625], [-15.586328124999966, 24.07275390625003], [-15.038867187499989, 24.54882812500003], [-14.413867187499932, 26.25371093749999], [-13.57578125, 26.735107421875], [-12.948925781249926, 27.914160156250034], [-11.430175781249943, 28.382031249999983], [-10.486474609374994, 29.06494140625], [-9.667089843749949, 30.10927734375005], [-9.80869140624992, 31.42460937499996], [-9.245849609375, 32.572460937499955], [-8.301171874999937, 33.37436523437498], [-6.900976562499949, 33.96904296874999], [-6.353125, 34.77607421875001], [-5.924804687499943, 35.78579101562502], [-4.329980468749937, 35.161474609375006], [-3.693261718749994, 35.27998046874998], [-2.219628906249966, 35.10419921874998], [-1.795605468749926, 34.751904296874955], [-1.67919921875, 33.31865234375002], [-1.16259765625, 32.399169921875]]]}, "type": "Feature", "properties": {"name": "Morocco"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Monaco"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.2125, 45.450439453125], [28.07177734375, 46.978417968749994], [26.618945312500017, 48.25986328125], [27.549218750000023, 48.477734375], [28.34052734375001, 48.144433593749994], [29.19482421875, 47.882421875], [29.455664062500006, 47.292626953124994], [29.877832031250023, 46.82890625], [29.458789062500017, 46.453759765624994], [28.2125, 45.450439453125]]]}, "type": "Feature", "properties": {"name": "Moldova"}}, {"geometry": {"type": "Polygon", "coordinates": [[[49.53828125000004, -12.432128906250014], [49.9375, -13.072265624999957], [50.23535156249997, -14.732031249999963], [50.482714843750074, -15.385644531249994], [49.83105468750003, -16.255859375], [49.43710937500006, -17.3466796875], [49.477832031250074, -17.89853515624999], [48.60703125000006, -20.457519531249957], [47.9083984375001, -22.465820312500014], [47.55800781250005, -23.874609374999963], [47.17734375, -24.787207031249977], [46.72851562499997, -25.14990234374997], [45.11523437500003, -25.543066406249963], [44.0353515625001, -24.995703125], [43.6875, -24.357910156250014], [43.722265625, -23.529687500000037], [43.26660156249997, -22.04931640624997], [44.239648437499994, -20.3796875], [44.44882812500006, -19.42871093749997], [44.04003906249997, -18.288476562500023], [43.979394531249994, -17.3916015625], [44.476171875, -16.217285156249957], [46.331445312499994, -15.713671875000031], [47.81152343749997, -14.544824218750023], [47.995507812499994, -13.960449218749986], [48.796484375, -13.267480468750023], [48.89960937500004, -12.458496093749972], [49.53828125000004, -12.432128906250014]]]}, "type": "Feature", "properties": {"name": "Madagascar"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Maldives"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-97.14624023437494, 25.961474609375045], [-97.66767578124995, 24.389990234374977], [-97.85781249999997, 22.62451171875003], [-97.63754882812495, 21.603662109374966], [-97.12143554687498, 20.614990234375], [-96.45605468749994, 19.869775390624966], [-95.82109374999999, 18.75463867187497], [-95.18183593749995, 18.700732421875017], [-94.54619140624996, 18.17485351562499], [-91.97377929687502, 18.715869140625074], [-91.80297851562503, 18.470605468750023], [-90.73925781249994, 19.352246093749955], [-90.353125, 21.009423828124966], [-89.81977539062495, 21.274609374999983], [-88.13164062500002, 21.615869140624966], [-86.824072265625, 21.421679687500017], [-86.86469726562501, 20.885058593750045], [-87.4671875, 20.102148437500063], [-87.42475585937498, 19.583349609375063], [-87.76181640624998, 18.446142578125006], [-88.29565429687494, 18.47241210937503], [-89.16147460937503, 17.81484375], [-90.98916015624997, 17.81640624999997], [-90.975830078125, 16.867822265624994], [-90.44716796874994, 16.07270507812501], [-91.433984375, 16.070458984374994], [-92.18715820312497, 15.320898437499963], [-92.26455078125, 14.567773437500009], [-93.91606445312493, 16.053564453125006], [-94.90043945312502, 16.41748046875], [-95.46440429687499, 15.974707031250034], [-96.51083984375, 15.651904296875074], [-97.75478515624994, 15.966845703125017], [-98.76220703125, 16.534765624999977], [-99.69067382812499, 16.719628906249994], [-100.847802734375, 17.20048828124999], [-101.84707031250001, 17.92226562500005], [-103.44160156249995, 18.32539062500001], [-103.91245117187496, 18.828466796875006], [-104.9384765625, 19.309375], [-105.66943359374997, 20.385595703124977], [-105.20869140624998, 21.490820312499977], [-105.64912109375001, 21.988085937500045], [-105.79179687500003, 22.627490234375017], [-106.93549804687497, 23.88125], [-107.95117187499994, 24.614892578124966], [-108.37368164062497, 25.1943359375], [-109.38496093750001, 25.727148437500006], [-109.19970703125003, 26.30522460937499], [-109.94399414062495, 27.079345703125057], [-110.47778320312499, 27.322656249999966], [-110.52988281249995, 27.864208984374983], [-111.12138671875002, 27.966992187499983], [-112.16176757812495, 29.018896484375034], [-113.11044921874996, 30.793310546875063], [-113.04672851562495, 31.17924804687499], [-114.83950195312497, 31.79853515625004], [-114.64975585937495, 30.238134765625006], [-112.870849609375, 28.42421875000005], [-112.73403320312501, 27.825976562500017], [-111.56967773437495, 26.707617187500006], [-111.29160156249996, 25.78979492187497], [-110.67724609374994, 24.78852539062501], [-110.54697265624996, 24.214160156250045], [-110.02280273437502, 24.17460937499999], [-109.42084960937495, 23.480126953124994], [-109.92343749999993, 22.885888671874994], [-110.3626953125, 23.60493164062501], [-112.07255859374999, 24.84003906250001], [-112.05576171874995, 25.48823242187501], [-112.37724609374997, 26.21391601562496], [-114.44526367187503, 27.218164062499994], [-114.04848632812502, 28.42617187499999], [-114.99350585937499, 29.384423828124994], [-115.67382812500003, 29.756396484375017], [-116.06215820312501, 30.80415039062504], [-116.66215820312495, 31.56489257812504], [-117.12827148437495, 32.533349609374994], [-114.83593749999994, 32.50830078125003], [-111.0419921875, 31.32421875000003], [-108.21445312499993, 31.329443359375034], [-108.21181640625002, 31.779345703125017], [-106.45322265624995, 31.770166015625023], [-104.97880859374996, 30.645947265624955], [-104.40063476562503, 29.57373046875], [-103.25771484374998, 29.001123046874966], [-102.26894531249998, 29.871191406250034], [-101.44038085937503, 29.77685546875], [-100.65864257812501, 29.06855468750004], [-100.29604492187495, 28.32768554687499], [-99.50532226562497, 27.54833984375003], [-99.10776367187498, 26.446923828124994], [-97.35815429687497, 25.870507812499994], [-97.14624023437494, 25.961474609375045]]]}, "type": "Feature", "properties": {"name": "Mexico"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Marshall Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[22.344042968750017, 42.31396484375], [23.005664062500017, 41.716943359374994], [22.916015625, 41.336279296875], [20.964257812500023, 40.849902343749996], [20.48896484375001, 41.272607421874994], [20.566210937500017, 41.873681640624994], [21.5625, 42.247509765625], [22.344042968750017, 42.31396484375]]]}, "type": "Feature", "properties": {"name": "Macedonia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[4.227636718750006, 19.142773437499997], [4.234667968750017, 16.996386718750003], [3.876953125, 15.755273437499994], [3.504296875000023, 15.356347656249994], [1.300195312500023, 15.272265625], [0.217480468750011, 14.911474609374991], [-0.760449218749983, 15.047753906249994], [-2.457226562499983, 14.274121093749997], [-3.575781249999977, 13.194189453124991], [-4.328710937499977, 13.119042968749994], [-4.4287109375, 12.337597656249997], [-5.288134765624989, 11.827929687499989], [-5.523535156249977, 10.426025390625], [-6.034570312499994, 10.19482421875], [-6.482617187499983, 10.561230468749997], [-6.950341796874994, 10.342333984374989], [-7.385058593749989, 10.340136718749989], [-7.990625, 10.1625], [-8.407470703125, 11.386279296874989], [-8.822021484375, 11.673242187499994], [-9.043066406249977, 12.40234375], [-9.82070312499999, 12.04248046875], [-10.677343749999977, 11.8994140625], [-11.389404296875, 12.404394531249991], [-11.390380859375, 12.941992187499991], [-12.05419921875, 13.633056640625], [-12.280615234374977, 14.809033203124997], [-11.455224609374994, 15.62539062499999], [-10.696582031249989, 15.42265625], [-9.293701171875, 15.502832031249994], [-5.5125, 15.496289062499997], [-5.359912109374989, 16.282861328124994], [-5.628662109375, 16.568652343750003], [-6.083398437499994, 20.539501953124997], [-6.396582031249977, 23.274804687499994], [-6.594091796874977, 24.99462890625], [-4.822607421874977, 24.99560546875], [-1.29296875, 22.696533203125], [1.1455078125, 21.102246093749997], [1.685449218750023, 20.378369140624997], [3.203710937500006, 19.789697265624994], [3.40087890625, 18.988427734374994], [4.227636718750006, 19.142773437499997]]]}, "type": "Feature", "properties": {"name": "Mali"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Malta"}}, {"geometry": {"type": "Polygon", "coordinates": [[[101.1388671875001, 21.567480468749977], [100.24931640625002, 20.730273437500045], [100.12246093750005, 20.316650390625057], [99.8903320312501, 20.424414062499977], [98.9166992187501, 19.77290039062504], [97.816796875, 19.459960937500057], [97.79296875000003, 17.68125], [98.4388671875, 16.975683593750034], [98.68925781250002, 16.30541992187497], [98.56523437500007, 15.403564453125014], [98.24599609375005, 14.814746093750045], [99.13681640625006, 13.716699218749994], [99.21982421875012, 12.73974609375], [99.61474609374997, 11.781201171875026], [98.7572265625, 10.660937499999974], [98.70253906250005, 10.19038085937504], [98.46494140625006, 10.675830078124989], [98.74140625000004, 11.591699218749966], [98.57597656250002, 13.161914062500031], [97.81230468750007, 14.858935546874989], [97.61962890624997, 16.537207031250034], [97.17832031250012, 17.06201171875003], [96.62246093750005, 16.563916015624983], [95.76328125000006, 16.169042968750006], [95.38955078125005, 15.722753906250034], [94.21425781250005, 16.126611328124966], [94.58896484375006, 17.5693359375], [94.07001953125004, 18.893408203125006], [93.99814453125006, 19.440869140624983], [93.36230468750003, 20.05830078125001], [93.00195312499997, 20.074853515624994], [92.32412109375, 20.791845703125063], [92.57490234375004, 21.978076171875045], [92.77138671875, 22.104785156250017], [93.07060546875002, 22.20942382812501], [93.16201171875, 22.360205078125006], [93.20390625000002, 23.03701171875005], [93.34941406250007, 23.08496093750003], [93.36601562500007, 23.132519531249955], [93.32626953125006, 24.064208984375057], [93.45214843750003, 23.987402343750034], [93.68339843750007, 24.00654296875004], [94.07480468750006, 23.8720703125], [94.37724609375002, 24.473730468750006], [94.49316406250003, 24.637646484374983], [94.70371093750012, 25.097851562499955], [94.66777343750007, 25.458886718749966], [94.99199218750002, 25.77045898437504], [95.20146484375007, 26.641406250000017], [96.19082031250005, 27.26127929687499], [96.79785156249997, 27.29619140624999], [96.96279296875, 27.698291015625017], [97.04970703125005, 27.760009765625], [97.34355468750002, 27.982324218749994], [97.30273437499997, 28.08598632812496], [97.3224609375001, 28.21796875000004], [98.09892578125002, 28.142285156249983], [98.65117187500007, 27.572460937499983], [98.6546875, 25.917773437500017], [97.8195312500001, 25.251855468749994], [97.53144531250004, 24.49169921875003], [97.68603515624997, 23.898095703124966], [98.76435546875004, 24.116064453125063], [98.86376953125003, 23.191259765625034], [99.34082031249997, 23.095898437499955], [99.19296875000006, 22.12597656249997], [99.9176757812501, 22.02802734375001], [100.21474609375, 21.462988281250006], [101.1388671875001, 21.567480468749977]]]}, "type": "Feature", "properties": {"name": "Myanmar"}}, {"geometry": {"type": "Polygon", "coordinates": [[[19.670996093750006, 43.163964843749994], [20.344335937500006, 42.827929687499996], [20.06396484375, 42.54726562499999], [19.342382812500006, 41.869091796875], [18.436328125000017, 42.559716796874994], [18.46601562500001, 42.777246093749994], [18.940234375000017, 43.496728515624994], [19.670996093750006, 43.163964843749994]]]}, "type": "Feature", "properties": {"name": "Montenegro"}}, {"geometry": {"type": "Polygon", "coordinates": [[[116.68330078125001, 49.823779296874996], [115.5576171875, 47.94501953125], [115.89824218749999, 47.686914062499994], [118.49843750000002, 47.983984375], [119.71113281250001, 47.15], [119.70664062500003, 46.606005859374996], [118.30869140625003, 46.717041015625], [116.56259765625003, 46.289794921875], [115.68105468750002, 45.458251953125], [114.51718750000003, 45.364599609375], [113.58701171875003, 44.745703125], [111.89804687500003, 45.0640625], [111.40224609375002, 44.36728515625], [111.93320312500003, 43.71142578125], [111.00722656250002, 43.34140625], [110.400390625, 42.773681640625], [109.44316406249999, 42.455957031249994], [106.77001953125, 42.288720703124994], [105.19707031249999, 41.738037109375], [103.71113281250001, 41.751318359375], [101.97294921874999, 42.215869140624996], [101.7138671875, 42.4658203125], [99.98378906250002, 42.67734375], [99.46787109375003, 42.568212890625], [97.20566406250003, 42.789794921875], [96.38544921875001, 42.720361328124994], [95.9125, 43.206494140625], [95.35029296875001, 44.278076171875], [94.71201171875003, 44.350830078125], [93.65644531250001, 44.9009765625], [90.87724609374999, 45.19609375], [90.86992187499999, 46.954492187499994], [90.31328124999999, 47.67617187499999], [89.04765624999999, 48.0025390625], [87.7431640625, 48.881640625], [88.19257812500001, 49.451708984374996], [91.80429687500003, 50.693603515625], [94.25107421875003, 50.556396484375], [94.61474609375, 50.023730468749996], [95.85195312500002, 50.012939453125], [97.20859375000003, 49.730810546875], [98.10341796875002, 50.07783203125], [98.27949218750001, 50.533251953124996], [97.946875, 51.3484375], [98.8486328125, 52.070068359375], [99.92167968749999, 51.755517578125], [102.11152343750001, 51.353466796875], [102.28837890624999, 50.585107421874994], [103.63291015625003, 50.138574218749994], [105.38359374999999, 50.47373046875], [106.71113281250001, 50.31259765625], [107.94785156250003, 49.924707031249994], [108.61367187500002, 49.322802734374996], [110.82792968749999, 49.166162109374994], [113.05556640625002, 49.616259765624996], [114.29707031250001, 50.2744140625], [115.27451171875003, 49.948876953124994], [116.68330078125001, 49.823779296874996]]]}, "type": "Feature", "properties": {"name": "Mongolia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Northern Mariana Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[32.112890625, -26.839453125], [31.9482421875, -25.957617187500006], [31.98583984375, -24.46064453125001], [31.54560546875001, -23.48232421875001], [31.287890625000017, -22.40205078125001], [32.37109375, -21.33486328125001], [32.477636718750006, -20.712988281250006], [33.00673828125002, -19.873828125], [32.71650390625001, -19.00185546875001], [32.99306640625002, -18.35957031250001], [32.94804687500002, -16.71230468750001], [31.939843750000023, -16.428808593750006], [31.236230468750023, -16.02363281250001], [30.437792968750017, -15.995312500000011], [30.39609375, -15.64306640625], [30.231835937500023, -14.990332031250006], [33.201757812500006, -14.013378906250011], [33.63642578125001, -14.568164062500003], [34.33251953125, -14.40859375], [34.54082031250002, -15.297265625], [34.24824218750001, -15.8875], [34.93339843750002, -16.760351562500006], [35.11210937500002, -16.898535156250006], [35.242773437500006, -16.375390625], [35.75527343750002, -16.05830078125001], [35.84716796875, -14.6708984375], [34.54570312500002, -13.21630859375], [34.542578125, -13.108691406250003], [34.36083984375, -12.210546875], [34.60625, -11.690039062500006], [35.630957031250006, -11.58203125], [37.54169921875001, -11.675097656250003], [37.92021484375002, -11.294726562500003], [38.491796875, -11.413281250000011], [39.98867187500002, -10.82080078125], [40.40283203125, -11.33203125], [40.58085937500002, -12.635546875], [40.63994140625002, -14.390039062500009], [40.83515625000001, -14.79150390625], [40.55898437500002, -15.4734375], [39.84462890625002, -16.435644531250006], [39.084375, -16.97285156250001], [38.14492187500002, -17.242773437500006], [37.24453125000002, -17.73994140625001], [36.540136718750006, -18.518164062500006], [34.947851562500006, -19.81269531250001], [34.69814453125002, -20.404394531250006], [35.267675781250006, -21.650976562500006], [35.57539062500001, -22.96308593750001], [35.15595703125001, -24.54140625], [33.34746093750002, -25.26093750000001], [32.79218750000001, -25.644335937500003], [32.88613281250002, -26.84931640625001], [32.112890625, -26.839453125]]]}, "type": "Feature", "properties": {"name": "Mozambique"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-5.359912109374989, 16.282861328124994], [-5.5125, 15.496289062499983], [-9.293701171875, 15.502832031249994], [-10.696582031249989, 15.42265625], [-11.455224609374994, 15.62539062499999], [-12.104687499999955, 14.745361328125043], [-12.40869140625, 14.889013671874991], [-13.105273437499989, 15.57177734375], [-13.756640624999989, 16.172509765624994], [-14.300097656249932, 16.58027343750001], [-15.768212890624994, 16.485107421875], [-16.34667968749997, 16.926416015625023], [-16.07890625, 17.54584960937501], [-16.084960937499943, 18.52119140625001], [-16.51445312499996, 19.361962890624994], [-16.21044921875003, 20.227929687500023], [-16.42978515624995, 20.652343750000057], [-17.06396484375, 20.89882812499999], [-16.96455078125001, 21.329248046875023], [-15.231201171875, 21.331298828125], [-13.016210937499949, 21.33393554687501], [-13.031494140624943, 23.000244140625], [-12.372900390624977, 23.318017578124994], [-12.016308593749983, 23.97021484375], [-12.016308593749983, 24.378662109375], [-12.016308593749983, 24.923242187499994], [-12.016308593749983, 25.331689453124994], [-12.016308593749983, 25.740136718749994], [-12.016308593749983, 25.995410156250017], [-8.682226562499949, 25.99550781250005], [-8.683349609375, 27.285937500000045], [-4.822607421874949, 24.99560546875], [-6.594091796874977, 24.99462890624997], [-6.396582031249977, 23.274804687499994], [-6.083398437499937, 20.539501953124983], [-5.628662109375028, 16.568652343750045], [-5.359912109374989, 16.282861328124994]]]}, "type": "Feature", "properties": {"name": "Mauritania"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Montserrat"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Mauritius"}}, {"geometry": {"type": "Polygon", "coordinates": [[[34.95947265625003, -11.578125], [34.60625, -11.690039062500006], [34.36083984375003, -12.21054687499999], [34.542578125, -13.108691406250003], [34.54570312500002, -13.21630859375], [35.84716796875003, -14.670898437500043], [35.75527343750005, -16.058300781249983], [35.242773437500006, -16.375390625], [35.11210937500002, -16.898535156250006], [34.93339843750002, -16.760351562500006], [34.2482421875001, -15.8875], [34.54082031250002, -15.297265625], [34.33251953125003, -14.40859375], [33.63642578125004, -14.568164062499974], [33.148046875, -13.94091796875], [32.797460937500006, -13.6884765625], [33.021582031250006, -12.63046875000002], [33.39794921874997, -12.489843749999963], [33.261328125, -10.893359374999974], [33.65908203125005, -10.590527343749997], [33.148046875, -9.603515625], [32.91992187500003, -9.407421875000026], [34.32089843750006, -9.731542968749977], [34.59765625000003, -11.0375], [34.95947265625003, -11.578125]]]}, "type": "Feature", "properties": {"name": "Malawi"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[102.10107421874997, 6.242236328125031], [102.98242187499997, 5.524951171875003], [103.41582031250007, 4.85029296875004], [103.43945312499997, 2.93310546875], [103.8122070312501, 2.58046875], [104.28847656250005, 1.48066406250004], [103.6945312500001, 1.449658203125026], [102.72714843750012, 1.855566406250034], [101.29550781250012, 2.885205078125011], [101.29990234375012, 3.253271484375034], [100.71542968750006, 3.966210937499966], [100.11914062499997, 6.441992187500048], [101.05351562500002, 6.242578125], [101.2570312500001, 5.789355468750045], [101.87363281250012, 5.825292968749991], [102.10107421874997, 6.242236328125031]]], [[[117.5744140625001, 4.17060546875004], [117.10058593750003, 4.337060546875023], [115.89619140625004, 4.348681640624989], [115.56845703125006, 3.938769531249974], [115.45439453125002, 3.034326171875009], [114.54589843750003, 1.467138671875034], [113.6222656250001, 1.2359375], [112.47617187500006, 1.559082031250028], [111.76972656250004, 0.999462890624969], [110.50576171875005, 0.861962890625023], [109.65400390625004, 1.614892578125023], [109.62890625000003, 2.027539062499983], [109.9845703125001, 1.717626953124991], [110.93994140625003, 1.517333984375043], [111.24218749999997, 2.435742187500011], [111.72773437500004, 2.853808593750003], [113.04472656250002, 3.205224609375009], [114.0638671875, 4.592675781249966], [114.60830078125005, 4.023974609375017], [115.02675781250005, 4.899707031249989], [115.1400390625, 4.899755859374991], [115.51982421875002, 5.048925781250006], [116.49472656250006, 6.521679687500026], [117.29404296875006, 6.676904296875023], [119.13222656250005, 5.100488281250037], [118.18535156250002, 4.828515625000051], [118.49804687499997, 4.362353515625031], [117.5744140625001, 4.17060546875004]]]]}, "type": "Feature", "properties": {"name": "Malaysia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[23.380664062500017, -17.640625], [24.27490234375, -17.481054687500006], [25.2587890625, -17.793554687500006], [24.358984375, -17.97822265625001], [23.58056640625, -18.452929687500003], [23.298632812500017, -18.02734375], [20.97412109375, -18.31884765625], [20.970996093750017, -22.00019531250001], [19.977343750000017, -22.00019531250001], [19.98046875, -24.77675781250001], [19.98046875, -28.310351562500003], [19.02607421875001, -28.92792968750001], [18.310839843750017, -28.88623046875], [17.44794921875001, -28.69814453125001], [17.1884765625, -28.13251953125001], [16.447558593750017, -28.617578125], [15.341503906250011, -27.386523437500003], [14.9677734375, -26.31806640625001], [14.837109375000011, -25.033203125], [14.5015625, -24.201953125], [14.525976562500006, -22.70253906250001], [14.321875, -22.18994140625], [13.450585937500023, -20.91669921875001], [12.458203125000011, -18.9267578125], [11.77587890625, -18.001757812500003], [11.743066406250023, -17.24921875000001], [13.101171875, -16.96767578125001], [13.93798828125, -17.388769531250006], [16.531054687500017, -17.39082031250001], [18.396386718750023, -17.3994140625], [19.076464843750017, -17.817675781250003], [21.416894531250023, -18.00068359375001], [23.380664062500017, -17.640625]]]}, "type": "Feature", "properties": {"name": "Namibia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[164.20234375000004, -20.246093749999957], [165.191796875, -20.768847656249974], [165.66279296875004, -21.267187499999977], [166.94238281250003, -22.09013671875003], [166.77412109375004, -22.37617187500004], [165.24199218750002, -21.52548828125002], [164.45468750000012, -20.829101562499986], [164.20234375000004, -20.246093749999957]]]}, "type": "Feature", "properties": {"name": "New Caledonia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[14.97900390625, 22.99619140624999], [15.181835937500011, 21.523388671874997], [15.948828125, 20.303173828124997], [15.735058593750011, 19.904052734375], [15.474316406250011, 16.908398437499997], [14.367968750000017, 15.750146484374994], [13.4482421875, 14.380664062500003], [13.606347656250023, 13.70458984375], [12.463183593750017, 13.09375], [11.411914062500017, 13.353613281249991], [10.184667968750006, 13.270117187499991], [9.615917968750011, 12.810644531249991], [8.750585937500006, 12.908154296874997], [7.788671875, 13.337890625], [6.804296875, 13.107666015625], [6.386328125, 13.603613281249991], [5.241894531250011, 13.757226562499994], [4.147558593750006, 13.457714843749997], [3.947851562500006, 12.775048828124994], [3.646679687500011, 12.529980468749997], [3.595410156250011, 11.6962890625], [2.878125, 12.367724609374989], [2.38916015625, 11.897070312499991], [2.073828125, 12.713964843749991], [1.56494140625, 12.635400390624994], [0.9873046875, 13.041894531249994], [0.163867187500017, 14.497216796874994], [0.217480468750011, 14.911474609374991], [1.300195312500023, 15.272265625], [3.504296875000023, 15.356347656249994], [3.876953125, 15.755273437499994], [4.234667968750017, 16.996386718750003], [4.227636718750006, 19.142773437499997], [5.836621093750011, 19.479150390624994], [7.481738281250017, 20.873095703125003], [9.378710937500017, 21.99140625], [11.967871093750006, 23.517871093750003], [13.48125, 23.18017578125], [14.230761718750017, 22.618457031250003], [14.97900390625, 22.99619140624999]]]}, "type": "Feature", "properties": {"name": "Niger"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Norfolk Island"}}, {"geometry": {"type": "Polygon", "coordinates": [[[6.804296875, 13.107666015625], [7.788671875, 13.337890625], [8.750585937500034, 12.908154296875026], [9.615917968750011, 12.810644531249963], [10.184667968750063, 13.270117187499963], [11.411914062500074, 13.353613281250006], [12.463183593750017, 13.09375], [13.606347656250023, 13.704589843750014], [13.932324218750011, 13.258496093749997], [14.184863281250017, 12.447216796874997], [14.272851562500023, 12.356494140624989], [14.627148437500068, 12.10869140624996], [14.559765625000011, 11.492285156249963], [13.892089843750057, 11.140087890624983], [12.929492187500074, 9.426269531249972], [12.651562500000011, 8.667773437499989], [12.40351562500004, 8.59555664062502], [11.809179687500006, 7.345068359374991], [11.767382812500017, 7.272265624999989], [11.551660156250023, 6.697265625], [10.954199218750006, 6.7765625], [10.143554687500057, 6.99643554687502], [9.490234375, 6.418652343749997], [8.997167968750006, 5.917724609375], [8.800976562499983, 5.197460937499983], [8.293066406250006, 4.557617187500014], [7.15468750000008, 4.514404296875], [6.07656250000008, 4.290625], [5.587792968750051, 4.647216796874972], [4.861035156250068, 6.026318359374997], [4.125878906250023, 6.411376953125028], [2.706445312500051, 6.369238281249963], [2.703125, 8.371826171875], [3.646582031250006, 10.408984374999989], [3.83447265625, 10.607421875], [3.7568359375, 10.76875], [3.71640625, 11.07958984375], [3.487792968749972, 11.395410156250037], [3.646679687500011, 12.529980468749983], [3.947851562500006, 12.775048828124994], [4.147558593750006, 13.457714843749983], [5.241894531250011, 13.757226562499994], [6.386328125000034, 13.603613281250048], [6.804296875, 13.107666015625]]]}, "type": "Feature", "properties": {"name": "Nigeria"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-83.6419921875, 10.917236328125], [-85.7443359375, 11.06210937499999], [-86.755615234375, 12.15664062499999], [-87.05917968749999, 12.991455078125], [-86.733642578125, 13.763476562500003], [-85.78671875, 13.844433593749997], [-84.645947265625, 14.661083984374997], [-83.635498046875, 14.876416015624997], [-83.187744140625, 14.340087890625], [-83.567333984375, 13.3203125], [-83.5109375, 12.411816406249997], [-83.86787109375, 11.300048828125], [-83.6419921875, 10.917236328125]]]}, "type": "Feature", "properties": {"name": "Nicaragua"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Niue"}}, {"geometry": {"type": "Polygon", "coordinates": [[[4.226171875000034, 51.38647460937503], [4.678320312500063, 52.80976562500001], [6.062207031250068, 53.407080078125006], [7.197265625000028, 53.28227539062499], [7.035156250000057, 52.38022460937498], [6.193261718750051, 51.48891601562502], [5.993945312500017, 50.75043945312504], [5.693554687500011, 50.774755859375006], [5.827148437500057, 51.125634765624994], [4.226171875000034, 51.38647460937503]]]}, "type": "Feature", "properties": {"name": "Netherlands"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[30.869726562500006, 69.78344726562506], [28.96582031250003, 69.02197265625], [29.14160156250003, 69.67143554687505], [27.889941406250045, 70.06166992187497], [26.011523437500074, 69.65263671875005], [24.94140625000003, 68.59326171875006], [22.410937500000074, 68.719873046875], [20.622167968750006, 69.036865234375], [19.969824218750063, 68.35639648437501], [18.378613281250068, 68.56240234374997], [16.12744140625, 67.42583007812507], [16.40351562500004, 67.05498046875002], [14.543261718750045, 66.12934570312498], [14.47968750000004, 65.30146484374998], [13.650292968750023, 64.58154296874997], [13.960546875000063, 64.01401367187498], [12.6625, 63.94047851562502], [11.999902343750051, 63.29169921875001], [12.486132812500074, 60.10678710937506], [11.388281250000063, 59.036523437499966], [9.618457031250017, 58.946044921875], [8.166113281250063, 58.145312500000045], [7.0048828125, 58.024218750000074], [5.706835937500074, 58.52363281250001], [5.131640625000045, 59.22646484375002], [5.244042968750023, 60.569580078125], [4.927832031249977, 61.71069335937506], [5.533300781250063, 62.310888671875034], [8.398144531249983, 63.53510742187504], [9.708007812500028, 63.864892578124994], [12.15966796875, 65.178955078125], [13.104687500000068, 66.53940429687503], [18.101464843749994, 69.15629882812499], [18.293164062500068, 69.47509765625003], [24.420019531250034, 70.70200195312503], [27.59707031250005, 71.09130859375003], [30.944140625000017, 70.27441406249997], [30.869726562500006, 69.78344726562506]]], [[[21.60810546875004, 78.59570312499997], [23.84121093750005, 77.49775390625004], [22.056835937500068, 77.50117187500001], [20.22792968750005, 78.47783203125005], [21.60810546875004, 78.59570312499997]]], [[[16.786718750000034, 79.90673828125], [20.458203125000068, 79.12924804687506], [16.700488281250045, 76.57929687499995], [14.365820312500034, 77.23447265625003], [14.920800781250023, 77.68881835937506], [11.77382812500008, 78.71640625000006], [13.383593750000045, 79.48076171874999], [16.786718750000034, 79.90673828125]]], [[[20.897851562500023, 80.24995117187501], [26.86083984375, 80.16000976562498], [25.641210937500034, 79.40302734374995], [20.861132812500017, 79.39785156249997], [18.343847656250006, 80.05957031250006], [20.897851562500023, 80.24995117187501]]]]}, "type": "Feature", "properties": {"name": "Norway"}}, {"geometry": {"type": "Polygon", "coordinates": [[[88.10976562500002, 27.87060546875], [88.05488281250001, 26.430029296875], [85.29296875, 26.741015625], [84.09101562500001, 27.491357421874994], [83.28974609375001, 27.370996093749994], [81.85263671875003, 27.867089843749994], [80.07070312500002, 28.83017578125], [80.40185546875, 29.730273437499996], [81.41718750000001, 30.337597656249997], [83.15546875000001, 29.612646484375], [83.58349609375, 29.18359375], [85.12246093750002, 28.315966796874996], [86.40869140625, 27.928662109374997], [88.10976562500002, 27.87060546875]]]}, "type": "Feature", "properties": {"name": "Nepal"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Nauru"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[173.11533203125006, -41.27929687499997], [174.30253906249996, -41.019531249999986], [174.2831054687501, -41.740625], [172.38525390624997, -43.82958984374996], [171.44257812500004, -44.13583984374999], [170.7005859375, -45.68427734374997], [169.68662109375006, -46.55166015625002], [168.38212890625007, -46.60537109374995], [167.68222656250012, -46.19296875000005], [166.73154296875006, -46.19785156249998], [166.73398437500012, -45.54355468749999], [167.19453125000004, -44.963476562500034], [168.3666015625, -44.08203124999996], [169.66152343750005, -43.591210937499966], [171.2570312500001, -42.465332031250014], [171.48623046875, -41.7947265625], [172.01074218749997, -41.44472656250001], [172.640625, -40.51826171875001], [173.11533203125006, -41.27929687499997]]], [[[173.26943359375, -34.93476562499998], [174.32031250000003, -35.246679687500034], [174.8021484375, -36.30947265625001], [174.72246093750007, -36.84121093749998], [175.8761718750001, -36.95771484375], [176.10839843749997, -37.64511718749998], [177.33593749999997, -37.99082031249998], [178.0091796875, -37.55488281249998], [178.53623046875006, -37.69208984375004], [177.965625, -39.14248046875004], [177.40751953124996, -39.08115234374998], [175.98291015625003, -41.21328125000002], [175.30976562499998, -41.610644531249974], [174.63535156250012, -41.28945312499999], [175.1625, -40.62158203125], [175.00927734375009, -39.95214843749996], [173.93437500000013, -39.50908203125002], [173.84433593750006, -39.13935546875001], [174.59736328124998, -38.78505859374995], [174.92802734375002, -37.80449218750003], [174.446875, -36.45087890625004], [173.94511718750002, -36.17587890624998], [173.11669921874997, -35.205273437500026], [173.26943359375, -34.93476562499998]]]]}, "type": "Feature", "properties": {"name": "New Zealand"}}, {"geometry": {"type": "Polygon", "coordinates": [[[56.38798828125002, 24.97919921875004], [57.219824218750006, 23.922753906250023], [58.57802734375005, 23.64345703125005], [59.8, 22.21992187500001], [59.37148437500005, 21.498828125000017], [58.47421875000006, 20.406884765624966], [57.86181640624997, 20.24414062500003], [57.81162109375006, 19.01708984374997], [56.655078125000074, 18.58735351562501], [56.27031250000002, 17.950781249999977], [55.479101562500006, 17.84326171875003], [55.06416015625004, 17.038916015625034], [54.06816406250002, 17.005517578124966], [53.08564453125004, 16.648388671874955], [51.977636718750006, 18.996142578125074], [54.97734375000002, 19.995947265625006], [55.64101562499999, 22.001855468749994], [55.185839843750074, 22.7041015625], [55.1999023437501, 23.034765625000034], [56.06386718750005, 24.73876953125], [56.38798828125002, 24.97919921875004]]]}, "type": "Feature", "properties": {"name": "Oman"}}, {"geometry": {"type": "Polygon", "coordinates": [[[76.76689453124999, 35.66171875], [77.04863281249999, 35.109912109374996], [76.59443359375001, 34.73583984375], [75.70917968750001, 34.503076171874994], [74.300390625, 34.765380859375], [73.96123046875002, 34.653466796874994], [74.15, 33.506982421874994], [73.99423828125, 33.2421875], [74.6578125, 32.518945312499994], [75.33349609375, 32.279199218749994], [74.50996093750001, 31.712939453124996], [74.6328125, 31.03466796875], [73.38164062500002, 29.934375], [72.9033203125, 29.028759765624997], [72.34189453125, 28.751904296874997], [71.87031250000001, 27.9625], [70.73740234375, 27.72900390625], [70.40371093750002, 28.025048828124994], [69.56796875, 27.174609375], [69.47001953125002, 26.804443359375], [70.14921875000002, 26.347558593749994], [70.1001953125, 25.910058593749994], [70.65205078125001, 25.422900390625003], [71.0478515625, 24.687744140625], [69.71621093750002, 24.172607421875], [67.66845703125, 23.810986328124997], [67.171484375, 24.756103515625], [66.70302734375002, 24.8609375], [66.42861328125002, 25.575341796874994], [64.65898437500002, 25.18408203125], [61.74365234375, 25.13818359375], [61.66865234375001, 25.768994140624997], [62.31230468750002, 26.490869140624994], [63.168066406250006, 26.665576171874996], [62.75273437500002, 27.265625], [62.782324218750006, 27.800537109375], [62.7625, 28.202050781249994], [61.88984375000001, 28.546533203124994], [61.15214843750002, 29.542724609375], [60.843359375, 29.858691406249996], [62.4765625, 29.408349609374994], [64.09873046875, 29.391943359375], [66.17705078125002, 29.835595703124994], [66.39716796875001, 30.91220703125], [67.28730468750001, 31.217822265624996], [68.21396484375, 31.807373046875], [68.86894531250002, 31.634228515624997], [69.279296875, 31.936816406249996], [69.5015625, 33.020068359374996], [70.2841796875, 33.369042968749994], [69.86806640625002, 33.89765625], [71.05156250000002, 34.049707031249994], [70.965625, 34.53037109375], [71.62050781250002, 35.183007812499994], [71.18505859375, 36.04208984375], [72.62285156250002, 36.82958984375], [74.54140625000002, 37.02216796875], [75.84023437500002, 36.649707031249996], [75.94511718750002, 36.017578125], [76.76689453124999, 35.66171875]]]}, "type": "Feature", "properties": {"name": "Pakistan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-77.37421874999993, 8.65830078125002], [-77.2123046875, 8.033886718749997], [-77.90117187499999, 7.229345703125048], [-78.42158203124995, 8.060986328125011], [-78.11386718749998, 8.379589843749983], [-79.08637695312495, 8.997167968750034], [-80.36870117187499, 8.288769531250054], [-80.07519531249997, 7.667041015625045], [-80.84555664062498, 7.22006835937502], [-81.03510742187495, 7.711132812500054], [-81.72763671875, 8.137548828124977], [-83.02734375, 8.337744140624991], [-82.93984374999994, 9.449169921875026], [-82.24418945312499, 9.031494140625014], [-81.35478515624996, 8.78056640624996], [-80.12709960937497, 9.20991210937504], [-79.57729492187497, 9.597851562500026], [-78.08276367187494, 9.236279296874997], [-77.37421874999993, 8.65830078125002]]]}, "type": "Feature", "properties": {"name": "Panama"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Pitcairn Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-73.137353515625, -6.4658203125], [-73.75810546874999, -6.90576171875], [-73.79301757812499, -7.135058593750003], [-74.00205078124999, -7.556054687500009], [-72.9740234375, -8.9931640625], [-72.379052734375, -9.51015625], [-72.181591796875, -10.003710937500003], [-71.11528320312499, -9.852441406250009], [-70.59916992187499, -9.620507812500009], [-70.642333984375, -11.01025390625], [-69.57861328125, -10.951757812500006], [-68.68525390625, -12.501953125], [-68.97861328124999, -12.880078125000011], [-69.07412109375, -13.682812500000011], [-68.880322265625, -14.198828125], [-69.37470703125, -14.962988281250006], [-69.41850585937499, -15.603417968750009], [-69.020703125, -16.6421875], [-69.62485351562499, -17.2001953125], [-69.5109375, -17.50605468750001], [-69.92636718749999, -18.2060546875], [-70.41826171874999, -18.34560546875001], [-71.33696289062499, -17.68251953125001], [-71.5322265625, -17.29433593750001], [-72.46767578125, -16.708105468750006], [-73.824951171875, -16.15283203125], [-75.104248046875, -15.411914062500003], [-76.289013671875, -14.133105468750003], [-76.18393554687499, -13.515234375], [-77.2203125, -11.663378906250003], [-77.633203125, -11.287792968750011], [-78.76225585937499, -8.616992187500003], [-80.11025390625, -6.649609375000011], [-80.81162109374999, -6.2822265625], [-81.283203125, -4.322265625], [-80.27353515624999, -3.424609375], [-80.293359375, -4.416796875], [-79.63852539062499, -4.454882812500003], [-79.07626953124999, -4.990625], [-78.64799804687499, -4.248144531250006], [-78.240380859375, -3.472558593750009], [-77.860595703125, -2.981640625000011], [-76.6791015625, -2.562597656250006], [-75.570556640625, -1.53125], [-75.13837890625, -0.050488281250011], [-73.664306640625, -1.248828125], [-73.1544921875, -2.278222656250009], [-72.39560546874999, -2.428906250000011], [-71.75253906249999, -2.152734375], [-70.91455078125, -2.218554687500003], [-70.07402343749999, -2.750195312500011], [-70.735107421875, -3.781542968750003], [-70.16752929687499, -4.050195312500009], [-71.8447265625, -4.50439453125], [-72.88706054687499, -5.122753906250011], [-73.235546875, -6.0984375], [-73.137353515625, -6.4658203125]]]}, "type": "Feature", "properties": {"name": "Peru"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[126.00595703125006, 9.320947265625009], [126.31953125000004, 8.844726562499986], [126.58154296875003, 7.247753906249969], [126.08007812500003, 6.733349609374983], [125.40097656250012, 6.795751953124991], [125.66796874999997, 5.97866210937498], [125.45585937500002, 5.664257812500054], [124.078125, 6.404443359375037], [124.20664062500006, 7.396435546874983], [123.39091796875007, 7.407519531250017], [122.13183593749997, 7.81049804687504], [122.91113281250003, 8.156445312499997], [123.43457031249997, 8.70332031250004], [124.22578125000004, 8.271386718749966], [124.86894531250002, 8.972265625000034], [126.00595703125006, 9.320947265625009]]], [[[123.13085937500003, 9.064111328124994], [122.5625, 9.482812500000037], [122.98330078125, 10.886621093750037], [123.5675781250001, 10.780761718750057], [123.16201171875, 9.864257812500028], [123.13085937500003, 9.064111328124994]]], [[[117.31113281250012, 8.439599609375051], [119.52666015625002, 10.953173828125003], [119.684375, 10.551708984375011], [118.78212890625005, 9.91611328125002], [118.4349609375, 9.256005859375009], [117.31113281250012, 8.439599609375051]]], [[[124.574609375, 11.343066406250031], [124.92998046875002, 11.372851562499974], [125.25332031250005, 10.26381835937498], [124.78076171874997, 10.16806640625002], [124.574609375, 11.343066406250031]]], [[[122.49619140625006, 11.615087890625034], [123.15830078125012, 11.53554687499999], [122.76992187500005, 10.823828125000034], [121.96435546874997, 10.871679687500006], [122.10351562499997, 11.64291992187502], [122.49619140625006, 11.615087890625034]]], [[[125.23955078125002, 12.527880859375003], [125.628125, 11.132031250000026], [125.23339843749997, 11.145068359375017], [124.29472656250007, 12.569335937500014], [125.23955078125002, 12.527880859375003]]], [[[120.70439453125002, 13.479492187499986], [121.52275390625007, 13.131201171874991], [121.23671875000005, 12.218798828125003], [120.50830078124997, 13.260058593750045], [120.70439453125002, 13.479492187499986]]], [[[121.10156249999997, 18.615283203125017], [121.84560546875, 18.29541015625003], [122.51914062500012, 17.124853515625034], [122.13515625000005, 16.18481445312503], [121.59531250000012, 15.933251953125023], [121.39228515625004, 15.324414062499969], [121.80048828125004, 14.113867187499991], [122.85605468750006, 14.25078125], [122.40693359375004, 13.49277343750002], [121.77792968750006, 13.93764648437498], [121.20351562500005, 13.640283203124966], [120.61679687500006, 14.188037109375003], [120.8880859375, 14.715771484375054], [120.08212890625012, 14.851074218749986], [120.15976562500012, 16.047656250000045], [120.40888671875004, 16.955615234375017], [120.35839843749997, 17.63818359375], [120.59970703125012, 18.507861328125074], [121.10156249999997, 18.615283203125017]]]]}, "type": "Feature", "properties": {"name": "Philippines"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Palau"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[155.95761718750006, -6.686816406249989], [155.34404296875007, -6.721679687499986], [154.78193359375004, -5.970703125000028], [154.99707031249997, -5.539941406250023], [155.95761718750006, -6.686816406249989]]], [[[151.915625, -4.296777343749966], [152.4, -4.73125], [152.14296875, -5.357031249999963], [150.42832031250012, -6.276171874999989], [149.65253906250004, -6.290429687499966], [148.40117187500002, -5.765039062499952], [148.34472656249997, -5.544921874999972], [150.29873046875, -5.535644531250028], [150.95292968750002, -5.423730468749966], [151.67119140625007, -4.88330078125], [151.915625, -4.296777343749966]]], [[[140.97617187500012, -9.11875], [140.97519531250006, -6.90537109375002], [140.97353515625, -2.803417968750026], [140.97343750000007, -2.609765625], [142.21152343750006, -3.083496093749972], [143.50898437500004, -3.431152343750014], [144.4777343750001, -3.82529296875002], [145.7669921875, -4.823046874999989], [145.85283203125002, -5.471289062499977], [147.80205078125002, -6.31523437499996], [147.11914062499997, -6.721679687499986], [147.19003906250012, -7.378125], [148.12675781250007, -8.103613281249963], [148.58310546875006, -9.051757812499957], [149.87441406250005, -10.012988281250031], [150.66699218749997, -10.257128906250031], [150.48242187500003, -10.63691406250004], [149.75410156250004, -10.353027343750028], [147.76865234375012, -10.070117187500031], [146.69658203125002, -9.025390625], [146.03320312499997, -8.076367187500011], [144.50986328125006, -7.567382812499972], [143.61376953125003, -8.200390624999969], [143.0949218750001, -8.311230468749983], [143.36621093750003, -8.961035156250034], [142.6471679687501, -9.327832031249969], [140.97617187500012, -9.11875]]]]}, "type": "Feature", "properties": {"name": "Papua New Guinea"}}, {"geometry": {"type": "Polygon", "coordinates": [[[23.484667968750017, 53.939794921875], [23.8447265625, 52.664208984375], [23.605273437500017, 51.517919921875], [23.664453125000023, 51.31005859375], [24.105761718750017, 50.844970703125], [22.6494140625, 49.539013671875], [22.538671875, 49.072705078125], [21.6396484375, 49.411962890625], [19.80224609375, 49.192333984375], [18.83222656250001, 49.510791015624996], [17.151953125, 50.378320312499994], [14.809375, 50.858984375], [14.9638671875, 51.095117187499994], [14.619433593750017, 52.528515625], [14.128613281250011, 52.878222656249996], [14.715722656250023, 54.018310546875], [16.55976562500001, 54.55380859375], [18.32343750000001, 54.838183593749996], [18.66962890625001, 54.430908203125], [23.015527343750023, 54.34833984375], [23.484667968750017, 53.939794921875]]]}, "type": "Feature", "properties": {"name": "Poland"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-66.12939453125003, 18.444921875000034], [-65.97080078124995, 17.974365234375], [-67.196875, 17.994189453125045], [-67.15864257812501, 18.499218749999983], [-66.12939453125003, 18.444921875000034]]]}, "type": "Feature", "properties": {"name": "Puerto Rico"}}, {"geometry": {"type": "Polygon", "coordinates": [[[130.52695312500012, 42.535400390625], [130.68730468750007, 42.30253906249999], [129.75634765624997, 41.712255859375006], [129.70869140625004, 40.857324218749994], [128.30449218750002, 40.03593749999999], [127.56816406250002, 39.78198242187503], [127.39453125000003, 39.207910156249966], [128.37460937500012, 38.6234375], [128.03896484375, 38.30854492187498], [127.16953125000006, 38.304541015625034], [126.63388671875012, 37.78183593750006], [125.44931640625012, 37.73022460937503], [125.06738281250003, 38.556738281250006], [125.36083984375003, 39.52661132812497], [124.36210937500002, 40.004052734374994], [124.8893554687501, 40.459814453125006], [125.98906250000002, 40.904638671875034], [126.9035156250001, 41.78105468749999], [128.11123046875, 41.389257812500006], [128.04521484375007, 41.9875], [128.92343750000006, 42.038232421874966], [129.71972656249997, 42.475], [130.52695312500012, 42.535400390625]]]}, "type": "Feature", "properties": {"name": "North Korea"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-7.406152343749937, 37.17944335937497], [-8.597656249999943, 37.12133789062506], [-8.914794921874972, 38.512109374999966], [-9.474121093749972, 38.73085937500002], [-8.655566406249932, 41.02949218749998], [-8.777148437500017, 41.941064453124994], [-6.61826171874992, 41.9423828125], [-6.2125, 41.53203125], [-6.928466796874972, 41.009130859375006], [-6.8101562499999, 40.343115234375034], [-7.44511718749996, 39.53618164062496], [-7.046044921874937, 38.907031250000045], [-7.406152343749937, 37.17944335937497]]]}, "type": "Feature", "properties": {"name": "Portugal"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-58.15976562499999, -20.164648437500006], [-57.830224609374994, -20.99794921875001], [-57.94267578124999, -21.79833984375], [-57.8203125, -22.14228515625001], [-56.77519531249999, -22.261328125], [-55.84916992187499, -22.3076171875], [-55.36630859374999, -23.991015625], [-54.62548828125, -23.8125], [-54.281005859375, -24.30605468750001], [-54.934472656249994, -26.70253906250001], [-55.789990234375, -27.41640625], [-56.437158203124994, -27.553808593750006], [-58.641748046874994, -27.19609375], [-57.943115234375, -26.05292968750001], [-57.821679687499994, -25.13642578125001], [-59.372949218749994, -24.45390625], [-59.892480468749994, -24.093554687500003], [-61.084716796875, -23.65644531250001], [-61.79853515625, -23.18203125], [-62.65097656249999, -22.233691406250003], [-62.276318359375, -20.5625], [-61.7568359375, -19.6453125], [-60.00737304687499, -19.29755859375001], [-59.09052734375, -19.286230468750006], [-58.18017578125, -19.81787109375], [-58.15976562499999, -20.164648437500006]]]}, "type": "Feature", "properties": {"name": "Paraguay"}}, {"geometry": {"type": "Polygon", "coordinates": [[[34.88046875, 31.3681640625], [35.303808593750006, 32.512939453125], [35.450585937499994, 31.479296875000017], [34.88046875, 31.3681640625]]]}, "type": "Feature", "properties": {"name": "Palestine"}}, {"geometry": null, "type": "Feature", "properties": {"name": "French Polynesia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[51.26796875000002, 24.607226562500003], [50.76289062500001, 25.444726562499994], [51.003125, 25.9814453125], [51.543066406250006, 25.902392578125003], [51.60195312500002, 25.14794921875], [51.26796875000002, 24.607226562500003]]]}, "type": "Feature", "properties": {"name": "Qatar"}}, {"geometry": {"type": "Polygon", "coordinates": [[[28.2125, 45.450439453125], [28.78828125000001, 45.240966796875], [29.705859375000017, 45.259912109374994], [28.645410156250023, 44.295654296875], [28.585351562500023, 43.742236328124996], [27.0869140625, 44.167382812499994], [25.4970703125, 43.670800781249994], [23.224609375, 43.873876953125], [22.705078125, 44.23779296875], [22.687890625000023, 44.248291015625], [21.384375, 44.870068359375], [21.431445312500017, 45.192529296874994], [20.774218750000017, 45.484423828124996], [20.241796875, 46.10859375], [21.151953125, 46.304345703124994], [22.290625, 47.727832031249996], [22.87666015625001, 47.947265625], [23.628710937500017, 47.995849609375], [24.893359375000017, 47.7177734375], [26.4423828125, 48.22998046875], [26.618945312500017, 48.25986328125], [28.07177734375, 46.978417968749994], [28.2125, 45.450439453125]]]}, "type": "Feature", "properties": {"name": "Romania"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[142.76103515625002, 54.393945312499966], [143.22363281250003, 53.29604492187505], [143.15556640625002, 52.08374023437497], [144.27207031250012, 49.311328125000045], [143.10498046875003, 49.198828125000034], [142.55693359375002, 47.737890625000034], [142.57802734375005, 46.700781250000034], [141.83037109375002, 46.451074218749966], [142.18173828125012, 48.01337890625001], [141.86630859375006, 48.750097656250006], [142.1422851562501, 49.56914062499999], [142.20673828125004, 51.22255859375002], [141.72236328125004, 51.73632812499997], [141.82353515625007, 53.33950195312502], [142.52617187500002, 53.44746093749998], [142.76103515625002, 54.393945312499966]]], [[[21.235742187500023, 55.26411132812498], [22.83125, 54.838476562500034], [22.766210937499977, 54.356787109375034], [19.644238281250068, 54.44707031249996], [20.89980468750008, 55.286669921875045], [20.957812500000074, 55.27890625000006], [21.235742187500023, 55.26411132812498]]], [[[-179.79853515625, 68.9404296875], [-175.34521484375, 67.67807617187503], [-174.44760742187503, 67.103125], [-171.79555664062502, 66.93173828125003], [-170.191943359375, 66.20126953124998], [-170.66630859375, 65.62153320312501], [-172.21157226562502, 65.42519531249997], [-173.00913085937498, 64.2974609375], [-175.85385742187498, 65.01083984375003], [-176.09326171875, 65.471044921875], [-178.31020507812502, 65.48486328124997], [-180.0, 65.06723632812498], [-180.0, 65.31196289062501], [-180.0, 65.55678710937497], [-180.0, 65.80156250000002], [-180.0, 66.04628906250002], [-180.0, 66.29106445312499], [-180.0, 66.53583984375004], [-180.0, 66.78056640625005], [-180.0, 67.02534179687501], [-180.0, 67.27011718750006], [-180.0, 67.51484374999998], [-180.0, 67.75961914062503], [-180.0, 68.00439453124997], [-180.0, 68.24912109375], [-180.0, 68.49389648437497], [-180.0, 68.738671875], [-179.79853515625, 68.9404296875]]], [[[55.31982421875003, 73.30830078124998], [56.42958984375005, 73.201171875], [55.29785156249997, 71.93535156250005], [57.14589843750005, 70.58911132812506], [53.7223632812501, 70.81445312500003], [53.36386718750006, 71.54165039062505], [51.812597656250006, 71.49130859375], [53.753222656250074, 73.29326171875002], [55.31982421875003, 73.30830078124998]]], [[[140.04873046875, 75.82895507812503], [142.46035156250005, 75.90361328125007], [145.25527343750005, 75.58559570312502], [144.01972656250004, 75.04467773437506], [139.09912109374997, 74.65654296875002], [137.00625, 75.23500976562502], [137.50117187500004, 75.90966796874997], [140.04873046875, 75.82895507812503]]], [[[67.7653320312501, 76.23759765624999], [61.35595703124997, 75.31484375000002], [56.96386718750003, 73.36655273437503], [55.00683593750003, 73.45385742187506], [54.64267578125006, 73.95957031250006], [57.0875, 75.38383789062505], [58.88125, 75.85478515625007], [62.97148437500002, 76.23666992187498], [67.53496093750007, 77.00776367187504], [67.7653320312501, 76.23759765624999]]], [[[130.68730468750007, 42.30253906249999], [130.52695312500012, 42.535400390625], [131.26181640625006, 43.43305664062501], [131.08232421875002, 44.91000976562498], [131.97753906250003, 45.243994140625006], [132.93603515624997, 45.029931640624994], [133.86132812500003, 46.24775390625004], [134.1676757812501, 47.30219726562501], [134.75234375, 47.71542968749998], [134.29335937500005, 48.37343750000002], [132.5619140625, 47.768505859374955], [131.00273437500002, 47.69145507812499], [130.80429687500012, 48.34150390624998], [129.49814453125012, 49.38881835937502], [127.99960937500006, 49.56860351562506], [126.92480468749997, 51.10014648437496], [126.312890625, 52.39975585937506], [125.64902343750012, 53.042285156250045], [123.6078125, 53.546533203124994], [120.70410156249997, 53.171826171874955], [120.74980468750007, 52.096533203125006], [120.06689453125003, 51.60068359375006], [119.19189453125003, 50.37983398437504], [119.25986328125012, 50.06640625000003], [117.8734375, 49.51347656250002], [116.6833007812501, 49.82377929687499], [115.27451171875006, 49.948876953124994], [114.29707031250004, 50.27441406250006], [113.05556640625, 49.61625976562499], [110.82792968750002, 49.16616210937505], [108.61367187500005, 49.32280273437499], [107.94785156250012, 49.92470703125002], [106.71113281250004, 50.312597656250006], [105.38359375000002, 50.47373046874998], [103.63291015625006, 50.138574218749994], [102.28837890625007, 50.58510742187502], [102.1115234375001, 51.353466796874955], [99.92167968750002, 51.755517578124994], [98.84863281249997, 52.07006835937503], [97.94687500000012, 51.34843750000002], [98.2794921875001, 50.53325195312502], [98.10341796875005, 50.077832031249955], [97.20859375000006, 49.73081054687506], [95.851953125, 50.01293945312497], [94.61474609375003, 50.02373046874996], [94.25107421875006, 50.55639648437503], [91.80429687500006, 50.693603515625], [87.81425781250002, 49.162304687499955], [87.32285156250012, 49.085791015625006], [86.61425781249997, 49.60971679687498], [85.21015625000004, 49.66484375000002], [83.35732421875005, 50.99458007812504], [82.49394531250007, 50.72758789062499], [81.46591796875006, 50.73984375], [80.87734375, 51.28144531250004], [79.98623046875, 50.774560546874966], [77.70439453125007, 53.379150390625], [76.26660156249997, 54.31196289062498], [74.45195312500007, 53.64726562500002], [72.91406249999997, 54.10732421875002], [71.09316406250005, 54.21220703124999], [70.73808593750007, 55.30517578125], [68.9772460937501, 55.389599609374955], [68.07382812500006, 54.959570312500006], [65.476953125, 54.62329101562497], [61.92871093750003, 53.94648437500004], [61.33369140625004, 54.04926757812501], [60.80234375000006, 52.74472656249998], [60.937597656250006, 52.28056640625002], [60.06552734375006, 51.976464843749966], [61.363085937500074, 51.44189453125003], [61.38945312500002, 50.86103515625001], [59.812402343749994, 50.58203125], [58.359179687500074, 51.063818359375034], [57.44218750000002, 50.88886718749998], [56.49140625000004, 51.01953124999997], [55.79765625000002, 50.60205078125], [54.42148437500006, 50.78032226562499], [53.33808593750004, 51.48237304687504], [52.33105468749997, 51.681298828124966], [51.60908203125004, 51.483984375], [50.79394531249997, 51.729199218749955], [48.80839843750002, 50.60131835937503], [48.43427734375004, 49.828515624999966], [47.32646484375002, 50.273535156250034], [46.80205078125002, 49.36708984375002], [46.660937500000074, 48.41225585937502], [47.09326171875003, 47.947705078124955], [48.109960937500006, 47.74541015624996], [49.232226562500074, 46.33715820312503], [47.524218750000074, 45.60170898437505], [46.753027343750006, 44.42065429687503], [47.22988281250005, 44.19238281249997], [47.463183593750074, 43.03505859375002], [48.572851562500006, 41.84448242187503], [47.861132812500074, 41.212744140625034], [47.26113281250005, 41.315087890624994], [46.42988281250004, 41.890966796875006], [46.21269531250002, 41.989892578124994], [45.72753906249997, 42.47504882812498], [44.870996093749994, 42.75639648437499], [43.78261718750005, 42.747021484374955], [42.41904296875006, 43.22421875], [41.58056640624997, 43.21923828124997], [40.02373046875002, 43.48486328125], [38.71728515624997, 44.28808593750003], [37.41132812500004, 44.73535156250003], [38.21435546875003, 47.091455078124966], [38.90029296875005, 47.85512695312502], [39.96103515625006, 48.23793945312502], [39.780566406250074, 49.57202148437503], [37.42285156249997, 50.411474609375006], [36.619433593750074, 50.209228515625], [35.41162109375003, 50.539697265624994], [35.31191406250005, 51.043896484374955], [34.280664062499994, 51.311669921874966], [34.397851562499994, 51.780419921874994], [33.735253906249994, 52.344775390625045], [31.763378906250097, 52.10107421875003], [31.585546875, 52.532470703125], [31.849707031250006, 53.106201171875], [32.45097656250002, 53.6533203125], [31.754199218750017, 53.81044921875002], [30.625585937500006, 55.666259765625], [28.284277343750006, 56.055908203125], [27.35195312500005, 57.528125], [27.75283203125008, 57.841015624999955], [27.464453125000034, 58.84130859375], [28.0125, 59.484277343749966], [28.947265625000057, 59.828759765624994], [28.65058593750001, 60.61098632812502], [27.797656250000074, 60.53613281250003], [29.69013671875004, 61.54609375000001], [31.28564453125003, 62.567822265624955], [31.180859375000097, 63.208300781250074], [30.05537109375004, 63.689013671875045], [30.50390625000003, 64.02060546875], [29.60419921875004, 64.968408203125], [29.903417968750006, 66.091064453125], [29.087011718750034, 66.97094726562503], [29.941210937500074, 67.54746093749998], [28.470703125000057, 68.48837890625], [28.96582031250003, 69.02197265625], [30.869726562500006, 69.78344726562506], [32.37773437500002, 69.47910156250003], [35.85791015625003, 69.19174804687503], [40.96640625000006, 67.71347656250003], [41.18896484375003, 66.82617187500003], [40.52158203125006, 66.44663085937498], [38.39755859375006, 66.064453125], [35.51347656250002, 66.39580078125002], [34.40644531250004, 65.39575195312503], [34.86953125, 64.56000976562501], [36.3649414062501, 64.00283203125002], [38.07080078124997, 64.02583007812498], [36.52822265625005, 64.84736328125004], [36.88281249999997, 65.17236328124997], [39.7580078125001, 64.57705078125002], [40.28125, 64.99809570312502], [39.816503906250006, 65.59794921874999], [42.21054687500006, 66.51967773437502], [44.09716796874997, 66.23505859375004], [44.48867187499999, 66.67177734375002], [43.7824218750001, 67.25449218749998], [44.04804687500004, 68.54882812499997], [45.891992187499994, 68.47968750000001], [46.69042968750003, 67.84882812500001], [44.93945312499997, 67.47744140625002], [45.98603515625004, 66.853125], [47.70908203125006, 67.04501953125003], [47.87470703125004, 67.58417968749998], [50.83886718749997, 68.34995117187503], [52.550097656250074, 68.59243164062497], [53.967871093750006, 68.22734375000002], [56.04365234375004, 68.64887695312501], [57.126855468749994, 68.55400390625005], [58.91894531249997, 69.00380859375002], [60.93359374999997, 68.98676757812501], [60.17060546875004, 69.59091796875], [61.01591796875002, 69.85146484374997], [63.36142578125006, 69.67529296875003], [68.50419921875007, 68.34843749999999], [68.54277343750002, 68.96708984374999], [67.06445312500003, 69.69370117187498], [66.91757812500006, 71.28237304687497], [68.2692382812501, 71.68281250000001], [69.03906249999997, 72.66992187500003], [71.5001953125001, 72.91367187500003], [72.812109375, 72.69140624999997], [71.91201171875005, 71.54794921874998], [72.73164062500004, 70.82285156249998], [72.52734374999997, 69.08051757812501], [73.5480468750001, 68.57451171875005], [73.15214843750002, 67.86503906250002], [71.551171875, 66.76044921874995], [71.91699218749997, 66.24672851562502], [73.79208984375, 66.99531250000001], [74.76953124999997, 67.76635742187497], [74.57958984375003, 68.751220703125], [73.56015625, 69.70722656249998], [74.3109375, 70.65361328125005], [73.08623046875007, 71.44492187500006], [73.67177734375, 71.84506835937503], [76.03242187500004, 71.91040039062503], [80.82705078125005, 72.48828124999997], [80.5832031250001, 73.56845703125003], [86.59140625000006, 73.89428710937497], [86.65146484375012, 74.68242187500005], [90.18496093750005, 75.59106445312497], [96.87919921875002, 75.93105468749997], [100.32236328125012, 76.479150390625], [100.98994140625004, 76.99047851562497], [104.01455078125, 77.73041992187501], [104.91191406250002, 77.17470703125002], [108.02792968750006, 76.71845703124998], [111.11484375000012, 76.72304687500002], [113.87099609375005, 75.85600585937505], [113.61357421875007, 75.29296875], [110.2614257812501, 74.01743164062503], [112.14726562500007, 73.70893554687498], [118.45019531249997, 73.58979492187504], [119.750390625, 72.97910156250006], [123.1603515625001, 72.95488281250002], [123.305078125, 73.53291015624998], [127.74033203125012, 73.48154296875], [128.88867187500003, 73.19023437499999], [129.41171875000006, 72.31547851562505], [128.3587890625, 72.08833007812504], [129.76191406250004, 71.11953125000002], [131.56201171875003, 70.901025390625], [132.56230468750007, 71.89531250000005], [134.10283203125002, 71.37895507812502], [135.88476562499997, 71.63056640625004], [137.31542968750003, 71.35942382812505], [139.69511718750007, 71.70043945312497], [139.60117187500012, 72.49609374999997], [142.06142578125005, 72.72080078125], [146.59414062500005, 72.30244140624995], [149.50156250000012, 72.16430664062497], [150.59980468750004, 71.5201171875], [152.50878906250003, 70.83447265625003], [155.8952148437501, 71.09550781250002], [159.35068359375006, 70.79072265625001], [159.83251953125003, 69.78496093749999], [161.53691406250002, 69.379541015625], [162.37568359375004, 69.64907226562502], [166.82031250000003, 69.49956054687505], [169.60986328124997, 68.78603515624997], [170.99541015625002, 69.04531250000005], [170.48681640625003, 70.107568359375], [173.27744140625006, 69.823828125], [176.10751953125018, 69.86030273437498], [180.0, 68.98344726562505], [180.0, 65.06723632812498], [178.51953125000003, 64.60297851562498], [178.7064453125001, 63.52153320312502], [179.5705078125001, 62.6875], [179.12070312500012, 62.32036132812499], [177.3512695312501, 62.587451171875045], [174.51435546875015, 61.823632812499966], [172.85654296875006, 61.469189453124955], [172.39277343750004, 61.061767578125], [169.9826171875001, 60.067089843749955], [169.2267578125001, 60.59594726562497], [166.9640625000001, 60.30703125], [166.35214843750006, 60.48481445312498], [165.08457031250006, 60.09858398437498], [163.78007812500007, 60.041113281250006], [163.27285156250005, 59.302587890625006], [161.96005859375012, 58.07690429687506], [162.77929687500003, 57.35761718749998], [163.33554687500012, 56.232519531250006], [162.08496093749997, 56.08964843750002], [161.72939453125, 55.358007812500006], [162.10556640625006, 54.75214843750004], [160.77265625000004, 54.54135742187498], [160.0744140625001, 54.18916015625001], [159.89765625000004, 53.380761718749966], [158.6087890625, 52.873632812500034], [158.10351562500003, 51.80961914062499], [156.74775390625004, 50.969287109375045], [156.0988281250001, 53.00649414062502], [155.5548828125001, 55.348486328125034], [155.98251953125012, 56.69521484375002], [157.4503906250001, 57.79926757812498], [159.03691406250002, 58.423925781250034], [159.8473632812501, 59.127148437499955], [162.0036132812501, 60.42016601562503], [163.70996093749997, 60.916796875000045], [164.25566406250007, 62.69658203124999], [163.33173828125004, 62.550927734374994], [163.00927734374997, 61.79150390625], [160.76660156249997, 60.753320312499966], [159.07666015625003, 61.92226562499999], [157.46933593750012, 61.798925781250006], [154.29306640625006, 59.833349609375034], [155.16669921875004, 59.36015624999999], [152.8822265625, 58.9390625], [151.48574218750005, 59.52412109375001], [149.64257812499997, 59.770410156249994], [149.20498046875, 59.488183593749966], [147.51445312500002, 59.2685546875], [146.44433593749997, 59.43046875000002], [143.19218750000002, 59.3701171875], [142.02539062499997, 58.99965820312502], [140.00234375000005, 57.6875], [138.66210937500003, 56.96552734375004], [137.69150390625006, 56.13935546875004], [135.2625, 54.94331054687498], [135.85156249999997, 54.583935546874955], [136.797265625, 54.62099609375005], [136.68300781250005, 53.93129882812505], [137.3283203125001, 53.538964843749966], [138.66074218750012, 53.744775390624966], [138.695703125, 54.32001953125001], [139.707421875, 54.27714843749999], [141.4020507812501, 53.18398437500002], [141.48525390625, 52.17851562500002], [140.68769531250004, 51.23227539062506], [140.51718750000012, 49.59614257812498], [140.17060546875004, 48.52368164062497], [138.58681640625005, 47.057226562500006], [137.68544921875, 45.81835937500003], [135.87460937500012, 44.37353515625003], [135.1310546875001, 43.52573242187506], [133.15996093750007, 42.69697265624998], [131.72207031250005, 43.20263671875006], [130.68730468750007, 42.30253906249999]]], [[[102.88476562499997, 79.25395507812505], [105.14599609375003, 78.81884765625006], [103.71933593750006, 78.25825195312498], [101.20410156249997, 78.19194335937505], [100.28398437500002, 78.67919921875003], [102.88476562499997, 79.25395507812505]]], [[[97.67451171875004, 80.15825195312499], [100.0612304687501, 79.77709960937506], [99.43955078125012, 78.834228515625], [94.65234375000003, 79.12749023437505], [93.07080078124997, 79.49531250000001], [94.98730468749997, 80.096826171875], [97.67451171875004, 80.15825195312499]]], [[[96.52656250000004, 81.0755859375], [97.1751953125, 80.24101562500007], [93.87236328125002, 80.010107421875], [91.52382812500005, 80.35854492187502], [93.06513671875004, 80.98847656250001], [96.52656250000004, 81.0755859375]]]]}, "type": "Feature", "properties": {"name": "Russia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[30.50996093750001, -1.067285156250009], [30.812597656250006, -1.563085937500006], [30.553613281250023, -2.400097656250011], [29.8681640625, -2.71640625], [29.01435546875001, -2.72021484375], [29.12939453125, -1.860253906250009], [29.576953125000017, -1.387890625000011], [30.50996093750001, -1.067285156250009]]]}, "type": "Feature", "properties": {"name": "Rwanda"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-8.683349609375, 27.2859375], [-8.682226562499977, 25.995507812499994], [-12.016308593749983, 25.995410156250003], [-12.016308593749983, 25.740136718749994], [-12.016308593749983, 25.331689453124994], [-12.016308593749983, 24.923242187499994], [-12.016308593749983, 24.378662109375], [-12.016308593749983, 23.97021484375], [-12.372900390624977, 23.318017578124994], [-13.031494140625, 23.000244140625], [-13.016210937499977, 21.333935546874997], [-15.231201171875, 21.331298828125], [-16.964550781249983, 21.329248046874994], [-17.06396484375, 20.89882812499999], [-17.003076171874994, 21.420703125], [-14.8408203125, 21.45078125], [-14.52099609375, 21.990869140624994], [-14.22119140625, 22.31015625], [-14.02099609375, 23.41074218749999], [-12.43115234375, 24.83066406249999], [-12.03076171875, 26.030859375], [-11.718212890624983, 26.1041015625], [-10.922802734374983, 27.0103515625], [-9.7353515625, 26.8609375], [-8.753857421874983, 27.191015625], [-8.683349609375, 27.656445312499997], [-8.683349609375, 27.2859375]]]}, "type": "Feature", "properties": {"name": "Western Sahara"}}, {"geometry": {"type": "Polygon", "coordinates": [[[46.53144531250004, 29.09624023437499], [47.433203125, 28.989550781250017], [47.671289062499994, 28.53315429687504], [48.442480468750006, 28.542919921874983], [48.90644531250004, 27.62905273437505], [49.986132812500074, 26.828906250000017], [50.03164062499999, 26.11098632812505], [50.96601562500004, 24.573925781249983], [51.56835937500003, 24.286181640625074], [52.55507812500005, 22.932812499999955], [55.104296875000074, 22.621484375000023], [55.185839843750074, 22.7041015625], [55.64101562499999, 22.001855468749994], [54.97734375000002, 19.995947265625006], [51.977636718750006, 18.996142578125074], [49.04199218750003, 18.58178710937503], [48.17216796875002, 18.156933593749983], [47.44179687499999, 17.111865234375045], [45.14804687500006, 17.427441406249955], [43.19091796875003, 17.359375], [43.16503906249997, 16.689404296874955], [42.79931640624997, 16.37177734375001], [42.29394531249997, 17.434960937499966], [41.75, 17.88574218749997], [41.22949218750003, 18.678417968749983], [40.75917968750005, 19.755468750000034], [39.61367187499999, 20.517675781249977], [39.093554687500074, 21.31035156249999], [39.09589843750004, 22.392773437499983], [38.46416015625002, 23.71186523437504], [37.54306640625006, 24.291650390625023], [37.14882812499999, 25.291113281249977], [35.18046875000002, 28.03486328125004], [34.61621093749997, 28.148339843749966], [34.95078125, 29.353515625], [36.01542968750002, 29.190478515625017], [36.75527343750005, 29.86601562499996], [37.46923828125003, 29.995068359374955], [37.98007812500006, 30.5], [36.95859375000006, 31.491503906250017], [38.962304687499994, 31.99492187499999], [40.3693359375001, 31.93896484375003], [42.07441406250004, 31.08037109374999], [44.69082031250005, 29.20234375000001], [46.53144531250004, 29.09624023437499]]]}, "type": "Feature", "properties": {"name": "Saudi Arabia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[36.87138671875002, 21.996728515624994], [37.15058593750001, 21.103759765625], [37.24843750000002, 19.58188476562499], [37.471289062500006, 18.820117187500003], [38.609472656250006, 18.005078125], [37.78242187500001, 17.4580078125], [36.887792968750006, 16.624658203124994], [36.566015625, 15.362109375], [36.52431640625002, 14.2568359375], [36.107519531250006, 12.726464843749994], [35.59609375000002, 12.537304687499997], [35.1123046875, 11.816552734374994], [34.93144531250002, 10.864794921874989], [34.27568359375002, 10.528125], [34.078125, 9.461523437499991], [33.8921875, 10.198974609375], [33.17216796875002, 10.850146484374989], [33.07304687500002, 11.591503906249997], [32.33535156250002, 11.716015625], [32.40410156250002, 11.057763671874994], [31.224902343750017, 9.799267578124997], [30.739355468750006, 9.74267578125], [30.003027343750006, 10.277392578124989], [28.844531250000017, 9.326074218749994], [27.885839843750006, 9.599658203124989], [26.551367187500006, 9.525830078124997], [25.79804687500001, 10.420507812499991], [25.066992187500006, 10.293798828124991], [24.53193359375001, 8.886914062499997], [24.147363281250023, 8.665625], [23.53730468750001, 8.815820312499994], [23.646289062500017, 9.822900390624994], [22.86005859375001, 10.919677734375], [22.55634765625001, 11.66953125], [22.10761718750001, 13.730322265624991], [22.50996093750001, 14.12744140625], [23.10517578125001, 15.702539062499994], [23.9833984375, 15.780175781249994], [23.980273437500017, 19.496630859375003], [23.980273437500017, 19.99594726562499], [24.9794921875, 20.002587890624994], [24.980273437500017, 21.995849609375], [28.036425781250017, 21.995361328125], [31.434472656250023, 21.995849609375], [33.91845703125, 21.996240234374994], [36.87138671875002, 21.996728515624994]]]}, "type": "Feature", "properties": {"name": "Sudan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[34.078125, 9.461523437499991], [34.09453125000002, 8.582226562499997], [33.23427734375002, 8.396386718749994], [33.01259765625002, 7.951513671874991], [33.666113281250006, 7.670996093749991], [34.71064453125001, 6.660302734374994], [35.26835937500002, 5.492285156249991], [33.97607421875, 4.22021484375], [33.489355468750006, 3.755078125], [32.83808593750001, 3.798486328124994], [32.09941406250002, 3.529199218749994], [31.15234375, 3.785595703124997], [30.83857421875001, 3.49072265625], [29.676855468750006, 4.5869140625], [28.19208984375001, 4.350244140624994], [27.4033203125, 5.109179687499989], [27.083398437500023, 5.77685546875], [26.514257812500006, 6.069238281249994], [26.36181640625, 6.635302734374989], [25.380664062500017, 7.333398437499994], [24.853320312500017, 8.137548828124991], [24.147363281250023, 8.665625], [24.53193359375001, 8.886914062499997], [25.066992187500006, 10.293798828124991], [25.79804687500001, 10.420507812499991], [26.551367187500006, 9.525830078124997], [27.885839843750006, 9.599658203124989], [28.844531250000017, 9.326074218749994], [30.003027343750006, 10.277392578124989], [30.739355468750006, 9.74267578125], [31.224902343750017, 9.799267578124997], [32.40410156250002, 11.057763671874994], [32.33535156250002, 11.716015625], [33.07304687500002, 11.591503906249997], [33.17216796875002, 10.850146484374989], [33.8921875, 10.198974609375], [34.078125, 9.461523437499991]]]}, "type": "Feature", "properties": {"name": "South Sudan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-12.280615234374977, 14.809033203124997], [-12.05419921875, 13.633056640625], [-11.390380859375, 12.941992187499991], [-11.389404296875, 12.404394531249991], [-12.291210937499983, 12.328027343749994], [-13.729248046875, 12.673925781249991], [-15.196093749999989, 12.679931640625], [-16.711816406249994, 12.354833984374991], [-16.763330078124994, 13.064160156249997], [-16.56230468749999, 13.587304687499994], [-17.168066406249977, 14.640625], [-16.16835937499999, 16.547070312499997], [-15.768212890624994, 16.485107421875], [-14.300097656249989, 16.580273437499997], [-13.756640624999989, 16.172509765624994], [-13.105273437499989, 15.57177734375], [-12.40869140625, 14.889013671874991], [-12.280615234374977, 14.809033203124997]]]}, "type": "Feature", "properties": {"name": "Senegal"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Singapore"}}, {"geometry": null, "type": "Feature", "properties": {"name": "South Georgia and South Sandwich Islands"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Saint Helena"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Solomon Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-10.758593749999989, 9.385351562499991], [-10.677343749999977, 8.400585937499997], [-10.878076171874994, 7.538232421874994], [-11.267675781249977, 7.232617187499997], [-11.733447265625017, 7.088574218750054], [-12.48564453124996, 7.386279296875045], [-13.272753906249989, 8.429736328124989], [-12.958789062499989, 9.263330078124994], [-12.557861328125, 9.704980468749994], [-12.142333984375, 9.87539062499999], [-11.205664062499949, 9.977734374999969], [-10.758593749999989, 9.385351562499991]]]}, "type": "Feature", "properties": {"name": "Sierra Leone"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-89.36259765624999, 14.416015625], [-87.781884765625, 13.521386718749994], [-88.51201171874999, 13.183935546874991], [-90.09521484375, 13.736523437499997], [-89.36259765624999, 14.416015625]]]}, "type": "Feature", "properties": {"name": "El Salvador"}}, {"geometry": null, "type": "Feature", "properties": {"name": "San Marino"}}, {"geometry": {"type": "Polygon", "coordinates": [[[48.938574218750006, 11.258447265624994], [48.938085937500006, 9.451757812499991], [47.97822265625001, 7.9970703125], [46.97822265625001, 7.9970703125], [44.02285156250002, 8.986035156249997], [43.482519531250006, 9.379492187499991], [42.65957031250002, 10.621386718749989], [42.92275390625002, 10.999316406249989], [43.24599609375002, 11.499804687499989], [44.38652343750002, 10.430224609374989], [44.94296875, 10.43671875], [45.81669921875002, 10.835888671874997], [46.565039062500006, 10.745996093749994], [47.40498046875001, 11.174023437499997], [48.938574218750006, 11.258447265624994]]]}, "type": "Feature", "properties": {"name": "Somaliland"}}, {"geometry": {"type": "Polygon", "coordinates": [[[41.88398437500001, 3.977734375], [44.028125, 4.950976562499989], [44.940527343750006, 4.912011718749994], [45.93496093750002, 5.997216796874994], [47.97822265625001, 7.9970703125], [48.938085937500006, 9.451757812499991], [48.938574218750006, 11.258447265624994], [50.11005859375001, 11.529296875], [50.79228515625002, 11.983691406249989], [51.2548828125, 11.830712890624994], [51.140625, 10.656884765624994], [50.825, 9.428173828124997], [49.34853515625002, 6.990527343749989], [49.04931640625, 6.173632812499989], [47.97529296875001, 4.497021484374997], [46.05117187500002, 2.475146484374989], [44.33271484375001, 1.390966796874991], [43.46767578125002, 0.621630859374989], [41.521875, -1.572265625], [40.97871093750001, -0.870312500000011], [40.964453125, 2.814648437499997], [41.88398437500001, 3.977734375]]]}, "type": "Feature", "properties": {"name": "Somalia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Saint Pierre and Miquelon"}}, {"geometry": {"type": "Polygon", "coordinates": [[[21.431445312500017, 45.192529296874994], [21.384375, 44.87006835937501], [22.687890625000023, 44.248291015625], [22.42080078125005, 44.00742187500006], [22.799902343750006, 42.985742187499994], [22.523535156250006, 42.440966796875045], [21.52998046875001, 42.35], [21.057031250000023, 43.09169921875002], [20.339941406250063, 42.89287109375002], [19.670996093750006, 43.163964843749994], [19.19433593749997, 43.533300781250006], [19.583789062500017, 44.04345703125003], [19.007128906250045, 44.86918945312502], [18.905371093750006, 45.931738281250034], [19.421289062500023, 46.064453125], [19.61347656250001, 46.169189453125], [20.161425781250017, 46.14189453124996], [20.774218750000074, 45.484423828125045], [21.431445312500017, 45.192529296874994]]]}, "type": "Feature", "properties": {"name": "Republic of Serbia"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Sao Tome and Principe"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-54.03422851562499, 3.62939453125], [-54.1955078125, 2.81787109375], [-54.53593749999999, 2.343310546874989], [-55.005810546875, 2.59296875], [-56.12939453125, 2.299511718749997], [-56.4828125, 1.942138671875], [-56.704345703125, 2.036474609374991], [-58.05449218749999, 4.171923828124989], [-57.711083984374994, 4.991064453124991], [-57.194775390625, 5.5484375], [-56.96982421874999, 5.992871093749997], [-55.93955078124999, 5.795458984374989], [-54.83369140625, 5.988330078124989], [-54.05419921875, 5.807910156249989], [-54.45219726562499, 5.013476562499989], [-54.350732421874994, 4.054101562499994], [-54.03422851562499, 3.62939453125]]]}, "type": "Feature", "properties": {"name": "Suriname"}}, {"geometry": {"type": "Polygon", "coordinates": [[[22.538671875, 49.072705078125], [22.1318359375, 48.405322265624996], [20.490039062500017, 48.526904296874996], [19.89863281250001, 48.13134765625], [17.76191406250001, 47.770166015624994], [17.147363281250023, 48.00595703125], [16.953125, 48.598828125], [18.83222656250001, 49.510791015624996], [19.80224609375, 49.192333984375], [21.6396484375, 49.411962890625], [22.538671875, 49.072705078125]]]}, "type": "Feature", "properties": {"name": "Slovakia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[16.516210937500006, 46.499902343749994], [16.1064453125, 46.382226562499994], [14.95458984375, 45.499902343749994], [13.878710937500017, 45.428369140624994], [13.831152343750006, 45.680419921875], [13.663476562500023, 45.7919921875], [13.420996093750006, 46.212304687499994], [13.7, 46.520263671875], [14.503515625, 46.417041015624996], [16.093066406250017, 46.86328125], [16.516210937500006, 46.499902343749994]]]}, "type": "Feature", "properties": {"name": "Slovenia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[24.15546875000004, 65.80527343750006], [21.565527343750063, 65.40810546874997], [21.46503906250001, 64.37958984375004], [20.76269531250003, 63.86782226562505], [17.895605468749977, 62.83051757812501], [17.13076171875005, 61.57573242187499], [17.25097656250003, 60.70078125], [17.955761718750068, 60.589794921874955], [18.970507812500045, 59.757226562499994], [18.285351562500068, 59.109375], [16.651953125, 58.43432617187503], [16.527929687500063, 57.06816406249999], [15.996679687500006, 56.22260742187501], [14.782031250000017, 56.16191406250002], [14.341699218749994, 55.52773437500002], [13.321386718750063, 55.34638671875004], [12.592578124999989, 56.13759765625002], [12.421484375000034, 56.906396484374966], [11.449316406250063, 58.118359374999955], [11.388281250000063, 59.036523437499966], [12.486132812500074, 60.10678710937506], [11.999902343750051, 63.29169921875001], [12.6625, 63.94047851562502], [13.960546875000063, 64.01401367187498], [13.650292968750023, 64.58154296874997], [14.47968750000004, 65.30146484374998], [14.543261718750045, 66.12934570312498], [16.40351562500004, 67.05498046875002], [16.12744140625, 67.42583007812507], [18.378613281250068, 68.56240234374997], [19.969824218750063, 68.35639648437501], [20.622167968750006, 69.036865234375], [23.63886718750004, 67.95439453125002], [24.15546875000004, 65.80527343750006]]]}, "type": "Feature", "properties": {"name": "Sweden"}}, {"geometry": {"type": "Polygon", "coordinates": [[[31.9482421875, -25.957617187500006], [32.112890625, -26.839453125], [31.958398437500023, -27.30585937500001], [31.063378906250023, -27.1123046875], [30.803320312500006, -26.41347656250001], [31.415136718750006, -25.74658203125], [31.921679687500017, -25.96875], [31.9482421875, -25.957617187500006]]]}, "type": "Feature", "properties": {"name": "Swaziland"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Sint Maarten"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Seychelles"}}, {"geometry": {"type": "Polygon", "coordinates": [[[42.358984375, 37.10859375], [41.41679687500002, 36.5146484375], [41.19472656250002, 34.768994140625], [40.689453125, 34.33203125], [38.773535156250006, 33.372216796874994], [36.818359375, 32.317285156249994], [35.78730468750001, 32.734912109374996], [35.869140625, 33.43173828125], [36.5849609375, 34.221240234374996], [35.97626953125001, 34.629199218749996], [35.76445312500002, 35.571582031249996], [36.65859375000002, 36.802539062499996], [37.43632812500002, 36.643310546875], [38.19169921875002, 36.9015625], [39.35664062500001, 36.681591796875], [40.705664062500006, 37.097705078124996], [41.886816406250006, 37.156396484374994], [42.358984375, 37.10859375]]]}, "type": "Feature", "properties": {"name": "Syria"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Turks and Caicos Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[23.980273437500017, 19.496630859375003], [23.9833984375, 15.780175781249994], [23.10517578125001, 15.702539062499994], [22.50996093750001, 14.12744140625], [22.10761718750001, 13.730322265624991], [22.55634765625001, 11.66953125], [22.86005859375001, 10.919677734375], [22.49384765625001, 10.996240234374994], [20.773242187500017, 9.405664062499994], [20.342089843750017, 9.127099609374994], [19.1455078125, 9.015966796874991], [19.108691406250017, 8.656152343749994], [18.455078125, 8.032031249999989], [17.6494140625, 7.98359375], [16.784765625, 7.550976562499997], [15.480078125, 7.523779296874991], [15.1162109375, 8.557324218749997], [13.977246093750011, 9.691552734374994], [14.243261718750006, 9.979736328125], [15.540917968750023, 9.960302734374991], [15.029882812500006, 11.11367187499999], [15.08125, 11.845507812499989], [14.516210937500006, 12.979736328125], [14.06396484375, 13.07851562499999], [13.932324218750011, 13.258496093749997], [13.606347656250023, 13.70458984375], [13.4482421875, 14.380664062500003], [14.367968750000017, 15.750146484374994], [15.474316406250011, 16.908398437499997], [15.735058593750011, 19.904052734375], [15.948828125, 20.303173828124997], [15.181835937500011, 21.523388671874997], [14.97900390625, 22.99619140624999], [15.984082031250011, 23.445214843749994], [18.231347656250023, 22.33554687499999], [21.5849609375, 20.679492187500003], [23.980273437500017, 19.496630859375003]]]}, "type": "Feature", "properties": {"name": "Chad"}}, {"geometry": {"type": "Polygon", "coordinates": [[[0.900488281250006, 10.993261718749991], [0.779980468750011, 10.359570312499997], [1.330078125, 9.996972656249994], [1.600195312500006, 9.050048828125], [1.62265625, 6.216796875], [1.187207031250011, 6.089404296874989], [0.525585937500011, 6.850927734374991], [0.634765625, 7.353662109374994], [0.261914062500011, 9.49560546875], [0.362695312500023, 10.236474609374994], [-0.068603515625, 11.115625], [0.900488281250006, 10.993261718749991]]]}, "type": "Feature", "properties": {"name": "Togo"}}, {"geometry": {"type": "Polygon", "coordinates": [[[100.12246093750005, 20.316650390625057], [101.1546875, 19.579199218750006], [101.2863281250001, 18.977148437500006], [101.05058593750002, 18.407031250000045], [101.10517578125004, 17.47954101562499], [102.10146484375, 18.210644531249983], [102.71757812500002, 17.892236328124966], [103.36699218750007, 18.42333984374997], [103.949609375, 18.31899414062505], [104.81601562500012, 17.30029296874997], [104.75058593750012, 16.647558593750063], [105.62207031250003, 15.699951171875], [105.47558593750003, 14.530126953124977], [105.1833007812501, 14.346240234374989], [103.19941406250004, 14.332617187499977], [102.31972656250005, 13.539990234375054], [102.49960937500012, 12.669970703125003], [102.93388671875002, 11.706689453125037], [102.76298828125002, 12.012451171874986], [101.72363281250003, 12.689355468750037], [100.86328124999997, 12.714501953125009], [100.96269531250007, 13.431982421874991], [100.01748046875, 13.353173828125009], [99.98906250000007, 12.170800781249994], [99.16503906250003, 10.319824218750028], [99.16074218750006, 9.734033203124966], [99.7238281250001, 9.314208984374972], [100.27939453125006, 8.268505859375011], [100.58623046875002, 7.175976562500011], [101.49794921875005, 6.865283203125031], [102.10107421874997, 6.242236328125031], [101.87363281250012, 5.825292968749991], [101.2570312500001, 5.789355468750045], [101.05351562500002, 6.242578125], [100.11914062499997, 6.441992187500048], [99.72031250000012, 7.106201171875], [98.57919921875006, 8.344287109374989], [98.23818359375005, 8.423095703124972], [98.70253906250005, 10.19038085937504], [98.7572265625, 10.660937499999974], [99.61474609374997, 11.781201171875026], [99.21982421875012, 12.73974609375], [99.13681640625006, 13.716699218749994], [98.24599609375005, 14.814746093750045], [98.56523437500007, 15.403564453125014], [98.68925781250002, 16.30541992187497], [98.4388671875, 16.975683593750034], [97.79296875000003, 17.68125], [97.816796875, 19.459960937500057], [98.9166992187501, 19.77290039062504], [99.8903320312501, 20.424414062499977], [100.12246093750005, 20.316650390625057]]]}, "type": "Feature", "properties": {"name": "Thailand"}}, {"geometry": {"type": "Polygon", "coordinates": [[[70.95800781250003, 40.238867187500034], [70.59921875, 39.974511718749994], [69.47099609375002, 39.990625], [69.59882812500004, 39.57377929687499], [71.40429687499997, 39.59785156250001], [71.73222656250002, 39.422998046874994], [72.63994140625002, 39.385986328125], [73.63164062500007, 39.44887695312502], [73.80166015625, 38.60688476562501], [74.74501953125, 38.51000976562497], [74.89130859375004, 37.231640624999955], [73.48134765625, 37.4716796875], [71.665625, 36.696923828124994], [71.530859375, 36.845117187499994], [71.55195312500004, 37.93315429687496], [70.87890624999997, 38.45639648437498], [70.41777343750002, 38.075439453125], [69.9849609375, 37.566162109375], [69.49208984375, 37.55307617187498], [68.0677734375, 36.949804687500006], [67.75898437500004, 37.172216796875034], [68.29404296875006, 38.032910156249955], [68.04785156250003, 38.669287109375006], [67.34960937499997, 39.242089843749994], [67.71904296875007, 39.62138671875002], [68.46328125, 39.53671874999998], [68.6525390625001, 40.182666015625045], [70.44150390625006, 41.0234375], [70.95800781250003, 40.238867187500034]]]}, "type": "Feature", "properties": {"name": "Tajikistan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[66.52226562500007, 37.34848632812506], [65.7650390625, 37.56914062499996], [64.81630859375005, 37.13208007812503], [64.184375, 36.14892578125], [63.10859375000004, 35.81870117187506], [62.6105468750001, 35.23315429687506], [61.26201171875002, 35.61958007812498], [61.11962890625003, 36.64257812500003], [60.34130859375003, 36.63764648437501], [59.240820312500006, 37.52075195312497], [56.440625, 38.249414062499994], [55.075585937499994, 37.90249023437502], [54.745214843750006, 37.501904296874955], [53.91416015625006, 37.34355468750002], [53.86865234375003, 38.949267578125045], [53.472265625, 39.66879882812498], [52.73369140625002, 40.39873046875002], [53.1452148437501, 40.82495117187497], [53.87001953125005, 40.64868164062503], [54.710058593750006, 40.89111328125006], [53.846484375000074, 42.091162109375006], [52.4938476562501, 41.780371093750034], [53.25009765625006, 42.20585937500002], [54.120996093749994, 42.335205078125], [54.90371093750005, 41.91909179687505], [55.54521484375002, 41.26274414062499], [55.97744140625005, 41.32221679687504], [57.01796875, 41.26347656249996], [56.96406250000004, 41.856542968750006], [57.814257812500074, 42.18984375000005], [58.5890625000001, 42.778466796874966], [60.10693359374997, 41.90742187499998], [60.454980468749994, 41.221630859374955], [61.95351562499999, 41.030615234375034], [62.65068359375002, 39.858496093750006], [64.16279296875004, 38.95361328125003], [65.612890625, 38.23857421875002], [66.629296875, 37.93203125], [66.52226562500007, 37.34848632812506]]]}, "type": "Feature", "properties": {"name": "Turkmenistan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[125.06816406250002, -9.511914062499997], [124.92226562500005, -8.942480468749977], [125.17802734375002, -8.647851562499994], [126.61972656250006, -8.459472656249986], [126.91523437500004, -8.715234374999966], [125.06816406250002, -9.511914062499997]]]}, "type": "Feature", "properties": {"name": "East Timor"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Tonga"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Trinidad and Tobago"}}, {"geometry": {"type": "Polygon", "coordinates": [[[10.274609375000011, 31.684960937499994], [10.216406250000063, 30.78320312500003], [9.51875, 30.229394531249994], [9.224023437500023, 31.373681640624994], [9.160253906250006, 31.621337890625], [9.044042968750034, 32.072363281250034], [8.333398437500051, 32.54360351562502], [7.877246093750017, 33.172119140625], [7.513867187500068, 34.080517578124955], [8.24560546875, 34.73408203124998], [8.318066406250011, 35.654931640624994], [8.207617187500006, 36.518945312499994], [8.576562500000023, 36.93720703125001], [9.687988281250057, 37.34038085937499], [10.571289062500057, 36.87944335937496], [10.590820312500028, 35.88725585937499], [11.120117187500057, 35.24028320312499], [10.200390625000068, 34.34604492187506], [10.158984375000074, 33.85004882812501], [11.50458984375004, 33.181933593750045], [11.504980468750034, 32.413671875000034], [10.274609375000011, 31.684960937499994]]]}, "type": "Feature", "properties": {"name": "Tunisia"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[43.43339843750002, 41.155517578125], [43.43945312500003, 41.10712890625001], [43.79169921875004, 40.07026367187498], [44.76826171875004, 39.70351562500005], [44.81718750000002, 39.65043945312496], [44.02324218750002, 39.37744140625006], [44.76513671875003, 37.142431640625006], [42.77460937500004, 37.371875], [41.886816406250006, 37.156396484374994], [40.70566406250006, 37.09770507812502], [39.35664062500004, 36.68159179687498], [38.19169921875002, 36.90156250000004], [37.436328125000074, 36.643310546875], [36.65859375000005, 36.80253906250002], [36.12734375, 35.831445312499994], [35.537402343750074, 36.59702148437498], [34.601367187500074, 36.78447265624999], [33.694726562499994, 36.18198242187498], [32.794824218749994, 36.03588867187497], [31.35253906249997, 36.80107421874999], [30.64404296874997, 36.86567382812501], [30.48359375000004, 36.310400390625034], [29.6890625, 36.15668945312498], [29.03828125000004, 36.693457031250006], [28.13369140625005, 37.02949218749998], [27.348925781250045, 37.01958007812502], [26.68281250000004, 38.198339843750006], [27.013671875000057, 38.88686523437502], [26.113085937500074, 39.46738281249998], [26.18134765625004, 39.99008789062498], [26.738085937500045, 40.40024414062506], [28.2890625, 40.40302734374998], [29.36474609375003, 40.80927734374998], [29.32226562499997, 41.227734374999955], [31.25488281249997, 41.10761718750001], [32.306445312500074, 41.72958984374998], [33.38134765625003, 42.01757812500003], [34.75048828124997, 41.95683593749999], [36.05175781249997, 41.68256835937498], [36.509667968749994, 41.2625], [38.38105468750004, 40.92451171875001], [39.426367187500006, 41.10644531250003], [40.26523437500006, 40.96132812500005], [41.510058593750074, 41.51748046875002], [42.787890625000074, 41.56372070312503], [43.43339843750002, 41.155517578125]]], [[[26.03896484375008, 40.726757812499955], [26.62490234375008, 41.401757812499994], [26.320898437500034, 41.716552734375], [26.549707031250023, 41.896728515625], [27.879199218750074, 41.98662109375002], [28.780371093749977, 40.97416992187499], [27.49941406250005, 40.97314453124997], [27.258007812499983, 40.687353515625006], [26.03896484375008, 40.726757812499955]]]]}, "type": "Feature", "properties": {"name": "Turkey"}}, {"geometry": {"type": "Polygon", "coordinates": [[[121.00878906249997, 22.62036132812497], [120.58125, 22.35639648437504], [120.0724609375001, 23.149755859375006], [120.15898437500002, 23.70903320312499], [121.040625, 25.032812500000034], [121.92900390625002, 24.973730468749977], [121.29589843750003, 22.96660156249999], [121.00878906249997, 22.62036132812497]]]}, "type": "Feature", "properties": {"name": "Taiwan"}}, {"geometry": {"type": "Polygon", "coordinates": [[[33.90322265625005, -1.002050781250034], [35.83691406249997, -2.036621093749943], [37.643847656250074, -3.045410156250028], [37.79726562500005, -3.674414062500006], [39.221777343750006, -4.692382812500014], [38.81923828125005, -5.877636718749983], [38.87402343750003, -6.33125], [39.47236328125004, -6.878613281249983], [39.288476562499994, -7.517871093750003], [39.304003906250074, -8.44384765625], [39.783789062500006, -9.914550781249957], [40.46357421875004, -10.464355468749972], [39.98867187499999, -10.820800781250014], [38.49179687500006, -11.413281250000026], [37.92021484375002, -11.294726562500031], [37.54169921875004, -11.675097656249974], [36.51865234375006, -11.716210937500009], [35.785449218750074, -11.452929687500017], [34.95947265625003, -11.578125], [34.59765625000003, -11.0375], [34.32089843750006, -9.731542968749977], [32.91992187500003, -9.407421875000026], [32.75664062500002, -9.322265625], [31.94257812500004, -9.05400390624996], [30.830664062500063, -8.385546875000031], [30.313183593750097, -7.203710937499949], [29.70966796875004, -6.61689453125004], [29.34277343749997, -4.983105468749997], [30.4, -3.65390625], [30.811132812500006, -3.116406250000011], [30.741992187500017, -1.007519531249997], [33.90322265625005, -1.002050781250034]]]}, "type": "Feature", "properties": {"name": "United Republic of Tanzania"}}, {"geometry": {"type": "Polygon", "coordinates": [[[30.50996093750001, -1.067285156250009], [29.576953125000017, -1.387890625000011], [29.717675781250023, 0.098339843749997], [29.94287109375, 0.819238281249994], [31.252734375000017, 2.044580078124994], [30.728613281250006, 2.455371093749989], [30.83857421875001, 3.49072265625], [31.15234375, 3.785595703124997], [32.09941406250002, 3.529199218749994], [32.83808593750001, 3.798486328124994], [33.489355468750006, 3.755078125], [33.97607421875, 4.22021484375], [34.39287109375002, 3.691503906249991], [34.96406250000001, 2.062402343749994], [34.78759765625, 1.230712890625], [33.94316406250002, 0.173779296874997], [33.90322265625002, -1.002050781250006], [30.741992187500017, -1.007519531250011], [30.50996093750001, -1.067285156250009]]]}, "type": "Feature", "properties": {"name": "Uganda"}}, {"geometry": {"type": "Polygon", "coordinates": [[[38.21435546875003, 47.091455078124966], [35.82714843749997, 46.62431640625002], [34.84960937500003, 46.189892578124955], [35.472558593749994, 45.098486328125006], [33.909960937500074, 44.387597656249966], [33.55517578125003, 45.09765625000003], [32.5080078125001, 45.40380859375006], [33.664843750000074, 45.94707031249996], [32.035742187500006, 46.26098632812497], [31.974316406250097, 46.70878906249999], [30.796289062499994, 46.55200195312503], [30.219042968750074, 45.866748046875045], [28.78828125000001, 45.240966796875], [28.49160156250005, 45.66577148437503], [29.458789062500017, 46.453759765624994], [29.877832031249994, 46.828906250000045], [29.455664062500006, 47.292626953124994], [29.194824218750057, 47.88242187499998], [28.34052734375001, 48.144433593749994], [27.54921875000008, 48.47773437500004], [26.4423828125, 48.22998046875], [24.89335937499999, 47.71777343750003], [23.628710937500017, 47.995849609375], [22.582421875000023, 48.134033203125], [22.253710937500017, 48.407373046874994], [22.6494140625, 49.53901367187498], [24.105761718750045, 50.84497070312503], [23.664453125000023, 51.31005859375], [23.61376953125, 51.525390625], [24.361914062500006, 51.86752929687498], [25.785742187500006, 51.923828125], [27.689746093750017, 51.572412109374994], [29.13564453125008, 51.61728515624998], [30.449511718750017, 51.274316406249994], [30.980664062500097, 52.04619140624996], [31.763378906250097, 52.10107421875003], [33.735253906249994, 52.344775390625045], [34.397851562499994, 51.780419921874994], [34.280664062499994, 51.311669921874966], [35.31191406250005, 51.043896484374955], [35.41162109375003, 50.539697265624994], [36.619433593750074, 50.209228515625], [37.42285156249997, 50.411474609375006], [39.780566406250074, 49.57202148437503], [39.96103515625006, 48.23793945312502], [38.90029296875005, 47.85512695312502], [38.21435546875003, 47.091455078124966]]]}, "type": "Feature", "properties": {"name": "Ukraine"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-57.81059570312499, -30.85859375000001], [-57.55229492187499, -30.26123046875], [-56.83271484375, -30.107226562500003], [-56.4072265625, -30.44746093750001], [-55.873681640624994, -31.069628906250003], [-54.587646484375, -31.48515625], [-53.76171875, -32.05683593750001], [-53.12558593749999, -32.73671875], [-53.53134765624999, -33.1708984375], [-53.37060546875, -33.7421875], [-53.785302734374994, -34.38037109375], [-54.902294921875, -34.93281250000001], [-56.117919921875, -34.90791015625001], [-57.17070312499999, -34.45234375000001], [-57.8291015625, -34.47734375], [-58.40019531249999, -33.91240234375], [-58.08232421874999, -32.893652343750006], [-58.18901367187499, -31.92421875], [-57.81059570312499, -30.85859375000001]]]}, "type": "Feature", "properties": {"name": "Uruguay"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-155.58134765624996, 19.012011718750017], [-156.04868164062498, 19.749951171874983], [-155.83164062499998, 20.27583007812501], [-154.80419921875, 19.524462890625045], [-155.58134765624996, 19.012011718750017]]], [[[-94.80346679687497, 49.0029296875], [-94.71279296874997, 48.863427734374994], [-93.85161132812496, 48.607275390625034], [-93.37788085937498, 48.61655273437498], [-93.25795898437497, 48.62885742187501], [-92.83671875, 48.567773437499994], [-92.50058593749995, 48.43535156250002], [-92.41459960937493, 48.276611328125], [-92.3484375, 48.276611328125], [-92.00517578125002, 48.301855468750006], [-91.38720703124997, 48.05854492187498], [-90.79731445312495, 48.13105468750001], [-89.4556640625, 47.996240234374994], [-88.37817382812497, 48.30307617187498], [-87.74389648437497, 48.06054687500003], [-87.20800781249997, 47.848486328125006], [-86.67216796874996, 47.636425781249955], [-85.65224609375, 47.21997070312503], [-85.07006835937497, 46.97993164062498], [-84.87597656249994, 46.89990234375003], [-84.66577148437503, 46.54326171875002], [-84.44047851562496, 46.49814453125006], [-84.12319335937497, 46.50292968749997], [-83.61596679687503, 46.116845703124994], [-83.59267578125, 45.81713867187506], [-82.91933593749994, 45.51796875000002], [-82.48505859374993, 45.08374023437503], [-82.137841796875, 43.570898437500034], [-82.19038085937495, 43.47407226562501], [-82.54531249999997, 42.62470703124998], [-83.10952148437497, 42.25068359375001], [-82.69003906249995, 41.675195312499994], [-81.97416992187496, 41.88872070312499], [-81.50732421874997, 42.10346679687504], [-81.02822265624997, 42.247167968750006], [-79.17373046875, 42.74853515625], [-78.91508789062496, 42.90913085937504], [-78.98076171874993, 42.98061523437502], [-79.02617187499996, 43.01733398437506], [-79.066064453125, 43.10610351562502], [-78.72041015625001, 43.62495117187501], [-76.819970703125, 43.62880859375002], [-76.18579101562503, 44.24223632812502], [-75.81933593749997, 44.468017578125], [-75.40126953124997, 44.77226562499999], [-74.99614257812496, 44.970117187499966], [-74.76245117187494, 44.99907226562502], [-74.663232421875, 45.00390625000003], [-71.51752929687495, 45.00756835937497], [-70.296240234375, 45.90610351562506], [-70.00771484375002, 46.70893554687501], [-69.24287109374998, 47.46298828124998], [-67.806787109375, 47.08281249999999], [-67.78466796875, 45.70170898437499], [-67.12485351562498, 45.16943359375], [-67.10673828125002, 44.88505859374996], [-70.17880859374998, 43.76635742187506], [-71.04619140624993, 42.331103515625045], [-70.4046875, 41.62690429687501], [-72.84716796875003, 41.265869140625], [-74.22670898437497, 40.608007812500006], [-73.95761718750003, 40.32836914062497], [-74.42880859375, 39.38720703125], [-75.3921875, 39.09277343750006], [-75.03588867187497, 38.50332031250005], [-75.65927734374995, 37.953955078125034], [-76.26425781250003, 37.89355468749997], [-75.89042968749999, 36.65703125], [-76.47880859374993, 36.028173828125006], [-75.77392578124997, 35.64697265624997], [-77.750732421875, 34.28496093749996], [-78.57768554687496, 33.87324218750001], [-79.27602539062497, 33.135400390624966], [-80.84921875, 32.113916015624966], [-81.52041015624997, 30.874658203125023], [-81.24951171875003, 29.793798828125006], [-80.52412109374995, 28.48608398437503], [-80.65009765624993, 28.18090820312503], [-80.04130859374999, 26.568603515625], [-80.36694335937497, 25.33125], [-81.09765625, 25.319140625000017], [-81.36494140625001, 25.83105468750003], [-82.44135742187501, 27.059667968750034], [-82.84350585937494, 27.845996093750017], [-82.65146484375, 28.8875], [-83.69438476562502, 29.92597656250001], [-85.35361328125, 29.875732421875], [-86.25737304687502, 30.493017578124977], [-87.79028320312503, 30.291796875000017], [-88.90522460937495, 30.415136718750006], [-89.58847656249998, 30.165966796874955], [-90.10136718749993, 29.181787109375023], [-90.75102539062496, 29.13085937500003], [-91.8931640625, 29.836035156249977], [-92.26083984374995, 29.55683593750004], [-93.69482421874997, 29.769921875000023], [-94.88828125000003, 29.37055664062501], [-95.85341796875, 28.64033203125001], [-96.44873046874997, 28.594482421875], [-97.156494140625, 28.144335937500045], [-97.55468749999994, 26.96733398437496], [-97.14624023437494, 25.961474609375045], [-97.35815429687497, 25.870507812499994], [-99.10776367187498, 26.446923828124994], [-99.50532226562497, 27.54833984375003], [-100.29604492187495, 28.32768554687499], [-100.65864257812501, 29.06855468750004], [-101.44038085937503, 29.77685546875], [-102.26894531249998, 29.871191406250034], [-103.25771484374998, 29.001123046874966], [-104.40063476562503, 29.57373046875], [-104.97880859374996, 30.645947265624955], [-106.45322265624995, 31.770166015625023], [-108.21181640625002, 31.779345703125017], [-108.21445312499993, 31.329443359375034], [-111.0419921875, 31.32421875000003], [-114.83593749999994, 32.50830078125003], [-117.12827148437495, 32.533349609374994], [-117.46743164062495, 33.295507812500006], [-118.506201171875, 34.01738281249999], [-119.60605468749999, 34.41801757812499], [-120.48120117187503, 34.47163085937498], [-120.63359374999999, 35.07646484375002], [-121.87739257812498, 36.33105468749997], [-121.78999023437494, 36.732275390625006], [-122.394921875, 37.20751953125003], [-122.46689453125, 37.83818359374999], [-123.701123046875, 38.90727539062502], [-123.88447265624997, 39.86079101562501], [-124.3716796875, 40.49121093750003], [-124.06850585937498, 41.38417968750005], [-124.53964843750003, 42.812890624999966], [-124.14873046874997, 43.691748046875034], [-123.92934570312495, 45.57695312499996], [-124.0716796875, 46.74477539062502], [-124.63261718749997, 48.37504882812499], [-123.97578125, 48.16845703125], [-122.24199218750002, 48.01074218750003], [-122.78876953125003, 48.993017578125034], [-119.70170898437495, 48.993017578125034], [-116.71704101562501, 48.99306640625005], [-112.45322265625, 48.99306640625005], [-107.76298828124997, 48.993115234374955], [-102.22001953124996, 48.993115234374955], [-98.80898437499995, 48.99316406249997], [-97.52983398437493, 48.99316406249997], [-96.67705078124993, 48.99316406249997], [-96.25068359374993, 48.99316406249997], [-95.39790039062493, 48.99316406249997], [-95.16206054687493, 48.991748046875045], [-94.85434570312495, 49.304589843749994], [-94.86040039062493, 49.258593750000045], [-94.80346679687497, 49.0029296875]]], [[[-133.56611328125, 56.33920898437498], [-133.202978515625, 56.31982421875003], [-131.97641601562498, 55.208593750000034], [-132.78232421875, 55.04848632812502], [-133.56611328125, 56.33920898437498]]], [[[-152.89804687499998, 57.82392578125004], [-152.21621093749997, 57.577001953125006], [-153.793212890625, 56.98950195312503], [-154.70595703124997, 57.335351562499966], [-152.89804687499998, 57.82392578125004]]], [[[-141.00214843750004, 68.77416992187506], [-141.00214843750004, 67.89755859374998], [-141.00214843750004, 66.43652343750006], [-141.00214843750004, 65.55991210937498], [-141.00214843750004, 64.09887695312506], [-141.00214843750004, 63.22226562499998], [-141.00214843750004, 61.761279296875045], [-141.00214843750004, 60.884667968749994], [-140.45283203125004, 60.29970703125002], [-139.97329101562497, 60.183154296875074], [-139.67631835937505, 60.32832031249998], [-139.23476562499997, 60.339746093749994], [-138.70546874999997, 59.90131835937504], [-138.317626953125, 59.611132812500074], [-137.59331054687493, 59.22626953124998], [-136.46635742187493, 59.459082031250006], [-135.70258789062504, 59.72875976562506], [-135.36787109374998, 59.743310546874994], [-134.94375, 59.28828125000001], [-134.67724609374997, 59.19926757812499], [-134.39306640625, 59.009179687499994], [-134.32963867187505, 58.93969726562506], [-134.21850585937503, 58.849902343750045], [-133.54638671874997, 58.50346679687499], [-133.27529296875, 58.22285156250004], [-133.00141601562495, 57.948974609375], [-132.062890625, 56.95336914062503], [-131.86616210937495, 56.792822265625006], [-130.649072265625, 56.26367187500003], [-130.47709960937496, 56.230566406250034], [-130.09785156249995, 56.10927734375002], [-130.01406249999997, 55.950537109375006], [-130.2140625, 55.02587890625003], [-130.57534179687497, 54.769677734374966], [-130.9185546875, 55.735986328124994], [-131.84384765625003, 56.16010742187498], [-132.81425781249993, 57.04072265624998], [-133.465869140625, 57.17216796875002], [-134.06333007812503, 58.21108398437502], [-135.86171874999997, 58.577050781249966], [-136.5826171875, 58.24521484375006], [-138.35249023437498, 59.08730468750002], [-140.216748046875, 59.72666015624998], [-142.94565429687503, 60.09697265625002], [-143.80507812499997, 60.01289062500001], [-145.898876953125, 60.47817382812505], [-146.8740234375, 61.00488281249997], [-148.34443359374998, 60.853564453125045], [-148.197607421875, 60.167773437500045], [-149.4322265625, 60.00102539062499], [-150.9607421875, 59.24399414062506], [-151.73818359375002, 59.18852539062502], [-151.75048828124994, 60.75488281250003], [-154.088330078125, 59.36328125000003], [-153.33442382812495, 58.85786132812498], [-154.247021484375, 58.15942382812497], [-155.006884765625, 58.01606445312501], [-156.475146484375, 57.10517578124998], [-158.27563476562497, 56.19624023437498], [-162.073974609375, 55.13930664062505], [-162.15712890625, 55.71943359375001], [-159.28310546874997, 56.688574218750006], [-157.60756835937502, 57.601464843749994], [-157.52363281249998, 58.421337890624955], [-158.50317382812494, 58.85034179687497], [-159.08266601562497, 58.469775390625074], [-160.36313476562498, 59.05117187500002], [-161.75546874999998, 58.61201171874998], [-161.82871093749998, 59.588623046875], [-162.24248046875, 60.17832031249998], [-163.90688476562494, 59.80678710937505], [-165.35380859375002, 60.54121093750001], [-166.07880859375, 61.803125], [-164.40903320312503, 63.21503906250001], [-163.358837890625, 63.04575195312498], [-160.778564453125, 63.818945312500034], [-160.93193359374996, 64.5791015625], [-161.759375, 64.816259765625], [-162.80703124999997, 64.37421875000001], [-163.71308593749998, 64.588232421875], [-166.1427734375, 64.58276367187503], [-168.08837890624997, 65.65776367187502], [-164.67412109375002, 66.55502929687503], [-163.69536132812502, 66.08383789062503], [-161.81630859375002, 66.05366210937504], [-160.864013671875, 66.67084960937501], [-161.96542968750003, 67.04956054687497], [-163.720556640625, 67.19555664062506], [-164.1251953125, 67.60673828125007], [-166.38051757812502, 68.425146484375], [-166.20908203125, 68.88535156250003], [-164.30234375000003, 68.93647460937498], [-163.16147460937498, 69.38793945312503], [-161.88095703125003, 70.33173828125001], [-159.31450195312496, 70.87851562500003], [-157.998486328125, 70.8453125], [-156.78330078124998, 71.31894531250006], [-151.94467773437498, 70.45209960937501], [-149.26943359374997, 70.50078124999999], [-145.19736328125003, 70.00869140625002], [-143.218310546875, 70.11625976562499], [-141.00214843750004, 69.65078125000002], [-141.00214843750004, 68.77416992187506]]]]}, "type": "Feature", "properties": {"name": "United States of America"}}, {"geometry": {"type": "Polygon", "coordinates": [[[70.94677734374997, 42.24868164062505], [70.18095703125007, 41.571435546874994], [71.40839843750004, 41.13603515625002], [71.60625, 41.367431640625], [72.36406250000002, 41.04345703125], [73.13212890625002, 40.82851562499999], [72.3892578125, 40.427392578124994], [71.69248046875, 40.15234375], [70.95800781250003, 40.238867187500034], [70.44150390625006, 41.0234375], [68.6525390625001, 40.182666015625045], [68.46328125, 39.53671874999998], [67.71904296875007, 39.62138671875002], [67.34960937499997, 39.242089843749994], [68.04785156250003, 38.669287109375006], [68.29404296875006, 38.032910156249955], [67.75898437500004, 37.172216796875034], [66.52226562500007, 37.34848632812506], [66.629296875, 37.93203125], [65.612890625, 38.23857421875002], [64.16279296875004, 38.95361328125003], [62.65068359375002, 39.858496093750006], [61.95351562499999, 41.030615234375034], [60.454980468749994, 41.221630859374955], [60.10693359374997, 41.90742187499998], [58.5890625000001, 42.778466796874966], [57.814257812500074, 42.18984375000005], [56.96406250000004, 41.856542968750006], [57.01796875, 41.26347656249996], [55.97744140625005, 41.32221679687504], [55.97568359375006, 44.99492187499996], [58.555273437500006, 45.55537109375001], [61.007910156250006, 44.39379882812497], [61.99023437500003, 43.492138671874955], [64.9054687500001, 43.714697265625006], [66.1002929687501, 42.99082031249998], [66.00957031250007, 42.00488281250003], [66.49863281250006, 41.99487304687503], [66.81425781250002, 41.14238281249999], [67.9357421875001, 41.19658203125002], [68.29189453125, 40.656103515625034], [69.06494140625003, 41.366943359375], [70.94677734374997, 42.24868164062505]]]}, "type": "Feature", "properties": {"name": "Uzbekistan"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Vatican"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Saint Vincent and the Grenadines"}}, {"geometry": {"type": "Polygon", "coordinates": [[[-60.742138671874926, 5.202050781250037], [-61.00283203125002, 4.535253906249991], [-62.153125, 4.098388671874986], [-63.29472656249993, 3.92226562499998], [-64.22109375000002, 3.587402343749972], [-63.924169921875006, 2.452441406250031], [-64.11484375000003, 1.619287109375037], [-65.10375976562497, 1.108105468749983], [-66.42924804687502, 0.82167968749998], [-66.87602539062499, 1.223046875000037], [-67.21083984375, 2.390136718750043], [-67.83476562499999, 2.892822265625043], [-67.3111328125, 3.41586914062502], [-67.85527343750002, 4.506884765624989], [-67.82490234374995, 5.270458984375026], [-67.43935546875, 6.025537109375023], [-67.85917968749999, 6.289892578124963], [-69.43925781249993, 6.134912109375009], [-70.09501953124996, 6.937939453125011], [-72.08427734374993, 7.096875], [-72.44296875, 7.454882812499989], [-72.41655273437496, 8.381982421875037], [-73.00654296874998, 9.789160156250006], [-72.690087890625, 10.835839843749994], [-71.95810546875, 11.66640625], [-71.31972656249997, 11.861914062500048], [-71.94697265624995, 11.414453125], [-71.59433593749995, 10.657373046875051], [-72.11284179687499, 9.815576171874966], [-71.68671874999995, 9.072509765625028], [-71.05268554687501, 9.705810546874986], [-71.38662109375002, 10.263769531249977], [-71.46953124999993, 10.964160156250017], [-69.63159179687494, 11.479931640625026], [-68.827978515625, 11.431738281249977], [-67.87163085937496, 10.472070312500051], [-66.24721679687497, 10.632226562499994], [-65.85175781249995, 10.257763671874997], [-64.85048828125, 10.098095703124969], [-63.873437499999966, 10.663769531250026], [-62.702343749999955, 10.74980468749996], [-62.51513671875, 10.176123046874977], [-60.79248046874997, 9.360742187500037], [-60.800976562499926, 8.592138671875034], [-60.01752929687501, 8.549316406250014], [-60.032421874999926, 8.053564453125006], [-60.71923828124997, 7.498681640625023], [-60.39501953125, 6.945361328125003], [-61.14560546874998, 6.694531249999983], [-61.376806640625006, 5.906982421875028], [-60.742138671874926, 5.202050781250037]]]}, "type": "Feature", "properties": {"name": "Venezuela"}}, {"geometry": null, "type": "Feature", "properties": {"name": "British Virgin Islands"}}, {"geometry": null, "type": "Feature", "properties": {"name": "United States Virgin Islands"}}, {"geometry": {"type": "Polygon", "coordinates": [[[107.97265624999997, 21.507958984375023], [107.35429687500007, 21.055175781250057], [106.67548828125004, 20.960498046875045], [106.51796875000005, 20.28886718749999], [105.98408203125004, 19.939062500000034], [105.62177734375004, 18.96630859375003], [106.47890625000005, 17.719580078125063], [107.18037109375004, 16.89794921875], [108.02939453125012, 16.331103515625074], [108.82128906249997, 15.377929687500028], [109.30332031250012, 13.856445312500043], [109.1986328125, 11.724853515625014], [108.2716796875001, 10.934277343749969], [107.26152343750007, 10.39838867187504], [106.81269531250004, 10.433300781250054], [106.57246093750004, 9.641113281250043], [104.81855468750004, 8.801855468750034], [105.02783203125003, 10.067431640625031], [104.42636718750006, 10.411230468749991], [104.85058593749997, 10.534472656249974], [105.85605468750006, 11.294287109375048], [105.85146484375005, 11.635009765625], [107.50644531250006, 12.364550781250031], [107.60546874999997, 13.437792968750017], [107.3314453125, 14.126611328125009], [107.51943359375005, 14.705078125], [107.653125, 15.255224609374991], [107.39638671875, 16.04301757812499], [106.69609375000007, 16.458984375], [106.50224609375002, 16.95410156249997], [105.45820312500004, 18.15429687499997], [103.89638671875, 19.339990234375023], [104.9279296875001, 20.01811523437499], [104.58320312500004, 20.646679687499955], [104.05205078125002, 20.941210937500017], [103.10449218749997, 20.891650390625045], [102.9486328125, 21.56977539062501], [102.12744140624997, 22.379199218750045], [102.51718750000012, 22.741015625000045], [104.37177734375004, 22.704052734374983], [105.27539062500003, 23.34521484375003], [105.8429687500001, 22.922802734374955], [106.78027343749997, 22.778906250000034], [106.72949218749997, 22.000341796875063], [107.97265624999997, 21.507958984375023]]]}, "type": "Feature", "properties": {"name": "Vietnam"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Vanuatu"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Wallis and Futuna"}}, {"geometry": null, "type": "Feature", "properties": {"name": "Samoa"}}, {"geometry": {"type": "Polygon", "coordinates": [[[53.08564453125004, 16.648388671874955], [52.327734375, 16.293554687500063], [52.2174804687501, 15.655517578125], [51.6037109375001, 15.336816406250009], [49.34990234375002, 14.637792968749977], [48.66835937499999, 14.050146484374977], [47.9899414062501, 14.048095703125], [46.78886718750002, 13.465576171874986], [45.65732421875006, 13.338720703124991], [45.03867187500006, 12.815869140624969], [43.929785156250006, 12.616503906250031], [43.47529296875004, 12.83901367187498], [42.71718750000005, 15.654638671875006], [42.79931640624997, 16.37177734375001], [43.16503906249997, 16.689404296874955], [43.19091796875003, 17.359375], [45.14804687500006, 17.427441406249955], [47.44179687499999, 17.111865234375045], [48.17216796875002, 18.156933593749983], [49.04199218750003, 18.58178710937503], [51.977636718750006, 18.996142578125074], [53.08564453125004, 16.648388671874955]]]}, "type": "Feature", "properties": {"name": "Yemen"}}, {"geometry": {"type": "Polygon", "coordinates": [[[31.921679687500017, -25.96875], [31.415136718750063, -25.74658203125003], [30.803320312500006, -26.41347656250001], [31.06337890625005, -27.1123046875], [31.95839843750005, -27.305859375], [31.994726562500006, -26.817480468749977], [32.88613281250005, -26.849316406249983], [32.285742187500006, -28.62148437499998], [31.335156250000097, -29.378125], [30.288671875000063, -30.970117187499994], [27.860644531250017, -33.05390624999997], [26.429492187500045, -33.75957031250002], [24.8271484375, -34.16894531250003], [23.585546875, -33.985156249999974], [22.24550781250005, -34.06914062500003], [21.788964843750023, -34.37265624999996], [20.529882812500034, -34.4630859375], [19.63496093750004, -34.753320312499966], [18.80878906250004, -34.10820312499999], [17.87822265624999, -32.96152343749998], [18.25087890625008, -32.6521484375], [18.21083984375008, -31.74248046874996], [17.67744140625004, -31.019042968750014], [16.95, -29.40341796875002], [16.480761718750045, -28.641503906249966], [17.1884765625, -28.13251953125001], [17.44794921875001, -28.698144531249966], [18.310839843750017, -28.88623046875], [19.026074218750068, -28.92792968749997], [19.98046875, -28.310351562500003], [19.98046875, -24.77675781249998], [20.345214843750057, -25.029882812500034], [20.79316406250001, -25.915625], [20.641406250000017, -26.7421875], [21.64628906249999, -26.854199218749997], [22.640234374999977, -26.071191406249994], [23.148730468750017, -25.288671875], [24.748144531250006, -25.817382812499986], [25.518164062500006, -25.66279296875001], [25.91210937499997, -24.747460937499966], [26.835058593750063, -24.240820312499963], [26.98701171875004, -23.704589843749957], [27.7685546875, -23.14892578125], [27.812597656250006, -23.108007812500006], [28.210156249999983, -22.693652343749974], [29.129882812500057, -22.21328125], [29.66308593749997, -22.146289062500017], [31.287890625000074, -22.402050781249983], [31.54560546875004, -23.48232421874998], [31.98583984374997, -24.460644531249983], [31.921679687500017, -25.96875]], [[27.19355468750001, -29.94130859375001], [27.364062500000017, -30.27919921875001], [28.05683593750001, -30.63105468750001], [28.128710937500017, -30.52509765625001], [29.09804687500005, -29.919042968750006], [29.301367187500006, -29.08984375], [28.625781250000017, -28.581738281250054], [27.73554687500004, -28.940039062500034], [27.19355468750001, -29.94130859375001]]]}, "type": "Feature", "properties": {"name": "South Africa"}}, {"geometry": {"type": "Polygon", "coordinates": [[[33.148046875, -9.603515625], [33.65908203125002, -10.590527343750011], [33.261328125, -10.893359375], [33.39794921875, -12.48984375], [33.021582031250006, -12.63046875], [32.797460937500006, -13.6884765625], [33.148046875, -13.94091796875], [33.201757812500006, -14.013378906250011], [30.231835937500023, -14.990332031250006], [30.39609375, -15.64306640625], [29.729589843750006, -15.644628906250006], [28.9130859375, -15.98779296875], [28.760644531250023, -16.53193359375001], [27.932226562500006, -16.89619140625001], [27.020800781250017, -17.95839843750001], [25.2587890625, -17.793554687500006], [24.27490234375, -17.481054687500006], [23.380664062500017, -17.640625], [22.150683593750017, -16.59716796875], [21.979785156250017, -15.95556640625], [21.978906250000023, -13.0009765625], [22.209570312500006, -13.0009765625], [23.843164062500023, -13.0009765625], [23.909375, -12.636132812500009], [23.96650390625001, -10.871777343750011], [24.5185546875, -11.4384765625], [25.184863281250017, -11.24296875], [25.349414062500017, -11.623046875], [26.025976562500006, -11.89013671875], [26.949609375000023, -11.898828125], [28.357714843750017, -12.48203125], [29.014257812500006, -13.368847656250011], [29.795312500000023, -13.392773437500011], [29.79511718750001, -12.155468750000011], [29.064355468750023, -12.348828125000011], [28.357226562500017, -11.483007812500006], [28.63886718750001, -10.669238281250003], [28.63007812500001, -9.83125], [28.400683593750017, -9.224804687500011], [28.972265625, -8.464941406250006], [30.75117187500001, -8.193652343750003], [31.94257812500001, -9.054003906250003], [32.75664062500002, -9.322265625], [33.148046875, -9.603515625]]]}, "type": "Feature", "properties": {"name": "Zambia"}}, {"geometry": {"type": "Polygon", "coordinates": [[[31.287890625000017, -22.40205078125001], [29.36484375, -22.193945312500006], [29.03730468750001, -21.811328125], [28.04560546875001, -21.573046875], [27.66943359375, -21.064257812500003], [27.699609375000023, -20.53066406250001], [26.168066406250006, -19.53828125000001], [25.2587890625, -17.793554687500006], [27.020800781250017, -17.95839843750001], [27.932226562500006, -16.89619140625001], [28.760644531250023, -16.53193359375001], [28.9130859375, -15.98779296875], [29.729589843750006, -15.644628906250006], [30.39609375, -15.64306640625], [30.437792968750017, -15.995312500000011], [31.236230468750023, -16.02363281250001], [31.939843750000023, -16.428808593750006], [32.94804687500002, -16.71230468750001], [32.99306640625002, -18.35957031250001], [32.71650390625001, -19.00185546875001], [33.00673828125002, -19.873828125], [32.477636718750006, -20.712988281250006], [32.37109375, -21.33486328125001], [31.287890625000017, -22.40205078125001]]]}, "type": "Feature", "properties": {"name": "Zimbabwe"}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment