Skip to content

Instantly share code, notes, and snippets.

@Mavromatika
Last active November 22, 2015 15:15
Show Gist options
  • Save Mavromatika/813104e16f271c337d80 to your computer and use it in GitHub Desktop.
Save Mavromatika/813104e16f271c337d80 to your computer and use it in GitHub Desktop.
Carte PBF v2
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mercator projection</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<style type="text/css">
body {
background-color: #383838;
}
#container{
width: 1002px;
margin-left:auto;
margin-right:auto;
}
svg {
background-color: #e3e3e3;
}
.label{
font-size: 3px;
font-family: sans-serif;
text-anchor: end;
}
.svg2{
border-left: 1px solid black;
}
.svg2 text{
font-size: 15px;
font-family: sans-serif;
}
.grid {
opacity: 0.9;
}
line.grid {
stroke-width: 0.5;
stroke: black;
}
.hide {
visibility:hidden;
}
.overlay {
opacity: 0;
}
</style>
</head>
<body>
<div id="container"></div>
<script type="text/javascript">
//Width and height
var w = 800;
var h = 600;
var paddingLegend = 60;
//Define map projection
var projection = d3.geo.mercator()
.center([ 0, 40 ])
.translate([ w/2, h/2 ])
.scale([ w/7 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection);
//Create SVG
var svg = d3.select("#container")
.append("svg")
.attr("width", w)
.attr("height", h)
.append("g") // important for zoom
.call(d3.behavior.zoom().scaleExtent([1, 12]).on("zoom", zoom))
.append("g"); // important for the same reason (??)
// Useful for dragging
svg.append("rect")
.attr("class", "overlay")
.attr("width", w)
.attr("height", h);
var svg2 = d3.select("#container")
.append("svg")
.attr("class","svg2")
.attr("width", 200)
.attr("height", 600);
var colors = ['#edf8fb','#b2e2e2','#66c2a4','#2ca25f','#006d2c'];
var xScale = d3.scale.linear()
.range([0, 170])
.domain([0, 4.5]);
var dataCountries = [
{"code":"TD","level":1.1,"name":"Tchad"},
{"code":"MZ","level":1.4,"name":"Mozambique"},
{"code":"UG","level":1.4,"name":"Uganda"},
{"code":"KE","level":1.4,"name":"Kenya"},
{"code":"CM","level":2.6,"name":"Cameroon"},
{"code":"TZ","level":3.1,"name":"Tanzania"},
{"code":"AM","level":3.6,"name":"Armenia"},
{"code":"BI","level":3.6,"name":"Burundi"},
{"code":"KH","level":3.6,"name":"Cambodia"},
{"code":"MK","level":3.6,"name":"Macedonia"},
{"code":"RW","level":4.1,"name":"Rwanda"}
];
var arr = ["TD","MZ","UG","KE","CM","TZ","AM","BI","KH","MK","RW"];
//Create the list of countries with their level
var donLignes = [1,2,3,4];
svg2.selectAll(".gridbar")
.data(donLignes)
.enter()
.append("rect")
.attr("class","grid gridbar")
.attr("x",function(d){return xScale(d);})
.attr("y",48)
.attr("width",function(d){return xScale(1);})
.attr("height",h-45)
.attr("fill",function(d){return colors[d - 1];});
svg2.append("text")
.attr("class","grid")
.attr("x",10)
.attr("y",20)
.text("Implementation stages");
svg2.selectAll(".gridnumb")
.data(donLignes)
.enter()
.append("text")
.attr("class","grid gridnumb")
.attr("x",function(d){return xScale(d) + 20;})
.attr("y",45)
.text(function(d){return d;});
var lignes = svg2.selectAll("g")
.data(dataCountries)
.enter()
.append("g");
lignes.append("text")
.text(function(d){return d.name;})
.attr("x",10)
.attr("y",function(d,i){
return i * (h - paddingLegend) / dataCountries.length + paddingLegend + 20;
});
lignes.append("rect")
.attr("x",10)
.attr("y",function(d,i){
return i * (h - paddingLegend) / dataCountries.length + paddingLegend + 25;
})
.attr("width",function(d){return xScale(d.level);})
.attr("height",6);
//Load in GeoJSON data
d3.json("mapshaper_output_indented.json", function(json) {
//Bind data and create one path per GeoJSON feature
svg.selectAll("path")
.data(json.features)
.enter()
.append("path")
.attr("id", function(d){return d.properties.iso_a2;})
.attr("d", path)
.attr("fill",function(d){
if (arr.indexOf(d.properties.iso_a2) == -1){
console.log("pas trouve");
return "#a0a0a0";
}
else {
var i = arr.indexOf(d.properties.iso_a2);
return colors[Math.floor(dataCountries[i].level) - 1];
}
});
svg.selectAll(".label")
.data(json.features)
.enter()
.append("text")
.attr("class","label")
.classed("hide",function(d){
if (arr.indexOf(d.properties.iso_a2) == -1){
return true;
}
})
.attr("x",function(d){
var centroid = path.centroid(d);
return centroid[0];
})
.attr("y",function(d){
var centroid = path.centroid(d);
return centroid[1];
})
.text(function(d){
return d.properties.admin;
});
});
// FOR ZOOM (stolen from Mike Bostock's example
function zoom() {
svg.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Afghanistan",
"sov_a3": "AFG",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Afghanistan",
"adm0_a3": "AFG",
"geou_dif": 0,
"geounit": "Afghanistan",
"gu_a3": "AFG",
"su_dif": 0,
"subunit": "Afghanistan",
"su_a3": "AFG",
"brk_diff": 0,
"name": "Afghanistan",
"name_long": "Afghanistan",
"brk_a3": "AFG",
"brk_name": "Afghanistan",
"brk_group": "",
"abbrev": "Afg.",
"postal": "AF",
"formal_en": "Islamic State of Afghanistan",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Afghanistan",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 6,
"mapcolor9": 8,
"mapcolor13": 7,
"pop_est": 28400000,
"gdp_md_est": 22270,
"pop_year": -99,
"lastcensus": 1979,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AF",
"iso_a3": "AFG",
"iso_n3": "004",
"un_a3": "004",
"wb_a2": "AF",
"wb_a3": "AFG",
"woe_id": -99,
"adm0_a3_is": "AFG",
"adm0_a3_us": "AFG",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Southern Asia",
"region_wb": "South Asia",
"name_len": 11,
"long_len": 11,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
61.210817091725744,
35.650072333309225
],
[
62.230651483005886,
35.270663967422294
],
[
62.98466230657661,
35.40404083916762
],
[
63.19353844590035,
35.857165635718914
],
[
63.98289594915871,
36.0079574651466
],
[
64.5464791197339,
36.31207326918427
],
[
64.7461051776774,
37.111817735333304
],
[
65.58894778835784,
37.30521678318564
],
[
65.74563073106683,
37.66116404881207
],
[
66.21738488145934,
37.39379018813392
],
[
66.51860680528867,
37.36278432875879
],
[
67.07578209825962,
37.35614390720929
],
[
67.82999962755952,
37.144994004864685
],
[
68.13556237170138,
37.02311513930431
],
[
68.85944583524594,
37.344335842430596
],
[
69.19627282092438,
37.15114350030743
],
[
69.51878543485796,
37.60899669041342
],
[
70.11657840361033,
37.58822276463209
],
[
70.27057417184014,
37.735164699854025
],
[
70.3763041523093,
38.13839590102752
],
[
70.80682050973289,
38.486281643216415
],
[
71.34813113799026,
38.25890534113216
],
[
71.23940392444817,
37.953265082341886
],
[
71.54191775908478,
37.905774441065645
],
[
71.44869347523024,
37.06564484308052
],
[
71.8446382994506,
36.73817129164692
],
[
72.1930408059624,
36.948287665345674
],
[
72.63688968291729,
37.047558091778356
],
[
73.26005577992501,
37.495256862939
],
[
73.9486959166465,
37.4215662704908
],
[
74.98000247589542,
37.419990139305895
],
[
75.15802778514092,
37.13303091078912
],
[
74.57589277537298,
37.02084137628346
],
[
74.06755171091783,
36.83617564548845
],
[
72.92002485544447,
36.72000702569632
],
[
71.84629194528392,
36.50994232842986
],
[
71.26234826038575,
36.074387518857804
],
[
71.49876793812109,
35.650563259416
],
[
71.61307620635071,
35.153203436822864
],
[
71.11501875192164,
34.733125718722235
],
[
71.15677330921346,
34.34891144463215
],
[
70.8818030129884,
33.98885590263852
],
[
69.9305432473596,
34.02012014417511
],
[
70.3235941913716,
33.35853261975839
],
[
69.68714725126486,
33.105498969041236
],
[
69.26252200712256,
32.5019440780883
],
[
69.31776411324256,
31.901412258424443
],
[
68.92667687365767,
31.620189113892067
],
[
68.55693200060932,
31.713310044882018
],
[
67.79268924344478,
31.58293040620963
],
[
67.68339358914747,
31.30315420178142
],
[
66.93889122911847,
31.304911200479353
],
[
66.38145755398602,
30.738899237586452
],
[
66.34647260932442,
29.887943427036177
],
[
65.0468620136161,
29.472180691031905
],
[
64.35041873561852,
29.560030625928093
],
[
64.14800215033125,
29.340819200145972
],
[
63.55026085801117,
29.468330796826166
],
[
62.54985680527278,
29.31857249604431
],
[
60.87424848820879,
29.829238999952608
],
[
61.781221551363444,
30.735850328081238
],
[
61.69931440618083,
31.379506130492672
],
[
60.94194461451113,
31.548074652628753
],
[
60.863654819588966,
32.18291962333443
],
[
60.536077915290775,
32.98126882581157
],
[
60.963700392506006,
33.52883230237626
],
[
60.52842980331158,
33.676446031218006
],
[
60.80319339380745,
34.40410187431986
],
[
61.210817091725744,
35.650072333309225
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Angola",
"sov_a3": "AGO",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Angola",
"adm0_a3": "AGO",
"geou_dif": 0,
"geounit": "Angola",
"gu_a3": "AGO",
"su_dif": 0,
"subunit": "Angola",
"su_a3": "AGO",
"brk_diff": 0,
"name": "Angola",
"name_long": "Angola",
"brk_a3": "AGO",
"brk_name": "Angola",
"brk_group": "",
"abbrev": "Ang.",
"postal": "AO",
"formal_en": "People's Republic of Angola",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Angola",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 2,
"mapcolor9": 6,
"mapcolor13": 1,
"pop_est": 12799293,
"gdp_md_est": 110300,
"pop_year": -99,
"lastcensus": 1970,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AO",
"iso_a3": "AGO",
"iso_n3": "024",
"un_a3": "024",
"wb_a2": "AO",
"wb_a3": "AGO",
"woe_id": -99,
"adm0_a3_is": "AGO",
"adm0_a3_us": "AGO",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Middle Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 6,
"long_len": 6,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
16.326528354567046,
-5.877470391466218
],
[
16.573179965896145,
-6.622644545115094
],
[
16.86019087084523,
-7.222297865429979
],
[
17.08999596524717,
-7.545688978712477
],
[
17.472970004962292,
-8.068551120641658
],
[
18.13422163256905,
-7.987677504104866
],
[
18.464175652752687,
-7.847014255406478
],
[
19.01675174324967,
-7.9882459448601395
],
[
19.166613396896082,
-7.738183688999726
],
[
19.417502475673217,
-7.155428562044278
],
[
20.037723016040218,
-7.11636117923166
],
[
20.09162153492062,
-6.943090101756951
],
[
20.601822950938327,
-6.939317722199689
],
[
20.51474816252653,
-7.299605808138665
],
[
21.728110792739756,
-7.290872491081316
],
[
21.746455926203367,
-7.920084730667114
],
[
21.94913089365204,
-8.305900974158305
],
[
21.801801385187957,
-8.908706556842986
],
[
21.875181919042404,
-9.523707777548566
],
[
22.208753289486424,
-9.89479623783653
],
[
22.155268182064333,
-11.084801120653779
],
[
22.402798292742432,
-10.993075453335692
],
[
22.83734541188477,
-11.017621758674338
],
[
23.45679080576747,
-10.867863457892483
],
[
23.912215203555746,
-10.926826267137542
],
[
24.017893507592618,
-11.237298272347118
],
[
23.90415368011824,
-11.722281589406336
],
[
24.079905226342902,
-12.191296888887308
],
[
23.930922072045377,
-12.565847670138822
],
[
24.016136508894704,
-12.911046237848552
],
[
21.933886346125945,
-12.898437188369357
],
[
21.887842644953878,
-16.080310153876894
],
[
22.56247846852429,
-16.898451429921835
],
[
23.215048455506093,
-17.523116143465955
],
[
21.377176141045595,
-17.93063648851971
],
[
18.95618696460363,
-17.789094740472237
],
[
18.26330936043422,
-17.309950860262006
],
[
14.209706658595053,
-17.353100681225712
],
[
14.058501417709039,
-17.423380629142656
],
[
13.462362094789967,
-16.971211846588744
],
[
12.814081251688407,
-16.941342868724078
],
[
12.215461460019384,
-17.111668389558062
],
[
11.73419884608515,
-17.3018893368245
],
[
11.64009606288161,
-16.67314218512921
],
[
11.778537224991567,
-15.79381601325069
],
[
12.123580763404448,
-14.878316338767931
],
[
12.175618930722266,
-14.449143568583892
],
[
12.500095249083017,
-13.547699883684402
],
[
12.738478631245442,
-13.137905775609937
],
[
13.312913852601838,
-12.483630466362513
],
[
13.633721144269828,
-12.038644707897191
],
[
13.738727654686926,
-11.297863050993143
],
[
13.686379428775297,
-10.731075941615842
],
[
13.387327915102162,
-10.373578383020728
],
[
13.120987583069876,
-9.766897067914115
],
[
12.875369500386569,
-9.16693368900549
],
[
12.929061313537801,
-8.959091078327575
],
[
13.236432732809874,
-8.562629489784342
],
[
12.933040398824318,
-7.596538588087753
],
[
12.72829837408392,
-6.927122084178805
],
[
12.227347039446443,
-6.294447523629373
],
[
12.322431674863566,
-6.100092461779653
],
[
12.735171339578699,
-5.965682061388478
],
[
13.02486941900699,
-5.984388929878108
],
[
13.375597364971895,
-5.864241224799557
],
[
16.326528354567046,
-5.877470391466218
]
]
],
[
[
[
12.436688266660923,
-5.684303887559224
],
[
12.18233686692028,
-5.789930515163803
],
[
11.914963006242118,
-5.037986748884734
],
[
12.318607618873926,
-4.606230157086159
],
[
12.62075971848455,
-4.438023369976122
],
[
12.995517205465205,
-4.781103203961919
],
[
12.631611769265845,
-4.991271254092936
],
[
12.468004184629763,
-5.248361504744992
],
[
12.436688266660923,
-5.684303887559224
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Albania",
"sov_a3": "ALB",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Albania",
"adm0_a3": "ALB",
"geou_dif": 0,
"geounit": "Albania",
"gu_a3": "ALB",
"su_dif": 0,
"subunit": "Albania",
"su_a3": "ALB",
"brk_diff": 0,
"name": "Albania",
"name_long": "Albania",
"brk_a3": "ALB",
"brk_name": "Albania",
"brk_group": "",
"abbrev": "Alb.",
"postal": "AL",
"formal_en": "Republic of Albania",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Albania",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 4,
"mapcolor9": 1,
"mapcolor13": 6,
"pop_est": 3639453,
"gdp_md_est": 21810,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AL",
"iso_a3": "ALB",
"iso_n3": "008",
"un_a3": "008",
"wb_a2": "AL",
"wb_a3": "ALB",
"woe_id": -99,
"adm0_a3_is": "ALB",
"adm0_a3_us": "ALB",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Southern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
21.0200403174764,
40.84272695572588
],
[
20.999989861747224,
40.58000397395398
],
[
20.674996779063633,
40.43499990494303
],
[
20.615000441172754,
40.11000682225938
],
[
20.15001590341052,
39.62499766698397
],
[
19.980000441170148,
39.69499339452341
],
[
19.960001661873207,
39.91500580500605
],
[
19.406081984136733,
40.250773423822466
],
[
19.319058872157143,
40.72723012955356
],
[
19.40354983895429,
41.40956574153546
],
[
19.540027296637106,
41.71998607031276
],
[
19.37176883309496,
41.877547512370654
],
[
19.304486118250793,
42.19574514420782
],
[
19.73805138517963,
42.68824738216557
],
[
19.801613396898688,
42.50009349219084
],
[
20.070700000000045,
42.58863000000008
],
[
20.283754510181893,
42.32025950781508
],
[
20.522950000000037,
42.21787000000006
],
[
20.59024743010491,
41.855404161133606
],
[
20.463175083099202,
41.51508901627534
],
[
20.605181919037364,
41.086226304685226
],
[
21.0200403174764,
40.84272695572588
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "United Arab Emirates",
"sov_a3": "ARE",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "United Arab Emirates",
"adm0_a3": "ARE",
"geou_dif": 0,
"geounit": "United Arab Emirates",
"gu_a3": "ARE",
"su_dif": 0,
"subunit": "United Arab Emirates",
"su_a3": "ARE",
"brk_diff": 0,
"name": "United Arab Emirates",
"name_long": "United Arab Emirates",
"brk_a3": "ARE",
"brk_name": "United Arab Emirates",
"brk_group": "",
"abbrev": "U.A.E.",
"postal": "AE",
"formal_en": "United Arab Emirates",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "United Arab Emirates",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 3,
"pop_est": 4798491,
"gdp_md_est": 184300,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AE",
"iso_a3": "ARE",
"iso_n3": "784",
"un_a3": "784",
"wb_a2": "AE",
"wb_a3": "ARE",
"woe_id": -99,
"adm0_a3_is": "ARE",
"adm0_a3_us": "ARE",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Western Asia",
"region_wb": "Middle East & North Africa",
"name_len": 20,
"long_len": 20,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
51.57951867046327,
24.245497137951105
],
[
51.757440626844186,
24.29407298430547
],
[
51.79438927593287,
24.019826158132506
],
[
52.57708051942561,
24.177439276622707
],
[
53.404006788960146,
24.15131684009917
],
[
54.00800092958758,
24.121757920828216
],
[
54.69302371604863,
24.79789236093509
],
[
55.43902469261414,
25.43914520924494
],
[
56.07082075381456,
26.05546417897398
],
[
56.261041701080956,
25.71460643157677
],
[
56.396847365144005,
24.924732163995486
],
[
55.88623253766801,
24.920830593357447
],
[
55.804118686756226,
24.269604193615265
],
[
55.98121382022046,
24.13054291431783
],
[
55.52863162620824,
23.933604030853502
],
[
55.525841098864475,
23.524869289640932
],
[
55.234489373602884,
23.110992743415324
],
[
55.208341098863194,
22.708329982997046
],
[
55.006803012924905,
22.496947536707136
],
[
52.000733270074335,
23.00115448657894
],
[
51.61770755392698,
24.01421926522883
],
[
51.57951867046327,
24.245497137951105
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Argentina",
"sov_a3": "ARG",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Argentina",
"adm0_a3": "ARG",
"geou_dif": 0,
"geounit": "Argentina",
"gu_a3": "ARG",
"su_dif": 0,
"subunit": "Argentina",
"su_a3": "ARG",
"brk_diff": 0,
"name": "Argentina",
"name_long": "Argentina",
"brk_a3": "ARG",
"brk_name": "Argentina",
"brk_group": "",
"abbrev": "Arg.",
"postal": "AR",
"formal_en": "Argentine Republic",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Argentina",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 13,
"pop_est": 40913584,
"gdp_md_est": 573900,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "5. Emerging region: G20",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AR",
"iso_a3": "ARG",
"iso_n3": "032",
"un_a3": "032",
"wb_a2": "AR",
"wb_a3": "ARG",
"woe_id": -99,
"adm0_a3_is": "ARG",
"adm0_a3_us": "ARG",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 9,
"long_len": 9,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-66.95992000000004,
-54.896809999999974
],
[
-67.56244000000001,
-54.87000999999996
],
[
-68.63334999999998,
-54.869499999999945
],
[
-68.63401022758316,
-52.63637045887446
],
[
-68.25,
-53.099999999999966
],
[
-67.75000000000003,
-53.849999999999994
],
[
-66.45000000000002,
-54.45000000000002
],
[
-65.05000000000001,
-54.69999999999997
],
[
-65.50000000000003,
-55.19999999999996
],
[
-66.45000000000002,
-55.25000000000002
],
[
-66.95992000000004,
-54.896809999999974
]
]
],
[
[
[
-68.57154537624135,
-52.29944385534626
],
[
-69.49836218939609,
-52.14276091263725
],
[
-71.91480383979635,
-52.009022305865926
],
[
-72.32940385607404,
-51.42595631287241
],
[
-72.30997351753237,
-50.677009779666356
],
[
-72.97574683296463,
-50.74145029073431
],
[
-73.32805091011448,
-50.37878508890987
],
[
-73.41543575712004,
-49.31843637471296
],
[
-72.64824744331494,
-48.87861825947679
],
[
-72.33116085477195,
-48.244238376661826
],
[
-72.44735531278027,
-47.73853281025353
],
[
-71.91725847033021,
-46.8848381487918
],
[
-71.55200944689125,
-45.56073292417713
],
[
-71.65931555854533,
-44.97368865334144
],
[
-71.22277889675973,
-44.784242852559416
],
[
-71.32980078803621,
-44.40752166115169
],
[
-71.79362260607195,
-44.20717213315611
],
[
-71.46405615913051,
-43.78761117937833
],
[
-71.91542395698391,
-43.40856454851742
],
[
-72.14889807807853,
-42.25488819760139
],
[
-71.74680375841547,
-42.051386407235995
],
[
-71.91573401557756,
-40.83233936947073
],
[
-71.68076127794646,
-39.80816415787807
],
[
-71.41351660834906,
-38.916022230791114
],
[
-70.81466427273472,
-38.55299529394074
],
[
-71.11862504747543,
-37.5768274879472
],
[
-71.1218806627098,
-36.65812387466234
],
[
-70.36476925320167,
-36.005088799789945
],
[
-70.3880494859491,
-35.16968759535945
],
[
-69.81730912950147,
-34.193571465798286
],
[
-69.81477698431922,
-33.27388600029985
],
[
-70.07439938015364,
-33.09120981214804
],
[
-70.53506893581945,
-31.36501026787029
],
[
-69.91900834825194,
-30.336339206668313
],
[
-70.01355038112987,
-29.36792286551855
],
[
-69.65613033718316,
-28.459141127233693
],
[
-69.00123491074828,
-27.521213881136134
],
[
-68.2955415513704,
-26.89933969493579
],
[
-68.59479977077268,
-26.506908868111267
],
[
-68.38600114609736,
-26.185016371365236
],
[
-68.41765296087613,
-24.518554782816878
],
[
-67.32844295924414,
-24.025303236590915
],
[
-66.98523393417764,
-22.98634856536283
],
[
-67.10667355006362,
-22.7359245744764
],
[
-66.27333940292485,
-21.832310479420684
],
[
-64.96489213729458,
-22.07586150481235
],
[
-64.37702104354227,
-22.798091322523547
],
[
-63.98683814152247,
-21.993644301035957
],
[
-62.846468471921554,
-22.034985446869456
],
[
-62.6850571356579,
-22.249029229422405
],
[
-60.84656470400995,
-23.880712579038303
],
[
-60.028966030503994,
-24.032796319273245
],
[
-58.80712846539495,
-24.771459242453275
],
[
-57.77721716981796,
-25.16233977630904
],
[
-57.63366004091114,
-25.60365650808167
],
[
-58.61817359071972,
-27.123718763947124
],
[
-57.60975969097615,
-27.395898532828426
],
[
-56.486701626192996,
-27.54849903738625
],
[
-55.6958455063982,
-27.38783700939082
],
[
-54.78879492859505,
-26.62178557709609
],
[
-54.625290696823555,
-25.739255466415486
],
[
-54.13004960795442,
-25.54763925547725
],
[
-53.62834896504873,
-26.124865004177437
],
[
-53.64873531758789,
-26.92347258881611
],
[
-54.49072526713553,
-27.47475676850577
],
[
-55.1622863429846,
-27.88191537853342
],
[
-56.2908996242391,
-28.852760512000856
],
[
-57.62513342958292,
-30.216294854454247
],
[
-57.87493730328191,
-31.016556084926165
],
[
-58.14244035504075,
-32.04450367607619
],
[
-58.13264767112142,
-33.040566908502015
],
[
-58.34961117209883,
-33.263188978815435
],
[
-58.42707414410438,
-33.90945444105755
],
[
-58.49544206402655,
-34.43148976007011
],
[
-57.225829637263644,
-35.28802662530789
],
[
-57.36235877137875,
-35.977390232081504
],
[
-56.73748735210546,
-36.41312590916658
],
[
-56.788285285048346,
-36.901571547189334
],
[
-57.74915686708343,
-38.183870538079915
],
[
-59.23185706240187,
-38.720220228837206
],
[
-61.237445237865614,
-38.928424574541154
],
[
-62.33595699731015,
-38.82770720800437
],
[
-62.12576310896293,
-39.424104913084875
],
[
-62.330530971919444,
-40.17258635840032
],
[
-62.14599443220524,
-40.67689666113674
],
[
-62.74580278181699,
-41.02876148861209
],
[
-63.770494757732536,
-41.166789239263665
],
[
-64.73208980981971,
-40.802677097335135
],
[
-65.11803524439159,
-41.06431487402888
],
[
-64.97856055363584,
-42.058000990569326
],
[
-64.30340796574248,
-42.3590162086695
],
[
-63.75594784204236,
-42.04368661882451
],
[
-63.45805904809589,
-42.56313811622236
],
[
-64.3788038804563,
-42.873558444999645
],
[
-65.1818039618397,
-43.495380954767796
],
[
-65.32882341171015,
-44.501366062193696
],
[
-65.5652689276616,
-45.036785577169795
],
[
-66.50996578638936,
-45.03962778094585
],
[
-67.29379391139244,
-45.5518962542552
],
[
-67.58054643418009,
-46.30177296324254
],
[
-66.59706641301727,
-47.03392465595381
],
[
-65.64102657740145,
-47.236134535511894
],
[
-65.98508826360074,
-48.13328907653114
],
[
-67.16617896184766,
-48.697337334996945
],
[
-67.81608761256646,
-49.86966887797042
],
[
-68.72874508327317,
-50.26421843851887
],
[
-69.1385391913478,
-50.7325102679478
],
[
-68.81556148952353,
-51.771104011594105
],
[
-68.14999487982041,
-52.349983406127706
],
[
-68.57154537624135,
-52.29944385534626
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Armenia",
"sov_a3": "ARM",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Armenia",
"adm0_a3": "ARM",
"geou_dif": 0,
"geounit": "Armenia",
"gu_a3": "ARM",
"su_dif": 0,
"subunit": "Armenia",
"su_a3": "ARM",
"brk_diff": 0,
"name": "Armenia",
"name_long": "Armenia",
"brk_a3": "ARM",
"brk_name": "Armenia",
"brk_group": "",
"abbrev": "Arm.",
"postal": "ARM",
"formal_en": "Republic of Armenia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Armenia",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 1,
"mapcolor9": 2,
"mapcolor13": 10,
"pop_est": 2967004,
"gdp_md_est": 18770,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AM",
"iso_a3": "ARM",
"iso_n3": "051",
"un_a3": "051",
"wb_a2": "AM",
"wb_a3": "ARM",
"woe_id": -99,
"adm0_a3_is": "ARM",
"adm0_a3_us": "ARM",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Western Asia",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
43.58274580259273,
41.09214325618257
],
[
44.97248009621808,
41.248128567055595
],
[
45.17949588397934,
40.98535390885141
],
[
45.56035118997045,
40.812289537105926
],
[
45.35917483905817,
40.56150381119346
],
[
45.89190717955509,
40.21847565364
],
[
45.61001224140293,
39.89999380142518
],
[
46.034534132680676,
39.628020738273065
],
[
46.48349897643246,
39.464154771475535
],
[
46.50571984231797,
38.770605373686294
],
[
46.14362308124882,
38.74120148371222
],
[
45.73537926614301,
39.31971914321974
],
[
45.73997846861698,
39.47399913182713
],
[
45.29814497252146,
39.471751207022436
],
[
45.00198733905675,
39.740003567049555
],
[
44.79398969908195,
39.71300263117705
],
[
44.4000085792887,
40.00500031184228
],
[
43.65643639504094,
40.253563951166186
],
[
43.75265791196841,
40.74020091405876
],
[
43.58274580259273,
41.09214325618257
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 3,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "France",
"sov_a3": "FR1",
"adm0_dif": 1,
"level": 2,
"type": "Dependency",
"admin": "French Southern and Antarctic Lands",
"adm0_a3": "ATF",
"geou_dif": 0,
"geounit": "French Southern and Antarctic Lands",
"gu_a3": "ATF",
"su_dif": 0,
"subunit": "French Southern and Antarctic Lands",
"su_a3": "ATF",
"brk_diff": 0,
"name": "Fr. S. Antarctic Lands",
"name_long": "French Southern and Antarctic Lands",
"brk_a3": "ATF",
"brk_name": "Fr. S. and Antarctic Lands",
"brk_group": "",
"abbrev": "Fr. S.A.L.",
"postal": "TF",
"formal_en": "Territory of the French Southern and Antarctic Lands",
"formal_fr": "",
"note_adm0": "Fr.",
"note_brk": "",
"name_sort": "French Southern and Antarctic Lands",
"name_alt": "",
"mapcolor7": 7,
"mapcolor8": 5,
"mapcolor9": 9,
"mapcolor13": 11,
"pop_est": 140,
"gdp_md_est": 16,
"pop_year": -99,
"lastcensus": -99,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "TF",
"iso_a3": "ATF",
"iso_n3": "260",
"un_a3": "-099",
"wb_a2": "-99",
"wb_a3": "-99",
"woe_id": -99,
"adm0_a3_is": "ATF",
"adm0_a3_us": "ATF",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Seven seas (open ocean)",
"region_un": "Seven seas (open ocean)",
"subregion": "Seven seas (open ocean)",
"region_wb": "Sub-Saharan Africa",
"name_len": 22,
"long_len": 35,
"abbrev_len": 10,
"tiny": 2,
"homepart": -99
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
68.935,
-48.62500000000001
],
[
69.58,
-48.940000000000005
],
[
70.525,
-49.065000000000005
],
[
70.56,
-49.255
],
[
70.28,
-49.71
],
[
68.745,
-49.775000000000006
],
[
68.72000000000001,
-49.2425
],
[
68.8675,
-48.830000000000005
],
[
68.935,
-48.62500000000001
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Australia",
"sov_a3": "AU1",
"adm0_dif": 1,
"level": 2,
"type": "Country",
"admin": "Australia",
"adm0_a3": "AUS",
"geou_dif": 0,
"geounit": "Australia",
"gu_a3": "AUS",
"su_dif": 0,
"subunit": "Australia",
"su_a3": "AUS",
"brk_diff": 0,
"name": "Australia",
"name_long": "Australia",
"brk_a3": "AUS",
"brk_name": "Australia",
"brk_group": "",
"abbrev": "Auz.",
"postal": "AU",
"formal_en": "Commonwealth of Australia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Australia",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 2,
"mapcolor9": 2,
"mapcolor13": 7,
"pop_est": 21262641,
"gdp_md_est": 800200,
"pop_year": -99,
"lastcensus": 2006,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AU",
"iso_a3": "AUS",
"iso_n3": "036",
"un_a3": "036",
"wb_a2": "AU",
"wb_a3": "AUS",
"woe_id": -99,
"adm0_a3_is": "AUS",
"adm0_a3_us": "AUS",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Oceania",
"region_un": "Oceania",
"subregion": "Australia and New Zealand",
"region_wb": "East Asia & Pacific",
"name_len": 9,
"long_len": 9,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
145.39797814349484,
-40.79254851660589
],
[
146.36412072162372,
-41.13769540788334
],
[
146.90858361225085,
-41.00054615658068
],
[
147.68925947488415,
-40.80825815202269
],
[
148.28906782449602,
-40.87543751400213
],
[
148.35986453673584,
-42.062445163746446
],
[
148.0173014670731,
-42.407023614268624
],
[
147.9140519553538,
-43.21152231218849
],
[
147.564564243764,
-42.93768889747386
],
[
146.87034305235497,
-43.634597263362096
],
[
146.66332726459368,
-43.58085377377856
],
[
146.04837772032042,
-43.54974456153889
],
[
145.43192955951056,
-42.693776137056275
],
[
145.2950903668017,
-42.03360971452756
],
[
144.71807132383063,
-41.162551771815714
],
[
144.74375451067968,
-40.70397511165771
],
[
145.39797814349484,
-40.79254851660589
]
]
],
[
[
[
143.56181115129996,
-13.763655694232213
],
[
143.92209923723894,
-14.548310642152003
],
[
144.56371382057486,
-14.171176039285882
],
[
144.89490807513354,
-14.594457696188627
],
[
145.37472374896348,
-14.984976495018287
],
[
145.27199100156727,
-15.428205254785695
],
[
145.48525963763578,
-16.285672295804773
],
[
145.63703331927698,
-16.784918308176614
],
[
145.8889042502677,
-16.90692636481765
],
[
146.1603088726645,
-17.761654554925244
],
[
146.0636739442787,
-18.28007252367732
],
[
146.3874784690196,
-18.95827402107591
],
[
147.47108157774792,
-19.48072275154668
],
[
148.1776017600425,
-19.95593922290277
],
[
148.84841352762325,
-20.39120981209726
],
[
148.7174654481956,
-20.633468926681516
],
[
149.28942020080208,
-21.260510756111103
],
[
149.67833703023067,
-22.342511895438392
],
[
150.07738244038862,
-22.12278370533332
],
[
150.4829390810152,
-22.556142266533016
],
[
150.72726525289121,
-22.40240488046466
],
[
150.89955447815228,
-23.462236830338682
],
[
151.60917524638424,
-24.076256198830762
],
[
152.07353966695908,
-24.457886651306197
],
[
152.85519738180594,
-25.267501316023015
],
[
153.13616214417678,
-26.07117319102619
],
[
153.16194868389042,
-26.641319268502443
],
[
153.0929089703486,
-27.26029957449451
],
[
153.5694690289442,
-28.110066827102102
],
[
153.51210818910025,
-28.995077406532758
],
[
153.33909549378708,
-29.45820159273245
],
[
153.06924116435889,
-30.35024016695482
],
[
153.08960167868182,
-30.92364185966545
],
[
152.8915775901394,
-31.640445651985956
],
[
152.45000247620536,
-32.550002536755244
],
[
151.70911746643682,
-33.041342054986345
],
[
151.34397179586242,
-33.81602345147385
],
[
151.01055545471516,
-34.310360202777886
],
[
150.71413943908905,
-35.17345997491681
],
[
150.32821984273326,
-35.67187916437193
],
[
150.07521203023228,
-36.420205580390515
],
[
149.94612430236717,
-37.10905242284123
],
[
149.99728397033616,
-37.42526051203514
],
[
149.42388227762555,
-37.77268116633347
],
[
148.30462243061592,
-37.80906137466688
],
[
147.3817330263153,
-38.21921721776755
],
[
146.92212283751135,
-38.60653207779512
],
[
146.3179219911548,
-39.03575652441144
],
[
145.48965213438058,
-38.59376799901905
],
[
144.87697635312819,
-38.41744801203912
],
[
145.03221235573298,
-37.896187839510986
],
[
144.48568240781404,
-38.08532358169927
],
[
143.6099735861961,
-38.80946542740533
],
[
142.745426873953,
-38.538267510737526
],
[
142.178329705982,
-38.38003427505984
],
[
141.6065816591047,
-38.30851409276788
],
[
140.63857872941324,
-38.019332777662555
],
[
139.99215823787435,
-37.40293629328511
],
[
139.80658816951407,
-36.64360279718828
],
[
139.57414757706525,
-36.13836231867067
],
[
139.0828080588341,
-35.73275400161178
],
[
138.12074791885632,
-35.612296237939404
],
[
138.44946170466503,
-35.127261244447894
],
[
138.2075643251067,
-34.38472258884593
],
[
137.71917036351616,
-35.07682504653103
],
[
136.82940555231474,
-35.26053476332862
],
[
137.3523710471085,
-34.7073385556441
],
[
137.50388634658836,
-34.130267836240776
],
[
137.89011600153768,
-33.640478610978334
],
[
137.81032759007914,
-32.90000701266811
],
[
136.99683719294038,
-33.752771498348636
],
[
136.37206912653167,
-34.09476612725619
],
[
135.98904341038437,
-34.89011809666049
],
[
135.20821251845413,
-34.47867034275261
],
[
135.2392183778292,
-33.94795338311498
],
[
134.61341678277464,
-33.22277800876314
],
[
134.08590376193914,
-32.848072198214766
],
[
134.27390262261704,
-32.61723357516696
],
[
132.99077680880984,
-32.011224053680195
],
[
132.2880806825049,
-31.98264698662277
],
[
131.32633060112093,
-31.49580331800105
],
[
129.5357938986397,
-31.590422865527486
],
[
128.24093753470223,
-31.94848886487786
],
[
127.10286746633832,
-32.28226694105105
],
[
126.14871382050117,
-32.21596607842061
],
[
125.08862348846563,
-32.728751316052836
],
[
124.22164798390494,
-32.95948658623607
],
[
124.02894656788854,
-33.483847344701715
],
[
123.65966678273074,
-33.89017913181273
],
[
122.81103641163364,
-33.91446705498984
],
[
122.18306440642286,
-34.003402194964224
],
[
121.2991907085026,
-33.82103606540613
],
[
120.58026818245813,
-33.930176690406626
],
[
119.89369510302825,
-33.976065362281815
],
[
119.29889936734881,
-34.50936614353397
],
[
119.00734093635802,
-34.464149265278536
],
[
118.5057178081008,
-34.7468193499151
],
[
118.02497195848954,
-35.064732761374714
],
[
117.29550744025747,
-35.02545867283287
],
[
116.62510908413495,
-35.025096937806836
],
[
115.56434695847972,
-34.386427911111554
],
[
115.02680870977954,
-34.196517022438925
],
[
115.04861616420678,
-33.62342538832203
],
[
115.5451233256671,
-33.48725798923296
],
[
115.71467370001668,
-33.25957162855495
],
[
115.6793786967614,
-32.90036874769413
],
[
115.80164513556397,
-32.20506235120703
],
[
115.68961063035513,
-31.61243702568379
],
[
115.16090905157697,
-30.601594333622458
],
[
114.99704308477945,
-30.03072478609417
],
[
115.04003787644629,
-29.461095472940798
],
[
114.64197431850201,
-28.810230808224716
],
[
114.61649783738218,
-28.516398614213045
],
[
114.17357913620847,
-28.11807667410733
],
[
114.04888390508816,
-27.334765313427127
],
[
113.4774975932369,
-26.543134047147902
],
[
113.3389530782625,
-26.116545098578484
],
[
113.77835778204027,
-26.54902516042918
],
[
113.44096235560662,
-25.62127817149316
],
[
113.93690107631167,
-25.911234633082884
],
[
114.23285200404732,
-26.298446140245872
],
[
114.21616051641703,
-25.78628101980111
],
[
113.72125532435771,
-24.998938897402127
],
[
113.62534386602405,
-24.683971042583153
],
[
113.39352339076268,
-24.38476449961327
],
[
113.50204389857564,
-23.806350192970257
],
[
113.70699262904517,
-23.560215345964068
],
[
113.8434184102957,
-23.05998748137874
],
[
113.7365515483161,
-22.47547535572538
],
[
114.1497563009219,
-21.755881036061012
],
[
114.22530724493268,
-22.517488295178637
],
[
114.6477620789187,
-21.829519952076907
],
[
115.46016727097933,
-21.495173435148544
],
[
115.94737267462702,
-21.06868783944371
],
[
116.71161543179156,
-20.70168181730682
],
[
117.16631635952771,
-20.623598728113805
],
[
117.44154503791427,
-20.746898695562166
],
[
118.22955895393298,
-20.374208265873236
],
[
118.83608523974274,
-20.26331064217483
],
[
118.98780724495177,
-20.044202569257322
],
[
119.25249393115067,
-19.95294198982984
],
[
119.80522505094459,
-19.976506442954985
],
[
120.85622033089666,
-19.68370777758919
],
[
121.39985639860723,
-19.239755547769732
],
[
121.65513797412908,
-18.705317885007133
],
[
122.24166548064179,
-18.19764861417177
],
[
122.28662397673568,
-17.798603204013915
],
[
122.31277225147542,
-17.25496713630345
],
[
123.01257449757193,
-16.405199883695857
],
[
123.43378909718305,
-17.26855803799623
],
[
123.85934451710662,
-17.069035332917252
],
[
123.50324222218327,
-16.596506036040367
],
[
123.81707319549193,
-16.111316013251994
],
[
124.25828657439988,
-16.327943617419564
],
[
124.37972619028582,
-15.567059828353976
],
[
124.92615278534007,
-15.075100192935324
],
[
125.1672750184139,
-14.680395603090005
],
[
125.67008670461385,
-14.510070082256021
],
[
125.68579634003052,
-14.230655612853838
],
[
126.12514936737611,
-14.347340996968953
],
[
126.14282270721989,
-14.095986830301214
],
[
126.58258914602376,
-13.952791436420412
],
[
127.06586714081735,
-13.817967624570926
],
[
127.80463341686195,
-14.276906019755046
],
[
128.35968997610897,
-14.869169610252257
],
[
128.98554324759593,
-14.875990899314743
],
[
129.62147342337963,
-14.969783623924556
],
[
129.40960005098302,
-14.420669854391036
],
[
129.88864057832862,
-13.618703301653483
],
[
130.33946577364296,
-13.357375583553477
],
[
130.183506300986,
-13.107520033422304
],
[
130.617795037967,
-12.536392103732467
],
[
131.22349450086003,
-12.183648776908115
],
[
131.73509118054952,
-12.302452894747162
],
[
132.57529829318312,
-12.114040622611014
],
[
132.55721154188106,
-11.603012383676685
],
[
131.82469811414367,
-11.273781833545101
],
[
132.35722374891142,
-11.128519382372644
],
[
133.01956058159644,
-11.376411228076847
],
[
133.55084598198906,
-11.786515394745138
],
[
134.393068475482,
-12.042365411022175
],
[
134.67863244032705,
-11.941182956594702
],
[
135.29849124566803,
-12.248606052299053
],
[
135.88269331272764,
-11.962266940969798
],
[
136.25838097548947,
-12.04934172938161
],
[
136.49247521377166,
-11.857208754120393
],
[
136.95162031468502,
-12.351958916882737
],
[
136.68512495335577,
-12.887223402562057
],
[
136.30540652887512,
-13.291229750219898
],
[
135.96175825413414,
-13.324509372615893
],
[
136.07761681533256,
-13.724278252825783
],
[
135.78383629775325,
-14.223989353088214
],
[
135.42866417861123,
-14.7154322241839
],
[
135.5001843609032,
-14.997740573794431
],
[
136.2951745952814,
-15.550264987859123
],
[
137.0653601421595,
-15.870762220933358
],
[
137.58047081924482,
-16.215082289294088
],
[
138.303217401279,
-16.80760426195266
],
[
138.5851640158634,
-16.806622409739177
],
[
139.1085429221155,
-17.06267913174537
],
[
139.26057498591823,
-17.371600843986187
],
[
140.2152453960783,
-17.710804945550066
],
[
140.87546349503927,
-17.369068698803943
],
[
141.0711104676963,
-16.832047214426723
],
[
141.27409549373883,
-16.388870131091608
],
[
141.3982222841038,
-15.840531508042588
],
[
141.70218305884467,
-15.044921156476931
],
[
141.5633801617087,
-14.56133310308951
],
[
141.63552046118812,
-14.270394789286286
],
[
141.51986860571898,
-13.698078301653808
],
[
141.65092003801104,
-12.944687595270565
],
[
141.84269127824624,
-12.74154753993119
],
[
141.6869901877508,
-12.407614434461138
],
[
141.92862918514757,
-11.877465915578782
],
[
142.118488397388,
-11.328042087451621
],
[
142.14370649634637,
-11.042736504768143
],
[
142.51526004452498,
-10.668185723516643
],
[
142.79731001197408,
-11.157354831591519
],
[
142.8667631369743,
-11.784706719614931
],
[
143.1159468934857,
-11.905629571177911
],
[
143.1586316265588,
-12.325655612846191
],
[
143.5221236512999,
-12.834358412327433
],
[
143.5971578309877,
-13.400422051652598
],
[
143.56181115129996,
-13.763655694232213
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Austria",
"sov_a3": "AUT",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Austria",
"adm0_a3": "AUT",
"geou_dif": 0,
"geounit": "Austria",
"gu_a3": "AUT",
"su_dif": 0,
"subunit": "Austria",
"su_a3": "AUT",
"brk_diff": 0,
"name": "Austria",
"name_long": "Austria",
"brk_a3": "AUT",
"brk_name": "Austria",
"brk_group": "",
"abbrev": "Aust.",
"postal": "A",
"formal_en": "Republic of Austria",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Austria",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 4,
"pop_est": 8210281,
"gdp_md_est": 329500,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AT",
"iso_a3": "AUT",
"iso_n3": "040",
"un_a3": "040",
"wb_a2": "AT",
"wb_a3": "AUT",
"woe_id": -99,
"adm0_a3_is": "AUT",
"adm0_a3_us": "AUT",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Western Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
16.979666782304037,
48.123497015976305
],
[
16.90375410326726,
47.71486562762833
],
[
16.340584344150415,
47.71290192320123
],
[
16.534267612380376,
47.49617096616912
],
[
16.202298211337364,
46.85238597267696
],
[
16.011663852612656,
46.6836107448117
],
[
15.137091912504985,
46.65870270444703
],
[
14.63247155117483,
46.43181732846955
],
[
13.806475457421527,
46.509306138691215
],
[
12.376485223040817,
46.76755910906985
],
[
12.153088006243054,
47.11539317482645
],
[
11.16482791509327,
46.94157949481273
],
[
11.048555942436536,
46.75135854754634
],
[
10.44270145024663,
46.89354625099743
],
[
9.932448357796659,
46.92072805438296
],
[
9.479969516649021,
47.102809963563374
],
[
9.632931756232978,
47.34760122332999
],
[
9.59422610844635,
47.52505809182027
],
[
9.89606814946319,
47.580196845075704
],
[
10.402083774465211,
47.30248769793916
],
[
10.544504021861627,
47.56639923765377
],
[
11.426414015354737,
47.523766181012974
],
[
12.141357456112788,
47.703083401065776
],
[
12.620759718484493,
47.67238760028441
],
[
12.932626987365948,
47.467645575544
],
[
13.02585127122049,
47.63758352313583
],
[
12.884102817443903,
48.28914581968792
],
[
13.243357374737,
48.416114813829054
],
[
13.595945672264437,
48.87717194273715
],
[
14.338897739324722,
48.55530528420721
],
[
14.901447381254057,
48.964401760445824
],
[
15.253415561593982,
49.03907420510758
],
[
16.02964725105022,
48.73389903420793
],
[
16.499282667718774,
48.78580801044511
],
[
16.960288120194576,
48.5969823268506
],
[
16.879982944413,
48.47001333270947
],
[
16.979666782304037,
48.123497015976305
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Azerbaijan",
"sov_a3": "AZE",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Azerbaijan",
"adm0_a3": "AZE",
"geou_dif": 0,
"geounit": "Azerbaijan",
"gu_a3": "AZE",
"su_dif": 0,
"subunit": "Azerbaijan",
"su_a3": "AZE",
"brk_diff": 0,
"name": "Azerbaijan",
"name_long": "Azerbaijan",
"brk_a3": "AZE",
"brk_name": "Azerbaijan",
"brk_group": "",
"abbrev": "Aze.",
"postal": "AZ",
"formal_en": "Republic of Azerbaijan",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Azerbaijan",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 6,
"mapcolor9": 5,
"mapcolor13": 8,
"pop_est": 8238672,
"gdp_md_est": 77610,
"pop_year": -99,
"lastcensus": 2009,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "AZ",
"iso_a3": "AZE",
"iso_n3": "031",
"un_a3": "031",
"wb_a2": "AZ",
"wb_a3": "AZE",
"woe_id": -99,
"adm0_a3_is": "AZE",
"adm0_a3_us": "AZE",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Western Asia",
"region_wb": "Europe & Central Asia",
"name_len": 10,
"long_len": 10,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
46.14362308124882,
38.74120148371222
],
[
45.457721795438744,
38.874139105783115
],
[
44.95268802265028,
39.33576467544643
],
[
44.793989699082005,
39.713002631177034
],
[
45.0019873390568,
39.7400035670496
],
[
45.29814497252144,
39.471751207022436
],
[
45.73997846861701,
39.473999131827156
],
[
45.7353792661431,
39.3197191432198
],
[
46.14362308124882,
38.74120148371222
]
]
],
[
[
[
46.48349897643246,
39.464154771475535
],
[
46.034534132680704,
39.62802073827305
],
[
45.61001224140293,
39.89999380142518
],
[
45.89190717955515,
40.218475653639985
],
[
45.35917483905817,
40.56150381119349
],
[
45.560351189970476,
40.812289537105954
],
[
45.1794958839794,
40.98535390885144
],
[
44.97248009621816,
41.24812856705563
],
[
45.21742638528164,
41.41145193131405
],
[
45.962600538930445,
41.1238725856098
],
[
46.501637404166985,
41.06444468847411
],
[
46.637908156120574,
41.181672675128226
],
[
46.145431756379,
41.72280243587264
],
[
46.404950799348825,
41.86067515722735
],
[
46.68607059101666,
41.827137152669906
],
[
47.37331546406622,
41.219732367511256
],
[
47.81566572448472,
41.15141612402135
],
[
47.98728315612604,
41.40581920019423
],
[
48.58435265482629,
41.808869533854676
],
[
49.11026370626067,
41.282286688800525
],
[
49.6189148293096,
40.57292430272997
],
[
50.0848295428531,
40.526157131505784
],
[
50.39282107931271,
40.256561184239104
],
[
49.5692021014448,
40.17610097916071
],
[
49.39525923035043,
39.39948171646225
],
[
49.223228387250714,
39.04921885838792
],
[
48.85653242370759,
38.81548635513178
],
[
48.88324913920255,
38.320245266262646
],
[
48.634375441284845,
38.27037750910094
],
[
48.010744256386516,
38.794014797514535
],
[
48.355529412637935,
39.28876496027689
],
[
48.06009524922527,
39.582235419262446
],
[
47.685079380083124,
39.50836395930119
],
[
46.50571984231797,
38.770605373686266
],
[
46.48349897643246,
39.464154771475535
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Burundi",
"sov_a3": "BDI",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Burundi",
"adm0_a3": "BDI",
"geou_dif": 0,
"geounit": "Burundi",
"gu_a3": "BDI",
"su_dif": 0,
"subunit": "Burundi",
"su_a3": "BDI",
"brk_diff": 0,
"name": "Burundi",
"name_long": "Burundi",
"brk_a3": "BDI",
"brk_name": "Burundi",
"brk_group": "",
"abbrev": "Bur.",
"postal": "BI",
"formal_en": "Republic of Burundi",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Burundi",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 2,
"mapcolor9": 5,
"mapcolor13": 8,
"pop_est": 8988091,
"gdp_md_est": 3102,
"pop_year": -99,
"lastcensus": 2008,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BI",
"iso_a3": "BDI",
"iso_n3": "108",
"un_a3": "108",
"wb_a2": "BI",
"wb_a3": "BDI",
"woe_id": -99,
"adm0_a3_is": "BDI",
"adm0_a3_us": "BDI",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Eastern Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.339997592900346,
-4.4999834122940925
],
[
29.276383904749053,
-3.293907159034063
],
[
29.024926385216787,
-2.8392579077301576
],
[
29.632176141078588,
-2.917857761246097
],
[
29.93835900240794,
-2.348486830254238
],
[
30.46969607923299,
-2.413857517103459
],
[
30.527677036264464,
-2.807631931167535
],
[
30.7430127296247,
-3.034284763199686
],
[
30.752262811004954,
-3.3593295223155697
],
[
30.505559523243566,
-3.5685673966653653
],
[
30.11633263522117,
-4.090137627787243
],
[
29.753512404099922,
-4.452389418153281
],
[
29.339997592900346,
-4.4999834122940925
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Belgium",
"sov_a3": "BEL",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Belgium",
"adm0_a3": "BEL",
"geou_dif": 0,
"geounit": "Belgium",
"gu_a3": "BEL",
"su_dif": 0,
"subunit": "Belgium",
"su_a3": "BEL",
"brk_diff": 0,
"name": "Belgium",
"name_long": "Belgium",
"brk_a3": "BEL",
"brk_name": "Belgium",
"brk_group": "",
"abbrev": "Belg.",
"postal": "B",
"formal_en": "Kingdom of Belgium",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Belgium",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 2,
"mapcolor9": 1,
"mapcolor13": 8,
"pop_est": 10414336,
"gdp_md_est": 389300,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BE",
"iso_a3": "BEL",
"iso_n3": "056",
"un_a3": "056",
"wb_a2": "BE",
"wb_a3": "BEL",
"woe_id": -99,
"adm0_a3_is": "BEL",
"adm0_a3_us": "BEL",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Western Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.047071160507528,
51.26725861266857
],
[
4.973991326526914,
51.47502370869813
],
[
5.606975945670001,
51.03729848896978
],
[
6.15665815595878,
50.80372101501058
],
[
6.043073357781111,
50.128051662794235
],
[
5.782417433300907,
50.09032786722122
],
[
5.674051954784829,
49.529483547557504
],
[
4.79922163251581,
49.985373033236385
],
[
4.2860229834250845,
49.907496649772554
],
[
3.5881844417556863,
50.37899241800358
],
[
3.1232515804258014,
50.780363267614575
],
[
2.658422071960274,
50.796848049515745
],
[
2.5135730322461427,
51.14850617126183
],
[
3.3149711442285366,
51.345780951536085
],
[
4.047071160507528,
51.26725861266857
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Benin",
"sov_a3": "BEN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Benin",
"adm0_a3": "BEN",
"geou_dif": 0,
"geounit": "Benin",
"gu_a3": "BEN",
"su_dif": 0,
"subunit": "Benin",
"su_a3": "BEN",
"brk_diff": 0,
"name": "Benin",
"name_long": "Benin",
"brk_a3": "BEN",
"brk_name": "Benin",
"brk_group": "",
"abbrev": "Benin",
"postal": "BJ",
"formal_en": "Republic of Benin",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Benin",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 2,
"mapcolor9": 2,
"mapcolor13": 12,
"pop_est": 8791832,
"gdp_md_est": 12830,
"pop_year": -99,
"lastcensus": 2002,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BJ",
"iso_a3": "BEN",
"iso_n3": "204",
"un_a3": "204",
"wb_a2": "BJ",
"wb_a3": "BEN",
"woe_id": -99,
"adm0_a3_is": "BEN",
"adm0_a3_us": "BEN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Western Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
2.6917016943562544,
6.258817246928629
],
[
1.8652405127123188,
6.142157701029731
],
[
1.618950636409238,
6.832038072126238
],
[
1.664477573258381,
9.12859039960938
],
[
1.46304284018467,
9.334624335157088
],
[
1.425060662450136,
9.825395412633
],
[
1.0777950374487375,
10.175606594275024
],
[
0.7723356461714843,
10.470808213742359
],
[
0.8995630224740694,
10.99733938236426
],
[
1.2434696793764886,
11.110510769083461
],
[
1.4471781754710662,
11.547719224488858
],
[
1.9359855485198807,
11.641150214072553
],
[
2.1544735042499212,
11.940150051313339
],
[
2.49016360841793,
12.233052069543675
],
[
2.848643019226671,
12.235635891158267
],
[
3.611180454125559,
11.660167141155968
],
[
3.572216424177469,
11.32793935795152
],
[
3.7971122575117136,
10.734745591673105
],
[
3.600070021182802,
10.332186184119408
],
[
3.7054382666259187,
10.063210354040208
],
[
3.2203515967021015,
9.444152533399702
],
[
2.912308383810256,
9.137607937044322
],
[
2.723792758809509,
8.50684540448971
],
[
2.7490625342002204,
7.870734361192888
],
[
2.6917016943562544,
6.258817246928629
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Burkina Faso",
"sov_a3": "BFA",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Burkina Faso",
"adm0_a3": "BFA",
"geou_dif": 0,
"geounit": "Burkina Faso",
"gu_a3": "BFA",
"su_dif": 0,
"subunit": "Burkina Faso",
"su_a3": "BFA",
"brk_diff": 0,
"name": "Burkina Faso",
"name_long": "Burkina Faso",
"brk_a3": "BFA",
"brk_name": "Burkina Faso",
"brk_group": "",
"abbrev": "B.F.",
"postal": "BF",
"formal_en": "Burkina Faso",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Burkina Faso",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 1,
"mapcolor9": 5,
"mapcolor13": 11,
"pop_est": 15746232,
"gdp_md_est": 17820,
"pop_year": -99,
"lastcensus": 2006,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BF",
"iso_a3": "BFA",
"iso_n3": "854",
"un_a3": "854",
"wb_a2": "BF",
"wb_a3": "BFA",
"woe_id": -99,
"adm0_a3_is": "BFA",
"adm0_a3_us": "BFA",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Western Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 12,
"long_len": 12,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-2.8274963037127065,
9.642460842319778
],
[
-3.511898972986273,
9.90032623945622
],
[
-3.9804491845766847,
9.8623440617217
],
[
-4.3302469547603835,
9.610834865757141
],
[
-4.7798835921319665,
9.821984768101743
],
[
-4.954653286143099,
10.152713934769736
],
[
-5.404341599946974,
10.370736802609146
],
[
-5.470564947929006,
10.951269842976048
],
[
-5.1978425765086484,
11.37514577885014
],
[
-5.220941941743121,
11.713858954307227
],
[
-4.427166103523803,
12.542645575404295
],
[
-4.28040503581488,
13.228443508349741
],
[
-4.006390753587226,
13.472485459848116
],
[
-3.522802700199861,
13.337661647998615
],
[
-3.1037068343127596,
13.541266791228594
],
[
-2.9676944645205765,
13.79815033615151
],
[
-2.1918245100903846,
14.246417548067356
],
[
-2.001035122068771,
14.559008287000893
],
[
-1.0663634912056636,
14.973815009007765
],
[
-0.5158544580003479,
15.116157741755728
],
[
-0.2662572900305804,
14.924308986872148
],
[
0.3748922054146817,
14.92890818934613
],
[
0.29564639649510127,
14.444234930880654
],
[
0.429927605805517,
13.988733018443924
],
[
0.9930456884900708,
13.335749620003824
],
[
1.0241032242974768,
12.851825669806574
],
[
2.177107781593776,
12.625017808477535
],
[
2.1544735042499212,
11.940150051313339
],
[
1.9359855485198807,
11.641150214072553
],
[
1.4471781754710662,
11.547719224488858
],
[
1.2434696793764886,
11.110510769083461
],
[
0.8995630224740694,
10.99733938236426
],
[
0.023802524423700785,
11.018681748900804
],
[
-0.43870154458858224,
11.098340969278722
],
[
-0.7615758935481834,
10.936929633015055
],
[
-1.2033577132114317,
11.009819240762738
],
[
-2.9404093082704605,
10.962690334512558
],
[
-2.9638962467471117,
10.395334784380083
],
[
-2.8274963037127065,
9.642460842319778
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Bangladesh",
"sov_a3": "BGD",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Bangladesh",
"adm0_a3": "BGD",
"geou_dif": 0,
"geounit": "Bangladesh",
"gu_a3": "BGD",
"su_dif": 0,
"subunit": "Bangladesh",
"su_a3": "BGD",
"brk_diff": 0,
"name": "Bangladesh",
"name_long": "Bangladesh",
"brk_a3": "BGD",
"brk_name": "Bangladesh",
"brk_group": "",
"abbrev": "Bang.",
"postal": "BD",
"formal_en": "People's Republic of Bangladesh",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Bangladesh",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 4,
"mapcolor9": 7,
"mapcolor13": 7,
"pop_est": 156050883,
"gdp_md_est": 224000,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BD",
"iso_a3": "BGD",
"iso_n3": "050",
"un_a3": "050",
"wb_a2": "BD",
"wb_a3": "BGD",
"woe_id": -99,
"adm0_a3_is": "BGD",
"adm0_a3_us": "BGD",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Southern Asia",
"region_wb": "South Asia",
"name_len": 10,
"long_len": 10,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
92.67272098182556,
22.041238918541254
],
[
92.65225711463799,
21.324047552978485
],
[
92.30323449093868,
21.47548533780982
],
[
92.36855350135562,
20.670883287025347
],
[
92.08288618364614,
21.19219513598577
],
[
92.02521528520839,
21.701569729086767
],
[
91.83489098507744,
22.182935695885565
],
[
91.41708702999766,
22.76501902922122
],
[
90.49600630082728,
22.80501658781513
],
[
90.58695682166098,
22.392793687422866
],
[
90.27297081905556,
21.83636770272011
],
[
89.84746707556428,
22.039146023033425
],
[
89.70204959509493,
21.857115790285306
],
[
89.41886274613549,
21.9661789006373
],
[
89.03196129756623,
22.055708319582976
],
[
88.87631188350309,
22.87914642993783
],
[
88.52976972855379,
23.631141872649167
],
[
88.69994022009092,
24.23371491138856
],
[
88.08442223506242,
24.501657212821925
],
[
88.30637251175602,
24.866079413344206
],
[
88.93155398962308,
25.238692328384776
],
[
88.2097892598025,
25.768065700782714
],
[
88.56304935094977,
26.446525580342723
],
[
89.35509402868729,
26.014407253518073
],
[
89.83248091019962,
25.96508209889548
],
[
89.92069258012185,
25.26974986419218
],
[
90.87221072791212,
25.132600612889547
],
[
91.79959598182208,
25.147431748957317
],
[
92.37620161333481,
24.976692816664965
],
[
91.91509280799443,
24.130413723237112
],
[
91.46772993364368,
24.072639471934792
],
[
91.15896325069973,
23.50352692310439
],
[
91.70647505083211,
22.985263983649187
],
[
91.86992760617132,
23.624346421802784
],
[
92.14603478390681,
23.627498684172593
],
[
92.67272098182556,
22.041238918541254
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Bulgaria",
"sov_a3": "BGR",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Bulgaria",
"adm0_a3": "BGR",
"geou_dif": 0,
"geounit": "Bulgaria",
"gu_a3": "BGR",
"su_dif": 0,
"subunit": "Bulgaria",
"su_a3": "BGR",
"brk_diff": 0,
"name": "Bulgaria",
"name_long": "Bulgaria",
"brk_a3": "BGR",
"brk_name": "Bulgaria",
"brk_group": "",
"abbrev": "Bulg.",
"postal": "BG",
"formal_en": "Republic of Bulgaria",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Bulgaria",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 5,
"mapcolor9": 1,
"mapcolor13": 8,
"pop_est": 7204687,
"gdp_md_est": 93750,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BG",
"iso_a3": "BGR",
"iso_n3": "100",
"un_a3": "100",
"wb_a2": "BG",
"wb_a3": "BGR",
"woe_id": -99,
"adm0_a3_is": "BGR",
"adm0_a3_us": "BGR",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Eastern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 8,
"long_len": 8,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
22.65714969248299,
44.23492300066128
],
[
22.944832391051847,
43.82378530534713
],
[
23.332302280376325,
43.897010809904714
],
[
24.100679152124172,
43.74105133724785
],
[
25.569271681426926,
43.68844472917472
],
[
26.065158725699746,
43.94349376075127
],
[
27.242399529740908,
44.175986029632405
],
[
27.970107049275075,
43.81246816667522
],
[
28.558081495891997,
43.70746165625813
],
[
28.03909508638472,
43.293171698574184
],
[
27.67389773937805,
42.57789236100622
],
[
27.99672041190539,
42.00735871028779
],
[
27.13573937349048,
42.14148489030134
],
[
26.1170418637208,
41.82690460872456
],
[
26.106138136507212,
41.32889883072778
],
[
25.197201368925448,
41.23448598893053
],
[
24.492644891058035,
41.583896185872035
],
[
23.692073601992348,
41.309080918943856
],
[
22.952377150166452,
41.33799388281115
],
[
22.88137373219743,
41.99929718685026
],
[
22.380525750424592,
42.32025950781509
],
[
22.54501183440962,
42.46136200618804
],
[
22.43659467946128,
42.580321153323936
],
[
22.60480146657133,
42.898518785161144
],
[
22.986018507588483,
43.211161200526966
],
[
22.50015669118028,
43.64281443946099
],
[
22.410446404721597,
44.008063462899955
],
[
22.65714969248299,
44.23492300066128
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "The Bahamas",
"sov_a3": "BHS",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "The Bahamas",
"adm0_a3": "BHS",
"geou_dif": 0,
"geounit": "The Bahamas",
"gu_a3": "BHS",
"su_dif": 0,
"subunit": "The Bahamas",
"su_a3": "BHS",
"brk_diff": 0,
"name": "Bahamas",
"name_long": "Bahamas",
"brk_a3": "BHS",
"brk_name": "Bahamas",
"brk_group": "",
"abbrev": "Bhs.",
"postal": "BS",
"formal_en": "Commonwealth of the Bahamas",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Bahamas, The",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 1,
"mapcolor9": 2,
"mapcolor13": 5,
"pop_est": 309156,
"gdp_md_est": 9093,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BS",
"iso_a3": "BHS",
"iso_n3": "044",
"un_a3": "044",
"wb_a2": "BS",
"wb_a3": "BHS",
"woe_id": -99,
"adm0_a3_is": "BHS",
"adm0_a3_us": "BHS",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Caribbean",
"region_wb": "Latin America & Caribbean",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-77.53465999999997,
23.75974999999997
],
[
-77.78,
23.70999999999998
],
[
-78.03405000000004,
24.28615000000002
],
[
-78.40847999999997,
24.57564000000002
],
[
-78.19086999999999,
25.21029999999999
],
[
-77.89000000000001,
25.16999999999996
],
[
-77.53999999999994,
24.340000000000032
],
[
-77.53465999999997,
23.75974999999997
]
]
],
[
[
[
-77.82,
26.58000000000004
],
[
-78.90999999999994,
26.419999999999987
],
[
-78.97999999999996,
26.789999999999992
],
[
-78.50999999999999,
26.870000000000005
],
[
-77.85000000000002,
26.839999999999975
],
[
-77.82,
26.58000000000004
]
]
],
[
[
[
-76.99999999999994,
26.590000000000032
],
[
-77.17254999999997,
25.87917999999999
],
[
-77.35640999999998,
26.007349999999974
],
[
-77.33999999999997,
26.53
],
[
-77.78801999999993,
26.925160000000062
],
[
-77.78999999999999,
27.04000000000005
],
[
-76.99999999999994,
26.590000000000032
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Bosnia and Herzegovina",
"sov_a3": "BIH",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Bosnia and Herzegovina",
"adm0_a3": "BIH",
"geou_dif": 0,
"geounit": "Bosnia and Herzegovina",
"gu_a3": "BIH",
"su_dif": 0,
"subunit": "Bosnia and Herzegovina",
"su_a3": "BIH",
"brk_diff": 0,
"name": "Bosnia and Herz.",
"name_long": "Bosnia and Herzegovina",
"brk_a3": "BIH",
"brk_name": "Bosnia and Herz.",
"brk_group": "",
"abbrev": "B.H.",
"postal": "BiH",
"formal_en": "Bosnia and Herzegovina",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Bosnia and Herzegovina",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 1,
"mapcolor9": 1,
"mapcolor13": 2,
"pop_est": 4613414,
"gdp_md_est": 29700,
"pop_year": -99,
"lastcensus": 1991,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BA",
"iso_a3": "BIH",
"iso_n3": "070",
"un_a3": "070",
"wb_a2": "BA",
"wb_a3": "BIH",
"woe_id": -99,
"adm0_a3_is": "BIH",
"adm0_a3_us": "BIH",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Southern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 16,
"long_len": 22,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
19.00548628101012,
44.86023366960916
],
[
19.36802999999992,
44.863000000000056
],
[
19.11761000000007,
44.42307000000011
],
[
19.59976000000006,
44.03846999999996
],
[
19.454000000000065,
43.56810000000013
],
[
19.218519999999955,
43.52384000000001
],
[
19.03165000000007,
43.432529999999986
],
[
18.706480000000056,
43.200109999999995
],
[
18.559999999999945,
42.64999999999998
],
[
17.674921502358984,
43.02856252702361
],
[
17.297373488034452,
43.44634064388737
],
[
16.91615644701733,
43.66772247982567
],
[
16.456442905348865,
44.04123973243128
],
[
16.23966027188453,
44.35114329688571
],
[
15.750026075918981,
44.818711656262565
],
[
15.959367303133376,
45.23377676043094
],
[
16.318156772535872,
45.00412669532591
],
[
16.534939406000206,
45.21160757097772
],
[
17.002146030351014,
45.23377676043094
],
[
17.861783481526402,
45.067740383477144
],
[
18.553214145591653,
45.08158966733146
],
[
19.00548628101012,
44.86023366960916
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Belarus",
"sov_a3": "BLR",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Belarus",
"adm0_a3": "BLR",
"geou_dif": 0,
"geounit": "Belarus",
"gu_a3": "BLR",
"su_dif": 0,
"subunit": "Belarus",
"su_a3": "BLR",
"brk_diff": 0,
"name": "Belarus",
"name_long": "Belarus",
"brk_a3": "BLR",
"brk_name": "Belarus",
"brk_group": "",
"abbrev": "Bela.",
"postal": "BY",
"formal_en": "Republic of Belarus",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Belarus",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 1,
"mapcolor9": 5,
"mapcolor13": 11,
"pop_est": 9648533,
"gdp_md_est": 114100,
"pop_year": -99,
"lastcensus": 2009,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BY",
"iso_a3": "BLR",
"iso_n3": "112",
"un_a3": "112",
"wb_a2": "BY",
"wb_a3": "BLR",
"woe_id": -99,
"adm0_a3_is": "BLR",
"adm0_a3_us": "BLR",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Eastern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.48412763844985,
53.91249766704114
],
[
24.450683628037037,
53.905702216194754
],
[
25.536353794056993,
54.28242340760253
],
[
25.7684326514798,
54.84696259217509
],
[
26.58827924979039,
55.16717560487167
],
[
26.494331495883756,
55.615106919977634
],
[
27.10245975109453,
55.783313707087686
],
[
28.176709425577997,
56.169129950578814
],
[
29.229513380660308,
55.91834422466636
],
[
29.371571893030673,
55.670090643936184
],
[
29.896294386522356,
55.78946320253041
],
[
30.87390913262001,
55.55097646750341
],
[
30.971835971813135,
55.08154775656404
],
[
30.75753380709872,
54.81177094178432
],
[
31.38447228366374,
54.157056382862436
],
[
31.79142418796224,
53.974638576872124
],
[
31.731272820774507,
53.79402944601202
],
[
32.405598585751164,
53.61804535584204
],
[
32.69364301934604,
53.35142080343212
],
[
32.30451948418823,
53.13272614197291
],
[
31.49764367038293,
53.1674268662569
],
[
31.305200636528014,
53.07399587667321
],
[
31.54001834486226,
52.74205231384636
],
[
31.785998162571587,
52.101677964885454
],
[
30.927549269338982,
52.04235342061439
],
[
30.619454380014844,
51.822806098022376
],
[
30.555117221811457,
51.31950348571566
],
[
30.157363722460897,
51.41613841410147
],
[
29.254938185347925,
51.368234361366895
],
[
28.992835320763533,
51.602044379271476
],
[
28.61761274589225,
51.42771393493484
],
[
28.24161502453657,
51.57222707783907
],
[
27.454066196408434,
51.59230337178447
],
[
26.337958611768556,
51.83228872334793
],
[
25.32778771332701,
51.91065603291855
],
[
24.553106316839518,
51.888461005249184
],
[
24.00507775238421,
51.61744395609446
],
[
23.527070753684374,
51.57845408793024
],
[
23.508002150168693,
52.02364655212473
],
[
23.199493849386187,
52.48697744405367
],
[
23.79919884613338,
52.69109935160657
],
[
23.80493493011778,
53.089731350306074
],
[
23.527535841575002,
53.470121568406555
],
[
23.48412763844985,
53.91249766704114
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Belize",
"sov_a3": "BLZ",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Belize",
"adm0_a3": "BLZ",
"geou_dif": 0,
"geounit": "Belize",
"gu_a3": "BLZ",
"su_dif": 0,
"subunit": "Belize",
"su_a3": "BLZ",
"brk_diff": 0,
"name": "Belize",
"name_long": "Belize",
"brk_a3": "BLZ",
"brk_name": "Belize",
"brk_group": "",
"abbrev": "Belize",
"postal": "BZ",
"formal_en": "Belize",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Belize",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 4,
"mapcolor9": 5,
"mapcolor13": 7,
"pop_est": 307899,
"gdp_md_est": 2536,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BZ",
"iso_a3": "BLZ",
"iso_n3": "084",
"un_a3": "084",
"wb_a2": "BZ",
"wb_a3": "BLZ",
"woe_id": -99,
"adm0_a3_is": "BLZ",
"adm0_a3_us": "BLZ",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Central America",
"region_wb": "Latin America & Caribbean",
"name_len": 6,
"long_len": 6,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-89.14308041050332,
17.80831899664932
],
[
-89.15090938999553,
17.95546763760042
],
[
-89.02985734735182,
18.001511338772488
],
[
-88.84834387892661,
17.883198147040233
],
[
-88.49012285027935,
18.486830552641607
],
[
-88.3000310940937,
18.4999822046599
],
[
-88.29633622918482,
18.35327281338327
],
[
-88.10681291375438,
18.348673610909287
],
[
-88.1234785631685,
18.07667470954101
],
[
-88.2853549873228,
17.644142971258034
],
[
-88.19786678745265,
17.489475409408456
],
[
-88.30264075392444,
17.131693630435663
],
[
-88.23951799187991,
17.036066392479555
],
[
-88.35542822951057,
16.530774237529627
],
[
-88.55182451043585,
16.265467434143147
],
[
-88.73243364129594,
16.233634751851355
],
[
-88.93061275913527,
15.887273464415076
],
[
-89.22912167026928,
15.886937567605171
],
[
-89.15080603713095,
17.015576687075836
],
[
-89.14308041050332,
17.80831899664932
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Bolivia",
"sov_a3": "BOL",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Bolivia",
"adm0_a3": "BOL",
"geou_dif": 0,
"geounit": "Bolivia",
"gu_a3": "BOL",
"su_dif": 0,
"subunit": "Bolivia",
"su_a3": "BOL",
"brk_diff": 0,
"name": "Bolivia",
"name_long": "Bolivia",
"brk_a3": "BOL",
"brk_name": "Bolivia",
"brk_group": "",
"abbrev": "Bolivia",
"postal": "BO",
"formal_en": "Plurinational State of Bolivia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Bolivia",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 5,
"mapcolor9": 2,
"mapcolor13": 3,
"pop_est": 9775246,
"gdp_md_est": 43270,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "5. Emerging region: G20",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BO",
"iso_a3": "BOL",
"iso_n3": "068",
"un_a3": "068",
"wb_a2": "BO",
"wb_a3": "BOL",
"woe_id": -99,
"adm0_a3_is": "BOL",
"adm0_a3_us": "BOL",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 7,
"long_len": 7,
"abbrev_len": 7,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-69.59042375352405,
-17.580011895419332
],
[
-68.9596353827533,
-16.50069793057127
],
[
-69.38976416693471,
-15.660129082911652
],
[
-69.16034664577495,
-15.323973890853019
],
[
-69.33953467474701,
-14.953195489158832
],
[
-68.9488866848366,
-14.453639418193283
],
[
-68.92922380234954,
-13.602683607643009
],
[
-68.88007951523997,
-12.899729099176653
],
[
-68.66507971868963,
-12.561300144097173
],
[
-69.52967810736496,
-10.951734307502194
],
[
-68.78615759954948,
-11.03638030359628
],
[
-68.27125362819326,
-11.01452117273682
],
[
-68.04819230820539,
-10.712059014532485
],
[
-67.17380123561074,
-10.306812432499612
],
[
-66.6469083319628,
-9.931331475466862
],
[
-65.33843522811642,
-9.761987806846392
],
[
-65.44483700220539,
-10.511451104375432
],
[
-65.32189876978302,
-10.895872084194679
],
[
-65.40228146021303,
-11.566270440317155
],
[
-64.3163529120316,
-12.461978041232193
],
[
-63.19649878605057,
-12.627032565972435
],
[
-62.803060268796386,
-13.000653171442686
],
[
-62.127080857986385,
-13.198780612849724
],
[
-61.71320431176078,
-13.489202162330052
],
[
-61.08412126325565,
-13.479383640194598
],
[
-60.503304002511136,
-13.775954685117659
],
[
-60.45919816755003,
-14.354007256734555
],
[
-60.26432634137737,
-14.645979099183641
],
[
-60.251148851142936,
-15.07721892665932
],
[
-60.54296566429515,
-15.093910414289596
],
[
-60.158389655179036,
-16.258283786690086
],
[
-58.24121985536668,
-16.299573256091293
],
[
-58.38805843772404,
-16.877109063385276
],
[
-58.28080400250225,
-17.271710300366017
],
[
-57.734558274961,
-17.55246835700777
],
[
-57.49837114117099,
-18.174187513911292
],
[
-57.67600887717431,
-18.96183969490403
],
[
-57.949997321185826,
-19.40000416430682
],
[
-57.85380164247451,
-19.96999521248619
],
[
-58.166392381408045,
-20.176700941653678
],
[
-58.183471442280506,
-19.868399346600363
],
[
-59.11504248720611,
-19.3569060197754
],
[
-60.04356462262649,
-19.342746677327426
],
[
-61.78632646345377,
-19.633736667562964
],
[
-62.2659612697708,
-20.513734633061276
],
[
-62.291179368729225,
-21.051634616787393
],
[
-62.685057135657885,
-22.249029229422387
],
[
-62.84646847192156,
-22.03498544686945
],
[
-63.986838141522476,
-21.99364430103595
],
[
-64.37702104354226,
-22.79809132252354
],
[
-64.96489213729461,
-22.075861504812327
],
[
-66.27333940292485,
-21.83231047942072
],
[
-67.1066735500636,
-22.735924574476417
],
[
-67.82817989772273,
-22.872918796482175
],
[
-68.21991309271128,
-21.494346612231865
],
[
-68.75716712103375,
-20.372657972904463
],
[
-68.44222510443092,
-19.40506845467143
],
[
-68.96681840684187,
-18.981683444904107
],
[
-69.10024695501949,
-18.260125420812678
],
[
-69.59042375352405,
-17.580011895419332
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Brazil",
"sov_a3": "BRA",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Brazil",
"adm0_a3": "BRA",
"geou_dif": 0,
"geounit": "Brazil",
"gu_a3": "BRA",
"su_dif": 0,
"subunit": "Brazil",
"su_a3": "BRA",
"brk_diff": 0,
"name": "Brazil",
"name_long": "Brazil",
"brk_a3": "BRA",
"brk_name": "Brazil",
"brk_group": "",
"abbrev": "Brazil",
"postal": "BR",
"formal_en": "Federative Republic of Brazil",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Brazil",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 6,
"mapcolor9": 5,
"mapcolor13": 7,
"pop_est": 198739269,
"gdp_md_est": 1993000,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "3. Emerging region: BRIC",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BR",
"iso_a3": "BRA",
"iso_n3": "076",
"un_a3": "076",
"wb_a2": "BR",
"wb_a3": "BRA",
"woe_id": -99,
"adm0_a3_is": "BRA",
"adm0_a3_us": "BRA",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 6,
"long_len": 6,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-57.62513342958296,
-30.21629485445426
],
[
-56.29089962423908,
-28.852760512000895
],
[
-55.16228634298457,
-27.881915378533463
],
[
-54.490725267135524,
-27.47475676850579
],
[
-53.64873531758789,
-26.92347258881609
],
[
-53.628348965048744,
-26.124865004177472
],
[
-54.13004960795439,
-25.547639255477254
],
[
-54.625290696823576,
-25.739255466415514
],
[
-54.42894609233059,
-25.162184747012166
],
[
-54.29347632507745,
-24.570799655863965
],
[
-54.29295956075452,
-24.02101409271073
],
[
-54.65283423523513,
-23.83957813893396
],
[
-55.02790178080955,
-24.00127369557523
],
[
-55.40074723979542,
-23.956935316668805
],
[
-55.517639329639636,
-23.571997572526637
],
[
-55.610682745981144,
-22.655619398694846
],
[
-55.79795813660691,
-22.356929620047822
],
[
-56.47331743022939,
-22.086300144135283
],
[
-56.8815095689029,
-22.28215382252148
],
[
-57.937155727761294,
-22.090175876557172
],
[
-57.8706739976178,
-20.73268767668195
],
[
-58.166392381408045,
-20.176700941653678
],
[
-57.85380164247451,
-19.96999521248619
],
[
-57.949997321185826,
-19.40000416430682
],
[
-57.67600887717431,
-18.96183969490403
],
[
-57.49837114117099,
-18.174187513911292
],
[
-57.734558274961,
-17.55246835700777
],
[
-58.28080400250225,
-17.271710300366017
],
[
-58.38805843772404,
-16.877109063385276
],
[
-58.24121985536668,
-16.299573256091293
],
[
-60.158389655179036,
-16.258283786690086
],
[
-60.54296566429515,
-15.093910414289596
],
[
-60.251148851142936,
-15.07721892665932
],
[
-60.26432634137737,
-14.645979099183641
],
[
-60.45919816755003,
-14.354007256734555
],
[
-60.503304002511136,
-13.775954685117659
],
[
-61.08412126325565,
-13.479383640194598
],
[
-61.71320431176078,
-13.489202162330052
],
[
-62.127080857986385,
-13.198780612849724
],
[
-62.803060268796386,
-13.000653171442686
],
[
-63.19649878605057,
-12.627032565972435
],
[
-64.3163529120316,
-12.461978041232193
],
[
-65.40228146021303,
-11.566270440317155
],
[
-65.32189876978302,
-10.895872084194679
],
[
-65.44483700220539,
-10.511451104375432
],
[
-65.33843522811642,
-9.761987806846392
],
[
-66.6469083319628,
-9.931331475466862
],
[
-67.17380123561074,
-10.306812432499612
],
[
-68.04819230820539,
-10.712059014532485
],
[
-68.27125362819326,
-11.01452117273682
],
[
-68.78615759954948,
-11.03638030359628
],
[
-69.52967810736496,
-10.951734307502194
],
[
-70.0937522040469,
-11.123971856331012
],
[
-70.54868567572841,
-11.009146823778465
],
[
-70.48189388699117,
-9.490118096558845
],
[
-71.30241227892154,
-10.079436130415374
],
[
-72.18489071316985,
-10.053597914269432
],
[
-72.56303300646564,
-9.520193780152717
],
[
-73.22671342639016,
-9.462212823121234
],
[
-73.01538265653255,
-9.032833347208062
],
[
-73.57105933296707,
-8.424446709835834
],
[
-73.98723548042966,
-7.523829847853065
],
[
-73.7234014553635,
-7.340998630404414
],
[
-73.72448666044164,
-6.91859547285064
],
[
-73.1200274319236,
-6.629930922068239
],
[
-73.21971126981461,
-6.089188734566078
],
[
-72.9645072089412,
-5.7412513159448935
],
[
-72.89192765978726,
-5.274561455916981
],
[
-71.74840572781655,
-4.593982842633011
],
[
-70.92884334988358,
-4.401591485210368
],
[
-70.7947688463023,
-4.251264743673303
],
[
-69.89363521999663,
-4.2981869441943275
],
[
-69.44410193548961,
-1.5562871232198177
],
[
-69.42048580593223,
-1.1226185034264091
],
[
-69.5770653957766,
-0.549991957200163
],
[
-70.02065589057005,
-0.18515634521953928
],
[
-70.01556576198931,
0.5414142928042054
],
[
-69.45239600287246,
0.7061587589506929
],
[
-69.25243404811906,
0.6026508650700748
],
[
-69.21863766140018,
0.9856765812174331
],
[
-69.80459672715773,
1.0890811222334662
],
[
-69.81697323269162,
1.7148052026396243
],
[
-67.86856502955884,
1.6924551456733923
],
[
-67.5378100246747,
2.03716278727633
],
[
-67.2599975246736,
1.7199986840849562
],
[
-67.0650481838525,
1.130112209473225
],
[
-66.87632585312258,
1.253360500489336
],
[
-66.32576514348496,
0.7244522159820121
],
[
-65.54826738143757,
0.7892544620760303
],
[
-65.35471330428837,
1.0952822941085003
],
[
-64.61101192895987,
1.3287305769870417
],
[
-64.19930579289051,
1.49285492594602
],
[
-64.08308549666609,
1.9163691267940803
],
[
-63.368788011311665,
2.200899562993129
],
[
-63.42286739770512,
2.4110676131241746
],
[
-64.2699991522658,
2.497005520025567
],
[
-64.40882788761792,
3.126786200366624
],
[
-64.3684944322141,
3.797210394705246
],
[
-64.81606401229402,
4.056445217297423
],
[
-64.62865943058755,
4.14848094320925
],
[
-63.88834286157416,
4.020530096854571
],
[
-63.093197597899106,
3.7705711938587854
],
[
-62.804533047116706,
4.006965033377952
],
[
-62.08542965355913,
4.162123521334308
],
[
-60.96689327660154,
4.536467596856639
],
[
-60.601179165271944,
4.91809804933213
],
[
-60.73357418480372,
5.200277207861901
],
[
-60.21368343773133,
5.244486395687602
],
[
-59.980958624904886,
5.014061184098139
],
[
-60.11100236676738,
4.574966538914083
],
[
-59.767405768458715,
4.423502915866607
],
[
-59.53803992373123,
3.9588025984819377
],
[
-59.815413174057866,
3.6064985213320853
],
[
-59.97452490908456,
2.755232652188056
],
[
-59.71854570172675,
2.2496304386443597
],
[
-59.64604366722126,
1.786893825686789
],
[
-59.03086157900265,
1.3176976586927225
],
[
-58.540012986878295,
1.2680882836925207
],
[
-58.429477098205965,
1.4639419620787208
],
[
-58.11344987652502,
1.5071951359070253
],
[
-57.66097103537737,
1.6825849471056387
],
[
-57.335822923396904,
1.9485377058957594
],
[
-56.78270423036083,
1.8637108422886541
],
[
-56.539385748914555,
1.8995226098669207
],
[
-55.995698004771754,
1.8176671411166012
],
[
-55.905600145070885,
2.0219957543986595
],
[
-56.0733418442903,
2.2207949894254995
],
[
-55.973322109589375,
2.510363877773017
],
[
-55.569755011606,
2.4215062524471307
],
[
-55.09758744975514,
2.5237480737366127
],
[
-54.524754197799716,
2.3118488631237852
],
[
-54.08806250671725,
2.105556545414629
],
[
-53.77852067728892,
2.3767027856500818
],
[
-53.554839240113544,
2.334896551925951
],
[
-53.41846513529531,
2.0533891870159806
],
[
-52.939657151894956,
2.1248576928756364
],
[
-52.55642473001842,
2.504705308437053
],
[
-52.249337531123956,
3.241094468596245
],
[
-51.65779741067889,
4.156232408053029
],
[
-51.31714636901086,
4.203490505383954
],
[
-51.069771287629656,
3.650397650564031
],
[
-50.508875291533656,
1.901563828942457
],
[
-49.97407589374506,
1.736483465986069
],
[
-49.94710079608871,
1.0461896834312228
],
[
-50.699251268096916,
0.22298411702168153
],
[
-50.38821082213214,
-0.07844451253681939
],
[
-48.62056677915632,
-0.2354891902718208
],
[
-48.58449662941659,
-1.2378052710050014
],
[
-47.824956427590635,
-0.5816179337628
],
[
-46.566583624851226,
-0.941027520352776
],
[
-44.905703090990414,
-1.551739597178134
],
[
-44.417619187993665,
-2.137750339367976
],
[
-44.58158850765578,
-2.691308282078524
],
[
-43.418791266440195,
-2.383110039889793
],
[
-41.47265682632825,
-2.9120183243971165
],
[
-39.97866533055404,
-2.873054294449041
],
[
-38.50038347019657,
-3.7006523576033956
],
[
-37.2232521225352,
-4.820945733258917
],
[
-36.45293738457639,
-5.109403578312154
],
[
-35.59779578301047,
-5.149504489770649
],
[
-35.23538896334756,
-5.464937432480247
],
[
-34.89602983248683,
-6.738193047719711
],
[
-34.729993455533034,
-7.343220716992967
],
[
-35.12821204277422,
-8.996401462442286
],
[
-35.636966518687714,
-9.649281508017815
],
[
-37.046518724097,
-11.040721123908803
],
[
-37.68361161960736,
-12.171194756725823
],
[
-38.42387651218844,
-13.038118584854288
],
[
-38.67388709161652,
-13.057652276260619
],
[
-38.953275722802545,
-13.793369642800023
],
[
-38.88229814304965,
-15.667053724838768
],
[
-39.16109249526431,
-17.208406670808472
],
[
-39.2673392400564,
-17.867746270420483
],
[
-39.58352149103423,
-18.262295830968938
],
[
-39.76082333022764,
-19.59911345792741
],
[
-40.77474077001034,
-20.904511814052423
],
[
-40.94475623225061,
-21.93731698983781
],
[
-41.754164191238225,
-22.370675551037458
],
[
-41.98828426773656,
-22.970070489190896
],
[
-43.07470374202475,
-22.96769337330547
],
[
-44.64781185563781,
-23.351959323827842
],
[
-45.35213578955992,
-23.796841729428582
],
[
-46.47209326840554,
-24.088968601174543
],
[
-47.64897233742066,
-24.885199069927722
],
[
-48.4954581365777,
-25.877024834905654
],
[
-48.64100480812774,
-26.623697605090932
],
[
-48.474735887228654,
-27.17591196056189
],
[
-48.661520351747626,
-28.18613453543572
],
[
-48.8884574041574,
-28.674115085567884
],
[
-49.587329474472675,
-29.224469089476337
],
[
-50.696874152211485,
-30.98446502047296
],
[
-51.576226162306156,
-31.77769825615321
],
[
-52.256081305538046,
-32.24536996839467
],
[
-52.712099982297694,
-33.19657805759118
],
[
-53.373661668498244,
-33.768377780900764
],
[
-53.6505439927181,
-33.20200408298183
],
[
-53.209588995971544,
-32.727666110974724
],
[
-53.78795162618219,
-32.047242526987624
],
[
-54.57245154480512,
-31.494511407193748
],
[
-55.601510179249345,
-30.853878676071393
],
[
-55.97324459494094,
-30.883075860316303
],
[
-56.976025763564735,
-30.109686374636127
],
[
-57.62513342958296,
-30.21629485445426
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Brunei",
"sov_a3": "BRN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Brunei",
"adm0_a3": "BRN",
"geou_dif": 0,
"geounit": "Brunei",
"gu_a3": "BRN",
"su_dif": 0,
"subunit": "Brunei",
"su_a3": "BRN",
"brk_diff": 0,
"name": "Brunei",
"name_long": "Brunei Darussalam",
"brk_a3": "BRN",
"brk_name": "Brunei",
"brk_group": "",
"abbrev": "Brunei",
"postal": "BN",
"formal_en": "Negara Brunei Darussalam",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Brunei",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 6,
"mapcolor9": 6,
"mapcolor13": 12,
"pop_est": 388190,
"gdp_md_est": 20250,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BN",
"iso_a3": "BRN",
"iso_n3": "096",
"un_a3": "096",
"wb_a2": "BN",
"wb_a3": "BRN",
"woe_id": -99,
"adm0_a3_is": "BRN",
"adm0_a3_us": "BRN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "South-Eastern Asia",
"region_wb": "East Asia & Pacific",
"name_len": 6,
"long_len": 17,
"abbrev_len": 6,
"tiny": 2,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
114.20401655482837,
4.5258739282368055
],
[
114.59996137904872,
4.900011298029966
],
[
115.45071048386981,
5.447729803891534
],
[
115.40570031134361,
4.955227565933839
],
[
115.34746097215066,
4.316636053887009
],
[
114.8695573263154,
4.348313706881925
],
[
114.65959598191353,
4.007636826997754
],
[
114.20401655482837,
4.5258739282368055
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Bhutan",
"sov_a3": "BTN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Bhutan",
"adm0_a3": "BTN",
"geou_dif": 0,
"geounit": "Bhutan",
"gu_a3": "BTN",
"su_dif": 0,
"subunit": "Bhutan",
"su_a3": "BTN",
"brk_diff": 0,
"name": "Bhutan",
"name_long": "Bhutan",
"brk_a3": "BTN",
"brk_name": "Bhutan",
"brk_group": "",
"abbrev": "Bhutan",
"postal": "BT",
"formal_en": "Kingdom of Bhutan",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Bhutan",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 6,
"mapcolor9": 1,
"mapcolor13": 8,
"pop_est": 691141,
"gdp_md_est": 3524,
"pop_year": -99,
"lastcensus": 2005,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BT",
"iso_a3": "BTN",
"iso_n3": "064",
"un_a3": "064",
"wb_a2": "BT",
"wb_a3": "BTN",
"woe_id": -99,
"adm0_a3_is": "BTN",
"adm0_a3_us": "BTN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Southern Asia",
"region_wb": "South Asia",
"name_len": 6,
"long_len": 6,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
91.69665652869668,
27.771741848251665
],
[
92.10371178585974,
27.452614040633208
],
[
92.03348351437509,
26.83831045176356
],
[
91.21751264848643,
26.808648179628022
],
[
90.37327477413407,
26.87572418874288
],
[
89.74452762243885,
26.719402981059957
],
[
88.83564253128938,
27.098966376243762
],
[
88.81424848832056,
27.299315904239364
],
[
89.47581017452111,
28.042758897406397
],
[
90.01582889197118,
28.296438503527217
],
[
90.7305139505678,
28.064953925075756
],
[
91.25885379431992,
28.040614325466294
],
[
91.69665652869668,
27.771741848251665
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Botswana",
"sov_a3": "BWA",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Botswana",
"adm0_a3": "BWA",
"geou_dif": 0,
"geounit": "Botswana",
"gu_a3": "BWA",
"su_dif": 0,
"subunit": "Botswana",
"su_a3": "BWA",
"brk_diff": 0,
"name": "Botswana",
"name_long": "Botswana",
"brk_a3": "BWA",
"brk_name": "Botswana",
"brk_group": "",
"abbrev": "Bwa.",
"postal": "BW",
"formal_en": "Republic of Botswana",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Botswana",
"name_alt": "",
"mapcolor7": 6,
"mapcolor8": 5,
"mapcolor9": 7,
"mapcolor13": 3,
"pop_est": 1990876,
"gdp_md_est": 27060,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "BW",
"iso_a3": "BWA",
"iso_n3": "072",
"un_a3": "072",
"wb_a2": "BW",
"wb_a3": "BWA",
"woe_id": -99,
"adm0_a3_is": "BWA",
"adm0_a3_us": "BWA",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Southern Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 8,
"long_len": 8,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.43218834810904,
-22.091312758067588
],
[
28.01723595552525,
-22.82775359465908
],
[
27.119409620886245,
-23.574323011979775
],
[
26.786406691197413,
-24.240690606383485
],
[
26.4857532081233,
-24.616326592713104
],
[
25.94165205252216,
-24.69637338633322
],
[
25.76584882986521,
-25.17484547292368
],
[
25.66466637543772,
-25.486816094669713
],
[
25.025170525825786,
-25.7196700985769
],
[
24.211266717228796,
-25.670215752873574
],
[
23.73356977712271,
-25.390129489851617
],
[
23.312096795350186,
-25.26868987396572
],
[
22.8242712745149,
-25.50045867279477
],
[
22.57953169118059,
-25.979447523708146
],
[
22.105968865657868,
-26.280256036079138
],
[
21.605896030369394,
-26.726533705351756
],
[
20.88960900237174,
-26.828542982695915
],
[
20.66647016773544,
-26.477453301704923
],
[
20.75860924651184,
-25.86813648855145
],
[
20.16572553882719,
-24.91796192800077
],
[
19.895767856534434,
-24.76779021576059
],
[
19.89545779794068,
-21.84915699634787
],
[
20.88113406747587,
-21.814327080983148
],
[
20.910641310314535,
-18.252218926672022
],
[
21.655040317478978,
-18.219146010005225
],
[
23.1968583513393,
-17.869038181227786
],
[
23.579005568137717,
-18.28126108162006
],
[
24.217364536239213,
-17.88934701911849
],
[
24.520705193792537,
-17.887124932529936
],
[
25.08444339366457,
-17.661815687737374
],
[
25.264225701608012,
-17.736539808831417
],
[
25.649163445750162,
-18.53602589281899
],
[
25.85039147309473,
-18.714412937090536
],
[
26.164790887158485,
-19.29308562589494
],
[
27.296504754350508,
-20.391519870691
],
[
27.724747348753255,
-20.49905852629039
],
[
27.72722781750326,
-20.851801853114715
],
[
28.021370070108617,
-21.485975030200585
],
[
28.794656202924216,
-21.63945403410745
],
[
29.43218834810904,
-22.091312758067588
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Central African Republic",
"sov_a3": "CAF",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Central African Republic",
"adm0_a3": "CAF",
"geou_dif": 0,
"geounit": "Central African Republic",
"gu_a3": "CAF",
"su_dif": 0,
"subunit": "Central African Republic",
"su_a3": "CAF",
"brk_diff": 0,
"name": "Central African Rep.",
"name_long": "Central African Republic",
"brk_a3": "CAF",
"brk_name": "Central African Rep.",
"brk_group": "",
"abbrev": "C.A.R.",
"postal": "CF",
"formal_en": "Central African Republic",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Central African Republic",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 6,
"mapcolor9": 6,
"mapcolor13": 9,
"pop_est": 4511488,
"gdp_md_est": 3198,
"pop_year": -99,
"lastcensus": 2003,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CF",
"iso_a3": "CAF",
"iso_n3": "140",
"un_a3": "140",
"wb_a2": "CF",
"wb_a3": "CAF",
"woe_id": -99,
"adm0_a3_is": "CAF",
"adm0_a3_us": "CAF",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Middle Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 20,
"long_len": 24,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
15.279460483469109,
7.421924546737969
],
[
16.10623172370677,
7.497087917506505
],
[
16.290561557691888,
7.754307359239306
],
[
16.456184523187346,
7.734773667832968
],
[
16.705988396886255,
7.5083275415299795
],
[
17.964929640380888,
7.890914008002866
],
[
18.38955488452322,
8.281303615751824
],
[
18.911021762780507,
8.630894680206353
],
[
18.812009718509273,
8.982914536978598
],
[
19.09400800952602,
9.07484691002584
],
[
20.05968549976427,
9.012706000194854
],
[
21.000868361096167,
9.475985215691509
],
[
21.723821648859456,
10.567055568885976
],
[
22.231129184668788,
10.97188873946051
],
[
22.864165480244225,
11.142395127807546
],
[
22.97754357269261,
10.71446259199854
],
[
23.554304233502194,
10.089255275915308
],
[
23.55724979014283,
9.681218166538684
],
[
23.394779087017184,
9.265067857292223
],
[
23.459012892355986,
8.954285793488893
],
[
23.805813429466752,
8.666318874542426
],
[
24.567369012152085,
8.229187933785468
],
[
25.11493248871679,
7.825104071479174
],
[
25.124130893664727,
7.500085150579437
],
[
25.79664798351118,
6.979315904158071
],
[
26.213418409945117,
6.546603298362072
],
[
26.465909458123235,
5.9467174341018705
],
[
27.21340905122517,
5.5509534773945575
],
[
27.37422610851749,
5.233944403500061
],
[
27.04406538260471,
5.127852688004836
],
[
26.402760857862543,
5.1508745385908705
],
[
25.650455356557472,
5.256087754737123
],
[
25.278798455514305,
5.170408229997192
],
[
25.12883344900328,
4.92724477784779
],
[
24.805028924262416,
4.89724660890235
],
[
24.410531040146253,
5.10878408448913
],
[
23.29721398285014,
4.609693101414223
],
[
22.841479526468106,
4.710126247573484
],
[
22.70412356943629,
4.633050848810157
],
[
22.405123732195538,
4.029160061047321
],
[
21.659122755630023,
4.22434194581372
],
[
20.927591180106276,
4.322785549329737
],
[
20.290679152108936,
4.691677761245288
],
[
19.46778364429315,
5.03152781821278
],
[
18.93231245288476,
4.709506130385975
],
[
18.54298221199778,
4.201785183118318
],
[
18.45306521980993,
3.5043858911233485
],
[
17.809900343505262,
3.5601964379985698
],
[
17.133042433346304,
3.728196519379452
],
[
16.537058139724138,
3.198254706226279
],
[
16.012852410555354,
2.267639675298085
],
[
15.907380812247652,
2.557389431158612
],
[
15.862732374747482,
3.0135372989989833
],
[
15.405395948964383,
3.33530060466434
],
[
15.036219516671252,
3.8513672957471243
],
[
14.950953403389661,
4.210389309094921
],
[
14.47837243008047,
4.732605495620447
],
[
14.558935988023507,
5.03059764243153
],
[
14.459407179429348,
5.4517605656103
],
[
14.536560092841114,
6.2269587264206905
],
[
14.776545444404576,
6.408498033062045
],
[
15.279460483469109,
7.421924546737969
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Canada",
"sov_a3": "CAN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Canada",
"adm0_a3": "CAN",
"geou_dif": 0,
"geounit": "Canada",
"gu_a3": "CAN",
"su_dif": 0,
"subunit": "Canada",
"su_a3": "CAN",
"brk_diff": 0,
"name": "Canada",
"name_long": "Canada",
"brk_a3": "CAN",
"brk_name": "Canada",
"brk_group": "",
"abbrev": "Can.",
"postal": "CA",
"formal_en": "Canada",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Canada",
"name_alt": "",
"mapcolor7": 6,
"mapcolor8": 6,
"mapcolor9": 2,
"mapcolor13": 2,
"pop_est": 33487208,
"gdp_md_est": 1300000,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "1. Developed region: G7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CA",
"iso_a3": "CAN",
"iso_n3": "124",
"un_a3": "124",
"wb_a2": "CA",
"wb_a3": "CAN",
"woe_id": -99,
"adm0_a3_is": "CAN",
"adm0_a3_us": "CAN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Northern America",
"region_wb": "North America",
"name_len": 6,
"long_len": 6,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-63.664499999999975,
46.550009999999986
],
[
-62.93930000000003,
46.41587000000004
],
[
-62.01207999999997,
46.44314000000006
],
[
-62.50390999999996,
46.033390000000026
],
[
-62.874329999999986,
45.96818000000002
],
[
-64.14279999999994,
46.39265000000003
],
[
-64.39260999999999,
46.72746999999998
],
[
-64.01485999999997,
47.036009999999976
],
[
-63.664499999999975,
46.550009999999986
]
]
],
[
[
[
-61.80630499999998,
49.10506000000004
],
[
-62.29317999999998,
49.08716999999996
],
[
-63.589259999999996,
49.400690000000054
],
[
-64.51912000000002,
49.87304000000003
],
[
-64.17321999999999,
49.957179999999994
],
[
-62.858289999999954,
49.706410000000034
],
[
-61.83558500000004,
49.28854999999999
],
[
-61.80630499999998,
49.10506000000004
]
]
],
[
[
[
-123.51000158755116,
48.51001089130344
],
[
-124.0128907883995,
48.370846259141416
],
[
-125.65501277733837,
48.8250045843385
],
[
-125.95499446679277,
49.179995835967645
],
[
-126.85000443587188,
49.53000031188043
],
[
-127.02999344954442,
49.81499583597008
],
[
-128.05933630436624,
49.9949590114266
],
[
-128.44458410710217,
50.539137681676124
],
[
-128.35841365625544,
50.770648098343685
],
[
-127.3085810960299,
50.552573554071955
],
[
-126.69500097721232,
50.400903225295394
],
[
-125.7550066738232,
50.29501821552938
],
[
-125.4150015875588,
49.95000051533262
],
[
-124.92076818911934,
49.475274970083404
],
[
-123.92250870832102,
49.06248362893581
],
[
-123.51000158755116,
48.51001089130344
]
]
],
[
[
[
-56.134035814017125,
50.687009792679305
],
[
-56.795881720595276,
49.81230866149096
],
[
-56.1431050278843,
50.150117499382844
],
[
-55.47149227560294,
49.93581533466846
],
[
-55.82240108908093,
49.58712860777911
],
[
-54.935142584845664,
49.31301097268684
],
[
-54.473775397343786,
49.55669118915918
],
[
-53.476549445191324,
49.24913890237406
],
[
-53.78601375997124,
48.51678050393363
],
[
-53.08613399922626,
48.687803656603535
],
[
-52.958648240762244,
48.157164211614486
],
[
-52.64809872090419,
47.535548407575504
],
[
-53.06915829121834,
46.65549876564495
],
[
-53.52145626485304,
46.61829173439483
],
[
-54.17893551290254,
46.80706574155701
],
[
-53.961868659060485,
47.62520701760192
],
[
-54.24048214376214,
47.75227936460763
],
[
-55.4007730780115,
46.884993801453135
],
[
-55.99748084168584,
46.9197203639533
],
[
-55.29121904155278,
47.389562486351
],
[
-56.25079871278052,
47.63254507098739
],
[
-57.3252292547771,
47.572807115258
],
[
-59.26601518414677,
47.60334788674251
],
[
-59.419494188053704,
47.899453843774864
],
[
-58.79658647320741,
48.25152537697949
],
[
-59.23162451845653,
48.52318838153781
],
[
-58.39180497906523,
49.12558055276418
],
[
-57.358689744686046,
50.71827403421585
],
[
-56.73865007183201,
51.287438259478535
],
[
-55.870976935435294,
51.632094224649194
],
[
-55.406974249886616,
51.58827261006573
],
[
-55.60021826844209,
51.31707469339793
],
[
-56.134035814017125,
50.687009792679305
]
]
],
[
[
[
-133.1800040417117,
54.169975490935315
],
[
-132.71000788443132,
54.04000931542353
],
[
-131.7499895840033,
54.12000438090922
],
[
-132.049480347351,
52.984621487024526
],
[
-131.1790425218266,
52.180432847698285
],
[
-131.57782954982292,
52.18237071390925
],
[
-132.18042842677855,
52.639707139692405
],
[
-132.54999243231387,
53.100014960332146
],
[
-133.05461117875552,
53.41146881775538
],
[
-133.2396644827927,
53.8510802272624
],
[
-133.1800040417117,
54.169975490935315
]
]
],
[
[
[
-79.26581999999999,
62.15867499999996
],
[
-79.65752000000003,
61.63308000000001
],
[
-80.09956000000003,
61.71810000000005
],
[
-80.36215000000001,
62.016489999999976
],
[
-80.31539499999997,
62.08556500000003
],
[
-79.92938999999996,
62.38559999999998
],
[
-79.52001999999999,
62.36370999999997
],
[
-79.26581999999999,
62.15867499999996
]
]
],
[
[
[
-81.89824999999996,
62.71079999999998
],
[
-83.06857,
62.15922000000003
],
[
-83.77461999999997,
62.18231000000003
],
[
-83.99367000000001,
62.45279999999997
],
[
-83.25047999999998,
62.914090000000044
],
[
-81.87699000000003,
62.90458000000001
],
[
-81.89824999999996,
62.71079999999998
]
]
],
[
[
[
-85.16130794954987,
65.65728465439281
],
[
-84.97576371940596,
65.217518215589
],
[
-84.46401201041951,
65.37177236598018
],
[
-83.88262630891975,
65.10961782496355
],
[
-82.78757687043878,
64.76669302027469
],
[
-81.64201371939254,
64.45513580998696
],
[
-81.55344031444426,
63.97960928003715
],
[
-80.81736121287886,
64.05748566350101
],
[
-80.10345130076661,
63.725981350348604
],
[
-80.99101986359568,
63.411246039474975
],
[
-82.54717810741701,
63.65172231714524
],
[
-83.10879757356506,
64.10187571883972
],
[
-84.10041663281388,
63.56971181909802
],
[
-85.52340471061902,
63.0523790554241
],
[
-85.86676876498237,
63.63725291610356
],
[
-87.22198320183674,
63.54123810490523
],
[
-86.35275977247127,
64.03583323837071
],
[
-86.22488644076515,
64.82291697860828
],
[
-85.88384782585487,
65.73877838811705
],
[
-85.16130794954987,
65.65728465439281
]
]
],
[
[
[
-75.86588,
67.14885999999998
],
[
-76.98686999999998,
67.09873000000002
],
[
-77.23639999999995,
67.58809000000002
],
[
-76.81165999999999,
68.14856000000003
],
[
-75.89521000000002,
68.28720999999999
],
[
-75.11450000000002,
68.01035999999999
],
[
-75.10332999999994,
67.58202000000003
],
[
-75.21597,
67.44424999999995
],
[
-75.86588,
67.14885999999998
]
]
],
[
[
[
-95.64768120380052,
69.10769035832178
],
[
-96.2695212038006,
68.75704035832175
],
[
-97.61740120380057,
69.0600303583218
],
[
-98.43180120380052,
68.9507003583218
],
[
-99.79740120380053,
69.4000303583218
],
[
-98.91740120380055,
69.7100303583218
],
[
-98.2182612038005,
70.14354035832176
],
[
-97.15740120380056,
69.86003035832181
],
[
-96.55740120380054,
69.68003035832177
],
[
-96.25740120380053,
69.49003035832177
],
[
-95.64768120380052,
69.10769035832178
]
]
],
[
[
[
-68.23443999999998,
47.35486
],
[
-68.905,
47.185
],
[
-69.23721599999996,
47.44778099999999
],
[
-69.99997000000002,
46.69306999999998
],
[
-70.305,
45.91500000000002
],
[
-70.66,
45.46000000000001
],
[
-71.08482000000001,
45.30523999999997
],
[
-71.40500000000003,
45.25500000000005
],
[
-71.50505999999996,
45.008200000000016
],
[
-73.34782999999999,
45.00738000000001
],
[
-74.86699999999996,
45.00048000000004
],
[
-75.31821,
44.816449999999975
],
[
-76.375,
44.09631000000002
],
[
-76.50000000000006,
44.01845889375872
],
[
-76.82003414580558,
43.628784288093755
],
[
-77.7378850979577,
43.629055589363304
],
[
-78.72027991404238,
43.625089423184875
],
[
-79.17167355011188,
43.46633942318422
],
[
-79.00999999999999,
43.27000000000007
],
[
-78.92000000000002,
42.96500000000006
],
[
-78.9393621487437,
42.86361135514804
],
[
-80.24744767934794,
42.36619985612259
],
[
-81.27774654816716,
42.20902598730686
],
[
-82.43927771679162,
41.675105088867156
],
[
-82.69008928092018,
41.675105088867156
],
[
-83.02981014680694,
41.83279572200584
],
[
-83.14199968131257,
41.97568105729283
],
[
-83.12,
42.079999999999984
],
[
-82.89999999999998,
42.430000000000064
],
[
-82.43,
42.98000000000002
],
[
-82.1376423815039,
43.571087551439916
],
[
-82.33776312543108,
44.44
],
[
-82.55092464875818,
45.347516587905375
],
[
-83.59285071484308,
45.81689362241238
],
[
-83.46955074739463,
45.99468638771259
],
[
-83.61613094759059,
46.11692698829907
],
[
-83.89076534700575,
46.11692698829907
],
[
-84.09185126416148,
46.275418606138174
],
[
-84.14211951367338,
46.51222585711574
],
[
-84.33669999999998,
46.40877000000003
],
[
-84.60489999999999,
46.439599999999984
],
[
-84.54374874544587,
46.538684190449146
],
[
-84.77923824739992,
46.637101955749046
],
[
-84.87607988151487,
46.90008331968238
],
[
-85.65236324740343,
47.22021881773051
],
[
-86.46199083122826,
47.553338019392044
],
[
-87.43979262330024,
47.94
],
[
-88.37811418328673,
48.302917588893735
],
[
-89.27291744663668,
48.01980825458267
],
[
-89.6,
48.01000000000002
],
[
-90.82999999999996,
48.27000000000004
],
[
-91.64000000000004,
48.139999999999986
],
[
-92.60999999999999,
48.44999999999996
],
[
-93.63086999999996,
48.609260000000006
],
[
-94.32914000000005,
48.67074000000002
],
[
-94.63999999999996,
48.84000000000003
],
[
-94.81757999999996,
49.38905
],
[
-95.15608999999995,
49.38425000000004
],
[
-95.15906950917204,
49.00000000000003
],
[
-97.22872000000481,
49.00070000000002
],
[
-100.64999999999999,
49.00000000000003
],
[
-104.04825999999998,
48.999859999999984
],
[
-107.05,
49.00000000000003
],
[
-110.05000000000003,
49.00000000000003
],
[
-112.99999999999999,
49.00000000000003
],
[
-116.04818000000003,
49.00000000000003
],
[
-117.03121000000003,
49.00000000000003
],
[
-120.00000000000001,
49.00000000000003
],
[
-122.83999999999997,
49.00000000000003
],
[
-122.97421000000001,
49.0025377777778
],
[
-124.91023999999999,
49.984560000000045
],
[
-125.62461000000002,
50.41656000000003
],
[
-127.43561000000003,
50.830610000000036
],
[
-127.99275999999998,
51.71583000000001
],
[
-127.85032000000002,
52.32961000000006
],
[
-129.12979,
52.755379999999974
],
[
-129.30523000000002,
53.561589999999995
],
[
-130.51497000000003,
54.28756999999999
],
[
-130.53610999999998,
54.802779999999984
],
[
-129.98000000000002,
55.285000000000025
],
[
-130.00777999999997,
55.91583
],
[
-131.70781,
56.55212
],
[
-132.73042000000004,
57.692890000000034
],
[
-133.35556000000003,
58.41028
],
[
-134.27110999999996,
58.86111000000005
],
[
-134.945,
59.270560000000046
],
[
-135.47583000000003,
59.78778
],
[
-136.47972,
59.46389000000005
],
[
-137.45250000000001,
58.90500000000003
],
[
-138.34089,
59.56210999999999
],
[
-139.039,
60.00000000000006
],
[
-140.01299999999998,
60.27681999999999
],
[
-140.99778,
60.30639000000005
],
[
-140.99250000000004,
66.00003000000001
],
[
-140.986,
69.71199999999999
],
[
-139.12052,
69.47102000000004
],
[
-137.54636,
68.99002000000002
],
[
-136.50358000000003,
68.89804000000001
],
[
-135.62576,
69.31512000000001
],
[
-134.41464000000005,
69.62742999999998
],
[
-132.92925000000002,
69.50533999999999
],
[
-131.43136,
69.94451000000001
],
[
-129.79471,
70.19368999999998
],
[
-129.10773000000006,
69.77927
],
[
-128.36156,
70.01286000000002
],
[
-128.13817,
70.48383999999999
],
[
-127.44711999999998,
70.37721000000002
],
[
-125.75631999999999,
69.48058
],
[
-124.42482999999997,
70.15840000000003
],
[
-124.28967999999996,
69.39969000000002
],
[
-123.06108,
69.56372000000002
],
[
-122.68349999999994,
69.85553000000007
],
[
-121.47225999999999,
69.79778000000002
],
[
-119.94287999999997,
69.37786
],
[
-117.60267999999998,
69.01128000000006
],
[
-116.22642999999995,
68.84151000000003
],
[
-115.2469,
68.90591000000006
],
[
-113.89794000000002,
68.39890000000003
],
[
-115.30488999999999,
67.90261000000007
],
[
-113.49726999999996,
67.68815000000004
],
[
-110.79799999999994,
67.80612000000002
],
[
-109.94618999999996,
67.98104000000001
],
[
-108.88020000000003,
67.38144000000003
],
[
-107.79239,
67.88736000000003
],
[
-108.81299000000001,
68.31164000000004
],
[
-108.16720999999995,
68.65392000000003
],
[
-106.94999999999996,
68.70000000000002
],
[
-106.14999999999996,
68.79999999999998
],
[
-105.34281999999999,
68.56122000000005
],
[
-104.33791000000001,
68.018
],
[
-103.22114999999998,
68.09774999999999
],
[
-101.45432999999997,
67.64689000000007
],
[
-99.90195000000001,
67.80566000000005
],
[
-98.44319999999999,
67.78164999999996
],
[
-98.55859999999996,
68.40394000000006
],
[
-97.66947999999996,
68.57864000000004
],
[
-96.11991,
68.23939000000001
],
[
-96.12587999999994,
67.29338000000001
],
[
-95.48943000000003,
68.09070000000003
],
[
-94.68499999999995,
68.06383
],
[
-94.23282000000003,
69.06903
],
[
-95.30408,
69.68571
],
[
-96.47130999999999,
70.08976000000001
],
[
-96.39115000000001,
71.19482000000002
],
[
-95.20879999999997,
71.92053000000004
],
[
-93.88997000000003,
71.76014999999998
],
[
-92.87818000000004,
71.31869
],
[
-91.51964000000001,
70.19128999999998
],
[
-92.40691999999999,
69.69997000000001
],
[
-90.54709999999994,
69.49766000000002
],
[
-90.55150999999998,
68.47498999999999
],
[
-89.21514999999997,
69.25872999999996
],
[
-88.01965999999996,
68.61508
],
[
-88.31749000000002,
67.87338000000008
],
[
-87.35017000000002,
67.19872000000001
],
[
-86.30607,
67.92146
],
[
-85.57664000000003,
68.78456000000003
],
[
-85.52197000000001,
69.88210999999998
],
[
-84.10080999999997,
69.80539000000005
],
[
-82.62257999999994,
69.65826000000001
],
[
-81.28042999999997,
69.16202000000001
],
[
-81.2202,
68.66567000000003
],
[
-81.96436,
68.13253
],
[
-81.25927999999999,
67.59716000000003
],
[
-81.38652999999996,
67.11078000000006
],
[
-83.34456,
66.41154
],
[
-84.73541999999998,
66.25730000000001
],
[
-85.76942999999994,
66.55832999999998
],
[
-86.06759999999997,
66.05625
],
[
-87.03142999999994,
65.21297000000007
],
[
-87.32324,
64.77563
],
[
-88.48295999999996,
64.09897000000004
],
[
-89.91443999999998,
64.03273000000002
],
[
-90.70397999999997,
63.61017000000001
],
[
-90.77004000000005,
62.96020999999996
],
[
-91.93341999999998,
62.83507999999998
],
[
-93.15698,
62.024689999999964
],
[
-94.24152999999995,
60.89865000000003
],
[
-94.62931,
60.11021000000002
],
[
-94.68459999999999,
58.948819999999984
],
[
-93.21501999999998,
58.78211999999996
],
[
-92.76461999999998,
57.845710000000054
],
[
-92.29702999999992,
57.08709000000002
],
[
-90.89768999999998,
57.28467999999998
],
[
-89.03952999999998,
56.85172000000006
],
[
-88.03977999999998,
56.47162000000003
],
[
-87.32420999999997,
55.99914000000004
],
[
-86.07120999999998,
55.72382999999999
],
[
-85.01180999999994,
55.30260000000001
],
[
-83.36054999999999,
55.24489
],
[
-82.27285,
55.148319999999984
],
[
-82.43619999999999,
54.28227000000004
],
[
-82.12501999999998,
53.277030000000025
],
[
-81.40074999999999,
52.157880000000034
],
[
-79.91289000000003,
51.20842000000005
],
[
-79.14301000000003,
51.53393
],
[
-78.60190999999998,
52.56208000000004
],
[
-79.12420999999998,
54.14145000000002
],
[
-79.82957999999999,
54.66772000000003
],
[
-78.22873999999996,
55.136449999999996
],
[
-77.09559999999999,
55.837410000000006
],
[
-76.54136999999997,
56.53423000000001
],
[
-76.62319000000002,
57.20263
],
[
-77.30225999999999,
58.05208999999999
],
[
-78.51688000000001,
58.80458000000007
],
[
-77.33676000000003,
59.85261
],
[
-77.77272000000002,
60.75787999999997
],
[
-78.10686999999996,
62.31964000000002
],
[
-77.41066999999998,
62.55053000000004
],
[
-75.69621000000001,
62.27840000000003
],
[
-74.66819999999998,
62.18111000000005
],
[
-73.83987999999997,
62.44380000000004
],
[
-72.90853000000004,
62.105069999999955
],
[
-71.67707999999999,
61.52535000000006
],
[
-71.37368999999998,
61.137170000000026
],
[
-69.59042000000002,
61.06141000000002
],
[
-69.62032999999997,
60.221250000000026
],
[
-69.28789999999995,
58.95736000000005
],
[
-68.37454999999997,
58.801060000000035
],
[
-67.64975999999993,
58.212060000000065
],
[
-66.20178000000001,
58.76730999999998
],
[
-65.24517000000003,
59.87071000000003
],
[
-64.58351999999996,
60.33558000000002
],
[
-63.804749999999984,
59.44260000000003
],
[
-62.50235999999995,
58.16708000000003
],
[
-61.39654999999999,
56.96745000000004
],
[
-61.79866000000001,
56.33945000000003
],
[
-60.46852999999999,
55.77547999999996
],
[
-59.569619999999986,
55.20407
],
[
-57.97508000000002,
54.94548999999998
],
[
-57.33319999999998,
54.62649999999999
],
[
-56.93688999999998,
53.78031999999999
],
[
-56.158109999999965,
53.647490000000005
],
[
-55.75631999999996,
53.27036000000004
],
[
-55.68337999999997,
52.14664000000005
],
[
-56.409160000000014,
51.77070000000006
],
[
-57.12691000000004,
51.419719999999984
],
[
-58.774820000000005,
51.0643
],
[
-60.033090000000044,
50.24277000000001
],
[
-61.723659999999995,
50.080460000000045
],
[
-63.86250999999996,
50.290989999999965
],
[
-65.36330999999996,
50.29820000000004
],
[
-66.39904999999996,
50.22897000000003
],
[
-67.23631,
49.51156
],
[
-68.51113999999993,
49.06836000000007
],
[
-69.95361999999997,
47.74488000000002
],
[
-71.10458,
46.82171000000005
],
[
-70.25521999999995,
46.98605999999995
],
[
-68.64999999999998,
48.299999999999955
],
[
-66.55242999999996,
49.133099999999985
],
[
-65.05625999999998,
49.23277999999999
],
[
-64.17098999999996,
48.74248000000003
],
[
-65.11544999999995,
48.070850000000036
],
[
-64.79853999999995,
46.992969999999985
],
[
-64.47218999999996,
46.23849000000001
],
[
-63.17329000000004,
45.73901999999998
],
[
-61.52072000000004,
45.88377000000003
],
[
-60.51815000000005,
47.007930000000016
],
[
-60.44859999999997,
46.28263999999999
],
[
-59.80287000000004,
45.92039999999997
],
[
-61.039879999999954,
45.26525000000001
],
[
-63.25470999999999,
44.67014000000003
],
[
-64.24656000000004,
44.26553000000001
],
[
-65.36406000000002,
43.54523000000006
],
[
-66.12340000000003,
43.61867000000004
],
[
-66.16172999999995,
44.46512000000001
],
[
-64.42549,
45.292040000000014
],
[
-66.02605000000005,
45.259310000000056
],
[
-67.13741000000005,
45.137530000000055
],
[
-67.79134000000005,
45.702810000000056
],
[
-67.79045999999997,
47.06636
],
[
-68.23443999999998,
47.35486
]
]
],
[
[
[
-114.1671699999999,
73.1214500000001
],
[
-114.66633999999995,
72.65277000000009
],
[
-112.4410199999999,
72.95540000000011
],
[
-111.05038999999994,
72.45040000000006
],
[
-109.92034999999989,
72.96113000000011
],
[
-109.00653999999994,
72.63335000000001
],
[
-108.18834999999991,
71.65089
],
[
-107.68598999999996,
72.0654800000001
],
[
-108.39638999999997,
73.08953000000011
],
[
-107.51645000000005,
73.23598000000001
],
[
-106.52258999999988,
73.07601000000003
],
[
-105.4024599999999,
72.67259000000007
],
[
-104.77484000000005,
71.6984000000001
],
[
-104.46475999999984,
70.9929700000001
],
[
-102.78536999999996,
70.49776000000003
],
[
-100.9807799999999,
70.02432000000002
],
[
-101.0892899999999,
69.58447000000012
],
[
-102.7311599999999,
69.50402000000003
],
[
-102.09329,
69.11962000000011
],
[
-102.43023999999998,
68.75282000000001
],
[
-104.23999999999998,
68.91000000000008
],
[
-105.96000000000005,
69.18000000000015
],
[
-107.12254000000003,
69.11922000000007
],
[
-108.9999999999999,
68.78000000000003
],
[
-111.53414887520015,
68.63005915681794
],
[
-113.31320000000007,
68.53553999999997
],
[
-113.85495999999983,
69.00744000000012
],
[
-115.22000000000006,
69.28000000000009
],
[
-116.10793999999993,
69.16821000000004
],
[
-117.34,
69.96000000000012
],
[
-116.6747299999999,
70.06655000000003
],
[
-115.13112000000002,
70.23730000000006
],
[
-113.72140999999995,
70.1923700000001
],
[
-112.4161,
70.36638000000002
],
[
-114.35000000000004,
70.60000000000005
],
[
-116.48684000000004,
70.52044999999998
],
[
-117.90479999999998,
70.54056000000014
],
[
-118.43238000000005,
70.90920000000008
],
[
-116.11310999999995,
71.30918
],
[
-117.65567999999993,
71.29520000000005
],
[
-119.40198999999998,
71.55858999999998
],
[
-118.56266999999994,
72.30785000000006
],
[
-117.86641999999992,
72.70594000000008
],
[
-115.18908999999996,
73.31459000000012
],
[
-114.1671699999999,
73.1214500000001
]
]
],
[
[
[
-104.49999999999999,
73.42000000000004
],
[
-105.37999999999998,
72.76000000000008
],
[
-106.93999999999998,
73.46000000000004
],
[
-106.59999999999998,
73.59999999999997
],
[
-105.25999999999999,
73.64000000000007
],
[
-104.49999999999999,
73.42000000000004
]
]
],
[
[
[
-76.33999999999997,
73.10268498995302
],
[
-76.25140380859375,
72.82638549804688
],
[
-77.31443786621091,
72.85554504394528
],
[
-78.39167022705081,
72.87665557861328
],
[
-79.48625183105466,
72.74220275878909
],
[
-79.77583312988284,
72.80290222167974
],
[
-80.87609863281253,
73.33318328857422
],
[
-80.83388519287107,
73.69318389892578
],
[
-80.35305786132812,
73.75971984863278
],
[
-78.06443786621094,
73.65193176269534
],
[
-76.33999999999997,
73.10268498995302
]
]
],
[
[
[
-86.56217851433414,
73.15744700793846
],
[
-85.77437130404454,
72.53412588163383
],
[
-84.85011247428824,
73.34027822538712
],
[
-82.31559017610098,
73.75095083281059
],
[
-80.60008765330764,
72.71654368762421
],
[
-80.7489416165244,
72.06190664335077
],
[
-78.77063859731078,
72.35217316353416
],
[
-77.8246239895596,
72.74961660429105
],
[
-75.60584469267573,
72.24367849393741
],
[
-74.22861609566499,
71.7671442735579
],
[
-74.09914079455771,
71.33084015571765
],
[
-72.24222571479766,
71.55692454699451
],
[
-71.2000154283352,
70.92001251899723
],
[
-68.7860542466849,
70.52502370877426
],
[
-67.91497046575694,
70.12194753689761
],
[
-66.96903337265417,
69.18608734809189
],
[
-68.80512285020055,
68.72019847276442
],
[
-66.44986609563387,
68.06716339789202
],
[
-64.86231441919523,
67.84753856065163
],
[
-63.42493445499676,
66.92847321234066
],
[
-61.85198137068059,
66.86212067327784
],
[
-62.1631768459423,
66.16025136988961
],
[
-63.918444383384184,
64.99866852483285
],
[
-65.14886023625363,
65.42603261988668
],
[
-66.72121904159854,
66.3880410834322
],
[
-68.01501603867396,
66.2627257351244
],
[
-68.14128740097917,
65.68978913030438
],
[
-67.0896461656234,
65.108455105237
],
[
-65.73208045109976,
64.64840566675863
],
[
-65.32016760930128,
64.38273712834606
],
[
-64.66940629744968,
63.39292674422748
],
[
-65.01380388045891,
62.674185085695996
],
[
-66.27504472519047,
62.945098781986076
],
[
-68.78318620469273,
63.74567007105182
],
[
-67.36968075221304,
62.883965562584876
],
[
-66.32829728866722,
62.280074774822054
],
[
-66.16556820338016,
61.93089712182589
],
[
-68.87736650254465,
62.33014923771282
],
[
-71.02343705919384,
62.91070811629584
],
[
-72.235378587519,
63.397836005295176
],
[
-71.8862784491713,
63.67998932560886
],
[
-73.37830624051838,
64.19396312118383
],
[
-74.8344189114226,
64.67907562932379
],
[
-74.81850257027673,
64.38909332951798
],
[
-77.70997982452005,
64.22954234481679
],
[
-78.55594885935417,
64.57290639918014
],
[
-77.89728105336192,
65.30919220647479
],
[
-76.0182742987972,
65.32696889918316
],
[
-73.95979529488272,
65.4547647162409
],
[
-74.29388342964964,
65.8117713487294
],
[
-73.94491248238265,
66.31057811142674
],
[
-72.65116716173941,
67.28457550726387
],
[
-72.92605994331609,
67.72692576768239
],
[
-73.31161780464575,
68.06943716091291
],
[
-74.84330725777681,
68.55462718370129
],
[
-76.86910091826675,
68.89473562283027
],
[
-76.22864905465735,
69.14776927354742
],
[
-77.28736996123712,
69.76954010688328
],
[
-78.1686339993266,
69.82648753526891
],
[
-78.95724219431673,
70.16688019477542
],
[
-79.49245500356366,
69.87180776638891
],
[
-81.30547095409176,
69.74318512641435
],
[
-84.94470618359847,
69.9666340196444
],
[
-87.06000342481789,
70.26000112576537
],
[
-88.68171322300151,
70.41074127876081
],
[
-89.51341956252304,
70.76203766548099
],
[
-88.46772111688077,
71.21818553332133
],
[
-89.8881512112875,
71.22255219184996
],
[
-90.20516028518202,
72.2350743679608
],
[
-89.43657670770494,
73.12946421985237
],
[
-88.40824154331281,
73.53788890247122
],
[
-85.82615108920092,
73.80381582304523
],
[
-86.56217851433414,
73.15744700793846
]
]
],
[
[
[
-100.35642000000004,
73.84389000000002
],
[
-99.16387000000002,
73.63338999999999
],
[
-97.37999999999997,
73.76000000000005
],
[
-97.11999999999995,
73.47
],
[
-98.05359000000004,
72.99052
],
[
-96.53999999999999,
72.56
],
[
-96.72,
71.65999999999997
],
[
-98.35965999999993,
71.27284999999998
],
[
-99.32286,
71.35639000000003
],
[
-100.01481999999999,
71.73827
],
[
-102.49999999999994,
72.51000000000002
],
[
-102.47999999999999,
72.82999999999998
],
[
-100.43835999999997,
72.70588000000001
],
[
-101.53999999999996,
73.36000000000001
],
[
-100.35642000000004,
73.84389000000002
]
]
],
[
[
[
-93.19629553910022,
72.77199249947336
],
[
-94.26904659704726,
72.02459625923598
],
[
-95.40985551632266,
72.06188080513459
],
[
-96.03374508338246,
72.94027680123182
],
[
-96.01826799191099,
73.4374299180958
],
[
-95.49579342322403,
73.86241689726418
],
[
-94.50365759965234,
74.13490672473921
],
[
-92.42001217321177,
74.10002513294219
],
[
-90.50979285354259,
73.85673248971204
],
[
-92.0039652168299,
72.9662442084585
],
[
-93.19629553910022,
72.77199249947336
]
]
],
[
[
[
-120.46000000000001,
71.38360179308759
],
[
-123.09218999999993,
70.90164000000004
],
[
-123.62000000000002,
71.34000000000009
],
[
-125.92894873747333,
71.86868846301141
],
[
-125.4999999999999,
72.29226081179502
],
[
-124.80729000000004,
73.02255999999997
],
[
-123.9399999999999,
73.68000000000015
],
[
-124.91774999999991,
74.29275000000013
],
[
-121.53787999999999,
74.44893000000005
],
[
-120.10978000000003,
74.24135000000004
],
[
-117.55563999999987,
74.18576999999996
],
[
-116.58442000000004,
73.89607000000007
],
[
-115.51080999999996,
73.47519
],
[
-116.7679399999999,
73.22291999999999
],
[
-119.22000000000006,
72.52000000000001
],
[
-120.46000000000001,
71.82000000000005
],
[
-120.46000000000001,
71.38360179308759
]
]
],
[
[
[
-93.61275590694049,
74.97999726022445
],
[
-94.15690873897384,
74.59234650338686
],
[
-95.60868058956561,
74.66686391875177
],
[
-96.82093217648458,
74.92762319609659
],
[
-96.28858740922982,
75.37782827422336
],
[
-94.85081987178913,
75.6472175157609
],
[
-93.97774654821794,
75.29648956979597
],
[
-93.61275590694049,
74.97999726022445
]
]
],
[
[
[
-98.50000000000003,
76.72
],
[
-97.73558499999996,
76.25656000000004
],
[
-97.70441500000001,
75.74344000000002
],
[
-98.16000000000003,
75
],
[
-99.80874000000001,
74.89743999999999
],
[
-100.88365999999995,
75.05736000000002
],
[
-100.86291999999996,
75.64075
],
[
-102.50208999999994,
75.56380000000001
],
[
-102.56552,
76.33660000000003
],
[
-101.48972999999994,
76.30537000000004
],
[
-99.98348999999997,
76.64634000000001
],
[
-98.57699000000002,
76.58858999999998
],
[
-98.50000000000003,
76.72
]
]
],
[
[
[
-108.21141,
76.20168000000004
],
[
-107.81942999999998,
75.84552000000002
],
[
-106.92893000000004,
76.01282000000003
],
[
-105.88100000000003,
75.96940000000006
],
[
-105.70497999999996,
75.47951
],
[
-106.31347,
75.00527000000002
],
[
-109.70000000000005,
74.85
],
[
-112.22307000000002,
74.41696000000002
],
[
-113.74380999999998,
74.39426999999998
],
[
-113.87134999999996,
74.72029000000003
],
[
-111.79420999999996,
75.16249999999997
],
[
-116.31220999999998,
75.04343000000003
],
[
-117.71039999999999,
75.22220000000007
],
[
-116.34602000000002,
76.19903
],
[
-115.40486999999997,
76.47887000000003
],
[
-112.59056000000002,
76.14134000000004
],
[
-110.81421999999996,
75.54919000000001
],
[
-109.06710000000004,
75.47321
],
[
-110.49726,
76.42981999999998
],
[
-109.58109999999994,
76.79416999999998
],
[
-108.54859,
76.67831999999999
],
[
-108.21141,
76.20168000000004
]
]
],
[
[
[
-94.68408586299947,
77.09787832305838
],
[
-93.57392106807313,
76.77629588490609
],
[
-91.60502315953661,
76.77851797149461
],
[
-90.74184587274922,
76.44959747995682
],
[
-90.96966142450799,
76.07401317005946
],
[
-89.82223792189927,
75.84777374948564
],
[
-89.18708289259979,
75.61016551380763
],
[
-87.83827633334963,
75.56618886992723
],
[
-86.37919226758868,
75.48242137318218
],
[
-84.78962521029061,
75.69920400664651
],
[
-82.75344458691006,
75.78431509063125
],
[
-81.12853084992437,
75.71398346628203
],
[
-80.05751095245915,
75.3368488634159
],
[
-79.83393286814834,
74.9231273464872
],
[
-80.45777075877584,
74.65730377877779
],
[
-81.94884253612554,
74.44245901152433
],
[
-83.22889360221143,
74.56402781849096
],
[
-86.0974523587333,
74.41003205026115
],
[
-88.15035030796022,
74.39230703398499
],
[
-89.76472205275837,
74.51555532500115
],
[
-92.42244096552943,
74.837757880341
],
[
-92.76828548864282,
75.38681997344216
],
[
-92.88990597204173,
75.88265534128266
],
[
-93.893824022176,
76.31924367950054
],
[
-95.96245744503582,
76.44138092722247
],
[
-97.12137895382949,
76.75107778594761
],
[
-96.74512285031236,
77.16138865834515
],
[
-94.68408586299947,
77.09787832305838
]
]
],
[
[
[
-116.19858659550735,
77.64528677032621
],
[
-116.33581336145839,
76.87696157501057
],
[
-117.1060505847688,
76.53003184681913
],
[
-118.04041215703815,
76.4811717800871
],
[
-119.8993175868857,
76.05321340606199
],
[
-121.4999950771265,
75.9000186225328
],
[
-122.85492448615898,
76.1165428738357
],
[
-122.85492529360322,
76.1165428738357
],
[
-121.15753536032825,
76.86450755482835
],
[
-119.10393897182105,
77.51221995717464
],
[
-117.57013078496597,
77.49831899688812
],
[
-116.19858659550735,
77.64528677032621
]
]
],
[
[
[
-93.84000301794399,
77.5199972602345
],
[
-94.29560828324526,
77.4913426785287
],
[
-96.16965410031008,
77.5551113959769
],
[
-96.43630449093612,
77.83462921824363
],
[
-94.42257727738638,
77.82000478790499
],
[
-93.72065629756588,
77.63433136668033
],
[
-93.84000301794399,
77.5199972602345
]
]
],
[
[
[
-110.18693803591297,
77.6970148790503
],
[
-112.05119116905848,
77.40922882761686
],
[
-113.53427893761906,
77.73220652944116
],
[
-112.72458675825385,
78.05105011668195
],
[
-111.26444332563085,
78.15295604116156
],
[
-109.8544518705471,
77.99632477488484
],
[
-110.18693803591297,
77.6970148790503
]
]
],
[
[
[
-109.66314571820259,
78.60197256134569
],
[
-110.88131425661886,
78.40691986766001
],
[
-112.54209143761517,
78.40790171987351
],
[
-112.5258908760916,
78.55055451121524
],
[
-111.5000103422334,
78.84999359813057
],
[
-110.96366065147602,
78.80444082306522
],
[
-109.66314571820259,
78.60197256134569
]
]
],
[
[
[
-95.83029496944934,
78.05694122996326
],
[
-97.309842902398,
77.8505972358218
],
[
-98.12428931353398,
78.0828569607576
],
[
-98.55286780474665,
78.45810537384511
],
[
-98.63198442258553,
78.87193024363839
],
[
-97.33723141151262,
78.83198436147677
],
[
-96.75439876990879,
78.765812689927
],
[
-95.55927792029459,
78.41831452098029
],
[
-95.83029496944934,
78.05694122996326
]
]
],
[
[
[
-100.06019182005214,
78.3247543403159
],
[
-99.67093909381362,
77.90754466420742
],
[
-101.30394019245301,
78.01898489044481
],
[
-102.94980872273305,
78.34322866486022
],
[
-105.17613277873154,
78.38033234324575
],
[
-104.21042945027716,
78.6774201524918
],
[
-105.41958045125854,
78.91833567983645
],
[
-105.49228919149316,
79.3015939399292
],
[
-103.52928239623793,
79.16534902619165
],
[
-100.82515804726881,
78.8004617377787
],
[
-100.06019182005214,
78.3247543403159
]
]
],
[
[
[
-87.01999999999995,
79.65999999999997
],
[
-85.81434999999996,
79.33690000000001
],
[
-87.18756000000002,
79.0393
],
[
-89.03534999999997,
78.28723000000002
],
[
-90.80436,
78.21533
],
[
-92.87669000000002,
78.34333000000004
],
[
-93.95116000000004,
78.75098999999997
],
[
-93.93573999999995,
79.11373
],
[
-93.14523999999994,
79.38010000000003
],
[
-94.97400000000002,
79.37247999999997
],
[
-96.07614000000001,
79.70502000000002
],
[
-96.70971999999995,
80.15777000000003
],
[
-96.01643999999999,
80.60233000000005
],
[
-95.32344999999998,
80.90729000000002
],
[
-94.29843,
80.97726999999998
],
[
-94.73542000000003,
81.20646000000002
],
[
-92.40984,
81.25739000000002
],
[
-91.13289,
80.72345000000007
],
[
-89.44999999999999,
80.50932203389829
],
[
-87.80999999999997,
80.32000000000002
],
[
-87.01999999999995,
79.65999999999997
]
]
],
[
[
[
-68.50000000000006,
83.10632151676575
],
[
-65.82735,
83.02801000000005
],
[
-63.68000000000001,
82.89999999999998
],
[
-61.849999999999994,
82.62860000000006
],
[
-61.89387999999997,
82.36165
],
[
-64.33400000000003,
81.92775
],
[
-66.75341999999995,
81.72527
],
[
-67.65754999999993,
81.50140999999999
],
[
-65.48030999999997,
81.50657000000007
],
[
-67.83999999999997,
80.9
],
[
-69.46969999999996,
80.61683000000005
],
[
-71.18,
79.80000000000001
],
[
-73.24279999999996,
79.63415000000003
],
[
-73.88000000000002,
79.43016220480209
],
[
-76.90773000000002,
79.32309000000001
],
[
-75.52924000000002,
79.19765999999998
],
[
-76.22045999999995,
79.01907
],
[
-75.39344999999997,
78.52581
],
[
-76.34353999999996,
78.18296000000001
],
[
-77.88851,
77.89991
],
[
-78.36268999999999,
77.50858999999997
],
[
-79.75950999999998,
77.20967999999999
],
[
-79.61964999999998,
76.98336
],
[
-77.91088999999997,
77.02204499999999
],
[
-77.88911000000002,
76.77795500000002
],
[
-80.56124999999997,
76.17812000000006
],
[
-83.17439000000002,
76.45403000000002
],
[
-86.11183999999997,
76.29901000000007
],
[
-87.59999999999994,
76.41999999999999
],
[
-89.49068000000003,
76.47238999999999
],
[
-89.61610000000002,
76.95213000000001
],
[
-87.76738999999995,
77.17833000000002
],
[
-88.25999999999999,
77.89999999999998
],
[
-87.65,
77.97022222222222
],
[
-84.97633999999996,
77.53873000000002
],
[
-86.33999999999995,
78.18000000000004
],
[
-87.96191999999996,
78.37181000000007
],
[
-87.15197999999998,
78.75867000000002
],
[
-85.37868,
78.99690000000001
],
[
-85.09494999999995,
79.34542999999996
],
[
-86.50734,
79.73623999999998
],
[
-86.93178999999995,
80.25145
],
[
-84.19844000000003,
80.20836000000006
],
[
-83.40869565217383,
80.10000000000002
],
[
-81.84823000000003,
80.46442000000002
],
[
-84.10000000000002,
80.58000000000004
],
[
-87.59895000000003,
80.51627000000002
],
[
-89.36663000000004,
80.85569000000001
],
[
-90.20000000000002,
81.26000000000008
],
[
-91.36785999999998,
81.5531
],
[
-91.58702000000005,
81.89429000000007
],
[
-90.09999999999997,
82.08500000000001
],
[
-88.93227000000002,
82.11751000000004
],
[
-86.97024000000005,
82.27961000000005
],
[
-85.49999999999994,
82.65227345805704
],
[
-84.26000499999998,
82.59999999999997
],
[
-83.18000000000004,
82.32
],
[
-82.41999999999993,
82.86000000000007
],
[
-81.1,
83.02000000000004
],
[
-79.30663999999999,
83.13056000000003
],
[
-76.25000000000003,
83.1720588235294
],
[
-75.71877999999995,
83.06404
],
[
-72.83153000000001,
83.23324000000002
],
[
-70.66576499999994,
83.16978075838284
],
[
-68.50000000000006,
83.10632151676575
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Switzerland",
"sov_a3": "CHE",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Switzerland",
"adm0_a3": "CHE",
"geou_dif": 0,
"geounit": "Switzerland",
"gu_a3": "CHE",
"su_dif": 0,
"subunit": "Switzerland",
"su_a3": "CHE",
"brk_diff": 0,
"name": "Switzerland",
"name_long": "Switzerland",
"brk_a3": "CHE",
"brk_name": "Switzerland",
"brk_group": "",
"abbrev": "Switz.",
"postal": "CH",
"formal_en": "Swiss Confederation",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Switzerland",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 2,
"mapcolor9": 7,
"mapcolor13": 3,
"pop_est": 7604467,
"gdp_md_est": 316700,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CH",
"iso_a3": "CHE",
"iso_n3": "756",
"un_a3": "756",
"wb_a2": "CH",
"wb_a3": "CHE",
"woe_id": -99,
"adm0_a3_is": "CHE",
"adm0_a3_us": "CHE",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Western Europe",
"region_wb": "Europe & Central Asia",
"name_len": 11,
"long_len": 11,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
9.59422610844635,
47.52505809182027
],
[
9.632931756232978,
47.34760122332999
],
[
9.479969516649021,
47.102809963563374
],
[
9.932448357796659,
46.92072805438296
],
[
10.44270145024663,
46.89354625099743
],
[
10.363378126678612,
46.48357127540986
],
[
9.922836541390382,
46.31489940040919
],
[
9.182881707403055,
46.44021474871698
],
[
8.966305779667806,
46.03693187111119
],
[
8.489952426801324,
46.005150865251686
],
[
8.31662967289438,
46.16364248309086
],
[
7.7559920589598335,
45.82449005795931
],
[
7.2738509456766565,
45.776947740250776
],
[
6.843592970414505,
45.99114655210061
],
[
6.5000997249704255,
46.42967275652944
],
[
6.022609490593538,
46.27298981382047
],
[
6.037388950229001,
46.725778713561866
],
[
6.768713820023606,
47.2877082383037
],
[
6.736571079138059,
47.541801255882845
],
[
7.192202182655507,
47.44976552997102
],
[
7.466759067422231,
47.62058197691181
],
[
8.317301466514152,
47.61357982033626
],
[
8.522611932009767,
47.83082754169129
],
[
9.59422610844635,
47.52505809182027
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Chile",
"sov_a3": "CHL",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Chile",
"adm0_a3": "CHL",
"geou_dif": 0,
"geounit": "Chile",
"gu_a3": "CHL",
"su_dif": 0,
"subunit": "Chile",
"su_a3": "CHL",
"brk_diff": 0,
"name": "Chile",
"name_long": "Chile",
"brk_a3": "CHL",
"brk_name": "Chile",
"brk_group": "",
"abbrev": "Chile",
"postal": "CL",
"formal_en": "Republic of Chile",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Chile",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 1,
"mapcolor9": 5,
"mapcolor13": 9,
"pop_est": 16601707,
"gdp_md_est": 244500,
"pop_year": -99,
"lastcensus": 2002,
"gdp_year": -99,
"economy": "5. Emerging region: G20",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CL",
"iso_a3": "CHL",
"iso_n3": "152",
"un_a3": "152",
"wb_a2": "CL",
"wb_a3": "CHL",
"woe_id": -99,
"adm0_a3_is": "CHL",
"adm0_a3_us": "CHL",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-66.95992000000004,
-54.896809999999974
],
[
-67.29102999999989,
-55.301239999999915
],
[
-68.14862999999986,
-55.61182999999996
],
[
-68.63999081081181,
-55.58001799908689
],
[
-69.23209999999997,
-55.49905999999991
],
[
-69.95809,
-55.198429999999995
],
[
-71.00567999999993,
-55.05383000000003
],
[
-72.2639,
-54.49513999999995
],
[
-73.28519999999995,
-53.95751999999989
],
[
-74.66252999999998,
-52.83748999999993
],
[
-73.83809999999994,
-53.047429999999984
],
[
-72.43417999999994,
-53.71540000000001
],
[
-71.10773000000003,
-54.074329999999904
],
[
-70.5917799999998,
-53.61582999999994
],
[
-70.26747999999995,
-52.93122999999999
],
[
-69.34564999999989,
-52.518299999999925
],
[
-68.63401022758316,
-52.63637045887437
],
[
-68.6333499999999,
-54.869499999999945
],
[
-67.56243999999992,
-54.87000999999996
],
[
-66.95992000000004,
-54.896809999999974
]
]
],
[
[
[
-67.10667355006362,
-22.7359245744764
],
[
-66.98523393417764,
-22.98634856536283
],
[
-67.32844295924414,
-24.025303236590915
],
[
-68.41765296087613,
-24.518554782816878
],
[
-68.38600114609736,
-26.185016371365236
],
[
-68.59479977077268,
-26.506908868111267
],
[
-68.2955415513704,
-26.89933969493579
],
[
-69.00123491074828,
-27.521213881136134
],
[
-69.65613033718316,
-28.459141127233693
],
[
-70.01355038112987,
-29.36792286551855
],
[
-69.91900834825194,
-30.336339206668313
],
[
-70.53506893581945,
-31.36501026787029
],
[
-70.07439938015364,
-33.09120981214804
],
[
-69.81477698431922,
-33.27388600029985
],
[
-69.81730912950147,
-34.193571465798286
],
[
-70.3880494859491,
-35.16968759535945
],
[
-70.36476925320167,
-36.005088799789945
],
[
-71.1218806627098,
-36.65812387466234
],
[
-71.11862504747543,
-37.5768274879472
],
[
-70.81466427273472,
-38.55299529394074
],
[
-71.41351660834906,
-38.916022230791114
],
[
-71.68076127794646,
-39.80816415787807
],
[
-71.91573401557756,
-40.83233936947073
],
[
-71.74680375841547,
-42.051386407235995
],
[
-72.14889807807853,
-42.25488819760139
],
[
-71.91542395698391,
-43.40856454851742
],
[
-71.46405615913051,
-43.78761117937833
],
[
-71.79362260607195,
-44.20717213315611
],
[
-71.32980078803621,
-44.40752166115169
],
[
-71.22277889675973,
-44.784242852559416
],
[
-71.65931555854533,
-44.97368865334144
],
[
-71.55200944689125,
-45.56073292417713
],
[
-71.91725847033021,
-46.8848381487918
],
[
-72.44735531278027,
-47.73853281025353
],
[
-72.33116085477195,
-48.244238376661826
],
[
-72.64824744331494,
-48.87861825947679
],
[
-73.41543575712004,
-49.31843637471296
],
[
-73.32805091011448,
-50.37878508890987
],
[
-72.97574683296463,
-50.74145029073431
],
[
-72.30997351753237,
-50.677009779666356
],
[
-72.32940385607404,
-51.42595631287241
],
[
-71.91480383979635,
-52.009022305865926
],
[
-69.49836218939609,
-52.14276091263725
],
[
-68.57154537624135,
-52.29944385534626
],
[
-69.46128434922664,
-52.29195077266393
],
[
-69.94277950710614,
-52.53793059037326
],
[
-70.84510169135453,
-52.899200528525725
],
[
-71.00633216010525,
-53.83325204220135
],
[
-71.42979468452094,
-53.85645476030039
],
[
-72.55794287788487,
-53.53141000118446
],
[
-73.70275672066288,
-52.835069268607256
],
[
-73.70275672066288,
-52.8350700760515
],
[
-74.94676347522517,
-52.26275358841903
],
[
-75.26002600777852,
-51.629354750373224
],
[
-74.97663245308982,
-51.04339568461569
],
[
-75.4797541978835,
-50.37837167745156
],
[
-75.60801510283196,
-48.6737728818718
],
[
-75.18276974150214,
-47.71191944762316
],
[
-74.1265809801047,
-46.9392534319951
],
[
-75.64439531116545,
-46.64764332457203
],
[
-74.69215369332306,
-45.76397633238098
],
[
-74.35170935738427,
-44.103044122087894
],
[
-73.2403560045152,
-44.454960625995625
],
[
-72.71780392117978,
-42.38335580827899
],
[
-73.38889990913825,
-42.117532240569574
],
[
-73.70133561877486,
-43.365776462579745
],
[
-74.33194312203258,
-43.22495818458441
],
[
-74.01795711942717,
-41.794812920906836
],
[
-73.67709937202997,
-39.942212823243125
],
[
-73.21759253609068,
-39.258688653318515
],
[
-73.50555945503706,
-38.28288258235108
],
[
-73.58806087919109,
-37.15628468195602
],
[
-73.1667170884993,
-37.12378020604436
],
[
-72.55313696968173,
-35.508840020491036
],
[
-71.86173214383257,
-33.90909270603153
],
[
-71.43845048692992,
-32.41889942803083
],
[
-71.66872066922244,
-30.92064462659252
],
[
-71.37008256700773,
-30.095682061485007
],
[
-71.48989437527646,
-28.861442152625912
],
[
-70.90512386746158,
-27.6403797340012
],
[
-70.72495398627598,
-25.705924167587213
],
[
-70.40396582709505,
-23.628996677344546
],
[
-70.09124589708068,
-21.393319187101227
],
[
-70.16441972520599,
-19.756468194256186
],
[
-70.37257239447774,
-18.347975355708883
],
[
-69.85844356960581,
-18.092693780187034
],
[
-69.590423753524,
-17.58001189541929
],
[
-69.10024695501943,
-18.260125420812656
],
[
-68.96681840684184,
-18.981683444904093
],
[
-68.44222510443095,
-19.405068454671422
],
[
-68.75716712103372,
-20.372657972904477
],
[
-68.21991309271124,
-21.494346612231837
],
[
-67.82817989772266,
-22.872918796482182
],
[
-67.10667355006362,
-22.7359245744764
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "China",
"sov_a3": "CH1",
"adm0_dif": 1,
"level": 2,
"type": "Country",
"admin": "China",
"adm0_a3": "CHN",
"geou_dif": 0,
"geounit": "China",
"gu_a3": "CHN",
"su_dif": 0,
"subunit": "China",
"su_a3": "CHN",
"brk_diff": 0,
"name": "China",
"name_long": "China",
"brk_a3": "CHN",
"brk_name": "China",
"brk_group": "",
"abbrev": "China",
"postal": "CN",
"formal_en": "People's Republic of China",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "China",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 4,
"mapcolor9": 4,
"mapcolor13": 3,
"pop_est": 1338612970,
"gdp_md_est": 7973000,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "3. Emerging region: BRIC",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CN",
"iso_a3": "CHN",
"iso_n3": "156",
"un_a3": "156",
"wb_a2": "CN",
"wb_a3": "CHN",
"woe_id": -99,
"adm0_a3_is": "CHN",
"adm0_a3_us": "CHN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Eastern Asia",
"region_wb": "East Asia & Pacific",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
110.33918786015155,
18.678395087147607
],
[
109.47520958866372,
18.197700913968617
],
[
108.65520796105616,
18.5076819930714
],
[
108.62621748254045,
19.367887885001977
],
[
109.11905561730802,
19.821038519769388
],
[
110.21159874882287,
20.101253973872076
],
[
110.78655073450224,
20.07753449145008
],
[
111.01005130416465,
19.695929877190736
],
[
110.57064660038682,
19.255879218009312
],
[
110.33918786015155,
18.678395087147607
]
]
],
[
[
[
130.63386640840983,
42.90301463477056
],
[
130.64001590385246,
42.39500946712528
],
[
129.99426720593326,
42.9853868678438
],
[
129.5966687358795,
42.4249817978546
],
[
128.05221520397234,
41.99428457291799
],
[
128.20843305879075,
41.46677155208255
],
[
127.34378299368305,
41.50315176041596
],
[
126.8690832866499,
41.81656932226616
],
[
126.18204511932944,
41.10733612727637
],
[
125.07994184784062,
40.569823716792456
],
[
124.26562462778534,
39.92849335383414
],
[
122.86757042856104,
39.63778758397626
],
[
122.13138797413094,
39.17045176854464
],
[
121.05455447803288,
38.89747101496292
],
[
121.5859949077225,
39.36085358332414
],
[
121.37675703337268,
39.75026133885953
],
[
122.16859500538104,
40.42244253189605
],
[
121.64035851449356,
40.94638987890332
],
[
120.76862877816197,
40.5933881699176
],
[
119.63960208544907,
39.89805593521422
],
[
119.02346398323303,
39.2523330755111
],
[
118.04274865119791,
39.20427399347969
],
[
117.53270226447708,
38.7376358098841
],
[
118.05969852098971,
38.06147553156106
],
[
118.87814985562838,
37.897325344385905
],
[
118.91163618375353,
37.44846385349874
],
[
119.70280236214208,
37.15638865818508
],
[
120.82345747282366,
37.87042776137798
],
[
121.71125857959797,
37.48112335870718
],
[
122.35793745329849,
37.45448415786069
],
[
122.51999474496583,
36.930614325501836
],
[
121.10416385303304,
36.65132904718044
],
[
120.63700890511458,
36.11143952081113
],
[
119.66456180224608,
35.609790554337735
],
[
119.1512081238586,
34.909859117160465
],
[
120.22752485563373,
34.36033193616862
],
[
120.6203690939166,
33.37672272392513
],
[
121.22901411345023,
32.46031871187719
],
[
121.90814578663006,
31.69217438407469
],
[
121.89191938689035,
30.949351508095106
],
[
121.26425744027333,
30.676267401648715
],
[
121.50351932178475,
30.142914943964257
],
[
122.0921138855891,
29.832520453403163
],
[
121.93842817595308,
29.01802236583481
],
[
121.68443851123848,
28.225512600206685
],
[
121.12566124886646,
28.135673122667185
],
[
120.39547326058235,
27.053206895449392
],
[
119.58549686083958,
25.740780544532612
],
[
118.65687137255455,
24.547390855400238
],
[
117.28160647997086,
23.624501451099718
],
[
115.89073530483515,
22.782873236578098
],
[
114.76382734584624,
22.66807404224167
],
[
114.15254682826568,
22.223760077396207
],
[
113.80677981980077,
22.54833974862143
],
[
113.24107791550162,
22.05136749927047
],
[
111.84359215703248,
21.550493679281516
],
[
110.78546552942416,
21.397143866455338
],
[
110.44403934127169,
20.341032619706397
],
[
109.88986128137358,
20.282457383703445
],
[
109.62765506392466,
21.008227037026728
],
[
109.86448815311834,
21.395050970947523
],
[
108.52281294152445,
21.71521230721183
],
[
108.050180291783,
21.552379869060104
],
[
107.04342003787266,
21.811898912029903
],
[
106.56727339073538,
22.218204860924743
],
[
106.7254032735485,
22.79426788989838
],
[
105.81124718630522,
22.976892401617903
],
[
105.32920942588666,
23.352063300056983
],
[
104.4768583516645,
22.819150092046925
],
[
103.50451460166053,
22.70375661873922
],
[
102.70699222210018,
22.708795070887703
],
[
102.17043582561357,
22.464753119389343
],
[
101.65201785686159,
22.31819875740956
],
[
101.80311974488293,
21.174366766845054
],
[
101.27002566936002,
21.20165192309517
],
[
101.18000532430759,
21.43657298429406
],
[
101.15003299357826,
21.849984442629022
],
[
100.41653771362738,
21.558839423096657
],
[
99.98348921102158,
21.74293671313646
],
[
99.24089887898722,
22.118314317304566
],
[
99.53199222208744,
22.9490388046126
],
[
98.89874922078283,
23.142722072842588
],
[
98.6602624857558,
24.063286037690006
],
[
97.60471967976204,
23.897404690033056
],
[
97.72460900267916,
25.083637193293043
],
[
98.67183800658924,
25.918702500913497
],
[
98.71209394734458,
26.74353587494025
],
[
98.68269005737054,
27.508812160750665
],
[
98.24623091023338,
27.74722138112918
],
[
97.91198774616944,
28.335945136014374
],
[
97.32711388549004,
28.261582749946342
],
[
96.24883344928784,
28.41103099213447
],
[
96.58659061074755,
28.83097951915437
],
[
96.11767866413103,
29.45280202892252
],
[
95.40480228066465,
29.03171662039216
],
[
94.56599043170294,
29.277438055939967
],
[
93.41334760943269,
28.64062938080724
],
[
92.50311893104364,
27.89687632904645
],
[
91.6966565286967,
27.771741848251622
],
[
91.25885379431989,
28.04061432546635
],
[
90.73051395056783,
28.06495392507574
],
[
90.01582889197121,
28.296438503527185
],
[
89.47581017452117,
28.042758897406372
],
[
88.8142484883206,
27.299315904239393
],
[
88.73032596227856,
28.08686473236756
],
[
88.12044070836996,
27.87654165293958
],
[
86.95451704300066,
27.97426178640353
],
[
85.82331994013154,
28.20357595469875
],
[
85.01163821812307,
28.642773952747376
],
[
84.23457970575018,
28.839893703724698
],
[
83.89899295444675,
29.32022614187764
],
[
83.33711510613719,
29.463731594352197
],
[
82.32751264845089,
30.115268052688208
],
[
81.5258044778748,
30.422716986608663
],
[
81.11125613802929,
30.183480943313413
],
[
79.72136681510713,
30.882714748654735
],
[
78.73889448437401,
31.51590607352705
],
[
78.45844648632604,
32.61816437431273
],
[
79.17612877799556,
32.483779812137755
],
[
79.20889163606856,
32.994394639613745
],
[
78.81108646028574,
33.506198025032404
],
[
78.91226891471322,
34.321936346975775
],
[
77.83745079947462,
35.49400950778781
],
[
76.19284834178572,
35.89840342868786
],
[
75.89689741405019,
36.66680613865188
],
[
75.158027785141,
37.13303091078916
],
[
74.98000247589542,
37.419990139305895
],
[
74.82998579295216,
37.99000702570146
],
[
74.8648157083168,
38.3788463404816
],
[
74.2575142760227,
38.60650686294349
],
[
73.92885216664641,
38.505815334622724
],
[
73.67537926625485,
39.43123688410557
],
[
73.96001305531846,
39.66000844986172
],
[
73.82224368682833,
39.89397349706314
],
[
74.77686242055606,
40.36642527929163
],
[
75.46782799673073,
40.56207225194868
],
[
76.52636803579745,
40.42794607193514
],
[
76.90448449087714,
41.06648590754966
],
[
78.18719689322606,
41.185315863604814
],
[
78.54366092317528,
41.58224254003872
],
[
80.11943037305142,
42.123940741538235
],
[
80.25999026888533,
42.34999929459909
],
[
80.18015018099439,
42.92006785742686
],
[
80.86620649610123,
43.180362046881015
],
[
79.96610639844144,
44.91751699480463
],
[
81.9470707539181,
45.31702749285316
],
[
82.45892581576905,
45.539649563166506
],
[
83.18048383986056,
47.33003123635075
],
[
85.16429039911324,
47.00095571551611
],
[
85.7204838398707,
47.45296946877309
],
[
85.76823286330838,
48.4557506373969
],
[
86.59877648310336,
48.54918162698061
],
[
87.3599703307627,
49.21498078062916
],
[
87.75126427607668,
49.29719798440547
],
[
88.0138322285517,
48.5994627956006
],
[
88.85429772334678,
48.069081732773014
],
[
90.28082563676392,
47.693549099307916
],
[
90.97080936072499,
46.888146063822944
],
[
90.58576826371834,
45.7197160914875
],
[
90.94553958533433,
45.28607330991025
],
[
92.13389082231825,
45.115075995456436
],
[
93.48073367714133,
44.975472113620015
],
[
94.68892866412537,
44.35233185482846
],
[
95.30687544147153,
44.24133087826547
],
[
95.76245486855672,
43.31944916439463
],
[
96.34939578652782,
42.72563528092866
],
[
97.451757440178,
42.74888967546008
],
[
99.51581749878002,
42.524691473961695
],
[
100.8458655131083,
42.663804429691425
],
[
101.83304039917996,
42.51487295182628
],
[
103.31227827353482,
41.90746816666763
],
[
104.52228193564903,
41.90834666601663
],
[
104.96499393109346,
41.59740957291635
],
[
106.12931562706169,
42.1343277044289
],
[
107.744772576938,
42.481515814781915
],
[
109.24359581913146,
42.51944631608416
],
[
110.41210330611531,
42.87123362891103
],
[
111.12968224492025,
43.40683401140018
],
[
111.8295878438814,
43.74311839453949
],
[
111.66773725794323,
44.07317576758771
],
[
111.34837690637946,
44.45744171811006
],
[
111.87330610560028,
45.10207937273512
],
[
112.43606245325887,
45.01164561622426
],
[
113.46390669154422,
44.80889313412712
],
[
114.46033165899607,
45.33981679949389
],
[
115.98509647020015,
45.72723501238602
],
[
116.71786828009888,
46.388202419615254
],
[
117.42170128791426,
46.67273285581422
],
[
118.87432579963874,
46.80541209572365
],
[
119.66326989143877,
46.69267995867895
],
[
119.77282392789758,
47.04805878355015
],
[
118.86657433479499,
47.74706004494621
],
[
118.06414269416675,
48.06673045510374
],
[
117.29550744025747,
47.6977090521074
],
[
116.30895267137325,
47.853410142602826
],
[
115.74283735561576,
47.72654450132629
],
[
115.48528201707305,
48.135382595403456
],
[
116.19180219936763,
49.13459809019906
],
[
116.67880089728621,
49.888531399121405
],
[
117.87924441942639,
49.51098338479696
],
[
119.28846072802585,
50.14288279886205
],
[
119.27936567594239,
50.582907619827296
],
[
120.18204959521697,
51.64356639261803
],
[
120.73819135954201,
51.964115302124554
],
[
120.725789015792,
52.51622630473082
],
[
120.1770886577169,
52.75388621684121
],
[
121.00308475147025,
53.25140106873124
],
[
122.24574791879289,
53.431725979213695
],
[
123.57150678924089,
53.45880442973464
],
[
125.06821129771046,
53.161044826868846
],
[
125.9463489116462,
52.79279857035695
],
[
126.564399041857,
51.7842554795327
],
[
126.93915652883769,
51.35389415140591
],
[
127.28745568248493,
50.73979726826545
],
[
127.65740726126242,
49.76027049417294
],
[
129.39781782442046,
49.44060008401544
],
[
130.5822933289824,
48.72968740497612
],
[
130.98728152885386,
47.790132351261406
],
[
132.50667199109952,
47.78896963153488
],
[
133.37359581922803,
48.18344167743493
],
[
135.02631147678673,
48.47822988544391
],
[
134.50081383681064,
47.57843984637785
],
[
134.11236209527263,
47.21246735288673
],
[
133.7696439963129,
46.11692698829907
],
[
133.09712690646646,
45.144066473972174
],
[
131.8834542176596,
45.32116160743644
],
[
131.0252120301561,
44.96795319272158
],
[
131.28855512911557,
44.111519680348266
],
[
131.14468794161488,
42.92998973242695
],
[
130.63386640840983,
42.90301463477056
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Ivory Coast",
"sov_a3": "CIV",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Ivory Coast",
"adm0_a3": "CIV",
"geou_dif": 0,
"geounit": "Ivory Coast",
"gu_a3": "CIV",
"su_dif": 0,
"subunit": "Ivory Coast",
"su_a3": "CIV",
"brk_diff": 0,
"name": "Côte d'Ivoire",
"name_long": "Côte d'Ivoire",
"brk_a3": "CIV",
"brk_name": "Côte d'Ivoire",
"brk_group": "",
"abbrev": "I.C.",
"postal": "CI",
"formal_en": "Republic of Ivory Coast",
"formal_fr": "Republic of Cote D'Ivoire",
"note_adm0": "",
"note_brk": "",
"name_sort": "Côte d'Ivoire",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 6,
"mapcolor9": 3,
"mapcolor13": 3,
"pop_est": 20617068,
"gdp_md_est": 33850,
"pop_year": -99,
"lastcensus": 1998,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CI",
"iso_a3": "CIV",
"iso_n3": "384",
"un_a3": "384",
"wb_a2": "CI",
"wb_a3": "CIV",
"woe_id": -99,
"adm0_a3_is": "CIV",
"adm0_a3_us": "CIV",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Western Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 13,
"long_len": 13,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-2.856125047202397,
4.994475816259509
],
[
-3.3110843571000714,
4.984295559098015
],
[
-4.008819545904942,
5.179813340674315
],
[
-4.649917364917911,
5.168263658057086
],
[
-5.8344962223445265,
4.993700669775137
],
[
-6.528769090185847,
4.705087795425015
],
[
-7.5189412093304355,
4.338288479017308
],
[
-7.7121593896697505,
4.364565944837722
],
[
-7.635368211284031,
5.188159084489456
],
[
-7.539715135111763,
5.313345241716519
],
[
-7.570152553731688,
5.707352199725904
],
[
-7.993692592795881,
6.126189683451543
],
[
-8.311347622094019,
6.193033148621083
],
[
-8.60288021486862,
6.4675641951716605
],
[
-8.385451626000574,
6.911800645368743
],
[
-8.48544552248535,
7.39520783124307
],
[
-8.439298468448698,
7.686042792181738
],
[
-8.280703497744938,
7.687179673692157
],
[
-8.221792364932199,
8.123328762235573
],
[
-8.299048631208564,
8.316443589710303
],
[
-8.20349890790088,
8.455453192575447
],
[
-7.832100389019188,
8.575704250518626
],
[
-8.07911373537435,
9.376223863152035
],
[
-8.30961646161225,
9.789531968622441
],
[
-8.229337124046822,
10.1290202905639
],
[
-8.029943610048619,
10.206534939001713
],
[
-7.899589809592372,
10.297382106970828
],
[
-7.622759161804809,
10.147236232946796
],
[
-6.8505065576350574,
10.138993841996239
],
[
-6.666460944027548,
10.430810655148449
],
[
-6.493965013037268,
10.411302801958271
],
[
-6.205222947606431,
10.524060777219134
],
[
-6.050452032892267,
10.096360785355444
],
[
-5.816926235365287,
10.222554633012194
],
[
-5.404341599946974,
10.370736802609146
],
[
-4.954653286143099,
10.152713934769736
],
[
-4.7798835921319665,
9.821984768101743
],
[
-4.3302469547603835,
9.610834865757141
],
[
-3.9804491845766847,
9.8623440617217
],
[
-3.511898972986273,
9.90032623945622
],
[
-2.8274963037127065,
9.642460842319778
],
[
-2.562189500326241,
8.219627793811483
],
[
-2.9835849674503265,
7.379704901555513
],
[
-3.244370083011262,
6.250471503113502
],
[
-2.8107014632178395,
5.38905121502411
],
[
-2.856125047202397,
4.994475816259509
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Cameroon",
"sov_a3": "CMR",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Cameroon",
"adm0_a3": "CMR",
"geou_dif": 0,
"geounit": "Cameroon",
"gu_a3": "CMR",
"su_dif": 0,
"subunit": "Cameroon",
"su_a3": "CMR",
"brk_diff": 0,
"name": "Cameroon",
"name_long": "Cameroon",
"brk_a3": "CMR",
"brk_name": "Cameroon",
"brk_group": "",
"abbrev": "Cam.",
"postal": "CM",
"formal_en": "Republic of Cameroon",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Cameroon",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 4,
"mapcolor9": 1,
"mapcolor13": 3,
"pop_est": 18879301,
"gdp_md_est": 42750,
"pop_year": -99,
"lastcensus": 2005,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CM",
"iso_a3": "CMR",
"iso_n3": "120",
"un_a3": "120",
"wb_a2": "CM",
"wb_a3": "CMR",
"woe_id": -99,
"adm0_a3_is": "CMR",
"adm0_a3_us": "CMR",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Middle Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 8,
"long_len": 8,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
13.075822381246752,
2.2670970727590145
],
[
12.951333855855609,
2.32161570882694
],
[
12.359380323952221,
2.19281220133945
],
[
11.75166548019979,
2.3267575138399934
],
[
11.276449008843713,
2.261050930180872
],
[
9.649158155972628,
2.2838660750377358
],
[
9.795195753629457,
3.073404445809117
],
[
9.404366896206,
3.734526882335203
],
[
8.948115675501072,
3.9041289331171356
],
[
8.744923943729418,
4.35221527751996
],
[
8.48881554529089,
4.495617377129918
],
[
8.500287713259695,
4.7719829370268485
],
[
8.757532993208628,
5.479665839047911
],
[
9.233162876023044,
6.444490668153335
],
[
9.522705926154401,
6.453482367372117
],
[
10.118276808318257,
7.03876963950988
],
[
10.497375115611419,
7.0553577742755635
],
[
11.058787876030351,
6.6444267846905944
],
[
11.74577436691851,
6.981382961449754
],
[
11.839308709366803,
7.397042344589437
],
[
12.063946160539558,
7.799808457872302
],
[
12.218872104550599,
8.305824082874324
],
[
12.753671502339216,
8.717762762888995
],
[
12.955467970438974,
9.417771714714704
],
[
13.167599724997103,
9.640626328973411
],
[
13.308676385153918,
10.160362046748928
],
[
13.572949659894562,
10.798565985553566
],
[
14.415378859116684,
11.572368882692075
],
[
14.468192172918975,
11.904751695193411
],
[
14.577177768622533,
12.085360826053503
],
[
14.181336297266794,
12.483656927943116
],
[
14.213530714584635,
12.802035427293347
],
[
14.495787387762846,
12.85939626713733
],
[
14.893385857816526,
12.219047756392584
],
[
14.9601518083376,
11.555574042197224
],
[
14.92356489427496,
10.891325181517473
],
[
15.46787275560527,
9.98233673750343
],
[
14.909353875394716,
9.992129421422732
],
[
14.62720055508106,
9.920919297724538
],
[
14.171466098699028,
10.021378282099931
],
[
13.954218377344006,
9.549494940626687
],
[
14.54446658698177,
8.965861314322268
],
[
14.97999555833769,
8.796104234243472
],
[
15.120865512765334,
8.382150173369425
],
[
15.43609174974577,
7.692812404811973
],
[
15.279460483469109,
7.421924546737969
],
[
14.776545444404576,
6.408498033062045
],
[
14.536560092841114,
6.2269587264206905
],
[
14.459407179429348,
5.4517605656103
],
[
14.558935988023507,
5.03059764243153
],
[
14.47837243008047,
4.732605495620447
],
[
14.950953403389661,
4.210389309094921
],
[
15.036219516671252,
3.8513672957471243
],
[
15.405395948964383,
3.33530060466434
],
[
15.862732374747482,
3.0135372989989833
],
[
15.907380812247652,
2.557389431158612
],
[
16.012852410555354,
2.267639675298085
],
[
15.940918816805066,
1.7276726342802957
],
[
15.146341993885244,
1.9640147973671844
],
[
14.33781253424658,
2.2278746606494906
],
[
13.075822381246752,
2.2670970727590145
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Democratic Republic of the Congo",
"sov_a3": "COD",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Democratic Republic of the Congo",
"adm0_a3": "COD",
"geou_dif": 0,
"geounit": "Democratic Republic of the Congo",
"gu_a3": "COD",
"su_dif": 0,
"subunit": "Democratic Republic of the Congo",
"su_a3": "COD",
"brk_diff": 0,
"name": "Dem. Rep. Congo",
"name_long": "Democratic Republic of the Congo",
"brk_a3": "COD",
"brk_name": "Democratic Republic of the Congo",
"brk_group": "",
"abbrev": "D.R.C.",
"postal": "DRC",
"formal_en": "Democratic Republic of the Congo",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Congo, Dem. Rep.",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 4,
"mapcolor9": 4,
"mapcolor13": 7,
"pop_est": 68692542,
"gdp_md_est": 20640,
"pop_year": -99,
"lastcensus": 1984,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CD",
"iso_a3": "COD",
"iso_n3": "180",
"un_a3": "180",
"wb_a2": "ZR",
"wb_a3": "ZAR",
"woe_id": -99,
"adm0_a3_is": "COD",
"adm0_a3_us": "COD",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Middle Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 15,
"long_len": 32,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
29.579466180140884,
-1.3413131648856265
],
[
29.291886834436614,
-1.6200558406679872
],
[
29.254834832483343,
-2.2151099585089113
],
[
29.117478875451553,
-2.2922111954883846
],
[
29.024926385216787,
-2.8392579077301576
],
[
29.276383904749053,
-3.293907159034063
],
[
29.339997592900346,
-4.4999834122940925
],
[
29.519986606572928,
-5.419978936386315
],
[
29.419992710088167,
-5.939998874539434
],
[
29.620032179490014,
-6.520015150583426
],
[
30.199996779101696,
-7.079980970898163
],
[
30.74001549655179,
-8.340007419470915
],
[
30.346086053190817,
-8.238256524288218
],
[
29.00291222506047,
-8.407031752153472
],
[
28.734866570762502,
-8.526559340044578
],
[
28.449871046672826,
-9.164918308146085
],
[
28.67368167492893,
-9.605924981324932
],
[
28.49606977714177,
-10.789883721564046
],
[
28.372253045370428,
-11.793646742401393
],
[
28.642417433392353,
-11.971568698782315
],
[
29.34154788586909,
-12.360743910372413
],
[
29.61600141777123,
-12.178894545137311
],
[
29.69961388521949,
-13.257226657771831
],
[
28.934285922976837,
-13.248958428605135
],
[
28.523561639121027,
-12.698604424696683
],
[
28.155108676879987,
-12.272480564017897
],
[
27.388798862423783,
-12.132747491100666
],
[
27.164419793412463,
-11.608748467661075
],
[
26.553087599399618,
-11.924439792532127
],
[
25.752309604604733,
-11.784965101776358
],
[
25.418118116973204,
-11.330935967659961
],
[
24.78316979340295,
-11.238693536018964
],
[
24.31451622894795,
-11.26282642989927
],
[
24.25715538910399,
-10.951992689663657
],
[
23.912215203555718,
-10.926826267137514
],
[
23.45679080576744,
-10.867863457892483
],
[
22.83734541188474,
-11.01762175867433
],
[
22.402798292742375,
-10.993075453335692
],
[
22.155268182064308,
-11.084801120653772
],
[
22.208753289486395,
-9.894796237836509
],
[
21.875181919042348,
-9.523707777548566
],
[
21.8018013851879,
-8.90870655684298
],
[
21.949130893652043,
-8.305900974158277
],
[
21.74645592620331,
-7.920084730667149
],
[
21.7281107927397,
-7.290872491081302
],
[
20.5147481625265,
-7.2996058081386295
],
[
20.6018229509383,
-6.939317722199682
],
[
20.091621534920648,
-6.943090101756994
],
[
20.037723016040218,
-7.116361179231646
],
[
19.41750247567316,
-7.155428562044299
],
[
19.16661339689611,
-7.738183688999754
],
[
19.01675174324967,
-7.988245944860132
],
[
18.464175652752687,
-7.847014255406443
],
[
18.13422163256905,
-7.987677504104923
],
[
17.472970004962235,
-8.0685511206417
],
[
17.08999596524717,
-7.545688978712526
],
[
16.8601908708452,
-7.2222978654299865
],
[
16.573179965896145,
-6.6226445451150875
],
[
16.326528354567046,
-5.877470391466268
],
[
13.375597364971895,
-5.8642412247995495
],
[
13.024869419006961,
-5.984388929878158
],
[
12.735171339578699,
-5.965682061388499
],
[
12.32243167486351,
-6.10009246177966
],
[
12.182336866920252,
-5.789930515163839
],
[
12.436688266660868,
-5.6843038875592455
],
[
12.468004184629736,
-5.248361504745005
],
[
12.63161176926579,
-4.991271254092936
],
[
12.995517205465177,
-4.781103203961884
],
[
13.258240187237048,
-4.882957452009165
],
[
13.600234816144678,
-4.50013844159097
],
[
14.144956088933299,
-4.510008640158716
],
[
14.209034864975223,
-4.793092136253598
],
[
14.582603794013181,
-4.97023894615014
],
[
15.170991652088444,
-4.343507175314301
],
[
15.753540073314753,
-3.8551648901560966
],
[
16.0062895036543,
-3.535132744972529
],
[
15.972803175529151,
-2.7123922664536124
],
[
16.407091912510054,
-1.7409270157986825
],
[
16.865306837642123,
-1.2258163387132868
],
[
17.523716261472856,
-0.743830254726987
],
[
17.638644646889986,
-0.4248316381892465
],
[
17.66355268725468,
-0.05808399821381727
],
[
17.826540154703252,
0.28892324462610475
],
[
17.774191928791566,
0.8556586775710854
],
[
17.898835483479587,
1.7418319767282782
],
[
18.094275750407434,
2.365721543788055
],
[
18.393792351971143,
2.90044342692822
],
[
18.45306521980993,
3.5043858911233485
],
[
18.54298221199778,
4.201785183118318
],
[
18.93231245288476,
4.709506130385975
],
[
19.46778364429315,
5.03152781821278
],
[
20.290679152108936,
4.691677761245288
],
[
20.927591180106276,
4.322785549329737
],
[
21.659122755630023,
4.22434194581372
],
[
22.405123732195538,
4.029160061047321
],
[
22.70412356943629,
4.633050848810157
],
[
22.841479526468106,
4.710126247573484
],
[
23.29721398285014,
4.609693101414223
],
[
24.410531040146253,
5.10878408448913
],
[
24.805028924262416,
4.89724660890235
],
[
25.12883344900328,
4.92724477784779
],
[
25.278798455514305,
5.170408229997192
],
[
25.650455356557472,
5.256087754737123
],
[
26.402760857862543,
5.1508745385908705
],
[
27.04406538260471,
5.127852688004836
],
[
27.37422610851749,
5.233944403500061
],
[
27.97997724784281,
4.408413397637375
],
[
28.428993768026913,
4.287154649264494
],
[
28.696677687298802,
4.455077215996937
],
[
29.1590784034465,
4.389267279473231
],
[
29.71599531425602,
4.600804755060025
],
[
29.953500197069474,
4.173699042167684
],
[
30.83385989759381,
3.509165961110341
],
[
30.77334679538004,
2.339883327642127
],
[
31.174149204235817,
2.204465236821264
],
[
30.85267011894806,
1.8493964705438088
],
[
30.468507521290295,
1.5838054467797207
],
[
30.086153598762706,
1.0623127303062887
],
[
29.87577884290249,
0.5973798689763044
],
[
29.819503208136638,
-0.2053101538133717
],
[
29.58783776217217,
-0.5874056941794805
],
[
29.579466180140884,
-1.3413131648856265
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Republic of Congo",
"sov_a3": "COG",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Republic of Congo",
"adm0_a3": "COG",
"geou_dif": 0,
"geounit": "Republic of Congo",
"gu_a3": "COG",
"su_dif": 0,
"subunit": "Republic of Congo",
"su_a3": "COG",
"brk_diff": 0,
"name": "Congo",
"name_long": "Republic of Congo",
"brk_a3": "COG",
"brk_name": "Republic of Congo",
"brk_group": "",
"abbrev": "Rep. Congo",
"postal": "CG",
"formal_en": "Republic of Congo",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Congo, Rep.",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 10,
"pop_est": 4012809,
"gdp_md_est": 15350,
"pop_year": -99,
"lastcensus": 2007,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CG",
"iso_a3": "COG",
"iso_n3": "178",
"un_a3": "178",
"wb_a2": "CG",
"wb_a3": "COG",
"woe_id": -99,
"adm0_a3_is": "COG",
"adm0_a3_us": "COG",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Middle Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 5,
"long_len": 17,
"abbrev_len": 10,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
12.995517205465177,
-4.781103203961884
],
[
12.620759718484493,
-4.438023369976136
],
[
12.318607618873926,
-4.606230157086188
],
[
11.91496300624209,
-5.037986748884791
],
[
11.093772820691925,
-3.978826592630547
],
[
11.855121697648116,
-3.4268706193210505
],
[
11.478038771214303,
-2.7656189917142413
],
[
11.820963575903193,
-2.514161472181982
],
[
12.495702752338161,
-2.391688327650243
],
[
12.575284458067642,
-1.948511244315135
],
[
13.109618767965628,
-2.4287403296035137
],
[
13.99240726080771,
-2.4708049454890997
],
[
14.299210239324566,
-1.998275648612214
],
[
14.425455763413595,
-1.333406670744971
],
[
14.316418491277744,
-0.5526274552470483
],
[
13.843320753645656,
0.038757635901149
],
[
14.276265903386957,
1.1969298364266194
],
[
14.026668735417218,
1.3956773950211527
],
[
13.282631463278818,
1.3141836612968805
],
[
13.003113641012078,
1.8308963077833198
],
[
13.075822381246752,
2.2670970727590145
],
[
14.33781253424658,
2.2278746606494906
],
[
15.146341993885244,
1.9640147973671844
],
[
15.940918816805066,
1.7276726342802957
],
[
16.012852410555354,
2.267639675298085
],
[
16.537058139724138,
3.198254706226279
],
[
17.133042433346304,
3.728196519379452
],
[
17.809900343505262,
3.5601964379985698
],
[
18.45306521980993,
3.5043858911233485
],
[
18.393792351971143,
2.90044342692822
],
[
18.094275750407434,
2.365721543788055
],
[
17.898835483479587,
1.7418319767282782
],
[
17.774191928791566,
0.8556586775710854
],
[
17.826540154703252,
0.28892324462610475
],
[
17.66355268725468,
-0.05808399821381727
],
[
17.638644646889986,
-0.4248316381892465
],
[
17.523716261472856,
-0.743830254726987
],
[
16.865306837642123,
-1.2258163387132868
],
[
16.407091912510054,
-1.7409270157986825
],
[
15.972803175529151,
-2.7123922664536124
],
[
16.0062895036543,
-3.535132744972529
],
[
15.753540073314753,
-3.8551648901560966
],
[
15.170991652088444,
-4.343507175314301
],
[
14.582603794013181,
-4.97023894615014
],
[
14.209034864975223,
-4.793092136253598
],
[
14.144956088933299,
-4.510008640158716
],
[
13.600234816144678,
-4.50013844159097
],
[
13.258240187237048,
-4.882957452009165
],
[
12.995517205465177,
-4.781103203961884
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Colombia",
"sov_a3": "COL",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Colombia",
"adm0_a3": "COL",
"geou_dif": 0,
"geounit": "Colombia",
"gu_a3": "COL",
"su_dif": 0,
"subunit": "Colombia",
"su_a3": "COL",
"brk_diff": 0,
"name": "Colombia",
"name_long": "Colombia",
"brk_a3": "COL",
"brk_name": "Colombia",
"brk_group": "",
"abbrev": "Col.",
"postal": "CO",
"formal_en": "Republic of Colombia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Colombia",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 1,
"pop_est": 45644023,
"gdp_md_est": 395400,
"pop_year": -99,
"lastcensus": 2006,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CO",
"iso_a3": "COL",
"iso_n3": "170",
"un_a3": "170",
"wb_a2": "CO",
"wb_a3": "COL",
"woe_id": -99,
"adm0_a3_is": "COL",
"adm0_a3_us": "COL",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 8,
"long_len": 8,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-75.37322323271385,
-0.1520317521204504
],
[
-75.8014658271166,
0.08480133707320192
],
[
-76.29231441924097,
0.4160472680641192
],
[
-76.5763797675494,
0.256935533037435
],
[
-77.4249843004304,
0.395686753741117
],
[
-77.66861284047044,
0.8258930525709616
],
[
-77.85506140817952,
0.8099250349927729
],
[
-78.85525875518871,
1.380923773601822
],
[
-78.99093522817104,
1.6913699405952514
],
[
-78.61783138702371,
1.766404120283056
],
[
-78.66211808949785,
2.2673554549204766
],
[
-78.42761043975733,
2.629555568854215
],
[
-77.93154252797149,
2.6966057397529255
],
[
-77.51043128122501,
3.325016994638247
],
[
-77.12768978545526,
3.8496361352653565
],
[
-77.49627193877703,
4.087606105969428
],
[
-77.3076012844794,
4.6679841170394525
],
[
-77.53322058786573,
5.582811997902497
],
[
-77.31881507028675,
5.84535411216136
],
[
-77.47666073272228,
6.691116441266303
],
[
-77.88157141794525,
7.223771267114785
],
[
-77.7534138658614,
7.709839789252143
],
[
-77.43110795765699,
7.638061224798734
],
[
-77.24256649444008,
7.935278225125444
],
[
-77.47472286651133,
8.524286200388218
],
[
-77.35336076527386,
8.67050466555807
],
[
-76.83667395700357,
8.638749497914716
],
[
-76.08638383655786,
9.336820583529487
],
[
-75.67460018584006,
9.443248195834599
],
[
-75.66470414905618,
9.774003200718738
],
[
-75.48042599150335,
10.618990383339309
],
[
-74.90689510771199,
11.083044745320322
],
[
-74.27675269234489,
11.102035834187587
],
[
-74.1972226630477,
11.310472723836867
],
[
-73.41476396350029,
11.22701528568548
],
[
-72.62783525255963,
11.731971543825523
],
[
-72.23819495307892,
11.955549628136326
],
[
-71.75409013536864,
12.437303168177309
],
[
-71.3998223537917,
12.376040757695293
],
[
-71.13746110704588,
12.112981879113505
],
[
-71.3315836249503,
11.776284084515808
],
[
-71.97392167833829,
11.60867157637712
],
[
-72.22757544624294,
11.10870209395324
],
[
-72.61465776232521,
10.821975409381778
],
[
-72.9052860175347,
10.450344346554772
],
[
-73.02760413276957,
9.736770331252444
],
[
-73.30495154488005,
9.151999823437606
],
[
-72.7887298245004,
9.085027167187334
],
[
-72.6604947577681,
8.625287787302682
],
[
-72.43986223009796,
8.405275376820029
],
[
-72.36090064155597,
8.002638454617895
],
[
-72.47967892117885,
7.632506008327354
],
[
-72.44448727078807,
7.423784898300482
],
[
-72.19835242378188,
7.340430813013683
],
[
-71.96017574734864,
6.991614895043539
],
[
-70.67423356798152,
7.087784735538719
],
[
-70.09331295437242,
6.96037649172311
],
[
-69.38947994655712,
6.0998605411988365
],
[
-68.98531856960236,
6.206804917826858
],
[
-68.26505245631823,
6.153268133972475
],
[
-67.69508724635502,
6.267318020040647
],
[
-67.34143958196557,
6.095468044454023
],
[
-67.52153194850275,
5.556870428891969
],
[
-67.74469662135522,
5.221128648291668
],
[
-67.82301225449355,
4.503937282728899
],
[
-67.62183590358129,
3.8394817163199946
],
[
-67.33756384954368,
3.5423422306417223
],
[
-67.30317318385345,
3.31845408773718
],
[
-67.8099381171237,
2.820655015469569
],
[
-67.44709204778631,
2.6002808699608693
],
[
-67.18129431829307,
2.250638129074062
],
[
-66.87632585312258,
1.253360500489336
],
[
-67.0650481838525,
1.130112209473225
],
[
-67.2599975246736,
1.7199986840849562
],
[
-67.5378100246747,
2.03716278727633
],
[
-67.86856502955884,
1.6924551456733923
],
[
-69.81697323269162,
1.7148052026396243
],
[
-69.80459672715773,
1.0890811222334662
],
[
-69.21863766140018,
0.9856765812174331
],
[
-69.25243404811906,
0.6026508650700748
],
[
-69.45239600287246,
0.7061587589506929
],
[
-70.01556576198931,
0.5414142928042054
],
[
-70.02065589057005,
-0.18515634521953928
],
[
-69.5770653957766,
-0.549991957200163
],
[
-69.42048580593223,
-1.1226185034264091
],
[
-69.44410193548961,
-1.5562871232198177
],
[
-69.89363521999663,
-4.2981869441943275
],
[
-70.39404395209499,
-3.7665914852078255
],
[
-70.69268205430971,
-3.742872002785859
],
[
-70.04770850287485,
-2.725156345229699
],
[
-70.81347571479196,
-2.2568645158007428
],
[
-71.41364579942979,
-2.3428024227021282
],
[
-71.7747607082854,
-2.169789727388938
],
[
-72.32578650581365,
-2.434218031426454
],
[
-73.07039221870724,
-2.3089543595509525
],
[
-73.6595035468346,
-1.2604912247811342
],
[
-74.12239518908906,
-1.002832533373848
],
[
-74.44160051135597,
-0.5308200008198867
],
[
-75.10662451852008,
-0.05720549886486026
],
[
-75.37322323271385,
-0.1520317521204504
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Costa Rica",
"sov_a3": "CRI",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Costa Rica",
"adm0_a3": "CRI",
"geou_dif": 0,
"geounit": "Costa Rica",
"gu_a3": "CRI",
"su_dif": 0,
"subunit": "Costa Rica",
"su_a3": "CRI",
"brk_diff": 0,
"name": "Costa Rica",
"name_long": "Costa Rica",
"brk_a3": "CRI",
"brk_name": "Costa Rica",
"brk_group": "",
"abbrev": "C.R.",
"postal": "CR",
"formal_en": "Republic of Costa Rica",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Costa Rica",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 2,
"mapcolor9": 4,
"mapcolor13": 2,
"pop_est": 4253877,
"gdp_md_est": 48320,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "5. Emerging region: G20",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CR",
"iso_a3": "CRI",
"iso_n3": "188",
"un_a3": "188",
"wb_a2": "CR",
"wb_a3": "CRI",
"woe_id": -99,
"adm0_a3_is": "CRI",
"adm0_a3_us": "CRI",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Central America",
"region_wb": "Latin America & Caribbean",
"name_len": 10,
"long_len": 10,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-82.96578304719736,
8.225027980985985
],
[
-83.50843726269431,
8.446926581247283
],
[
-83.71147396516908,
8.656836249216866
],
[
-83.59631303580665,
8.830443223501419
],
[
-83.63264156770784,
9.051385809765321
],
[
-83.90988562695374,
9.29080272057358
],
[
-84.30340165885636,
9.487354030795714
],
[
-84.64764421256866,
9.61553742109571
],
[
-84.71335079622777,
9.908051866083852
],
[
-84.97566036654133,
10.086723130733006
],
[
-84.91137488477024,
9.795991522658923
],
[
-85.11092342806532,
9.55703969974131
],
[
-85.33948828809227,
9.83454214114866
],
[
-85.66078650586698,
9.933347479690724
],
[
-85.79744483106285,
10.134885565629034
],
[
-85.79170874707843,
10.439337266476613
],
[
-85.65931372754667,
10.75433095951172
],
[
-85.94172543002176,
10.895278428587801
],
[
-85.7125404528073,
11.088444932494824
],
[
-85.5618519762442,
11.217119248901597
],
[
-84.90300330273895,
10.952303371621896
],
[
-84.67306901725627,
11.082657172078143
],
[
-84.35593075228104,
10.999225572142905
],
[
-84.19017859570485,
10.793450018756674
],
[
-83.89505449088595,
10.726839097532446
],
[
-83.65561174186158,
10.938764146361422
],
[
-83.40231970898296,
10.395438137244653
],
[
-83.01567664257517,
9.992982082555557
],
[
-82.54619625520348,
9.566134751824677
],
[
-82.93289099804358,
9.476812038608173
],
[
-82.92715491405916,
9.074330145702916
],
[
-82.71918311230053,
8.925708726431495
],
[
-82.86865719270477,
8.807266343618522
],
[
-82.82977067740516,
8.62629547773237
],
[
-82.91317643912421,
8.42351715741907
],
[
-82.96578304719736,
8.225027980985985
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Cuba",
"sov_a3": "CUB",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Cuba",
"adm0_a3": "CUB",
"geou_dif": 0,
"geounit": "Cuba",
"gu_a3": "CUB",
"su_dif": 0,
"subunit": "Cuba",
"su_a3": "CUB",
"brk_diff": 0,
"name": "Cuba",
"name_long": "Cuba",
"brk_a3": "CUB",
"brk_name": "Cuba",
"brk_group": "",
"abbrev": "Cuba",
"postal": "CU",
"formal_en": "Republic of Cuba",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Cuba",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 5,
"mapcolor9": 3,
"mapcolor13": 4,
"pop_est": 11451652,
"gdp_md_est": 108200,
"pop_year": -99,
"lastcensus": 2002,
"gdp_year": -99,
"economy": "5. Emerging region: G20",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CU",
"iso_a3": "CUB",
"iso_n3": "192",
"un_a3": "192",
"wb_a2": "CU",
"wb_a3": "CUB",
"woe_id": -99,
"adm0_a3_is": "CUB",
"adm0_a3_us": "CUB",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Caribbean",
"region_wb": "Latin America & Caribbean",
"name_len": 4,
"long_len": 4,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-82.26815121125706,
23.188610744717707
],
[
-81.40445716014683,
23.117271429938782
],
[
-80.6187686835812,
23.105980129483
],
[
-79.67952368846025,
22.76530324959883
],
[
-79.28148596873208,
22.399201565027056
],
[
-78.34743445505649,
22.512166246017088
],
[
-77.99329586456028,
22.277193508385935
],
[
-77.14642249216105,
21.657851467367834
],
[
-76.52382483590856,
21.206819566324373
],
[
-76.19462012399319,
21.220565497314013
],
[
-75.59822241891267,
21.016624457274133
],
[
-75.67106035022806,
20.735091254148003
],
[
-74.9338960435845,
20.693905137611385
],
[
-74.17802486845126,
20.28462779385974
],
[
-74.29664811877726,
20.05037852628068
],
[
-74.96159461129294,
19.92343537035569
],
[
-75.63468014189459,
19.873774318923196
],
[
-76.323656175426,
19.95289093676206
],
[
-77.75548092315307,
19.855480861891877
],
[
-77.08510840524674,
20.413353786698792
],
[
-77.49265458851661,
20.673105373613893
],
[
-78.13729224314159,
20.739948838783434
],
[
-78.48282670766119,
21.02861338956585
],
[
-78.71986650258401,
21.598113511638434
],
[
-79.28499996612794,
21.5591753199065
],
[
-80.21747534861865,
21.827324327069036
],
[
-80.51753455272141,
22.03707896574176
],
[
-81.82094336620318,
22.19205658618507
],
[
-82.16999182811864,
22.387109279870753
],
[
-81.79500179719267,
22.636964830001958
],
[
-82.77589799674085,
22.688150336187064
],
[
-83.49445878775936,
22.16851797127613
],
[
-83.90880042187563,
22.154565334557333
],
[
-84.05215084505326,
21.910575059491254
],
[
-84.54703019889638,
21.801227728761646
],
[
-84.97491105827311,
21.89602814380109
],
[
-84.44706214062776,
22.204949856041907
],
[
-84.23035702181178,
22.565754706303764
],
[
-83.7782399156902,
22.788118394455694
],
[
-83.26754757356575,
22.983041897060644
],
[
-82.51043616405751,
23.078746649665188
],
[
-82.26815121125706,
23.188610744717707
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Northern Cyprus",
"sov_a3": "CYN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Northern Cyprus",
"adm0_a3": "CYN",
"geou_dif": 0,
"geounit": "Northern Cyprus",
"gu_a3": "CYN",
"su_dif": 0,
"subunit": "Northern Cyprus",
"su_a3": "CYN",
"brk_diff": 1,
"name": "N. Cyprus",
"name_long": "Northern Cyprus",
"brk_a3": "B20",
"brk_name": "N. Cyprus",
"brk_group": "",
"abbrev": "N. Cy.",
"postal": "CN",
"formal_en": "Turkish Republic of Northern Cyprus",
"formal_fr": "",
"note_adm0": "Self admin.",
"note_brk": "Self admin.; Claimed by Cyprus",
"name_sort": "Cyprus, Northern",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 1,
"mapcolor9": 4,
"mapcolor13": 8,
"pop_est": 265100,
"gdp_md_est": 3600,
"pop_year": -99,
"lastcensus": -99,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "-99",
"iso_a3": "-99",
"iso_n3": "-99",
"un_a3": "-099",
"wb_a2": "-99",
"wb_a3": "-99",
"woe_id": -99,
"adm0_a3_is": "CYP",
"adm0_a3_us": "CYP",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Western Asia",
"region_wb": "Europe & Central Asia",
"name_len": 9,
"long_len": 15,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
32.73178022637745,
35.14002594658844
],
[
32.80247358575275,
35.14550364841138
],
[
32.946960890440806,
35.3867033961337
],
[
33.667227003724946,
35.37321584730552
],
[
34.576473829900465,
35.67159556735879
],
[
33.900804477684204,
35.245755927057616
],
[
33.97361657078346,
35.058506374648005
],
[
33.86643965021011,
35.09359467217419
],
[
33.675391880027064,
35.01786286065045
],
[
33.5256852556775,
35.03868846286407
],
[
33.47581749851585,
35.000344550103506
],
[
33.45592207208347,
35.10142365166641
],
[
33.3838334490363,
35.16271190036457
],
[
33.19097700372305,
35.17312470147138
],
[
32.919572381326134,
35.08783274997364
],
[
32.73178022637745,
35.14002594658844
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Cyprus",
"sov_a3": "CYP",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Cyprus",
"adm0_a3": "CYP",
"geou_dif": 0,
"geounit": "Cyprus",
"gu_a3": "CYP",
"su_dif": 0,
"subunit": "Cyprus",
"su_a3": "CYP",
"brk_diff": 0,
"name": "Cyprus",
"name_long": "Cyprus",
"brk_a3": "CYP",
"brk_name": "Cyprus",
"brk_group": "",
"abbrev": "Cyp.",
"postal": "CY",
"formal_en": "Republic of Cyprus",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Cyprus",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 2,
"mapcolor9": 3,
"mapcolor13": 7,
"pop_est": 531640,
"gdp_md_est": 22700,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CY",
"iso_a3": "CYP",
"iso_n3": "196",
"un_a3": "196",
"wb_a2": "CY",
"wb_a3": "CYP",
"woe_id": -99,
"adm0_a3_is": "CYP",
"adm0_a3_us": "CYP",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Western Asia",
"region_wb": "Europe & Central Asia",
"name_len": 6,
"long_len": 6,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
33.97361657078346,
35.058506374648005
],
[
34.00488081232004,
34.97809784600186
],
[
32.97982710137845,
34.57186941175544
],
[
32.49029625827754,
34.701654771456475
],
[
32.25666710788596,
35.10323232679663
],
[
32.73178022637745,
35.14002594658844
],
[
32.919572381326134,
35.08783274997364
],
[
33.19097700372305,
35.17312470147138
],
[
33.3838334490363,
35.16271190036457
],
[
33.45592207208347,
35.10142365166641
],
[
33.47581749851585,
35.000344550103506
],
[
33.5256852556775,
35.03868846286407
],
[
33.675391880027064,
35.01786286065045
],
[
33.86643965021011,
35.09359467217419
],
[
33.97361657078346,
35.058506374648005
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Czech Republic",
"sov_a3": "CZE",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Czech Republic",
"adm0_a3": "CZE",
"geou_dif": 0,
"geounit": "Czech Republic",
"gu_a3": "CZE",
"su_dif": 0,
"subunit": "Czech Republic",
"su_a3": "CZE",
"brk_diff": 0,
"name": "Czech Rep.",
"name_long": "Czech Republic",
"brk_a3": "CZE",
"brk_name": "Czech Rep.",
"brk_group": "",
"abbrev": "Cz. Rep.",
"postal": "CZ",
"formal_en": "Czech Republic",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Czech Republic",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 1,
"mapcolor9": 2,
"mapcolor13": 6,
"pop_est": 10211904,
"gdp_md_est": 265200,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "CZ",
"iso_a3": "CZE",
"iso_n3": "203",
"un_a3": "203",
"wb_a2": "CZ",
"wb_a3": "CZE",
"woe_id": -99,
"adm0_a3_is": "CZE",
"adm0_a3_us": "CZE",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Eastern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 10,
"long_len": 14,
"abbrev_len": 8,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
16.960288120194576,
48.5969823268506
],
[
16.499282667718774,
48.78580801044511
],
[
16.02964725105022,
48.73389903420793
],
[
15.253415561593982,
49.03907420510758
],
[
14.901447381254057,
48.964401760445824
],
[
14.338897739324722,
48.55530528420721
],
[
13.595945672264437,
48.87717194273715
],
[
13.031328973043431,
49.30706818297324
],
[
12.521024204161193,
49.547415269562734
],
[
12.415190870827445,
49.96912079528057
],
[
12.240111118222558,
50.266337795607285
],
[
12.966836785543194,
50.484076443069085
],
[
13.338131951560285,
50.73323436136435
],
[
14.056227654688172,
50.9269176295943
],
[
14.307013380600637,
51.117267767941414
],
[
14.570718214586066,
51.002339382524276
],
[
15.01699588385867,
51.10667409932158
],
[
15.490972120839729,
50.78472992614321
],
[
16.23862674323857,
50.69773265237984
],
[
16.176253289462267,
50.42260732685791
],
[
16.719475945714436,
50.21574656839354
],
[
16.86876915860566,
50.47397370055603
],
[
17.55456709155112,
50.36214590107642
],
[
17.64944502123899,
50.049038397819956
],
[
18.392913852622172,
49.98862864847075
],
[
18.853144158613617,
49.49622976337764
],
[
18.554971144289482,
49.495015367218784
],
[
18.399993523846177,
49.31500051533004
],
[
18.170498488037964,
49.271514797556435
],
[
18.104972771891852,
49.04398346617531
],
[
17.913511590250465,
48.996492824899086
],
[
17.88648481616181,
48.90347524677371
],
[
17.545006951577108,
48.80001902932537
],
[
17.101984897538898,
48.816968899117114
],
[
16.960288120194576,
48.5969823268506
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Germany",
"sov_a3": "DEU",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Germany",
"adm0_a3": "DEU",
"geou_dif": 0,
"geounit": "Germany",
"gu_a3": "DEU",
"su_dif": 0,
"subunit": "Germany",
"su_a3": "DEU",
"brk_diff": 0,
"name": "Germany",
"name_long": "Germany",
"brk_a3": "DEU",
"brk_name": "Germany",
"brk_group": "",
"abbrev": "Ger.",
"postal": "D",
"formal_en": "Federal Republic of Germany",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Germany",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 5,
"mapcolor9": 5,
"mapcolor13": 1,
"pop_est": 82329758,
"gdp_md_est": 2918000,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "1. Developed region: G7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "DE",
"iso_a3": "DEU",
"iso_n3": "276",
"un_a3": "276",
"wb_a2": "DE",
"wb_a3": "DEU",
"woe_id": -99,
"adm0_a3_is": "DEU",
"adm0_a3_us": "DEU",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Western Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
9.89606814946319,
47.580196845075704
],
[
9.594226108446378,
47.5250580918202
],
[
8.522611932009795,
47.83082754169135
],
[
8.317301466514095,
47.61357982033627
],
[
7.466759067422288,
47.62058197691192
],
[
7.593676385131062,
48.33301911070373
],
[
8.099278598674857,
49.01778351500343
],
[
6.65822960778371,
49.20195831969164
],
[
6.186320428094177,
49.463802802114515
],
[
6.242751092156993,
49.90222565367873
],
[
6.043073357781111,
50.128051662794235
],
[
6.15665815595878,
50.80372101501058
],
[
5.988658074577813,
51.851615709025054
],
[
6.589396599970826,
51.852029120483394
],
[
6.842869500362383,
52.22844025329755
],
[
7.092053256873896,
53.144043280644894
],
[
6.905139601274129,
53.48216217713065
],
[
7.100424838905269,
53.69393219666267
],
[
7.936239454793963,
53.74829580343379
],
[
8.121706170289485,
53.52779246684429
],
[
8.800734490604668,
54.020785630908904
],
[
8.57211795414537,
54.39564647075406
],
[
8.526229282270208,
54.96274363872516
],
[
9.282048780971138,
54.83086538351631
],
[
9.921906365609232,
54.98310415304803
],
[
9.9395797054529,
54.596641954153256
],
[
10.950112338920519,
54.363607082733154
],
[
10.93946699386845,
54.00869334575259
],
[
11.956252475643282,
54.19648550070116
],
[
12.518440382546714,
54.470370591847995
],
[
13.647467075259499,
54.0755109727059
],
[
14.119686313542559,
53.75702912049104
],
[
14.353315463934166,
53.248171291713106
],
[
14.074521111719434,
52.98126251892535
],
[
14.437599725002201,
52.624850165408304
],
[
14.685026482815715,
52.089947414755216
],
[
14.607098422919648,
51.74518809671997
],
[
15.016995883858783,
51.10667409932171
],
[
14.570718214586122,
51.00233938252438
],
[
14.307013380600665,
51.11726776794137
],
[
14.056227654688314,
50.92691762959436
],
[
13.338131951560399,
50.73323436136428
],
[
12.96683678554325,
50.48407644306917
],
[
12.240111118222671,
50.26633779560723
],
[
12.415190870827473,
49.96912079528062
],
[
12.521024204161336,
49.54741526956275
],
[
13.031328973043514,
49.30706818297324
],
[
13.595945672264577,
48.877171942737164
],
[
13.243357374737116,
48.41611481382904
],
[
12.884102817443875,
48.28914581968786
],
[
13.025851271220517,
47.63758352313596
],
[
12.932626987366064,
47.467645575544
],
[
12.620759718484521,
47.672387600284424
],
[
12.141357456112871,
47.70308340106578
],
[
11.426414015354851,
47.52376618101306
],
[
10.544504021861599,
47.5663992376538
],
[
10.402083774465325,
47.30248769793917
],
[
9.89606814946319,
47.580196845075704
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Djibouti",
"sov_a3": "DJI",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Djibouti",
"adm0_a3": "DJI",
"geou_dif": 0,
"geounit": "Djibouti",
"gu_a3": "DJI",
"su_dif": 0,
"subunit": "Djibouti",
"su_a3": "DJI",
"brk_diff": 0,
"name": "Djibouti",
"name_long": "Djibouti",
"brk_a3": "DJI",
"brk_name": "Djibouti",
"brk_group": "",
"abbrev": "Dji.",
"postal": "DJ",
"formal_en": "Republic of Djibouti",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Djibouti",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 2,
"mapcolor9": 4,
"mapcolor13": 8,
"pop_est": 516055,
"gdp_md_est": 1885,
"pop_year": -99,
"lastcensus": 2009,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "DJ",
"iso_a3": "DJI",
"iso_n3": "262",
"un_a3": "262",
"wb_a2": "DJ",
"wb_a3": "DJI",
"woe_id": -99,
"adm0_a3_is": "DJI",
"adm0_a3_us": "DJI",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Eastern Africa",
"region_wb": "Middle East & North Africa",
"name_len": 8,
"long_len": 8,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
43.08122602720016,
12.699638576707116
],
[
43.31785241066467,
12.390148423711025
],
[
43.286381463398925,
11.974928290245884
],
[
42.715873650896526,
11.735640570518342
],
[
43.14530480324214,
11.462039699748857
],
[
42.77685184100096,
10.92687856693442
],
[
42.55493000000013,
11.105110000000195
],
[
42.31414000000012,
11.034200000000055
],
[
41.755570000000205,
11.050910000000101
],
[
41.73959000000019,
11.355110000000138
],
[
41.66176000000013,
11.631199999999978
],
[
42.000000000000114,
12.100000000000136
],
[
42.35156000000012,
12.542230000000131
],
[
42.77964236834475,
12.455415757695675
],
[
43.08122602720016,
12.699638576707116
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Denmark",
"sov_a3": "DN1",
"adm0_dif": 1,
"level": 2,
"type": "Country",
"admin": "Denmark",
"adm0_a3": "DNK",
"geou_dif": 0,
"geounit": "Denmark",
"gu_a3": "DNK",
"su_dif": 0,
"subunit": "Denmark",
"su_a3": "DNK",
"brk_diff": 0,
"name": "Denmark",
"name_long": "Denmark",
"brk_a3": "DNK",
"brk_name": "Denmark",
"brk_group": "",
"abbrev": "Den.",
"postal": "DK",
"formal_en": "Kingdom of Denmark",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Denmark",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 12,
"pop_est": 5500510,
"gdp_md_est": 203600,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "DK",
"iso_a3": "DNK",
"iso_n3": "208",
"un_a3": "208",
"wb_a2": "DK",
"wb_a3": "DNK",
"woe_id": -99,
"adm0_a3_is": "DNK",
"adm0_a3_us": "DNK",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Northern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
12.690006137755631,
55.609990953180784
],
[
12.089991082414741,
54.80001455343793
],
[
11.043543328504228,
55.364863796604254
],
[
10.903913608451631,
55.77995473898875
],
[
12.370904168353292,
56.111407375708836
],
[
12.690006137755631,
55.609990953180784
]
]
],
[
[
[
10.912181837618363,
56.458621324277914
],
[
10.667803989309988,
56.08138336854722
],
[
10.369992710011985,
56.19000722922473
],
[
9.649984978889307,
55.469999498102055
],
[
9.921906365609175,
54.98310415304806
],
[
9.282048780971138,
54.83086538351617
],
[
8.526229282270236,
54.96274363872499
],
[
8.12031090661759,
55.517722683323626
],
[
8.08997684086225,
56.5400117051376
],
[
8.256581658571264,
56.8099693874303
],
[
8.543437534223386,
57.110002753316905
],
[
9.42446902836761,
57.17206614849948
],
[
9.775558709358563,
57.44794078228966
],
[
10.580005730846153,
57.73001658795485
],
[
10.546105991262692,
57.215732733786155
],
[
10.250000034230226,
56.89001618105047
],
[
10.369992710011985,
56.609981594460834
],
[
10.912181837618363,
56.458621324277914
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Dominican Republic",
"sov_a3": "DOM",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Dominican Republic",
"adm0_a3": "DOM",
"geou_dif": 0,
"geounit": "Dominican Republic",
"gu_a3": "DOM",
"su_dif": 0,
"subunit": "Dominican Republic",
"su_a3": "DOM",
"brk_diff": 0,
"name": "Dominican Rep.",
"name_long": "Dominican Republic",
"brk_a3": "DOM",
"brk_name": "Dominican Rep.",
"brk_group": "",
"abbrev": "Dom. Rep.",
"postal": "DO",
"formal_en": "Dominican Republic",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Dominican Republic",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 2,
"mapcolor9": 5,
"mapcolor13": 7,
"pop_est": 9650054,
"gdp_md_est": 78000,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "DO",
"iso_a3": "DOM",
"iso_n3": "214",
"un_a3": "214",
"wb_a2": "DO",
"wb_a3": "DOM",
"woe_id": -99,
"adm0_a3_is": "DOM",
"adm0_a3_us": "DOM",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Caribbean",
"region_wb": "Latin America & Caribbean",
"name_len": 14,
"long_len": 18,
"abbrev_len": 9,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-71.71236141629296,
19.714455878167357
],
[
-71.58730445014663,
19.8849105900821
],
[
-70.80670610216174,
19.880285549391985
],
[
-70.21436499701613,
19.62288524014616
],
[
-69.95081519232758,
19.64799998624001
],
[
-69.76925004747008,
19.29326711677244
],
[
-69.22212582057988,
19.313214219637103
],
[
-69.25434607611385,
19.015196234609874
],
[
-68.80941199408083,
18.979074408437853
],
[
-68.31794328476897,
18.612197577381693
],
[
-68.68931596543452,
18.205142320218613
],
[
-69.16494584824892,
18.42264842373511
],
[
-69.62398759629764,
18.38071299893025
],
[
-69.95293392605154,
18.42830699307106
],
[
-70.1332329983179,
18.245915025296895
],
[
-70.51713721381422,
18.184290879788833
],
[
-70.66929846869763,
18.426885891183034
],
[
-70.99995012071719,
18.283328762276213
],
[
-71.4002099270339,
17.5985643579766
],
[
-71.65766191271202,
17.7575727401387
],
[
-71.70830481635805,
18.044997056546094
],
[
-71.68773759630588,
18.31666006110447
],
[
-71.94511206733556,
18.61690013272026
],
[
-71.7013026597825,
18.785416978424053
],
[
-71.62487321642283,
19.169837958243306
],
[
-71.71236141629296,
19.714455878167357
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Algeria",
"sov_a3": "DZA",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Algeria",
"adm0_a3": "DZA",
"geou_dif": 0,
"geounit": "Algeria",
"gu_a3": "DZA",
"su_dif": 0,
"subunit": "Algeria",
"su_a3": "DZA",
"brk_diff": 0,
"name": "Algeria",
"name_long": "Algeria",
"brk_a3": "DZA",
"brk_name": "Algeria",
"brk_group": "",
"abbrev": "Alg.",
"postal": "DZ",
"formal_en": "People's Democratic Republic of Algeria",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Algeria",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 1,
"mapcolor9": 6,
"mapcolor13": 3,
"pop_est": 34178188,
"gdp_md_est": 232900,
"pop_year": -99,
"lastcensus": 2008,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "DZ",
"iso_a3": "DZA",
"iso_n3": "012",
"un_a3": "012",
"wb_a2": "DZ",
"wb_a3": "DZA",
"woe_id": -99,
"adm0_a3_is": "DZA",
"adm0_a3_us": "DZA",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Northern Africa",
"region_wb": "Middle East & North Africa",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.267419467800039,
19.155265204337
],
[
3.158133172222705,
19.057364203360038
],
[
3.1466610042539003,
19.693578599521445
],
[
2.683588494486429,
19.856230170160117
],
[
2.06099083823392,
20.142233384679486
],
[
1.8232275732590324,
20.610809434486043
],
[
-1.5500548974576134,
22.792665920497384
],
[
-4.923337368174231,
24.974574082941
],
[
-8.684399786809053,
27.395744126896005
],
[
-8.665124477564191,
27.589479071558227
],
[
-8.665589565454809,
27.656425889592356
],
[
-8.674116176782974,
28.84128896739658
],
[
-7.059227667661929,
29.57922842052453
],
[
-6.060632290053774,
29.731699734001694
],
[
-5.242129278982787,
30.00044302013559
],
[
-4.859646165374471,
30.501187649043846
],
[
-3.690441046554696,
30.896951605751156
],
[
-3.647497931320146,
31.637294012980675
],
[
-3.068980271812648,
31.724497992473218
],
[
-2.616604783529567,
32.09434621838615
],
[
-1.30789913573787,
32.2628889023061
],
[
-1.1245511539663084,
32.65152151135713
],
[
-1.3880492822225676,
32.86401500094131
],
[
-1.7334545556614671,
33.919712836231994
],
[
-1.7929858056616865,
34.527918606091205
],
[
-2.169913702798624,
35.16839630791668
],
[
-1.208602871089056,
35.7148487411871
],
[
-0.12745439289460592,
35.888662421200806
],
[
0.5038765804152092,
36.30127289483528
],
[
1.466918572606545,
36.605647081034405
],
[
3.1616988460508253,
36.78390493422522
],
[
4.81575809084913,
36.86503693292346
],
[
5.3201200700177935,
36.71651886651662
],
[
6.261819695672613,
37.11065501560674
],
[
7.330384962603971,
37.11838064223437
],
[
7.737078484741005,
36.885707505840216
],
[
8.420964389691676,
36.94642731378316
],
[
8.217824334352315,
36.433176988260286
],
[
8.376367628623768,
35.479876003555944
],
[
8.140981479534304,
34.65514598239379
],
[
7.524481642292244,
34.09737641045146
],
[
7.6126416357821824,
33.34411489514896
],
[
8.430472853233368,
32.74833730725595
],
[
8.439102817426118,
32.50628489840082
],
[
9.05560265466815,
32.10269196220129
],
[
9.482139926805274,
30.307556057246188
],
[
9.805634392952413,
29.42463837332339
],
[
9.859997999723447,
28.959989732371014
],
[
9.683884718472768,
28.1441738957792
],
[
9.756128370816782,
27.68825857188415
],
[
9.629056023811074,
27.14095347748092
],
[
9.716285841519749,
26.512206325785698
],
[
9.319410841518163,
26.094324856057455
],
[
9.910692579801776,
25.36545461679674
],
[
9.94826134607797,
24.936953640232517
],
[
10.303846876678362,
24.379313259370917
],
[
10.771363559622927,
24.56253205006175
],
[
11.560669386449005,
24.097909247325518
],
[
11.999505649471613,
23.47166840259645
],
[
8.572893100629784,
21.565660712159143
],
[
5.677565952180686,
19.601206976799716
],
[
4.267419467800039,
19.155265204337
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Ecuador",
"sov_a3": "ECU",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Ecuador",
"adm0_a3": "ECU",
"geou_dif": 0,
"geounit": "Ecuador",
"gu_a3": "ECU",
"su_dif": 0,
"subunit": "Ecuador",
"su_a3": "ECU",
"brk_diff": 0,
"name": "Ecuador",
"name_long": "Ecuador",
"brk_a3": "ECU",
"brk_name": "Ecuador",
"brk_group": "",
"abbrev": "Ecu.",
"postal": "EC",
"formal_en": "Republic of Ecuador",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Ecuador",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 5,
"mapcolor9": 2,
"mapcolor13": 12,
"pop_est": 14573101,
"gdp_md_est": 107700,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "EC",
"iso_a3": "ECU",
"iso_n3": "218",
"un_a3": "218",
"wb_a2": "EC",
"wb_a3": "ECU",
"woe_id": -99,
"adm0_a3_is": "ECU",
"adm0_a3_us": "ECU",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-80.30256059438722,
-3.4048564591647126
],
[
-79.77029334178093,
-2.65751189535964
],
[
-79.98655921092242,
-2.220794366061014
],
[
-80.36878394236925,
-2.6851587866357884
],
[
-80.96776546906436,
-2.246942640800704
],
[
-80.76480628123804,
-1.9650477026485331
],
[
-80.93365902375172,
-1.057454522306358
],
[
-80.58337032746127,
-0.9066626928786832
],
[
-80.39932471385376,
-0.28370330160014134
],
[
-80.02089820018037,
0.3603400740534682
],
[
-80.09060970734211,
0.7684288598623965
],
[
-79.5427620103998,
0.982937730305963
],
[
-78.85525875518871,
1.380923773601822
],
[
-77.85506140817952,
0.8099250349927729
],
[
-77.66861284047044,
0.8258930525709616
],
[
-77.4249843004304,
0.395686753741117
],
[
-76.5763797675494,
0.256935533037435
],
[
-76.29231441924097,
0.4160472680641192
],
[
-75.8014658271166,
0.08480133707320192
],
[
-75.37322323271385,
-0.1520317521204504
],
[
-75.23372270374195,
-0.9114169246495294
],
[
-75.54499569365204,
-1.5616097957458803
],
[
-76.63539425322672,
-2.6086776668438176
],
[
-77.83790483265861,
-3.003020521663103
],
[
-78.45068396677564,
-3.873096612161376
],
[
-78.63989722361234,
-4.547784112164074
],
[
-79.20528906931773,
-4.959128513207389
],
[
-79.62497921417618,
-4.454198093283495
],
[
-80.02890804718561,
-4.3460909969288934
],
[
-80.44224199087216,
-4.425724379090674
],
[
-80.46929460317695,
-4.0592867977089995
],
[
-80.18401485870967,
-3.8211617977080437
],
[
-80.30256059438722,
-3.4048564591647126
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Egypt",
"sov_a3": "EGY",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Egypt",
"adm0_a3": "EGY",
"geou_dif": 0,
"geounit": "Egypt",
"gu_a3": "EGY",
"su_dif": 0,
"subunit": "Egypt",
"su_a3": "EGY",
"brk_diff": 0,
"name": "Egypt",
"name_long": "Egypt",
"brk_a3": "EGY",
"brk_name": "Egypt",
"brk_group": "",
"abbrev": "Egypt",
"postal": "EG",
"formal_en": "Arab Republic of Egypt",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Egypt, Arab Rep.",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 6,
"mapcolor9": 7,
"mapcolor13": 2,
"pop_est": 83082869,
"gdp_md_est": 443700,
"pop_year": -99,
"lastcensus": 2006,
"gdp_year": -99,
"economy": "5. Emerging region: G20",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "EG",
"iso_a3": "EGY",
"iso_n3": "818",
"un_a3": "818",
"wb_a2": "EG",
"wb_a3": "EGY",
"woe_id": -99,
"adm0_a3_is": "EGY",
"adm0_a3_us": "EGY",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Northern Africa",
"region_wb": "Middle East & North Africa",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
34.9226,
29.50133
],
[
34.64174,
29.099420000000002
],
[
34.42655,
28.343989999999998
],
[
34.15451,
27.8233
],
[
33.92136,
27.6487
],
[
33.58811,
27.97136
],
[
33.13676,
28.417650000000002
],
[
32.423230000000004,
29.851080000000003
],
[
32.32046,
29.76043
],
[
32.73482,
28.70523
],
[
33.34876,
27.69989
],
[
34.10455,
26.14227
],
[
34.473870000000005,
25.598560000000003
],
[
34.79507,
25.03375
],
[
35.69241,
23.92671
],
[
35.49372,
23.752370000000003
],
[
35.52598,
23.10244
],
[
36.690690000000004,
22.20485
],
[
36.86623,
22
],
[
32.9,
22
],
[
29.020000000000003,
22
],
[
25,
22
],
[
25,
25.682499996361
],
[
25,
29.23865452953346
],
[
24.70007,
30.044190000000004
],
[
24.957620000000002,
30.6616
],
[
24.80287,
31.089290000000002
],
[
25.16482,
31.56915
],
[
26.49533,
31.58568
],
[
27.457620000000002,
31.32126
],
[
28.450480000000002,
31.025769999999998
],
[
28.913529999999998,
30.87005
],
[
29.683419999999998,
31.186860000000003
],
[
30.09503,
31.4734
],
[
30.976930000000003,
31.55586
],
[
31.687960000000004,
31.4296
],
[
31.96041,
30.933600000000002
],
[
32.19247,
31.26034
],
[
32.99392,
31.024070000000002
],
[
33.7734,
30.967460000000003
],
[
34.265440000000005,
31.219359999999998
],
[
34.9226,
29.50133
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Eritrea",
"sov_a3": "ERI",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Eritrea",
"adm0_a3": "ERI",
"geou_dif": 0,
"geounit": "Eritrea",
"gu_a3": "ERI",
"su_dif": 0,
"subunit": "Eritrea",
"su_a3": "ERI",
"brk_diff": 0,
"name": "Eritrea",
"name_long": "Eritrea",
"brk_a3": "ERI",
"brk_name": "Eritrea",
"brk_group": "",
"abbrev": "Erit.",
"postal": "ER",
"formal_en": "State of Eritrea",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Eritrea",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 1,
"mapcolor9": 2,
"mapcolor13": 12,
"pop_est": 5647168,
"gdp_md_est": 3945,
"pop_year": -99,
"lastcensus": 1984,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "ER",
"iso_a3": "ERI",
"iso_n3": "232",
"un_a3": "232",
"wb_a2": "ER",
"wb_a3": "ERI",
"woe_id": -99,
"adm0_a3_is": "ERI",
"adm0_a3_us": "ERI",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Eastern Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 7,
"long_len": 7,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
42.35156000000012,
12.542230000000131
],
[
42.00975,
12.865819999999928
],
[
41.59856000000002,
13.452090000000112
],
[
41.15519371924984,
13.773319810435225
],
[
40.896600000000035,
14.118640000000141
],
[
40.026218702969175,
14.519579169162284
],
[
39.34061000000008,
14.531549999999982
],
[
39.0994,
14.740640000000042
],
[
38.512950000000046,
14.50547000000006
],
[
37.90607000000011,
14.959430000000168
],
[
37.59377000000006,
14.213099999999997
],
[
36.42951000000005,
14.422110000000032
],
[
36.32318891779812,
14.822480577041063
],
[
36.75386030451858,
16.291874091044292
],
[
36.852530000000115,
16.956549999999993
],
[
37.167470000000094,
17.263140000000135
],
[
37.90400000000011,
17.427540000000022
],
[
38.410089959473225,
17.998307399970315
],
[
38.990622999840014,
16.840626125551694
],
[
39.26611006038803,
15.92272349696725
],
[
39.814293654140215,
15.435647284400318
],
[
41.17927493669765,
14.491079616753211
],
[
41.73495161313235,
13.921036892141558
],
[
42.27683068214486,
13.343992010954423
],
[
42.58957645037526,
13.000421250861905
],
[
43.08122602720016,
12.699638576707116
],
[
42.77964236834475,
12.455415757695675
],
[
42.35156000000012,
12.542230000000131
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Spain",
"sov_a3": "ESP",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Spain",
"adm0_a3": "ESP",
"geou_dif": 0,
"geounit": "Spain",
"gu_a3": "ESP",
"su_dif": 0,
"subunit": "Spain",
"su_a3": "ESP",
"brk_diff": 0,
"name": "Spain",
"name_long": "Spain",
"brk_a3": "ESP",
"brk_name": "Spain",
"brk_group": "",
"abbrev": "Sp.",
"postal": "E",
"formal_en": "Kingdom of Spain",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Spain",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 5,
"mapcolor9": 5,
"mapcolor13": 5,
"pop_est": 40525002,
"gdp_md_est": 1403000,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "ES",
"iso_a3": "ESP",
"iso_n3": "724",
"un_a3": "724",
"wb_a2": "ES",
"wb_a3": "ESP",
"woe_id": -99,
"adm0_a3_is": "ESP",
"adm0_a3_us": "ESP",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Southern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 5,
"long_len": 5,
"abbrev_len": 3,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-9.034817674180246,
41.880570583659676
],
[
-8.984433152695672,
42.59277517350627
],
[
-9.392883673530648,
43.0266246608127
],
[
-7.97818966310831,
43.74833771420099
],
[
-6.754491746436756,
43.567909450853925
],
[
-5.411886359061597,
43.57423981380968
],
[
-4.3478427799557835,
43.40344920508504
],
[
-3.5175317041060907,
43.4559007838613
],
[
-1.901351284177764,
43.42280202897834
],
[
-1.502770961910528,
43.03401439063043
],
[
0.3380469091905809,
42.57954600683955
],
[
0.7015906103638941,
42.795734361332606
],
[
1.8267932470871528,
42.34338471126569
],
[
2.9859989762584576,
42.47301504166986
],
[
3.0394840836805486,
41.892120266276905
],
[
2.0918416683121848,
41.226088568683096
],
[
0.8105245296351882,
41.01473196060934
],
[
0.7213310074994013,
40.678318386389236
],
[
0.10669152181986874,
40.12393362076202
],
[
-0.27871131021294104,
39.30997813573272
],
[
0.11129072429383768,
38.73851430923304
],
[
-0.4671235823491031,
38.29236583104115
],
[
-0.6833894514905978,
37.642353827457825
],
[
-1.4383821272748492,
37.44306366632422
],
[
-2.146452602538119,
36.67414419203729
],
[
-3.4157808089233868,
36.65889964451118
],
[
-4.368900926114719,
36.677839056946155
],
[
-4.995219285492212,
36.32470815687964
],
[
-5.3771597965614575,
35.946850083961465
],
[
-5.866432257500904,
36.02981659600606
],
[
-6.236693894872175,
36.367677110330334
],
[
-6.520190802425404,
36.94291331638732
],
[
-7.453725551778092,
37.09778758396607
],
[
-7.537105475281024,
37.42890432387624
],
[
-7.166507941099865,
37.803894354802225
],
[
-7.029281175148796,
38.07576406508977
],
[
-7.374092169616318,
38.37305858006492
],
[
-7.098036668313128,
39.03007274022379
],
[
-7.498632371439726,
39.62957103124181
],
[
-7.066591559263529,
39.711891587882775
],
[
-7.026413133156595,
40.184524237624245
],
[
-6.864019944679385,
40.33087189387483
],
[
-6.851126674822552,
41.11108266861753
],
[
-6.389087693700915,
41.381815497394655
],
[
-6.6686055159676565,
41.883386949219584
],
[
-7.251308966490824,
41.91834605566505
],
[
-7.422512986673795,
41.79207469335984
],
[
-8.013174607769912,
41.790886135417125
],
[
-8.263856980817792,
42.28046865495034
],
[
-8.67194576662672,
42.13468943945496
],
[
-9.034817674180246,
41.880570583659676
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Estonia",
"sov_a3": "EST",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Estonia",
"adm0_a3": "EST",
"geou_dif": 0,
"geounit": "Estonia",
"gu_a3": "EST",
"su_dif": 0,
"subunit": "Estonia",
"su_a3": "EST",
"brk_diff": 0,
"name": "Estonia",
"name_long": "Estonia",
"brk_a3": "EST",
"brk_name": "Estonia",
"brk_group": "",
"abbrev": "Est.",
"postal": "EST",
"formal_en": "Republic of Estonia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Estonia",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 2,
"mapcolor9": 1,
"mapcolor13": 10,
"pop_est": 1299371,
"gdp_md_est": 27410,
"pop_year": -99,
"lastcensus": 2000,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "EE",
"iso_a3": "EST",
"iso_n3": "233",
"un_a3": "233",
"wb_a2": "EE",
"wb_a3": "EST",
"woe_id": -99,
"adm0_a3_is": "EST",
"adm0_a3_us": "EST",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Northern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
24.312862583114622,
57.79342357037697
],
[
24.42892785004216,
58.38341339785329
],
[
24.061198357853186,
58.25737457949341
],
[
23.426560092876684,
58.612753404364625
],
[
23.339795363058645,
59.187240302153384
],
[
24.604214308376186,
59.46585378685502
],
[
25.86418908051664,
59.61109039981133
],
[
26.949135776484525,
59.445803331125774
],
[
27.981114129353244,
59.475388088612874
],
[
28.13169925305175,
59.300825100330925
],
[
27.420166456824944,
58.72458120384424
],
[
27.71668582531572,
57.79189911562436
],
[
27.288184848751513,
57.47452830670383
],
[
26.463532342237787,
57.47638865826633
],
[
25.60280968598437,
57.84752879498657
],
[
25.16459354014927,
57.97015696881519
],
[
24.312862583114622,
57.79342357037697
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Ethiopia",
"sov_a3": "ETH",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Ethiopia",
"adm0_a3": "ETH",
"geou_dif": 0,
"geounit": "Ethiopia",
"gu_a3": "ETH",
"su_dif": 0,
"subunit": "Ethiopia",
"su_a3": "ETH",
"brk_diff": 0,
"name": "Ethiopia",
"name_long": "Ethiopia",
"brk_a3": "ETH",
"brk_name": "Ethiopia",
"brk_group": "",
"abbrev": "Eth.",
"postal": "ET",
"formal_en": "Federal Democratic Republic of Ethiopia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Ethiopia",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 4,
"mapcolor9": 1,
"mapcolor13": 13,
"pop_est": 85237338,
"gdp_md_est": 68770,
"pop_year": -99,
"lastcensus": 2007,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "ET",
"iso_a3": "ETH",
"iso_n3": "231",
"un_a3": "231",
"wb_a2": "ET",
"wb_a3": "ETH",
"woe_id": -99,
"adm0_a3_is": "ETH",
"adm0_a3_us": "ETH",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Eastern Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 8,
"long_len": 8,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
39.34061000000008,
14.531549999999982
],
[
40.02625000000012,
14.519589999999994
],
[
40.896600000000035,
14.118640000000141
],
[
41.15519999999998,
13.773329999999987
],
[
41.59856000000002,
13.452090000000112
],
[
42.00975,
12.865819999999928
],
[
42.35156000000012,
12.542230000000131
],
[
42.000000000000114,
12.100000000000136
],
[
41.66176000000013,
11.631199999999978
],
[
41.73959000000019,
11.355110000000138
],
[
41.755570000000205,
11.050910000000101
],
[
42.31414000000012,
11.034200000000055
],
[
42.55493000000013,
11.105110000000195
],
[
42.77685184100096,
10.92687856693442
],
[
42.55875999999995,
10.57258000000013
],
[
42.92812000000009,
10.021940000000143
],
[
43.29699000000011,
9.540480000000173
],
[
43.678750000000036,
9.18358000000012
],
[
46.94834000000009,
7.99688000000009
],
[
47.789420000000064,
8.002999999999986
],
[
44.9636000000001,
5.001620000000116
],
[
43.66086999999999,
4.957550000000083
],
[
42.76967000000013,
4.252590000000225
],
[
42.128610000000094,
4.234130000000164
],
[
41.85508309264412,
3.9189119204837652
],
[
41.17180000000013,
3.9190900000000397
],
[
40.768480000000125,
4.257020000000125
],
[
39.85494000000011,
3.838790000000131
],
[
39.55938425876593,
3.422060000000215
],
[
38.89251000000007,
3.5007400000000644
],
[
38.67114000000004,
3.616070000000093
],
[
38.436970000000144,
3.588510000000099
],
[
38.12091500000014,
3.5986050000000773
],
[
36.85509323800824,
4.447864127672858
],
[
36.15907863285565,
4.447864127672858
],
[
35.81744766235363,
4.776965663462022
],
[
35.81744766235363,
5.338232082790853
],
[
35.2980071182331,
5.506000000000029
],
[
34.70702,
6.594220000000121
],
[
34.250320000000045,
6.8260700000000725
],
[
34.07510000000019,
7.2259500000000685
],
[
33.568290000000104,
7.7133400000000165
],
[
32.954180000000235,
7.784970000000101
],
[
33.29480000000012,
8.354580000000055
],
[
33.82550000000015,
8.37916000000007
],
[
33.97498000000007,
8.684560000000147
],
[
33.961620000000096,
9.583580000000097
],
[
34.25745000000006,
10.630089999999996
],
[
34.73115000000013,
10.910170000000107
],
[
34.83163000000013,
11.318960000000118
],
[
35.26049000000006,
12.08286000000004
],
[
35.86363000000017,
12.578280000000063
],
[
36.27022000000005,
13.563330000000121
],
[
36.42951000000005,
14.422110000000032
],
[
37.59377000000006,
14.213099999999997
],
[
37.90607000000011,
14.959430000000168
],
[
38.512950000000046,
14.50547000000006
],
[
39.0994,
14.740640000000042
],
[
39.34061000000008,
14.531549999999982
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Finland",
"sov_a3": "FI1",
"adm0_dif": 1,
"level": 2,
"type": "Country",
"admin": "Finland",
"adm0_a3": "FIN",
"geou_dif": 0,
"geounit": "Finland",
"gu_a3": "FIN",
"su_dif": 0,
"subunit": "Finland",
"su_a3": "FIN",
"brk_diff": 0,
"name": "Finland",
"name_long": "Finland",
"brk_a3": "FIN",
"brk_name": "Finland",
"brk_group": "",
"abbrev": "Fin.",
"postal": "FIN",
"formal_en": "Republic of Finland",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Finland",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 1,
"mapcolor9": 4,
"mapcolor13": 6,
"pop_est": 5250275,
"gdp_md_est": 193500,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "FI",
"iso_a3": "FIN",
"iso_n3": "246",
"un_a3": "246",
"wb_a2": "FI",
"wb_a3": "FIN",
"woe_id": -99,
"adm0_a3_is": "FIN",
"adm0_a3_us": "FIN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Northern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
23.903378533633802,
66.00692739527962
],
[
23.565879754335583,
66.39605093043743
],
[
23.53947309743444,
67.93600861273525
],
[
21.978534783626117,
68.6168456081807
],
[
20.645592889089528,
69.10624726020087
],
[
21.244936150810673,
69.37044302029308
],
[
22.356237827247412,
68.84174144151491
],
[
23.66204959483076,
68.89124746365054
],
[
24.735679152126725,
68.64955678982146
],
[
25.689212680776365,
69.09211375596904
],
[
26.179622023226244,
69.82529897732614
],
[
27.732292107867863,
70.16419302029625
],
[
29.015572950971972,
69.76649119737799
],
[
28.591929559043194,
69.06477692328666
],
[
28.445943637818658,
68.36461294216404
],
[
29.97742638522061,
67.69829702419266
],
[
29.054588657352326,
66.94428620062193
],
[
30.217650000000003,
65.80598
],
[
29.54442955904699,
64.94867157659048
],
[
30.44468468600371,
64.20445343693909
],
[
30.035872430142717,
63.55281362573855
],
[
31.516092156711125,
62.86768748641289
],
[
31.139991082490894,
62.35769277612441
],
[
30.21110721204445,
61.780027777749694
],
[
28.069997592895277,
60.50351654727584
],
[
26.255172967236973,
60.4239606797625
],
[
24.496623976344523,
60.05731639265166
],
[
22.869694858499457,
59.846373196036225
],
[
22.290763787533592,
60.39192129174154
],
[
21.322244093519316,
60.720169989659524
],
[
21.544866163832694,
61.70532949487179
],
[
21.05921105315369,
62.60739329695874
],
[
21.536029493910803,
63.18973501245587
],
[
22.442744174903993,
63.81781037053129
],
[
24.730511508897536,
64.90234365504084
],
[
25.398067661243942,
65.11142650009374
],
[
25.294043003040404,
65.53434642197045
],
[
23.903378533633802,
66.00692739527962
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Fiji",
"sov_a3": "FJI",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Fiji",
"adm0_a3": "FJI",
"geou_dif": 0,
"geounit": "Fiji",
"gu_a3": "FJI",
"su_dif": 0,
"subunit": "Fiji",
"su_a3": "FJI",
"brk_diff": 0,
"name": "Fiji",
"name_long": "Fiji",
"brk_a3": "FJI",
"brk_name": "Fiji",
"brk_group": "",
"abbrev": "Fiji",
"postal": "FJ",
"formal_en": "Republic of Fiji",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Fiji",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 1,
"mapcolor9": 2,
"mapcolor13": 2,
"pop_est": 944720,
"gdp_md_est": 3579,
"pop_year": -99,
"lastcensus": 2007,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "FJ",
"iso_a3": "FJI",
"iso_n3": "242",
"un_a3": "242",
"wb_a2": "FJ",
"wb_a3": "FJI",
"woe_id": -99,
"adm0_a3_is": "FJI",
"adm0_a3_us": "FJI",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Oceania",
"region_un": "Oceania",
"subregion": "Melanesia",
"region_wb": "East Asia & Pacific",
"name_len": 4,
"long_len": 4,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
178.37360000000004,
-17.339920000000035
],
[
178.71806,
-17.628459999999976
],
[
178.55271000000002,
-18.150590000000037
],
[
177.93266000000003,
-18.287989999999965
],
[
177.38146000000003,
-18.16431999999999
],
[
177.28504,
-17.724649999999983
],
[
177.67087000000012,
-17.381139999999988
],
[
178.12557,
-17.504809999999964
],
[
178.37360000000004,
-17.339920000000035
]
]
],
[
[
[
179.36414266196428,
-16.80135407694685
],
[
178.7250593629971,
-17.01204167436802
],
[
178.59683859511708,
-16.639149999999958
],
[
179.09660936299716,
-16.433984277547424
],
[
179.41350936299713,
-16.379054277547397
],
[
180.00000000000014,
-16.06713266364244
],
[
180.00000000000014,
-16.55521656663916
],
[
179.36414266196428,
-16.80135407694685
]
]
],
[
[
[
-179.91736938476527,
-16.50178313564936
],
[
-179.99999999999997,
-16.55521656663916
],
[
-179.99999999999997,
-16.06713266364244
],
[
-179.7933201090486,
-16.02088225674123
],
[
-179.91736938476527,
-16.50178313564936
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "United Kingdom",
"sov_a3": "GB1",
"adm0_dif": 1,
"level": 2,
"type": "Dependency",
"admin": "Falkland Islands",
"adm0_a3": "FLK",
"geou_dif": 0,
"geounit": "Falkland Islands",
"gu_a3": "FLK",
"su_dif": 0,
"subunit": "Falkland Islands",
"su_a3": "FLK",
"brk_diff": 1,
"name": "Falkland Is.",
"name_long": "Falkland Islands",
"brk_a3": "B12",
"brk_name": "Falkland Is.",
"brk_group": "",
"abbrev": "Flk. Is.",
"postal": "FK",
"formal_en": "Falkland Islands",
"formal_fr": "",
"note_adm0": "U.K.",
"note_brk": "Admin. by U.K.; Claimed by Argentina",
"name_sort": "Falkland Islands",
"name_alt": "Islas Malvinas",
"mapcolor7": 6,
"mapcolor8": 6,
"mapcolor9": 6,
"mapcolor13": 3,
"pop_est": 3140,
"gdp_md_est": 105.1,
"pop_year": -99,
"lastcensus": -99,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "FK",
"iso_a3": "FLK",
"iso_n3": "238",
"un_a3": "238",
"wb_a2": "-99",
"wb_a3": "-99",
"woe_id": -99,
"adm0_a3_is": "FLK",
"adm0_a3_us": "FLK",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 12,
"long_len": 16,
"abbrev_len": 8,
"tiny": -99,
"homepart": -99
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-61.2,
-51.85
],
[
-60,
-51.25
],
[
-59.15,
-51.5
],
[
-58.550000000000004,
-51.10000000000001
],
[
-57.75,
-51.55
],
[
-58.050000000000004,
-51.900000000000006
],
[
-59.400000000000006,
-52.199999999999996
],
[
-59.85000000000001,
-51.85
],
[
-60.7,
-52.300000000000004
],
[
-61.2,
-51.85
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "France",
"sov_a3": "FR1",
"adm0_dif": 1,
"level": 2,
"type": "Country",
"admin": "France",
"adm0_a3": "FRA",
"geou_dif": 0,
"geounit": "France",
"gu_a3": "FRA",
"su_dif": 0,
"subunit": "France",
"su_a3": "FRA",
"brk_diff": 0,
"name": "France",
"name_long": "France",
"brk_a3": "FRA",
"brk_name": "France",
"brk_group": "",
"abbrev": "Fr.",
"postal": "F",
"formal_en": "French Republic",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "France",
"name_alt": "",
"mapcolor7": 7,
"mapcolor8": 5,
"mapcolor9": 9,
"mapcolor13": 11,
"pop_est": 64057792,
"gdp_md_est": 2128000,
"pop_year": -99,
"lastcensus": -99,
"gdp_year": -99,
"economy": "1. Developed region: G7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "FR",
"iso_a3": "FRA",
"iso_n3": "250",
"un_a3": "250",
"wb_a2": "FR",
"wb_a3": "FRA",
"woe_id": -99,
"adm0_a3_is": "FRA",
"adm0_a3_us": "FRA",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Western Europe",
"region_wb": "Europe & Central Asia",
"name_len": 6,
"long_len": 6,
"abbrev_len": 3,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-52.55642473001839,
2.504705308437053
],
[
-52.93965715189498,
2.124857692875622
],
[
-53.418465135295264,
2.0533891870160375
],
[
-53.554839240113495,
2.334896551925965
],
[
-53.778520677288896,
2.3767027856500533
],
[
-54.08806250671728,
2.105556545414629
],
[
-54.52475419779975,
2.3118488631237852
],
[
-54.27122962097579,
2.738747870286943
],
[
-54.18428402364475,
3.194172268075235
],
[
-54.01150387227682,
3.6225698917748588
],
[
-54.399542202356514,
4.212611395683481
],
[
-54.47863298197922,
4.896755682795643
],
[
-53.95804460307093,
5.756548163267809
],
[
-53.618452928264844,
5.646529038918402
],
[
-52.88214128275408,
5.4098509790215985
],
[
-51.82334286152593,
4.565768133966145
],
[
-51.65779741067888,
4.156232408053029
],
[
-52.249337531123984,
3.2410944685962875
],
[
-52.55642473001839,
2.504705308437053
]
]
],
[
[
[
9.560016310269134,
42.15249197037957
],
[
9.229752231491773,
41.38000682226445
],
[
8.775723097375362,
41.58361196549444
],
[
8.54421268070783,
42.256516628583086
],
[
8.746009148807588,
42.62812185319396
],
[
9.390000848028905,
43.00998484961474
],
[
9.560016310269134,
42.15249197037957
]
]
],
[
[
[
7.593676385131062,
48.33301911070373
],
[
7.466759067422231,
47.620581976911865
],
[
7.192202182655535,
47.44976552997099
],
[
6.736571079138088,
47.54180125588289
],
[
6.768713820023635,
47.28770823830368
],
[
6.037388950228973,
46.72577871356191
],
[
6.022609490593567,
46.272989813820516
],
[
6.500099724970454,
46.42967275652944
],
[
6.843592970414562,
45.99114655210067
],
[
6.802355177445662,
45.70857982032868
],
[
7.096652459347837,
45.333098863295874
],
[
6.749955275101712,
45.02851797136759
],
[
7.007562290076663,
44.25476675066139
],
[
7.549596388386163,
44.12790110938482
],
[
7.435184767291844,
43.69384491634918
],
[
6.529245232783069,
43.12889232031836
],
[
4.556962517931396,
43.39965098731159
],
[
3.1004105973527203,
43.075200507167125
],
[
2.985998976258486,
42.473015041669896
],
[
1.8267932470871813,
42.34338471126566
],
[
0.7015906103639225,
42.79573436133265
],
[
0.3380469091905809,
42.579546006839564
],
[
-1.5027709619104712,
43.03401439063049
],
[
-1.9013512841777356,
43.42280202897834
],
[
-1.3842252262329566,
44.02261037859017
],
[
-1.1937975732373616,
46.014917710954876
],
[
-2.225724249673789,
47.06436269793821
],
[
-2.963276129559574,
47.570326646507965
],
[
-4.4915549381594815,
47.95495433205642
],
[
-4.592349819344747,
48.68416046812695
],
[
-3.2958139713577452,
48.901692409859635
],
[
-1.6165107893849324,
48.644421291694584
],
[
-1.9334940250632542,
49.77634186461577
],
[
-0.9894689599553601,
49.347375800160876
],
[
1.3387610205227531,
50.12717316344526
],
[
1.6390010921384999,
50.946606350297515
],
[
2.513573032246171,
51.14850617126186
],
[
2.658422071960331,
50.79684804951566
],
[
3.123251580425716,
50.78036326761452
],
[
3.5881844417557147,
50.37899241800358
],
[
4.286022983425141,
49.907496649772554
],
[
4.799221632515753,
49.98537303323633
],
[
5.674051954784886,
49.52948354755745
],
[
5.897759230176376,
49.44266714130717
],
[
6.186320428094206,
49.46380280211446
],
[
6.6582296077835394,
49.201958319691556
],
[
8.099278598674772,
49.01778351500337
],
[
7.593676385131062,
48.33301911070373
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Gabon",
"sov_a3": "GAB",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Gabon",
"adm0_a3": "GAB",
"geou_dif": 0,
"geounit": "Gabon",
"gu_a3": "GAB",
"su_dif": 0,
"subunit": "Gabon",
"su_a3": "GAB",
"brk_diff": 0,
"name": "Gabon",
"name_long": "Gabon",
"brk_a3": "GAB",
"brk_name": "Gabon",
"brk_group": "",
"abbrev": "Gabon",
"postal": "GA",
"formal_en": "Gabonese Republic",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Gabon",
"name_alt": "",
"mapcolor7": 6,
"mapcolor8": 2,
"mapcolor9": 5,
"mapcolor13": 5,
"pop_est": 1514993,
"gdp_md_est": 21110,
"pop_year": -99,
"lastcensus": 2003,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GA",
"iso_a3": "GAB",
"iso_n3": "266",
"un_a3": "266",
"wb_a2": "GA",
"wb_a3": "GAB",
"woe_id": -99,
"adm0_a3_is": "GAB",
"adm0_a3_us": "GAB",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Middle Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": 3,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
11.093772820691925,
-3.978826592630547
],
[
10.06613528813574,
-2.9694825171056816
],
[
9.40524539555497,
-2.144313246269043
],
[
8.79799563969317,
-1.111301364754496
],
[
8.830086704146424,
-0.7790735815500369
],
[
9.048419630579588,
-0.45935149496021666
],
[
9.29135053878369,
0.2686660831676875
],
[
9.492888624721985,
1.010119533691494
],
[
9.830284051155644,
1.0678937849937995
],
[
11.285078973036462,
1.0576618514000131
],
[
11.276449008843713,
2.261050930180872
],
[
11.75166548019979,
2.3267575138399934
],
[
12.359380323952221,
2.19281220133945
],
[
12.951333855855609,
2.32161570882694
],
[
13.075822381246752,
2.2670970727590145
],
[
13.003113641012078,
1.8308963077833198
],
[
13.282631463278818,
1.3141836612968805
],
[
14.026668735417218,
1.3956773950211527
],
[
14.276265903386957,
1.1969298364266194
],
[
13.843320753645656,
0.038757635901149
],
[
14.316418491277744,
-0.5526274552470483
],
[
14.425455763413595,
-1.333406670744971
],
[
14.299210239324566,
-1.998275648612214
],
[
13.99240726080771,
-2.4708049454890997
],
[
13.109618767965628,
-2.4287403296035137
],
[
12.575284458067642,
-1.948511244315135
],
[
12.495702752338161,
-2.391688327650243
],
[
11.820963575903193,
-2.514161472181982
],
[
11.478038771214303,
-2.7656189917142413
],
[
11.855121697648116,
-3.4268706193210505
],
[
11.093772820691925,
-3.978826592630547
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "United Kingdom",
"sov_a3": "GB1",
"adm0_dif": 1,
"level": 2,
"type": "Country",
"admin": "United Kingdom",
"adm0_a3": "GBR",
"geou_dif": 0,
"geounit": "United Kingdom",
"gu_a3": "GBR",
"su_dif": 0,
"subunit": "United Kingdom",
"su_a3": "GBR",
"brk_diff": 0,
"name": "United Kingdom",
"name_long": "United Kingdom",
"brk_a3": "GBR",
"brk_name": "United Kingdom",
"brk_group": "",
"abbrev": "U.K.",
"postal": "GB",
"formal_en": "United Kingdom of Great Britain and Northern Ireland",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "United Kingdom",
"name_alt": "",
"mapcolor7": 6,
"mapcolor8": 6,
"mapcolor9": 6,
"mapcolor13": 3,
"pop_est": 62262000,
"gdp_md_est": 1977704,
"pop_year": 0,
"lastcensus": 2011,
"gdp_year": 2009,
"economy": "1. Developed region: G7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GB",
"iso_a3": "GBR",
"iso_n3": "826",
"un_a3": "826",
"wb_a2": "GB",
"wb_a3": "GBR",
"woe_id": -99,
"adm0_a3_is": "GBR",
"adm0_a3_us": "GBR",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Northern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 14,
"long_len": 14,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-5.661948614921897,
54.55460317648385
],
[
-6.1978848942209765,
53.86756500916334
],
[
-6.953730231137996,
54.073702297575636
],
[
-7.572167934591079,
54.05995636658599
],
[
-7.3660306461787854,
54.595840969452695
],
[
-7.572167934591079,
55.1316222194549
],
[
-6.733847011736145,
55.1728600124238
],
[
-5.661948614921897,
54.55460317648385
]
]
],
[
[
[
-3.0050048486352807,
58.63500010846633
],
[
-4.073828497728016,
57.55302480735526
],
[
-3.0550017968776615,
57.69001902936094
],
[
-1.9592805647769183,
57.68479970969952
],
[
-2.2199881656893012,
56.87001740175353
],
[
-3.119003058271119,
55.973793036515474
],
[
-2.085009324543023,
55.90999848085127
],
[
-2.005675679673857,
55.80490285035023
],
[
-1.11499101399221,
54.624986477265395
],
[
-0.4304849918542004,
54.46437612570216
],
[
0.18498131674203933,
53.32501414653103
],
[
0.4699768408317766,
52.92999949809197
],
[
1.681530795914739,
52.739520168664
],
[
1.5599878271643774,
52.09999848083601
],
[
1.050561557630914,
51.806760565795685
],
[
1.4498653499503007,
51.28942780212196
],
[
0.5503336930455021,
50.765738837275876
],
[
-0.7875174625586396,
50.77498891865622
],
[
-2.4899975244143775,
50.50001862243124
],
[
-2.956273972984036,
50.696879991247016
],
[
-3.6174480859423284,
50.22835561787272
],
[
-4.542507900399244,
50.341837063185665
],
[
-5.245023159191135,
49.95999990498109
],
[
-5.776566941745301,
50.15967763935683
],
[
-4.309989793301838,
51.21000112568916
],
[
-3.414850633142123,
51.42600861266925
],
[
-3.4227194671083225,
51.42684816740609
],
[
-4.984367234710874,
51.593466091510976
],
[
-5.2672957015088855,
51.991400458374585
],
[
-4.2223465641348525,
52.301355699261364
],
[
-4.770013393564113,
52.840004991255626
],
[
-4.5799991520269145,
53.49500377055517
],
[
-3.093830673788659,
53.404547400669685
],
[
-3.0920796370471066,
53.40444082296355
],
[
-2.945008510744344,
53.984999701546684
],
[
-3.614700825433033,
54.600936773292574
],
[
-3.6300054589893307,
54.615012925833014
],
[
-4.844169073903004,
54.790971177786844
],
[
-5.082526617849226,
55.06160065369937
],
[
-4.719112107756644,
55.50847260194348
],
[
-5.047980922862109,
55.78398550070753
],
[
-5.58639767091114,
55.31114614523682
],
[
-5.644998745130181,
56.275014960344805
],
[
-6.149980841486354,
56.78500967063354
],
[
-5.786824713555291,
57.81884837506465
],
[
-5.009998745127575,
58.63001333275005
],
[
-4.211494513353557,
58.55084503847917
],
[
-3.0050048486352807,
58.63500010846633
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Georgia",
"sov_a3": "GEO",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Georgia",
"adm0_a3": "GEO",
"geou_dif": 0,
"geounit": "Georgia",
"gu_a3": "GEO",
"su_dif": 0,
"subunit": "Georgia",
"su_a3": "GEO",
"brk_diff": 0,
"name": "Georgia",
"name_long": "Georgia",
"brk_a3": "GEO",
"brk_name": "Georgia",
"brk_group": "",
"abbrev": "Geo.",
"postal": "GE",
"formal_en": "Georgia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Georgia",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 2,
"pop_est": 4615807,
"gdp_md_est": 21510,
"pop_year": -99,
"lastcensus": 2002,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GE",
"iso_a3": "GEO",
"iso_n3": "268",
"un_a3": "268",
"wb_a2": "GE",
"wb_a3": "GEO",
"woe_id": -99,
"adm0_a3_is": "GEO",
"adm0_a3_us": "GEO",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Western Asia",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
44.97248009621808,
41.248128567055595
],
[
43.58274580259273,
41.09214325618257
],
[
42.61954878110449,
41.58317271581994
],
[
41.55408410011066,
41.53565623632757
],
[
41.70317060727271,
41.96294281673292
],
[
41.45347008643839,
42.64512339941794
],
[
40.87546919125379,
43.013628038091284
],
[
40.32139448422032,
43.128633938156845
],
[
39.955008579270924,
43.43499766699922
],
[
40.07696495947977,
43.553104153002316
],
[
40.922184686045625,
43.38215851498079
],
[
42.39439456560882,
43.22030792904263
],
[
43.75601688006739,
42.74082815202249
],
[
43.931199985536836,
42.55497386328477
],
[
44.537622918481986,
42.71199270280363
],
[
45.47027916848572,
42.50278066666998
],
[
45.77641035338277,
42.09244395605636
],
[
46.404950799348825,
41.860675157227305
],
[
46.14543175637902,
41.72280243587258
],
[
46.63790815612058,
41.181672675128226
],
[
46.50163740416693,
41.06444468847411
],
[
45.96260053893039,
41.123872585609774
],
[
45.217426385281584,
41.41145193131405
],
[
44.97248009621808,
41.248128567055595
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Ghana",
"sov_a3": "GHA",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Ghana",
"adm0_a3": "GHA",
"geou_dif": 0,
"geounit": "Ghana",
"gu_a3": "GHA",
"su_dif": 0,
"subunit": "Ghana",
"su_a3": "GHA",
"brk_diff": 0,
"name": "Ghana",
"name_long": "Ghana",
"brk_a3": "GHA",
"brk_name": "Ghana",
"brk_group": "",
"abbrev": "Ghana",
"postal": "GH",
"formal_en": "Republic of Ghana",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Ghana",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 3,
"mapcolor9": 1,
"mapcolor13": 4,
"pop_est": 23832495,
"gdp_md_est": 34200,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GH",
"iso_a3": "GHA",
"iso_n3": "288",
"un_a3": "288",
"wb_a2": "GH",
"wb_a3": "GHA",
"woe_id": -99,
"adm0_a3_is": "GHA",
"adm0_a3_us": "GHA",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Western Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
1.0601216976049272,
5.928837388528876
],
[
-0.5076379052659377,
5.3434726017426755
],
[
-1.0636246402941936,
5.000547797053812
],
[
-1.9647065901675944,
4.710462144383371
],
[
-2.856125047202397,
4.994475816259509
],
[
-2.8107014632178395,
5.38905121502411
],
[
-3.244370083011262,
6.250471503113502
],
[
-2.9835849674503265,
7.379704901555513
],
[
-2.562189500326241,
8.219627793811483
],
[
-2.8274963037127065,
9.642460842319778
],
[
-2.9638962467471117,
10.395334784380083
],
[
-2.9404093082704605,
10.962690334512558
],
[
-1.2033577132114317,
11.009819240762738
],
[
-0.7615758935481834,
10.936929633015055
],
[
-0.43870154458858224,
11.098340969278722
],
[
0.023802524423700785,
11.018681748900804
],
[
-0.04978471515994442,
10.706917832883931
],
[
0.3675799902453889,
10.19121287682718
],
[
0.3659005061958851,
9.465003973829482
],
[
0.46119184734212126,
8.677222601756014
],
[
0.7120292496868785,
8.31246450442383
],
[
0.4909574723422451,
7.411744289576475
],
[
0.5703841487748491,
6.914358628767189
],
[
0.8369311865363329,
6.279978745952149
],
[
1.0601216976049272,
5.928837388528876
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Guinea",
"sov_a3": "GIN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Guinea",
"adm0_a3": "GIN",
"geou_dif": 0,
"geounit": "Guinea",
"gu_a3": "GIN",
"su_dif": 0,
"subunit": "Guinea",
"su_a3": "GIN",
"brk_diff": 0,
"name": "Guinea",
"name_long": "Guinea",
"brk_a3": "GIN",
"brk_name": "Guinea",
"brk_group": "",
"abbrev": "Gin.",
"postal": "GN",
"formal_en": "Republic of Guinea",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Guinea",
"name_alt": "",
"mapcolor7": 6,
"mapcolor8": 3,
"mapcolor9": 7,
"mapcolor13": 2,
"pop_est": 10057975,
"gdp_md_est": 10600,
"pop_year": -99,
"lastcensus": 1996,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GN",
"iso_a3": "GIN",
"iso_n3": "324",
"un_a3": "324",
"wb_a2": "GN",
"wb_a3": "GIN",
"woe_id": -99,
"adm0_a3_is": "GIN",
"adm0_a3_us": "GIN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Western Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 6,
"long_len": 6,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-8.439298468448698,
7.686042792181738
],
[
-8.722123582382125,
7.71167430259851
],
[
-8.926064622422004,
7.309037380396376
],
[
-9.208786383490846,
7.313920803247953
],
[
-9.40334815106975,
7.526905218938907
],
[
-9.337279832384581,
7.9285344507113535
],
[
-9.755342169625834,
8.541055202666925
],
[
-10.016566534861255,
8.428503933135232
],
[
-10.23009355309128,
8.406205552601293
],
[
-10.505477260774668,
8.348896389189605
],
[
-10.494315151399633,
8.715540676300435
],
[
-10.654770473665891,
8.977178452994195
],
[
-10.622395188835041,
9.267910061068278
],
[
-10.839151984083301,
9.688246161330369
],
[
-11.11748124840733,
10.045872911006285
],
[
-11.917277390988659,
10.046983954300558
],
[
-12.150338100625005,
9.858571682164381
],
[
-12.425928514037565,
9.835834051955956
],
[
-12.59671912276221,
9.62018830000197
],
[
-12.71195756677308,
9.342711696810767
],
[
-13.246550258832515,
8.903048610871508
],
[
-13.685153977909792,
9.49474376061346
],
[
-14.074044969122282,
9.886166897008252
],
[
-14.33007585291237,
10.015719712763968
],
[
-14.579698859098258,
10.214467271358515
],
[
-14.693231980843505,
10.656300767454042
],
[
-14.839553798877944,
10.87657156009814
],
[
-15.130311245168173,
11.040411688679526
],
[
-14.685687221728898,
11.527823798056488
],
[
-14.382191534878729,
11.509271958863692
],
[
-14.121406419317779,
11.677117010947697
],
[
-13.900799729863776,
11.678718980348748
],
[
-13.743160773157413,
11.811269029177412
],
[
-13.828271857142125,
12.142644151249044
],
[
-13.718743658899513,
12.24718557377551
],
[
-13.700476040084325,
12.586182969610194
],
[
-13.217818162478238,
12.575873521367967
],
[
-12.499050665730564,
12.332089952031057
],
[
-12.27859900557344,
12.354440008997287
],
[
-12.203564825885634,
12.465647691289405
],
[
-11.658300950557932,
12.386582749882836
],
[
-11.51394283695059,
12.442987575729418
],
[
-11.456168585648271,
12.076834214725338
],
[
-11.297573614944511,
12.077971096235771
],
[
-11.03655595543826,
12.211244615116515
],
[
-10.870829637078215,
12.17788747807211
],
[
-10.593223842806282,
11.92397532800598
],
[
-10.165213792348837,
11.844083563682744
],
[
-9.890992804392013,
12.060478623904972
],
[
-9.567911749703214,
12.194243068892476
],
[
-9.327616339546012,
12.334286200403454
],
[
-9.127473517279583,
12.308060411015333
],
[
-8.90526485842453,
12.088358059126437
],
[
-8.786099005559464,
11.812560939984706
],
[
-8.376304897484914,
11.393645941610629
],
[
-8.581305304386774,
11.136245632364805
],
[
-8.620321010767128,
10.810890814655183
],
[
-8.407310756860028,
10.909256903522762
],
[
-8.282357143578281,
10.792597357623846
],
[
-8.33537716310974,
10.494811916541934
],
[
-8.029943610048619,
10.206534939001713
],
[
-8.229337124046822,
10.1290202905639
],
[
-8.30961646161225,
9.789531968622441
],
[
-8.07911373537435,
9.376223863152035
],
[
-7.832100389019188,
8.575704250518626
],
[
-8.20349890790088,
8.455453192575447
],
[
-8.299048631208564,
8.316443589710303
],
[
-8.221792364932199,
8.123328762235573
],
[
-8.280703497744938,
7.687179673692157
],
[
-8.439298468448698,
7.686042792181738
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Gambia",
"sov_a3": "GMB",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Gambia",
"adm0_a3": "GMB",
"geou_dif": 0,
"geounit": "Gambia",
"gu_a3": "GMB",
"su_dif": 0,
"subunit": "Gambia",
"su_a3": "GMB",
"brk_diff": 0,
"name": "Gambia",
"name_long": "The Gambia",
"brk_a3": "GMB",
"brk_name": "Gambia",
"brk_group": "",
"abbrev": "Gambia",
"postal": "GM",
"formal_en": "Republic of the Gambia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Gambia, The",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 4,
"mapcolor9": 1,
"mapcolor13": 8,
"pop_est": 1782893,
"gdp_md_est": 2272,
"pop_year": -99,
"lastcensus": 2003,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GM",
"iso_a3": "GMB",
"iso_n3": "270",
"un_a3": "270",
"wb_a2": "GM",
"wb_a3": "GMB",
"woe_id": -99,
"adm0_a3_is": "GMB",
"adm0_a3_us": "GMB",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Western Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 6,
"long_len": 10,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-16.841524624081273,
13.15139394780256
],
[
-16.71372880702347,
13.594958604379855
],
[
-15.624596320039942,
13.62358734786956
],
[
-15.39877031092446,
13.86036876063092
],
[
-15.08173539881382,
13.876491807505985
],
[
-14.687030808968487,
13.630356960499784
],
[
-14.376713833055788,
13.625680243377374
],
[
-14.046992356817482,
13.79406789800045
],
[
-13.844963344772408,
13.505041612192002
],
[
-14.277701788784555,
13.280585028532244
],
[
-14.712197231494628,
13.298206691943777
],
[
-15.141163295949468,
13.509511623585238
],
[
-15.511812506562933,
13.278569647672867
],
[
-15.691000535534995,
13.270353094938457
],
[
-15.931295945692211,
13.130284125211332
],
[
-16.841524624081273,
13.15139394780256
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Guinea Bissau",
"sov_a3": "GNB",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Guinea Bissau",
"adm0_a3": "GNB",
"geou_dif": 0,
"geounit": "Guinea Bissau",
"gu_a3": "GNB",
"su_dif": 0,
"subunit": "Guinea Bissau",
"su_a3": "GNB",
"brk_diff": 0,
"name": "Guinea-Bissau",
"name_long": "Guinea-Bissau",
"brk_a3": "GNB",
"brk_name": "Guinea-Bissau",
"brk_group": "",
"abbrev": "GnB.",
"postal": "GW",
"formal_en": "Republic of Guinea-Bissau",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Guinea-Bissau",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 5,
"mapcolor9": 3,
"mapcolor13": 4,
"pop_est": 1533964,
"gdp_md_est": 904.2,
"pop_year": -99,
"lastcensus": 2009,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GW",
"iso_a3": "GNB",
"iso_n3": "624",
"un_a3": "624",
"wb_a2": "GW",
"wb_a3": "GNB",
"woe_id": -99,
"adm0_a3_is": "GNB",
"adm0_a3_us": "GNB",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Western Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 13,
"long_len": 13,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-15.130311245168173,
11.040411688679526
],
[
-15.664180467175527,
11.458474025920795
],
[
-16.085214199273565,
11.52459402103824
],
[
-16.314786749730203,
11.80651479740655
],
[
-16.30894731288123,
11.95870189050612
],
[
-16.61383826340328,
12.170911159712702
],
[
-16.677451951554573,
12.384851589401052
],
[
-16.147716844130585,
12.547761542201187
],
[
-15.816574266004254,
12.515567124883347
],
[
-15.54847693527401,
12.628170070847347
],
[
-13.700476040084325,
12.586182969610194
],
[
-13.718743658899513,
12.24718557377551
],
[
-13.828271857142125,
12.142644151249044
],
[
-13.743160773157413,
11.811269029177412
],
[
-13.900799729863776,
11.678718980348748
],
[
-14.121406419317779,
11.677117010947697
],
[
-14.382191534878729,
11.509271958863692
],
[
-14.685687221728898,
11.527823798056488
],
[
-15.130311245168173,
11.040411688679526
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Equatorial Guinea",
"sov_a3": "GNQ",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Equatorial Guinea",
"adm0_a3": "GNQ",
"geou_dif": 0,
"geounit": "Equatorial Guinea",
"gu_a3": "GNQ",
"su_dif": 0,
"subunit": "Equatorial Guinea",
"su_a3": "GNQ",
"brk_diff": 0,
"name": "Eq. Guinea",
"name_long": "Equatorial Guinea",
"brk_a3": "GNQ",
"brk_name": "Eq. Guinea",
"brk_group": "",
"abbrev": "Eq. G.",
"postal": "GQ",
"formal_en": "Republic of Equatorial Guinea",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Equatorial Guinea",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 1,
"mapcolor9": 4,
"mapcolor13": 8,
"pop_est": 650702,
"gdp_md_est": 14060,
"pop_year": 0,
"lastcensus": 2002,
"gdp_year": 0,
"economy": "7. Least developed region",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GQ",
"iso_a3": "GNQ",
"iso_n3": "226",
"un_a3": "226",
"wb_a2": "GQ",
"wb_a3": "GNQ",
"woe_id": -99,
"adm0_a3_is": "GNQ",
"adm0_a3_us": "GNQ",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Africa",
"region_un": "Africa",
"subregion": "Middle Africa",
"region_wb": "Sub-Saharan Africa",
"name_len": 10,
"long_len": 17,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
9.492888624721985,
1.010119533691494
],
[
9.305613234096256,
1.1609113631191832
],
[
9.649158155972628,
2.2838660750377358
],
[
11.276449008843713,
2.261050930180872
],
[
11.285078973036462,
1.0576618514000131
],
[
9.830284051155644,
1.0678937849937995
],
[
9.492888624721985,
1.010119533691494
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Greece",
"sov_a3": "GRC",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Greece",
"adm0_a3": "GRC",
"geou_dif": 0,
"geounit": "Greece",
"gu_a3": "GRC",
"su_dif": 0,
"subunit": "Greece",
"su_a3": "GRC",
"brk_diff": 0,
"name": "Greece",
"name_long": "Greece",
"brk_a3": "GRC",
"brk_name": "Greece",
"brk_group": "",
"abbrev": "Greece",
"postal": "GR",
"formal_en": "Hellenic Republic",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Greece",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 2,
"mapcolor9": 2,
"mapcolor13": 9,
"pop_est": 10737428,
"gdp_md_est": 343000,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GR",
"iso_a3": "GRC",
"iso_n3": "300",
"un_a3": "300",
"wb_a2": "GR",
"wb_a3": "GRC",
"woe_id": -99,
"adm0_a3_is": "GRC",
"adm0_a3_us": "GRC",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Southern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 6,
"long_len": 6,
"abbrev_len": 6,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
23.699980096133004,
35.70500438083553
],
[
24.24666507334868,
35.368022365860156
],
[
25.02501549652888,
35.424995632461986
],
[
25.769207797964185,
35.35401805270908
],
[
25.745023227651586,
35.179997666966216
],
[
26.290002882601726,
35.29999034274792
],
[
26.16499759288766,
35.004995429009796
],
[
24.724982130642303,
34.91998769788961
],
[
24.735007358506948,
35.08499054619759
],
[
23.514978468528113,
35.27999156345098
],
[
23.699980096133004,
35.70500438083553
]
]
],
[
[
[
22.05537763844427,
41.14986583105269
],
[
22.597308383889015,
41.130487168943205
],
[
22.76177000000007,
41.304800000000085
],
[
22.95237715016657,
41.33799388281122
],
[
23.692073601992462,
41.30908091894386
],
[
24.492644891058035,
41.58389618587205
],
[
25.197201368925533,
41.23448598893066
],
[
26.106138136507184,
41.32889883072784
],
[
26.117041863720914,
41.82690460872473
],
[
26.604195590936285,
41.562114569661105
],
[
26.29460208507578,
40.93626129817426
],
[
26.056942172965506,
40.824123440100834
],
[
25.447677036244187,
40.85254547786147
],
[
24.92584842296094,
40.94706167252323
],
[
23.714811232200816,
40.68712921809512
],
[
24.407998894964066,
40.1249929876241
],
[
23.899967889102584,
39.96200552017558
],
[
23.3429993018608,
39.96099782974579
],
[
22.813987664488963,
40.476005153966554
],
[
22.62629886240478,
40.25656118423919
],
[
22.84974775563481,
39.65931081802577
],
[
23.3500272966526,
39.19001129816726
],
[
22.973099399515547,
38.97090322524966
],
[
23.530016310324953,
38.51000112563847
],
[
24.025024855248944,
38.21999298761645
],
[
24.040011020613605,
37.655014553369426
],
[
23.115002882589152,
37.92001129816222
],
[
23.409971958111072,
37.409990749657396
],
[
22.774971958108637,
37.30501007745656
],
[
23.15422529469862,
36.422505804992056
],
[
22.490028110451107,
36.41000010837746
],
[
21.670026482843696,
36.8449864771942
],
[
21.295010613701578,
37.644989325504696
],
[
21.120034213961333,
38.31032339126273
],
[
20.730032179454582,
38.769985256498785
],
[
20.217712029712857,
39.340234686839636
],
[
20.15001590341052,
39.62499766698403
],
[
20.615000441172782,
40.110006822259436
],
[
20.674996779063633,
40.434999904943055
],
[
20.99998986174728,
40.58000397395398
],
[
21.02004031747643,
40.84272695572588
],
[
21.674160597426976,
40.93127452245798
],
[
22.05537763844427,
41.14986583105269
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Denmark",
"sov_a3": "DN1",
"adm0_dif": 1,
"level": 2,
"type": "Country",
"admin": "Greenland",
"adm0_a3": "GRL",
"geou_dif": 0,
"geounit": "Greenland",
"gu_a3": "GRL",
"su_dif": 0,
"subunit": "Greenland",
"su_a3": "GRL",
"brk_diff": 0,
"name": "Greenland",
"name_long": "Greenland",
"brk_a3": "GRL",
"brk_name": "Greenland",
"brk_group": "",
"abbrev": "Grlnd.",
"postal": "GL",
"formal_en": "Greenland",
"formal_fr": "",
"note_adm0": "Den.",
"note_brk": "",
"name_sort": "Greenland",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 1,
"mapcolor9": 3,
"mapcolor13": 12,
"pop_est": 57600,
"gdp_md_est": 1100,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GL",
"iso_a3": "GRL",
"iso_n3": "304",
"un_a3": "304",
"wb_a2": "GL",
"wb_a3": "GRL",
"woe_id": -99,
"adm0_a3_is": "GRL",
"adm0_a3_us": "GRL",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Northern America",
"region_wb": "Europe & Central Asia",
"name_len": 9,
"long_len": 9,
"abbrev_len": 6,
"tiny": -99,
"homepart": -99
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-46.76379,
82.62796
],
[
-43.40644,
83.22516000000002
],
[
-39.89753,
83.18018
],
[
-38.62214,
83.54905
],
[
-35.08787,
83.64513000000001
],
[
-27.10046,
83.51966
],
[
-20.84539,
82.72668999999999
],
[
-22.69182,
82.34165
],
[
-26.51753,
82.29765
],
[
-31.900000000000002,
82.2
],
[
-31.396459999999998,
82.02154
],
[
-27.85666,
82.13177999999999
],
[
-24.84448,
81.78697
],
[
-22.90328,
82.09317
],
[
-22.071749999999998,
81.73449000000001
],
[
-23.169610000000002,
81.15271
],
[
-20.62363,
81.52462
],
[
-15.768180000000001,
81.91245
],
[
-12.77018,
81.71885
],
[
-12.20855,
81.29154
],
[
-16.285330000000002,
80.58004
],
[
-16.85,
80.35
],
[
-20.04624,
80.17708
],
[
-17.73035,
80.12912
],
[
-18.900000000000002,
79.4
],
[
-19.70499,
78.75128000000001
],
[
-19.67353,
77.63859000000001
],
[
-18.47285,
76.98565
],
[
-20.03503,
76.94434000000001
],
[
-21.679440000000003,
76.62795
],
[
-19.83407,
76.09808
],
[
-19.59896,
75.24838
],
[
-20.66818,
75.15585
],
[
-19.37281,
74.29561000000001
],
[
-21.594220000000004,
74.22382
],
[
-20.434540000000002,
73.81713
],
[
-20.762340000000002,
73.46436
],
[
-22.17221,
73.30955
],
[
-23.56593,
73.30663
],
[
-22.313109999999998,
72.62928
],
[
-22.29954,
72.18409
],
[
-24.278340000000004,
72.59788
],
[
-24.79296,
72.3302
],
[
-23.442960000000003,
72.08015999999999
],
[
-22.13281,
71.46898
],
[
-21.753560000000004,
70.66369
],
[
-23.53603,
70.471
],
[
-24.307019999999998,
70.85649000000001
],
[
-25.543409999999998,
71.43093999999999
],
[
-25.20135,
70.75225999999999
],
[
-26.36276,
70.22646
],
[
-23.727420000000002,
70.18401
],
[
-22.349020000000003,
70.12946000000001
],
[
-25.029270000000004,
69.25880000000001
],
[
-27.74737,
68.47046
],
[
-30.67371,
68.12503
],
[
-31.77665,
68.12078000000001
],
[
-32.81105,
67.73547
],
[
-34.20196,
66.67974
],
[
-36.35284,
65.9789
],
[
-37.043780000000005,
65.93768
],
[
-38.37505,
65.69213
],
[
-39.81222,
65.45848
],
[
-40.66899,
64.83997000000001
],
[
-40.68281,
64.13902
],
[
-41.188700000000004,
63.482459999999996
],
[
-42.819379999999995,
62.68233
],
[
-42.41666000000001,
61.90093
],
[
-42.86619,
61.074040000000004
],
[
-43.3784,
60.09772
],
[
-44.7875,
60.03676000000001
],
[
-46.26364,
60.85328
],
[
-48.26294000000001,
60.858430000000006
],
[
-49.23308000000001,
61.40681000000001
],
[
-49.90039,
62.38336
],
[
-51.63325,
63.62691
],
[
-52.140139999999995,
64.27842
],
[
-52.27659,
65.17670000000001
],
[
-53.66166,
66.09957
],
[
-53.30161,
66.8365
],
[
-53.96911,
67.18899
],
[
-52.9804,
68.35759
],
[
-51.47536,
68.72958000000001
],
[
-51.08041,
69.14781
],
[
-50.87122,
69.9291
],
[
-52.013585,
69.574925
],
[
-52.55792,
69.42616
],
[
-53.456289999999996,
69.283625
],
[
-54.68336,
69.61003
],
[
-54.750009999999996,
70.28932
],
[
-54.35884,
70.82131500000001
],
[
-53.431315000000005,
70.835755
],
[
-51.39014,
70.56978
],
[
-53.109370000000006,
71.20485000000001
],
[
-54.00422,
71.54719
],
[
-55,
71.40653696727257
],
[
-55.83468,
71.65444000000001
],
[
-54.71819000000001,
72.58625
],
[
-55.32634,
72.95861000000001
],
[
-56.12003,
73.64977
],
[
-57.32363,
74.71026
],
[
-58.59679,
75.09861000000001
],
[
-58.58516,
75.51727
],
[
-61.26861,
76.10238000000001
],
[
-63.39165,
76.1752
],
[
-66.06427,
76.13486
],
[
-68.50438,
76.06141000000001
],
[
-69.66485,
76.37975
],
[
-71.40257,
77.00857
],
[
-68.77671,
77.32312
],
[
-66.76397,
77.37595
],
[
-71.04293,
77.63595
],
[
-73.297,
78.04419
],
[
-73.15938,
78.43271
],
[
-69.37345,
78.91388
],
[
-65.7107,
79.39436
],
[
-65.3239,
79.75814
],
[
-68.02298,
80.11721
],
[
-67.15129,
80.51582
],
[
-63.68925,
81.21396000000001
],
[
-62.234440000000006,
81.3211
],
[
-62.65116,
81.77042
],
[
-60.28249,
82.03363000000002
],
[
-57.207440000000005,
82.19074
],
[
-54.13442,
82.19962
],
[
-53.043279999999996,
81.88833
],
[
-50.39061,
82.43883
],
[
-48.003859999999996,
82.06481000000001
],
[
-46.59984000000001,
81.985945
],
[
-44.523,
81.6607
],
[
-46.9007,
82.19979000000001
],
[
-46.76379,
82.62796
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Guatemala",
"sov_a3": "GTM",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Guatemala",
"adm0_a3": "GTM",
"geou_dif": 0,
"geounit": "Guatemala",
"gu_a3": "GTM",
"su_dif": 0,
"subunit": "Guatemala",
"su_a3": "GTM",
"brk_diff": 0,
"name": "Guatemala",
"name_long": "Guatemala",
"brk_a3": "GTM",
"brk_name": "Guatemala",
"brk_group": "",
"abbrev": "Guat.",
"postal": "GT",
"formal_en": "Republic of Guatemala",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Guatemala",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 3,
"mapcolor9": 3,
"mapcolor13": 6,
"pop_est": 13276517,
"gdp_md_est": 68580,
"pop_year": -99,
"lastcensus": 2002,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GT",
"iso_a3": "GTM",
"iso_n3": "320",
"un_a3": "320",
"wb_a2": "GT",
"wb_a3": "GTM",
"woe_id": -99,
"adm0_a3_is": "GTM",
"adm0_a3_us": "GTM",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Central America",
"region_wb": "Latin America & Caribbean",
"name_len": 9,
"long_len": 9,
"abbrev_len": 5,
"tiny": 4,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-90.09555457229098,
13.735337632700734
],
[
-90.60862403030085,
13.909771429901951
],
[
-91.23241024449605,
13.927832342987957
],
[
-91.68974667027913,
14.126218166556455
],
[
-92.22775000686983,
14.538828640190928
],
[
-92.20322953974733,
14.830102850804069
],
[
-92.08721594925207,
15.064584662328441
],
[
-92.22924862340628,
15.25144664149586
],
[
-91.74796017125593,
16.066564846251723
],
[
-90.46447262242266,
16.069562079324655
],
[
-90.43886695022204,
16.410109768128095
],
[
-90.60084672724092,
16.47077789963876
],
[
-90.71182186558772,
16.687483018454728
],
[
-91.08167009150065,
16.918476670799407
],
[
-91.45392127151516,
17.252177232324172
],
[
-91.00226925328421,
17.25465770107418
],
[
-91.00151994501596,
17.81759491624571
],
[
-90.06793351923098,
17.819326076727478
],
[
-89.14308041050332,
17.80831899664932
],
[
-89.15080603713095,
17.015576687075836
],
[
-89.22912167026928,
15.886937567605171
],
[
-88.93061275913527,
15.887273464415076
],
[
-88.60458614780585,
15.70638011317736
],
[
-88.51836402052686,
15.855389105690975
],
[
-88.22502275262202,
15.727722479713904
],
[
-88.68067969435563,
15.346247056535304
],
[
-89.15481096063357,
15.06641917567481
],
[
-89.22522009963127,
14.874286200413621
],
[
-89.14553504103718,
14.678019110569082
],
[
-89.3533259752828,
14.424132798719114
],
[
-89.58734269891656,
14.36258616785949
],
[
-89.53421932652051,
14.244815578666305
],
[
-89.72193396682073,
14.134228013561696
],
[
-90.0646779039966,
13.881969509328925
],
[
-90.09555457229098,
13.735337632700734
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 4,
"sovereignt": "Guyana",
"sov_a3": "GUY",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Guyana",
"adm0_a3": "GUY",
"geou_dif": 0,
"geounit": "Guyana",
"gu_a3": "GUY",
"su_dif": 0,
"subunit": "Guyana",
"su_a3": "GUY",
"brk_diff": 0,
"name": "Guyana",
"name_long": "Guyana",
"brk_a3": "GUY",
"brk_name": "Guyana",
"brk_group": "",
"abbrev": "Guy.",
"postal": "GY",
"formal_en": "Co-operative Republic of Guyana",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Guyana",
"name_alt": "",
"mapcolor7": 3,
"mapcolor8": 1,
"mapcolor9": 4,
"mapcolor13": 8,
"pop_est": 772298,
"gdp_md_est": 2966,
"pop_year": -99,
"lastcensus": 2002,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "GY",
"iso_a3": "GUY",
"iso_n3": "328",
"un_a3": "328",
"wb_a2": "GY",
"wb_a3": "GUY",
"woe_id": -99,
"adm0_a3_is": "GUY",
"adm0_a3_us": "GUY",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "South America",
"region_un": "Americas",
"subregion": "South America",
"region_wb": "Latin America & Caribbean",
"name_len": 6,
"long_len": 6,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-59.758284878159195,
8.367034816924047
],
[
-59.10168412945866,
7.999201971870492
],
[
-58.48296220562806,
7.347691351750697
],
[
-58.45487606467742,
6.832787380394464
],
[
-58.078103196837375,
6.809093736188643
],
[
-57.542218593970645,
6.321268215353356
],
[
-57.14743648947689,
5.973149929219161
],
[
-57.307245856339506,
5.073566595882227
],
[
-57.91428890647214,
4.812626451024414
],
[
-57.8602095200787,
4.57680105226045
],
[
-58.04469438336068,
4.0608635522583825
],
[
-57.60156897645787,
3.3346546492606848
],
[
-57.28143347840971,
3.3334919295341194
],
[
-57.15009782573991,
2.7689269067454063
],
[
-56.539385748914555,
1.8995226098669207
],
[
-56.78270423036083,
1.8637108422886541
],
[
-57.335822923396904,
1.9485377058957594
],
[
-57.66097103537737,
1.6825849471056387
],
[
-58.11344987652502,
1.5071951359070253
],
[
-58.429477098205965,
1.4639419620787208
],
[
-58.540012986878295,
1.2680882836925207
],
[
-59.03086157900265,
1.3176976586927225
],
[
-59.64604366722126,
1.786893825686789
],
[
-59.71854570172675,
2.2496304386443597
],
[
-59.97452490908456,
2.755232652188056
],
[
-59.815413174057866,
3.6064985213320853
],
[
-59.53803992373123,
3.9588025984819377
],
[
-59.767405768458715,
4.423502915866607
],
[
-60.11100236676738,
4.574966538914083
],
[
-59.980958624904886,
5.014061184098139
],
[
-60.21368343773133,
5.244486395687602
],
[
-60.73357418480372,
5.200277207861901
],
[
-61.410302903881956,
5.959068101419618
],
[
-61.13941504580795,
6.234296779806144
],
[
-61.15933631045648,
6.696077378766319
],
[
-60.54399919294099,
6.856584377464883
],
[
-60.2956680975624,
7.043911444522919
],
[
-60.637972785063766,
7.4149999048108555
],
[
-60.5505879380582,
7.779602972846178
],
[
-59.758284878159195,
8.367034816924047
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Honduras",
"sov_a3": "HND",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Honduras",
"adm0_a3": "HND",
"geou_dif": 0,
"geounit": "Honduras",
"gu_a3": "HND",
"su_dif": 0,
"subunit": "Honduras",
"su_a3": "HND",
"brk_diff": 0,
"name": "Honduras",
"name_long": "Honduras",
"brk_a3": "HND",
"brk_name": "Honduras",
"brk_group": "",
"abbrev": "Hond.",
"postal": "HN",
"formal_en": "Republic of Honduras",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Honduras",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 5,
"mapcolor9": 2,
"mapcolor13": 5,
"pop_est": 7792854,
"gdp_md_est": 33720,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "6. Developing region",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "HN",
"iso_a3": "HND",
"iso_n3": "340",
"un_a3": "340",
"wb_a2": "HN",
"wb_a3": "HND",
"woe_id": -99,
"adm0_a3_is": "HND",
"adm0_a3_us": "HND",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Central America",
"region_wb": "Latin America & Caribbean",
"name_len": 8,
"long_len": 8,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-87.31665442579549,
12.984685777229004
],
[
-87.48940873894713,
13.297534898323931
],
[
-87.79311113152653,
13.384480495655168
],
[
-87.72350297722932,
13.785050360565606
],
[
-87.85951534702161,
13.893312486217098
],
[
-88.06534257684012,
13.964625962779792
],
[
-88.50399797234962,
13.845485948130943
],
[
-88.54123084181595,
13.980154730683523
],
[
-88.84307288283276,
14.140506700085211
],
[
-89.05851192905766,
14.340029405164216
],
[
-89.35332597528281,
14.424132798719086
],
[
-89.14553504103719,
14.678019110569153
],
[
-89.22522009963126,
14.874286200413678
],
[
-89.15481096063354,
15.066419175674866
],
[
-88.6806796943556,
15.34624705653539
],
[
-88.22502275262195,
15.727722479714032
],
[
-88.12115312371537,
15.688655096901357
],
[
-87.90181250685242,
15.864458319558196
],
[
-87.61568010125234,
15.878798529519202
],
[
-87.52292090528846,
15.797278957578783
],
[
-87.36776241733213,
15.846940009011291
],
[
-86.90319129102818,
15.75671295822957
],
[
-86.44094560417739,
15.782835394753192
],
[
-86.11923397494434,
15.893448798073962
],
[
-86.00195431185784,
16.00540578863439
],
[
-85.68331743034628,
15.953651841693954
],
[
-85.44400387240256,
15.885749009662447
],
[
-85.18244361035721,
15.909158433490632
],
[
-84.98372188997882,
15.995923163308703
],
[
-84.52697974316715,
15.857223619037427
],
[
-84.36825558138258,
15.835157782448732
],
[
-84.06305457226682,
15.648244126849136
],
[
-83.77397661002612,
15.424071763566872
],
[
-83.41038123242038,
15.270902818253774
],
[
-83.14721900097413,
14.99582916916421
],
[
-83.48998877636603,
15.016267198135665
],
[
-83.6285849677729,
14.880073960830373
],
[
-83.97572140169359,
14.749435939996488
],
[
-84.22834164095241,
14.74876414637663
],
[
-84.4493359036486,
14.621614284722511
],
[
-84.64958207877964,
14.666805324761867
],
[
-84.8200367906943,
14.81958669683263
],
[
-84.92450069857233,
14.790492865452336
],
[
-85.05278744173688,
14.551541042534723
],
[
-85.14875057650289,
14.560196844943619
],
[
-85.16536454948482,
14.354369615125051
],
[
-85.51441301140028,
14.079011745657908
],
[
-85.69866533073696,
13.960078436738002
],
[
-85.80129472526852,
13.836054999237604
],
[
-86.09626380079061,
14.038187364147234
],
[
-86.31214209668985,
13.771356106008227
],
[
-86.52070817741992,
13.778487453664468
],
[
-86.75508663607962,
13.75484548589094
],
[
-86.73382178419149,
13.2630925562014
],
[
-86.88055701368438,
13.254204209847217
],
[
-87.00576900912745,
13.025794379117258
],
[
-87.31665442579549,
12.984685777229004
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 6,
"sovereignt": "Croatia",
"sov_a3": "HRV",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Croatia",
"adm0_a3": "HRV",
"geou_dif": 0,
"geounit": "Croatia",
"gu_a3": "HRV",
"su_dif": 0,
"subunit": "Croatia",
"su_a3": "HRV",
"brk_diff": 0,
"name": "Croatia",
"name_long": "Croatia",
"brk_a3": "HRV",
"brk_name": "Croatia",
"brk_group": "",
"abbrev": "Cro.",
"postal": "HR",
"formal_en": "Republic of Croatia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Croatia",
"name_alt": "",
"mapcolor7": 5,
"mapcolor8": 4,
"mapcolor9": 5,
"mapcolor13": 1,
"pop_est": 4489409,
"gdp_md_est": 82390,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "2. High income: nonOECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "HR",
"iso_a3": "HRV",
"iso_n3": "191",
"un_a3": "191",
"wb_a2": "HR",
"wb_a3": "HRV",
"woe_id": -99,
"adm0_a3_is": "HRV",
"adm0_a3_us": "HRV",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Southern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
19.072768995854176,
45.52151113543209
],
[
19.39047570158459,
45.236515611342384
],
[
19.00548628101012,
44.86023366960916
],
[
18.553214145591653,
45.08158966733146
],
[
17.861783481526402,
45.067740383477144
],
[
17.002146030351014,
45.23377676043094
],
[
16.534939406000206,
45.21160757097772
],
[
16.318156772535872,
45.00412669532591
],
[
15.959367303133376,
45.23377676043094
],
[
15.750026075918981,
44.818711656262565
],
[
16.23966027188453,
44.35114329688571
],
[
16.456442905348865,
44.04123973243128
],
[
16.91615644701733,
43.66772247982567
],
[
17.297373488034452,
43.44634064388737
],
[
17.674921502358984,
43.02856252702361
],
[
18.559999999999945,
42.64999999999998
],
[
18.450016310304818,
42.47999136002932
],
[
17.509970330483327,
42.849994615239154
],
[
16.930005730871642,
43.20999848080038
],
[
16.015384555737683,
43.50721548112722
],
[
15.174453973052096,
44.243191229827914
],
[
15.376250441151797,
44.31791535092208
],
[
14.92030927904051,
44.73848399512946
],
[
14.901602410550879,
45.07606028907611
],
[
14.258747592839995,
45.23377676043094
],
[
13.952254672917036,
44.80212352149687
],
[
13.656975538801191,
45.13693512631596
],
[
13.67940311041582,
45.48414907488501
],
[
13.715059848697251,
45.500323798192426
],
[
14.4119682145855,
45.46616567644742
],
[
14.59510949062792,
45.63494090431283
],
[
14.935243767972963,
45.471695054702764
],
[
15.327674594797429,
45.45231639259333
],
[
15.323953891672431,
45.731782538427694
],
[
15.671529575267641,
45.83415355079791
],
[
15.768732944408612,
46.23810822202353
],
[
16.564808383864943,
46.50375092221981
],
[
16.882515089595415,
46.38063182228444
],
[
17.630066359129557,
45.9517691106941
],
[
18.45606245288286,
45.75948110613615
],
[
18.829838087650046,
45.908877671891844
],
[
19.072768995854176,
45.52151113543209
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Haiti",
"sov_a3": "HTI",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Haiti",
"adm0_a3": "HTI",
"geou_dif": 0,
"geounit": "Haiti",
"gu_a3": "HTI",
"su_dif": 0,
"subunit": "Haiti",
"su_a3": "HTI",
"brk_diff": 0,
"name": "Haiti",
"name_long": "Haiti",
"brk_a3": "HTI",
"brk_name": "Haiti",
"brk_group": "",
"abbrev": "Haiti",
"postal": "HT",
"formal_en": "Republic of Haiti",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Haiti",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 1,
"mapcolor9": 7,
"mapcolor13": 2,
"pop_est": 9035536,
"gdp_md_est": 11500,
"pop_year": -99,
"lastcensus": 2003,
"gdp_year": -99,
"economy": "7. Least developed region",
"income_grp": "5. Low income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "HT",
"iso_a3": "HTI",
"iso_n3": "332",
"un_a3": "332",
"wb_a2": "HT",
"wb_a3": "HTI",
"woe_id": -99,
"adm0_a3_is": "HTI",
"adm0_a3_us": "HTI",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "North America",
"region_un": "Americas",
"subregion": "Caribbean",
"region_wb": "Latin America & Caribbean",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-71.71236141629296,
19.714455878167357
],
[
-71.62487321642283,
19.169837958243306
],
[
-71.7013026597825,
18.785416978424053
],
[
-71.94511206733556,
18.61690013272026
],
[
-71.68773759630588,
18.31666006110447
],
[
-71.70830481635805,
18.044997056546094
],
[
-72.37247616238935,
18.21496084235406
],
[
-72.84441118029488,
18.145611070218365
],
[
-73.45455481636503,
18.2179063989947
],
[
-73.92243323433566,
18.030992743395004
],
[
-74.45803361682478,
18.342549953682706
],
[
-74.36992529976713,
18.66490753831941
],
[
-73.44954220243272,
18.526052964751145
],
[
-72.69493709989064,
18.445799465401862
],
[
-72.334881557897,
18.668421535715254
],
[
-72.79164954292489,
19.10162506761803
],
[
-72.78410478381028,
19.48359141690341
],
[
-73.41502234566175,
19.639550889560283
],
[
-73.18979061551762,
19.915683905511912
],
[
-72.57967281766362,
19.871500555902358
],
[
-71.71236141629296,
19.714455878167357
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 5,
"sovereignt": "Hungary",
"sov_a3": "HUN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Hungary",
"adm0_a3": "HUN",
"geou_dif": 0,
"geounit": "Hungary",
"gu_a3": "HUN",
"su_dif": 0,
"subunit": "Hungary",
"su_a3": "HUN",
"brk_diff": 0,
"name": "Hungary",
"name_long": "Hungary",
"brk_a3": "HUN",
"brk_name": "Hungary",
"brk_group": "",
"abbrev": "Hun.",
"postal": "HU",
"formal_en": "Republic of Hungary",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Hungary",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 6,
"mapcolor9": 1,
"mapcolor13": 5,
"pop_est": 9905596,
"gdp_md_est": 196600,
"pop_year": -99,
"lastcensus": 2001,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "HU",
"iso_a3": "HUN",
"iso_n3": "348",
"un_a3": "348",
"wb_a2": "HU",
"wb_a3": "HUN",
"woe_id": -99,
"adm0_a3_is": "HUN",
"adm0_a3_us": "HUN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Eastern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
16.202298211337364,
46.85238597267696
],
[
16.534267612380376,
47.49617096616912
],
[
16.340584344150415,
47.71290192320123
],
[
16.90375410326726,
47.71486562762833
],
[
16.979666782304037,
48.123497015976305
],
[
17.48847293464982,
47.867466132186216
],
[
17.857132602620027,
47.75842886005037
],
[
18.696512892336926,
47.880953681014404
],
[
18.77702477384767,
48.081768296900634
],
[
19.17436486173989,
48.11137889260387
],
[
19.661363559658497,
48.26661489520866
],
[
19.769470656013112,
48.202691148463614
],
[
20.239054396249347,
48.32756724709692
],
[
20.473562045989866,
48.562850043321816
],
[
20.801293979584926,
48.623854071642384
],
[
21.872236362401736,
48.31997081155002
],
[
22.085608351334855,
48.42226430927179
],
[
22.640819939878753,
48.15023956968736
],
[
22.710531447040495,
47.88219391538941
],
[
22.099767693782837,
47.6724392767167
],
[
21.626514926853872,
46.99423777931816
],
[
21.02195234547125,
46.3160879583519
],
[
20.220192498462836,
46.127468980486555
],
[
19.596044549241583,
46.17172984474454
],
[
18.82983808764996,
45.90887767189193
],
[
18.45606245288286,
45.759481106136136
],
[
17.630066359129557,
45.95176911069419
],
[
16.8825150895953,
46.38063182228444
],
[
16.564808383864857,
46.50375092221983
],
[
16.370504998447416,
46.841327216166505
],
[
16.202298211337364,
46.85238597267696
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Indonesia",
"sov_a3": "IDN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Indonesia",
"adm0_a3": "IDN",
"geou_dif": 0,
"geounit": "Indonesia",
"gu_a3": "IDN",
"su_dif": 0,
"subunit": "Indonesia",
"su_a3": "IDN",
"brk_diff": 0,
"name": "Indonesia",
"name_long": "Indonesia",
"brk_a3": "IDN",
"brk_name": "Indonesia",
"brk_group": "",
"abbrev": "Indo.",
"postal": "INDO",
"formal_en": "Republic of Indonesia",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Indonesia",
"name_alt": "",
"mapcolor7": 6,
"mapcolor8": 6,
"mapcolor9": 6,
"mapcolor13": 11,
"pop_est": 240271522,
"gdp_md_est": 914600,
"pop_year": -99,
"lastcensus": 2010,
"gdp_year": -99,
"economy": "4. Emerging region: MIKT",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "ID",
"iso_a3": "IDN",
"iso_n3": "360",
"un_a3": "360",
"wb_a2": "ID",
"wb_a3": "IDN",
"woe_id": -99,
"adm0_a3_is": "IDN",
"adm0_a3_us": "IDN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "South-Eastern Asia",
"region_wb": "East Asia & Pacific",
"name_len": 9,
"long_len": 9,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
120.71560875863045,
-10.239581394087864
],
[
120.2950142762069,
-10.258649997603527
],
[
118.96780846565471,
-9.557969252158031
],
[
119.90030968636162,
-9.361340427287516
],
[
120.42575564990543,
-9.665921319215798
],
[
120.77550174365675,
-9.969675388227458
],
[
120.71560875863045,
-10.239581394087864
]
]
],
[
[
[
124.43595014861941,
-10.140000909061442
],
[
123.57998172413673,
-10.359987481327963
],
[
123.45998904835503,
-10.239994805546175
],
[
123.55000939340746,
-9.90001555749798
],
[
123.98000898650812,
-9.290026950724695
],
[
124.96868248911622,
-8.892790215697048
],
[
125.07001997284064,
-9.089987481322837
],
[
125.0885201356011,
-9.393173109579322
],
[
124.43595014861941,
-10.140000909061442
]
]
],
[
[
[
117.90001834520777,
-8.095681247594925
],
[
118.2606164897405,
-8.362383314653329
],
[
118.87845991422213,
-8.28068287519983
],
[
119.1265067892231,
-8.705824883665073
],
[
117.97040164598931,
-8.906639499551261
],
[
117.27773074754904,
-9.040894870645559
],
[
116.74014082241663,
-9.03293670007264
],
[
117.08373742072533,
-8.457157891476541
],
[
117.63202436734215,
-8.449303073768192
],
[
117.90001834520777,
-8.095681247594925
]
]
],
[
[
[
122.90353722543611,
-8.094234307490737
],
[
122.75698286345633,
-8.64980763106064
],
[
121.25449059457011,
-8.933666273639943
],
[
119.92439090380961,
-8.810417982623875
],
[
119.92092858284613,
-8.444858900591072
],
[
120.71509199430758,
-8.236964613480865
],
[
121.34166873584658,
-8.536739597206022
],
[
122.00736453663043,
-8.460620212440162
],
[
122.90353722543611,
-8.094234307490737
]
]
],
[
[
[
108.62347863162896,
-6.777673841990676
],
[
110.53922732955331,
-6.877357679881683
],
[
110.75957563684594,
-6.465186455921753
],
[
112.61481123255638,
-6.946035658397591
],
[
112.97876834518812,
-7.59421314863458
],
[
114.47893517462117,
-7.776527601760279
],
[
115.70552697150109,
-8.370806573116866
],
[
114.56451134649652,
-8.751816908404834
],
[
113.4647335144609,
-8.348947442257426
],
[
112.55967247930104,
-8.376180922075164
],
[
111.52206139531248,
-8.302128594600958
],
[
110.58614953007432,
-8.122604668819022
],
[
109.4276672709552,
-7.740664157749762
],
[
108.69365522668133,
-7.641600437046222
],
[
108.27776329959633,
-7.766657403192582
],
[
106.45410200401616,
-7.354899590690948
],
[
106.28062422081231,
-6.924899997590202
],
[
105.36548628135554,
-6.85141611087117
],
[
106.05164594932708,
-5.8959188777945
],
[
107.2650085795402,
-5.954985039904059
],
[
108.0720910990747,
-6.345762220895239
],
[
108.48684614464926,
-6.421984958525769
],
[
108.62347863162896,
-6.777673841990676
]
]
],
[
[
[
134.72462446506668,
-6.214400730009288
],
[
134.21013390516893,
-6.895237725454706
],
[
134.11277550673103,
-6.142467136259015
],
[
134.2903357280858,
-5.783057549669039
],
[
134.4996252788679,
-5.445042006047899
],
[
134.72700158095213,
-5.73758228925216
],
[
134.72462446506668,
-6.214400730009288
]
]
],
[
[
[
127.24921512258894,
-3.45906503663889
],
[
126.87492272349888,
-3.7909827612495803
],
[
126.18380211802733,
-3.607376397316557
],
[
125.98903364471929,
-3.1772734513513257
],
[
127.00065148326499,
-3.1293177221844104
],
[
127.24921512258894,
-3.45906503663889
]
]
],
[
[
[
130.4713440288518,
-3.09376433676762
],
[
130.8348360535928,
-3.858472181822762
],
[
129.99054650280814,
-3.4463009578628174
],
[
129.15524865124243,
-3.362636813982249
],
[
128.59068362845366,
-3.428679294451257
],
[
127.89889122936236,
-3.393435967628193
],
[
128.1358793478528,
-2.8436504044749142
],
[
129.37099775606092,
-2.802154229344552
],
[
130.4713440288518,
-3.09376433676762
]
]
],
[
[
[
141.00021040259188,
-2.6001510555156244
],
[
141.01705691951904,
-5.859021905138022
],
[
141.0338517600139,
-9.117892754760419
],
[
140.14341515519257,
-8.297167657100957
],
[
139.12776655492812,
-8.096042982620943
],
[
138.88147667862498,
-8.380935153846096
],
[
137.61447391169284,
-8.411682631059762
],
[
138.0390991558352,
-7.597882175327356
],
[
138.6686214540148,
-7.320224704623072
],
[
138.40791385310237,
-6.232849216337485
],
[
137.92783979711086,
-5.393365573756
],
[
135.98925011611348,
-4.546543877789048
],
[
135.16459760959972,
-4.462931410340772
],
[
133.6628804871979,
-3.5388534480975267
],
[
133.3677047059468,
-4.024818617370315
],
[
132.98395551974735,
-4.1129786108602815
],
[
132.756940952689,
-3.7462826473171305
],
[
132.75378869031923,
-3.3117872046070715
],
[
131.9898043153162,
-2.8205510392404562
],
[
133.0668445171435,
-2.460417982598443
],
[
133.78003095920351,
-2.47984832114021
],
[
133.69621178602617,
-2.2145415177536876
],
[
132.23237348849423,
-2.2125261368943256
],
[
131.8362219585447,
-1.6171619604595975
],
[
130.94283979708283,
-1.4325220678807966
],
[
130.51955814018007,
-0.9377202286860751
],
[
131.86753787651364,
-0.6954611141018177
],
[
132.3801164084168,
-0.3695378556369775
],
[
133.98554813042844,
-0.7802104630604418
],
[
134.1433679546478,
-1.1518673641035946
],
[
134.42262739475305,
-2.769184665542383
],
[
135.4576029806947,
-3.3677527807791137
],
[
136.2933142437188,
-2.30704233155609
],
[
137.44073774632753,
-1.703513278819372
],
[
138.3297274110448,
-1.7026864559026507
],
[
139.18492068904297,
-2.051295668143638
],
[
139.92668419816042,
-2.4090516089002847
],
[
141.00021040259188,
-2.6001510555156244
]
]
],
[
[
[
125.24050052297159,
1.4198361271176054
],
[
124.43703535369738,
0.4278811710589707
],
[
123.68550499887672,
0.2355931665008768
],
[
122.7230831238729,
0.4311367862933366
],
[
121.05672488818911,
0.38121735269945134
],
[
120.18308312386276,
0.23724681233422018
],
[
120.04086958219548,
-0.5196578914448509
],
[
120.93590538949073,
-1.4089059383233717
],
[
121.47582075407618,
-0.9559620092851162
],
[
123.34056481332848,
-0.6156727026430815
],
[
123.2583992859845,
-1.0762130672283376
],
[
122.82271528533161,
-0.9309506160558811
],
[
122.38852990121538,
-1.516858005381124
],
[
121.50827355355548,
-1.9044829240024228
],
[
122.4545723816843,
-3.1860584448408815
],
[
122.27189619353257,
-3.5295000138526973
],
[
123.17096276254657,
-4.683693129091708
],
[
123.16233279835379,
-5.3406039363859605
],
[
122.62851525277873,
-5.634591159694494
],
[
122.23639448454807,
-5.282933037948283
],
[
122.71956912647707,
-4.46417164471579
],
[
121.73823367725439,
-4.8513314754465
],
[
121.48946333220127,
-4.574552504091216
],
[
121.61917117725389,
-4.188477878438675
],
[
120.89818159391771,
-3.602105401222829
],
[
120.97238895068878,
-2.62764291749491
],
[
120.30545291552991,
-2.9316036922357256
],
[
120.39004723519176,
-4.097579034037224
],
[
120.43071658740539,
-5.528241062037779
],
[
119.79654341031952,
-5.6734001603456505
],
[
119.36690555224496,
-5.379878024927805
],
[
119.65360639860015,
-4.459417412944958
],
[
119.49883548388598,
-3.4944117163265105
],
[
119.07834435432702,
-3.487021986508765
],
[
118.7677689962529,
-2.801999200047689
],
[
119.18097374885869,
-2.1471037736127982
],
[
119.32339399625508,
-1.353147067880471
],
[
119.82599897672586,
0.1542544620734958
],
[
120.03570193896635,
0.5664773624658039
],
[
120.8857792501677,
1.309222723796836
],
[
121.666816847827,
1.0139435896810767
],
[
122.92756676645186,
0.8751923689774657
],
[
124.07752241424285,
0.9171019555661388
],
[
125.06598921112183,
1.6432591821315583
],
[
125.24050052297159,
1.4198361271176054
]
]
],
[
[
[
128.68824873262074,
1.1323859724941059
],
[
128.63595218314137,
0.2584858260061793
],
[
128.1201697124362,
0.3564126651992865
],
[
127.96803429576889,
-0.2520773250375328
],
[
128.37999881399972,
-0.7800037573312864
],
[
128.10001590384232,
-0.8999964331129746
],
[
127.69647464407504,
-0.26659840251150513
],
[
127.39949018769377,
1.0117215030925735
],
[
127.60051150930909,
1.8106908227571807
],
[
127.93237755748751,
2.174596258956555
],
[
128.00415612194084,
1.628531398928331
],
[
128.59455936087548,
1.540810655112864
],
[
128.68824873262074,
1.1323859724941059
]
]
],
[
[
[
109.66326012577375,
2.006466986494985
],
[
109.83022667850886,
1.3381356876641917
],
[
110.51406090702713,
0.7731314152009929
],
[
111.15913781132659,
0.9764781762695094
],
[
111.79754845586044,
0.9044412296546511
],
[
112.38025190638368,
1.4101209578467575
],
[
112.8598091980522,
1.4977900252299463
],
[
113.80584964401956,
1.217548732911041
],
[
114.6213554220175,
1.4306881778988867
],
[
115.13403730678525,
2.8214818383862195
],
[
115.51907840379201,
3.169238389494396
],
[
115.86551720587678,
4.306559149590157
],
[
117.01521447150637,
4.3060940616994685
],
[
117.88203494677018,
4.137551377779488
],
[
117.31323245653354,
3.234428208830579
],
[
118.04832970588538,
2.287690131027361
],
[
117.87562706916603,
1.8276406925489113
],
[
118.99674726773819,
0.9022191430660484
],
[
117.8118583517178,
0.7842418481437221
],
[
117.47833865770608,
0.10247467691702639
],
[
117.52164350796662,
-0.8037232397532108
],
[
116.56004845587952,
-1.487660821136231
],
[
116.5337968282752,
-2.483517347832901
],
[
116.14808393764864,
-4.012726332214015
],
[
116.00085778204911,
-3.6570374487490085
],
[
114.86480309454456,
-4.106984144714417
],
[
114.46865156459509,
-3.495703627133821
],
[
113.75567182826413,
-3.4391696102065197
],
[
113.25699425664757,
-3.1187757299968553
],
[
112.06812625534067,
-3.478392022316072
],
[
111.70329064336002,
-2.9944422339026318
],
[
111.04824018762824,
-3.049425957861189
],
[
110.223846063276,
-2.9340324845534838
],
[
110.07093550012436,
-1.5928740372824137
],
[
109.57194786991406,
-1.3149065079844888
],
[
109.09187381392255,
-0.4595065242570513
],
[
108.95265750532818,
0.4153754744443461
],
[
109.06913618371405,
1.3419339054376422
],
[
109.66326012577375,
2.006466986494985
]
]
],
[
[
[
105.81765506390937,
-5.852355645372413
],
[
104.71038414919153,
-5.873284600450646
],
[
103.86821333213075,
-5.037314955264975
],
[
102.58426069540693,
-4.220258884298204
],
[
102.15617313030103,
-3.614146009946765
],
[
101.39911339722508,
-2.7997771134591716
],
[
100.90250288290017,
-2.0502621394978604
],
[
100.14198082886062,
-0.6503475887109573
],
[
99.26373986206025,
0.1831415877246627
],
[
98.97001102091335,
1.042882391764536
],
[
98.60135135294311,
1.8235065779656168
],
[
97.69959760944991,
2.453183905442117
],
[
97.1769421732499,
3.3087905948986105
],
[
96.42401655475734,
3.868859768077911
],
[
95.38087609251349,
4.970782172053674
],
[
95.29302615761733,
5.479820868344817
],
[
95.93686282754177,
5.439513251157109
],
[
97.4848820332771,
5.2463209090340115
],
[
98.36916914265569,
4.268370266126368
],
[
99.14255862833582,
3.5903496362409157
],
[
99.69399783732243,
3.174328518075157
],
[
100.64143354696168,
2.099381211755798
],
[
101.65801232300734,
2.083697414555189
],
[
102.49827111207324,
1.398700466310217
],
[
103.07684044801303,
0.5613613956688539
],
[
103.83839603069836,
0.10454173420866653
],
[
103.43764529827499,
-0.7119458960028453
],
[
104.01078860882402,
-1.0592115210042294
],
[
104.3699914896849,
-1.0848430314210162
],
[
104.53949018760218,
-1.7823715144967167
],
[
104.88789269411402,
-2.3404253068166554
],
[
105.622111444117,
-2.42884368246807
],
[
106.10859337771271,
-3.0617766251789504
],
[
105.85744591677414,
-4.305524997579724
],
[
105.81765506390937,
-5.852355645372413
]
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "India",
"sov_a3": "IND",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "India",
"adm0_a3": "IND",
"geou_dif": 0,
"geounit": "India",
"gu_a3": "IND",
"su_dif": 0,
"subunit": "India",
"su_a3": "IND",
"brk_diff": 0,
"name": "India",
"name_long": "India",
"brk_a3": "IND",
"brk_name": "India",
"brk_group": "",
"abbrev": "India",
"postal": "IND",
"formal_en": "Republic of India",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "India",
"name_alt": "",
"mapcolor7": 1,
"mapcolor8": 3,
"mapcolor9": 2,
"mapcolor13": 2,
"pop_est": 1166079220,
"gdp_md_est": 3297000,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "3. Emerging region: BRIC",
"income_grp": "4. Lower middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "IN",
"iso_a3": "IND",
"iso_n3": "356",
"un_a3": "356",
"wb_a2": "IN",
"wb_a3": "IND",
"woe_id": -99,
"adm0_a3_is": "IND",
"adm0_a3_us": "IND",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Southern Asia",
"region_wb": "South Asia",
"name_len": 5,
"long_len": 5,
"abbrev_len": 5,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
77.83745079947457,
35.494009507787766
],
[
78.91226891471322,
34.32193634697579
],
[
78.81108646028574,
33.50619802503242
],
[
79.20889163606859,
32.994394639613716
],
[
79.17612877799553,
32.48377981213771
],
[
78.45844648632601,
32.61816437431273
],
[
78.73889448437401,
31.515906073527063
],
[
79.7213668151071,
30.88271474865473
],
[
81.11125613802932,
30.183480943313402
],
[
80.4767212259174,
29.72986522065534
],
[
80.08842451367627,
28.79447011974014
],
[
81.05720258985203,
28.416095282499043
],
[
81.99998742058497,
27.925479234319994
],
[
83.30424889519955,
27.36450572357556
],
[
84.6750179381738,
27.234901231387536
],
[
85.25177859898338,
26.726198431906344
],
[
86.02439293817918,
26.63098460540857
],
[
87.2274719583663,
26.397898057556077
],
[
88.06023766474982,
26.41461538340249
],
[
88.17480431514092,
26.81040517832595
],
[
88.04313276566123,
27.445818589786825
],
[
88.12044070836987,
27.876541652939594
],
[
88.73032596227856,
28.086864732367516
],
[
88.81424848832056,
27.299315904239364
],
[
88.83564253128938,
27.098966376243762
],
[
89.74452762243885,
26.719402981059957
],
[
90.37327477413407,
26.87572418874288
],
[
91.21751264848643,
26.808648179628022
],
[
92.03348351437509,
26.83831045176356
],
[
92.10371178585974,
27.452614040633208
],
[
91.69665652869668,
27.771741848251665
],
[
92.50311893104364,
27.89687632904645
],
[
93.41334760943269,
28.640629380807226
],
[
94.56599043170294,
29.277438055939985
],
[
95.40480228066464,
29.03171662039213
],
[
96.11767866413103,
29.452802028922466
],
[
96.58659061074749,
28.83097951915434
],
[
96.24883344928779,
28.411030992134442
],
[
97.32711388549004,
28.26158274994634
],
[
97.40256147663614,
27.882536119085444
],
[
97.0519885599681,
27.69905894623315
],
[
97.1339990580153,
27.083773505149964
],
[
96.41936567585097,
27.264589341739224
],
[
95.12476769407496,
26.5735720891323
],
[
95.1551534362626,
26.001307277932085
],
[
94.60324913938538,
25.162495428970402
],
[
94.55265791217164,
24.675238348890336
],
[
94.10674197792507,
23.85074087167348
],
[
93.3251876159428,
24.078556423432204
],
[
93.28632693885928,
23.043658352139005
],
[
93.06029422401463,
22.70311066333557
],
[
93.16612755734837,
22.278459580977103
],
[
92.67272098182556,
22.041238918541254
],
[
92.14603478390681,
23.627498684172593
],
[
91.86992760617132,
23.624346421802784
],
[
91.70647505083211,
22.985263983649187
],
[
91.15896325069973,
23.50352692310439
],
[
91.46772993364368,
24.072639471934792
],
[
91.91509280799443,
24.130413723237112
],
[
92.37620161333481,
24.976692816664965
],
[
91.79959598182208,
25.147431748957317
],
[
90.87221072791212,
25.132600612889547
],
[
89.92069258012185,
25.26974986419218
],
[
89.83248091019962,
25.96508209889548
],
[
89.35509402868729,
26.014407253518073
],
[
88.56304935094977,
26.446525580342723
],
[
88.2097892598025,
25.768065700782714
],
[
88.93155398962308,
25.238692328384776
],
[
88.30637251175602,
24.866079413344206
],
[
88.08442223506242,
24.501657212821925
],
[
88.69994022009092,
24.23371491138856
],
[
88.52976972855379,
23.631141872649167
],
[
88.87631188350309,
22.87914642993783
],
[
89.03196129756623,
22.055708319582976
],
[
88.88876590368542,
21.690588487224748
],
[
88.20849734899522,
21.703171698487807
],
[
86.97570438024027,
21.49556163175521
],
[
87.03316857294887,
20.743307806882413
],
[
86.49935102737379,
20.151638495356607
],
[
85.0602657409097,
19.4785788029711
],
[
83.94100589390001,
18.302009792549725
],
[
83.18921715691785,
17.67122142177898
],
[
82.19279218946592,
17.016636053937816
],
[
82.19124189649719,
16.556664130107848
],
[
81.69271935417748,
16.310219224507904
],
[
80.79199913933014,
15.951972357644493
],
[
80.32489586784388,
15.89918488205835
],
[
80.02506920768644,
15.136414903214147
],
[
80.2332735533904,
13.835770778859981
],
[
80.28629357292186,
13.006260687710835
],
[
79.8625468281285,
12.056215318240888
],
[
79.85799930208682,
10.35727509199711
],
[
79.340511509116,
10.30885427493962
],
[
78.88534549348918,
9.546135972527722
],
[
79.1897196796883,
9.216543687370148
],
[
78.2779407083305,
8.933046779816934
],
[
77.94116539908435,
8.252959092639742
],
[
77.53989790233794,
7.965534776232332
],
[
76.59297895702167,
8.89927623131419
],
[
76.13006147655108,
10.299630031775521
],
[
75.7464673196485,
11.308250637248307
],
[
75.39610110870959,
11.781245022015824
],
[
74.86481570831683,
12.741935736537897
],
[
74.61671715688354,
13.99258291264968
],
[
74.44385949086723,
14.617221787977698
],
[
73.5341992532334,
15.99065216721496
],
[
73.11990929554943,
17.928570054592498
],
[
72.82090945830865,
19.208233547436166
],
[
72.8244751321368,
20.419503282141534
],
[
72.6305334817454,
21.356009426351008
],
[
71.17527347197395,
20.757441311114235
],
[
70.4704586119451,
20.877330634031384
],
[
69.16413008003883,
22.0892980005727
],
[
69.6449276060824,
22.450774644454338
],
[
69.34959679553435,
22.84317963306269
],
[
68.1766451353734,
23.69196503345671
],
[
68.84259931831878,
24.35913361256094
],
[
71.04324018746823,
24.3565239527302
],
[
70.84469933460284,
25.21510203704352
],
[
70.2828731627256,
25.72222870533983
],
[
70.16892662952202,
26.491871649678842
],
[
69.51439293811313,
26.940965684511372
],
[
70.61649620960193,
27.989196275335868
],
[
71.77766564320032,
27.913180243434525
],
[
72.8237516620847,
28.961591701772054
],
[
73.45063846221743,
29.97641347911987
],
[
74.42138024282028,
30.979814764931177
],
[
74.40592898956501,
31.69263947196528
],
[
75.25864179881322,
32.2711054550405
],
[
74.45155927927871,
32.7648996038055
],
[
74.10429365427734,
33.44147329358685
],
[
73.74994835805197,
34.31769887952785
],
[
74.24020267120497,
34.748887030571254
],
[
75.75706098826834,
34.50492259372132
],
[
76.87172163280403,
34.65354401299274
],
[
77.83745079947457,
35.494009507787766
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 3,
"sovereignt": "Ireland",
"sov_a3": "IRL",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Ireland",
"adm0_a3": "IRL",
"geou_dif": 0,
"geounit": "Ireland",
"gu_a3": "IRL",
"su_dif": 0,
"subunit": "Ireland",
"su_a3": "IRL",
"brk_diff": 0,
"name": "Ireland",
"name_long": "Ireland",
"brk_a3": "IRL",
"brk_name": "Ireland",
"brk_group": "",
"abbrev": "Ire.",
"postal": "IRL",
"formal_en": "Ireland",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Ireland",
"name_alt": "",
"mapcolor7": 2,
"mapcolor8": 3,
"mapcolor9": 2,
"mapcolor13": 2,
"pop_est": 4203200,
"gdp_md_est": 188400,
"pop_year": -99,
"lastcensus": 2011,
"gdp_year": -99,
"economy": "2. Developed region: nonG7",
"income_grp": "1. High income: OECD",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "IE",
"iso_a3": "IRL",
"iso_n3": "372",
"un_a3": "372",
"wb_a2": "IE",
"wb_a3": "IRL",
"woe_id": -99,
"adm0_a3_is": "IRL",
"adm0_a3_us": "IRL",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Europe",
"region_un": "Europe",
"subregion": "Northern Europe",
"region_wb": "Europe & Central Asia",
"name_len": 7,
"long_len": 7,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-6.197884894220991,
53.867565009163364
],
[
-6.032985398777611,
53.15316417094435
],
[
-6.788856573910849,
52.260117906292336
],
[
-8.56161658368356,
51.669301255899356
],
[
-9.977085740590269,
51.82045482035308
],
[
-9.166282517930782,
52.86462881124268
],
[
-9.688524542672454,
53.8813626165853
],
[
-8.327987433292009,
54.66451894796863
],
[
-7.572167934591064,
55.13162221945487
],
[
-7.3660306461787854,
54.59584096945272
],
[
-7.572167934591064,
54.059956366586
],
[
-6.953730231138067,
54.073702297575636
],
[
-6.197884894220991,
53.867565009163364
]
]
]
}
},
{
"type": "Feature",
"properties": {
"scalerank": 1,
"featurecla": "Admin-0 country",
"labelrank": 2,
"sovereignt": "Iran",
"sov_a3": "IRN",
"adm0_dif": 0,
"level": 2,
"type": "Sovereign country",
"admin": "Iran",
"adm0_a3": "IRN",
"geou_dif": 0,
"geounit": "Iran",
"gu_a3": "IRN",
"su_dif": 0,
"subunit": "Iran",
"su_a3": "IRN",
"brk_diff": 0,
"name": "Iran",
"name_long": "Iran",
"brk_a3": "IRN",
"brk_name": "Iran",
"brk_group": "",
"abbrev": "Iran",
"postal": "IRN",
"formal_en": "Islamic Republic of Iran",
"formal_fr": "",
"note_adm0": "",
"note_brk": "",
"name_sort": "Iran, Islamic Rep.",
"name_alt": "",
"mapcolor7": 4,
"mapcolor8": 3,
"mapcolor9": 4,
"mapcolor13": 13,
"pop_est": 66429284,
"gdp_md_est": 841700,
"pop_year": -99,
"lastcensus": 2006,
"gdp_year": -99,
"economy": "5. Emerging region: G20",
"income_grp": "3. Upper middle income",
"wikipedia": -99,
"fips_10": "",
"iso_a2": "IR",
"iso_a3": "IRN",
"iso_n3": "364",
"un_a3": "364",
"wb_a2": "IR",
"wb_a3": "IRN",
"woe_id": -99,
"adm0_a3_is": "IRN",
"adm0_a3_us": "IRN",
"adm0_a3_un": -99,
"adm0_a3_wb": -99,
"continent": "Asia",
"region_un": "Asia",
"subregion": "Southern Asia",
"region_wb": "Middle East & North Africa",
"name_len": 4,
"long_len": 4,
"abbrev_len": 4,
"tiny": -99,
"homepart": 1
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
53.92159793479556,
37.19891836196126
],
[
54.800303989486565,
37.392420762678185
],
[
55.51157840355191,
37.96411713312317
],
[
56.18037479027333,
37.93512665460743
],
[
56.61936608259282,
38.121394354803485
],
[
57.330433790928986,
38.02922943781094
],
[
58.436154412678206,
37.5223094752438
],
[
59.23476199731681,
37.41298798273034
],
[
60.37763797388388,
36.52738312432837
],
[
61.123070509694145,
36.491597194966246
],
[
61.210817091725744,
35.650072333309225
],
[
60.80319339380745,
34.40410187431986
],
[
60.52842980331158,
33.676446031218006
],
[
60.963700392506006,
33.52883230237626
],
[
60.536077915290775,
32.98126882581157
],
[
60.863654819588966,
32.18291962333443
],
[
60.94194461451113,
31.548074652628753
],
[
61.69931440618083,
31.379506130492672
],
[
61.781221551363444,
30.735850328081238
],
[
60.87424848820879,
29.829238999952608
],
[
61.36930870956494,
29.303276272085924
],
[
61.77186811711863,
28.6993338078908
],
[
62.72783043808599,
28.25964488373539
],
[
62.75542565292986,
27.378923448184988
],
[
63.2338977395203,
27.21704702403071
],
[
63.31663170761959,
26.756532497661667
],
[
61.87418745305655,
26.239974880472104
],
[
61.49736290878419,
25.0782370061185
],
[
59.616134067630846,
25.380156561783778
],
[
58.525761346272304,
25.60996165618573
],
[
57.39725141788239,
25.73990204518364
],
[
56.970765822177555,
26.966106268821363
],
[
56.492138706290206,
27.143304755150197
],
[
55.723710158110066,
26.964633490501043
],
[
54.71508955263727,
26.480657863871514
],
[
53.49309695823135,
26.81236888275305
],
[
52.48359785340961,
27.580849107365495
],
[
51.52076256694742,
27.865689602158298
],
[
50.85294803243954,
28.814520575469388
],
[
50.115008579311585,
30.147772528599717
],
[
49.576850213423995,
29.985715236932407
],
[
48.94133344909855,
30.317090359004037
],
[
48.567971225789755,
29.926778265903522
],
[
48.0145683123761,
30.452456773392598
],
[
48.004698113808324,
30.985137437457244
],
[
47.68528608581227,
30.984853217079632
],
[
47.8492037290421,
31.70917593029867
],
[
47.33466149271191,
32.46915538179911
],
[
46.10936160663932,
33.017287299119005
],
[
45.41669070819904,
33.967797756479584
],
[
45.64845950702809,
34.748137722303014
],
[
46.15178795755094,
35.09325877536429
],
[
46.0763403664048,
35.677
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment