Skip to content

Instantly share code, notes, and snippets.

@mapsense-examples
Last active August 29, 2015 14:27
Show Gist options
  • Save mapsense-examples/9a63fed6a923aaf9d208 to your computer and use it in GitHub Desktop.
Save mapsense-examples/9a63fed6a923aaf9d208 to your computer and use it in GitHub Desktop.
Drag & drop geojson to map
// Hat tip Mike Bostock: https://github.com/mbostock/polymaps/blob/master/examples/bounds/bounds.js
function bounds(features) {
var i = -1,
n = features.length,
geometry,
bounds = [{lon: Infinity, lat: Infinity}, {lon: -Infinity, lat: -Infinity}];
while (++i < n) {
//geometry = features[i].data.geometry;
geometry = features[i].geometry;
boundGeometry[geometry.type](bounds, geometry.coordinates);
}
return bounds;
}
function boundPoint(bounds, coordinate) {
var x = coordinate[0], y = coordinate[1];
if (x < bounds[0].lon) bounds[0].lon = x;
if (x > bounds[1].lon) bounds[1].lon = x;
if (y < bounds[0].lat) bounds[0].lat = y;
if (y > bounds[1].lat) bounds[1].lat = y;
}
function boundPoints(bounds, coordinates) {
var i = -1, n = coordinates.length;
while (++i < n) boundPoint(bounds, coordinates[i]);
}
function boundMultiPoints(bounds, coordinates) {
var i = -1, n = coordinates.length;
while (++i < n) boundPoints(bounds, coordinates[i]);
}
var boundGeometry = {
Point: boundPoint,
MultiPoint: boundPoints,
LineString: boundPoints,
MultiLineString: boundMultiPoints,
Polygon: function(bounds, coordinates) {
boundPoints(bounds, coordinates[0]); // exterior ring
},
MultiPolygon: function(bounds, coordinates) {
var i = -1, n = coordinates.length;
while (++i < n) boundPoints(bounds, coordinates[i][0]);
}
};
document.addEventListener("DOMContentLoaded", function(event) {
var dropzone = document.querySelector('#myMap');
var dragzone = document.querySelector('#myMap');
var filelist;
dropzone.addEventListener('drop', function(event) {
if (event.preventDefault) {
event.preventDefault();
}
var types = event.dataTransfer.types;
filelist = event.dataTransfer.files;
var file = event.dataTransfer.files[0];
/*if (file.type !== 'application/json') {
alert('Uploaded file must be a compliant JSON file');
return false;
}*/
// Init file reader
var fileReader = new FileReader();
fileReader.onload = function (e) {
processGJ(JSON.parse(fileReader.result));
};
fileReader.onerror = function (e) {
throw 'Error reading JSON file';
};
// Start reading file
fileReader.readAsText(file);
return false;
}, false);
dragzone.addEventListener('dragstart', function(event) {
return true;
}, true);
dragzone.addEventListener('dragend', function(event) {
return true;
}, true);
dropzone.addEventListener('dragenter', function(event) {
if (event.preventDefault) event.preventDefault();
return false;
}, false);
dropzone.addEventListener('dragover', function(event) {
if (event.preventDefault) event.preventDefault(); // allows us to drop
}, false);
dropzone.addEventListener('dragleave', function(event) {
if (event.preventDefault) event.preventDefault(); // allows us to drop
return false;
}, false);
});
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js" charset="utf-8"></script>
<script src="https://developer.mapsense.co/mapsense.js" charset="utf-8"></script>
<link type="text/css" href="https://developer.mapsense.co/mapsense.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://developer.mapsense.co/stylesheets/bootstrap.min.css" media="screen" type="text/css">
<link rel="stylesheet" href="local.css" media="screen" type="text/css">
<style>
</style>
</head>
<body>
<div id="myMap"></div>
<div class="lede">
<!-- <div class="lede"> -->
<p>Have geojson?
<br/>Drag it onto the map!</p>
<p class="faint">No geojson file handy? <a href="polygons_countries.geojson">Sample here.</a></p>
</div>
<div id="info"></div>
<!-- Modal -->
<div id="fieldModal" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">Pick fields</h4>
</div>
<div id="pickfields" class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn" data-dismiss="modal">Close</button>
<button type="button" class="btn" id="fields_picked">Map!</button>
</div>
</div>
</div>
</div>
<!-- /Modal -->
<script src='http://code.jquery.com/jquery-1.11.0.min.js' type="text/javascript"></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js' type="text/javascript"></script>
<script src='dragdrop_geojson.js' type="text/javascript"></script>
<script src='bounds.js' type="text/javascript"></script>
<script>
var my_key = "key-2d5eacd8b924489c8ed5e8418bd883bc";
var home = [{
lon: -130,
lat: 20
}, {
lon: -60,
lat: 55
}];
var map = mapsense.map("#myMap"); //tell it where to go
map.add(
mapsense.basemap()
.apiKey(my_key)
.style("sketch")
)
.extent(home);
var GJ_LAYER;
// Add custom attribution
var attribution = mapsense.attribution('<a target="_blank" href="https://developer.mapsense.co/tileViewer/?tileset=mapsense.earth">©Mapsense ©OpenStreetMap</a>');
attribution.map(map);
// Process GJ
var processGJ = function(GJData) {
GJ_LAYER = mapsense.geoJson()
.features(GJData.features)
.selection(selection_function);
map.add(GJ_LAYER);
//.on("load", zoomBounds)
zoomBounds(GJData);
}
function zoomBounds(e) {
map.extent(bounds(e.features)).zoomBy(-0.1);
}
var tooltip = d3.select('body')
.append("div")
.attr("class", "popup");
function isFloat(n) {
var r = Number(n) && n % 1 !== 0;
return r;
}
var selection_function = (function() {
var whitelist = [];
var id_field = 'gid';
//whitelist = ['population','female','male','hhi','layer','poverty','unemployment','uninsured','postal_code'];
/* The id of the previously hovered-over feature. */
var hoverId = null;
return function(s) {
s.attr("r", function(d) {
return d.properties.radius || 10;
})
.attr("class", function(d) {
var classes = ["mapFeatures"],
props = d.properties;
if (props) {
if (props.layer) classes.push(props.layer);
if (props.sub_layer) classes.push(props.sub_layer);
}
if (d.properties[id_field] !== null && hoverId !== null && d.properties[id_field] == hoverId) {
console.log(d.properties[id_field], hoverId);
classes.push("hoverFeature");
}
return classes.join(' ');
})
.on("mouseover", function(d) {
console.log(d);
//if ( d.properties.minz >= 5 ) {
d3.select(this).classed("selected", true);
//}
var text = "";
var value;
text += '<div class="detailCard"><table><tbody>';
if (whitelist.length > 0) {
for (var i = 0; i < whitelist.length; i++) {
key = whitelist[i];
if (d.properties && d.properties[key]) {
value = d.properties[key];
value = isFloat(value) ? value.toFixed(4) : value;
text += '<tr><td class="detailKey">' + key + '</td><td class="detailVal">' + value + '</td></tr>';
}
}
} else {
for (var key in d.properties) {
text += '<tr><td class="detailKey">' + key + '</td><td class="detailVal">' + d.properties[key] + '</td></tr>';
}
}
tooltip.html(text);
d3.select('#info').html(text);
if (d.properties[id_field] !== hoverId) {
hoverId = d.properties[id_field];
GJ_LAYER.selection(selection_function);
}
//return tooltip.style("visibility", "visible");
})
.on("mousemove", function() {
//return tooltip.style("top", (d3.event.pageY - 0) + "px").style("left", (d3.event.pageX + 20) + "px");
})
.on("mouseout", function(d) {
d3.select(this).classed("selected", false);
return tooltip.style("visibility", "hidden");
});
};
})();
</script>
</body>
</html>
html, body, #myMap{
height: 100%;
width: 100%;
margin: 0; padding: 0;
font-family: sans-serif;
overflow: hidden;
}
#myMap {
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
}
circle {
fill: rgba(68, 167, 228, 0.5); /*blue*/
stroke: none;
}
.faint { color: #555; }
.top-left {
position: absolute;
top: 5px;
left: 5px;
}
.btn {
background-color: rgba(255,255,255,0.8);
outline: 1px solid rgba(0,0,0,0.3);
min-width: 60px;
padding: 2px 4px;
margin: 2px;
display: inline-block;
}
.csv_point,
circle {
fill: rgba(152, 78, 163, 0.2);
stroke: rgba(152, 78, 163, 1);
stroke-width: 1;
}
.modal-dialog {
width: 400px;
text-align: center;
font-size: 20px;
}
.modal-body {
margin: 0 auto;
text-align: right;
width: 270px;
}
.lede {
position: absolute;
top: 0;
left: 0;
padding: 5px 10px;
background: rgba(255,255,255,0.5);
width: 100%;
}
.mapsense-attribution {
/* adjusted for less contrast */
background-color: rgba(255, 255, 255, 0.5);
color: #777;
position: absolute;
bottom: 0;
right: 0;
font-size: 12px;
font-family: sans-serif;
padding: 2px;
line-height: 1.2em;
text-decoration: none;
user-select: none;
cursor: default;
}
.mapsense-attribution a {
text-decoration: none;
color: #777;
}
.mapsense-attribution a:hover {
text-decoration: none;
color: #444;
}
.hoverFeature {
stroke-width: 2;
}
.popup {
position: absolute;
font-family: sans-serif;
font-size: 11px;
color: #666;
visibility: hidden;
border-radius: 3px;
pointer-events: none;
border: 1px solid #bbb;
padding: 8px;
background-color: rgba(255, 255, 255, .95);
max-height: 500px;
overflow: normal;
}
table {
border-collapse: collapse;
}
table, th, td {
font-size: 12px;
border: 1px solid #ddd;
padding: 1px;
}
.detailKey {
background: #eee;
opacity: .8;
text-transform: uppercase;
font-weight: 600;
}
.detailVal {
background: rgba(255,255,255,0.8);
}
.mapFeatures {
vector-effect: non-scaling-stroke;
stroke-linejoin: round;
stroke-linecap: round;
stroke: orange;
fill: rgba(0,0,0,0);
}
#info {
position: absolute;
bottom: 0px;
right: 0px;
max-width: 300px;
border: 1px solid #ccc;
overflow: scroll;
}
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Afghanistan", "name_alt": null, "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270.000000, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "65225286", "area_hec": "65225286" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.211, 35.65 ], [ 62.231, 35.271 ], [ 62.985, 35.404 ], [ 63.194, 35.857 ], [ 63.983, 36.008 ], [ 64.546, 36.312 ], [ 64.746, 37.112 ], [ 65.589, 37.305 ], [ 65.746, 37.661 ], [ 66.217, 37.394 ], [ 66.519, 37.363 ], [ 67.076, 37.356 ], [ 67.83, 37.145 ], [ 68.136, 37.023 ], [ 68.859, 37.344 ], [ 69.196, 37.151 ], [ 69.519, 37.609 ], [ 70.117, 37.588 ], [ 70.271, 37.735 ], [ 70.376, 38.138 ], [ 70.807, 38.486 ], [ 71.348, 38.259 ], [ 71.239, 37.953 ], [ 71.542, 37.906 ], [ 71.449, 37.066 ], [ 71.845, 36.738 ], [ 72.193, 36.948 ], [ 72.637, 37.048 ], [ 73.26, 37.495 ], [ 73.949, 37.422 ], [ 74.98, 37.42 ], [ 75.158, 37.133 ], [ 74.576, 37.021 ], [ 74.068, 36.836 ], [ 72.92, 36.72 ], [ 71.846, 36.51 ], [ 71.262, 36.074 ], [ 71.499, 35.651 ], [ 71.613, 35.153 ], [ 71.115, 34.733 ], [ 71.157, 34.349 ], [ 70.882, 33.989 ], [ 69.93, 34.02 ], [ 70.324, 33.358 ], [ 69.687, 33.105 ], [ 69.263, 32.502 ], [ 69.318, 31.901 ], [ 68.927, 31.62 ], [ 68.557, 31.713 ], [ 67.793, 31.583 ], [ 67.683, 31.303 ], [ 66.939, 31.305 ], [ 66.382, 30.739 ], [ 66.347, 29.888 ], [ 65.047, 29.472 ], [ 64.35, 29.56 ], [ 64.148, 29.341 ], [ 63.55, 29.468 ], [ 62.55, 29.319 ], [ 60.874, 29.829 ], [ 61.781, 30.736 ], [ 61.699, 31.38 ], [ 60.942, 31.548 ], [ 60.864, 32.183 ], [ 60.536, 32.981 ], [ 60.964, 33.529 ], [ 60.528, 33.676 ], [ 60.803, 34.404 ], [ 61.211, 35.65 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Albania", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2969454", "area_hec": "2969454" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.59, 41.855 ], [ 20.463, 41.515 ], [ 20.605, 41.086 ], [ 21.02, 40.843 ], [ 21.0, 40.58 ], [ 20.675, 40.435 ], [ 20.615, 40.11 ], [ 20.15, 39.625 ], [ 19.98, 39.695 ], [ 19.96, 39.915 ], [ 19.406, 40.251 ], [ 19.319, 40.727 ], [ 19.404, 41.41 ], [ 19.54, 41.72 ], [ 19.372, 41.877 ], [ 19.305, 42.196 ], [ 19.738, 42.688 ], [ 19.802, 42.5 ], [ 20.071, 42.589 ], [ 20.284, 42.32 ], [ 20.523, 42.218 ], [ 20.59, 41.855 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Algeria", "name_alt": null, "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900.000000, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "231416481", "area_hec": "231416481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.999, 23.472 ], [ 8.573, 21.566 ], [ 5.678, 19.601 ], [ 4.267, 19.155 ], [ 3.158, 19.057 ], [ 3.147, 19.694 ], [ 2.684, 19.856 ], [ 2.061, 20.142 ], [ 1.823, 20.611 ], [ -1.55, 22.793 ], [ -4.923, 24.975 ], [ -8.684, 27.396 ], [ -8.665, 27.59 ], [ -8.666, 27.656 ], [ -8.674, 28.841 ], [ -7.059, 29.579 ], [ -6.061, 29.732 ], [ -5.242, 30.0 ], [ -4.86, 30.501 ], [ -3.69, 30.897 ], [ -3.647, 31.637 ], [ -3.069, 31.724 ], [ -2.617, 32.094 ], [ -1.308, 32.263 ], [ -1.125, 32.651 ], [ -1.388, 32.864 ], [ -1.734, 33.92 ], [ -1.793, 34.528 ], [ -2.17, 35.168 ], [ -1.209, 35.715 ], [ -0.128, 35.889 ], [ 0.504, 36.301 ], [ 1.467, 36.606 ], [ 3.162, 36.784 ], [ 4.816, 36.865 ], [ 5.32, 36.717 ], [ 6.262, 37.111 ], [ 7.33, 37.118 ], [ 7.737, 36.886 ], [ 8.421, 36.946 ], [ 8.218, 36.433 ], [ 8.376, 35.48 ], [ 8.141, 34.655 ], [ 7.524, 34.097 ], [ 7.613, 33.344 ], [ 8.431, 32.748 ], [ 8.439, 32.506 ], [ 9.056, 32.103 ], [ 9.482, 30.308 ], [ 9.806, 29.425 ], [ 9.86, 28.96 ], [ 9.684, 28.144 ], [ 9.756, 27.688 ], [ 9.629, 27.141 ], [ 9.716, 26.512 ], [ 9.319, 26.094 ], [ 9.911, 25.366 ], [ 9.948, 24.937 ], [ 10.304, 24.379 ], [ 10.771, 24.562 ], [ 11.561, 24.098 ], [ 11.999, 23.472 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Angola", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300.000000, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "801360", "area_hec": "801360" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.437, -5.684 ], [ 12.182, -5.79 ], [ 11.915, -5.038 ], [ 12.319, -4.606 ], [ 12.621, -4.438 ], [ 12.995, -4.781 ], [ 12.632, -4.991 ], [ 12.468, -5.248 ], [ 12.437, -5.684 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Angola", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300.000000, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "123602647", "area_hec": "123602647" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.326, -5.878 ], [ 16.573, -6.623 ], [ 16.86, -7.222 ], [ 17.09, -7.546 ], [ 17.473, -8.069 ], [ 18.134, -7.988 ], [ 18.464, -7.847 ], [ 19.017, -7.988 ], [ 19.167, -7.738 ], [ 19.418, -7.155 ], [ 20.038, -7.116 ], [ 20.092, -6.943 ], [ 20.602, -6.939 ], [ 20.515, -7.3 ], [ 21.728, -7.291 ], [ 21.747, -7.92 ], [ 21.949, -8.306 ], [ 21.802, -8.909 ], [ 21.875, -9.524 ], [ 22.209, -9.895 ], [ 22.155, -11.085 ], [ 22.403, -10.993 ], [ 22.837, -11.018 ], [ 23.457, -10.868 ], [ 23.912, -10.927 ], [ 24.018, -11.237 ], [ 23.904, -11.722 ], [ 24.08, -12.191 ], [ 23.931, -12.566 ], [ 24.016, -12.911 ], [ 21.934, -12.898 ], [ 21.888, -16.08 ], [ 22.562, -16.898 ], [ 23.215, -17.523 ], [ 21.377, -17.931 ], [ 18.956, -17.789 ], [ 18.263, -17.31 ], [ 14.21, -17.353 ], [ 14.059, -17.423 ], [ 13.462, -16.971 ], [ 12.814, -16.941 ], [ 12.216, -17.112 ], [ 11.734, -17.302 ], [ 11.64, -16.673 ], [ 11.778, -15.794 ], [ 12.124, -14.878 ], [ 12.176, -14.449 ], [ 12.5, -13.548 ], [ 12.739, -13.138 ], [ 13.313, -12.484 ], [ 13.634, -12.039 ], [ 13.739, -11.298 ], [ 13.686, -10.731 ], [ 13.387, -10.374 ], [ 13.121, -9.767 ], [ 12.875, -9.167 ], [ 12.929, -8.959 ], [ 13.236, -8.563 ], [ 12.933, -7.596 ], [ 12.728, -6.927 ], [ 12.227, -6.294 ], [ 12.322, -6.1 ], [ 12.735, -5.966 ], [ 13.025, -5.984 ], [ 13.376, -5.864 ], [ 16.326, -5.878 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Argentina", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2332734", "area_hec": "2332734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.5, -55.2 ], [ -66.45, -55.25 ], [ -66.96, -54.897 ], [ -67.562, -54.87 ], [ -68.633, -54.87 ], [ -68.634, -52.636 ], [ -68.25, -53.1 ], [ -67.75, -53.85 ], [ -66.45, -54.45 ], [ -65.05, -54.7 ], [ -65.5, -55.2 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Argentina", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "276065619", "area_hec": "276065619" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.965, -22.076 ], [ -64.377, -22.798 ], [ -63.987, -21.994 ], [ -62.846, -22.035 ], [ -62.685, -22.249 ], [ -60.847, -23.881 ], [ -60.029, -24.033 ], [ -58.807, -24.771 ], [ -57.777, -25.162 ], [ -57.634, -25.604 ], [ -58.618, -27.124 ], [ -57.61, -27.396 ], [ -56.487, -27.549 ], [ -55.696, -27.388 ], [ -54.789, -26.622 ], [ -54.625, -25.739 ], [ -54.13, -25.548 ], [ -53.628, -26.125 ], [ -53.649, -26.924 ], [ -54.491, -27.475 ], [ -55.162, -27.882 ], [ -56.291, -28.853 ], [ -57.625, -30.216 ], [ -57.875, -31.017 ], [ -58.142, -32.044 ], [ -58.133, -33.041 ], [ -58.35, -33.263 ], [ -58.427, -33.91 ], [ -58.495, -34.431 ], [ -57.226, -35.288 ], [ -57.362, -35.977 ], [ -56.737, -36.413 ], [ -56.788, -36.902 ], [ -57.749, -38.184 ], [ -59.232, -38.72 ], [ -61.237, -38.928 ], [ -62.336, -38.828 ], [ -62.126, -39.424 ], [ -62.331, -40.173 ], [ -62.146, -40.677 ], [ -62.746, -41.029 ], [ -63.77, -41.167 ], [ -64.732, -40.803 ], [ -65.118, -41.064 ], [ -64.979, -42.058 ], [ -64.303, -42.359 ], [ -63.756, -42.044 ], [ -63.458, -42.563 ], [ -64.379, -42.874 ], [ -65.182, -43.495 ], [ -65.329, -44.501 ], [ -65.565, -45.037 ], [ -66.51, -45.04 ], [ -67.294, -45.552 ], [ -67.581, -46.302 ], [ -66.597, -47.034 ], [ -65.641, -47.236 ], [ -65.985, -48.133 ], [ -67.166, -48.697 ], [ -67.816, -49.87 ], [ -68.729, -50.264 ], [ -69.138, -50.733 ], [ -68.816, -51.771 ], [ -68.15, -52.35 ], [ -68.572, -52.299 ], [ -69.498, -52.143 ], [ -71.915, -52.009 ], [ -72.329, -51.426 ], [ -72.31, -50.677 ], [ -72.976, -50.742 ], [ -73.328, -50.379 ], [ -73.415, -49.318 ], [ -72.648, -48.879 ], [ -72.331, -48.244 ], [ -72.447, -47.739 ], [ -71.917, -46.885 ], [ -71.552, -45.561 ], [ -71.659, -44.974 ], [ -71.223, -44.784 ], [ -71.33, -44.407 ], [ -71.794, -44.207 ], [ -71.464, -43.788 ], [ -71.915, -43.409 ], [ -72.149, -42.255 ], [ -71.747, -42.051 ], [ -71.916, -40.832 ], [ -71.681, -39.808 ], [ -71.413, -38.916 ], [ -70.815, -38.553 ], [ -71.119, -37.577 ], [ -71.122, -36.658 ], [ -70.365, -36.005 ], [ -70.388, -35.17 ], [ -69.817, -34.194 ], [ -69.815, -33.274 ], [ -70.074, -33.091 ], [ -70.535, -31.365 ], [ -69.919, -30.336 ], [ -70.014, -29.368 ], [ -69.656, -28.459 ], [ -69.001, -27.521 ], [ -68.296, -26.899 ], [ -68.595, -26.507 ], [ -68.386, -26.185 ], [ -68.418, -24.519 ], [ -67.328, -24.025 ], [ -66.985, -22.986 ], [ -67.107, -22.736 ], [ -66.273, -21.832 ], [ -64.965, -22.076 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Armenia", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2866003", "area_hec": "2866003" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.583, 41.092 ], [ 44.972, 41.248 ], [ 45.179, 40.985 ], [ 45.56, 40.812 ], [ 45.359, 40.562 ], [ 45.892, 40.218 ], [ 45.61, 39.9 ], [ 46.035, 39.628 ], [ 46.483, 39.464 ], [ 46.506, 38.771 ], [ 46.144, 38.741 ], [ 45.735, 39.32 ], [ 45.74, 39.474 ], [ 45.298, 39.472 ], [ 45.002, 39.74 ], [ 44.794, 39.713 ], [ 44.4, 40.005 ], [ 43.656, 40.254 ], [ 43.753, 40.74 ], [ 43.583, 41.092 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Australia", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "6526397", "area_hec": "6526397" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.398, -40.792 ], [ 146.364, -41.138 ], [ 146.909, -41.001 ], [ 147.689, -40.808 ], [ 148.289, -40.875 ], [ 148.36, -42.062 ], [ 148.017, -42.407 ], [ 147.914, -43.212 ], [ 147.565, -42.938 ], [ 146.87, -43.635 ], [ 146.663, -43.581 ], [ 146.048, -43.55 ], [ 145.432, -42.694 ], [ 145.295, -42.034 ], [ 144.718, -41.163 ], [ 144.744, -40.704 ], [ 145.398, -40.792 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Australia", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "761853613", "area_hec": "761853613" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.562, -13.764 ], [ 143.922, -14.548 ], [ 144.564, -14.171 ], [ 144.895, -14.595 ], [ 145.375, -14.985 ], [ 145.272, -15.428 ], [ 145.485, -16.286 ], [ 145.637, -16.785 ], [ 145.889, -16.907 ], [ 146.16, -17.762 ], [ 146.064, -18.28 ], [ 146.387, -18.958 ], [ 147.471, -19.481 ], [ 148.178, -19.956 ], [ 148.848, -20.391 ], [ 148.718, -20.634 ], [ 149.289, -21.261 ], [ 149.678, -22.343 ], [ 150.077, -22.123 ], [ 150.483, -22.556 ], [ 150.727, -22.402 ], [ 150.9, -23.462 ], [ 151.609, -24.076 ], [ 152.073, -24.458 ], [ 152.855, -25.267 ], [ 153.136, -26.071 ], [ 153.162, -26.641 ], [ 153.093, -27.26 ], [ 153.57, -28.11 ], [ 153.512, -28.995 ], [ 153.339, -29.458 ], [ 153.069, -30.35 ], [ 153.09, -30.924 ], [ 152.892, -31.64 ], [ 152.45, -32.55 ], [ 151.709, -33.041 ], [ 151.344, -33.816 ], [ 151.011, -34.31 ], [ 150.714, -35.173 ], [ 150.328, -35.672 ], [ 150.075, -36.42 ], [ 149.946, -37.109 ], [ 149.997, -37.425 ], [ 149.424, -37.773 ], [ 148.305, -37.809 ], [ 147.382, -38.219 ], [ 146.922, -38.606 ], [ 146.318, -39.036 ], [ 145.49, -38.594 ], [ 144.877, -38.417 ], [ 145.032, -37.896 ], [ 144.486, -38.085 ], [ 143.61, -38.809 ], [ 142.745, -38.538 ], [ 142.178, -38.38 ], [ 141.607, -38.309 ], [ 140.639, -38.019 ], [ 139.992, -37.403 ], [ 139.807, -36.644 ], [ 139.574, -36.138 ], [ 139.083, -35.733 ], [ 138.121, -35.612 ], [ 138.45, -35.127 ], [ 138.208, -34.385 ], [ 137.719, -35.077 ], [ 136.829, -35.261 ], [ 137.352, -34.707 ], [ 137.504, -34.13 ], [ 137.89, -33.641 ], [ 137.81, -32.9 ], [ 136.997, -33.753 ], [ 136.372, -34.095 ], [ 135.989, -34.89 ], [ 135.208, -34.479 ], [ 135.239, -33.948 ], [ 134.613, -33.223 ], [ 134.086, -32.848 ], [ 134.274, -32.617 ], [ 132.991, -32.011 ], [ 132.288, -31.983 ], [ 131.326, -31.496 ], [ 129.536, -31.59 ], [ 128.241, -31.948 ], [ 127.103, -32.282 ], [ 126.149, -32.216 ], [ 125.089, -32.729 ], [ 124.222, -32.959 ], [ 124.029, -33.484 ], [ 123.66, -33.89 ], [ 122.811, -33.914 ], [ 122.183, -34.003 ], [ 121.299, -33.821 ], [ 120.58, -33.93 ], [ 119.894, -33.976 ], [ 119.299, -34.509 ], [ 119.007, -34.464 ], [ 118.506, -34.747 ], [ 118.025, -35.065 ], [ 117.296, -35.026 ], [ 116.625, -35.025 ], [ 115.564, -34.386 ], [ 115.027, -34.197 ], [ 115.049, -33.623 ], [ 115.545, -33.487 ], [ 115.715, -33.26 ], [ 115.679, -32.9 ], [ 115.802, -32.205 ], [ 115.69, -31.612 ], [ 115.161, -30.602 ], [ 114.997, -30.031 ], [ 115.04, -29.461 ], [ 114.642, -28.81 ], [ 114.617, -28.516 ], [ 114.174, -28.118 ], [ 114.049, -27.335 ], [ 113.478, -26.543 ], [ 113.339, -26.116 ], [ 113.778, -26.549 ], [ 113.441, -25.621 ], [ 113.937, -25.911 ], [ 114.233, -26.298 ], [ 114.216, -25.786 ], [ 113.721, -24.999 ], [ 113.625, -24.684 ], [ 113.394, -24.385 ], [ 113.502, -23.806 ], [ 113.707, -23.56 ], [ 113.843, -23.06 ], [ 113.737, -22.476 ], [ 114.15, -21.756 ], [ 114.225, -22.517 ], [ 114.648, -21.829 ], [ 115.46, -21.495 ], [ 115.947, -21.069 ], [ 116.712, -20.702 ], [ 117.166, -20.624 ], [ 117.442, -20.747 ], [ 118.23, -20.374 ], [ 118.836, -20.263 ], [ 118.988, -20.044 ], [ 119.252, -19.953 ], [ 119.805, -19.977 ], [ 120.856, -19.684 ], [ 121.4, -19.24 ], [ 121.655, -18.705 ], [ 122.242, -18.198 ], [ 122.287, -17.799 ], [ 122.313, -17.255 ], [ 123.013, -16.405 ], [ 123.434, -17.269 ], [ 123.859, -17.069 ], [ 123.503, -16.596 ], [ 123.817, -16.111 ], [ 124.258, -16.328 ], [ 124.38, -15.567 ], [ 124.926, -15.075 ], [ 125.167, -14.68 ], [ 125.67, -14.51 ], [ 125.686, -14.231 ], [ 126.125, -14.347 ], [ 126.143, -14.096 ], [ 126.583, -13.953 ], [ 127.066, -13.818 ], [ 127.805, -14.277 ], [ 128.36, -14.869 ], [ 128.986, -14.876 ], [ 129.621, -14.97 ], [ 129.41, -14.421 ], [ 129.889, -13.619 ], [ 130.339, -13.357 ], [ 130.184, -13.107 ], [ 130.618, -12.536 ], [ 131.224, -12.184 ], [ 131.735, -12.303 ], [ 132.575, -12.114 ], [ 132.557, -11.603 ], [ 131.825, -11.274 ], [ 132.357, -11.129 ], [ 133.02, -11.376 ], [ 133.551, -11.787 ], [ 134.393, -12.042 ], [ 134.679, -11.941 ], [ 135.298, -12.249 ], [ 135.883, -11.962 ], [ 136.258, -12.049 ], [ 136.493, -11.857 ], [ 136.952, -12.352 ], [ 136.685, -12.887 ], [ 136.305, -13.291 ], [ 135.962, -13.325 ], [ 136.078, -13.724 ], [ 135.784, -14.224 ], [ 135.429, -14.715 ], [ 135.5, -14.998 ], [ 136.295, -15.55 ], [ 137.065, -15.871 ], [ 137.581, -16.215 ], [ 138.303, -16.808 ], [ 138.585, -16.807 ], [ 139.108, -17.063 ], [ 139.261, -17.372 ], [ 140.215, -17.711 ], [ 140.875, -17.369 ], [ 141.071, -16.832 ], [ 141.274, -16.389 ], [ 141.398, -15.841 ], [ 141.702, -15.045 ], [ 141.563, -14.561 ], [ 141.636, -14.27 ], [ 141.52, -13.698 ], [ 141.651, -12.945 ], [ 141.843, -12.742 ], [ 141.687, -12.408 ], [ 141.929, -11.877 ], [ 142.119, -11.328 ], [ 142.144, -11.043 ], [ 142.515, -10.668 ], [ 142.797, -11.157 ], [ 142.867, -11.785 ], [ 143.116, -11.906 ], [ 143.159, -12.326 ], [ 143.522, -12.834 ], [ 143.597, -13.4 ], [ 143.562, -13.764 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Austria", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "8506362", "area_hec": "8506362" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.98, 48.123 ], [ 16.904, 47.715 ], [ 16.341, 47.713 ], [ 16.534, 47.496 ], [ 16.202, 46.852 ], [ 16.012, 46.684 ], [ 15.137, 46.659 ], [ 14.633, 46.432 ], [ 13.806, 46.509 ], [ 12.377, 46.768 ], [ 12.153, 47.115 ], [ 11.165, 46.942 ], [ 11.049, 46.751 ], [ 10.443, 46.894 ], [ 9.932, 46.921 ], [ 9.48, 47.103 ], [ 9.633, 47.348 ], [ 9.594, 47.525 ], [ 9.896, 47.58 ], [ 10.402, 47.303 ], [ 10.544, 47.566 ], [ 11.426, 47.524 ], [ 12.141, 47.703 ], [ 12.621, 47.672 ], [ 12.933, 47.468 ], [ 13.026, 47.638 ], [ 12.884, 48.289 ], [ 13.243, 48.416 ], [ 13.596, 48.877 ], [ 14.339, 48.555 ], [ 14.901, 48.964 ], [ 15.253, 49.039 ], [ 16.03, 48.734 ], [ 16.499, 48.786 ], [ 16.96, 48.597 ], [ 16.88, 48.47 ], [ 16.98, 48.123 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Azerbaijan", "name_alt": null, "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "523050", "area_hec": "523050" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.002, 39.74 ], [ 45.298, 39.472 ], [ 45.74, 39.474 ], [ 45.735, 39.32 ], [ 46.144, 38.741 ], [ 45.458, 38.874 ], [ 44.953, 39.336 ], [ 44.794, 39.713 ], [ 45.002, 39.74 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Azerbaijan", "name_alt": null, "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "8586929", "area_hec": "8586929" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.373, 41.22 ], [ 47.816, 41.151 ], [ 47.987, 41.406 ], [ 48.584, 41.809 ], [ 49.11, 41.282 ], [ 49.619, 40.573 ], [ 50.085, 40.526 ], [ 50.393, 40.257 ], [ 49.569, 40.176 ], [ 49.395, 39.4 ], [ 49.223, 39.049 ], [ 48.856, 38.816 ], [ 48.883, 38.32 ], [ 48.634, 38.27 ], [ 48.011, 38.794 ], [ 48.355, 39.289 ], [ 48.06, 39.582 ], [ 47.685, 39.508 ], [ 46.506, 38.771 ], [ 46.483, 39.464 ], [ 46.035, 39.628 ], [ 45.61, 39.9 ], [ 45.892, 40.218 ], [ 45.359, 40.562 ], [ 45.56, 40.812 ], [ 45.179, 40.985 ], [ 44.972, 41.248 ], [ 45.217, 41.411 ], [ 45.963, 41.124 ], [ 46.502, 41.064 ], [ 46.638, 41.182 ], [ 46.145, 41.723 ], [ 46.405, 41.861 ], [ 46.686, 41.827 ], [ 47.373, 41.22 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bangladesh", "name_alt": null, "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "13374898", "area_hec": "13374898" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.673, 22.041 ], [ 92.652, 21.324 ], [ 92.303, 21.476 ], [ 92.369, 20.671 ], [ 92.083, 21.192 ], [ 92.025, 21.702 ], [ 91.835, 22.183 ], [ 91.417, 22.765 ], [ 90.496, 22.805 ], [ 90.587, 22.393 ], [ 90.273, 21.836 ], [ 89.847, 22.039 ], [ 89.702, 21.857 ], [ 89.419, 21.966 ], [ 89.032, 22.056 ], [ 88.876, 22.879 ], [ 88.53, 23.631 ], [ 88.7, 24.234 ], [ 88.084, 24.502 ], [ 88.306, 24.866 ], [ 88.932, 25.239 ], [ 88.21, 25.768 ], [ 88.563, 26.447 ], [ 89.355, 26.014 ], [ 89.832, 25.965 ], [ 89.921, 25.27 ], [ 90.872, 25.133 ], [ 91.8, 25.147 ], [ 92.376, 24.977 ], [ 91.915, 24.13 ], [ 91.468, 24.073 ], [ 91.159, 23.503 ], [ 91.707, 22.985 ], [ 91.87, 23.624 ], [ 92.146, 23.628 ], [ 92.673, 22.041 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Belarus", "name_alt": null, "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "20896784", "area_hec": "20896784" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.484, 53.913 ], [ 24.451, 53.906 ], [ 25.536, 54.282 ], [ 25.768, 54.847 ], [ 26.588, 55.167 ], [ 26.494, 55.615 ], [ 27.102, 55.783 ], [ 28.177, 56.169 ], [ 29.23, 55.918 ], [ 29.372, 55.67 ], [ 29.896, 55.789 ], [ 30.874, 55.551 ], [ 30.972, 55.081 ], [ 30.758, 54.812 ], [ 31.384, 54.157 ], [ 31.791, 53.975 ], [ 31.731, 53.794 ], [ 32.406, 53.618 ], [ 32.694, 53.351 ], [ 32.304, 53.133 ], [ 31.498, 53.167 ], [ 31.305, 53.074 ], [ 31.54, 52.742 ], [ 31.786, 52.102 ], [ 30.927, 52.042 ], [ 30.619, 51.823 ], [ 30.555, 51.319 ], [ 30.157, 51.416 ], [ 29.255, 51.368 ], [ 28.993, 51.602 ], [ 28.618, 51.428 ], [ 28.242, 51.572 ], [ 27.454, 51.592 ], [ 26.338, 51.832 ], [ 25.328, 51.911 ], [ 24.553, 51.889 ], [ 24.005, 51.617 ], [ 23.527, 51.578 ], [ 23.508, 52.024 ], [ 23.2, 52.487 ], [ 23.799, 52.691 ], [ 23.805, 53.09 ], [ 23.527, 53.47 ], [ 23.484, 53.913 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Belgium", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "3012577", "area_hec": "3012577" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.315, 51.346 ], [ 4.047, 51.267 ], [ 4.974, 51.475 ], [ 5.607, 51.037 ], [ 6.157, 50.804 ], [ 6.043, 50.128 ], [ 5.782, 50.09 ], [ 5.674, 49.529 ], [ 4.799, 49.985 ], [ 4.286, 49.907 ], [ 3.588, 50.379 ], [ 3.123, 50.78 ], [ 2.658, 50.797 ], [ 2.514, 51.148 ], [ 3.315, 51.346 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Belize", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2201906", "area_hec": "2201906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143, 17.808 ], [ -89.151, 17.956 ], [ -89.03, 18.002 ], [ -88.848, 17.883 ], [ -88.49, 18.487 ], [ -88.3, 18.5 ], [ -88.296, 18.353 ], [ -88.107, 18.349 ], [ -88.124, 18.077 ], [ -88.285, 17.644 ], [ -88.198, 17.489 ], [ -88.303, 17.132 ], [ -88.24, 17.036 ], [ -88.355, 16.531 ], [ -88.552, 16.265 ], [ -88.732, 16.234 ], [ -88.931, 15.887 ], [ -89.229, 15.887 ], [ -89.151, 17.016 ], [ -89.143, 17.808 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Benin", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "11698422", "area_hec": "11698422" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.692, 6.259 ], [ 1.865, 6.142 ], [ 1.619, 6.832 ], [ 1.665, 9.129 ], [ 1.463, 9.335 ], [ 1.425, 9.825 ], [ 1.078, 10.176 ], [ 0.772, 10.471 ], [ 0.9, 10.997 ], [ 1.244, 11.111 ], [ 1.447, 11.548 ], [ 1.936, 11.641 ], [ 2.155, 11.94 ], [ 2.49, 12.233 ], [ 2.849, 12.236 ], [ 3.611, 11.66 ], [ 3.572, 11.328 ], [ 3.797, 10.735 ], [ 3.6, 10.332 ], [ 3.705, 10.063 ], [ 3.22, 9.444 ], [ 2.912, 9.138 ], [ 2.724, 8.507 ], [ 2.749, 7.871 ], [ 2.692, 6.259 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bhutan", "name_alt": null, "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524.000000, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "3937925", "area_hec": "3937925" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.697, 27.772 ], [ 92.104, 27.453 ], [ 92.034, 26.838 ], [ 91.218, 26.809 ], [ 90.373, 26.876 ], [ 89.745, 26.719 ], [ 88.836, 27.099 ], [ 88.814, 27.299 ], [ 89.476, 28.043 ], [ 90.016, 28.296 ], [ 90.731, 28.065 ], [ 91.259, 28.041 ], [ 91.697, 27.772 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bolivia", "name_alt": null, "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "108500762", "area_hec": "108500762" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.846, -22.035 ], [ -63.987, -21.994 ], [ -64.377, -22.798 ], [ -64.965, -22.076 ], [ -66.273, -21.832 ], [ -67.107, -22.736 ], [ -67.828, -22.873 ], [ -68.22, -21.494 ], [ -68.757, -20.373 ], [ -68.442, -19.405 ], [ -68.967, -18.982 ], [ -69.1, -18.26 ], [ -69.59, -17.58 ], [ -68.96, -16.501 ], [ -69.39, -15.66 ], [ -69.16, -15.324 ], [ -69.34, -14.953 ], [ -68.949, -14.454 ], [ -68.929, -13.603 ], [ -68.88, -12.9 ], [ -68.665, -12.561 ], [ -69.53, -10.952 ], [ -68.786, -11.036 ], [ -68.271, -11.014 ], [ -68.048, -10.712 ], [ -67.174, -10.307 ], [ -66.647, -9.931 ], [ -65.338, -9.762 ], [ -65.445, -10.511 ], [ -65.322, -10.896 ], [ -65.402, -11.566 ], [ -64.316, -12.462 ], [ -63.197, -12.627 ], [ -62.803, -13.001 ], [ -62.127, -13.199 ], [ -61.713, -13.489 ], [ -61.084, -13.479 ], [ -60.503, -13.776 ], [ -60.459, -14.354 ], [ -60.264, -14.646 ], [ -60.251, -15.077 ], [ -60.543, -15.094 ], [ -60.158, -16.258 ], [ -58.241, -16.3 ], [ -58.388, -16.877 ], [ -58.281, -17.272 ], [ -57.735, -17.552 ], [ -57.498, -18.174 ], [ -57.676, -18.962 ], [ -57.95, -19.4 ], [ -57.854, -19.97 ], [ -58.166, -20.177 ], [ -58.184, -19.868 ], [ -59.115, -19.357 ], [ -60.044, -19.343 ], [ -61.786, -19.634 ], [ -62.266, -20.514 ], [ -62.291, -21.052 ], [ -62.685, -22.249 ], [ -62.846, -22.035 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bosnia and Herzegovina", "name_alt": null, "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700.000000, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "5060482", "area_hec": "5060482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.006, 44.86 ], [ 19.368, 44.863 ], [ 19.118, 44.423 ], [ 19.6, 44.038 ], [ 19.454, 43.568 ], [ 19.218, 43.524 ], [ 19.032, 43.432 ], [ 18.706, 43.2 ], [ 18.56, 42.65 ], [ 17.675, 43.029 ], [ 17.297, 43.446 ], [ 16.916, 43.668 ], [ 16.456, 44.041 ], [ 16.24, 44.351 ], [ 15.75, 44.819 ], [ 15.959, 45.234 ], [ 16.318, 45.004 ], [ 16.535, 45.212 ], [ 17.002, 45.234 ], [ 17.862, 45.068 ], [ 18.553, 45.082 ], [ 19.006, 44.86 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Botswana", "name_alt": null, "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "59209316", "area_hec": "59209316" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.649, -18.536 ], [ 25.85, -18.714 ], [ 26.165, -19.293 ], [ 27.297, -20.392 ], [ 27.725, -20.499 ], [ 27.727, -20.852 ], [ 28.021, -21.486 ], [ 28.795, -21.64 ], [ 29.432, -22.091 ], [ 28.017, -22.828 ], [ 27.119, -23.574 ], [ 26.786, -24.241 ], [ 26.486, -24.616 ], [ 25.942, -24.696 ], [ 25.766, -25.175 ], [ 25.665, -25.487 ], [ 25.025, -25.72 ], [ 24.211, -25.67 ], [ 23.734, -25.39 ], [ 23.312, -25.269 ], [ 22.824, -25.5 ], [ 22.579, -25.979 ], [ 22.106, -26.28 ], [ 21.606, -26.727 ], [ 20.89, -26.828 ], [ 20.666, -26.477 ], [ 20.759, -25.868 ], [ 20.166, -24.918 ], [ 19.896, -24.768 ], [ 19.895, -21.849 ], [ 20.881, -21.814 ], [ 20.911, -18.252 ], [ 21.655, -18.219 ], [ 23.197, -17.869 ], [ 23.579, -18.281 ], [ 24.217, -17.889 ], [ 24.521, -17.887 ], [ 25.084, -17.662 ], [ 25.264, -17.736 ], [ 25.649, -18.536 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 3, "type": "Geo unit", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 1, "geounit": "Bougainville", "gu_a3": "PNB", "su_dif": 0, "subunit": "Bougainville", "su_a3": "PNB", "brk_diff": 0, "name": "Bougainville", "name_long": "Bougainville", "brk_a3": "PNB", "brk_name": "Bougainville", "brk_group": null, "abbrev": "Boug.", "postal": "BG", "formal_en": "Autonomous Region of Bougainville", "formal_fr": null, "note_adm0": "P.N.G", "note_brk": null, "name_sort": "Bougainville", "name_alt": "North Solomons", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 175160, "gdp_md_est": 381.998206, "pop_year": 0, "lastcensus": -99, "gdp_year": 0, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": 0, "fips_10": null, "iso_a2": "BG", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": -99, "area_jk": "1109642", "area_hec": "1109642" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.76, -5.34 ], [ 155.063, -5.567 ], [ 155.548, -6.201 ], [ 156.02, -6.54 ], [ 155.88, -6.82 ], [ 155.6, -6.92 ], [ 155.167, -6.536 ], [ 154.729, -5.901 ], [ 154.514, -5.139 ], [ 154.653, -5.042 ], [ 154.76, -5.34 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Brazil", "name_alt": null, "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "850847616", "area_hec": "850847616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.625, -30.216 ], [ -56.291, -28.853 ], [ -55.162, -27.882 ], [ -54.491, -27.475 ], [ -53.649, -26.924 ], [ -53.628, -26.125 ], [ -54.13, -25.548 ], [ -54.625, -25.739 ], [ -54.429, -25.162 ], [ -54.294, -24.571 ], [ -54.293, -24.021 ], [ -54.653, -23.84 ], [ -55.028, -24.001 ], [ -55.401, -23.957 ], [ -55.518, -23.572 ], [ -55.611, -22.656 ], [ -55.798, -22.357 ], [ -56.473, -22.086 ], [ -56.882, -22.282 ], [ -57.937, -22.09 ], [ -57.871, -20.733 ], [ -58.166, -20.177 ], [ -57.854, -19.97 ], [ -57.95, -19.4 ], [ -57.676, -18.962 ], [ -57.498, -18.174 ], [ -57.735, -17.552 ], [ -58.281, -17.272 ], [ -58.388, -16.877 ], [ -58.241, -16.3 ], [ -60.158, -16.258 ], [ -60.543, -15.094 ], [ -60.251, -15.077 ], [ -60.264, -14.646 ], [ -60.459, -14.354 ], [ -60.503, -13.776 ], [ -61.084, -13.479 ], [ -61.713, -13.489 ], [ -62.127, -13.199 ], [ -62.803, -13.001 ], [ -63.197, -12.627 ], [ -64.316, -12.462 ], [ -65.402, -11.566 ], [ -65.322, -10.896 ], [ -65.445, -10.511 ], [ -65.338, -9.762 ], [ -66.647, -9.931 ], [ -67.174, -10.307 ], [ -68.048, -10.712 ], [ -68.271, -11.014 ], [ -68.786, -11.036 ], [ -69.53, -10.952 ], [ -70.094, -11.124 ], [ -70.549, -11.009 ], [ -70.482, -9.49 ], [ -71.302, -10.079 ], [ -72.185, -10.054 ], [ -72.563, -9.52 ], [ -73.227, -9.462 ], [ -73.015, -9.033 ], [ -73.571, -8.424 ], [ -73.987, -7.524 ], [ -73.723, -7.341 ], [ -73.725, -6.919 ], [ -73.12, -6.63 ], [ -73.22, -6.089 ], [ -72.965, -5.741 ], [ -72.892, -5.275 ], [ -71.748, -4.594 ], [ -70.929, -4.402 ], [ -70.795, -4.251 ], [ -69.894, -4.298 ], [ -69.444, -1.556 ], [ -69.421, -1.123 ], [ -69.577, -0.55 ], [ -70.021, -0.185 ], [ -70.016, 0.541 ], [ -69.452, 0.706 ], [ -69.252, 0.603 ], [ -69.219, 0.986 ], [ -69.805, 1.089 ], [ -69.817, 1.715 ], [ -67.869, 1.692 ], [ -67.538, 2.037 ], [ -67.26, 1.72 ], [ -67.065, 1.13 ], [ -66.876, 1.253 ], [ -66.326, 0.725 ], [ -65.548, 0.789 ], [ -65.355, 1.095 ], [ -64.611, 1.329 ], [ -64.199, 1.493 ], [ -64.083, 1.916 ], [ -63.369, 2.201 ], [ -63.423, 2.411 ], [ -64.27, 2.497 ], [ -64.409, 3.127 ], [ -64.368, 3.797 ], [ -64.816, 4.056 ], [ -64.629, 4.149 ], [ -63.888, 4.021 ], [ -63.093, 3.771 ], [ -62.804, 4.007 ], [ -62.085, 4.162 ], [ -60.967, 4.537 ], [ -60.601, 4.918 ], [ -60.734, 5.2 ], [ -60.214, 5.245 ], [ -59.981, 5.014 ], [ -60.111, 4.575 ], [ -59.767, 4.423 ], [ -59.538, 3.959 ], [ -59.815, 3.607 ], [ -59.974, 2.755 ], [ -59.718, 2.25 ], [ -59.646, 1.787 ], [ -59.031, 1.318 ], [ -58.54, 1.268 ], [ -58.429, 1.464 ], [ -58.113, 1.507 ], [ -57.661, 1.683 ], [ -57.336, 1.948 ], [ -56.783, 1.864 ], [ -56.539, 1.899 ], [ -55.996, 1.818 ], [ -55.906, 2.022 ], [ -56.073, 2.221 ], [ -55.973, 2.51 ], [ -55.57, 2.421 ], [ -55.098, 2.524 ], [ -54.525, 2.312 ], [ -54.088, 2.106 ], [ -53.779, 2.377 ], [ -53.555, 2.335 ], [ -53.419, 2.053 ], [ -52.94, 2.125 ], [ -52.556, 2.505 ], [ -52.249, 3.241 ], [ -51.658, 4.156 ], [ -51.317, 4.204 ], [ -51.07, 3.65 ], [ -50.509, 1.902 ], [ -49.974, 1.736 ], [ -49.947, 1.046 ], [ -50.699, 0.223 ], [ -50.388, -0.078 ], [ -48.621, -0.235 ], [ -48.584, -1.238 ], [ -47.825, -0.582 ], [ -46.567, -0.941 ], [ -44.906, -1.552 ], [ -44.418, -2.138 ], [ -44.582, -2.691 ], [ -43.419, -2.383 ], [ -41.473, -2.912 ], [ -39.979, -2.873 ], [ -38.5, -3.701 ], [ -37.223, -4.821 ], [ -36.453, -5.109 ], [ -35.598, -5.149 ], [ -35.235, -5.465 ], [ -34.896, -6.738 ], [ -34.73, -7.343 ], [ -35.128, -8.996 ], [ -35.637, -9.649 ], [ -37.047, -11.041 ], [ -37.684, -12.171 ], [ -38.424, -13.038 ], [ -38.674, -13.058 ], [ -38.953, -13.793 ], [ -38.882, -15.667 ], [ -39.161, -17.208 ], [ -39.267, -17.868 ], [ -39.584, -18.262 ], [ -39.761, -19.599 ], [ -40.775, -20.904 ], [ -40.945, -21.937 ], [ -41.754, -22.371 ], [ -41.988, -22.97 ], [ -43.075, -22.968 ], [ -44.648, -23.352 ], [ -45.352, -23.797 ], [ -46.472, -24.089 ], [ -47.649, -24.885 ], [ -48.495, -25.877 ], [ -48.641, -26.624 ], [ -48.475, -27.176 ], [ -48.661, -28.186 ], [ -48.889, -28.674 ], [ -49.587, -29.224 ], [ -50.697, -30.985 ], [ -51.576, -31.778 ], [ -52.256, -32.245 ], [ -52.712, -33.197 ], [ -53.374, -33.768 ], [ -53.651, -33.202 ], [ -53.21, -32.728 ], [ -53.788, -32.047 ], [ -54.572, -31.494 ], [ -55.602, -30.854 ], [ -55.973, -30.883 ], [ -56.976, -30.11 ], [ -57.625, -30.216 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Brunei", "name_alt": null, "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1073396", "area_hec": "1073396" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.204, 4.526 ], [ 114.6, 4.9 ], [ 115.451, 5.448 ], [ 115.406, 4.955 ], [ 115.347, 4.317 ], [ 114.87, 4.348 ], [ 114.66, 4.008 ], [ 114.204, 4.526 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bulgaria", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "11021417", "area_hec": "11021417" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.657, 44.235 ], [ 22.945, 43.824 ], [ 23.332, 43.897 ], [ 24.101, 43.741 ], [ 25.569, 43.688 ], [ 26.065, 43.944 ], [ 27.242, 44.176 ], [ 27.97, 43.812 ], [ 28.558, 43.708 ], [ 28.039, 43.293 ], [ 27.674, 42.578 ], [ 27.997, 42.007 ], [ 27.136, 42.142 ], [ 26.117, 41.827 ], [ 26.106, 41.329 ], [ 25.197, 41.234 ], [ 24.493, 41.584 ], [ 23.692, 41.309 ], [ 22.952, 41.338 ], [ 22.881, 41.999 ], [ 22.381, 42.32 ], [ 22.545, 42.461 ], [ 22.437, 42.58 ], [ 22.605, 42.898 ], [ 22.986, 43.211 ], [ 22.5, 43.643 ], [ 22.41, 44.008 ], [ 22.657, 44.235 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Burkina Faso", "name_alt": null, "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "27156967", "area_hec": "27156967" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.828, 9.643 ], [ -3.512, 9.9 ], [ -3.98, 9.862 ], [ -4.33, 9.611 ], [ -4.78, 9.822 ], [ -4.955, 10.153 ], [ -5.404, 10.371 ], [ -5.471, 10.951 ], [ -5.198, 11.375 ], [ -5.221, 11.714 ], [ -4.427, 12.543 ], [ -4.28, 13.228 ], [ -4.006, 13.473 ], [ -3.523, 13.338 ], [ -3.104, 13.541 ], [ -2.968, 13.798 ], [ -2.192, 14.246 ], [ -2.001, 14.559 ], [ -1.066, 14.974 ], [ -0.516, 15.116 ], [ -0.266, 14.924 ], [ 0.375, 14.929 ], [ 0.296, 14.444 ], [ 0.43, 13.989 ], [ 0.993, 13.336 ], [ 1.024, 12.852 ], [ 2.177, 12.625 ], [ 2.155, 11.94 ], [ 1.936, 11.641 ], [ 1.447, 11.548 ], [ 1.244, 11.111 ], [ 0.9, 10.997 ], [ 0.024, 11.019 ], [ -0.439, 11.098 ], [ -0.762, 10.937 ], [ -1.203, 11.01 ], [ -2.94, 10.963 ], [ -2.964, 10.395 ], [ -2.828, 9.643 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Burundi", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102.000000, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2624456", "area_hec": "2624456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.34, -4.5 ], [ 29.276, -3.294 ], [ 29.025, -2.839 ], [ 29.632, -2.918 ], [ 29.938, -2.349 ], [ 30.47, -2.414 ], [ 30.528, -2.808 ], [ 30.743, -3.034 ], [ 30.752, -3.359 ], [ 30.506, -3.569 ], [ 30.116, -4.09 ], [ 29.753, -4.452 ], [ 29.34, -4.5 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "brk_group": null, "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cambodia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940.000000, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "18210842", "area_hec": "18210842" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.497, 10.633 ], [ 103.091, 11.154 ], [ 102.585, 12.187 ], [ 102.348, 13.394 ], [ 102.988, 14.226 ], [ 104.281, 14.417 ], [ 105.219, 14.273 ], [ 106.044, 13.881 ], [ 106.496, 14.571 ], [ 107.383, 14.202 ], [ 107.615, 13.536 ], [ 107.491, 12.337 ], [ 105.811, 11.568 ], [ 106.25, 10.962 ], [ 105.2, 10.889 ], [ 104.334, 10.486 ], [ 103.497, 10.633 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cameroon", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750.000000, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "46026149", "area_hec": "46026149" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.076, 2.267 ], [ 12.951, 2.322 ], [ 12.359, 2.193 ], [ 11.752, 2.327 ], [ 11.276, 2.261 ], [ 9.649, 2.284 ], [ 9.795, 3.073 ], [ 9.404, 3.735 ], [ 8.948, 3.904 ], [ 8.745, 4.352 ], [ 8.489, 4.496 ], [ 8.5, 4.772 ], [ 8.758, 5.48 ], [ 9.233, 6.444 ], [ 9.523, 6.454 ], [ 10.118, 7.039 ], [ 10.497, 7.055 ], [ 11.059, 6.644 ], [ 11.746, 6.981 ], [ 11.839, 7.397 ], [ 12.064, 7.8 ], [ 12.219, 8.306 ], [ 12.754, 8.718 ], [ 12.956, 9.418 ], [ 13.168, 9.641 ], [ 13.309, 10.16 ], [ 13.573, 10.799 ], [ 14.415, 11.572 ], [ 14.468, 11.905 ], [ 14.577, 12.085 ], [ 14.181, 12.484 ], [ 14.213, 12.802 ], [ 14.496, 12.859 ], [ 14.893, 12.219 ], [ 14.96, 11.556 ], [ 14.924, 10.891 ], [ 15.468, 9.982 ], [ 14.909, 9.992 ], [ 14.627, 9.921 ], [ 14.171, 10.021 ], [ 13.954, 9.55 ], [ 14.544, 8.966 ], [ 14.98, 8.796 ], [ 15.121, 8.382 ], [ 15.436, 7.693 ], [ 15.28, 7.422 ], [ 14.777, 6.409 ], [ 14.537, 6.227 ], [ 14.459, 5.452 ], [ 14.559, 5.031 ], [ 14.478, 4.733 ], [ 14.951, 4.21 ], [ 15.036, 3.851 ], [ 15.405, 3.335 ], [ 15.863, 3.014 ], [ 15.907, 2.557 ], [ 16.013, 2.268 ], [ 15.941, 1.728 ], [ 15.146, 1.964 ], [ 14.338, 2.228 ], [ 13.076, 2.267 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "189490", "area_hec": "189490" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.84, 77.52 ], [ -94.296, 77.491 ], [ -96.17, 77.555 ], [ -96.436, 77.835 ], [ -94.423, 77.82 ], [ -93.721, 77.634 ], [ -93.84, 77.52 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "195772", "area_hec": "195772" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.663, 78.602 ], [ -110.881, 78.407 ], [ -112.542, 78.408 ], [ -112.526, 78.551 ], [ -111.5, 78.85 ], [ -110.964, 78.804 ], [ -109.663, 78.602 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "310213", "area_hec": "310213" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.266, 62.159 ], [ -79.657, 61.633 ], [ -80.1, 61.718 ], [ -80.362, 62.017 ], [ -80.315, 62.086 ], [ -79.929, 62.386 ], [ -79.52, 62.364 ], [ -79.266, 62.159 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "411843", "area_hec": "411843" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -104.5, 73.42 ], [ -105.38, 72.76 ], [ -106.94, 73.46 ], [ -106.6, 73.6 ], [ -105.26, 73.64 ], [ -104.5, 73.42 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "443073", "area_hec": "443073" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -110.187, 77.697 ], [ -112.051, 77.409 ], [ -113.534, 77.732 ], [ -112.725, 78.051 ], [ -111.264, 78.153 ], [ -109.855, 77.996 ], [ -110.187, 77.697 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "536731", "area_hec": "536731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.83, 78.057 ], [ -97.31, 77.851 ], [ -98.124, 78.083 ], [ -98.553, 78.458 ], [ -98.632, 78.872 ], [ -97.337, 78.832 ], [ -96.754, 78.766 ], [ -95.559, 78.418 ], [ -95.83, 78.057 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "596090", "area_hec": "596090" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.898, 62.711 ], [ -83.069, 62.159 ], [ -83.775, 62.182 ], [ -83.994, 62.453 ], [ -83.251, 62.914 ], [ -81.877, 62.905 ], [ -81.898, 62.711 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "700336", "area_hec": "700336" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.613, 74.98 ], [ -94.157, 74.592 ], [ -95.609, 74.667 ], [ -96.821, 74.928 ], [ -96.289, 75.378 ], [ -94.851, 75.647 ], [ -93.978, 75.296 ], [ -93.613, 74.98 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "744734", "area_hec": "744734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.664, 46.55 ], [ -62.939, 46.416 ], [ -62.012, 46.443 ], [ -62.504, 46.033 ], [ -62.874, 45.968 ], [ -64.143, 46.393 ], [ -64.393, 46.727 ], [ -64.015, 47.036 ], [ -63.664, 46.55 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "780878", "area_hec": "780878" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.806, 49.105 ], [ -62.293, 49.087 ], [ -63.589, 49.401 ], [ -64.519, 49.873 ], [ -64.173, 49.957 ], [ -62.858, 49.706 ], [ -61.836, 49.288 ], [ -61.806, 49.105 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "906083", "area_hec": "906083" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.866, 67.149 ], [ -76.987, 67.099 ], [ -77.236, 67.588 ], [ -76.812, 68.149 ], [ -75.895, 68.287 ], [ -75.115, 68.01 ], [ -75.103, 67.582 ], [ -75.216, 67.444 ], [ -75.866, 67.149 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "980248", "area_hec": "980248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.06, 78.325 ], [ -99.671, 77.907 ], [ -101.304, 78.019 ], [ -102.95, 78.343 ], [ -105.176, 78.38 ], [ -104.21, 78.677 ], [ -105.42, 78.918 ], [ -105.492, 79.302 ], [ -103.529, 79.165 ], [ -100.825, 78.8 ], [ -100.06, 78.325 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1132804", "area_hec": "1132804" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.34, 73.103 ], [ -76.251, 72.826 ], [ -77.314, 72.856 ], [ -78.392, 72.877 ], [ -79.486, 72.742 ], [ -79.776, 72.803 ], [ -80.876, 73.333 ], [ -80.834, 73.693 ], [ -80.353, 73.76 ], [ -78.064, 73.652 ], [ -76.34, 73.103 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1165528", "area_hec": "1165528" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.18, 54.17 ], [ -132.71, 54.04 ], [ -131.75, 54.12 ], [ -132.049, 52.985 ], [ -131.179, 52.18 ], [ -131.578, 52.182 ], [ -132.18, 52.64 ], [ -132.55, 53.1 ], [ -133.055, 53.411 ], [ -133.24, 53.851 ], [ -133.18, 54.17 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1286809", "area_hec": "1286809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -95.648, 69.108 ], [ -96.269, 68.757 ], [ -97.617, 69.06 ], [ -98.432, 68.951 ], [ -99.797, 69.4 ], [ -98.917, 69.71 ], [ -98.218, 70.144 ], [ -97.157, 69.86 ], [ -96.557, 69.68 ], [ -96.257, 69.49 ], [ -95.648, 69.108 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1739932", "area_hec": "1739932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -116.199, 77.645 ], [ -116.336, 76.877 ], [ -117.106, 76.53 ], [ -118.04, 76.481 ], [ -119.899, 76.053 ], [ -121.5, 75.9 ], [ -122.855, 76.117 ], [ -122.855, 76.117 ], [ -121.157, 76.865 ], [ -119.104, 77.512 ], [ -117.57, 77.498 ], [ -116.199, 77.645 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1866390", "area_hec": "1866390" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -98.5, 76.72 ], [ -97.736, 76.257 ], [ -97.704, 75.743 ], [ -98.16, 75.0 ], [ -99.809, 74.897 ], [ -100.884, 75.057 ], [ -100.863, 75.641 ], [ -102.502, 75.564 ], [ -102.566, 76.337 ], [ -101.49, 76.305 ], [ -99.984, 76.646 ], [ -98.577, 76.589 ], [ -98.5, 76.72 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2550692", "area_hec": "2550692" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.196, 72.772 ], [ -94.269, 72.025 ], [ -95.41, 72.062 ], [ -96.034, 72.94 ], [ -96.018, 73.437 ], [ -95.496, 73.862 ], [ -94.504, 74.135 ], [ -92.42, 74.1 ], [ -90.51, 73.857 ], [ -92.004, 72.966 ], [ -93.196, 72.772 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "3256899", "area_hec": "3256899" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.51, 48.51 ], [ -124.013, 48.371 ], [ -125.655, 48.825 ], [ -125.955, 49.18 ], [ -126.85, 49.53 ], [ -127.03, 49.815 ], [ -128.059, 49.995 ], [ -128.445, 50.539 ], [ -128.358, 50.771 ], [ -127.309, 50.553 ], [ -126.695, 50.401 ], [ -125.755, 50.295 ], [ -125.415, 49.95 ], [ -124.921, 49.475 ], [ -123.922, 49.062 ], [ -123.51, 48.51 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "3501385", "area_hec": "3501385" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -100.356, 73.844 ], [ -99.164, 73.633 ], [ -97.38, 73.76 ], [ -97.12, 73.47 ], [ -98.054, 72.99 ], [ -96.54, 72.56 ], [ -96.72, 71.66 ], [ -98.36, 71.273 ], [ -99.323, 71.356 ], [ -100.015, 71.738 ], [ -102.5, 72.51 ], [ -102.48, 72.83 ], [ -100.438, 72.706 ], [ -101.54, 73.36 ], [ -100.356, 73.844 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "4300958", "area_hec": "4300958" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.161, 65.657 ], [ -84.976, 65.218 ], [ -84.464, 65.372 ], [ -83.883, 65.11 ], [ -82.788, 64.767 ], [ -81.642, 64.455 ], [ -81.553, 63.98 ], [ -80.817, 64.058 ], [ -80.103, 63.726 ], [ -80.991, 63.411 ], [ -82.547, 63.652 ], [ -83.109, 64.102 ], [ -84.1, 63.57 ], [ -85.523, 63.052 ], [ -85.867, 63.637 ], [ -87.222, 63.541 ], [ -86.353, 64.036 ], [ -86.225, 64.823 ], [ -85.884, 65.739 ], [ -85.161, 65.657 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "4322571", "area_hec": "4322571" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.02, 79.66 ], [ -85.814, 79.337 ], [ -87.188, 79.039 ], [ -89.035, 78.287 ], [ -90.804, 78.215 ], [ -92.877, 78.343 ], [ -93.951, 78.751 ], [ -93.936, 79.114 ], [ -93.145, 79.38 ], [ -94.974, 79.373 ], [ -96.076, 79.705 ], [ -96.71, 80.158 ], [ -96.016, 80.602 ], [ -95.323, 80.907 ], [ -94.298, 80.977 ], [ -94.735, 81.207 ], [ -92.41, 81.257 ], [ -91.133, 80.724 ], [ -89.45, 80.509 ], [ -87.81, 80.32 ], [ -87.02, 79.66 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "4444704", "area_hec": "4444704" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -108.211, 76.202 ], [ -107.819, 75.846 ], [ -106.929, 76.013 ], [ -105.881, 75.969 ], [ -105.705, 75.48 ], [ -106.314, 75.005 ], [ -109.7, 74.85 ], [ -112.223, 74.417 ], [ -113.744, 74.394 ], [ -113.871, 74.72 ], [ -111.794, 75.162 ], [ -116.312, 75.043 ], [ -117.71, 75.222 ], [ -116.346, 76.199 ], [ -115.405, 76.479 ], [ -112.591, 76.141 ], [ -110.814, 75.549 ], [ -109.067, 75.473 ], [ -110.497, 76.43 ], [ -109.581, 76.794 ], [ -108.549, 76.678 ], [ -108.211, 76.202 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "6012914", "area_hec": "6012914" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.684, 77.098 ], [ -93.574, 76.776 ], [ -91.605, 76.778 ], [ -90.742, 76.45 ], [ -90.97, 76.074 ], [ -89.822, 75.848 ], [ -89.187, 75.61 ], [ -87.838, 75.566 ], [ -86.379, 75.482 ], [ -84.79, 75.699 ], [ -82.753, 75.784 ], [ -81.129, 75.714 ], [ -80.058, 75.337 ], [ -79.834, 74.923 ], [ -80.458, 74.657 ], [ -81.949, 74.442 ], [ -83.229, 74.564 ], [ -86.097, 74.41 ], [ -88.15, 74.392 ], [ -89.765, 74.516 ], [ -92.422, 74.838 ], [ -92.768, 75.387 ], [ -92.89, 75.883 ], [ -93.894, 76.319 ], [ -95.963, 76.441 ], [ -97.121, 76.751 ], [ -96.745, 77.161 ], [ -94.684, 77.098 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "7348732", "area_hec": "7348732" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -120.46, 71.384 ], [ -123.092, 70.902 ], [ -123.62, 71.34 ], [ -125.929, 71.869 ], [ -125.5, 72.292 ], [ -124.807, 73.023 ], [ -123.94, 73.68 ], [ -124.918, 74.293 ], [ -121.538, 74.449 ], [ -120.11, 74.241 ], [ -117.556, 74.186 ], [ -116.584, 73.896 ], [ -115.511, 73.475 ], [ -116.768, 73.223 ], [ -119.22, 72.52 ], [ -120.46, 71.82 ], [ -120.46, 71.384 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "12460430", "area_hec": "12460430" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.134, 50.687 ], [ -56.796, 49.812 ], [ -56.143, 50.15 ], [ -55.471, 49.936 ], [ -55.822, 49.587 ], [ -54.935, 49.313 ], [ -54.474, 49.557 ], [ -53.477, 49.249 ], [ -53.786, 48.517 ], [ -53.086, 48.688 ], [ -52.959, 48.157 ], [ -52.648, 47.535 ], [ -53.069, 46.656 ], [ -53.522, 46.618 ], [ -54.179, 46.807 ], [ -53.962, 47.625 ], [ -54.24, 47.752 ], [ -55.401, 46.885 ], [ -55.998, 46.92 ], [ -55.291, 47.39 ], [ -56.251, 47.633 ], [ -57.325, 47.573 ], [ -59.266, 47.603 ], [ -59.419, 47.9 ], [ -58.797, 48.252 ], [ -59.232, 48.523 ], [ -58.392, 49.126 ], [ -57.359, 50.718 ], [ -56.739, 51.287 ], [ -55.871, 51.632 ], [ -55.407, 51.588 ], [ -55.6, 51.317 ], [ -56.134, 50.687 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "21791626", "area_hec": "21791626" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.5, 83.106 ], [ -65.827, 83.028 ], [ -63.68, 82.9 ], [ -61.85, 82.629 ], [ -61.894, 82.362 ], [ -64.334, 81.928 ], [ -66.753, 81.725 ], [ -67.657, 81.501 ], [ -65.48, 81.507 ], [ -67.84, 80.9 ], [ -69.47, 80.617 ], [ -71.18, 79.8 ], [ -73.243, 79.634 ], [ -73.88, 79.43 ], [ -76.908, 79.323 ], [ -75.529, 79.198 ], [ -76.221, 79.019 ], [ -75.393, 78.526 ], [ -76.344, 78.183 ], [ -77.888, 77.9 ], [ -78.363, 77.509 ], [ -79.76, 77.21 ], [ -79.62, 76.983 ], [ -77.911, 77.022 ], [ -77.889, 76.778 ], [ -80.561, 76.178 ], [ -83.174, 76.454 ], [ -86.112, 76.299 ], [ -87.6, 76.42 ], [ -89.491, 76.472 ], [ -89.616, 76.952 ], [ -87.767, 77.178 ], [ -88.26, 77.9 ], [ -87.65, 77.97 ], [ -84.976, 77.539 ], [ -86.34, 78.18 ], [ -87.962, 78.372 ], [ -87.152, 78.759 ], [ -85.379, 78.997 ], [ -85.095, 79.345 ], [ -86.507, 79.736 ], [ -86.932, 80.251 ], [ -84.198, 80.208 ], [ -83.409, 80.1 ], [ -81.848, 80.464 ], [ -84.1, 80.58 ], [ -87.599, 80.516 ], [ -89.367, 80.856 ], [ -90.2, 81.26 ], [ -91.368, 81.553 ], [ -91.587, 81.894 ], [ -90.1, 82.085 ], [ -88.932, 82.118 ], [ -86.97, 82.28 ], [ -85.5, 82.652 ], [ -84.26, 82.6 ], [ -83.18, 82.32 ], [ -82.42, 82.86 ], [ -81.1, 83.02 ], [ -79.307, 83.131 ], [ -76.25, 83.172 ], [ -75.719, 83.064 ], [ -72.832, 83.233 ], [ -70.666, 83.17 ], [ -68.5, 83.106 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "22226896", "area_hec": "22226896" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.167, 73.121 ], [ -114.666, 72.653 ], [ -112.441, 72.955 ], [ -111.05, 72.45 ], [ -109.92, 72.961 ], [ -109.007, 72.633 ], [ -108.188, 71.651 ], [ -107.686, 72.066 ], [ -108.396, 73.09 ], [ -107.516, 73.236 ], [ -106.523, 73.076 ], [ -105.403, 72.673 ], [ -104.775, 71.698 ], [ -104.465, 70.993 ], [ -102.785, 70.498 ], [ -100.981, 70.024 ], [ -101.089, 69.585 ], [ -102.731, 69.504 ], [ -102.093, 69.12 ], [ -102.43, 68.753 ], [ -104.24, 68.91 ], [ -105.96, 69.18 ], [ -107.123, 69.119 ], [ -109.0, 68.78 ], [ -111.534, 68.63 ], [ -113.313, 68.535 ], [ -113.855, 69.007 ], [ -115.22, 69.28 ], [ -116.108, 69.168 ], [ -117.34, 69.96 ], [ -116.675, 70.067 ], [ -115.131, 70.237 ], [ -113.721, 70.192 ], [ -112.416, 70.366 ], [ -114.35, 70.6 ], [ -116.487, 70.52 ], [ -117.905, 70.541 ], [ -118.432, 70.909 ], [ -116.113, 71.309 ], [ -117.656, 71.295 ], [ -119.402, 71.559 ], [ -118.563, 72.308 ], [ -117.866, 72.706 ], [ -115.189, 73.315 ], [ -114.167, 73.121 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "53546393", "area_hec": "53546393" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.562, 73.157 ], [ -85.774, 72.534 ], [ -84.85, 73.34 ], [ -82.316, 73.751 ], [ -80.6, 72.716 ], [ -80.749, 72.062 ], [ -78.771, 72.352 ], [ -77.825, 72.75 ], [ -75.606, 72.244 ], [ -74.229, 71.767 ], [ -74.099, 71.331 ], [ -72.242, 71.557 ], [ -71.2, 70.92 ], [ -68.786, 70.525 ], [ -67.915, 70.122 ], [ -66.969, 69.186 ], [ -68.805, 68.72 ], [ -66.45, 68.067 ], [ -64.862, 67.847 ], [ -63.425, 66.928 ], [ -61.852, 66.862 ], [ -62.163, 66.16 ], [ -63.918, 64.999 ], [ -65.149, 65.426 ], [ -66.721, 66.388 ], [ -68.015, 66.263 ], [ -68.141, 65.69 ], [ -67.09, 65.109 ], [ -65.732, 64.648 ], [ -65.32, 64.383 ], [ -64.669, 63.393 ], [ -65.014, 62.674 ], [ -66.275, 62.945 ], [ -68.783, 63.746 ], [ -67.37, 62.884 ], [ -66.328, 62.28 ], [ -66.166, 61.931 ], [ -68.877, 62.33 ], [ -71.023, 62.911 ], [ -72.235, 63.398 ], [ -71.886, 63.68 ], [ -73.378, 64.194 ], [ -74.834, 64.679 ], [ -74.819, 64.389 ], [ -77.71, 64.23 ], [ -78.556, 64.573 ], [ -77.897, 65.309 ], [ -76.018, 65.327 ], [ -73.96, 65.455 ], [ -74.294, 65.812 ], [ -73.945, 66.311 ], [ -72.651, 67.285 ], [ -72.926, 67.727 ], [ -73.312, 68.069 ], [ -74.843, 68.555 ], [ -76.869, 68.895 ], [ -76.229, 69.148 ], [ -77.287, 69.769 ], [ -78.169, 69.826 ], [ -78.957, 70.167 ], [ -79.493, 69.872 ], [ -81.305, 69.743 ], [ -84.945, 69.967 ], [ -87.06, 70.26 ], [ -88.682, 70.411 ], [ -89.513, 70.762 ], [ -88.468, 71.218 ], [ -89.888, 71.223 ], [ -90.205, 72.235 ], [ -89.437, 73.129 ], [ -88.408, 73.538 ], [ -85.826, 73.804 ], [ -86.562, 73.157 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Canada", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "843583670", "area_hec": "843583670" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.547, 69.498 ], [ -90.552, 68.475 ], [ -89.215, 69.259 ], [ -88.02, 68.615 ], [ -88.317, 67.873 ], [ -87.35, 67.199 ], [ -86.306, 67.921 ], [ -85.577, 68.785 ], [ -85.522, 69.882 ], [ -84.101, 69.805 ], [ -82.623, 69.658 ], [ -81.28, 69.162 ], [ -81.22, 68.666 ], [ -81.964, 68.132 ], [ -81.259, 67.597 ], [ -81.386, 67.111 ], [ -83.345, 66.412 ], [ -84.735, 66.257 ], [ -85.769, 66.558 ], [ -86.068, 66.056 ], [ -87.031, 65.213 ], [ -87.323, 64.776 ], [ -88.483, 64.099 ], [ -89.914, 64.033 ], [ -90.704, 63.61 ], [ -90.77, 62.96 ], [ -91.933, 62.835 ], [ -93.157, 62.025 ], [ -94.242, 60.899 ], [ -94.629, 60.11 ], [ -94.685, 58.949 ], [ -93.215, 58.782 ], [ -92.765, 57.846 ], [ -92.297, 57.087 ], [ -90.898, 57.285 ], [ -89.04, 56.852 ], [ -88.04, 56.472 ], [ -87.324, 55.999 ], [ -86.071, 55.724 ], [ -85.012, 55.303 ], [ -83.361, 55.245 ], [ -82.273, 55.148 ], [ -82.436, 54.282 ], [ -82.125, 53.277 ], [ -81.401, 52.158 ], [ -79.913, 51.208 ], [ -79.143, 51.534 ], [ -78.602, 52.562 ], [ -79.124, 54.142 ], [ -79.83, 54.668 ], [ -78.229, 55.136 ], [ -77.096, 55.837 ], [ -76.541, 56.534 ], [ -76.623, 57.203 ], [ -77.302, 58.052 ], [ -78.517, 58.805 ], [ -77.337, 59.853 ], [ -77.773, 60.758 ], [ -78.107, 62.32 ], [ -77.411, 62.55 ], [ -75.696, 62.278 ], [ -74.668, 62.181 ], [ -73.84, 62.444 ], [ -72.909, 62.105 ], [ -71.677, 61.525 ], [ -71.374, 61.137 ], [ -69.59, 61.061 ], [ -69.62, 60.221 ], [ -69.288, 58.957 ], [ -68.374, 58.801 ], [ -67.65, 58.212 ], [ -66.202, 58.767 ], [ -65.245, 59.871 ], [ -64.584, 60.336 ], [ -63.805, 59.443 ], [ -62.502, 58.167 ], [ -61.397, 56.968 ], [ -61.799, 56.34 ], [ -60.468, 55.776 ], [ -59.57, 55.204 ], [ -57.975, 54.946 ], [ -57.333, 54.627 ], [ -56.937, 53.78 ], [ -56.158, 53.648 ], [ -55.756, 53.27 ], [ -55.683, 52.147 ], [ -56.409, 51.771 ], [ -57.127, 51.42 ], [ -58.775, 51.064 ], [ -60.033, 50.243 ], [ -61.724, 50.081 ], [ -63.862, 50.291 ], [ -65.363, 50.298 ], [ -66.399, 50.229 ], [ -67.236, 49.512 ], [ -68.511, 49.068 ], [ -69.954, 47.745 ], [ -71.105, 46.822 ], [ -70.255, 46.986 ], [ -68.65, 48.3 ], [ -66.552, 49.133 ], [ -65.056, 49.233 ], [ -64.171, 48.742 ], [ -65.115, 48.071 ], [ -64.799, 46.993 ], [ -64.472, 46.239 ], [ -63.173, 45.739 ], [ -61.521, 45.884 ], [ -60.518, 47.008 ], [ -60.449, 46.283 ], [ -59.803, 45.92 ], [ -61.04, 45.265 ], [ -63.255, 44.67 ], [ -64.247, 44.266 ], [ -65.364, 43.545 ], [ -66.123, 43.619 ], [ -66.162, 44.465 ], [ -64.425, 45.292 ], [ -66.026, 45.259 ], [ -67.137, 45.138 ], [ -67.791, 45.703 ], [ -67.79, 47.066 ], [ -68.234, 47.355 ], [ -68.905, 47.185 ], [ -69.237, 47.448 ], [ -70.0, 46.693 ], [ -70.305, 45.915 ], [ -70.66, 45.46 ], [ -71.085, 45.305 ], [ -71.405, 45.255 ], [ -71.505, 45.008 ], [ -73.348, 45.007 ], [ -74.867, 45.001 ], [ -75.318, 44.816 ], [ -76.375, 44.096 ], [ -76.5, 44.019 ], [ -76.82, 43.629 ], [ -77.738, 43.629 ], [ -78.72, 43.625 ], [ -79.172, 43.466 ], [ -79.01, 43.27 ], [ -78.92, 42.965 ], [ -78.939, 42.864 ], [ -80.247, 42.366 ], [ -81.278, 42.209 ], [ -82.439, 41.675 ], [ -82.69, 41.675 ], [ -83.03, 41.833 ], [ -83.142, 41.976 ], [ -83.12, 42.08 ], [ -82.9, 42.43 ], [ -82.43, 42.98 ], [ -82.138, 43.571 ], [ -82.338, 44.44 ], [ -82.551, 45.347 ], [ -83.593, 45.817 ], [ -83.47, 45.995 ], [ -83.616, 46.117 ], [ -83.891, 46.117 ], [ -84.092, 46.275 ], [ -84.142, 46.512 ], [ -84.337, 46.409 ], [ -84.605, 46.44 ], [ -84.544, 46.539 ], [ -84.779, 46.637 ], [ -84.876, 46.9 ], [ -85.652, 47.22 ], [ -86.462, 47.553 ], [ -87.44, 47.94 ], [ -88.378, 48.303 ], [ -89.273, 48.02 ], [ -89.6, 48.01 ], [ -90.83, 48.27 ], [ -91.64, 48.14 ], [ -92.61, 48.45 ], [ -93.631, 48.609 ], [ -94.329, 48.671 ], [ -94.64, 48.84 ], [ -94.818, 49.389 ], [ -95.156, 49.384 ], [ -95.159, 49.0 ], [ -97.229, 49.001 ], [ -100.65, 49.0 ], [ -104.048, 49.0 ], [ -107.05, 49.0 ], [ -110.05, 49.0 ], [ -113.0, 49.0 ], [ -116.048, 49.0 ], [ -117.031, 49.0 ], [ -120.0, 49.0 ], [ -122.84, 49.0 ], [ -122.974, 49.002 ], [ -124.91, 49.985 ], [ -125.625, 50.417 ], [ -127.436, 50.831 ], [ -127.993, 51.716 ], [ -127.85, 52.33 ], [ -129.13, 52.755 ], [ -129.305, 53.562 ], [ -130.515, 54.288 ], [ -130.536, 54.803 ], [ -129.98, 55.285 ], [ -130.008, 55.916 ], [ -131.708, 56.552 ], [ -132.73, 57.693 ], [ -133.356, 58.41 ], [ -134.271, 58.861 ], [ -134.945, 59.271 ], [ -135.476, 59.788 ], [ -136.48, 59.464 ], [ -137.452, 58.905 ], [ -138.341, 59.562 ], [ -139.039, 60.0 ], [ -140.013, 60.277 ], [ -140.998, 60.306 ], [ -140.993, 66.0 ], [ -140.986, 69.712 ], [ -139.12, 69.471 ], [ -137.546, 68.99 ], [ -136.504, 68.898 ], [ -135.626, 69.315 ], [ -134.415, 69.627 ], [ -132.929, 69.505 ], [ -131.431, 69.945 ], [ -129.795, 70.194 ], [ -129.108, 69.779 ], [ -128.362, 70.013 ], [ -128.138, 70.484 ], [ -127.447, 70.377 ], [ -125.756, 69.481 ], [ -124.425, 70.158 ], [ -124.29, 69.4 ], [ -123.061, 69.564 ], [ -122.683, 69.856 ], [ -121.472, 69.798 ], [ -119.943, 69.378 ], [ -117.603, 69.011 ], [ -116.226, 68.841 ], [ -115.247, 68.906 ], [ -113.898, 68.399 ], [ -115.305, 67.903 ], [ -113.497, 67.688 ], [ -110.798, 67.806 ], [ -109.946, 67.981 ], [ -108.88, 67.381 ], [ -107.792, 67.887 ], [ -108.813, 68.312 ], [ -108.167, 68.654 ], [ -106.95, 68.7 ], [ -106.15, 68.8 ], [ -105.343, 68.561 ], [ -104.338, 68.018 ], [ -103.221, 68.098 ], [ -101.454, 67.647 ], [ -99.902, 67.806 ], [ -98.443, 67.782 ], [ -98.559, 68.404 ], [ -97.669, 68.579 ], [ -96.12, 68.239 ], [ -96.126, 67.293 ], [ -95.489, 68.091 ], [ -94.685, 68.064 ], [ -94.233, 69.069 ], [ -95.304, 69.686 ], [ -96.471, 70.09 ], [ -96.391, 71.195 ], [ -95.209, 71.921 ], [ -93.89, 71.76 ], [ -92.878, 71.319 ], [ -91.52, 70.191 ], [ -92.407, 69.7 ], [ -90.547, 69.498 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Central African Republic", "name_alt": null, "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198.000000, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "62187906", "area_hec": "62187906" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.28, 7.422 ], [ 16.106, 7.497 ], [ 16.291, 7.754 ], [ 16.456, 7.735 ], [ 16.706, 7.508 ], [ 17.965, 7.891 ], [ 18.39, 8.281 ], [ 18.911, 8.631 ], [ 18.812, 8.983 ], [ 19.094, 9.075 ], [ 20.06, 9.013 ], [ 21.001, 9.476 ], [ 21.724, 10.567 ], [ 22.231, 10.972 ], [ 22.864, 11.142 ], [ 22.977, 10.714 ], [ 23.554, 10.089 ], [ 23.557, 9.681 ], [ 23.395, 9.265 ], [ 23.459, 8.954 ], [ 23.806, 8.666 ], [ 24.567, 8.229 ], [ 25.115, 7.825 ], [ 25.124, 7.5 ], [ 25.797, 6.979 ], [ 26.213, 6.547 ], [ 26.466, 5.947 ], [ 27.213, 5.551 ], [ 27.374, 5.234 ], [ 27.044, 5.128 ], [ 26.403, 5.151 ], [ 25.651, 5.256 ], [ 25.279, 5.17 ], [ 25.129, 4.927 ], [ 24.805, 4.897 ], [ 24.41, 5.109 ], [ 23.297, 4.61 ], [ 22.841, 4.71 ], [ 22.704, 4.633 ], [ 22.405, 4.029 ], [ 21.659, 4.224 ], [ 20.928, 4.323 ], [ 20.291, 4.692 ], [ 19.468, 5.032 ], [ 18.932, 4.71 ], [ 18.543, 4.202 ], [ 18.453, 3.504 ], [ 17.81, 3.56 ], [ 17.133, 3.728 ], [ 16.537, 3.198 ], [ 16.013, 2.268 ], [ 15.907, 2.557 ], [ 15.863, 3.014 ], [ 15.405, 3.335 ], [ 15.036, 3.851 ], [ 14.951, 4.21 ], [ 14.478, 4.733 ], [ 14.559, 5.031 ], [ 14.459, 5.452 ], [ 14.537, 6.227 ], [ 14.777, 6.409 ], [ 15.28, 7.422 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "brk_group": null, "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Chad", "name_alt": null, "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "127239601", "area_hec": "127239601" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496, 12.859 ], [ 14.596, 13.33 ], [ 13.954, 13.353 ], [ 13.957, 13.997 ], [ 13.54, 14.367 ], [ 13.972, 15.684 ], [ 15.248, 16.627 ], [ 15.3, 17.928 ], [ 15.686, 19.957 ], [ 15.903, 20.388 ], [ 15.487, 20.73 ], [ 15.471, 21.049 ], [ 15.097, 21.308 ], [ 14.851, 22.863 ], [ 15.861, 23.41 ], [ 19.849, 21.495 ], [ 23.838, 19.581 ], [ 23.887, 15.611 ], [ 23.025, 15.681 ], [ 22.568, 14.944 ], [ 22.303, 14.327 ], [ 22.512, 14.093 ], [ 22.183, 13.787 ], [ 22.297, 13.372 ], [ 22.038, 12.956 ], [ 21.937, 12.588 ], [ 22.288, 12.646 ], [ 22.498, 12.26 ], [ 22.509, 11.679 ], [ 22.876, 11.385 ], [ 22.864, 11.142 ], [ 22.231, 10.972 ], [ 21.724, 10.567 ], [ 21.001, 9.476 ], [ 20.06, 9.013 ], [ 19.094, 9.075 ], [ 18.812, 8.983 ], [ 18.911, 8.631 ], [ 18.39, 8.281 ], [ 17.965, 7.891 ], [ 16.706, 7.508 ], [ 16.456, 7.735 ], [ 16.291, 7.754 ], [ 16.106, 7.497 ], [ 15.28, 7.422 ], [ 15.436, 7.693 ], [ 15.121, 8.382 ], [ 14.98, 8.796 ], [ 14.544, 8.966 ], [ 13.954, 9.55 ], [ 14.171, 10.021 ], [ 14.627, 9.921 ], [ 14.909, 9.992 ], [ 15.468, 9.982 ], [ 14.924, 10.891 ], [ 14.96, 11.556 ], [ 14.893, 12.219 ], [ 14.496, 12.859 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Chile", "name_alt": null, "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "6411937", "area_hec": "6411937" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.634, -52.636 ], [ -68.633, -54.87 ], [ -67.562, -54.87 ], [ -66.96, -54.897 ], [ -67.291, -55.301 ], [ -68.149, -55.612 ], [ -68.64, -55.58 ], [ -69.232, -55.499 ], [ -69.958, -55.198 ], [ -71.006, -55.054 ], [ -72.264, -54.495 ], [ -73.285, -53.958 ], [ -74.662, -52.837 ], [ -73.838, -53.047 ], [ -72.434, -53.715 ], [ -71.108, -54.074 ], [ -70.592, -53.616 ], [ -70.267, -52.931 ], [ -69.346, -52.518 ], [ -68.634, -52.636 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Chile", "name_alt": null, "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "74977044", "area_hec": "74977044" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.22, -21.494 ], [ -67.828, -22.873 ], [ -67.107, -22.736 ], [ -66.985, -22.986 ], [ -67.328, -24.025 ], [ -68.418, -24.519 ], [ -68.386, -26.185 ], [ -68.595, -26.507 ], [ -68.296, -26.899 ], [ -69.001, -27.521 ], [ -69.656, -28.459 ], [ -70.014, -29.368 ], [ -69.919, -30.336 ], [ -70.535, -31.365 ], [ -70.074, -33.091 ], [ -69.815, -33.274 ], [ -69.817, -34.194 ], [ -70.388, -35.17 ], [ -70.365, -36.005 ], [ -71.122, -36.658 ], [ -71.119, -37.577 ], [ -70.815, -38.553 ], [ -71.413, -38.916 ], [ -71.681, -39.808 ], [ -71.916, -40.832 ], [ -71.747, -42.051 ], [ -72.149, -42.255 ], [ -71.915, -43.409 ], [ -71.464, -43.788 ], [ -71.794, -44.207 ], [ -71.33, -44.407 ], [ -71.223, -44.784 ], [ -71.659, -44.974 ], [ -71.552, -45.561 ], [ -71.917, -46.885 ], [ -72.447, -47.739 ], [ -72.331, -48.244 ], [ -72.648, -48.879 ], [ -73.415, -49.318 ], [ -73.328, -50.379 ], [ -72.976, -50.742 ], [ -72.31, -50.677 ], [ -72.329, -51.426 ], [ -71.915, -52.009 ], [ -69.498, -52.143 ], [ -68.572, -52.299 ], [ -69.461, -52.292 ], [ -69.943, -52.538 ], [ -70.845, -52.899 ], [ -71.006, -53.833 ], [ -71.43, -53.856 ], [ -72.558, -53.531 ], [ -73.703, -52.835 ], [ -73.703, -52.835 ], [ -74.947, -52.263 ], [ -75.26, -51.629 ], [ -74.977, -51.043 ], [ -75.48, -50.378 ], [ -75.608, -48.674 ], [ -75.183, -47.712 ], [ -74.127, -46.939 ], [ -75.644, -46.648 ], [ -74.692, -45.764 ], [ -74.352, -44.103 ], [ -73.24, -44.455 ], [ -72.718, -42.383 ], [ -73.389, -42.117 ], [ -73.701, -43.366 ], [ -74.332, -43.225 ], [ -74.018, -41.795 ], [ -73.677, -39.942 ], [ -73.218, -39.259 ], [ -73.506, -38.283 ], [ -73.588, -37.156 ], [ -73.167, -37.124 ], [ -72.553, -35.509 ], [ -71.862, -33.909 ], [ -71.439, -32.419 ], [ -71.669, -30.921 ], [ -71.37, -30.096 ], [ -71.49, -28.861 ], [ -70.905, -27.64 ], [ -70.725, -25.706 ], [ -70.404, -23.629 ], [ -70.091, -21.393 ], [ -70.164, -19.756 ], [ -70.373, -18.348 ], [ -69.858, -18.093 ], [ -69.59, -17.58 ], [ -69.1, -18.26 ], [ -68.967, -18.982 ], [ -68.442, -19.405 ], [ -68.757, -20.373 ], [ -68.22, -21.494 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "China", "name_alt": null, "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "3474081", "area_hec": "3474081" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.339, 18.678 ], [ 109.475, 18.198 ], [ 108.655, 18.508 ], [ 108.626, 19.368 ], [ 109.119, 19.821 ], [ 110.212, 20.101 ], [ 110.787, 20.078 ], [ 111.01, 19.696 ], [ 110.571, 19.256 ], [ 110.339, 18.678 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "China", "name_alt": null, "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "937455467", "area_hec": "937455467" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.657, 49.76 ], [ 129.398, 49.441 ], [ 130.582, 48.73 ], [ 130.987, 47.79 ], [ 132.507, 47.789 ], [ 133.374, 48.183 ], [ 135.026, 48.478 ], [ 134.501, 47.578 ], [ 134.112, 47.212 ], [ 133.77, 46.117 ], [ 133.097, 45.144 ], [ 131.883, 45.321 ], [ 131.025, 44.968 ], [ 131.289, 44.111 ], [ 131.145, 42.93 ], [ 130.634, 42.903 ], [ 130.64, 42.395 ], [ 129.994, 42.985 ], [ 129.597, 42.425 ], [ 128.052, 41.994 ], [ 128.208, 41.467 ], [ 127.344, 41.503 ], [ 126.869, 41.817 ], [ 126.182, 41.107 ], [ 125.08, 40.57 ], [ 124.266, 39.928 ], [ 122.868, 39.638 ], [ 122.131, 39.17 ], [ 121.055, 38.898 ], [ 121.586, 39.361 ], [ 121.377, 39.75 ], [ 122.169, 40.422 ], [ 121.64, 40.946 ], [ 120.769, 40.593 ], [ 119.64, 39.898 ], [ 119.023, 39.252 ], [ 118.043, 39.204 ], [ 117.533, 38.738 ], [ 118.06, 38.062 ], [ 118.878, 37.897 ], [ 118.912, 37.449 ], [ 119.703, 37.156 ], [ 120.823, 37.87 ], [ 121.711, 37.481 ], [ 122.358, 37.455 ], [ 122.52, 36.931 ], [ 121.104, 36.651 ], [ 120.637, 36.111 ], [ 119.665, 35.61 ], [ 119.151, 34.91 ], [ 120.228, 34.36 ], [ 120.62, 33.377 ], [ 121.229, 32.46 ], [ 121.908, 31.692 ], [ 121.892, 30.949 ], [ 121.264, 30.676 ], [ 121.504, 30.143 ], [ 122.092, 29.832 ], [ 121.938, 29.018 ], [ 121.684, 28.226 ], [ 121.126, 28.136 ], [ 120.395, 27.053 ], [ 119.585, 25.741 ], [ 118.657, 24.547 ], [ 117.282, 23.625 ], [ 115.891, 22.783 ], [ 114.764, 22.668 ], [ 114.153, 22.224 ], [ 113.807, 22.548 ], [ 113.241, 22.051 ], [ 111.844, 21.55 ], [ 110.785, 21.397 ], [ 110.444, 20.341 ], [ 109.89, 20.282 ], [ 109.628, 21.008 ], [ 109.865, 21.395 ], [ 108.523, 21.715 ], [ 108.05, 21.552 ], [ 107.043, 21.812 ], [ 106.567, 22.218 ], [ 106.725, 22.794 ], [ 105.811, 22.977 ], [ 105.329, 23.352 ], [ 104.477, 22.819 ], [ 103.504, 22.704 ], [ 102.707, 22.709 ], [ 102.17, 22.465 ], [ 101.652, 22.318 ], [ 101.803, 21.174 ], [ 101.27, 21.202 ], [ 101.18, 21.437 ], [ 101.15, 21.85 ], [ 100.416, 21.559 ], [ 99.984, 21.743 ], [ 99.241, 22.118 ], [ 99.532, 22.949 ], [ 98.899, 23.143 ], [ 98.66, 24.063 ], [ 97.605, 23.897 ], [ 97.725, 25.084 ], [ 98.672, 25.919 ], [ 98.712, 26.744 ], [ 98.683, 27.509 ], [ 98.246, 27.747 ], [ 97.912, 28.336 ], [ 97.327, 28.262 ], [ 96.249, 28.411 ], [ 96.587, 28.831 ], [ 96.118, 29.453 ], [ 95.405, 29.032 ], [ 94.566, 29.277 ], [ 93.413, 28.641 ], [ 92.503, 27.897 ], [ 91.697, 27.772 ], [ 91.259, 28.041 ], [ 90.731, 28.065 ], [ 90.016, 28.296 ], [ 89.476, 28.043 ], [ 88.814, 27.299 ], [ 88.73, 28.087 ], [ 88.12, 27.877 ], [ 86.954, 27.974 ], [ 85.823, 28.204 ], [ 85.012, 28.643 ], [ 84.235, 28.84 ], [ 83.899, 29.32 ], [ 83.337, 29.464 ], [ 82.328, 30.115 ], [ 81.526, 30.423 ], [ 81.111, 30.183 ], [ 79.721, 30.883 ], [ 78.739, 31.516 ], [ 78.458, 32.618 ], [ 79.176, 32.484 ], [ 79.209, 32.994 ], [ 78.811, 33.506 ], [ 78.912, 34.322 ], [ 77.838, 35.494 ], [ 76.193, 35.898 ], [ 75.897, 36.667 ], [ 75.158, 37.133 ], [ 74.98, 37.42 ], [ 74.83, 37.99 ], [ 74.865, 38.379 ], [ 74.257, 38.606 ], [ 73.929, 38.506 ], [ 73.675, 39.431 ], [ 73.96, 39.66 ], [ 73.822, 39.894 ], [ 74.777, 40.366 ], [ 75.468, 40.562 ], [ 76.526, 40.428 ], [ 76.904, 41.066 ], [ 78.187, 41.185 ], [ 78.544, 41.582 ], [ 80.119, 42.124 ], [ 80.26, 42.35 ], [ 80.18, 42.92 ], [ 80.866, 43.18 ], [ 79.966, 44.917 ], [ 81.947, 45.317 ], [ 82.459, 45.54 ], [ 83.18, 47.33 ], [ 85.164, 47.001 ], [ 85.721, 47.453 ], [ 85.768, 48.456 ], [ 86.599, 48.549 ], [ 87.36, 49.215 ], [ 87.751, 49.297 ], [ 88.014, 48.599 ], [ 88.854, 48.069 ], [ 90.281, 47.694 ], [ 90.971, 46.888 ], [ 90.586, 45.72 ], [ 90.945, 45.286 ], [ 92.134, 45.115 ], [ 93.481, 44.975 ], [ 94.689, 44.352 ], [ 95.307, 44.241 ], [ 95.763, 43.319 ], [ 96.349, 42.726 ], [ 97.452, 42.749 ], [ 99.516, 42.525 ], [ 100.846, 42.664 ], [ 101.833, 42.515 ], [ 103.312, 41.907 ], [ 104.522, 41.908 ], [ 104.965, 41.597 ], [ 106.129, 42.134 ], [ 107.745, 42.481 ], [ 109.244, 42.519 ], [ 110.412, 42.871 ], [ 111.13, 43.407 ], [ 111.83, 43.743 ], [ 111.668, 44.073 ], [ 111.348, 44.457 ], [ 111.873, 45.102 ], [ 112.436, 45.012 ], [ 113.464, 44.809 ], [ 114.46, 45.34 ], [ 115.985, 45.727 ], [ 116.718, 46.388 ], [ 117.422, 46.673 ], [ 118.874, 46.805 ], [ 119.663, 46.693 ], [ 119.773, 47.048 ], [ 118.867, 47.747 ], [ 118.064, 48.067 ], [ 117.296, 47.698 ], [ 116.309, 47.853 ], [ 115.743, 47.727 ], [ 115.485, 48.135 ], [ 116.192, 49.135 ], [ 116.679, 49.889 ], [ 117.879, 49.511 ], [ 119.288, 50.143 ], [ 119.279, 50.583 ], [ 120.182, 51.644 ], [ 120.738, 51.964 ], [ 120.726, 52.516 ], [ 120.177, 52.754 ], [ 121.003, 53.251 ], [ 122.246, 53.432 ], [ 123.572, 53.459 ], [ 125.068, 53.161 ], [ 125.946, 52.793 ], [ 126.564, 51.784 ], [ 126.939, 51.354 ], [ 127.287, 50.74 ], [ 127.657, 49.76 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Colombia", "name_alt": null, "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "115189884", "area_hec": "115189884" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.373, -0.152 ], [ -75.802, 0.085 ], [ -76.292, 0.416 ], [ -76.576, 0.257 ], [ -77.425, 0.396 ], [ -77.669, 0.826 ], [ -77.855, 0.81 ], [ -78.855, 1.381 ], [ -78.991, 1.691 ], [ -78.618, 1.766 ], [ -78.662, 2.267 ], [ -78.428, 2.63 ], [ -77.931, 2.697 ], [ -77.51, 3.325 ], [ -77.128, 3.85 ], [ -77.496, 4.088 ], [ -77.308, 4.668 ], [ -77.533, 5.583 ], [ -77.319, 5.845 ], [ -77.477, 6.691 ], [ -77.882, 7.224 ], [ -77.753, 7.71 ], [ -77.431, 7.638 ], [ -77.243, 7.935 ], [ -77.475, 8.524 ], [ -77.353, 8.671 ], [ -76.837, 8.639 ], [ -76.086, 9.337 ], [ -75.675, 9.443 ], [ -75.665, 9.774 ], [ -75.48, 10.619 ], [ -74.907, 11.083 ], [ -74.277, 11.102 ], [ -74.197, 11.31 ], [ -73.415, 11.227 ], [ -72.628, 11.732 ], [ -72.238, 11.956 ], [ -71.754, 12.437 ], [ -71.4, 12.376 ], [ -71.138, 12.113 ], [ -71.332, 11.776 ], [ -71.974, 11.609 ], [ -72.228, 11.109 ], [ -72.615, 10.822 ], [ -72.905, 10.45 ], [ -73.028, 9.737 ], [ -73.305, 9.152 ], [ -72.789, 9.085 ], [ -72.66, 8.625 ], [ -72.44, 8.405 ], [ -72.361, 8.003 ], [ -72.48, 7.633 ], [ -72.445, 7.424 ], [ -72.198, 7.34 ], [ -71.96, 6.992 ], [ -70.674, 7.088 ], [ -70.093, 6.96 ], [ -69.389, 6.1 ], [ -68.985, 6.207 ], [ -68.265, 6.153 ], [ -67.695, 6.267 ], [ -67.341, 6.096 ], [ -67.522, 5.557 ], [ -67.745, 5.221 ], [ -67.823, 4.504 ], [ -67.622, 3.84 ], [ -67.338, 3.542 ], [ -67.303, 3.318 ], [ -67.81, 2.821 ], [ -67.447, 2.6 ], [ -67.181, 2.251 ], [ -66.876, 1.253 ], [ -67.065, 1.13 ], [ -67.26, 1.72 ], [ -67.538, 2.037 ], [ -67.869, 1.692 ], [ -69.817, 1.715 ], [ -69.805, 1.089 ], [ -69.219, 0.986 ], [ -69.252, 0.603 ], [ -69.452, 0.706 ], [ -70.016, 0.541 ], [ -70.021, -0.185 ], [ -69.577, -0.55 ], [ -69.421, -1.123 ], [ -69.444, -1.556 ], [ -69.894, -4.298 ], [ -70.394, -3.767 ], [ -70.693, -3.743 ], [ -70.048, -2.725 ], [ -70.814, -2.257 ], [ -71.414, -2.343 ], [ -71.775, -2.17 ], [ -72.326, -2.434 ], [ -73.07, -2.309 ], [ -73.659, -1.26 ], [ -74.122, -1.003 ], [ -74.442, -0.531 ], [ -75.107, -0.057 ], [ -75.373, -0.152 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Congo, Rep.", "name_alt": null, "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "33970331", "area_hec": "33970331" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.995, -4.781 ], [ 12.621, -4.438 ], [ 12.319, -4.606 ], [ 11.915, -5.038 ], [ 11.094, -3.979 ], [ 11.855, -3.427 ], [ 11.478, -2.766 ], [ 11.821, -2.514 ], [ 12.496, -2.392 ], [ 12.575, -1.948 ], [ 13.11, -2.429 ], [ 13.992, -2.471 ], [ 14.299, -1.998 ], [ 14.425, -1.333 ], [ 14.316, -0.553 ], [ 13.843, 0.039 ], [ 14.276, 1.197 ], [ 14.027, 1.396 ], [ 13.283, 1.314 ], [ 13.003, 1.831 ], [ 13.076, 2.267 ], [ 14.338, 2.228 ], [ 15.146, 1.964 ], [ 15.941, 1.728 ], [ 16.013, 2.268 ], [ 16.537, 3.198 ], [ 17.133, 3.728 ], [ 17.81, 3.56 ], [ 18.453, 3.504 ], [ 18.394, 2.9 ], [ 18.094, 2.366 ], [ 17.899, 1.742 ], [ 17.774, 0.856 ], [ 17.826, 0.289 ], [ 17.664, -0.058 ], [ 17.639, -0.425 ], [ 17.524, -0.744 ], [ 16.865, -1.226 ], [ 16.407, -1.741 ], [ 15.973, -2.712 ], [ 16.006, -3.535 ], [ 15.754, -3.855 ], [ 15.171, -4.343 ], [ 14.583, -4.97 ], [ 14.209, -4.793 ], [ 14.145, -4.51 ], [ 13.6, -4.5 ], [ 13.258, -4.883 ], [ 12.995, -4.781 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Costa Rica", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "5384536", "area_hec": "5384536" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.966, 8.225 ], [ -83.508, 8.447 ], [ -83.712, 8.657 ], [ -83.596, 8.83 ], [ -83.633, 9.051 ], [ -83.91, 9.291 ], [ -84.303, 9.487 ], [ -84.648, 9.616 ], [ -84.713, 9.908 ], [ -84.976, 10.087 ], [ -84.911, 9.796 ], [ -85.111, 9.557 ], [ -85.34, 9.835 ], [ -85.661, 9.933 ], [ -85.797, 10.135 ], [ -85.792, 10.439 ], [ -85.659, 10.754 ], [ -85.942, 10.895 ], [ -85.713, 11.088 ], [ -85.562, 11.217 ], [ -84.903, 10.952 ], [ -84.673, 11.083 ], [ -84.356, 10.999 ], [ -84.19, 10.793 ], [ -83.895, 10.727 ], [ -83.656, 10.939 ], [ -83.402, 10.395 ], [ -83.016, 9.993 ], [ -82.546, 9.566 ], [ -82.933, 9.477 ], [ -82.927, 9.074 ], [ -82.719, 8.926 ], [ -82.869, 8.807 ], [ -82.83, 8.626 ], [ -82.913, 8.424 ], [ -82.966, 8.225 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Croatia", "name_alt": null, "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "5752954", "area_hec": "5752954" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.83, 45.909 ], [ 19.073, 45.522 ], [ 19.39, 45.236 ], [ 19.006, 44.86 ], [ 18.553, 45.082 ], [ 17.862, 45.068 ], [ 17.002, 45.234 ], [ 16.535, 45.212 ], [ 16.318, 45.004 ], [ 15.959, 45.234 ], [ 15.75, 44.819 ], [ 16.24, 44.351 ], [ 16.456, 44.041 ], [ 16.916, 43.668 ], [ 17.297, 43.446 ], [ 17.675, 43.029 ], [ 18.56, 42.65 ], [ 18.45, 42.48 ], [ 17.51, 42.85 ], [ 16.93, 43.21 ], [ 16.015, 43.507 ], [ 15.175, 44.243 ], [ 15.376, 44.318 ], [ 14.92, 44.739 ], [ 14.902, 45.076 ], [ 14.259, 45.234 ], [ 13.952, 44.802 ], [ 13.657, 45.137 ], [ 13.679, 45.484 ], [ 13.715, 45.5 ], [ 14.412, 45.466 ], [ 14.595, 45.635 ], [ 14.935, 45.472 ], [ 15.328, 45.452 ], [ 15.324, 45.732 ], [ 15.671, 45.834 ], [ 15.769, 46.238 ], [ 16.565, 46.504 ], [ 16.883, 46.381 ], [ 17.63, 45.952 ], [ 18.456, 45.76 ], [ 18.83, 45.909 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cuba", "name_alt": null, "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "11483959", "area_hec": "11483959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.268, 23.189 ], [ -81.404, 23.117 ], [ -80.619, 23.106 ], [ -79.68, 22.765 ], [ -79.281, 22.399 ], [ -78.347, 22.512 ], [ -77.993, 22.277 ], [ -77.146, 21.658 ], [ -76.524, 21.207 ], [ -76.195, 21.221 ], [ -75.598, 21.017 ], [ -75.671, 20.735 ], [ -74.934, 20.694 ], [ -74.178, 20.285 ], [ -74.297, 20.05 ], [ -74.962, 19.923 ], [ -75.635, 19.874 ], [ -76.324, 19.953 ], [ -77.755, 19.855 ], [ -77.085, 20.413 ], [ -77.493, 20.673 ], [ -78.137, 20.74 ], [ -78.483, 21.029 ], [ -78.72, 21.598 ], [ -79.285, 21.559 ], [ -80.218, 21.827 ], [ -80.517, 22.037 ], [ -81.821, 22.192 ], [ -82.17, 22.387 ], [ -81.795, 22.637 ], [ -82.776, 22.688 ], [ -83.495, 22.169 ], [ -83.909, 22.155 ], [ -84.052, 21.911 ], [ -84.547, 21.801 ], [ -84.975, 21.896 ], [ -84.447, 22.205 ], [ -84.23, 22.566 ], [ -83.778, 22.788 ], [ -83.267, 22.983 ], [ -82.51, 23.079 ], [ -82.268, 23.189 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Cyprus", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "620187", "area_hec": "620187" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.974, 35.059 ], [ 34.005, 34.978 ], [ 32.98, 34.572 ], [ 32.49, 34.702 ], [ 32.257, 35.103 ], [ 32.732, 35.14 ], [ 32.92, 35.088 ], [ 33.191, 35.173 ], [ 33.384, 35.163 ], [ 33.456, 35.101 ], [ 33.476, 35.0 ], [ 33.526, 35.039 ], [ 33.675, 35.018 ], [ 33.866, 35.094 ], [ 33.974, 35.059 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Czech Republic", "name_alt": null, "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "8120641", "area_hec": "8120641" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.96, 48.597 ], [ 16.499, 48.786 ], [ 16.03, 48.734 ], [ 15.253, 49.039 ], [ 14.901, 48.964 ], [ 14.339, 48.555 ], [ 13.596, 48.877 ], [ 13.031, 49.307 ], [ 12.521, 49.547 ], [ 12.415, 49.969 ], [ 12.24, 50.266 ], [ 12.967, 50.484 ], [ 13.338, 50.733 ], [ 14.056, 50.927 ], [ 14.307, 51.117 ], [ 14.571, 51.002 ], [ 15.017, 51.107 ], [ 15.491, 50.785 ], [ 16.239, 50.698 ], [ 16.176, 50.423 ], [ 16.72, 50.216 ], [ 16.869, 50.474 ], [ 17.555, 50.362 ], [ 17.649, 50.049 ], [ 18.393, 49.989 ], [ 18.853, 49.496 ], [ 18.555, 49.495 ], [ 18.4, 49.315 ], [ 18.171, 49.272 ], [ 18.105, 49.044 ], [ 17.913, 48.996 ], [ 17.887, 48.904 ], [ 17.545, 48.8 ], [ 17.102, 48.817 ], [ 16.96, 48.597 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "note_adm0": null, "note_brk": null, "name_sort": "Côte d'Ivoire", "name_alt": null, "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850.000000, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "32980050", "area_hec": "32980050" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.856, 4.995 ], [ -3.311, 4.984 ], [ -4.009, 5.18 ], [ -4.65, 5.168 ], [ -5.835, 4.994 ], [ -6.529, 4.705 ], [ -7.519, 4.338 ], [ -7.712, 4.365 ], [ -7.635, 5.188 ], [ -7.54, 5.313 ], [ -7.57, 5.707 ], [ -7.994, 6.126 ], [ -8.311, 6.193 ], [ -8.603, 6.468 ], [ -8.386, 6.912 ], [ -8.485, 7.395 ], [ -8.439, 7.686 ], [ -8.281, 7.687 ], [ -8.222, 8.123 ], [ -8.299, 8.316 ], [ -8.204, 8.456 ], [ -7.832, 8.576 ], [ -8.079, 9.376 ], [ -8.31, 9.79 ], [ -8.229, 10.129 ], [ -8.03, 10.207 ], [ -7.9, 10.297 ], [ -7.623, 10.147 ], [ -6.851, 10.139 ], [ -6.667, 10.431 ], [ -6.494, 10.411 ], [ -6.205, 10.524 ], [ -6.051, 10.096 ], [ -5.817, 10.223 ], [ -5.404, 10.371 ], [ -4.955, 10.153 ], [ -4.78, 9.822 ], [ -4.33, 9.611 ], [ -3.98, 9.862 ], [ -3.512, 9.9 ], [ -2.828, 9.643 ], [ -2.562, 8.22 ], [ -2.984, 7.38 ], [ -3.244, 6.25 ], [ -2.811, 5.389 ], [ -2.856, 4.995 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Congo, Dem. Rep.", "name_alt": null, "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640.000000, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "232303423", "area_hec": "232303423" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.834, 3.509 ], [ 30.773, 2.34 ], [ 31.174, 2.204 ], [ 30.853, 1.849 ], [ 30.468, 1.584 ], [ 30.086, 1.062 ], [ 29.876, 0.597 ], [ 29.82, -0.205 ], [ 29.588, -0.587 ], [ 29.579, -1.341 ], [ 29.292, -1.62 ], [ 29.255, -2.215 ], [ 29.117, -2.292 ], [ 29.025, -2.839 ], [ 29.276, -3.294 ], [ 29.34, -4.5 ], [ 29.52, -5.42 ], [ 29.42, -5.94 ], [ 29.62, -6.52 ], [ 30.2, -7.08 ], [ 30.74, -8.34 ], [ 30.346, -8.238 ], [ 29.003, -8.407 ], [ 28.735, -8.527 ], [ 28.45, -9.165 ], [ 28.674, -9.606 ], [ 28.496, -10.79 ], [ 28.372, -11.794 ], [ 28.642, -11.972 ], [ 29.341, -12.361 ], [ 29.616, -12.179 ], [ 29.7, -13.257 ], [ 28.934, -13.249 ], [ 28.524, -12.699 ], [ 28.155, -12.273 ], [ 27.389, -12.133 ], [ 27.164, -11.609 ], [ 26.553, -11.924 ], [ 25.752, -11.785 ], [ 25.418, -11.331 ], [ 24.783, -11.239 ], [ 24.314, -11.263 ], [ 24.257, -10.952 ], [ 23.912, -10.927 ], [ 23.457, -10.868 ], [ 22.837, -11.018 ], [ 22.403, -10.993 ], [ 22.155, -11.085 ], [ 22.209, -9.895 ], [ 21.875, -9.524 ], [ 21.802, -8.909 ], [ 21.949, -8.306 ], [ 21.747, -7.92 ], [ 21.728, -7.291 ], [ 20.515, -7.3 ], [ 20.602, -6.939 ], [ 20.092, -6.943 ], [ 20.038, -7.116 ], [ 19.418, -7.155 ], [ 19.167, -7.738 ], [ 19.017, -7.988 ], [ 18.464, -7.847 ], [ 18.134, -7.988 ], [ 17.473, -8.069 ], [ 17.09, -7.546 ], [ 16.86, -7.222 ], [ 16.573, -6.623 ], [ 16.326, -5.878 ], [ 13.376, -5.864 ], [ 13.025, -5.984 ], [ 12.735, -5.966 ], [ 12.322, -6.1 ], [ 12.182, -5.79 ], [ 12.437, -5.684 ], [ 12.468, -5.248 ], [ 12.632, -4.991 ], [ 12.995, -4.781 ], [ 13.258, -4.883 ], [ 13.6, -4.5 ], [ 14.145, -4.51 ], [ 14.209, -4.793 ], [ 14.583, -4.97 ], [ 15.171, -4.343 ], [ 15.754, -3.855 ], [ 16.006, -3.535 ], [ 15.973, -2.712 ], [ 16.407, -1.741 ], [ 16.865, -1.226 ], [ 17.524, -0.744 ], [ 17.639, -0.425 ], [ 17.664, -0.058 ], [ 17.826, 0.289 ], [ 17.774, 0.856 ], [ 17.899, 1.742 ], [ 18.094, 2.366 ], [ 18.394, 2.9 ], [ 18.453, 3.504 ], [ 18.543, 4.202 ], [ 18.932, 4.71 ], [ 19.468, 5.032 ], [ 20.291, 4.692 ], [ 20.928, 4.323 ], [ 21.659, 4.224 ], [ 22.405, 4.029 ], [ 22.704, 4.633 ], [ 22.841, 4.71 ], [ 23.297, 4.61 ], [ 24.41, 5.109 ], [ 24.805, 4.897 ], [ 25.129, 4.927 ], [ 25.279, 5.17 ], [ 25.651, 5.256 ], [ 26.403, 5.151 ], [ 27.044, 5.128 ], [ 27.374, 5.234 ], [ 27.98, 4.408 ], [ 28.429, 4.287 ], [ 28.697, 4.455 ], [ 29.159, 4.389 ], [ 29.716, 4.601 ], [ 29.953, 4.174 ], [ 30.834, 3.509 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "brk_group": null, "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Korea, Dem. Rep.", "name_alt": null, "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "12576189", "area_hec": "12576189" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.64, 42.395 ], [ 130.78, 42.22 ], [ 130.4, 42.28 ], [ 129.966, 41.941 ], [ 129.667, 41.601 ], [ 129.705, 40.883 ], [ 129.188, 40.662 ], [ 129.01, 40.485 ], [ 128.633, 40.19 ], [ 127.967, 40.025 ], [ 127.533, 39.757 ], [ 127.502, 39.324 ], [ 127.385, 39.214 ], [ 127.783, 39.051 ], [ 128.35, 38.612 ], [ 128.206, 38.37 ], [ 127.78, 38.304 ], [ 127.073, 38.256 ], [ 126.684, 37.805 ], [ 126.237, 37.84 ], [ 126.175, 37.75 ], [ 125.689, 37.94 ], [ 125.568, 37.752 ], [ 125.275, 37.669 ], [ 125.24, 37.857 ], [ 124.981, 37.949 ], [ 124.712, 38.108 ], [ 124.986, 38.548 ], [ 125.222, 38.666 ], [ 125.133, 38.849 ], [ 125.387, 39.388 ], [ 125.321, 39.551 ], [ 124.737, 39.66 ], [ 124.266, 39.928 ], [ 125.08, 40.57 ], [ 126.182, 41.107 ], [ 126.869, 41.817 ], [ 127.344, 41.503 ], [ 128.208, 41.467 ], [ 128.052, 41.994 ], [ 129.597, 42.425 ], [ 129.994, 42.985 ], [ 130.64, 42.395 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Denmark", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "964670", "area_hec": "964670" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.69, 55.61 ], [ 12.09, 54.8 ], [ 11.043, 55.365 ], [ 10.904, 55.78 ], [ 12.371, 56.111 ], [ 12.69, 55.61 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Denmark", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "3311302", "area_hec": "3311302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.912, 56.459 ], [ 10.668, 56.081 ], [ 10.37, 56.19 ], [ 9.65, 55.47 ], [ 9.922, 54.983 ], [ 9.282, 54.831 ], [ 8.526, 54.963 ], [ 8.12, 55.518 ], [ 8.09, 56.54 ], [ 8.257, 56.81 ], [ 8.543, 57.11 ], [ 9.425, 57.172 ], [ 9.776, 57.448 ], [ 10.58, 57.73 ], [ 10.546, 57.216 ], [ 10.25, 56.89 ], [ 10.37, 56.61 ], [ 10.912, 56.459 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Djibouti", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2187814", "area_hec": "2187814" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.081, 12.7 ], [ 43.318, 12.39 ], [ 43.286, 11.975 ], [ 42.716, 11.736 ], [ 43.145, 11.462 ], [ 42.777, 10.927 ], [ 42.555, 11.105 ], [ 42.314, 11.034 ], [ 41.756, 11.051 ], [ 41.74, 11.355 ], [ 41.662, 11.631 ], [ 42.0, 12.1 ], [ 42.352, 12.542 ], [ 42.78, 12.455 ], [ 43.081, 12.7 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Dominican Republic", "name_alt": null, "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "4816948", "area_hec": "4816948" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.712, 19.715 ], [ -71.587, 19.885 ], [ -70.807, 19.88 ], [ -70.214, 19.623 ], [ -69.951, 19.648 ], [ -69.769, 19.293 ], [ -69.222, 19.313 ], [ -69.254, 19.015 ], [ -68.809, 18.979 ], [ -68.318, 18.612 ], [ -68.689, 18.205 ], [ -69.165, 18.423 ], [ -69.624, 18.381 ], [ -69.953, 18.428 ], [ -70.133, 18.246 ], [ -70.517, 18.184 ], [ -70.669, 18.427 ], [ -71.0, 18.283 ], [ -71.4, 17.599 ], [ -71.658, 17.758 ], [ -71.708, 18.045 ], [ -71.688, 18.317 ], [ -71.945, 18.617 ], [ -71.701, 18.785 ], [ -71.625, 19.17 ], [ -71.712, 19.715 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ecuador", "name_alt": null, "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "25074382", "area_hec": "25074382" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.303, -3.405 ], [ -79.77, -2.658 ], [ -79.987, -2.221 ], [ -80.369, -2.685 ], [ -80.968, -2.247 ], [ -80.765, -1.965 ], [ -80.934, -1.058 ], [ -80.583, -0.907 ], [ -80.399, -0.284 ], [ -80.021, 0.36 ], [ -80.091, 0.768 ], [ -79.543, 0.983 ], [ -78.855, 1.381 ], [ -77.855, 0.81 ], [ -77.669, 0.826 ], [ -77.425, 0.396 ], [ -76.576, 0.257 ], [ -76.292, 0.416 ], [ -75.802, 0.085 ], [ -75.373, -0.152 ], [ -75.234, -0.911 ], [ -75.545, -1.562 ], [ -76.635, -2.609 ], [ -77.838, -3.003 ], [ -78.451, -3.873 ], [ -78.64, -4.548 ], [ -79.205, -4.959 ], [ -79.625, -4.454 ], [ -80.029, -4.346 ], [ -80.442, -4.426 ], [ -80.469, -4.059 ], [ -80.184, -3.821 ], [ -80.303, -3.405 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Egypt, Arab Rep.", "name_alt": null, "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "99541403", "area_hec": "99541403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.923, 29.501 ], [ 34.642, 29.099 ], [ 34.426, 28.344 ], [ 34.154, 27.823 ], [ 33.921, 27.649 ], [ 33.588, 27.971 ], [ 33.137, 28.418 ], [ 32.423, 29.851 ], [ 32.321, 29.76 ], [ 32.735, 28.705 ], [ 33.349, 27.7 ], [ 34.105, 26.142 ], [ 34.474, 25.599 ], [ 34.795, 25.034 ], [ 35.692, 23.927 ], [ 35.494, 23.752 ], [ 35.526, 23.102 ], [ 36.691, 22.205 ], [ 36.866, 22.0 ], [ 32.9, 22.0 ], [ 29.02, 22.0 ], [ 25.0, 22.0 ], [ 25.0, 25.683 ], [ 25.0, 29.239 ], [ 24.7, 30.044 ], [ 24.958, 30.662 ], [ 24.803, 31.089 ], [ 25.165, 31.569 ], [ 26.495, 31.586 ], [ 27.458, 31.321 ], [ 28.451, 31.026 ], [ 28.913, 30.87 ], [ 29.683, 31.187 ], [ 30.095, 31.473 ], [ 30.977, 31.556 ], [ 31.688, 31.43 ], [ 31.96, 30.934 ], [ 32.193, 31.26 ], [ 32.994, 31.024 ], [ 33.773, 30.968 ], [ 34.265, 31.219 ], [ 34.923, 29.501 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "brk_group": null, "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "El Salvador", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "2088569", "area_hec": "2088569" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.793, 13.384 ], [ -87.904, 13.149 ], [ -88.483, 13.164 ], [ -88.843, 13.26 ], [ -89.257, 13.459 ], [ -89.812, 13.521 ], [ -90.096, 13.735 ], [ -90.065, 13.882 ], [ -89.722, 14.134 ], [ -89.534, 14.245 ], [ -89.587, 14.363 ], [ -89.353, 14.424 ], [ -89.058, 14.34 ], [ -88.843, 14.14 ], [ -88.541, 13.98 ], [ -88.504, 13.845 ], [ -88.065, 13.965 ], [ -87.859, 13.893 ], [ -87.724, 13.785 ], [ -87.793, 13.384 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 1, "geounit": "England", "gu_a3": "ENG", "su_dif": 0, "subunit": "England", "su_a3": "ENG", "brk_diff": 0, "name": "England", "name_long": "England", "brk_a3": "ENG", "brk_name": "England", "brk_group": null, "abbrev": "Eng.", "postal": "EN", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "England", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 53013000, "gdp_md_est": 1696816.000000, "pop_year": 2011, "lastcensus": -99, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "GB", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "-99", "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": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "13721074", "area_hec": "13721074" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.423, 51.427 ], [ -3.391, 51.43 ], [ -2.668, 51.614 ], [ -2.674, 51.83 ], [ -3.105, 52.031 ], [ -3.067, 52.769 ], [ -2.724, 52.935 ], [ -3.094, 53.404 ], [ -3.092, 53.404 ], [ -2.945, 53.985 ], [ -3.615, 54.601 ], [ -3.23, 54.936 ], [ -2.264, 55.436 ], [ -2.229, 55.669 ], [ -2.006, 55.805 ], [ -1.115, 54.625 ], [ -0.43, 54.464 ], [ 0.185, 53.325 ], [ 0.47, 52.93 ], [ 1.681, 52.739 ], [ 1.56, 52.1 ], [ 1.051, 51.807 ], [ 1.45, 51.289 ], [ 0.55, 50.766 ], [ -0.787, 50.775 ], [ -2.49, 50.5 ], [ -2.956, 50.697 ], [ -3.617, 50.228 ], [ -4.543, 50.342 ], [ -5.245, 49.96 ], [ -5.777, 50.16 ], [ -4.31, 51.21 ], [ -3.415, 51.426 ], [ -3.423, 51.427 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Equatorial Guinea", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060.000000, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2714063", "area_hec": "2714063" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.493, 1.01 ], [ 9.306, 1.161 ], [ 9.649, 2.284 ], [ 11.276, 2.261 ], [ 11.285, 1.058 ], [ 9.83, 1.068 ], [ 9.493, 1.01 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Eritrea", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945.000000, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "11934496", "area_hec": "11934496" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352, 12.542 ], [ 42.01, 12.866 ], [ 41.599, 13.452 ], [ 41.155, 13.773 ], [ 40.897, 14.119 ], [ 40.026, 14.52 ], [ 39.341, 14.531 ], [ 39.099, 14.741 ], [ 38.513, 14.505 ], [ 37.906, 14.959 ], [ 37.594, 14.213 ], [ 36.429, 14.422 ], [ 36.323, 14.822 ], [ 36.754, 16.292 ], [ 36.852, 16.956 ], [ 37.167, 17.263 ], [ 37.904, 17.427 ], [ 38.41, 17.998 ], [ 38.991, 16.841 ], [ 39.266, 15.923 ], [ 39.814, 15.436 ], [ 41.179, 14.491 ], [ 41.735, 13.921 ], [ 42.277, 13.344 ], [ 42.59, 13.0 ], [ 43.081, 12.7 ], [ 42.78, 12.455 ], [ 42.352, 12.542 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Estonia", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410.000000, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "4467635", "area_hec": "4467635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.313, 57.793 ], [ 24.429, 58.383 ], [ 24.061, 58.257 ], [ 23.427, 58.613 ], [ 23.34, 59.187 ], [ 24.604, 59.466 ], [ 25.864, 59.611 ], [ 26.949, 59.446 ], [ 27.981, 59.475 ], [ 28.132, 59.301 ], [ 27.42, 58.725 ], [ 27.717, 57.792 ], [ 27.288, 57.474 ], [ 26.463, 57.476 ], [ 25.603, 57.847 ], [ 25.165, 57.97 ], [ 24.313, 57.793 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ethiopia", "name_alt": null, "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "113176436", "area_hec": "113176436" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.906, 14.959 ], [ 38.513, 14.505 ], [ 39.099, 14.741 ], [ 39.341, 14.531 ], [ 40.026, 14.52 ], [ 40.897, 14.119 ], [ 41.155, 13.773 ], [ 41.599, 13.452 ], [ 42.01, 12.866 ], [ 42.352, 12.542 ], [ 42.0, 12.1 ], [ 41.662, 11.631 ], [ 41.74, 11.355 ], [ 41.756, 11.051 ], [ 42.314, 11.034 ], [ 42.555, 11.105 ], [ 42.777, 10.927 ], [ 42.559, 10.573 ], [ 42.928, 10.022 ], [ 43.297, 9.54 ], [ 43.679, 9.184 ], [ 46.948, 7.997 ], [ 47.789, 8.003 ], [ 44.964, 5.002 ], [ 43.661, 4.958 ], [ 42.77, 4.253 ], [ 42.129, 4.234 ], [ 41.855, 3.919 ], [ 41.172, 3.919 ], [ 40.769, 4.257 ], [ 39.855, 3.839 ], [ 39.559, 3.422 ], [ 38.892, 3.501 ], [ 38.671, 3.616 ], [ 38.437, 3.588 ], [ 38.121, 3.599 ], [ 36.855, 4.448 ], [ 36.159, 4.448 ], [ 35.817, 4.777 ], [ 35.817, 5.338 ], [ 35.298, 5.506 ], [ 34.707, 6.594 ], [ 34.25, 6.826 ], [ 34.075, 7.226 ], [ 33.568, 7.713 ], [ 32.954, 7.785 ], [ 33.295, 8.355 ], [ 33.825, 8.379 ], [ 33.975, 8.685 ], [ 33.962, 9.584 ], [ 34.258, 10.63 ], [ 34.731, 10.91 ], [ 34.832, 11.319 ], [ 35.261, 12.083 ], [ 35.864, 12.578 ], [ 36.27, 13.563 ], [ 36.429, 14.422 ], [ 37.594, 14.213 ], [ 37.906, 14.959 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "formal_fr": null, "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.100000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1637169", "area_hec": "1637169" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.2, -51.85 ], [ -60.0, -51.25 ], [ -59.15, -51.5 ], [ -58.55, -51.1 ], [ -57.75, -51.55 ], [ -58.05, -51.9 ], [ -59.4, -52.2 ], [ -59.85, -51.85 ], [ -60.7, -52.3 ], [ -61.2, -51.85 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Fiji", "name_alt": null, "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "690114", "area_hec": "690114" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.364, -16.801 ], [ 178.725, -17.012 ], [ 178.597, -16.639 ], [ 179.097, -16.434 ], [ 179.413, -16.379 ], [ 180.0, -16.067 ], [ 180.0, -16.555 ], [ 179.364, -16.801 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Fiji", "name_alt": null, "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1147619", "area_hec": "1147619" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.374, -17.34 ], [ 178.718, -17.628 ], [ 178.553, -18.151 ], [ 177.933, -18.288 ], [ 177.381, -18.164 ], [ 177.285, -17.725 ], [ 177.671, -17.381 ], [ 178.126, -17.505 ], [ 178.374, -17.34 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Finland", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "34123290", "area_hec": "34123290" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.592, 69.065 ], [ 28.446, 68.365 ], [ 29.977, 67.698 ], [ 29.055, 66.944 ], [ 30.218, 65.806 ], [ 29.544, 64.949 ], [ 30.445, 64.204 ], [ 30.036, 63.553 ], [ 31.516, 62.868 ], [ 31.14, 62.358 ], [ 30.211, 61.78 ], [ 28.07, 60.504 ], [ 26.255, 60.424 ], [ 24.497, 60.057 ], [ 22.87, 59.846 ], [ 22.291, 60.392 ], [ 21.322, 60.72 ], [ 21.545, 61.705 ], [ 21.059, 62.607 ], [ 21.536, 63.19 ], [ 22.443, 63.818 ], [ 24.73, 64.902 ], [ 25.398, 65.111 ], [ 25.294, 65.534 ], [ 23.903, 66.007 ], [ 23.566, 66.396 ], [ 23.54, 67.936 ], [ 21.979, 68.617 ], [ 20.646, 69.106 ], [ 21.245, 69.37 ], [ 22.356, 68.842 ], [ 23.662, 68.891 ], [ 24.736, 68.65 ], [ 25.689, 69.092 ], [ 26.18, 69.825 ], [ 27.732, 70.164 ], [ 29.016, 69.766 ], [ 28.592, 69.065 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "formal_fr": null, "note_adm0": "Fr.", "note_brk": null, "name_sort": "French Southern and Antarctic Lands", "name_alt": null, "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1156153", "area_hec": "1156153" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.935, -48.625 ], [ 69.58, -48.94 ], [ 70.525, -49.065 ], [ 70.56, -49.255 ], [ 70.28, -49.71 ], [ 68.745, -49.775 ], [ 68.72, -49.242 ], [ 68.868, -48.83 ], [ 68.935, -48.625 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 10, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "France", "adm0_a3": "FRA", "geou_dif": 1, "geounit": "France", "gu_a3": "FXX", "su_dif": 0, "subunit": "France", "su_a3": "FXX", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FXX", "brk_name": "France", "brk_group": null, "abbrev": "Fr.", "postal": "FR", "formal_en": "Metropolitan France", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "France, Metropolitan", "name_alt": null, "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 61037510, "gdp_md_est": 2230721.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "FR", "iso_a3": "-99", "iso_n3": "249", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "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, "area_jk": "960255", "area_hec": "960255" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.56, 42.153 ], [ 9.23, 41.38 ], [ 8.776, 41.584 ], [ 8.544, 42.257 ], [ 8.746, 42.628 ], [ 9.39, 43.01 ], [ 9.56, 42.153 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 10, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "France", "adm0_a3": "FRA", "geou_dif": 1, "geounit": "France", "gu_a3": "FXX", "su_dif": 0, "subunit": "France", "su_a3": "FXX", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FXX", "brk_name": "France", "brk_group": null, "abbrev": "Fr.", "postal": "FR", "formal_en": "Metropolitan France", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "France, Metropolitan", "name_alt": null, "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 61037510, "gdp_md_est": 2230721.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "FR", "iso_a3": "-99", "iso_n3": "249", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "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, "area_jk": "54995829", "area_hec": "54995829" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.588, 50.379 ], [ 4.286, 49.907 ], [ 4.799, 49.985 ], [ 5.674, 49.529 ], [ 5.898, 49.443 ], [ 6.186, 49.464 ], [ 6.658, 49.202 ], [ 8.099, 49.018 ], [ 7.594, 48.333 ], [ 7.467, 47.621 ], [ 7.192, 47.45 ], [ 6.737, 47.542 ], [ 6.769, 47.288 ], [ 6.037, 46.726 ], [ 6.023, 46.273 ], [ 6.5, 46.43 ], [ 6.844, 45.991 ], [ 6.802, 45.709 ], [ 7.097, 45.333 ], [ 6.75, 45.029 ], [ 7.008, 44.255 ], [ 7.55, 44.128 ], [ 7.435, 43.694 ], [ 6.529, 43.129 ], [ 4.557, 43.4 ], [ 3.1, 43.075 ], [ 2.986, 42.473 ], [ 1.827, 42.343 ], [ 0.702, 42.796 ], [ 0.338, 42.58 ], [ -1.503, 43.034 ], [ -1.901, 43.423 ], [ -1.384, 44.023 ], [ -1.194, 46.015 ], [ -2.226, 47.064 ], [ -2.963, 47.57 ], [ -4.492, 47.955 ], [ -4.592, 48.684 ], [ -3.296, 48.902 ], [ -1.617, 48.644 ], [ -1.933, 49.776 ], [ -0.99, 49.347 ], [ 1.339, 50.127 ], [ 1.639, 50.947 ], [ 2.514, 51.148 ], [ 2.658, 50.797 ], [ 3.123, 50.78 ], [ 3.588, 50.379 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "France", "adm0_a3": "FRA", "geou_dif": 1, "geounit": "French Guiana", "gu_a3": "GUF", "su_dif": 0, "subunit": "French Guiana", "su_a3": "GUF", "brk_diff": 0, "name": "French Guiana", "name_long": "French Guiana", "brk_a3": "GUF", "brk_name": "French Guiana", "brk_group": null, "abbrev": "Fr. G.", "postal": "GF", "formal_en": "Department of Guiana", "formal_fr": null, "note_adm0": "Fr.", "note_brk": null, "name_sort": "French Guiana", "name_alt": null, "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 199509, "gdp_md_est": 1551.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "GF", "iso_a3": "GUF", "iso_n3": "254", "un_a3": "254", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "GUF", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99, "area_jk": "8536317", "area_hec": "8536317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.958, 5.756 ], [ -53.618, 5.646 ], [ -52.882, 5.41 ], [ -51.823, 4.566 ], [ -51.658, 4.156 ], [ -52.249, 3.241 ], [ -52.556, 2.505 ], [ -52.94, 2.125 ], [ -53.419, 2.053 ], [ -53.555, 2.335 ], [ -53.779, 2.377 ], [ -54.088, 2.106 ], [ -54.525, 2.312 ], [ -54.271, 2.739 ], [ -54.184, 3.194 ], [ -54.011, 3.623 ], [ -54.4, 4.213 ], [ -54.479, 4.897 ], [ -53.958, 5.756 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Gabon", "name_alt": null, "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110.000000, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "26944851", "area_hec": "26944851" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.094, -3.979 ], [ 10.066, -2.97 ], [ 9.405, -2.144 ], [ 8.798, -1.111 ], [ 8.83, -0.779 ], [ 9.048, -0.459 ], [ 9.291, 0.269 ], [ 9.493, 1.01 ], [ 9.83, 1.068 ], [ 11.285, 1.058 ], [ 11.276, 2.261 ], [ 11.752, 2.327 ], [ 12.359, 2.193 ], [ 12.951, 2.322 ], [ 13.076, 2.267 ], [ 13.003, 1.831 ], [ 13.283, 1.314 ], [ 14.027, 1.396 ], [ 14.276, 1.197 ], [ 13.843, 0.039 ], [ 14.316, -0.553 ], [ 14.425, -1.333 ], [ 14.299, -1.998 ], [ 13.992, -2.471 ], [ 13.11, -2.429 ], [ 12.575, -1.948 ], [ 12.496, -2.392 ], [ 11.821, -2.514 ], [ 11.478, -2.766 ], [ 11.855, -3.427 ], [ 11.094, -3.979 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Gambia, The", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272.000000, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1403544", "area_hec": "1403544" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.841, 13.151 ], [ -16.714, 13.595 ], [ -15.625, 13.624 ], [ -15.399, 13.86 ], [ -15.082, 13.877 ], [ -14.687, 13.63 ], [ -14.377, 13.626 ], [ -14.047, 13.794 ], [ -13.845, 13.505 ], [ -14.278, 13.281 ], [ -14.712, 13.298 ], [ -15.141, 13.509 ], [ -15.512, 13.279 ], [ -15.691, 13.27 ], [ -15.931, 13.13 ], [ -16.841, 13.151 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Georgia", "name_alt": null, "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "6904757", "area_hec": "6904757" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.554, 41.536 ], [ 41.703, 41.963 ], [ 41.453, 42.645 ], [ 40.876, 43.014 ], [ 40.321, 43.129 ], [ 39.955, 43.435 ], [ 40.077, 43.553 ], [ 40.922, 43.382 ], [ 42.394, 43.22 ], [ 43.756, 42.741 ], [ 43.931, 42.555 ], [ 44.538, 42.712 ], [ 45.47, 42.503 ], [ 45.776, 42.092 ], [ 46.405, 41.861 ], [ 46.145, 41.723 ], [ 46.638, 41.182 ], [ 46.502, 41.064 ], [ 45.963, 41.124 ], [ 45.217, 41.411 ], [ 44.972, 41.248 ], [ 43.583, 41.092 ], [ 42.62, 41.583 ], [ 41.554, 41.536 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Germany", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "35742330", "area_hec": "35742330" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.922, 54.983 ], [ 9.94, 54.597 ], [ 10.95, 54.364 ], [ 10.94, 54.009 ], [ 11.956, 54.197 ], [ 12.518, 54.47 ], [ 13.648, 54.075 ], [ 14.12, 53.757 ], [ 14.353, 53.248 ], [ 14.075, 52.981 ], [ 14.438, 52.625 ], [ 14.685, 52.09 ], [ 14.607, 51.745 ], [ 15.017, 51.107 ], [ 14.571, 51.002 ], [ 14.307, 51.117 ], [ 14.056, 50.927 ], [ 13.338, 50.733 ], [ 12.967, 50.484 ], [ 12.24, 50.266 ], [ 12.415, 49.969 ], [ 12.521, 49.547 ], [ 13.031, 49.307 ], [ 13.596, 48.877 ], [ 13.243, 48.416 ], [ 12.884, 48.289 ], [ 13.026, 47.638 ], [ 12.933, 47.468 ], [ 12.621, 47.672 ], [ 12.141, 47.703 ], [ 11.426, 47.524 ], [ 10.544, 47.566 ], [ 10.402, 47.303 ], [ 9.896, 47.58 ], [ 9.594, 47.525 ], [ 8.523, 47.831 ], [ 8.317, 47.614 ], [ 7.467, 47.621 ], [ 7.594, 48.333 ], [ 8.099, 49.018 ], [ 6.658, 49.202 ], [ 6.186, 49.464 ], [ 6.243, 49.902 ], [ 6.043, 50.128 ], [ 6.157, 50.804 ], [ 5.989, 51.852 ], [ 6.589, 51.852 ], [ 6.843, 52.228 ], [ 7.092, 53.144 ], [ 6.905, 53.482 ], [ 7.1, 53.694 ], [ 7.936, 53.748 ], [ 8.122, 53.528 ], [ 8.801, 54.021 ], [ 8.572, 54.396 ], [ 8.526, 54.963 ], [ 9.282, 54.831 ], [ 9.922, 54.983 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ghana", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "24344527", "area_hec": "24344527" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.06, 5.929 ], [ -0.508, 5.343 ], [ -1.064, 5.0 ], [ -1.965, 4.71 ], [ -2.856, 4.995 ], [ -2.811, 5.389 ], [ -3.244, 6.25 ], [ -2.984, 7.38 ], [ -2.562, 8.22 ], [ -2.828, 9.643 ], [ -2.964, 10.395 ], [ -2.94, 10.963 ], [ -1.203, 11.01 ], [ -0.762, 10.937 ], [ -0.439, 11.098 ], [ 0.024, 11.019 ], [ -0.05, 10.707 ], [ 0.368, 10.191 ], [ 0.366, 9.465 ], [ 0.461, 8.677 ], [ 0.712, 8.312 ], [ 0.491, 7.412 ], [ 0.57, 6.914 ], [ 0.837, 6.28 ], [ 1.06, 5.929 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Greece", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "925441", "area_hec": "925441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.7, 35.705 ], [ 24.247, 35.368 ], [ 25.025, 35.425 ], [ 25.769, 35.354 ], [ 25.745, 35.18 ], [ 26.29, 35.3 ], [ 26.165, 35.005 ], [ 24.725, 34.92 ], [ 24.735, 35.085 ], [ 23.515, 35.28 ], [ 23.7, 35.705 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Greece", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "12269844", "area_hec": "12269844" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.604, 41.562 ], [ 26.295, 40.936 ], [ 26.057, 40.824 ], [ 25.448, 40.852 ], [ 24.926, 40.947 ], [ 23.715, 40.687 ], [ 24.408, 40.125 ], [ 23.9, 39.962 ], [ 23.343, 39.961 ], [ 22.814, 40.476 ], [ 22.626, 40.257 ], [ 22.85, 39.659 ], [ 23.35, 39.19 ], [ 22.973, 38.971 ], [ 23.53, 38.51 ], [ 24.025, 38.22 ], [ 24.04, 37.655 ], [ 23.115, 37.92 ], [ 23.41, 37.41 ], [ 22.775, 37.305 ], [ 23.154, 36.422 ], [ 22.49, 36.41 ], [ 21.67, 36.845 ], [ 21.295, 37.645 ], [ 21.12, 38.31 ], [ 20.73, 38.77 ], [ 20.218, 39.34 ], [ 20.15, 39.625 ], [ 20.615, 40.11 ], [ 20.675, 40.435 ], [ 21.0, 40.58 ], [ 21.02, 40.843 ], [ 21.674, 40.931 ], [ 22.055, 41.15 ], [ 22.597, 41.13 ], [ 22.762, 41.305 ], [ 22.952, 41.338 ], [ 23.692, 41.309 ], [ 24.493, 41.584 ], [ 25.197, 41.234 ], [ 26.106, 41.329 ], [ 26.117, 41.827 ], [ 26.604, 41.562 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "formal_fr": null, "note_adm0": "Den.", "note_brk": null, "name_sort": "Greenland", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "220658734", "area_hec": "220658734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.764, 82.628 ], [ -43.406, 83.225 ], [ -39.898, 83.18 ], [ -38.622, 83.549 ], [ -35.088, 83.645 ], [ -27.101, 83.52 ], [ -20.845, 82.727 ], [ -22.692, 82.342 ], [ -26.517, 82.298 ], [ -31.9, 82.2 ], [ -31.396, 82.022 ], [ -27.857, 82.132 ], [ -24.845, 81.787 ], [ -22.903, 82.093 ], [ -22.072, 81.734 ], [ -23.17, 81.153 ], [ -20.624, 81.525 ], [ -15.768, 81.912 ], [ -12.77, 81.719 ], [ -12.209, 81.291 ], [ -16.285, 80.58 ], [ -16.85, 80.35 ], [ -20.046, 80.177 ], [ -17.73, 80.129 ], [ -18.9, 79.4 ], [ -19.705, 78.751 ], [ -19.674, 77.639 ], [ -18.473, 76.986 ], [ -20.035, 76.944 ], [ -21.679, 76.628 ], [ -19.834, 76.098 ], [ -19.599, 75.248 ], [ -20.668, 75.156 ], [ -19.373, 74.296 ], [ -21.594, 74.224 ], [ -20.434, 73.817 ], [ -20.762, 73.464 ], [ -22.172, 73.31 ], [ -23.566, 73.307 ], [ -22.313, 72.629 ], [ -22.299, 72.184 ], [ -24.278, 72.598 ], [ -24.793, 72.33 ], [ -23.443, 72.08 ], [ -22.133, 71.469 ], [ -21.754, 70.664 ], [ -23.536, 70.471 ], [ -24.307, 70.856 ], [ -25.543, 71.431 ], [ -25.201, 70.752 ], [ -26.363, 70.227 ], [ -23.727, 70.184 ], [ -22.349, 70.129 ], [ -25.029, 69.259 ], [ -27.747, 68.471 ], [ -30.674, 68.125 ], [ -31.777, 68.121 ], [ -32.811, 67.736 ], [ -34.202, 66.68 ], [ -36.353, 65.979 ], [ -37.044, 65.938 ], [ -38.375, 65.692 ], [ -39.812, 65.459 ], [ -40.669, 64.84 ], [ -40.683, 64.139 ], [ -41.189, 63.483 ], [ -42.819, 62.682 ], [ -42.417, 61.901 ], [ -42.866, 61.074 ], [ -43.378, 60.098 ], [ -44.788, 60.037 ], [ -46.264, 60.853 ], [ -48.263, 60.858 ], [ -49.233, 61.407 ], [ -49.9, 62.383 ], [ -51.633, 63.627 ], [ -52.14, 64.278 ], [ -52.277, 65.177 ], [ -53.662, 66.1 ], [ -53.302, 66.837 ], [ -53.969, 67.189 ], [ -52.98, 68.358 ], [ -51.475, 68.73 ], [ -51.08, 69.148 ], [ -50.871, 69.929 ], [ -52.014, 69.575 ], [ -52.558, 69.426 ], [ -53.456, 69.284 ], [ -54.683, 69.61 ], [ -54.75, 70.289 ], [ -54.359, 70.821 ], [ -53.431, 70.836 ], [ -51.39, 70.57 ], [ -53.109, 71.205 ], [ -54.004, 71.547 ], [ -55.0, 71.406 ], [ -55.835, 71.654 ], [ -54.718, 72.586 ], [ -55.326, 72.959 ], [ -56.12, 73.65 ], [ -57.324, 74.71 ], [ -58.597, 75.099 ], [ -58.585, 75.517 ], [ -61.269, 76.102 ], [ -63.392, 76.175 ], [ -66.064, 76.135 ], [ -68.504, 76.061 ], [ -69.665, 76.38 ], [ -71.403, 77.009 ], [ -68.777, 77.323 ], [ -66.764, 77.376 ], [ -71.043, 77.636 ], [ -73.297, 78.044 ], [ -73.159, 78.433 ], [ -69.374, 78.914 ], [ -65.711, 79.394 ], [ -65.324, 79.758 ], [ -68.023, 80.117 ], [ -67.151, 80.516 ], [ -63.689, 81.214 ], [ -62.234, 81.321 ], [ -62.651, 81.77 ], [ -60.282, 82.034 ], [ -57.207, 82.191 ], [ -54.134, 82.2 ], [ -53.043, 81.888 ], [ -50.391, 82.439 ], [ -48.004, 82.065 ], [ -46.6, 81.986 ], [ -44.523, 81.661 ], [ -46.901, 82.2 ], [ -46.764, 82.628 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guatemala", "name_alt": null, "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "10952677", "area_hec": "10952677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.096, 13.735 ], [ -90.609, 13.91 ], [ -91.232, 13.928 ], [ -91.69, 14.126 ], [ -92.228, 14.539 ], [ -92.203, 14.83 ], [ -92.087, 15.065 ], [ -92.229, 15.251 ], [ -91.748, 16.067 ], [ -90.465, 16.07 ], [ -90.439, 16.41 ], [ -90.601, 16.471 ], [ -90.712, 16.688 ], [ -91.082, 16.919 ], [ -91.454, 17.252 ], [ -91.002, 17.255 ], [ -91.001, 17.818 ], [ -90.068, 17.819 ], [ -89.143, 17.808 ], [ -89.151, 17.016 ], [ -89.229, 15.887 ], [ -88.931, 15.887 ], [ -88.605, 15.706 ], [ -88.518, 15.855 ], [ -88.225, 15.728 ], [ -88.681, 15.346 ], [ -89.155, 15.066 ], [ -89.225, 14.874 ], [ -89.145, 14.678 ], [ -89.353, 14.424 ], [ -89.587, 14.363 ], [ -89.534, 14.245 ], [ -89.722, 14.134 ], [ -90.065, 13.882 ], [ -90.096, 13.735 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guinea", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600.000000, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "23956208", "area_hec": "23956208" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.439, 7.686 ], [ -8.722, 7.712 ], [ -8.926, 7.309 ], [ -9.209, 7.314 ], [ -9.403, 7.527 ], [ -9.337, 7.928 ], [ -9.755, 8.541 ], [ -10.017, 8.428 ], [ -10.23, 8.406 ], [ -10.505, 8.349 ], [ -10.494, 8.716 ], [ -10.655, 8.977 ], [ -10.622, 9.268 ], [ -10.839, 9.688 ], [ -11.117, 10.046 ], [ -11.917, 10.047 ], [ -12.15, 9.859 ], [ -12.426, 9.836 ], [ -12.597, 9.62 ], [ -12.712, 9.343 ], [ -13.247, 8.903 ], [ -13.685, 9.495 ], [ -14.074, 9.886 ], [ -14.33, 10.016 ], [ -14.58, 10.214 ], [ -14.693, 10.656 ], [ -14.84, 10.877 ], [ -15.13, 11.04 ], [ -14.686, 11.528 ], [ -14.382, 11.509 ], [ -14.121, 11.677 ], [ -13.901, 11.679 ], [ -13.743, 11.811 ], [ -13.828, 12.143 ], [ -13.719, 12.247 ], [ -13.7, 12.586 ], [ -13.218, 12.576 ], [ -12.499, 12.332 ], [ -12.279, 12.354 ], [ -12.204, 12.466 ], [ -11.658, 12.387 ], [ -11.514, 12.443 ], [ -11.456, 12.077 ], [ -11.298, 12.078 ], [ -11.037, 12.211 ], [ -10.871, 12.178 ], [ -10.593, 11.924 ], [ -10.165, 11.844 ], [ -9.891, 12.06 ], [ -9.568, 12.194 ], [ -9.328, 12.334 ], [ -9.127, 12.308 ], [ -8.905, 12.088 ], [ -8.786, 11.813 ], [ -8.376, 11.394 ], [ -8.581, 11.136 ], [ -8.62, 10.811 ], [ -8.407, 10.909 ], [ -8.282, 10.793 ], [ -8.335, 10.495 ], [ -8.03, 10.207 ], [ -8.229, 10.129 ], [ -8.31, 9.79 ], [ -8.079, 9.376 ], [ -7.832, 8.576 ], [ -8.204, 8.456 ], [ -8.299, 8.316 ], [ -8.222, 8.123 ], [ -8.281, 7.687 ], [ -8.439, 7.686 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guinea-Bissau", "name_alt": null, "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.200000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "3625074", "area_hec": "3625074" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.13, 11.04 ], [ -15.664, 11.459 ], [ -16.085, 11.525 ], [ -16.315, 11.806 ], [ -16.309, 11.959 ], [ -16.614, 12.171 ], [ -16.677, 12.385 ], [ -16.148, 12.548 ], [ -15.817, 12.516 ], [ -15.549, 12.628 ], [ -13.7, 12.586 ], [ -13.719, 12.247 ], [ -13.828, 12.143 ], [ -13.743, 11.811 ], [ -13.901, 11.679 ], [ -14.121, 11.677 ], [ -14.382, 11.509 ], [ -14.686, 11.528 ], [ -15.13, 11.04 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Guyana", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "20982910", "area_hec": "20982910" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.758, 8.367 ], [ -59.102, 7.999 ], [ -58.483, 7.348 ], [ -58.455, 6.833 ], [ -58.078, 6.809 ], [ -57.542, 6.321 ], [ -57.147, 5.973 ], [ -57.307, 5.074 ], [ -57.914, 4.813 ], [ -57.86, 4.577 ], [ -58.045, 4.061 ], [ -57.602, 3.335 ], [ -57.281, 3.333 ], [ -57.15, 2.769 ], [ -56.539, 1.899 ], [ -56.783, 1.864 ], [ -57.336, 1.948 ], [ -57.661, 1.683 ], [ -58.113, 1.507 ], [ -58.429, 1.464 ], [ -58.54, 1.268 ], [ -59.031, 1.318 ], [ -59.646, 1.787 ], [ -59.718, 2.25 ], [ -59.974, 2.755 ], [ -59.815, 3.607 ], [ -59.538, 3.959 ], [ -59.767, 4.423 ], [ -60.111, 4.575 ], [ -59.981, 5.014 ], [ -60.214, 5.245 ], [ -60.734, 5.2 ], [ -61.41, 5.959 ], [ -61.139, 6.234 ], [ -61.159, 6.696 ], [ -60.544, 6.857 ], [ -60.296, 7.044 ], [ -60.638, 7.415 ], [ -60.551, 7.78 ], [ -59.758, 8.367 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Haiti", "name_alt": null, "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500.000000, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2855201", "area_hec": "2855201" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.19, 19.916 ], [ -72.58, 19.872 ], [ -71.712, 19.715 ], [ -71.625, 19.17 ], [ -71.701, 18.785 ], [ -71.945, 18.617 ], [ -71.688, 18.317 ], [ -71.708, 18.045 ], [ -72.373, 18.215 ], [ -72.844, 18.146 ], [ -73.455, 18.218 ], [ -73.922, 18.031 ], [ -74.458, 18.343 ], [ -74.37, 18.665 ], [ -73.45, 18.526 ], [ -72.695, 18.446 ], [ -72.335, 18.668 ], [ -72.792, 19.102 ], [ -72.784, 19.484 ], [ -73.415, 19.64 ], [ -73.19, 19.916 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Honduras", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "11379469", "area_hec": "11379469" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.317, 12.985 ], [ -87.489, 13.297 ], [ -87.793, 13.384 ], [ -87.724, 13.785 ], [ -87.859, 13.893 ], [ -88.065, 13.965 ], [ -88.504, 13.845 ], [ -88.541, 13.98 ], [ -88.843, 14.14 ], [ -89.058, 14.34 ], [ -89.353, 14.424 ], [ -89.145, 14.678 ], [ -89.225, 14.874 ], [ -89.155, 15.066 ], [ -88.681, 15.346 ], [ -88.225, 15.728 ], [ -88.121, 15.689 ], [ -87.902, 15.864 ], [ -87.616, 15.879 ], [ -87.523, 15.797 ], [ -87.368, 15.847 ], [ -86.903, 15.757 ], [ -86.441, 15.783 ], [ -86.119, 15.893 ], [ -86.002, 16.005 ], [ -85.683, 15.954 ], [ -85.444, 15.886 ], [ -85.182, 15.909 ], [ -84.984, 15.996 ], [ -84.527, 15.857 ], [ -84.368, 15.835 ], [ -84.063, 15.648 ], [ -83.774, 15.424 ], [ -83.41, 15.271 ], [ -83.147, 14.996 ], [ -83.49, 15.016 ], [ -83.629, 14.88 ], [ -83.976, 14.749 ], [ -84.228, 14.749 ], [ -84.449, 14.622 ], [ -84.65, 14.667 ], [ -84.82, 14.82 ], [ -84.924, 14.79 ], [ -85.053, 14.552 ], [ -85.149, 14.56 ], [ -85.165, 14.354 ], [ -85.514, 14.079 ], [ -85.699, 13.96 ], [ -85.801, 13.836 ], [ -86.096, 14.038 ], [ -86.312, 13.771 ], [ -86.521, 13.778 ], [ -86.755, 13.755 ], [ -86.734, 13.263 ], [ -86.881, 13.254 ], [ -87.006, 13.026 ], [ -87.317, 12.985 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Hungary", "name_alt": null, "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "9247470", "area_hec": "9247470" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202, 46.852 ], [ 16.534, 47.496 ], [ 16.341, 47.713 ], [ 16.904, 47.715 ], [ 16.98, 48.123 ], [ 17.488, 47.867 ], [ 17.857, 47.758 ], [ 18.697, 47.881 ], [ 18.777, 48.082 ], [ 19.174, 48.111 ], [ 19.661, 48.267 ], [ 19.77, 48.203 ], [ 20.239, 48.328 ], [ 20.474, 48.563 ], [ 20.801, 48.624 ], [ 21.872, 48.32 ], [ 22.086, 48.422 ], [ 22.641, 48.15 ], [ 22.71, 47.882 ], [ 22.1, 47.672 ], [ 21.627, 46.994 ], [ 21.022, 46.316 ], [ 20.22, 46.127 ], [ 19.596, 46.172 ], [ 18.83, 45.909 ], [ 18.456, 45.76 ], [ 17.63, 45.952 ], [ 16.883, 46.381 ], [ 16.565, 46.504 ], [ 16.37, 46.841 ], [ 16.202, 46.852 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "brk_group": null, "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Iceland", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "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": 7, "tiny": -99, "homepart": 1, "area_jk": "10774538", "area_hec": "10774538" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.509, 66.456 ], [ -14.74, 65.809 ], [ -13.61, 65.127 ], [ -14.91, 64.364 ], [ -17.794, 63.679 ], [ -18.656, 63.496 ], [ -19.973, 63.644 ], [ -22.763, 63.96 ], [ -21.779, 64.402 ], [ -23.955, 64.891 ], [ -22.184, 65.085 ], [ -22.227, 65.379 ], [ -24.326, 65.611 ], [ -23.651, 66.263 ], [ -22.135, 66.41 ], [ -20.576, 65.732 ], [ -19.057, 66.277 ], [ -17.799, 65.994 ], [ -16.168, 66.527 ], [ -14.509, 66.456 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "India", "name_alt": null, "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "314288893", "area_hec": "314288893" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838, 35.494 ], [ 78.912, 34.322 ], [ 78.811, 33.506 ], [ 79.209, 32.994 ], [ 79.176, 32.484 ], [ 78.458, 32.618 ], [ 78.739, 31.516 ], [ 79.721, 30.883 ], [ 81.111, 30.183 ], [ 80.477, 29.73 ], [ 80.088, 28.794 ], [ 81.057, 28.416 ], [ 82.0, 27.925 ], [ 83.304, 27.364 ], [ 84.675, 27.235 ], [ 85.252, 26.726 ], [ 86.024, 26.631 ], [ 87.228, 26.398 ], [ 88.06, 26.415 ], [ 88.175, 26.81 ], [ 88.043, 27.446 ], [ 88.12, 27.877 ], [ 88.73, 28.087 ], [ 88.814, 27.299 ], [ 88.836, 27.099 ], [ 89.745, 26.719 ], [ 90.373, 26.876 ], [ 91.218, 26.809 ], [ 92.034, 26.838 ], [ 92.104, 27.453 ], [ 91.697, 27.772 ], [ 92.503, 27.897 ], [ 93.413, 28.641 ], [ 94.566, 29.277 ], [ 95.405, 29.032 ], [ 96.118, 29.453 ], [ 96.587, 28.831 ], [ 96.249, 28.411 ], [ 97.327, 28.262 ], [ 97.403, 27.883 ], [ 97.052, 27.699 ], [ 97.134, 27.084 ], [ 96.419, 27.265 ], [ 95.125, 26.574 ], [ 95.155, 26.001 ], [ 94.603, 25.163 ], [ 94.553, 24.675 ], [ 94.107, 23.851 ], [ 93.325, 24.079 ], [ 93.286, 23.044 ], [ 93.06, 22.703 ], [ 93.166, 22.279 ], [ 92.673, 22.041 ], [ 92.146, 23.628 ], [ 91.87, 23.624 ], [ 91.707, 22.985 ], [ 91.159, 23.503 ], [ 91.468, 24.073 ], [ 91.915, 24.13 ], [ 92.376, 24.977 ], [ 91.8, 25.147 ], [ 90.872, 25.133 ], [ 89.921, 25.27 ], [ 89.832, 25.965 ], [ 89.355, 26.014 ], [ 88.563, 26.447 ], [ 88.21, 25.768 ], [ 88.932, 25.239 ], [ 88.306, 24.866 ], [ 88.084, 24.502 ], [ 88.7, 24.234 ], [ 88.53, 23.631 ], [ 88.876, 22.879 ], [ 89.032, 22.056 ], [ 88.889, 21.691 ], [ 88.209, 21.703 ], [ 86.976, 21.496 ], [ 87.033, 20.743 ], [ 86.499, 20.152 ], [ 85.06, 19.479 ], [ 83.941, 18.302 ], [ 83.189, 17.671 ], [ 82.193, 17.017 ], [ 82.191, 16.557 ], [ 81.693, 16.31 ], [ 80.792, 15.952 ], [ 80.325, 15.899 ], [ 80.025, 15.136 ], [ 80.233, 13.836 ], [ 80.286, 13.006 ], [ 79.862, 12.056 ], [ 79.858, 10.357 ], [ 79.341, 10.309 ], [ 78.885, 9.546 ], [ 79.19, 9.216 ], [ 78.278, 8.933 ], [ 77.941, 8.253 ], [ 77.54, 7.965 ], [ 76.593, 8.899 ], [ 76.13, 10.3 ], [ 75.746, 11.308 ], [ 75.396, 11.781 ], [ 74.865, 12.742 ], [ 74.617, 13.993 ], [ 74.444, 14.617 ], [ 73.534, 15.991 ], [ 73.12, 17.929 ], [ 72.821, 19.208 ], [ 72.825, 20.419 ], [ 72.63, 21.356 ], [ 71.175, 20.757 ], [ 70.471, 20.877 ], [ 69.164, 22.089 ], [ 69.645, 22.451 ], [ 69.35, 22.843 ], [ 68.177, 23.692 ], [ 68.843, 24.359 ], [ 71.043, 24.357 ], [ 70.845, 25.215 ], [ 70.283, 25.722 ], [ 70.169, 26.492 ], [ 69.514, 26.941 ], [ 70.617, 27.989 ], [ 71.778, 27.913 ], [ 72.824, 28.962 ], [ 73.451, 29.976 ], [ 74.421, 30.98 ], [ 74.406, 31.693 ], [ 75.259, 32.271 ], [ 74.452, 32.765 ], [ 74.104, 33.441 ], [ 73.75, 34.318 ], [ 74.24, 34.749 ], [ 75.757, 34.505 ], [ 76.872, 34.654 ], [ 77.838, 35.494 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "629018", "area_hec": "629018" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.725, -6.214 ], [ 134.21, -6.895 ], [ 134.113, -6.143 ], [ 134.29, -5.783 ], [ 134.5, -5.445 ], [ 134.727, -5.738 ], [ 134.725, -6.214 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "697645", "area_hec": "697645" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.249, -3.459 ], [ 126.875, -3.791 ], [ 126.184, -3.607 ], [ 125.989, -3.177 ], [ 127.001, -3.129 ], [ 127.249, -3.459 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "985474", "area_hec": "985474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.716, -10.24 ], [ 120.295, -10.259 ], [ 118.968, -9.558 ], [ 119.9, -9.361 ], [ 120.426, -9.666 ], [ 120.775, -9.97 ], [ 120.716, -10.24 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1434079", "area_hec": "1434079" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.9, -8.096 ], [ 118.261, -8.362 ], [ 118.879, -8.281 ], [ 119.126, -8.706 ], [ 117.97, -8.907 ], [ 117.278, -9.041 ], [ 116.74, -9.033 ], [ 117.084, -8.457 ], [ 117.632, -8.449 ], [ 117.9, -8.096 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1553744", "area_hec": "1553744" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.436, -10.14 ], [ 123.58, -10.36 ], [ 123.46, -10.24 ], [ 123.55, -9.9 ], [ 123.98, -9.29 ], [ 124.969, -8.893 ], [ 125.07, -9.09 ], [ 125.088, -9.393 ], [ 124.436, -10.14 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1581468", "area_hec": "1581468" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.903, -8.094 ], [ 122.757, -8.65 ], [ 121.254, -8.934 ], [ 119.924, -8.81 ], [ 119.921, -8.445 ], [ 120.715, -8.237 ], [ 121.342, -8.537 ], [ 122.007, -8.461 ], [ 122.903, -8.094 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "1815474", "area_hec": "1815474" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.471, -3.094 ], [ 130.835, -3.858 ], [ 129.99, -3.446 ], [ 129.155, -3.363 ], [ 128.591, -3.429 ], [ 127.899, -3.393 ], [ 128.136, -2.844 ], [ 129.371, -2.802 ], [ 130.471, -3.094 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "2571057", "area_hec": "2571057" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.688, 1.132 ], [ 128.636, 0.259 ], [ 128.12, 0.356 ], [ 127.968, -0.252 ], [ 128.38, -0.78 ], [ 128.1, -0.9 ], [ 127.697, -0.267 ], [ 127.4, 1.012 ], [ 127.6, 1.811 ], [ 127.932, 2.175 ], [ 128.004, 1.629 ], [ 128.595, 1.541 ], [ 128.688, 1.132 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "13823388", "area_hec": "13823388" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.624, -6.778 ], [ 110.539, -6.877 ], [ 110.76, -6.465 ], [ 112.615, -6.946 ], [ 112.979, -7.594 ], [ 114.479, -7.777 ], [ 115.706, -8.371 ], [ 114.564, -8.752 ], [ 113.465, -8.349 ], [ 112.56, -8.376 ], [ 111.522, -8.302 ], [ 110.586, -8.123 ], [ 109.428, -7.741 ], [ 108.694, -7.642 ], [ 108.278, -7.767 ], [ 106.454, -7.355 ], [ 106.281, -6.925 ], [ 105.365, -6.851 ], [ 106.052, -5.896 ], [ 107.265, -5.955 ], [ 108.072, -6.346 ], [ 108.487, -6.422 ], [ 108.624, -6.778 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "18786457", "area_hec": "18786457" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.24, 1.42 ], [ 124.437, 0.428 ], [ 123.686, 0.236 ], [ 122.723, 0.431 ], [ 121.057, 0.381 ], [ 120.183, 0.237 ], [ 120.041, -0.52 ], [ 120.936, -1.409 ], [ 121.476, -0.956 ], [ 123.341, -0.616 ], [ 123.258, -1.076 ], [ 122.823, -0.931 ], [ 122.388, -1.517 ], [ 121.508, -1.905 ], [ 122.455, -3.186 ], [ 122.272, -3.53 ], [ 123.171, -4.684 ], [ 123.162, -5.341 ], [ 122.629, -5.635 ], [ 122.236, -5.283 ], [ 122.72, -4.464 ], [ 121.738, -4.851 ], [ 121.49, -4.575 ], [ 121.619, -4.189 ], [ 120.898, -3.602 ], [ 120.972, -2.628 ], [ 120.305, -2.932 ], [ 120.39, -4.098 ], [ 120.431, -5.528 ], [ 119.796, -5.673 ], [ 119.367, -5.38 ], [ 119.654, -4.459 ], [ 119.499, -3.494 ], [ 119.078, -3.487 ], [ 118.768, -2.802 ], [ 119.181, -2.147 ], [ 119.323, -1.353 ], [ 119.826, 0.154 ], [ 120.036, 0.567 ], [ 120.886, 1.309 ], [ 121.667, 1.014 ], [ 122.928, 0.875 ], [ 124.078, 0.917 ], [ 125.066, 1.643 ], [ 125.24, 1.42 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "40837988", "area_hec": "40837988" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.143, -1.152 ], [ 134.423, -2.769 ], [ 135.458, -3.368 ], [ 136.293, -2.307 ], [ 137.441, -1.704 ], [ 138.33, -1.703 ], [ 139.185, -2.051 ], [ 139.927, -2.409 ], [ 141.0, -2.6 ], [ 141.017, -5.859 ], [ 141.034, -9.118 ], [ 140.143, -8.297 ], [ 139.128, -8.096 ], [ 138.881, -8.381 ], [ 137.614, -8.412 ], [ 138.039, -7.598 ], [ 138.669, -7.32 ], [ 138.408, -6.233 ], [ 137.928, -5.393 ], [ 135.989, -4.546 ], [ 135.165, -4.463 ], [ 133.663, -3.539 ], [ 133.368, -4.025 ], [ 132.984, -4.113 ], [ 132.757, -3.746 ], [ 132.754, -3.312 ], [ 131.99, -2.821 ], [ 133.067, -2.46 ], [ 133.78, -2.48 ], [ 133.696, -2.215 ], [ 132.232, -2.212 ], [ 131.836, -1.617 ], [ 130.943, -1.433 ], [ 130.52, -0.938 ], [ 131.868, -0.696 ], [ 132.38, -0.369 ], [ 133.986, -0.78 ], [ 134.143, -1.152 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "43965210", "area_hec": "43965210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.818, -5.852 ], [ 104.71, -5.873 ], [ 103.868, -5.037 ], [ 102.584, -4.22 ], [ 102.156, -3.614 ], [ 101.399, -2.8 ], [ 100.903, -2.05 ], [ 100.142, -0.65 ], [ 99.264, 0.183 ], [ 98.97, 1.043 ], [ 98.601, 1.823 ], [ 97.7, 2.453 ], [ 97.177, 3.309 ], [ 96.424, 3.869 ], [ 95.381, 4.971 ], [ 95.293, 5.48 ], [ 95.937, 5.439 ], [ 97.485, 5.246 ], [ 98.369, 4.268 ], [ 99.143, 3.59 ], [ 99.694, 3.174 ], [ 100.641, 2.099 ], [ 101.658, 2.084 ], [ 102.498, 1.399 ], [ 103.077, 0.561 ], [ 103.838, 0.104 ], [ 103.438, -0.712 ], [ 104.011, -1.059 ], [ 104.37, -1.085 ], [ 104.54, -1.782 ], [ 104.888, -2.34 ], [ 105.622, -2.429 ], [ 106.109, -3.062 ], [ 105.857, -4.306 ], [ 105.818, -5.852 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Indonesia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "53056735", "area_hec": "53056735" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.876, 1.828 ], [ 118.997, 0.902 ], [ 117.812, 0.784 ], [ 117.478, 0.102 ], [ 117.522, -0.804 ], [ 116.56, -1.488 ], [ 116.534, -2.483 ], [ 116.148, -4.013 ], [ 116.001, -3.657 ], [ 114.865, -4.107 ], [ 114.469, -3.496 ], [ 113.756, -3.439 ], [ 113.257, -3.119 ], [ 112.068, -3.478 ], [ 111.703, -2.994 ], [ 111.048, -3.049 ], [ 110.224, -2.934 ], [ 110.071, -1.593 ], [ 109.572, -1.315 ], [ 109.092, -0.46 ], [ 108.953, 0.415 ], [ 109.069, 1.342 ], [ 109.663, 2.006 ], [ 109.83, 1.338 ], [ 110.514, 0.773 ], [ 111.159, 0.977 ], [ 111.797, 0.904 ], [ 112.38, 1.41 ], [ 112.86, 1.498 ], [ 113.806, 1.218 ], [ 114.621, 1.431 ], [ 115.134, 2.821 ], [ 115.519, 3.169 ], [ 115.865, 4.307 ], [ 117.015, 4.306 ], [ 117.882, 4.138 ], [ 117.313, 3.234 ], [ 118.048, 2.288 ], [ 117.876, 1.828 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Iran, Islamic Rep.", "name_alt": null, "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "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, "area_jk": "161744443", "area_hec": "161744443" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.922, 37.199 ], [ 54.8, 37.392 ], [ 55.512, 37.964 ], [ 56.18, 37.935 ], [ 56.619, 38.121 ], [ 57.33, 38.029 ], [ 58.436, 37.522 ], [ 59.235, 37.413 ], [ 60.378, 36.527 ], [ 61.123, 36.492 ], [ 61.211, 35.65 ], [ 60.803, 34.404 ], [ 60.528, 33.676 ], [ 60.964, 33.529 ], [ 60.536, 32.981 ], [ 60.864, 32.183 ], [ 60.942, 31.548 ], [ 61.699, 31.38 ], [ 61.781, 30.736 ], [ 60.874, 29.829 ], [ 61.369, 29.303 ], [ 61.772, 28.699 ], [ 62.728, 28.26 ], [ 62.755, 27.379 ], [ 63.234, 27.217 ], [ 63.317, 26.756 ], [ 61.874, 26.24 ], [ 61.497, 25.078 ], [ 59.616, 25.38 ], [ 58.526, 25.61 ], [ 57.397, 25.74 ], [ 56.971, 26.966 ], [ 56.492, 27.143 ], [ 55.724, 26.965 ], [ 54.715, 26.481 ], [ 53.493, 26.812 ], [ 52.484, 27.581 ], [ 51.521, 27.866 ], [ 50.853, 28.814 ], [ 50.115, 30.148 ], [ 49.577, 29.986 ], [ 48.941, 30.317 ], [ 48.568, 29.927 ], [ 48.015, 30.453 ], [ 48.005, 30.985 ], [ 47.685, 30.985 ], [ 47.849, 31.709 ], [ 47.335, 32.469 ], [ 46.109, 33.017 ], [ 45.417, 33.968 ], [ 45.648, 34.748 ], [ 46.152, 35.093 ], [ 46.076, 35.677 ], [ 45.421, 35.977 ], [ 44.773, 37.17 ], [ 44.226, 37.972 ], [ 44.421, 38.281 ], [ 44.109, 39.428 ], [ 44.794, 39.713 ], [ 44.953, 39.336 ], [ 45.458, 38.874 ], [ 46.144, 38.741 ], [ 46.506, 38.771 ], [ 47.685, 39.508 ], [ 48.06, 39.582 ], [ 48.355, 39.289 ], [ 48.011, 38.794 ], [ 48.634, 38.27 ], [ 48.883, 38.32 ], [ 49.2, 37.583 ], [ 50.148, 37.375 ], [ 50.842, 36.873 ], [ 52.264, 36.7 ], [ 53.826, 36.965 ], [ 53.922, 37.199 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "brk_group": null, "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Iraq", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900.000000, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "43693537", "area_hec": "43693537" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.421, 35.977 ], [ 46.076, 35.677 ], [ 46.152, 35.093 ], [ 45.648, 34.748 ], [ 45.417, 33.968 ], [ 46.109, 33.017 ], [ 47.335, 32.469 ], [ 47.849, 31.709 ], [ 47.685, 30.985 ], [ 48.005, 30.985 ], [ 48.015, 30.453 ], [ 48.568, 29.927 ], [ 47.974, 29.976 ], [ 47.303, 30.059 ], [ 46.569, 29.099 ], [ 44.709, 29.179 ], [ 41.89, 31.19 ], [ 40.4, 31.89 ], [ 39.196, 32.161 ], [ 38.792, 33.379 ], [ 41.006, 34.419 ], [ 41.384, 35.628 ], [ 41.29, 36.359 ], [ 41.837, 36.606 ], [ 42.35, 37.23 ], [ 42.779, 37.385 ], [ 43.942, 37.256 ], [ 44.294, 37.002 ], [ 44.773, 37.17 ], [ 45.421, 35.977 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ireland", "name_alt": null, "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "5845200", "area_hec": "5845200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.198, 53.868 ], [ -6.033, 53.153 ], [ -6.789, 52.26 ], [ -8.562, 51.669 ], [ -9.977, 51.821 ], [ -9.166, 52.865 ], [ -9.688, 53.881 ], [ -8.328, 54.664 ], [ -7.572, 55.132 ], [ -7.366, 54.596 ], [ -7.572, 54.06 ], [ -6.954, 54.074 ], [ -6.198, 53.868 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "brk_group": null, "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Israel", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "2296500", "area_hec": "2296500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.72, 32.709 ], [ 35.546, 32.394 ], [ 35.184, 32.532 ], [ 34.975, 31.867 ], [ 35.226, 31.754 ], [ 34.971, 31.617 ], [ 34.927, 31.353 ], [ 35.398, 31.489 ], [ 35.421, 31.1 ], [ 34.923, 29.501 ], [ 34.265, 31.219 ], [ 34.556, 31.549 ], [ 34.488, 31.605 ], [ 34.753, 32.073 ], [ 34.955, 32.827 ], [ 35.099, 33.081 ], [ 35.126, 33.091 ], [ 35.461, 33.089 ], [ 35.553, 33.264 ], [ 35.821, 33.277 ], [ 35.836, 32.868 ], [ 35.701, 32.716 ], [ 35.72, 32.709 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "brk_group": null, "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Italy", "name_alt": null, "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000.000000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "2396775", "area_hec": "2396775" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.21, 41.21 ], [ 9.81, 40.5 ], [ 9.669, 39.177 ], [ 9.215, 39.24 ], [ 8.807, 38.907 ], [ 8.428, 39.172 ], [ 8.388, 40.378 ], [ 8.16, 40.95 ], [ 8.71, 40.9 ], [ 9.21, 41.21 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "brk_group": null, "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Italy", "name_alt": null, "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000.000000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "2730119", "area_hec": "2730119" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.52, 38.231 ], [ 15.16, 37.444 ], [ 15.31, 37.134 ], [ 15.1, 36.62 ], [ 14.335, 36.997 ], [ 13.827, 37.105 ], [ 12.431, 37.613 ], [ 12.571, 38.126 ], [ 13.741, 38.035 ], [ 14.761, 38.144 ], [ 15.52, 38.231 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "brk_group": null, "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Italy", "name_alt": null, "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000.000000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "26383068", "area_hec": "26383068" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.377, 46.768 ], [ 13.806, 46.509 ], [ 13.698, 46.017 ], [ 13.938, 45.591 ], [ 13.142, 45.737 ], [ 12.329, 45.382 ], [ 12.384, 44.885 ], [ 12.261, 44.6 ], [ 12.589, 44.091 ], [ 13.527, 43.588 ], [ 14.03, 42.761 ], [ 15.143, 41.955 ], [ 15.926, 41.961 ], [ 16.17, 41.74 ], [ 15.889, 41.541 ], [ 16.785, 41.18 ], [ 17.519, 40.877 ], [ 18.377, 40.356 ], [ 18.48, 40.169 ], [ 18.293, 39.811 ], [ 17.738, 40.278 ], [ 16.87, 40.442 ], [ 16.449, 39.795 ], [ 17.172, 39.425 ], [ 17.053, 38.903 ], [ 16.635, 38.844 ], [ 16.101, 37.986 ], [ 15.684, 37.909 ], [ 15.688, 38.215 ], [ 15.892, 38.751 ], [ 16.109, 38.965 ], [ 15.719, 39.544 ], [ 15.414, 40.048 ], [ 14.998, 40.173 ], [ 14.703, 40.605 ], [ 14.061, 40.786 ], [ 13.628, 41.188 ], [ 12.888, 41.253 ], [ 12.107, 41.705 ], [ 11.192, 42.355 ], [ 10.512, 42.931 ], [ 10.2, 43.92 ], [ 9.703, 44.036 ], [ 8.889, 44.366 ], [ 8.429, 44.231 ], [ 7.851, 43.767 ], [ 7.435, 43.694 ], [ 7.55, 44.128 ], [ 7.008, 44.255 ], [ 6.75, 45.029 ], [ 7.097, 45.333 ], [ 6.802, 45.709 ], [ 6.844, 45.991 ], [ 7.274, 45.777 ], [ 7.756, 45.825 ], [ 8.317, 46.164 ], [ 8.49, 46.005 ], [ 8.966, 46.037 ], [ 9.183, 46.44 ], [ 9.923, 46.315 ], [ 10.363, 46.484 ], [ 10.443, 46.894 ], [ 11.049, 46.751 ], [ 11.165, 46.942 ], [ 12.153, 47.115 ], [ 12.377, 46.768 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "brk_group": null, "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Jamaica", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "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, "area_jk": "1245532", "area_hec": "1245532" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.57, 18.491 ], [ -76.897, 18.401 ], [ -76.365, 18.161 ], [ -76.2, 17.887 ], [ -76.903, 17.868 ], [ -77.206, 17.701 ], [ -77.766, 17.862 ], [ -78.338, 18.226 ], [ -78.218, 18.454 ], [ -77.797, 18.524 ], [ -77.57, 18.491 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "brk_group": null, "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Japan", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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, "area_jk": "2034413", "area_hec": "2034413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 134.638, 34.149 ], [ 134.766, 33.806 ], [ 134.203, 33.201 ], [ 133.793, 33.522 ], [ 133.28, 33.29 ], [ 133.015, 32.705 ], [ 132.363, 32.989 ], [ 132.371, 33.464 ], [ 132.924, 34.06 ], [ 133.493, 33.945 ], [ 133.904, 34.365 ], [ 134.638, 34.149 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "brk_group": null, "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Japan", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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, "area_jk": "8985364", "area_hec": "8985364" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.91, 44.174 ], [ 144.613, 43.961 ], [ 145.321, 44.385 ], [ 145.543, 43.262 ], [ 144.06, 42.988 ], [ 143.184, 41.995 ], [ 141.612, 42.679 ], [ 141.067, 41.585 ], [ 139.955, 41.57 ], [ 139.817, 42.564 ], [ 140.312, 43.333 ], [ 141.381, 43.389 ], [ 141.672, 44.772 ], [ 141.968, 45.551 ], [ 143.143, 44.51 ], [ 143.91, 44.174 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "brk_group": null, "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Japan", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "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, "area_jk": "29432430", "area_hec": "29432430" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.976, 37.142 ], [ 140.6, 36.344 ], [ 140.774, 35.843 ], [ 140.253, 35.138 ], [ 138.976, 34.668 ], [ 137.218, 34.606 ], [ 135.793, 33.465 ], [ 135.121, 33.849 ], [ 135.079, 34.596 ], [ 133.34, 34.376 ], [ 132.157, 33.905 ], [ 130.986, 33.886 ], [ 132.0, 33.15 ], [ 131.333, 31.45 ], [ 130.686, 31.03 ], [ 130.202, 31.418 ], [ 130.448, 32.319 ], [ 129.815, 32.61 ], [ 129.409, 33.296 ], [ 130.354, 33.604 ], [ 130.879, 34.233 ], [ 131.884, 34.75 ], [ 132.618, 35.433 ], [ 134.608, 35.732 ], [ 135.678, 35.527 ], [ 136.724, 37.305 ], [ 137.391, 36.827 ], [ 138.858, 37.828 ], [ 139.426, 38.216 ], [ 140.055, 39.439 ], [ 139.883, 40.563 ], [ 140.306, 41.195 ], [ 141.369, 41.379 ], [ 141.914, 39.992 ], [ 141.885, 39.181 ], [ 140.959, 38.174 ], [ 140.976, 37.142 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "brk_group": null, "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Jordan", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "8923501", "area_hec": "8923501" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546, 32.394 ], [ 35.72, 32.709 ], [ 36.834, 32.313 ], [ 38.792, 33.379 ], [ 39.196, 32.161 ], [ 39.005, 32.01 ], [ 37.002, 31.508 ], [ 37.999, 30.509 ], [ 37.668, 30.339 ], [ 37.504, 30.004 ], [ 36.74, 29.865 ], [ 36.501, 29.505 ], [ 36.069, 29.198 ], [ 34.956, 29.357 ], [ 34.923, 29.501 ], [ 35.421, 31.1 ], [ 35.398, 31.489 ], [ 35.545, 31.782 ], [ 35.546, 32.394 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "brk_group": null, "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kazakhstan", "name_alt": null, "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "272923826", "area_hec": "272923826" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.962, 42.266 ], [ 70.389, 42.081 ], [ 69.07, 41.384 ], [ 68.632, 40.669 ], [ 68.26, 40.662 ], [ 67.986, 41.136 ], [ 66.714, 41.168 ], [ 66.511, 41.988 ], [ 66.023, 41.995 ], [ 66.098, 42.998 ], [ 64.901, 43.728 ], [ 63.186, 43.65 ], [ 62.013, 43.505 ], [ 61.058, 44.406 ], [ 60.24, 44.784 ], [ 58.69, 45.5 ], [ 58.503, 45.587 ], [ 55.929, 44.996 ], [ 55.968, 41.309 ], [ 55.455, 41.26 ], [ 54.755, 42.044 ], [ 54.079, 42.324 ], [ 52.944, 42.116 ], [ 52.502, 41.783 ], [ 52.446, 42.027 ], [ 52.692, 42.444 ], [ 52.501, 42.792 ], [ 51.342, 43.133 ], [ 50.891, 44.031 ], [ 50.339, 44.284 ], [ 50.306, 44.61 ], [ 51.279, 44.515 ], [ 51.317, 45.246 ], [ 52.167, 45.408 ], [ 53.041, 45.259 ], [ 53.221, 46.235 ], [ 53.043, 46.853 ], [ 52.042, 46.805 ], [ 51.192, 47.049 ], [ 50.034, 46.609 ], [ 49.101, 46.399 ], [ 48.593, 46.561 ], [ 48.695, 47.076 ], [ 48.057, 47.744 ], [ 47.315, 47.716 ], [ 46.466, 48.394 ], [ 47.044, 49.152 ], [ 46.752, 49.356 ], [ 47.55, 50.455 ], [ 48.578, 49.875 ], [ 48.702, 50.605 ], [ 50.767, 51.693 ], [ 52.329, 51.719 ], [ 54.533, 51.026 ], [ 55.717, 50.622 ], [ 56.778, 51.044 ], [ 58.363, 51.064 ], [ 59.642, 50.545 ], [ 59.933, 50.842 ], [ 61.337, 50.799 ], [ 61.588, 51.273 ], [ 59.968, 51.96 ], [ 60.927, 52.447 ], [ 60.74, 52.72 ], [ 61.7, 52.98 ], [ 60.978, 53.665 ], [ 61.437, 54.006 ], [ 65.178, 54.354 ], [ 65.667, 54.601 ], [ 68.169, 54.97 ], [ 69.068, 55.385 ], [ 70.865, 55.17 ], [ 71.18, 54.133 ], [ 72.224, 54.377 ], [ 73.508, 54.036 ], [ 73.426, 53.49 ], [ 74.385, 53.547 ], [ 76.891, 54.49 ], [ 76.525, 54.177 ], [ 77.801, 53.404 ], [ 80.036, 50.865 ], [ 80.568, 51.388 ], [ 81.946, 50.812 ], [ 83.383, 51.069 ], [ 83.935, 50.889 ], [ 84.416, 50.311 ], [ 85.116, 50.117 ], [ 85.541, 49.693 ], [ 86.829, 49.827 ], [ 87.36, 49.215 ], [ 86.599, 48.549 ], [ 85.768, 48.456 ], [ 85.721, 47.453 ], [ 85.164, 47.001 ], [ 83.18, 47.33 ], [ 82.459, 45.54 ], [ 81.947, 45.317 ], [ 79.966, 44.917 ], [ 80.866, 43.18 ], [ 80.18, 42.92 ], [ 80.26, 42.35 ], [ 79.644, 42.497 ], [ 79.142, 42.856 ], [ 77.658, 42.961 ], [ 76.0, 42.988 ], [ 75.637, 42.878 ], [ 74.213, 43.298 ], [ 73.645, 43.091 ], [ 73.49, 42.501 ], [ 71.845, 42.845 ], [ 71.186, 42.704 ], [ 70.962, 42.266 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "brk_group": null, "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kenya", "name_alt": null, "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "58980196", "area_hec": "58980196" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.993, -0.858 ], [ 41.585, -1.683 ], [ 40.885, -2.083 ], [ 40.638, -2.5 ], [ 40.263, -2.573 ], [ 40.121, -3.278 ], [ 39.8, -3.681 ], [ 39.605, -4.346 ], [ 39.202, -4.677 ], [ 37.767, -3.677 ], [ 37.699, -3.097 ], [ 34.073, -1.06 ], [ 33.904, -0.95 ], [ 33.894, 0.11 ], [ 34.18, 0.515 ], [ 34.672, 1.177 ], [ 35.036, 1.906 ], [ 34.596, 3.054 ], [ 34.479, 3.556 ], [ 34.005, 4.25 ], [ 34.62, 4.847 ], [ 35.298, 5.506 ], [ 35.817, 5.338 ], [ 35.817, 4.777 ], [ 36.159, 4.448 ], [ 36.855, 4.448 ], [ 38.121, 3.599 ], [ 38.437, 3.588 ], [ 38.671, 3.616 ], [ 38.892, 3.501 ], [ 39.559, 3.422 ], [ 39.855, 3.839 ], [ 40.769, 4.257 ], [ 41.172, 3.919 ], [ 41.855, 3.919 ], [ 40.981, 2.784 ], [ 40.993, -0.858 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "brk_group": null, "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Korea, Rep.", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "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": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "9901326", "area_hec": "9901326" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.35, 38.612 ], [ 129.213, 37.432 ], [ 129.46, 36.784 ], [ 129.468, 35.632 ], [ 129.091, 35.083 ], [ 128.186, 34.89 ], [ 127.386, 34.476 ], [ 126.486, 34.39 ], [ 126.374, 34.935 ], [ 126.559, 35.684 ], [ 126.117, 36.725 ], [ 126.86, 36.894 ], [ 126.175, 37.75 ], [ 126.237, 37.84 ], [ 126.684, 37.805 ], [ 127.073, 38.256 ], [ 127.78, 38.304 ], [ 128.206, 38.37 ], [ 128.35, 38.612 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "brk_group": null, "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "formal_fr": null, "note_adm0": null, "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352.000000, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "KO", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "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": 4, "tiny": -99, "homepart": 1, "area_jk": "1123008", "area_hec": "1123008" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.762, 42.052 ], [ 20.717, 41.847 ], [ 20.59, 41.855 ], [ 20.523, 42.218 ], [ 20.284, 42.32 ], [ 20.071, 42.589 ], [ 20.258, 42.813 ], [ 20.497, 42.885 ], [ 20.635, 43.217 ], [ 20.814, 43.272 ], [ 20.956, 43.131 ], [ 21.143, 43.069 ], [ 21.274, 42.91 ], [ 21.439, 42.862 ], [ 21.633, 42.677 ], [ 21.775, 42.683 ], [ 21.663, 42.439 ], [ 21.543, 42.32 ], [ 21.577, 42.245 ], [ 21.353, 42.207 ], [ 20.762, 42.052 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "brk_group": null, "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kuwait", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "1665991", "area_hec": "1665991" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.974, 29.976 ], [ 48.183, 29.535 ], [ 48.094, 29.306 ], [ 48.416, 28.552 ], [ 47.709, 28.526 ], [ 47.46, 29.003 ], [ 46.569, 29.099 ], [ 47.303, 30.059 ], [ 47.974, 29.976 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "brk_group": null, "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Kyrgyz Republic", "name_alt": null, "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "19585907", "area_hec": "19585907" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.962, 42.266 ], [ 71.186, 42.704 ], [ 71.845, 42.845 ], [ 73.49, 42.501 ], [ 73.645, 43.091 ], [ 74.213, 43.298 ], [ 75.637, 42.878 ], [ 76.0, 42.988 ], [ 77.658, 42.961 ], [ 79.142, 42.856 ], [ 79.644, 42.497 ], [ 80.26, 42.35 ], [ 80.119, 42.124 ], [ 78.544, 41.582 ], [ 78.187, 41.185 ], [ 76.904, 41.066 ], [ 76.526, 40.428 ], [ 75.468, 40.562 ], [ 74.777, 40.366 ], [ 73.822, 39.894 ], [ 73.96, 39.66 ], [ 73.675, 39.431 ], [ 71.785, 39.279 ], [ 70.549, 39.604 ], [ 69.465, 39.527 ], [ 69.56, 40.103 ], [ 70.648, 39.936 ], [ 71.014, 40.244 ], [ 71.775, 40.146 ], [ 73.055, 40.866 ], [ 71.87, 41.393 ], [ 71.158, 41.144 ], [ 70.42, 41.52 ], [ 71.259, 42.168 ], [ 70.962, 42.266 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "brk_group": null, "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lao PDR", "name_alt": null, "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980.000000, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "22909999", "area_hec": "22909999" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.219, 14.273 ], [ 105.544, 14.724 ], [ 105.589, 15.57 ], [ 104.779, 16.442 ], [ 104.717, 17.429 ], [ 103.957, 18.241 ], [ 103.2, 18.31 ], [ 102.999, 17.962 ], [ 102.413, 17.933 ], [ 102.114, 18.109 ], [ 101.059, 17.512 ], [ 101.036, 18.409 ], [ 101.282, 19.463 ], [ 100.606, 19.508 ], [ 100.549, 20.109 ], [ 100.116, 20.418 ], [ 100.329, 20.786 ], [ 101.18, 21.437 ], [ 101.27, 21.202 ], [ 101.803, 21.174 ], [ 101.652, 22.318 ], [ 102.17, 22.465 ], [ 102.755, 21.675 ], [ 103.204, 20.767 ], [ 104.435, 20.759 ], [ 104.823, 19.887 ], [ 104.183, 19.625 ], [ 103.897, 19.265 ], [ 105.095, 18.667 ], [ 105.926, 17.485 ], [ 106.556, 16.604 ], [ 107.313, 15.909 ], [ 107.564, 15.202 ], [ 107.383, 14.202 ], [ 106.496, 14.571 ], [ 106.044, 13.881 ], [ 105.219, 14.273 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "brk_group": null, "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Latvia", "name_alt": null, "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "6392411", "area_hec": "6392411" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.056, 56.031 ], [ 21.09, 56.784 ], [ 21.582, 57.412 ], [ 22.524, 57.753 ], [ 23.319, 57.006 ], [ 24.121, 57.026 ], [ 24.313, 57.793 ], [ 25.165, 57.97 ], [ 25.603, 57.847 ], [ 26.463, 57.476 ], [ 27.288, 57.474 ], [ 27.77, 57.244 ], [ 27.855, 56.759 ], [ 28.177, 56.169 ], [ 27.102, 55.783 ], [ 26.494, 55.615 ], [ 25.533, 56.1 ], [ 25.001, 56.164 ], [ 24.861, 56.373 ], [ 23.878, 56.274 ], [ 22.201, 56.338 ], [ 21.056, 56.031 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "brk_group": null, "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lebanon", "name_alt": null, "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060.000000, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1, "area_jk": "1010358", "area_hec": "1010358" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.821, 33.277 ], [ 35.553, 33.264 ], [ 35.461, 33.089 ], [ 35.126, 33.091 ], [ 35.482, 33.906 ], [ 35.98, 34.61 ], [ 35.998, 34.645 ], [ 36.448, 34.594 ], [ 36.612, 34.202 ], [ 36.066, 33.825 ], [ 35.821, 33.277 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "brk_group": null, "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lesotho", "name_alt": null, "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "2750471", "area_hec": "2750471" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.978, -28.956 ], [ 29.325, -29.257 ], [ 29.018, -29.744 ], [ 28.848, -30.07 ], [ 28.291, -30.226 ], [ 28.107, -30.546 ], [ 27.749, -30.645 ], [ 26.999, -29.876 ], [ 27.532, -29.243 ], [ 28.074, -28.852 ], [ 28.542, -28.648 ], [ 28.978, -28.956 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "brk_group": null, "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Liberia", "name_alt": null, "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526.000000, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1, "area_jk": "9815862", "area_hec": "9815862" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.712, 4.365 ], [ -7.974, 4.356 ], [ -9.005, 4.832 ], [ -9.913, 5.594 ], [ -10.765, 6.141 ], [ -11.439, 6.786 ], [ -11.2, 7.106 ], [ -11.147, 7.397 ], [ -10.696, 7.939 ], [ -10.23, 8.406 ], [ -10.017, 8.428 ], [ -9.755, 8.541 ], [ -9.337, 7.928 ], [ -9.403, 7.527 ], [ -9.209, 7.314 ], [ -8.926, 7.309 ], [ -8.722, 7.712 ], [ -8.439, 7.686 ], [ -8.485, 7.395 ], [ -8.386, 6.912 ], [ -8.603, 6.468 ], [ -8.311, 6.193 ], [ -7.994, 6.126 ], [ -7.57, 5.707 ], [ -7.54, 5.313 ], [ -7.635, 5.188 ], [ -7.712, 4.365 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "brk_group": null, "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Libya", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "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, "area_jk": "163260926", "area_hec": "163260926" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.851, 22.863 ], [ 14.144, 22.491 ], [ 13.581, 23.041 ], [ 11.999, 23.472 ], [ 11.561, 24.098 ], [ 10.771, 24.562 ], [ 10.304, 24.379 ], [ 9.948, 24.937 ], [ 9.911, 25.366 ], [ 9.319, 26.094 ], [ 9.716, 26.512 ], [ 9.629, 27.141 ], [ 9.756, 27.688 ], [ 9.684, 28.144 ], [ 9.86, 28.96 ], [ 9.806, 29.425 ], [ 9.482, 30.308 ], [ 9.97, 30.539 ], [ 10.057, 30.962 ], [ 9.95, 31.376 ], [ 10.637, 31.761 ], [ 10.945, 32.082 ], [ 11.432, 32.369 ], [ 11.489, 33.137 ], [ 12.663, 32.793 ], [ 13.083, 32.879 ], [ 13.919, 32.712 ], [ 15.246, 32.265 ], [ 15.714, 31.376 ], [ 16.612, 31.182 ], [ 18.021, 30.764 ], [ 19.086, 30.266 ], [ 19.574, 30.526 ], [ 20.053, 30.986 ], [ 19.82, 31.752 ], [ 20.134, 32.238 ], [ 20.855, 32.707 ], [ 21.543, 32.843 ], [ 22.896, 32.639 ], [ 23.237, 32.191 ], [ 23.609, 32.187 ], [ 23.927, 32.017 ], [ 24.921, 31.899 ], [ 25.165, 31.569 ], [ 24.803, 31.089 ], [ 24.958, 30.662 ], [ 24.7, 30.044 ], [ 25.0, 29.239 ], [ 25.0, 25.683 ], [ 25.0, 22.0 ], [ 25.0, 20.003 ], [ 23.85, 20.0 ], [ 23.838, 19.581 ], [ 19.849, 21.495 ], [ 15.861, 23.41 ], [ 14.851, 22.863 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "brk_group": null, "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Lithuania", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "6382959", "area_hec": "6382959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.731, 54.328 ], [ 22.651, 54.583 ], [ 22.758, 54.857 ], [ 22.316, 55.015 ], [ 21.268, 55.191 ], [ 21.056, 56.031 ], [ 22.201, 56.338 ], [ 23.878, 56.274 ], [ 24.861, 56.373 ], [ 25.001, 56.164 ], [ 25.533, 56.1 ], [ 26.494, 55.615 ], [ 26.588, 55.167 ], [ 25.768, 54.847 ], [ 25.536, 54.282 ], [ 24.451, 53.906 ], [ 23.484, 53.913 ], [ 23.244, 54.221 ], [ 22.731, 54.328 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "brk_group": null, "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Luxembourg", "name_alt": null, "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1, "area_jk": "241680", "area_hec": "241680" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.043, 50.128 ], [ 6.243, 49.902 ], [ 6.186, 49.464 ], [ 5.898, 49.443 ], [ 5.674, 49.529 ], [ 5.782, 50.09 ], [ 6.043, 50.128 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "brk_group": null, "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Macedonia, FYR", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "2506179", "area_hec": "2506179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.59, 41.855 ], [ 20.717, 41.847 ], [ 20.762, 42.052 ], [ 21.353, 42.207 ], [ 21.577, 42.245 ], [ 21.917, 42.304 ], [ 22.381, 42.32 ], [ 22.881, 41.999 ], [ 22.952, 41.338 ], [ 22.762, 41.305 ], [ 22.597, 41.13 ], [ 22.055, 41.15 ], [ 21.674, 40.931 ], [ 21.02, 40.843 ], [ 20.605, 41.086 ], [ 20.463, 41.515 ], [ 20.59, 41.855 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "brk_group": null, "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Madagascar", "name_alt": null, "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130.000000, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "58913783", "area_hec": "58913783" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.544, -12.47 ], [ 49.809, -12.895 ], [ 50.056, -13.556 ], [ 50.217, -14.759 ], [ 50.477, -15.226 ], [ 50.377, -15.706 ], [ 50.2, -16.0 ], [ 49.861, -15.414 ], [ 49.673, -15.71 ], [ 49.863, -16.451 ], [ 49.775, -16.875 ], [ 49.499, -17.106 ], [ 49.436, -17.953 ], [ 49.042, -19.119 ], [ 48.548, -20.497 ], [ 47.931, -22.392 ], [ 47.548, -23.782 ], [ 47.096, -24.942 ], [ 46.282, -25.178 ], [ 45.41, -25.601 ], [ 44.834, -25.346 ], [ 44.04, -24.988 ], [ 43.764, -24.461 ], [ 43.698, -23.574 ], [ 43.346, -22.777 ], [ 43.254, -22.057 ], [ 43.433, -21.337 ], [ 43.894, -21.163 ], [ 43.896, -20.831 ], [ 44.374, -20.072 ], [ 44.464, -19.436 ], [ 44.232, -18.962 ], [ 44.043, -18.331 ], [ 43.963, -17.41 ], [ 44.312, -16.851 ], [ 44.447, -16.216 ], [ 44.945, -16.179 ], [ 45.503, -15.974 ], [ 45.873, -15.793 ], [ 46.312, -15.78 ], [ 46.882, -15.21 ], [ 47.705, -14.594 ], [ 48.005, -14.091 ], [ 47.869, -13.664 ], [ 48.294, -13.784 ], [ 48.845, -13.089 ], [ 48.864, -12.488 ], [ 49.195, -12.041 ], [ 49.544, -12.47 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "brk_group": null, "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Malawi", "name_alt": null, "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810.000000, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "11119059", "area_hec": "11119059" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.56, -11.52 ], [ 34.28, -12.28 ], [ 34.56, -13.58 ], [ 34.907, -13.565 ], [ 35.268, -13.888 ], [ 35.687, -14.611 ], [ 35.772, -15.897 ], [ 35.339, -16.107 ], [ 35.034, -16.801 ], [ 34.381, -16.184 ], [ 34.307, -15.479 ], [ 34.518, -15.014 ], [ 34.46, -14.613 ], [ 34.065, -14.36 ], [ 33.79, -14.452 ], [ 33.214, -13.972 ], [ 32.688, -13.713 ], [ 32.992, -12.784 ], [ 33.306, -12.436 ], [ 33.114, -11.607 ], [ 33.315, -10.796 ], [ 33.486, -10.526 ], [ 33.231, -9.677 ], [ 32.759, -9.231 ], [ 33.74, -9.417 ], [ 33.941, -9.694 ], [ 34.28, -10.16 ], [ 34.56, -11.52 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "brk_group": null, "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Malaysia", "name_alt": null, "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "13462741", "area_hec": "13462741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.076, 6.205 ], [ 101.154, 5.691 ], [ 101.814, 5.811 ], [ 102.141, 6.222 ], [ 102.371, 6.128 ], [ 102.962, 5.524 ], [ 103.381, 4.855 ], [ 103.439, 4.182 ], [ 103.332, 3.727 ], [ 103.429, 3.383 ], [ 103.502, 2.791 ], [ 103.855, 2.515 ], [ 104.248, 1.631 ], [ 104.229, 1.293 ], [ 103.52, 1.226 ], [ 102.574, 1.967 ], [ 101.391, 2.761 ], [ 101.273, 3.27 ], [ 100.695, 3.939 ], [ 100.557, 4.767 ], [ 100.197, 5.312 ], [ 100.306, 6.041 ], [ 100.086, 6.465 ], [ 100.26, 6.643 ], [ 101.076, 6.205 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "brk_group": null, "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Malaysia", "name_alt": null, "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "20351314", "area_hec": "20351314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.618, 4.478 ], [ 117.882, 4.138 ], [ 117.015, 4.306 ], [ 115.865, 4.307 ], [ 115.519, 3.169 ], [ 115.134, 2.821 ], [ 114.621, 1.431 ], [ 113.806, 1.218 ], [ 112.86, 1.498 ], [ 112.38, 1.41 ], [ 111.797, 0.904 ], [ 111.159, 0.977 ], [ 110.514, 0.773 ], [ 109.83, 1.338 ], [ 109.663, 2.006 ], [ 110.396, 1.664 ], [ 111.169, 1.851 ], [ 111.37, 2.697 ], [ 111.797, 2.886 ], [ 112.996, 3.102 ], [ 113.713, 3.893 ], [ 114.204, 4.526 ], [ 114.66, 4.008 ], [ 114.87, 4.348 ], [ 115.347, 4.317 ], [ 115.406, 4.955 ], [ 115.451, 5.448 ], [ 116.221, 6.143 ], [ 116.725, 6.925 ], [ 117.13, 6.928 ], [ 117.643, 6.422 ], [ 117.689, 5.987 ], [ 118.348, 5.709 ], [ 119.182, 5.408 ], [ 119.111, 5.016 ], [ 118.44, 4.966 ], [ 118.618, 4.478 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "brk_group": null, "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mali", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "123630902", "area_hec": "123630902" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.171, 14.617 ], [ -11.834, 14.799 ], [ -11.666, 15.388 ], [ -11.349, 15.411 ], [ -10.651, 15.133 ], [ -10.087, 15.331 ], [ -9.7, 15.264 ], [ -9.55, 15.486 ], [ -5.538, 15.502 ], [ -5.315, 16.202 ], [ -5.489, 16.325 ], [ -5.971, 20.641 ], [ -6.454, 24.957 ], [ -4.923, 24.975 ], [ -1.55, 22.793 ], [ 1.823, 20.611 ], [ 2.061, 20.142 ], [ 2.684, 19.856 ], [ 3.147, 19.694 ], [ 3.158, 19.057 ], [ 4.267, 19.155 ], [ 4.27, 16.852 ], [ 3.723, 16.184 ], [ 3.638, 15.568 ], [ 2.75, 15.409 ], [ 1.385, 15.324 ], [ 1.016, 14.968 ], [ 0.375, 14.929 ], [ -0.266, 14.924 ], [ -0.516, 15.116 ], [ -1.066, 14.974 ], [ -2.001, 14.559 ], [ -2.192, 14.246 ], [ -2.968, 13.798 ], [ -3.104, 13.541 ], [ -3.523, 13.338 ], [ -4.006, 13.473 ], [ -4.28, 13.228 ], [ -4.427, 12.543 ], [ -5.221, 11.714 ], [ -5.198, 11.375 ], [ -5.471, 10.951 ], [ -5.404, 10.371 ], [ -5.817, 10.223 ], [ -6.051, 10.096 ], [ -6.205, 10.524 ], [ -6.494, 10.411 ], [ -6.667, 10.431 ], [ -6.851, 10.139 ], [ -7.623, 10.147 ], [ -7.9, 10.297 ], [ -8.03, 10.207 ], [ -8.335, 10.495 ], [ -8.282, 10.793 ], [ -8.407, 10.909 ], [ -8.62, 10.811 ], [ -8.581, 11.136 ], [ -8.376, 11.394 ], [ -8.786, 11.813 ], [ -8.905, 12.088 ], [ -9.127, 12.308 ], [ -9.328, 12.334 ], [ -9.568, 12.194 ], [ -9.891, 12.06 ], [ -10.165, 11.844 ], [ -10.593, 11.924 ], [ -10.871, 12.178 ], [ -11.037, 12.211 ], [ -11.298, 12.078 ], [ -11.456, 12.077 ], [ -11.514, 12.443 ], [ -11.468, 12.755 ], [ -11.553, 13.141 ], [ -11.928, 13.422 ], [ -12.125, 13.995 ], [ -12.171, 14.617 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "brk_group": null, "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mauritania", "name_alt": null, "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308.000000, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "105501630", "area_hec": "105501630" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.171, 14.617 ], [ -12.831, 15.304 ], [ -13.436, 16.039 ], [ -14.1, 16.304 ], [ -14.577, 16.598 ], [ -15.136, 16.587 ], [ -15.624, 16.369 ], [ -16.121, 16.456 ], [ -16.463, 16.135 ], [ -16.55, 16.674 ], [ -16.271, 17.167 ], [ -16.146, 18.108 ], [ -16.257, 19.097 ], [ -16.378, 19.594 ], [ -16.278, 20.093 ], [ -16.536, 20.568 ], [ -17.063, 21.0 ], [ -16.845, 21.333 ], [ -12.929, 21.327 ], [ -13.119, 22.771 ], [ -12.874, 23.285 ], [ -11.937, 23.375 ], [ -11.969, 25.933 ], [ -8.687, 25.881 ], [ -8.684, 27.396 ], [ -4.923, 24.975 ], [ -6.454, 24.957 ], [ -5.971, 20.641 ], [ -5.489, 16.325 ], [ -5.315, 16.202 ], [ -5.538, 15.502 ], [ -9.55, 15.486 ], [ -9.7, 15.264 ], [ -10.087, 15.331 ], [ -10.651, 15.133 ], [ -11.349, 15.411 ], [ -11.666, 15.388 ], [ -11.834, 14.799 ], [ -12.171, 14.617 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "brk_group": null, "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mexico", "name_alt": null, "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "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": 4, "tiny": -99, "homepart": 1, "area_jk": "196952811", "area_hec": "196952811" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.14, 25.87 ], [ -97.528, 24.992 ], [ -97.703, 24.272 ], [ -97.776, 22.933 ], [ -97.872, 22.444 ], [ -97.699, 21.899 ], [ -97.389, 21.411 ], [ -97.189, 20.635 ], [ -96.526, 19.891 ], [ -96.292, 19.32 ], [ -95.901, 18.828 ], [ -94.839, 18.563 ], [ -94.426, 18.144 ], [ -93.549, 18.424 ], [ -92.786, 18.525 ], [ -92.037, 18.705 ], [ -91.408, 18.876 ], [ -90.772, 19.284 ], [ -90.534, 19.867 ], [ -90.451, 20.707 ], [ -90.279, 21.0 ], [ -89.601, 21.262 ], [ -88.544, 21.494 ], [ -87.658, 21.459 ], [ -87.052, 21.544 ], [ -86.812, 21.331 ], [ -86.846, 20.85 ], [ -87.383, 20.255 ], [ -87.621, 19.647 ], [ -87.437, 19.472 ], [ -87.587, 19.04 ], [ -87.837, 18.26 ], [ -88.091, 18.517 ], [ -88.3, 18.5 ], [ -88.49, 18.487 ], [ -88.848, 17.883 ], [ -89.03, 18.002 ], [ -89.151, 17.956 ], [ -89.143, 17.808 ], [ -90.068, 17.819 ], [ -91.001, 17.818 ], [ -91.002, 17.255 ], [ -91.454, 17.252 ], [ -91.082, 16.919 ], [ -90.712, 16.688 ], [ -90.601, 16.471 ], [ -90.439, 16.41 ], [ -90.465, 16.07 ], [ -91.748, 16.067 ], [ -92.229, 15.251 ], [ -92.087, 15.065 ], [ -92.203, 14.83 ], [ -92.228, 14.539 ], [ -93.359, 15.615 ], [ -93.875, 15.94 ], [ -94.692, 16.201 ], [ -95.25, 16.128 ], [ -96.053, 15.752 ], [ -96.557, 15.653 ], [ -97.264, 15.917 ], [ -98.013, 16.107 ], [ -98.948, 16.566 ], [ -99.697, 16.706 ], [ -100.829, 17.171 ], [ -101.666, 17.649 ], [ -101.918, 17.916 ], [ -102.478, 17.976 ], [ -103.501, 18.292 ], [ -103.918, 18.749 ], [ -104.992, 19.316 ], [ -105.493, 19.947 ], [ -105.731, 20.434 ], [ -105.398, 20.532 ], [ -105.501, 20.817 ], [ -105.271, 21.076 ], [ -105.266, 21.422 ], [ -105.603, 21.871 ], [ -105.693, 22.269 ], [ -106.029, 22.774 ], [ -106.91, 23.768 ], [ -107.915, 24.549 ], [ -108.402, 25.172 ], [ -109.26, 25.581 ], [ -109.444, 25.825 ], [ -109.292, 26.443 ], [ -109.802, 26.676 ], [ -110.392, 27.162 ], [ -110.641, 27.86 ], [ -111.179, 27.941 ], [ -111.76, 28.468 ], [ -112.228, 28.954 ], [ -112.272, 29.267 ], [ -112.81, 30.021 ], [ -113.164, 30.787 ], [ -113.149, 31.171 ], [ -113.872, 31.568 ], [ -114.206, 31.524 ], [ -114.776, 31.799 ], [ -114.937, 31.393 ], [ -114.771, 30.914 ], [ -114.674, 30.163 ], [ -114.331, 29.75 ], [ -113.589, 29.062 ], [ -113.424, 28.826 ], [ -113.272, 28.755 ], [ -113.14, 28.411 ], [ -112.962, 28.425 ], [ -112.762, 27.78 ], [ -112.458, 27.526 ], [ -112.245, 27.172 ], [ -111.617, 26.663 ], [ -111.285, 25.733 ], [ -110.988, 25.295 ], [ -110.71, 24.826 ], [ -110.655, 24.299 ], [ -110.173, 24.265 ], [ -109.772, 23.811 ], [ -109.409, 23.365 ], [ -109.433, 23.186 ], [ -109.854, 22.818 ], [ -110.031, 22.823 ], [ -110.295, 23.431 ], [ -110.95, 24.001 ], [ -111.671, 24.484 ], [ -112.182, 24.738 ], [ -112.149, 25.47 ], [ -112.301, 26.012 ], [ -112.777, 26.322 ], [ -113.465, 26.768 ], [ -113.597, 26.64 ], [ -113.849, 26.9 ], [ -114.466, 27.142 ], [ -115.055, 27.723 ], [ -114.982, 27.798 ], [ -114.57, 27.741 ], [ -114.199, 28.115 ], [ -114.162, 28.566 ], [ -114.932, 29.279 ], [ -115.519, 29.556 ], [ -115.887, 30.181 ], [ -116.258, 30.837 ], [ -116.722, 31.636 ], [ -117.128, 32.535 ], [ -115.991, 32.612 ], [ -114.721, 32.721 ], [ -114.815, 32.525 ], [ -113.305, 32.039 ], [ -111.024, 31.335 ], [ -109.035, 31.342 ], [ -108.242, 31.342 ], [ -108.24, 31.755 ], [ -106.508, 31.755 ], [ -106.143, 31.4 ], [ -105.632, 31.084 ], [ -105.037, 30.644 ], [ -104.706, 30.122 ], [ -104.457, 29.572 ], [ -103.94, 29.27 ], [ -103.11, 28.97 ], [ -102.48, 29.76 ], [ -101.662, 29.779 ], [ -100.958, 29.381 ], [ -100.456, 28.696 ], [ -100.11, 28.11 ], [ -99.52, 27.54 ], [ -99.3, 26.84 ], [ -99.02, 26.37 ], [ -98.24, 26.06 ], [ -97.53, 25.84 ], [ -97.14, 25.87 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "brk_group": null, "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Moldova", "name_alt": null, "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "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, "area_jk": "3232068", "area_hec": "3232068" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619, 48.221 ], [ 26.858, 48.368 ], [ 27.523, 48.467 ], [ 28.259, 48.156 ], [ 28.671, 48.118 ], [ 29.123, 47.849 ], [ 29.051, 47.51 ], [ 29.415, 47.347 ], [ 29.56, 46.929 ], [ 29.909, 46.674 ], [ 29.838, 46.525 ], [ 30.025, 46.424 ], [ 29.76, 46.35 ], [ 29.171, 46.379 ], [ 29.072, 46.518 ], [ 28.863, 46.438 ], [ 28.934, 46.259 ], [ 28.66, 45.94 ], [ 28.485, 45.597 ], [ 28.234, 45.488 ], [ 28.054, 45.945 ], [ 28.16, 46.372 ], [ 28.128, 46.81 ], [ 27.551, 47.405 ], [ 27.234, 47.827 ], [ 26.924, 48.123 ], [ 26.619, 48.221 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "brk_group": null, "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mongolia", "name_alt": null, "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "154425974", "area_hec": "154425974" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.751, 49.297 ], [ 88.806, 49.471 ], [ 90.714, 50.332 ], [ 92.235, 50.802 ], [ 93.104, 50.495 ], [ 94.148, 50.48 ], [ 94.816, 50.013 ], [ 95.814, 49.977 ], [ 97.26, 49.726 ], [ 98.232, 50.422 ], [ 97.826, 51.011 ], [ 98.862, 52.047 ], [ 99.982, 51.634 ], [ 100.889, 51.517 ], [ 102.065, 51.26 ], [ 102.256, 50.511 ], [ 103.677, 50.09 ], [ 104.622, 50.275 ], [ 105.887, 50.406 ], [ 106.889, 50.274 ], [ 107.868, 49.794 ], [ 108.475, 49.282 ], [ 109.402, 49.293 ], [ 110.662, 49.13 ], [ 111.581, 49.378 ], [ 112.898, 49.544 ], [ 114.362, 50.248 ], [ 114.962, 50.14 ], [ 115.486, 49.805 ], [ 116.679, 49.889 ], [ 116.192, 49.135 ], [ 115.485, 48.135 ], [ 115.743, 47.727 ], [ 116.309, 47.853 ], [ 117.296, 47.698 ], [ 118.064, 48.067 ], [ 118.867, 47.747 ], [ 119.773, 47.048 ], [ 119.663, 46.693 ], [ 118.874, 46.805 ], [ 117.422, 46.673 ], [ 116.718, 46.388 ], [ 115.985, 45.727 ], [ 114.46, 45.34 ], [ 113.464, 44.809 ], [ 112.436, 45.012 ], [ 111.873, 45.102 ], [ 111.348, 44.457 ], [ 111.668, 44.073 ], [ 111.83, 43.743 ], [ 111.13, 43.407 ], [ 110.412, 42.871 ], [ 109.244, 42.519 ], [ 107.745, 42.481 ], [ 106.129, 42.134 ], [ 104.965, 41.597 ], [ 104.522, 41.908 ], [ 103.312, 41.907 ], [ 101.833, 42.515 ], [ 100.846, 42.664 ], [ 99.516, 42.525 ], [ 97.452, 42.749 ], [ 96.349, 42.726 ], [ 95.763, 43.319 ], [ 95.307, 44.241 ], [ 94.689, 44.352 ], [ 93.481, 44.975 ], [ 92.134, 45.115 ], [ 90.945, 45.286 ], [ 90.586, 45.72 ], [ 90.971, 46.888 ], [ 90.281, 47.694 ], [ 88.854, 48.069 ], [ 88.014, 48.599 ], [ 87.751, 49.297 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "brk_group": null, "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Montenegro", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "1344363", "area_hec": "1344363" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.802, 42.5 ], [ 19.738, 42.688 ], [ 19.305, 42.196 ], [ 19.372, 41.877 ], [ 19.163, 41.955 ], [ 18.882, 42.282 ], [ 18.45, 42.48 ], [ 18.56, 42.65 ], [ 18.706, 43.2 ], [ 19.032, 43.432 ], [ 19.218, 43.524 ], [ 19.484, 43.352 ], [ 19.63, 43.214 ], [ 19.959, 43.106 ], [ 20.34, 42.898 ], [ 20.258, 42.813 ], [ 20.071, 42.589 ], [ 19.802, 42.5 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "brk_group": null, "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Morocco", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "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, "area_jk": "59162254", "area_hec": "59162254" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.194, 35.755 ], [ -4.591, 35.331 ], [ -3.64, 35.4 ], [ -2.604, 35.179 ], [ -2.17, 35.168 ], [ -1.793, 34.528 ], [ -1.734, 33.92 ], [ -1.388, 32.864 ], [ -1.125, 32.651 ], [ -1.308, 32.263 ], [ -2.617, 32.094 ], [ -3.069, 31.724 ], [ -3.647, 31.637 ], [ -3.69, 30.897 ], [ -4.86, 30.501 ], [ -5.242, 30.0 ], [ -6.061, 29.732 ], [ -7.059, 29.579 ], [ -8.674, 28.841 ], [ -8.666, 27.656 ], [ -8.818, 27.656 ], [ -8.818, 27.656 ], [ -8.795, 27.121 ], [ -9.413, 27.088 ], [ -9.735, 26.861 ], [ -10.189, 26.861 ], [ -10.551, 26.991 ], [ -11.393, 26.883 ], [ -11.718, 26.104 ], [ -12.031, 26.031 ], [ -12.501, 24.77 ], [ -13.891, 23.691 ], [ -14.221, 22.31 ], [ -14.631, 21.861 ], [ -14.751, 21.501 ], [ -17.003, 21.421 ], [ -17.02, 21.422 ], [ -16.973, 21.886 ], [ -16.589, 22.158 ], [ -16.262, 22.679 ], [ -16.326, 23.018 ], [ -15.983, 23.723 ], [ -15.426, 24.359 ], [ -15.089, 24.52 ], [ -14.825, 25.104 ], [ -14.801, 25.636 ], [ -14.44, 26.254 ], [ -13.774, 26.619 ], [ -13.14, 27.64 ], [ -13.122, 27.654 ], [ -12.619, 28.038 ], [ -11.689, 28.149 ], [ -10.901, 28.832 ], [ -10.4, 29.099 ], [ -9.565, 29.934 ], [ -9.815, 31.178 ], [ -9.435, 32.038 ], [ -9.301, 32.565 ], [ -8.658, 33.24 ], [ -7.654, 33.697 ], [ -6.912, 34.111 ], [ -6.244, 35.146 ], [ -5.93, 35.76 ], [ -5.194, 35.755 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "brk_group": null, "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Mozambique", "name_alt": null, "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "81151134", "area_hec": "81151134" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.56, -11.52 ], [ 35.312, -11.439 ], [ 36.514, -11.721 ], [ 36.775, -11.595 ], [ 37.471, -11.569 ], [ 37.828, -11.269 ], [ 38.428, -11.285 ], [ 39.521, -10.897 ], [ 40.317, -10.317 ], [ 40.478, -10.765 ], [ 40.437, -11.762 ], [ 40.561, -12.639 ], [ 40.6, -14.202 ], [ 40.776, -14.692 ], [ 40.477, -15.406 ], [ 40.089, -16.101 ], [ 39.453, -16.721 ], [ 38.538, -17.101 ], [ 37.411, -17.586 ], [ 36.281, -18.66 ], [ 35.897, -18.842 ], [ 35.198, -19.553 ], [ 34.786, -19.784 ], [ 34.702, -20.497 ], [ 35.176, -21.254 ], [ 35.373, -21.841 ], [ 35.386, -22.14 ], [ 35.562, -22.09 ], [ 35.534, -23.071 ], [ 35.372, -23.535 ], [ 35.608, -23.707 ], [ 35.459, -24.123 ], [ 35.041, -24.478 ], [ 34.216, -24.816 ], [ 33.013, -25.358 ], [ 32.575, -25.727 ], [ 32.66, -26.149 ], [ 32.916, -26.216 ], [ 32.83, -26.742 ], [ 32.072, -26.734 ], [ 31.986, -26.292 ], [ 31.838, -25.843 ], [ 31.752, -25.484 ], [ 31.931, -24.369 ], [ 31.67, -23.659 ], [ 31.191, -22.252 ], [ 32.245, -21.116 ], [ 32.509, -20.395 ], [ 32.66, -20.304 ], [ 32.773, -19.716 ], [ 32.612, -19.419 ], [ 32.655, -18.672 ], [ 32.85, -17.979 ], [ 32.848, -16.713 ], [ 32.328, -16.392 ], [ 31.852, -16.319 ], [ 31.637, -16.072 ], [ 31.173, -15.861 ], [ 30.339, -15.881 ], [ 30.274, -15.508 ], [ 30.18, -14.796 ], [ 33.214, -13.972 ], [ 33.79, -14.452 ], [ 34.065, -14.36 ], [ 34.46, -14.613 ], [ 34.518, -15.014 ], [ 34.307, -15.479 ], [ 34.381, -16.184 ], [ 35.034, -16.801 ], [ 35.339, -16.107 ], [ 35.772, -15.897 ], [ 35.687, -14.611 ], [ 35.268, -13.888 ], [ 34.907, -13.565 ], [ 34.56, -13.58 ], [ 34.28, -12.28 ], [ 34.56, -11.52 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "brk_group": null, "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Myanmar", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130.000000, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "67952237", "area_hec": "67952237" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.543, 20.187 ], [ 98.96, 19.753 ], [ 98.254, 19.708 ], [ 97.798, 18.627 ], [ 97.376, 18.445 ], [ 97.859, 17.568 ], [ 98.494, 16.838 ], [ 98.903, 16.178 ], [ 98.537, 15.309 ], [ 98.192, 15.124 ], [ 98.431, 14.622 ], [ 99.098, 13.828 ], [ 99.212, 13.269 ], [ 99.196, 12.805 ], [ 99.587, 11.893 ], [ 99.038, 10.96 ], [ 98.554, 9.933 ], [ 98.457, 10.675 ], [ 98.764, 11.441 ], [ 98.428, 12.033 ], [ 98.51, 13.122 ], [ 98.104, 13.64 ], [ 97.778, 14.837 ], [ 97.597, 16.101 ], [ 97.165, 16.929 ], [ 96.506, 16.427 ], [ 95.369, 15.714 ], [ 94.808, 15.803 ], [ 94.189, 16.038 ], [ 94.534, 17.277 ], [ 94.325, 18.213 ], [ 93.541, 19.366 ], [ 93.663, 19.727 ], [ 93.078, 19.855 ], [ 92.369, 20.671 ], [ 92.303, 21.476 ], [ 92.652, 21.324 ], [ 92.673, 22.041 ], [ 93.166, 22.279 ], [ 93.06, 22.703 ], [ 93.286, 23.044 ], [ 93.325, 24.079 ], [ 94.107, 23.851 ], [ 94.553, 24.675 ], [ 94.603, 25.163 ], [ 95.155, 26.001 ], [ 95.125, 26.574 ], [ 96.419, 27.265 ], [ 97.134, 27.084 ], [ 97.052, 27.699 ], [ 97.403, 27.883 ], [ 97.327, 28.262 ], [ 97.912, 28.336 ], [ 98.246, 27.747 ], [ 98.683, 27.509 ], [ 98.712, 26.744 ], [ 98.672, 25.919 ], [ 97.725, 25.084 ], [ 97.605, 23.897 ], [ 98.66, 24.063 ], [ 98.899, 23.143 ], [ 99.532, 22.949 ], [ 99.241, 22.118 ], [ 99.984, 21.743 ], [ 100.416, 21.559 ], [ 101.15, 21.85 ], [ 101.18, 21.437 ], [ 100.329, 20.786 ], [ 100.116, 20.418 ], [ 99.543, 20.187 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "formal_fr": null, "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "CN", "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, "area_jk": "378785", "area_hec": "378785" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.732, 35.14 ], [ 32.803, 35.145 ], [ 32.947, 35.387 ], [ 33.667, 35.373 ], [ 34.577, 35.672 ], [ 33.901, 35.246 ], [ 33.974, 35.059 ], [ 33.866, 35.094 ], [ 33.675, 35.018 ], [ 33.526, 35.039 ], [ 33.476, 35.0 ], [ 33.456, 35.101 ], [ 33.384, 35.163 ], [ 33.191, 35.173 ], [ 32.92, 35.088 ], [ 32.732, 35.14 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 1, "geounit": "Northern Ireland", "gu_a3": "NIR", "su_dif": 0, "subunit": "Northern Ireland", "su_a3": "NIR", "brk_diff": 0, "name": "N. Ireland", "name_long": "Northern Ireland", "brk_a3": "NIR", "brk_name": "N. Ireland", "brk_group": null, "abbrev": "N.Ire.", "postal": "NI", "formal_en": null, "formal_fr": null, "note_adm0": "U.K.", "note_brk": null, "name_sort": "Northern Ireland", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 1810900, "gdp_md_est": 71320.000000, "pop_year": 2011, "lastcensus": -99, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "NI", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "-99", "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": 10, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "1189211", "area_hec": "1189211" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572, 55.132 ], [ -6.734, 55.173 ], [ -5.662, 54.555 ], [ -6.198, 53.868 ], [ -6.954, 54.074 ], [ -7.572, 54.06 ], [ -7.366, 54.596 ], [ -7.572, 55.132 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "brk_group": null, "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Namibia", "name_alt": null, "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "82604653", "area_hec": "82604653" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.345, -28.577 ], [ 15.602, -27.821 ], [ 15.21, -27.091 ], [ 14.99, -26.117 ], [ 14.743, -25.393 ], [ 14.408, -23.853 ], [ 14.386, -22.657 ], [ 14.258, -22.111 ], [ 13.869, -21.699 ], [ 13.352, -20.873 ], [ 12.827, -19.673 ], [ 12.609, -19.045 ], [ 11.795, -18.069 ], [ 11.734, -17.302 ], [ 12.216, -17.112 ], [ 12.814, -16.941 ], [ 13.462, -16.971 ], [ 14.059, -17.423 ], [ 14.21, -17.353 ], [ 18.263, -17.31 ], [ 18.956, -17.789 ], [ 21.377, -17.931 ], [ 23.215, -17.523 ], [ 24.034, -17.296 ], [ 24.682, -17.353 ], [ 25.077, -17.579 ], [ 25.084, -17.662 ], [ 24.521, -17.887 ], [ 24.217, -17.889 ], [ 23.579, -18.281 ], [ 23.197, -17.869 ], [ 21.655, -18.219 ], [ 20.911, -18.252 ], [ 20.881, -21.814 ], [ 19.895, -21.849 ], [ 19.896, -24.768 ], [ 19.895, -28.461 ], [ 19.002, -28.972 ], [ 18.465, -29.046 ], [ 17.836, -28.856 ], [ 17.387, -28.784 ], [ 17.219, -28.356 ], [ 16.824, -28.082 ], [ 16.345, -28.577 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "brk_group": null, "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Nepal", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "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, "area_jk": "15069500", "area_hec": "15069500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.12, 27.877 ], [ 88.043, 27.446 ], [ 88.175, 26.81 ], [ 88.06, 26.415 ], [ 87.228, 26.398 ], [ 86.024, 26.631 ], [ 85.252, 26.726 ], [ 84.675, 27.235 ], [ 83.304, 27.364 ], [ 82.0, 27.925 ], [ 81.057, 28.416 ], [ 80.088, 28.794 ], [ 80.477, 29.73 ], [ 81.111, 30.183 ], [ 81.526, 30.423 ], [ 82.328, 30.115 ], [ 83.337, 29.464 ], [ 83.899, 29.32 ], [ 84.235, 28.84 ], [ 85.012, 28.643 ], [ 85.823, 28.204 ], [ 86.954, 27.974 ], [ 88.12, 27.877 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "brk_group": null, "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Netherlands", "name_alt": null, "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "4002170", "area_hec": "4002170" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.074, 53.51 ], [ 6.905, 53.482 ], [ 7.092, 53.144 ], [ 6.843, 52.228 ], [ 6.589, 51.852 ], [ 5.989, 51.852 ], [ 6.157, 50.804 ], [ 5.607, 51.037 ], [ 4.974, 51.475 ], [ 4.047, 51.267 ], [ 3.315, 51.346 ], [ 3.83, 51.62 ], [ 4.706, 53.092 ], [ 6.074, 53.51 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "New Caledonia", "adm0_a3": "NCL", "geou_dif": 0, "geounit": "New Caledonia", "gu_a3": "NCL", "su_dif": 0, "subunit": "New Caledonia", "su_a3": "NCL", "brk_diff": 0, "name": "New Caledonia", "name_long": "New Caledonia", "brk_a3": "NCL", "brk_name": "New Caledonia", "brk_group": null, "abbrev": "New C.", "postal": "NC", "formal_en": "New Caledonia", "formal_fr": "Nouvelle-Calédonie", "note_adm0": "Fr.", "note_brk": null, "name_sort": "New Caledonia", "name_alt": null, "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 227436, "gdp_md_est": 3158.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "NC", "iso_a3": "NCL", "iso_n3": "540", "un_a3": "540", "wb_a2": "NC", "wb_a3": "NCL", "woe_id": -99, "adm0_a3_is": "NCL", "adm0_a3_us": "NCL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": -99, "area_jk": "2319783", "area_hec": "2319783" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.78, -21.08 ], [ 166.6, -21.7 ], [ 167.12, -22.16 ], [ 166.74, -22.4 ], [ 166.19, -22.13 ], [ 165.474, -21.68 ], [ 164.83, -21.15 ], [ 164.168, -20.445 ], [ 164.03, -20.106 ], [ 164.46, -20.12 ], [ 165.02, -20.46 ], [ 165.46, -20.8 ], [ 165.78, -21.08 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "brk_group": null, "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "New Zealand", "name_alt": null, "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "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": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "12273412", "area_hec": "12273412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 174.612, -36.156 ], [ 175.337, -37.209 ], [ 175.358, -36.526 ], [ 175.809, -36.799 ], [ 175.958, -37.555 ], [ 176.763, -37.881 ], [ 177.439, -37.961 ], [ 178.01, -37.58 ], [ 178.517, -37.695 ], [ 178.275, -38.583 ], [ 177.97, -39.166 ], [ 177.207, -39.146 ], [ 176.94, -39.45 ], [ 177.033, -39.88 ], [ 176.886, -40.066 ], [ 176.508, -40.605 ], [ 176.012, -41.29 ], [ 175.24, -41.688 ], [ 175.068, -41.426 ], [ 174.651, -41.282 ], [ 175.228, -40.459 ], [ 174.9, -39.909 ], [ 173.824, -39.509 ], [ 173.852, -39.147 ], [ 174.575, -38.798 ], [ 174.744, -38.028 ], [ 174.697, -37.381 ], [ 174.292, -36.711 ], [ 174.319, -36.535 ], [ 173.841, -36.122 ], [ 173.054, -35.237 ], [ 172.636, -34.529 ], [ 173.007, -34.451 ], [ 173.551, -35.006 ], [ 174.329, -35.266 ], [ 174.612, -36.156 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "brk_group": null, "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "New Zealand", "name_alt": null, "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "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": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "15607959", "area_hec": "15607959" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.02, -40.919 ], [ 173.247, -41.332 ], [ 173.958, -40.927 ], [ 174.248, -41.349 ], [ 174.249, -41.77 ], [ 173.876, -42.233 ], [ 173.223, -42.97 ], [ 172.711, -43.372 ], [ 173.08, -43.853 ], [ 172.309, -43.866 ], [ 171.453, -44.242 ], [ 171.185, -44.897 ], [ 170.617, -45.909 ], [ 169.831, -46.356 ], [ 169.332, -46.641 ], [ 168.411, -46.62 ], [ 167.764, -46.29 ], [ 166.677, -46.22 ], [ 166.509, -45.853 ], [ 167.046, -45.111 ], [ 168.304, -44.124 ], [ 168.949, -43.936 ], [ 169.668, -43.555 ], [ 170.525, -43.032 ], [ 171.125, -42.513 ], [ 171.57, -41.767 ], [ 171.949, -41.514 ], [ 172.097, -40.956 ], [ 172.799, -40.494 ], [ 173.02, -40.919 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "brk_group": null, "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Nicaragua", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790.000000, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "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": 4, "tiny": -99, "homepart": 1, "area_jk": "12951314", "area_hec": "12951314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.713, 11.088 ], [ -86.058, 11.403 ], [ -86.526, 11.807 ], [ -86.746, 12.144 ], [ -87.168, 12.458 ], [ -87.668, 12.91 ], [ -87.558, 13.065 ], [ -87.392, 12.914 ], [ -87.317, 12.985 ], [ -87.006, 13.026 ], [ -86.881, 13.254 ], [ -86.734, 13.263 ], [ -86.755, 13.755 ], [ -86.521, 13.778 ], [ -86.312, 13.771 ], [ -86.096, 14.038 ], [ -85.801, 13.836 ], [ -85.699, 13.96 ], [ -85.514, 14.079 ], [ -85.165, 14.354 ], [ -85.149, 14.56 ], [ -85.053, 14.552 ], [ -84.924, 14.79 ], [ -84.82, 14.82 ], [ -84.65, 14.667 ], [ -84.449, 14.622 ], [ -84.228, 14.749 ], [ -83.976, 14.749 ], [ -83.629, 14.88 ], [ -83.49, 15.016 ], [ -83.147, 14.996 ], [ -83.233, 14.9 ], [ -83.284, 14.677 ], [ -83.182, 14.311 ], [ -83.412, 13.97 ], [ -83.52, 13.568 ], [ -83.552, 13.127 ], [ -83.499, 12.869 ], [ -83.473, 12.419 ], [ -83.626, 12.321 ], [ -83.72, 11.893 ], [ -83.651, 11.629 ], [ -83.856, 11.373 ], [ -83.809, 11.103 ], [ -83.656, 10.939 ], [ -83.895, 10.727 ], [ -84.19, 10.793 ], [ -84.356, 10.999 ], [ -84.673, 11.083 ], [ -84.903, 10.952 ], [ -85.562, 11.217 ], [ -85.713, 11.088 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "brk_group": null, "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Niger", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "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, "area_jk": "118271587", "area_hec": "118271587" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.155, 11.94 ], [ 2.177, 12.625 ], [ 1.024, 12.852 ], [ 0.993, 13.336 ], [ 0.43, 13.989 ], [ 0.296, 14.444 ], [ 0.375, 14.929 ], [ 1.016, 14.968 ], [ 1.385, 15.324 ], [ 2.75, 15.409 ], [ 3.638, 15.568 ], [ 3.723, 16.184 ], [ 4.27, 16.852 ], [ 4.267, 19.155 ], [ 5.678, 19.601 ], [ 8.573, 21.566 ], [ 11.999, 23.472 ], [ 13.581, 23.041 ], [ 14.144, 22.491 ], [ 14.851, 22.863 ], [ 15.097, 21.308 ], [ 15.471, 21.049 ], [ 15.487, 20.73 ], [ 15.903, 20.388 ], [ 15.686, 19.957 ], [ 15.3, 17.928 ], [ 15.248, 16.627 ], [ 13.972, 15.684 ], [ 13.54, 14.367 ], [ 13.957, 13.997 ], [ 13.954, 13.353 ], [ 14.596, 13.33 ], [ 14.496, 12.859 ], [ 14.213, 12.802 ], [ 14.181, 12.484 ], [ 13.995, 12.462 ], [ 13.319, 13.556 ], [ 13.084, 13.596 ], [ 12.302, 13.037 ], [ 11.528, 13.329 ], [ 10.99, 13.387 ], [ 10.701, 13.247 ], [ 10.115, 13.277 ], [ 9.525, 12.851 ], [ 9.015, 12.827 ], [ 7.805, 13.344 ], [ 7.331, 13.098 ], [ 6.82, 13.115 ], [ 6.445, 13.493 ], [ 5.443, 13.866 ], [ 4.368, 13.748 ], [ 4.108, 13.531 ], [ 3.967, 12.956 ], [ 3.681, 12.553 ], [ 3.611, 11.66 ], [ 2.849, 12.236 ], [ 2.49, 12.233 ], [ 2.155, 11.94 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "brk_group": null, "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Nigeria", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400.000000, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1, "area_jk": "90505184", "area_hec": "90505184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.5, 4.772 ], [ 7.462, 4.412 ], [ 7.083, 4.465 ], [ 6.698, 4.241 ], [ 5.898, 4.263 ], [ 5.363, 4.888 ], [ 5.034, 5.612 ], [ 4.326, 6.271 ], [ 3.574, 6.258 ], [ 2.692, 6.259 ], [ 2.749, 7.871 ], [ 2.724, 8.507 ], [ 2.912, 9.138 ], [ 3.22, 9.444 ], [ 3.705, 10.063 ], [ 3.6, 10.332 ], [ 3.797, 10.735 ], [ 3.572, 11.328 ], [ 3.611, 11.66 ], [ 3.681, 12.553 ], [ 3.967, 12.956 ], [ 4.108, 13.531 ], [ 4.368, 13.748 ], [ 5.443, 13.866 ], [ 6.445, 13.493 ], [ 6.82, 13.115 ], [ 7.331, 13.098 ], [ 7.805, 13.344 ], [ 9.015, 12.827 ], [ 9.525, 12.851 ], [ 10.115, 13.277 ], [ 10.701, 13.247 ], [ 10.99, 13.387 ], [ 11.528, 13.329 ], [ 12.302, 13.037 ], [ 13.084, 13.596 ], [ 13.319, 13.556 ], [ 13.995, 12.462 ], [ 14.181, 12.484 ], [ 14.577, 12.085 ], [ 14.468, 11.905 ], [ 14.415, 11.572 ], [ 13.573, 10.799 ], [ 13.309, 10.16 ], [ 13.168, 9.641 ], [ 12.956, 9.418 ], [ 12.754, 8.718 ], [ 12.219, 8.306 ], [ 12.064, 7.8 ], [ 11.839, 7.397 ], [ 11.746, 6.981 ], [ 11.059, 6.644 ], [ 10.497, 7.055 ], [ 10.118, 7.039 ], [ 9.523, 6.454 ], [ 9.233, 6.444 ], [ 8.758, 5.48 ], [ 8.5, 4.772 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "brk_group": null, "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Norway", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "32917811", "area_hec": "32917811" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.027, 58.856 ], [ 10.357, 59.47 ], [ 8.382, 58.313 ], [ 7.049, 58.079 ], [ 5.666, 58.588 ], [ 5.308, 59.663 ], [ 4.992, 61.971 ], [ 5.913, 62.614 ], [ 8.553, 63.454 ], [ 10.528, 64.486 ], [ 12.358, 65.88 ], [ 14.761, 67.811 ], [ 16.436, 68.563 ], [ 19.184, 69.817 ], [ 21.378, 70.255 ], [ 23.024, 70.202 ], [ 24.547, 71.031 ], [ 26.37, 70.986 ], [ 28.166, 71.186 ], [ 31.293, 70.454 ], [ 30.005, 70.186 ], [ 31.101, 69.558 ], [ 29.4, 69.157 ], [ 28.592, 69.065 ], [ 29.016, 69.766 ], [ 27.732, 70.164 ], [ 26.18, 69.825 ], [ 25.689, 69.092 ], [ 24.736, 68.65 ], [ 23.662, 68.891 ], [ 22.356, 68.842 ], [ 21.245, 69.37 ], [ 20.646, 69.106 ], [ 20.025, 69.065 ], [ 19.879, 68.407 ], [ 17.994, 68.567 ], [ 17.729, 68.011 ], [ 16.769, 68.014 ], [ 16.109, 67.302 ], [ 15.108, 66.194 ], [ 13.556, 64.787 ], [ 13.92, 64.445 ], [ 13.572, 64.049 ], [ 12.58, 64.066 ], [ 11.931, 63.128 ], [ 11.992, 61.8 ], [ 12.631, 61.294 ], [ 12.3, 60.118 ], [ 11.468, 59.432 ], [ 11.027, 58.856 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "brk_group": null, "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Oman", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "162876", "area_hec": "162876" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.391, 25.896 ], [ 56.261, 25.715 ], [ 56.071, 26.055 ], [ 56.362, 26.396 ], [ 56.486, 26.309 ], [ 56.391, 25.896 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "brk_group": null, "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Oman", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "30807009", "area_hec": "30807009" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.861, 21.114 ], [ 58.488, 20.429 ], [ 58.034, 20.481 ], [ 57.826, 20.243 ], [ 57.666, 19.736 ], [ 57.789, 19.068 ], [ 57.694, 18.945 ], [ 57.234, 18.948 ], [ 56.61, 18.574 ], [ 56.512, 18.087 ], [ 56.283, 17.876 ], [ 55.661, 17.884 ], [ 55.27, 17.632 ], [ 55.275, 17.228 ], [ 54.791, 16.951 ], [ 54.239, 17.045 ], [ 53.571, 16.708 ], [ 53.109, 16.651 ], [ 52.782, 17.35 ], [ 52.0, 19.0 ], [ 55.0, 20.0 ], [ 55.667, 22.0 ], [ 55.208, 22.708 ], [ 55.234, 23.111 ], [ 55.526, 23.525 ], [ 55.529, 23.934 ], [ 55.981, 24.131 ], [ 55.804, 24.27 ], [ 55.886, 24.921 ], [ 56.397, 24.925 ], [ 56.845, 24.242 ], [ 57.404, 23.879 ], [ 58.137, 23.748 ], [ 58.729, 23.566 ], [ 59.181, 22.992 ], [ 59.45, 22.66 ], [ 59.808, 22.534 ], [ 59.806, 22.311 ], [ 59.442, 21.715 ], [ 59.282, 21.434 ], [ 58.861, 21.114 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "brk_group": null, "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Pakistan", "name_alt": null, "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300.000000, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "87388265", "area_hec": "87388265" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.158, 37.133 ], [ 75.897, 36.667 ], [ 76.193, 35.898 ], [ 77.838, 35.494 ], [ 76.872, 34.654 ], [ 75.757, 34.505 ], [ 74.24, 34.749 ], [ 73.75, 34.318 ], [ 74.104, 33.441 ], [ 74.452, 32.765 ], [ 75.259, 32.271 ], [ 74.406, 31.693 ], [ 74.421, 30.98 ], [ 73.451, 29.976 ], [ 72.824, 28.962 ], [ 71.778, 27.913 ], [ 70.617, 27.989 ], [ 69.514, 26.941 ], [ 70.169, 26.492 ], [ 70.283, 25.722 ], [ 70.845, 25.215 ], [ 71.043, 24.357 ], [ 68.843, 24.359 ], [ 68.177, 23.692 ], [ 67.444, 23.945 ], [ 67.145, 24.664 ], [ 66.373, 25.425 ], [ 64.53, 25.237 ], [ 62.906, 25.218 ], [ 61.497, 25.078 ], [ 61.874, 26.24 ], [ 63.317, 26.756 ], [ 63.234, 27.217 ], [ 62.755, 27.379 ], [ 62.728, 28.26 ], [ 61.772, 28.699 ], [ 61.369, 29.303 ], [ 60.874, 29.829 ], [ 62.55, 29.319 ], [ 63.55, 29.468 ], [ 64.148, 29.341 ], [ 64.35, 29.56 ], [ 65.047, 29.472 ], [ 66.347, 29.888 ], [ 66.382, 30.739 ], [ 66.939, 31.305 ], [ 67.683, 31.303 ], [ 67.793, 31.583 ], [ 68.557, 31.713 ], [ 68.927, 31.62 ], [ 69.318, 31.901 ], [ 69.263, 32.502 ], [ 69.687, 33.105 ], [ 70.324, 33.358 ], [ 69.93, 34.02 ], [ 70.882, 33.989 ], [ 71.157, 34.349 ], [ 71.115, 34.733 ], [ 71.613, 35.153 ], [ 71.499, 35.651 ], [ 71.262, 36.074 ], [ 71.846, 36.51 ], [ 72.92, 36.72 ], [ 74.068, 36.836 ], [ 74.576, 37.021 ], [ 75.158, 37.133 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "brk_group": null, "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Panama", "name_alt": null, "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "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": 4, "tiny": -99, "homepart": 1, "area_jk": "7527900", "area_hec": "7527900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.882, 7.224 ], [ -78.215, 7.512 ], [ -78.429, 8.052 ], [ -78.182, 8.319 ], [ -78.436, 8.388 ], [ -78.622, 8.718 ], [ -79.12, 8.996 ], [ -79.558, 8.932 ], [ -79.761, 8.585 ], [ -80.165, 8.333 ], [ -80.383, 8.298 ], [ -80.481, 8.09 ], [ -80.004, 7.548 ], [ -80.277, 7.42 ], [ -80.421, 7.272 ], [ -80.886, 7.221 ], [ -81.059, 7.818 ], [ -81.19, 7.648 ], [ -81.519, 7.707 ], [ -81.721, 8.109 ], [ -82.131, 8.175 ], [ -82.391, 8.292 ], [ -82.82, 8.291 ], [ -82.851, 8.074 ], [ -82.966, 8.225 ], [ -82.913, 8.424 ], [ -82.83, 8.626 ], [ -82.869, 8.807 ], [ -82.719, 8.926 ], [ -82.927, 9.074 ], [ -82.933, 9.477 ], [ -82.546, 9.566 ], [ -82.187, 9.207 ], [ -82.208, 8.996 ], [ -81.809, 8.951 ], [ -81.714, 9.032 ], [ -81.439, 8.786 ], [ -80.947, 8.858 ], [ -80.522, 9.111 ], [ -79.915, 9.313 ], [ -79.573, 9.612 ], [ -79.021, 9.553 ], [ -79.058, 9.455 ], [ -78.501, 9.421 ], [ -78.056, 9.248 ], [ -77.73, 8.947 ], [ -77.353, 8.671 ], [ -77.475, 8.524 ], [ -77.243, 7.935 ], [ -77.431, 7.638 ], [ -77.753, 7.71 ], [ -77.882, 7.224 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 3, "type": "Geo unit", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 1, "geounit": "Papua New Guinea", "gu_a3": "PNX", "su_dif": 0, "subunit": "Papua New Guinea", "su_a3": "PNX", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PNX", "brk_name": "Papua New Guinea", "brk_group": null, "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Papua New Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Papua New Guinea", "name_alt": null, "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 5882103, "gdp_md_est": 12828.001794, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PG", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "1236271", "area_hec": "1236271" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 153.14, -4.5 ], [ 152.827, -4.766 ], [ 152.639, -4.176 ], [ 152.406, -3.79 ], [ 151.953, -3.462 ], [ 151.384, -3.035 ], [ 150.662, -2.741 ], [ 150.94, -2.5 ], [ 151.48, -2.78 ], [ 151.82, -3.0 ], [ 152.24, -3.24 ], [ 152.64, -3.66 ], [ 153.02, -3.98 ], [ 153.14, -4.5 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 3, "type": "Geo unit", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 1, "geounit": "Papua New Guinea", "gu_a3": "PNX", "su_dif": 0, "subunit": "Papua New Guinea", "su_a3": "PNX", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PNX", "brk_name": "Papua New Guinea", "brk_group": null, "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Papua New Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Papua New Guinea", "name_alt": null, "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 5882103, "gdp_md_est": 12828.001794, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PG", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "3851124", "area_hec": "3851124" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.983, -5.478 ], [ 151.459, -5.56 ], [ 151.301, -5.841 ], [ 150.754, -6.084 ], [ 150.241, -6.318 ], [ 149.71, -6.316 ], [ 148.89, -6.026 ], [ 148.319, -5.747 ], [ 148.402, -5.438 ], [ 149.298, -5.584 ], [ 149.846, -5.505 ], [ 149.996, -5.026 ], [ 150.14, -5.001 ], [ 150.237, -5.532 ], [ 150.808, -5.456 ], [ 151.09, -5.114 ], [ 151.648, -4.757 ], [ 151.538, -4.168 ], [ 152.137, -4.149 ], [ 152.339, -4.313 ], [ 152.319, -4.868 ], [ 151.983, -5.478 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 3, "type": "Geo unit", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 1, "geounit": "Papua New Guinea", "gu_a3": "PNX", "su_dif": 0, "subunit": "Papua New Guinea", "su_a3": "PNX", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PNX", "brk_name": "Papua New Guinea", "brk_group": null, "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Papua New Guinea", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Papua New Guinea", "name_alt": null, "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 5882103, "gdp_md_est": 12828.001794, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PG", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "40494854", "area_hec": "40494854" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.192, -7.388 ], [ 148.085, -8.044 ], [ 148.734, -9.105 ], [ 149.307, -9.071 ], [ 149.267, -9.514 ], [ 150.039, -9.684 ], [ 149.739, -9.873 ], [ 150.802, -10.294 ], [ 150.691, -10.583 ], [ 150.028, -10.652 ], [ 149.782, -10.393 ], [ 148.923, -10.281 ], [ 147.913, -10.13 ], [ 147.135, -9.492 ], [ 146.568, -8.943 ], [ 146.048, -8.067 ], [ 144.744, -7.63 ], [ 143.897, -7.915 ], [ 143.286, -8.245 ], [ 143.414, -8.983 ], [ 142.628, -9.327 ], [ 142.068, -9.16 ], [ 141.034, -9.118 ], [ 141.017, -5.859 ], [ 141.0, -2.6 ], [ 142.735, -3.289 ], [ 144.584, -3.861 ], [ 145.273, -4.374 ], [ 145.83, -4.877 ], [ 145.982, -5.466 ], [ 147.648, -6.084 ], [ 147.891, -6.614 ], [ 146.971, -6.722 ], [ 147.192, -7.388 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "brk_group": null, "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Paraguay", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "40078645", "area_hec": "40078645" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.685, -22.249 ], [ -62.291, -21.052 ], [ -62.266, -20.514 ], [ -61.786, -19.634 ], [ -60.044, -19.343 ], [ -59.115, -19.357 ], [ -58.184, -19.868 ], [ -58.166, -20.177 ], [ -57.871, -20.733 ], [ -57.937, -22.09 ], [ -56.882, -22.282 ], [ -56.473, -22.086 ], [ -55.798, -22.357 ], [ -55.611, -22.656 ], [ -55.518, -23.572 ], [ -55.401, -23.957 ], [ -55.028, -24.001 ], [ -54.653, -23.84 ], [ -54.293, -24.021 ], [ -54.294, -24.571 ], [ -54.429, -25.162 ], [ -54.625, -25.739 ], [ -54.789, -26.622 ], [ -55.696, -27.388 ], [ -56.487, -27.549 ], [ -57.61, -27.396 ], [ -58.618, -27.124 ], [ -57.634, -25.604 ], [ -57.777, -25.162 ], [ -58.807, -24.771 ], [ -60.029, -24.033 ], [ -60.847, -23.881 ], [ -62.685, -22.249 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "brk_group": null, "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Peru", "name_alt": null, "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "130830420", "area_hec": "130830420" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.59, -17.58 ], [ -69.858, -18.093 ], [ -70.373, -18.348 ], [ -71.375, -17.774 ], [ -71.462, -17.363 ], [ -73.445, -16.359 ], [ -75.238, -15.266 ], [ -76.009, -14.649 ], [ -76.424, -13.823 ], [ -76.259, -13.535 ], [ -77.106, -12.223 ], [ -78.092, -10.378 ], [ -79.037, -8.387 ], [ -79.446, -7.931 ], [ -79.761, -7.194 ], [ -80.537, -6.542 ], [ -81.25, -6.137 ], [ -80.926, -5.691 ], [ -81.411, -4.737 ], [ -81.1, -4.036 ], [ -80.303, -3.405 ], [ -80.184, -3.821 ], [ -80.469, -4.059 ], [ -80.442, -4.426 ], [ -80.029, -4.346 ], [ -79.625, -4.454 ], [ -79.205, -4.959 ], [ -78.64, -4.548 ], [ -78.451, -3.873 ], [ -77.838, -3.003 ], [ -76.635, -2.609 ], [ -75.545, -1.562 ], [ -75.234, -0.911 ], [ -75.373, -0.152 ], [ -75.107, -0.057 ], [ -74.442, -0.531 ], [ -74.122, -1.003 ], [ -73.659, -1.26 ], [ -73.07, -2.309 ], [ -72.326, -2.434 ], [ -71.775, -2.17 ], [ -71.414, -2.343 ], [ -70.814, -2.257 ], [ -70.048, -2.725 ], [ -70.693, -3.743 ], [ -70.394, -3.767 ], [ -69.894, -4.298 ], [ -70.795, -4.251 ], [ -70.929, -4.402 ], [ -71.748, -4.594 ], [ -72.892, -5.275 ], [ -72.965, -5.741 ], [ -73.22, -6.089 ], [ -73.12, -6.63 ], [ -73.725, -6.919 ], [ -73.723, -7.341 ], [ -73.987, -7.524 ], [ -73.571, -8.424 ], [ -73.015, -9.033 ], [ -73.227, -9.462 ], [ -72.563, -9.52 ], [ -72.185, -10.054 ], [ -71.302, -10.079 ], [ -70.482, -9.49 ], [ -70.549, -11.009 ], [ -70.094, -11.124 ], [ -69.53, -10.952 ], [ -68.665, -12.561 ], [ -68.88, -12.9 ], [ -68.929, -13.603 ], [ -68.949, -14.454 ], [ -69.34, -14.953 ], [ -69.16, -15.324 ], [ -69.39, -15.66 ], [ -68.96, -16.501 ], [ -69.59, -17.58 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "907256", "area_hec": "907256" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.527, 13.07 ], [ 121.262, 12.206 ], [ 120.834, 12.704 ], [ 120.323, 13.466 ], [ 121.18, 13.43 ], [ 121.527, 13.07 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "1218208", "area_hec": "1218208" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.883, 11.892 ], [ 122.484, 11.582 ], [ 123.12, 11.584 ], [ 123.101, 11.166 ], [ 122.638, 10.741 ], [ 122.003, 10.441 ], [ 121.967, 10.906 ], [ 122.038, 11.416 ], [ 121.883, 11.892 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "1327091", "area_hec": "1327091" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.505, 9.316 ], [ 117.174, 8.367 ], [ 117.665, 9.067 ], [ 118.387, 9.684 ], [ 118.987, 10.376 ], [ 119.511, 11.37 ], [ 119.69, 10.554 ], [ 119.029, 10.004 ], [ 118.505, 9.316 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "2032162", "area_hec": "2032162" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.982, 10.279 ], [ 123.623, 9.95 ], [ 123.31, 9.318 ], [ 122.996, 9.022 ], [ 122.38, 9.713 ], [ 122.586, 9.981 ], [ 122.837, 10.261 ], [ 122.947, 10.882 ], [ 123.499, 10.941 ], [ 123.338, 10.267 ], [ 124.078, 11.233 ], [ 123.982, 10.279 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "2102593", "area_hec": "2102593" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.503, 12.163 ], [ 125.784, 11.046 ], [ 125.012, 11.312 ], [ 125.033, 10.976 ], [ 125.277, 10.359 ], [ 124.802, 10.135 ], [ 124.76, 10.838 ], [ 124.459, 10.89 ], [ 124.302, 11.495 ], [ 124.891, 11.416 ], [ 124.878, 11.794 ], [ 124.267, 12.558 ], [ 125.227, 12.536 ], [ 125.503, 12.163 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "10070072", "area_hec": "10070072" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.377, 8.415 ], [ 126.478, 7.75 ], [ 126.537, 7.189 ], [ 126.197, 6.274 ], [ 125.831, 7.294 ], [ 125.364, 6.787 ], [ 125.683, 6.05 ], [ 125.397, 5.581 ], [ 124.22, 6.161 ], [ 123.939, 6.885 ], [ 124.244, 7.361 ], [ 123.61, 7.833 ], [ 123.296, 7.419 ], [ 122.826, 7.457 ], [ 122.085, 6.899 ], [ 121.92, 7.192 ], [ 122.312, 8.035 ], [ 122.942, 8.316 ], [ 123.488, 8.693 ], [ 123.841, 8.24 ], [ 124.602, 8.514 ], [ 124.765, 8.96 ], [ 125.471, 8.987 ], [ 125.412, 9.76 ], [ 126.223, 9.286 ], [ 126.307, 8.783 ], [ 126.377, 8.415 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "brk_group": null, "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Philippines", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "11565825", "area_hec": "11565825" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.321, 18.504 ], [ 121.938, 18.219 ], [ 122.246, 18.479 ], [ 122.337, 18.225 ], [ 122.174, 17.81 ], [ 122.516, 17.093 ], [ 122.252, 16.262 ], [ 121.663, 15.931 ], [ 121.505, 15.125 ], [ 121.729, 14.328 ], [ 122.259, 14.218 ], [ 122.701, 14.336 ], [ 123.95, 13.782 ], [ 123.855, 13.238 ], [ 124.181, 12.998 ], [ 124.077, 12.537 ], [ 123.298, 13.027 ], [ 122.929, 13.553 ], [ 122.671, 13.186 ], [ 122.035, 13.784 ], [ 121.126, 13.637 ], [ 120.629, 13.858 ], [ 120.679, 14.271 ], [ 120.992, 14.525 ], [ 120.693, 14.757 ], [ 120.564, 14.396 ], [ 120.07, 14.971 ], [ 119.921, 15.406 ], [ 119.884, 16.364 ], [ 120.287, 16.035 ], [ 120.39, 17.599 ], [ 120.716, 18.505 ], [ 121.321, 18.504 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "brk_group": null, "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Poland", "name_alt": null, "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "31039737", "area_hec": "31039737" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.017, 51.107 ], [ 14.607, 51.745 ], [ 14.685, 52.09 ], [ 14.438, 52.625 ], [ 14.075, 52.981 ], [ 14.353, 53.248 ], [ 14.12, 53.757 ], [ 14.803, 54.051 ], [ 16.363, 54.513 ], [ 17.623, 54.852 ], [ 18.621, 54.683 ], [ 18.696, 54.439 ], [ 19.661, 54.426 ], [ 20.892, 54.312 ], [ 22.731, 54.328 ], [ 23.244, 54.221 ], [ 23.484, 53.913 ], [ 23.527, 53.47 ], [ 23.805, 53.09 ], [ 23.799, 52.691 ], [ 23.2, 52.487 ], [ 23.508, 52.024 ], [ 23.527, 51.578 ], [ 24.03, 50.705 ], [ 23.923, 50.425 ], [ 23.427, 50.309 ], [ 22.518, 49.477 ], [ 22.776, 49.027 ], [ 22.558, 49.086 ], [ 21.608, 49.47 ], [ 20.888, 49.329 ], [ 20.416, 49.431 ], [ 19.825, 49.217 ], [ 19.321, 49.572 ], [ 18.91, 49.436 ], [ 18.853, 49.496 ], [ 18.393, 49.989 ], [ 17.649, 50.049 ], [ 17.555, 50.362 ], [ 16.869, 50.474 ], [ 16.72, 50.216 ], [ 16.176, 50.423 ], [ 16.239, 50.698 ], [ 15.491, 50.785 ], [ 15.017, 51.107 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "brk_group": null, "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Portugal", "name_alt": null, "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "9340970", "area_hec": "9340970" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.035, 41.881 ], [ -8.672, 42.135 ], [ -8.264, 42.281 ], [ -8.013, 41.791 ], [ -7.423, 41.792 ], [ -7.251, 41.918 ], [ -6.669, 41.883 ], [ -6.389, 41.382 ], [ -6.851, 41.111 ], [ -6.864, 40.331 ], [ -7.026, 40.184 ], [ -7.067, 39.712 ], [ -7.499, 39.63 ], [ -7.098, 39.03 ], [ -7.374, 38.373 ], [ -7.029, 38.076 ], [ -7.167, 37.804 ], [ -7.537, 37.429 ], [ -7.454, 37.098 ], [ -7.856, 36.838 ], [ -8.383, 36.979 ], [ -8.899, 36.869 ], [ -8.746, 37.651 ], [ -8.84, 38.266 ], [ -9.287, 38.358 ], [ -9.527, 38.737 ], [ -9.447, 39.392 ], [ -9.048, 39.755 ], [ -8.977, 40.159 ], [ -8.769, 40.761 ], [ -8.791, 41.184 ], [ -8.991, 41.544 ], [ -9.035, 41.881 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "brk_group": null, "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "formal_fr": null, "note_adm0": "Commonwealth of U.S.A.", "note_brk": null, "name_sort": "Puerto Rico", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99, "area_jk": "922534", "area_hec": "922534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.282, 18.515 ], [ -65.771, 18.427 ], [ -65.591, 18.228 ], [ -65.847, 17.976 ], [ -66.6, 17.982 ], [ -67.184, 17.947 ], [ -67.242, 18.375 ], [ -67.101, 18.521 ], [ -66.282, 18.515 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "brk_group": null, "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Qatar", "name_alt": null, "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "1132862", "area_hec": "1132862" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.81, 24.755 ], [ 50.744, 25.482 ], [ 51.013, 26.007 ], [ 51.286, 26.115 ], [ 51.589, 25.801 ], [ 51.607, 25.216 ], [ 51.39, 24.627 ], [ 51.112, 24.556 ], [ 50.81, 24.755 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "brk_group": null, "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Romania", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "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, "area_jk": "23834687", "area_hec": "23834687" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.71, 47.882 ], [ 23.142, 48.096 ], [ 23.761, 47.986 ], [ 24.402, 47.982 ], [ 24.866, 47.737 ], [ 25.208, 47.891 ], [ 25.946, 47.987 ], [ 26.198, 48.221 ], [ 26.619, 48.221 ], [ 26.924, 48.123 ], [ 27.234, 47.827 ], [ 27.551, 47.405 ], [ 28.128, 46.81 ], [ 28.16, 46.372 ], [ 28.054, 45.945 ], [ 28.234, 45.488 ], [ 28.68, 45.304 ], [ 29.15, 45.465 ], [ 29.603, 45.293 ], [ 29.627, 45.035 ], [ 29.142, 44.82 ], [ 28.838, 44.914 ], [ 28.558, 43.708 ], [ 27.97, 43.812 ], [ 27.242, 44.176 ], [ 26.065, 43.944 ], [ 25.569, 43.688 ], [ 24.101, 43.741 ], [ 23.332, 43.897 ], [ 22.945, 43.824 ], [ 22.657, 44.235 ], [ 22.474, 44.409 ], [ 22.706, 44.578 ], [ 22.459, 44.703 ], [ 22.145, 44.478 ], [ 21.562, 44.769 ], [ 21.483, 45.181 ], [ 20.874, 45.416 ], [ 20.762, 45.735 ], [ 20.22, 46.127 ], [ 21.022, 46.316 ], [ 21.627, 46.994 ], [ 22.1, 47.672 ], [ 22.71, 47.882 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "577339", "area_hec": "577339" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.604, 73.212 ], [ 142.088, 73.205 ], [ 140.038, 73.317 ], [ 139.863, 73.37 ], [ 140.812, 73.765 ], [ 142.062, 73.858 ], [ 143.483, 73.475 ], [ 143.604, 73.212 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "644297", "area_hec": "644297" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.732, 75.084 ], [ 149.576, 74.689 ], [ 147.977, 74.778 ], [ 146.119, 75.173 ], [ 146.358, 75.497 ], [ 148.222, 75.346 ], [ 150.732, 75.084 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "1191105", "area_hec": "1191105" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.076, 78.307 ], [ 99.438, 77.921 ], [ 101.265, 79.234 ], [ 102.086, 79.346 ], [ 102.838, 79.281 ], [ 105.372, 78.713 ], [ 105.076, 78.307 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "1471105", "area_hec": "1471105" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.731, 54.328 ], [ 20.892, 54.312 ], [ 19.661, 54.426 ], [ 19.889, 54.866 ], [ 21.268, 55.191 ], [ 22.316, 55.015 ], [ 22.758, 54.857 ], [ 22.651, 54.583 ], [ 22.731, 54.328 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "2722199", "area_hec": "2722199" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.086, 75.563 ], [ 144.3, 74.82 ], [ 140.614, 74.848 ], [ 138.955, 74.612 ], [ 136.974, 75.262 ], [ 137.512, 75.949 ], [ 138.831, 76.137 ], [ 141.472, 76.093 ], [ 145.086, 75.563 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "2986735", "area_hec": "2986735" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.94, 78.881 ], [ 97.758, 78.756 ], [ 94.973, 79.045 ], [ 93.313, 79.427 ], [ 92.545, 80.144 ], [ 91.181, 80.341 ], [ 93.778, 81.025 ], [ 95.941, 81.25 ], [ 97.884, 80.747 ], [ 100.187, 79.78 ], [ 99.94, 78.881 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "8406863", "area_hec": "8406863" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 143.648, 50.748 ], [ 144.654, 48.976 ], [ 143.174, 49.307 ], [ 142.559, 47.862 ], [ 143.534, 46.837 ], [ 143.505, 46.138 ], [ 142.748, 46.741 ], [ 142.092, 45.967 ], [ 141.907, 46.806 ], [ 142.018, 47.78 ], [ 141.904, 48.859 ], [ 142.136, 49.615 ], [ 142.18, 50.952 ], [ 141.594, 51.935 ], [ 141.683, 53.302 ], [ 142.607, 53.762 ], [ 142.21, 54.225 ], [ 142.655, 54.366 ], [ 142.915, 53.705 ], [ 143.261, 52.741 ], [ 143.235, 51.757 ], [ 143.648, 50.748 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "8702994", "area_hec": "8702994" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.536, 70.721 ], [ 56.945, 70.633 ], [ 53.677, 70.763 ], [ 53.412, 71.207 ], [ 51.602, 71.475 ], [ 51.456, 72.015 ], [ 52.478, 72.229 ], [ 52.444, 72.775 ], [ 54.428, 73.627 ], [ 53.508, 73.75 ], [ 55.903, 74.627 ], [ 55.632, 75.081 ], [ 57.869, 75.609 ], [ 61.17, 76.252 ], [ 64.498, 76.439 ], [ 66.211, 76.81 ], [ 68.157, 76.94 ], [ 68.852, 76.545 ], [ 68.181, 76.234 ], [ 64.637, 75.738 ], [ 61.584, 75.261 ], [ 58.477, 74.309 ], [ 56.987, 73.333 ], [ 55.419, 72.371 ], [ 55.623, 71.541 ], [ 57.536, 70.721 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "brk_group": null, "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Russian Federation", "name_alt": null, "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "1659502392", "area_hec": "1659502392" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.97, 76.974 ], [ 107.24, 76.48 ], [ 108.154, 76.723 ], [ 111.077, 76.71 ], [ 113.332, 76.222 ], [ 114.134, 75.848 ], [ 113.885, 75.328 ], [ 112.779, 75.032 ], [ 110.151, 74.477 ], [ 109.4, 74.18 ], [ 110.64, 74.04 ], [ 112.119, 73.788 ], [ 113.019, 73.977 ], [ 113.53, 73.335 ], [ 113.969, 73.595 ], [ 115.568, 73.753 ], [ 118.776, 73.588 ], [ 119.02, 73.12 ], [ 123.201, 72.971 ], [ 123.258, 73.735 ], [ 125.38, 73.56 ], [ 126.976, 73.566 ], [ 128.591, 73.039 ], [ 129.052, 72.399 ], [ 128.46, 71.98 ], [ 129.716, 71.193 ], [ 131.289, 70.787 ], [ 132.254, 71.836 ], [ 133.858, 71.386 ], [ 135.562, 71.655 ], [ 137.498, 71.348 ], [ 138.234, 71.628 ], [ 139.87, 71.488 ], [ 139.148, 72.416 ], [ 140.468, 72.849 ], [ 149.5, 72.2 ], [ 150.351, 71.606 ], [ 152.969, 70.842 ], [ 157.007, 71.031 ], [ 158.998, 70.867 ], [ 159.83, 70.453 ], [ 159.709, 69.722 ], [ 160.94, 69.437 ], [ 162.279, 69.642 ], [ 164.053, 69.668 ], [ 165.94, 69.472 ], [ 167.836, 69.583 ], [ 169.578, 68.694 ], [ 170.817, 69.014 ], [ 170.008, 69.653 ], [ 170.453, 70.097 ], [ 173.644, 69.817 ], [ 175.724, 69.877 ], [ 178.6, 69.4 ], [ 180.0, 68.964 ], [ 180.0, 64.98 ], [ 179.993, 64.974 ], [ 178.707, 64.535 ], [ 177.411, 64.608 ], [ 178.313, 64.076 ], [ 178.908, 63.252 ], [ 179.37, 62.983 ], [ 179.486, 62.569 ], [ 179.228, 62.304 ], [ 177.364, 62.522 ], [ 174.569, 61.769 ], [ 173.68, 61.653 ], [ 172.15, 60.95 ], [ 170.698, 60.336 ], [ 170.331, 59.882 ], [ 168.9, 60.574 ], [ 166.295, 59.789 ], [ 165.84, 60.16 ], [ 164.877, 59.732 ], [ 163.539, 59.869 ], [ 163.217, 59.211 ], [ 162.017, 58.243 ], [ 162.053, 57.839 ], [ 163.192, 57.615 ], [ 163.058, 56.159 ], [ 162.13, 56.122 ], [ 161.702, 55.286 ], [ 162.118, 54.855 ], [ 160.369, 54.344 ], [ 160.022, 53.203 ], [ 158.531, 52.959 ], [ 158.231, 51.943 ], [ 156.79, 51.011 ], [ 156.42, 51.7 ], [ 155.992, 53.159 ], [ 155.434, 55.381 ], [ 155.914, 56.768 ], [ 156.758, 57.365 ], [ 156.81, 57.832 ], [ 158.364, 58.056 ], [ 160.151, 59.315 ], [ 161.872, 60.343 ], [ 163.67, 61.141 ], [ 164.474, 62.551 ], [ 163.258, 62.466 ], [ 162.658, 61.642 ], [ 160.121, 60.544 ], [ 159.302, 61.774 ], [ 156.721, 61.434 ], [ 154.218, 59.758 ], [ 155.044, 59.145 ], [ 152.812, 58.884 ], [ 151.266, 58.781 ], [ 151.338, 59.504 ], [ 149.784, 59.656 ], [ 148.545, 59.164 ], [ 145.487, 59.336 ], [ 142.198, 59.04 ], [ 138.958, 57.088 ], [ 135.126, 54.73 ], [ 136.702, 54.604 ], [ 137.193, 53.977 ], [ 138.165, 53.755 ], [ 138.805, 54.255 ], [ 139.901, 54.19 ], [ 141.345, 53.09 ], [ 141.379, 52.239 ], [ 140.597, 51.24 ], [ 140.513, 50.045 ], [ 140.062, 48.447 ], [ 138.555, 47.0 ], [ 138.22, 46.308 ], [ 136.862, 45.144 ], [ 135.515, 43.989 ], [ 134.869, 43.398 ], [ 133.537, 42.812 ], [ 132.906, 42.798 ], [ 132.278, 43.285 ], [ 130.936, 42.553 ], [ 130.78, 42.22 ], [ 130.64, 42.395 ], [ 130.634, 42.903 ], [ 131.145, 42.93 ], [ 131.289, 44.111 ], [ 131.025, 44.968 ], [ 131.883, 45.321 ], [ 133.097, 45.144 ], [ 133.77, 46.117 ], [ 134.112, 47.212 ], [ 134.501, 47.578 ], [ 135.026, 48.478 ], [ 133.374, 48.183 ], [ 132.507, 47.789 ], [ 130.987, 47.79 ], [ 130.582, 48.73 ], [ 129.398, 49.441 ], [ 127.657, 49.76 ], [ 127.287, 50.74 ], [ 126.939, 51.354 ], [ 126.564, 51.784 ], [ 125.946, 52.793 ], [ 125.068, 53.161 ], [ 123.572, 53.459 ], [ 122.246, 53.432 ], [ 121.003, 53.251 ], [ 120.177, 52.754 ], [ 120.726, 52.516 ], [ 120.738, 51.964 ], [ 120.182, 51.644 ], [ 119.279, 50.583 ], [ 119.288, 50.143 ], [ 117.879, 49.511 ], [ 116.679, 49.889 ], [ 115.486, 49.805 ], [ 114.962, 50.14 ], [ 114.362, 50.248 ], [ 112.898, 49.544 ], [ 111.581, 49.378 ], [ 110.662, 49.13 ], [ 109.402, 49.293 ], [ 108.475, 49.282 ], [ 107.868, 49.794 ], [ 106.889, 50.274 ], [ 105.887, 50.406 ], [ 104.622, 50.275 ], [ 103.677, 50.09 ], [ 102.256, 50.511 ], [ 102.065, 51.26 ], [ 100.889, 51.517 ], [ 99.982, 51.634 ], [ 98.862, 52.047 ], [ 97.826, 51.011 ], [ 98.232, 50.422 ], [ 97.26, 49.726 ], [ 95.814, 49.977 ], [ 94.816, 50.013 ], [ 94.148, 50.48 ], [ 93.104, 50.495 ], [ 92.235, 50.802 ], [ 90.714, 50.332 ], [ 88.806, 49.471 ], [ 87.751, 49.297 ], [ 87.36, 49.215 ], [ 86.829, 49.827 ], [ 85.541, 49.693 ], [ 85.116, 50.117 ], [ 84.416, 50.311 ], [ 83.935, 50.889 ], [ 83.383, 51.069 ], [ 81.946, 50.812 ], [ 80.568, 51.388 ], [ 80.036, 50.865 ], [ 77.801, 53.404 ], [ 76.525, 54.177 ], [ 76.891, 54.49 ], [ 74.385, 53.547 ], [ 73.426, 53.49 ], [ 73.508, 54.036 ], [ 72.224, 54.377 ], [ 71.18, 54.133 ], [ 70.865, 55.17 ], [ 69.068, 55.385 ], [ 68.169, 54.97 ], [ 65.667, 54.601 ], [ 65.178, 54.354 ], [ 61.437, 54.006 ], [ 60.978, 53.665 ], [ 61.7, 52.98 ], [ 60.74, 52.72 ], [ 60.927, 52.447 ], [ 59.968, 51.96 ], [ 61.588, 51.273 ], [ 61.337, 50.799 ], [ 59.933, 50.842 ], [ 59.642, 50.545 ], [ 58.363, 51.064 ], [ 56.778, 51.044 ], [ 55.717, 50.622 ], [ 54.533, 51.026 ], [ 52.329, 51.719 ], [ 50.767, 51.693 ], [ 48.702, 50.605 ], [ 48.578, 49.875 ], [ 47.55, 50.455 ], [ 46.752, 49.356 ], [ 47.044, 49.152 ], [ 46.466, 48.394 ], [ 47.315, 47.716 ], [ 48.057, 47.744 ], [ 48.695, 47.076 ], [ 48.593, 46.561 ], [ 49.101, 46.399 ], [ 48.645, 45.806 ], [ 47.676, 45.642 ], [ 46.682, 44.609 ], [ 47.591, 43.66 ], [ 47.492, 42.987 ], [ 48.584, 41.809 ], [ 47.987, 41.406 ], [ 47.816, 41.151 ], [ 47.373, 41.22 ], [ 46.686, 41.827 ], [ 46.405, 41.861 ], [ 45.776, 42.092 ], [ 45.47, 42.503 ], [ 44.538, 42.712 ], [ 43.931, 42.555 ], [ 43.756, 42.741 ], [ 42.394, 43.22 ], [ 40.922, 43.382 ], [ 40.077, 43.553 ], [ 39.955, 43.435 ], [ 38.68, 44.28 ], [ 37.539, 44.657 ], [ 36.675, 45.245 ], [ 37.403, 45.404 ], [ 38.233, 46.241 ], [ 37.674, 46.637 ], [ 39.148, 47.045 ], [ 39.121, 47.263 ], [ 38.224, 47.102 ], [ 38.255, 47.546 ], [ 38.771, 47.826 ], [ 39.738, 47.899 ], [ 39.896, 48.232 ], [ 39.675, 48.784 ], [ 40.081, 49.307 ], [ 40.069, 49.601 ], [ 38.595, 49.926 ], [ 38.011, 49.916 ], [ 37.394, 50.384 ], [ 36.626, 50.226 ], [ 35.356, 50.577 ], [ 35.378, 50.774 ], [ 35.022, 51.208 ], [ 34.225, 51.256 ], [ 34.142, 51.566 ], [ 34.392, 51.769 ], [ 33.753, 52.335 ], [ 32.716, 52.239 ], [ 32.412, 52.289 ], [ 32.159, 52.061 ], [ 31.786, 52.102 ], [ 31.54, 52.742 ], [ 31.305, 53.074 ], [ 31.498, 53.167 ], [ 32.304, 53.133 ], [ 32.694, 53.351 ], [ 32.406, 53.618 ], [ 31.731, 53.794 ], [ 31.791, 53.975 ], [ 31.384, 54.157 ], [ 30.758, 54.812 ], [ 30.972, 55.081 ], [ 30.874, 55.551 ], [ 29.896, 55.789 ], [ 29.372, 55.67 ], [ 29.23, 55.918 ], [ 28.177, 56.169 ], [ 27.855, 56.759 ], [ 27.77, 57.244 ], [ 27.288, 57.474 ], [ 27.717, 57.792 ], [ 27.42, 58.725 ], [ 28.132, 59.301 ], [ 27.981, 59.475 ], [ 29.118, 60.028 ], [ 28.07, 60.504 ], [ 30.211, 61.78 ], [ 31.14, 62.358 ], [ 31.516, 62.868 ], [ 30.036, 63.553 ], [ 30.445, 64.204 ], [ 29.544, 64.949 ], [ 30.218, 65.806 ], [ 29.055, 66.944 ], [ 29.977, 67.698 ], [ 28.446, 68.365 ], [ 28.592, 69.065 ], [ 29.4, 69.157 ], [ 31.101, 69.558 ], [ 32.133, 69.906 ], [ 33.776, 69.301 ], [ 36.514, 69.063 ], [ 40.292, 67.932 ], [ 41.06, 67.457 ], [ 41.126, 66.792 ], [ 40.016, 66.266 ], [ 38.383, 65.999 ], [ 33.919, 66.76 ], [ 33.184, 66.632 ], [ 34.815, 65.9 ], [ 34.879, 65.436 ], [ 34.944, 64.414 ], [ 36.231, 64.109 ], [ 37.013, 63.85 ], [ 37.142, 64.335 ], [ 36.54, 64.764 ], [ 37.176, 65.143 ], [ 39.593, 64.521 ], [ 40.436, 64.764 ], [ 39.763, 65.497 ], [ 42.093, 66.476 ], [ 43.016, 66.419 ], [ 43.95, 66.069 ], [ 44.532, 66.756 ], [ 43.698, 67.353 ], [ 44.188, 67.951 ], [ 43.453, 68.571 ], [ 46.25, 68.25 ], [ 46.821, 67.69 ], [ 45.555, 67.567 ], [ 45.562, 67.01 ], [ 46.349, 66.668 ], [ 47.894, 66.885 ], [ 48.139, 67.522 ], [ 50.228, 67.999 ], [ 53.717, 68.857 ], [ 54.472, 68.808 ], [ 53.486, 68.201 ], [ 54.726, 68.097 ], [ 55.443, 68.439 ], [ 57.317, 68.466 ], [ 58.802, 68.881 ], [ 59.941, 68.278 ], [ 61.078, 68.941 ], [ 60.03, 69.52 ], [ 60.55, 69.85 ], [ 63.504, 69.547 ], [ 64.888, 69.235 ], [ 68.512, 68.092 ], [ 69.181, 68.616 ], [ 68.164, 69.144 ], [ 68.135, 69.356 ], [ 66.93, 69.455 ], [ 67.26, 69.929 ], [ 66.725, 70.709 ], [ 66.695, 71.029 ], [ 68.54, 71.934 ], [ 69.196, 72.843 ], [ 69.94, 73.04 ], [ 72.588, 72.776 ], [ 72.796, 72.22 ], [ 71.848, 71.409 ], [ 72.47, 71.09 ], [ 72.792, 70.391 ], [ 72.565, 69.021 ], [ 73.668, 68.408 ], [ 73.239, 67.74 ], [ 71.28, 66.32 ], [ 72.423, 66.173 ], [ 72.821, 66.533 ], [ 73.921, 66.79 ], [ 74.186, 67.284 ], [ 75.052, 67.76 ], [ 74.469, 68.329 ], [ 74.936, 68.989 ], [ 73.842, 69.072 ], [ 73.602, 69.628 ], [ 74.4, 70.632 ], [ 73.101, 71.447 ], [ 74.891, 72.121 ], [ 74.659, 72.832 ], [ 75.158, 72.855 ], [ 75.683, 72.301 ], [ 75.289, 71.336 ], [ 76.359, 71.153 ], [ 75.903, 71.874 ], [ 77.577, 72.267 ], [ 79.652, 72.32 ], [ 81.5, 71.75 ], [ 80.611, 72.583 ], [ 80.511, 73.648 ], [ 82.25, 73.85 ], [ 84.655, 73.806 ], [ 86.822, 73.937 ], [ 86.01, 74.46 ], [ 87.167, 75.116 ], [ 88.316, 75.144 ], [ 90.26, 75.64 ], [ 92.901, 75.773 ], [ 93.234, 76.047 ], [ 95.86, 76.14 ], [ 96.678, 75.915 ], [ 98.922, 76.447 ], [ 100.76, 76.43 ], [ 101.035, 76.862 ], [ 101.991, 77.287 ], [ 104.352, 77.698 ], [ 106.067, 77.374 ], [ 104.705, 77.127 ], [ 106.97, 76.974 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "brk_group": null, "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Rwanda", "name_alt": null, "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "2336539", "area_hec": "2336539" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.419, -1.135 ], [ 30.816, -1.699 ], [ 30.758, -2.287 ], [ 30.47, -2.414 ], [ 29.938, -2.349 ], [ 29.632, -2.918 ], [ 29.025, -2.839 ], [ 29.117, -2.292 ], [ 29.255, -2.215 ], [ 29.292, -1.62 ], [ 29.579, -1.341 ], [ 29.822, -1.443 ], [ 30.419, -1.135 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "brk_group": null, "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "South Sudan", "name_alt": null, "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227.000000, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "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": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1, "area_jk": "62488131", "area_hec": "62488131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.963, 9.464 ], [ 33.975, 8.685 ], [ 33.825, 8.379 ], [ 33.295, 8.355 ], [ 32.954, 7.785 ], [ 33.568, 7.713 ], [ 34.075, 7.226 ], [ 34.25, 6.826 ], [ 34.707, 6.594 ], [ 35.298, 5.506 ], [ 34.62, 4.847 ], [ 34.005, 4.25 ], [ 33.39, 3.79 ], [ 32.686, 3.792 ], [ 31.881, 3.558 ], [ 31.246, 3.782 ], [ 30.834, 3.509 ], [ 29.953, 4.174 ], [ 29.716, 4.601 ], [ 29.159, 4.389 ], [ 28.697, 4.455 ], [ 28.429, 4.287 ], [ 27.98, 4.408 ], [ 27.374, 5.234 ], [ 27.213, 5.551 ], [ 26.466, 5.947 ], [ 26.213, 6.547 ], [ 25.797, 6.979 ], [ 25.124, 7.5 ], [ 25.115, 7.825 ], [ 24.567, 8.229 ], [ 23.887, 8.62 ], [ 24.194, 8.729 ], [ 24.537, 8.918 ], [ 24.795, 9.81 ], [ 25.07, 10.274 ], [ 25.791, 10.411 ], [ 25.962, 10.136 ], [ 26.477, 9.553 ], [ 26.752, 9.467 ], [ 27.113, 9.639 ], [ 27.834, 9.604 ], [ 27.971, 9.398 ], [ 28.967, 9.398 ], [ 29.001, 9.604 ], [ 29.516, 9.793 ], [ 29.619, 10.085 ], [ 29.997, 10.291 ], [ 30.838, 9.707 ], [ 31.353, 9.81 ], [ 31.851, 10.531 ], [ 32.4, 11.081 ], [ 32.314, 11.681 ], [ 32.074, 11.973 ], [ 32.675, 12.025 ], [ 32.743, 12.248 ], [ 33.207, 12.179 ], [ 33.087, 11.441 ], [ 33.207, 10.72 ], [ 33.722, 10.325 ], [ 33.842, 9.982 ], [ 33.825, 9.484 ], [ 33.963, 9.464 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "brk_group": null, "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Saudi Arabia", "name_alt": null, "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "191993309", "area_hec": "191993309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.779, 16.348 ], [ 42.65, 16.775 ], [ 42.348, 17.076 ], [ 42.271, 17.475 ], [ 41.754, 17.833 ], [ 41.221, 18.672 ], [ 40.939, 19.486 ], [ 40.248, 20.175 ], [ 39.802, 20.339 ], [ 39.139, 21.292 ], [ 39.024, 21.987 ], [ 39.066, 22.58 ], [ 38.493, 23.689 ], [ 38.024, 24.079 ], [ 37.484, 24.285 ], [ 37.155, 24.858 ], [ 37.209, 25.084 ], [ 36.932, 25.603 ], [ 36.64, 25.826 ], [ 36.249, 26.57 ], [ 35.64, 27.377 ], [ 35.13, 28.063 ], [ 34.632, 28.058 ], [ 34.788, 28.607 ], [ 34.832, 28.957 ], [ 34.956, 29.357 ], [ 36.069, 29.198 ], [ 36.501, 29.505 ], [ 36.74, 29.865 ], [ 37.504, 30.004 ], [ 37.668, 30.339 ], [ 37.999, 30.509 ], [ 37.002, 31.508 ], [ 39.005, 32.01 ], [ 39.196, 32.161 ], [ 40.4, 31.89 ], [ 41.89, 31.19 ], [ 44.709, 29.179 ], [ 46.569, 29.099 ], [ 47.46, 29.003 ], [ 47.709, 28.526 ], [ 48.416, 28.552 ], [ 48.808, 27.69 ], [ 49.3, 27.461 ], [ 49.471, 27.11 ], [ 50.152, 26.69 ], [ 50.213, 26.277 ], [ 50.113, 25.944 ], [ 50.24, 25.608 ], [ 50.527, 25.328 ], [ 50.661, 25.0 ], [ 50.81, 24.755 ], [ 51.112, 24.556 ], [ 51.39, 24.627 ], [ 51.58, 24.245 ], [ 51.618, 24.014 ], [ 52.001, 23.001 ], [ 55.007, 22.497 ], [ 55.208, 22.708 ], [ 55.667, 22.0 ], [ 55.0, 20.0 ], [ 52.0, 19.0 ], [ 49.117, 18.617 ], [ 48.183, 18.167 ], [ 47.467, 17.117 ], [ 47.0, 16.95 ], [ 46.75, 17.283 ], [ 46.367, 17.233 ], [ 45.4, 17.333 ], [ 45.217, 17.433 ], [ 44.063, 17.41 ], [ 43.791, 17.32 ], [ 43.381, 17.58 ], [ 43.116, 17.088 ], [ 43.218, 16.667 ], [ 42.779, 16.348 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 1, "geounit": "Scotland", "gu_a3": "SCT", "su_dif": 0, "subunit": "Scotland", "su_a3": "SCT", "brk_diff": 0, "name": "Scotland", "name_long": "Scotland", "brk_a3": "SCT", "brk_name": "Scotland", "brk_group": null, "abbrev": "Scot.", "postal": "SC", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Scotland", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 5254800, "gdp_md_est": 164298.000000, "pop_year": 0, "lastcensus": -99, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "SC", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "-99", "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": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "7440600", "area_hec": "7440600" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.006, 55.805 ], [ -2.229, 55.669 ], [ -2.264, 55.436 ], [ -3.23, 54.936 ], [ -3.615, 54.601 ], [ -3.63, 54.615 ], [ -4.844, 54.791 ], [ -5.082, 55.062 ], [ -4.719, 55.508 ], [ -5.048, 55.784 ], [ -5.586, 55.311 ], [ -5.645, 56.275 ], [ -6.15, 56.785 ], [ -5.787, 57.819 ], [ -5.01, 58.63 ], [ -4.212, 58.551 ], [ -3.005, 58.635 ], [ -4.074, 57.553 ], [ -3.055, 57.69 ], [ -1.959, 57.685 ], [ -2.22, 56.87 ], [ -3.119, 55.974 ], [ -2.085, 55.91 ], [ -2.006, 55.805 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "brk_group": null, "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Senegal", "name_alt": null, "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "19433061", "area_hec": "19433061" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.714, 13.595 ], [ -17.126, 14.373 ], [ -17.625, 14.729 ], [ -17.185, 14.919 ], [ -16.701, 15.621 ], [ -16.463, 16.135 ], [ -16.121, 16.456 ], [ -15.624, 16.369 ], [ -15.136, 16.587 ], [ -14.577, 16.598 ], [ -14.1, 16.304 ], [ -13.436, 16.039 ], [ -12.831, 15.304 ], [ -12.171, 14.617 ], [ -12.125, 13.995 ], [ -11.928, 13.422 ], [ -11.553, 13.141 ], [ -11.468, 12.755 ], [ -11.514, 12.443 ], [ -11.658, 12.387 ], [ -12.204, 12.466 ], [ -12.279, 12.354 ], [ -12.499, 12.332 ], [ -13.218, 12.576 ], [ -13.7, 12.586 ], [ -15.549, 12.628 ], [ -15.817, 12.516 ], [ -16.148, 12.548 ], [ -16.677, 12.385 ], [ -16.841, 13.151 ], [ -15.931, 13.13 ], [ -15.691, 13.27 ], [ -15.512, 13.279 ], [ -15.141, 13.509 ], [ -14.712, 13.298 ], [ -14.278, 13.281 ], [ -13.845, 13.505 ], [ -14.047, 13.794 ], [ -14.377, 13.626 ], [ -14.687, 13.63 ], [ -15.082, 13.877 ], [ -15.399, 13.86 ], [ -15.625, 13.624 ], [ -16.714, 13.595 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 8, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 3, "type": "Geo unit", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 1, "geounit": "Serbia", "gu_a3": "SRS", "su_dif": 0, "subunit": "Serbia", "su_a3": "SRS", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRS", "brk_name": "Serbia", "brk_group": null, "abbrev": "Serb.", "postal": "SR", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Serbia", "name_alt": null, "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 5332944, "gdp_md_est": 58060.582521, "pop_year": -99, "lastcensus": -99, "gdp_year": 0, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SR", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "7638866", "area_hec": "7638866" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.874, 45.416 ], [ 21.483, 45.181 ], [ 21.562, 44.769 ], [ 22.145, 44.478 ], [ 22.459, 44.703 ], [ 22.706, 44.578 ], [ 22.474, 44.409 ], [ 22.657, 44.235 ], [ 22.41, 44.008 ], [ 22.5, 43.643 ], [ 22.986, 43.211 ], [ 22.605, 42.898 ], [ 22.437, 42.58 ], [ 22.545, 42.461 ], [ 22.381, 42.32 ], [ 21.917, 42.304 ], [ 21.577, 42.245 ], [ 21.543, 42.32 ], [ 21.663, 42.439 ], [ 21.775, 42.683 ], [ 21.633, 42.677 ], [ 21.439, 42.862 ], [ 21.274, 42.91 ], [ 21.143, 43.069 ], [ 20.956, 43.131 ], [ 20.814, 43.272 ], [ 20.635, 43.217 ], [ 20.497, 42.885 ], [ 20.258, 42.813 ], [ 20.34, 42.898 ], [ 19.959, 43.106 ], [ 19.63, 43.214 ], [ 19.484, 43.352 ], [ 19.218, 43.524 ], [ 19.454, 43.568 ], [ 19.6, 44.038 ], [ 19.118, 44.423 ], [ 19.368, 44.863 ], [ 19.006, 44.86 ], [ 19.39, 45.236 ], [ 19.073, 45.522 ], [ 18.83, 45.909 ], [ 19.596, 46.172 ], [ 20.22, 46.127 ], [ 20.762, 45.735 ], [ 20.874, 45.416 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "brk_group": null, "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sierra Leone", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "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, "area_jk": "7597268", "area_hec": "7597268" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.439, 6.786 ], [ -11.708, 6.86 ], [ -12.428, 7.263 ], [ -12.949, 7.799 ], [ -13.124, 8.164 ], [ -13.247, 8.903 ], [ -12.712, 9.343 ], [ -12.597, 9.62 ], [ -12.426, 9.836 ], [ -12.15, 9.859 ], [ -11.917, 10.047 ], [ -11.117, 10.046 ], [ -10.839, 9.688 ], [ -10.622, 9.268 ], [ -10.655, 8.977 ], [ -10.494, 8.716 ], [ -10.505, 8.349 ], [ -10.23, 8.406 ], [ -10.696, 7.939 ], [ -11.147, 7.397 ], [ -11.2, 7.106 ], [ -11.439, 6.786 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "brk_group": null, "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Slovak Republic", "name_alt": null, "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "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": 4, "tiny": -99, "homepart": 1, "area_jk": "4706626", "area_hec": "4706626" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.853, 49.496 ], [ 18.91, 49.436 ], [ 19.321, 49.572 ], [ 19.825, 49.217 ], [ 20.416, 49.431 ], [ 20.888, 49.329 ], [ 21.608, 49.47 ], [ 22.558, 49.086 ], [ 22.281, 48.825 ], [ 22.086, 48.422 ], [ 21.872, 48.32 ], [ 20.801, 48.624 ], [ 20.474, 48.563 ], [ 20.239, 48.328 ], [ 19.77, 48.203 ], [ 19.661, 48.267 ], [ 19.174, 48.111 ], [ 18.777, 48.082 ], [ 18.697, 47.881 ], [ 17.857, 47.758 ], [ 17.488, 47.867 ], [ 16.98, 48.123 ], [ 16.88, 48.47 ], [ 16.96, 48.597 ], [ 17.102, 48.817 ], [ 17.545, 48.8 ], [ 17.887, 48.904 ], [ 17.913, 48.996 ], [ 18.105, 49.044 ], [ 18.171, 49.272 ], [ 18.4, 49.315 ], [ 18.555, 49.495 ], [ 18.853, 49.496 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "brk_group": null, "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Slovenia", "name_alt": null, "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "1911765", "area_hec": "1911765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.806, 46.509 ], [ 14.633, 46.432 ], [ 15.137, 46.659 ], [ 16.012, 46.684 ], [ 16.202, 46.852 ], [ 16.37, 46.841 ], [ 16.565, 46.504 ], [ 15.769, 46.238 ], [ 15.671, 45.834 ], [ 15.324, 45.732 ], [ 15.328, 45.452 ], [ 14.935, 45.472 ], [ 14.595, 45.635 ], [ 14.412, 45.466 ], [ 13.715, 45.5 ], [ 13.938, 45.591 ], [ 13.698, 46.017 ], [ 13.806, 46.509 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "brk_group": null, "abbrev": "S. Is.", "postal": "SB", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Solomon Islands", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "301576", "area_hec": "301576" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.538, -7.348 ], [ 157.339, -7.405 ], [ 156.902, -7.177 ], [ 156.491, -6.766 ], [ 156.543, -6.599 ], [ 157.14, -7.022 ], [ 157.538, -7.348 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "brk_group": null, "abbrev": "S. Is.", "postal": "SB", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Solomon Islands", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "358872", "area_hec": "358872" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.119, -10.483 ], [ 162.399, -10.826 ], [ 161.7, -10.82 ], [ 161.32, -10.205 ], [ 161.917, -10.447 ], [ 162.119, -10.483 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "brk_group": null, "abbrev": "S. Is.", "postal": "SB", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Solomon Islands", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "573445", "area_hec": "573445" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 161.68, -9.6 ], [ 161.529, -9.784 ], [ 160.788, -8.918 ], [ 160.58, -8.32 ], [ 160.92, -8.32 ], [ 161.28, -9.12 ], [ 161.68, -9.6 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "brk_group": null, "abbrev": "S. Is.", "postal": "SB", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Solomon Islands", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "590838", "area_hec": "590838" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.852, -9.873 ], [ 160.463, -9.895 ], [ 159.849, -9.794 ], [ 159.64, -9.64 ], [ 159.703, -9.243 ], [ 160.363, -9.4 ], [ 160.689, -9.61 ], [ 160.852, -9.873 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "brk_group": null, "abbrev": "S. Is.", "postal": "SB", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Solomon Islands", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "644157", "area_hec": "644157" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 159.875, -8.337 ], [ 159.917, -8.538 ], [ 159.134, -8.114 ], [ 158.586, -7.755 ], [ 158.211, -7.422 ], [ 158.36, -7.32 ], [ 158.82, -7.56 ], [ 159.64, -8.02 ], [ 159.875, -8.337 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "brk_group": null, "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Somalia", "name_alt": null, "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524.000000, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "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, "area_jk": "48521272", "area_hec": "48521272" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.729, 11.579 ], [ 50.259, 11.68 ], [ 50.732, 12.022 ], [ 51.111, 12.025 ], [ 51.134, 11.748 ], [ 51.041, 11.166 ], [ 51.045, 10.641 ], [ 50.834, 10.28 ], [ 50.552, 9.199 ], [ 50.071, 8.082 ], [ 49.453, 6.805 ], [ 48.595, 5.339 ], [ 47.741, 4.219 ], [ 46.565, 2.855 ], [ 45.564, 2.046 ], [ 44.068, 1.053 ], [ 43.136, 0.292 ], [ 42.042, -0.919 ], [ 41.811, -1.446 ], [ 41.585, -1.683 ], [ 40.993, -0.858 ], [ 40.981, 2.784 ], [ 41.855, 3.919 ], [ 42.129, 4.234 ], [ 42.77, 4.253 ], [ 43.661, 4.958 ], [ 44.964, 5.002 ], [ 47.789, 8.003 ], [ 48.487, 8.838 ], [ 48.938, 9.452 ], [ 48.938, 9.973 ], [ 48.938, 10.982 ], [ 48.942, 11.394 ], [ 48.948, 11.411 ], [ 49.268, 11.43 ], [ 49.729, 11.579 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "brk_group": null, "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "formal_fr": null, "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "name_alt": null, "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SL", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "16697635", "area_hec": "16697635" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.938, 9.452 ], [ 48.487, 8.838 ], [ 47.789, 8.003 ], [ 46.948, 7.997 ], [ 43.679, 9.184 ], [ 43.297, 9.54 ], [ 42.928, 10.022 ], [ 42.559, 10.573 ], [ 42.777, 10.927 ], [ 43.145, 11.462 ], [ 43.471, 11.278 ], [ 43.667, 10.864 ], [ 44.118, 10.445 ], [ 44.614, 10.442 ], [ 45.557, 10.698 ], [ 46.645, 10.816 ], [ 47.526, 11.127 ], [ 48.022, 11.193 ], [ 48.379, 11.376 ], [ 48.948, 11.411 ], [ 48.942, 11.394 ], [ 48.938, 10.982 ], [ 48.938, 9.973 ], [ 48.938, 9.452 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "brk_group": null, "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "South Africa", "name_alt": null, "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "121643946", "area_hec": "121643946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.521, -29.257 ], [ 31.326, -29.402 ], [ 30.902, -29.91 ], [ 30.623, -30.424 ], [ 30.056, -31.14 ], [ 28.926, -32.172 ], [ 28.22, -32.772 ], [ 27.465, -33.227 ], [ 26.419, -33.615 ], [ 25.91, -33.667 ], [ 25.781, -33.945 ], [ 25.173, -33.797 ], [ 24.678, -33.987 ], [ 23.594, -33.794 ], [ 22.988, -33.916 ], [ 22.574, -33.864 ], [ 21.543, -34.259 ], [ 20.689, -34.417 ], [ 20.071, -34.795 ], [ 19.616, -34.819 ], [ 19.193, -34.463 ], [ 18.855, -34.444 ], [ 18.425, -33.998 ], [ 18.377, -34.136 ], [ 18.244, -33.868 ], [ 18.25, -33.281 ], [ 17.925, -32.611 ], [ 18.248, -32.429 ], [ 18.222, -31.662 ], [ 17.567, -30.726 ], [ 17.064, -29.879 ], [ 17.063, -29.876 ], [ 16.345, -28.577 ], [ 16.824, -28.082 ], [ 17.219, -28.356 ], [ 17.387, -28.784 ], [ 17.836, -28.856 ], [ 18.465, -29.046 ], [ 19.002, -28.972 ], [ 19.895, -28.461 ], [ 19.896, -24.768 ], [ 20.166, -24.918 ], [ 20.759, -25.868 ], [ 20.666, -26.477 ], [ 20.89, -26.828 ], [ 21.606, -26.727 ], [ 22.106, -26.28 ], [ 22.579, -25.979 ], [ 22.824, -25.5 ], [ 23.312, -25.269 ], [ 23.734, -25.39 ], [ 24.211, -25.67 ], [ 25.025, -25.72 ], [ 25.665, -25.487 ], [ 25.766, -25.175 ], [ 25.942, -24.696 ], [ 26.486, -24.616 ], [ 26.786, -24.241 ], [ 27.119, -23.574 ], [ 28.017, -22.828 ], [ 29.432, -22.091 ], [ 29.839, -22.102 ], [ 30.323, -22.272 ], [ 30.66, -22.152 ], [ 31.191, -22.252 ], [ 31.67, -23.659 ], [ 31.931, -24.369 ], [ 31.752, -25.484 ], [ 31.838, -25.843 ], [ 31.333, -25.66 ], [ 31.044, -25.732 ], [ 30.95, -26.023 ], [ 30.677, -26.398 ], [ 30.686, -26.744 ], [ 31.283, -27.286 ], [ 31.868, -27.178 ], [ 32.072, -26.734 ], [ 32.83, -26.742 ], [ 32.58, -27.47 ], [ 32.462, -28.301 ], [ 32.203, -28.752 ], [ 31.521, -29.257 ] ], [ [ 28.978, -28.956 ], [ 28.542, -28.648 ], [ 28.074, -28.852 ], [ 27.532, -29.243 ], [ 26.999, -29.876 ], [ 27.749, -30.645 ], [ 28.107, -30.546 ], [ 28.291, -30.226 ], [ 28.848, -30.07 ], [ 29.018, -29.744 ], [ 29.325, -29.257 ], [ 28.978, -28.956 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Spain", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "50230513", "area_hec": "50230513" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.035, 41.881 ], [ -8.984, 42.593 ], [ -9.393, 43.027 ], [ -7.978, 43.748 ], [ -6.755, 43.568 ], [ -5.412, 43.574 ], [ -4.348, 43.403 ], [ -3.518, 43.456 ], [ -1.901, 43.423 ], [ -1.503, 43.034 ], [ 0.338, 42.58 ], [ 0.702, 42.796 ], [ 1.827, 42.343 ], [ 2.986, 42.473 ], [ 3.039, 41.892 ], [ 2.092, 41.226 ], [ 0.81, 41.015 ], [ 0.721, 40.678 ], [ 0.107, 40.124 ], [ -0.279, 39.31 ], [ 0.111, 38.739 ], [ -0.467, 38.292 ], [ -0.683, 37.642 ], [ -1.438, 37.443 ], [ -2.147, 36.674 ], [ -3.416, 36.659 ], [ -4.369, 36.678 ], [ -4.995, 36.325 ], [ -5.377, 35.947 ], [ -5.866, 36.03 ], [ -6.237, 36.368 ], [ -6.52, 36.943 ], [ -7.454, 37.098 ], [ -7.537, 37.429 ], [ -7.167, 37.804 ], [ -7.029, 38.076 ], [ -7.374, 38.373 ], [ -7.098, 39.03 ], [ -7.499, 39.63 ], [ -7.067, 39.712 ], [ -7.026, 40.184 ], [ -6.864, 40.331 ], [ -6.851, 41.111 ], [ -6.389, 41.382 ], [ -6.669, 41.883 ], [ -7.251, 41.918 ], [ -7.423, 41.792 ], [ -8.013, 41.791 ], [ -8.264, 42.281 ], [ -8.672, 42.135 ], [ -9.035, 41.881 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "brk_group": null, "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sri Lanka", "name_alt": null, "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "6544053", "area_hec": "6544053" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.788, 7.523 ], [ 81.637, 6.482 ], [ 81.218, 6.197 ], [ 80.348, 5.968 ], [ 79.873, 6.763 ], [ 79.695, 8.201 ], [ 80.148, 9.824 ], [ 80.839, 9.268 ], [ 81.304, 8.564 ], [ 81.788, 7.523 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "brk_group": null, "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sudan", "name_alt": null, "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080.000000, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "185207428", "area_hec": "185207428" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.963, 9.464 ], [ 33.825, 9.484 ], [ 33.842, 9.982 ], [ 33.722, 10.325 ], [ 33.207, 10.72 ], [ 33.087, 11.441 ], [ 33.207, 12.179 ], [ 32.743, 12.248 ], [ 32.675, 12.025 ], [ 32.074, 11.973 ], [ 32.314, 11.681 ], [ 32.4, 11.081 ], [ 31.851, 10.531 ], [ 31.353, 9.81 ], [ 30.838, 9.707 ], [ 29.997, 10.291 ], [ 29.619, 10.085 ], [ 29.516, 9.793 ], [ 29.001, 9.604 ], [ 28.967, 9.398 ], [ 27.971, 9.398 ], [ 27.834, 9.604 ], [ 27.113, 9.639 ], [ 26.752, 9.467 ], [ 26.477, 9.553 ], [ 25.962, 10.136 ], [ 25.791, 10.411 ], [ 25.07, 10.274 ], [ 24.795, 9.81 ], [ 24.537, 8.918 ], [ 24.194, 8.729 ], [ 23.887, 8.62 ], [ 23.806, 8.666 ], [ 23.459, 8.954 ], [ 23.395, 9.265 ], [ 23.557, 9.681 ], [ 23.554, 10.089 ], [ 22.977, 10.714 ], [ 22.864, 11.142 ], [ 22.876, 11.385 ], [ 22.509, 11.679 ], [ 22.498, 12.26 ], [ 22.288, 12.646 ], [ 21.937, 12.588 ], [ 22.038, 12.956 ], [ 22.297, 13.372 ], [ 22.183, 13.787 ], [ 22.512, 14.093 ], [ 22.303, 14.327 ], [ 22.568, 14.944 ], [ 23.025, 15.681 ], [ 23.887, 15.611 ], [ 23.838, 19.581 ], [ 23.85, 20.0 ], [ 25.0, 20.003 ], [ 25.0, 22.0 ], [ 29.02, 22.0 ], [ 32.9, 22.0 ], [ 36.866, 22.0 ], [ 37.189, 21.019 ], [ 36.969, 20.837 ], [ 37.115, 19.808 ], [ 37.482, 18.614 ], [ 37.863, 18.368 ], [ 38.41, 17.998 ], [ 37.904, 17.427 ], [ 37.167, 17.263 ], [ 36.852, 16.956 ], [ 36.754, 16.292 ], [ 36.323, 14.822 ], [ 36.429, 14.422 ], [ 36.27, 13.563 ], [ 35.864, 12.578 ], [ 35.261, 12.083 ], [ 34.832, 11.319 ], [ 34.731, 10.91 ], [ 34.258, 10.63 ], [ 33.962, 9.584 ], [ 33.963, 9.464 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "brk_group": null, "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Suriname", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "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, "area_jk": "14429350", "area_hec": "14429350" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.147, 5.973 ], [ -55.949, 5.773 ], [ -55.842, 5.953 ], [ -55.033, 6.025 ], [ -53.958, 5.756 ], [ -54.479, 4.897 ], [ -54.4, 4.213 ], [ -54.007, 3.62 ], [ -54.182, 3.19 ], [ -54.27, 2.732 ], [ -54.525, 2.312 ], [ -55.098, 2.524 ], [ -55.57, 2.421 ], [ -55.973, 2.51 ], [ -56.073, 2.221 ], [ -55.906, 2.022 ], [ -55.996, 1.818 ], [ -56.539, 1.899 ], [ -57.15, 2.769 ], [ -57.281, 3.333 ], [ -57.602, 3.335 ], [ -58.045, 4.061 ], [ -57.86, 4.577 ], [ -57.914, 4.813 ], [ -57.307, 5.074 ], [ -57.147, 5.973 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "brk_group": null, "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Swaziland", "name_alt": null, "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702.000000, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "1811225", "area_hec": "1811225" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.072, -26.734 ], [ 31.868, -27.178 ], [ 31.283, -27.286 ], [ 30.686, -26.744 ], [ 30.677, -26.398 ], [ 30.95, -26.023 ], [ 31.044, -25.732 ], [ 31.333, -25.66 ], [ 31.838, -25.843 ], [ 31.986, -26.292 ], [ 32.072, -26.734 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "brk_group": null, "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Sweden", "name_alt": null, "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "45056353", "area_hec": "45056353" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.183, 65.724 ], [ 21.213, 65.026 ], [ 21.37, 64.414 ], [ 19.779, 63.61 ], [ 17.848, 62.749 ], [ 17.12, 61.341 ], [ 17.831, 60.637 ], [ 18.788, 60.082 ], [ 17.869, 58.954 ], [ 16.829, 58.72 ], [ 16.448, 57.041 ], [ 15.88, 56.104 ], [ 14.667, 56.201 ], [ 14.101, 55.408 ], [ 12.943, 55.362 ], [ 12.625, 56.307 ], [ 11.788, 57.442 ], [ 11.027, 58.856 ], [ 11.468, 59.432 ], [ 12.3, 60.118 ], [ 12.631, 61.294 ], [ 11.992, 61.8 ], [ 11.931, 63.128 ], [ 12.58, 64.066 ], [ 13.572, 64.049 ], [ 13.92, 64.445 ], [ 13.556, 64.787 ], [ 15.108, 66.194 ], [ 16.109, 67.302 ], [ 16.769, 68.014 ], [ 17.729, 68.011 ], [ 17.994, 68.567 ], [ 19.879, 68.407 ], [ 20.025, 69.065 ], [ 20.646, 69.106 ], [ 21.979, 68.617 ], [ 23.54, 67.936 ], [ 23.566, 66.396 ], [ 23.903, 66.007 ], [ 22.183, 65.724 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Switzerland", "name_alt": null, "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "4618563", "area_hec": "4618563" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.594, 47.525 ], [ 9.633, 47.348 ], [ 9.48, 47.103 ], [ 9.932, 46.921 ], [ 10.443, 46.894 ], [ 10.363, 46.484 ], [ 9.923, 46.315 ], [ 9.183, 46.44 ], [ 8.966, 46.037 ], [ 8.49, 46.005 ], [ 8.317, 46.164 ], [ 7.756, 45.825 ], [ 7.274, 45.777 ], [ 6.844, 45.991 ], [ 6.5, 46.43 ], [ 6.023, 46.273 ], [ 6.037, 46.726 ], [ 6.769, 47.288 ], [ 6.737, 47.542 ], [ 7.192, 47.45 ], [ 7.467, 47.621 ], [ 8.317, 47.614 ], [ 8.523, 47.831 ], [ 9.594, 47.525 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "brk_group": null, "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Syrian Arab Republic", "name_alt": null, "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "18489226", "area_hec": "18489226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792, 33.379 ], [ 36.834, 32.313 ], [ 35.72, 32.709 ], [ 35.701, 32.716 ], [ 35.836, 32.868 ], [ 35.821, 33.277 ], [ 36.066, 33.825 ], [ 36.612, 34.202 ], [ 36.448, 34.594 ], [ 35.998, 34.645 ], [ 35.905, 35.41 ], [ 36.15, 35.822 ], [ 36.418, 36.041 ], [ 36.685, 36.26 ], [ 36.739, 36.818 ], [ 37.067, 36.623 ], [ 38.168, 36.901 ], [ 38.7, 36.713 ], [ 39.523, 36.716 ], [ 40.673, 37.091 ], [ 41.212, 37.074 ], [ 42.35, 37.23 ], [ 41.837, 36.606 ], [ 41.29, 36.359 ], [ 41.384, 35.628 ], [ 41.006, 34.419 ], [ 38.792, 33.379 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "brk_group": null, "abbrev": "Taiwan", "postal": "TW", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "name_alt": null, "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "3428562", "area_hec": "3428562" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.778, 24.394 ], [ 121.176, 22.791 ], [ 120.747, 21.971 ], [ 120.22, 22.815 ], [ 120.106, 23.556 ], [ 120.695, 24.538 ], [ 121.495, 25.296 ], [ 121.951, 24.998 ], [ 121.778, 24.394 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "brk_group": null, "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Tajikistan", "name_alt": null, "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "13815427", "area_hec": "13815427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.014, 40.244 ], [ 70.648, 39.936 ], [ 69.56, 40.103 ], [ 69.465, 39.527 ], [ 70.549, 39.604 ], [ 71.785, 39.279 ], [ 73.675, 39.431 ], [ 73.929, 38.506 ], [ 74.257, 38.606 ], [ 74.865, 38.379 ], [ 74.83, 37.99 ], [ 74.98, 37.42 ], [ 73.949, 37.422 ], [ 73.26, 37.495 ], [ 72.637, 37.048 ], [ 72.193, 36.948 ], [ 71.845, 36.738 ], [ 71.449, 37.066 ], [ 71.542, 37.906 ], [ 71.239, 37.953 ], [ 71.348, 38.259 ], [ 70.807, 38.486 ], [ 70.376, 38.138 ], [ 70.271, 37.735 ], [ 70.117, 37.588 ], [ 69.519, 37.609 ], [ 69.196, 37.151 ], [ 68.859, 37.344 ], [ 68.136, 37.023 ], [ 67.83, 37.145 ], [ 68.392, 38.157 ], [ 68.176, 38.902 ], [ 67.442, 39.14 ], [ 67.701, 39.581 ], [ 68.536, 39.533 ], [ 69.012, 40.086 ], [ 69.329, 40.728 ], [ 70.667, 40.96 ], [ 70.458, 40.496 ], [ 70.601, 40.218 ], [ 71.014, 40.244 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "brk_group": null, "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Tanzania", "name_alt": null, "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "93355154", "area_hec": "93355154" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.904, -0.95 ], [ 34.073, -1.06 ], [ 37.699, -3.097 ], [ 37.767, -3.677 ], [ 39.202, -4.677 ], [ 38.74, -5.909 ], [ 38.8, -6.476 ], [ 39.44, -6.84 ], [ 39.47, -7.1 ], [ 39.195, -7.704 ], [ 39.252, -8.008 ], [ 39.187, -8.486 ], [ 39.536, -9.112 ], [ 39.95, -10.098 ], [ 40.317, -10.317 ], [ 39.521, -10.897 ], [ 38.428, -11.285 ], [ 37.828, -11.269 ], [ 37.471, -11.569 ], [ 36.775, -11.595 ], [ 36.514, -11.721 ], [ 35.312, -11.439 ], [ 34.56, -11.52 ], [ 34.28, -10.16 ], [ 33.941, -9.694 ], [ 33.74, -9.417 ], [ 32.759, -9.231 ], [ 32.192, -8.93 ], [ 31.556, -8.762 ], [ 31.158, -8.595 ], [ 30.74, -8.34 ], [ 30.2, -7.08 ], [ 29.62, -6.52 ], [ 29.42, -5.94 ], [ 29.52, -5.42 ], [ 29.34, -4.5 ], [ 29.753, -4.452 ], [ 30.116, -4.09 ], [ 30.506, -3.569 ], [ 30.752, -3.359 ], [ 30.743, -3.034 ], [ 30.528, -2.808 ], [ 30.47, -2.414 ], [ 30.758, -2.287 ], [ 30.816, -1.699 ], [ 30.419, -1.135 ], [ 30.77, -1.014 ], [ 31.866, -1.027 ], [ 33.904, -0.95 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "brk_group": null, "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Thailand", "name_alt": null, "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "51000692", "area_hec": "51000692" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.585, 12.187 ], [ 101.687, 12.646 ], [ 100.832, 12.627 ], [ 100.978, 13.413 ], [ 100.098, 13.407 ], [ 100.019, 12.307 ], [ 99.479, 10.846 ], [ 99.154, 9.963 ], [ 99.222, 9.239 ], [ 99.874, 9.208 ], [ 100.28, 8.295 ], [ 100.459, 7.43 ], [ 101.017, 6.857 ], [ 101.623, 6.741 ], [ 102.141, 6.222 ], [ 101.814, 5.811 ], [ 101.154, 5.691 ], [ 101.076, 6.205 ], [ 100.26, 6.643 ], [ 100.086, 6.465 ], [ 99.691, 6.848 ], [ 99.52, 7.343 ], [ 98.988, 7.908 ], [ 98.504, 8.382 ], [ 98.34, 7.795 ], [ 98.15, 8.35 ], [ 98.259, 8.974 ], [ 98.554, 9.933 ], [ 99.038, 10.96 ], [ 99.587, 11.893 ], [ 99.196, 12.805 ], [ 99.212, 13.269 ], [ 99.098, 13.828 ], [ 98.431, 14.622 ], [ 98.192, 15.124 ], [ 98.537, 15.309 ], [ 98.903, 16.178 ], [ 98.494, 16.838 ], [ 97.859, 17.568 ], [ 97.376, 18.445 ], [ 97.798, 18.627 ], [ 98.254, 19.708 ], [ 98.96, 19.753 ], [ 99.543, 20.187 ], [ 100.116, 20.418 ], [ 100.549, 20.109 ], [ 100.606, 19.508 ], [ 101.282, 19.463 ], [ 101.036, 18.409 ], [ 101.059, 17.512 ], [ 102.114, 18.109 ], [ 102.413, 17.933 ], [ 102.999, 17.962 ], [ 103.2, 18.31 ], [ 103.957, 18.241 ], [ 104.717, 17.429 ], [ 104.779, 16.442 ], [ 105.589, 15.57 ], [ 105.544, 14.724 ], [ 105.219, 14.273 ], [ 104.281, 14.417 ], [ 102.988, 14.226 ], [ 102.348, 13.394 ], [ 102.585, 12.187 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "brk_group": null, "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "1463476", "area_hec": "1463476" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.969, -8.893 ], [ 125.086, -8.657 ], [ 125.947, -8.432 ], [ 126.645, -8.398 ], [ 126.957, -8.273 ], [ 127.336, -8.397 ], [ 126.968, -8.668 ], [ 125.926, -9.106 ], [ 125.088, -9.393 ], [ 125.07, -9.09 ], [ 124.969, -8.893 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "brk_group": null, "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "République Togolaise", "note_adm0": null, "note_brk": null, "name_sort": "Togo", "name_alt": null, "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "6097940", "area_hec": "6097940" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.865, 6.142 ], [ 1.06, 5.929 ], [ 0.837, 6.28 ], [ 0.57, 6.914 ], [ 0.491, 7.412 ], [ 0.712, 8.312 ], [ 0.461, 8.677 ], [ 0.366, 9.465 ], [ 0.368, 10.191 ], [ -0.05, 10.707 ], [ 0.024, 11.019 ], [ 0.9, 10.997 ], [ 0.772, 10.471 ], [ 1.078, 10.176 ], [ 1.425, 9.825 ], [ 1.463, 9.335 ], [ 1.665, 9.129 ], [ 1.619, 6.832 ], [ 1.865, 6.142 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "brk_group": null, "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Trinidad and Tobago", "name_alt": null, "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010.000000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1, "area_jk": "773611", "area_hec": "773611" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.68, 10.76 ], [ -61.105, 10.89 ], [ -60.895, 10.855 ], [ -60.935, 10.11 ], [ -61.77, 10.0 ], [ -61.95, 10.09 ], [ -61.66, 10.365 ], [ -61.68, 10.76 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "brk_group": null, "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Tunisia", "name_alt": null, "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "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, "area_jk": "15622731", "area_hec": "15622731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.482, 30.308 ], [ 9.056, 32.103 ], [ 8.439, 32.506 ], [ 8.431, 32.748 ], [ 7.613, 33.344 ], [ 7.524, 34.097 ], [ 8.141, 34.655 ], [ 8.376, 35.48 ], [ 8.218, 36.433 ], [ 8.421, 36.946 ], [ 9.51, 37.35 ], [ 10.21, 37.23 ], [ 10.181, 36.724 ], [ 11.029, 37.092 ], [ 11.1, 36.9 ], [ 10.6, 36.41 ], [ 10.593, 35.947 ], [ 10.94, 35.699 ], [ 10.808, 34.834 ], [ 10.15, 34.331 ], [ 10.34, 33.786 ], [ 10.857, 33.769 ], [ 11.108, 33.293 ], [ 11.489, 33.137 ], [ 11.432, 32.369 ], [ 10.945, 32.082 ], [ 10.637, 31.761 ], [ 9.95, 31.376 ], [ 10.057, 30.962 ], [ 9.97, 30.539 ], [ 9.482, 30.308 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "brk_group": null, "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Turkey", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700.000000, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "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, "area_jk": "2615218", "area_hec": "2615218" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.192, 40.691 ], [ 26.358, 40.152 ], [ 26.043, 40.618 ], [ 26.057, 40.824 ], [ 26.295, 40.936 ], [ 26.604, 41.562 ], [ 26.117, 41.827 ], [ 27.136, 42.142 ], [ 27.997, 42.007 ], [ 28.116, 41.623 ], [ 28.988, 41.3 ], [ 28.806, 41.055 ], [ 27.619, 41.0 ], [ 27.192, 40.691 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "brk_group": null, "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Turkey", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700.000000, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "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, "area_jk": "77270091", "area_hec": "77270091" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.913, 41.335 ], [ 38.348, 40.949 ], [ 39.513, 41.103 ], [ 40.373, 41.014 ], [ 41.554, 41.536 ], [ 42.62, 41.583 ], [ 43.583, 41.092 ], [ 43.753, 40.74 ], [ 43.656, 40.254 ], [ 44.4, 40.005 ], [ 44.794, 39.713 ], [ 44.109, 39.428 ], [ 44.421, 38.281 ], [ 44.226, 37.972 ], [ 44.773, 37.17 ], [ 44.294, 37.002 ], [ 43.942, 37.256 ], [ 42.779, 37.385 ], [ 42.35, 37.23 ], [ 41.212, 37.074 ], [ 40.673, 37.091 ], [ 39.523, 36.716 ], [ 38.7, 36.713 ], [ 38.168, 36.901 ], [ 37.067, 36.623 ], [ 36.739, 36.818 ], [ 36.685, 36.26 ], [ 36.418, 36.041 ], [ 36.15, 35.822 ], [ 35.782, 36.275 ], [ 36.161, 36.651 ], [ 35.551, 36.565 ], [ 34.715, 36.795 ], [ 34.027, 36.22 ], [ 32.509, 36.108 ], [ 31.7, 36.644 ], [ 30.622, 36.678 ], [ 30.391, 36.263 ], [ 29.7, 36.144 ], [ 28.733, 36.677 ], [ 27.641, 36.659 ], [ 27.049, 37.653 ], [ 26.318, 38.208 ], [ 26.805, 38.986 ], [ 26.171, 39.464 ], [ 27.28, 40.42 ], [ 28.82, 40.46 ], [ 29.24, 41.22 ], [ 31.146, 41.088 ], [ 32.348, 41.736 ], [ 33.513, 42.019 ], [ 35.168, 42.04 ], [ 36.913, 41.335 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "brk_group": null, "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Turkmenistan", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780.000000, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "48081397", "area_hec": "48081397" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.211, 35.65 ], [ 61.123, 36.492 ], [ 60.378, 36.527 ], [ 59.235, 37.413 ], [ 58.436, 37.522 ], [ 57.33, 38.029 ], [ 56.619, 38.121 ], [ 56.18, 37.935 ], [ 55.512, 37.964 ], [ 54.8, 37.392 ], [ 53.922, 37.199 ], [ 53.736, 37.906 ], [ 53.881, 38.952 ], [ 53.101, 39.291 ], [ 53.358, 39.975 ], [ 52.694, 40.034 ], [ 52.915, 40.877 ], [ 53.858, 40.631 ], [ 54.737, 40.951 ], [ 54.008, 41.551 ], [ 53.722, 42.123 ], [ 52.917, 41.868 ], [ 52.815, 41.135 ], [ 52.502, 41.783 ], [ 52.944, 42.116 ], [ 54.079, 42.324 ], [ 54.755, 42.044 ], [ 55.455, 41.26 ], [ 55.968, 41.309 ], [ 57.096, 41.322 ], [ 56.932, 41.826 ], [ 57.786, 42.171 ], [ 58.629, 42.752 ], [ 59.976, 42.223 ], [ 60.083, 41.425 ], [ 60.466, 41.22 ], [ 61.547, 41.266 ], [ 61.883, 41.085 ], [ 62.374, 40.054 ], [ 63.518, 39.363 ], [ 64.17, 38.892 ], [ 65.216, 38.403 ], [ 66.546, 37.975 ], [ 66.519, 37.363 ], [ 66.217, 37.394 ], [ 65.746, 37.661 ], [ 65.589, 37.305 ], [ 64.746, 37.112 ], [ 64.546, 36.312 ], [ 63.983, 36.008 ], [ 63.194, 35.857 ], [ 62.985, 35.404 ], [ 62.231, 35.271 ], [ 61.211, 35.65 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "brk_group": null, "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Uganda", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380.000000, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "24564094", "area_hec": "24564094" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.866, -1.027 ], [ 30.77, -1.014 ], [ 30.419, -1.135 ], [ 29.822, -1.443 ], [ 29.579, -1.341 ], [ 29.588, -0.587 ], [ 29.82, -0.205 ], [ 29.876, 0.597 ], [ 30.086, 1.062 ], [ 30.468, 1.584 ], [ 30.853, 1.849 ], [ 31.174, 2.204 ], [ 30.773, 2.34 ], [ 30.834, 3.509 ], [ 31.246, 3.782 ], [ 31.881, 3.558 ], [ 32.686, 3.792 ], [ 33.39, 3.79 ], [ 34.005, 4.25 ], [ 34.479, 3.556 ], [ 34.596, 3.054 ], [ 35.036, 1.906 ], [ 34.672, 1.177 ], [ 34.18, 0.515 ], [ 33.894, 0.11 ], [ 33.904, -0.95 ], [ 31.866, -1.027 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "brk_group": null, "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Ukraine", "name_alt": null, "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "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, "area_jk": "60191670", "area_hec": "60191670" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.786, 52.102 ], [ 32.159, 52.061 ], [ 32.412, 52.289 ], [ 32.716, 52.239 ], [ 33.753, 52.335 ], [ 34.392, 51.769 ], [ 34.142, 51.566 ], [ 34.225, 51.256 ], [ 35.022, 51.208 ], [ 35.378, 50.774 ], [ 35.356, 50.577 ], [ 36.626, 50.226 ], [ 37.394, 50.384 ], [ 38.011, 49.916 ], [ 38.595, 49.926 ], [ 40.069, 49.601 ], [ 40.081, 49.307 ], [ 39.675, 48.784 ], [ 39.896, 48.232 ], [ 39.738, 47.899 ], [ 38.771, 47.826 ], [ 38.255, 47.546 ], [ 38.224, 47.102 ], [ 37.425, 47.022 ], [ 36.76, 46.699 ], [ 35.824, 46.646 ], [ 34.962, 46.273 ], [ 35.021, 45.651 ], [ 35.51, 45.41 ], [ 36.53, 45.47 ], [ 36.335, 45.113 ], [ 35.24, 44.94 ], [ 33.883, 44.361 ], [ 33.326, 44.565 ], [ 33.547, 45.035 ], [ 32.454, 45.328 ], [ 32.631, 45.519 ], [ 33.588, 45.852 ], [ 33.299, 46.081 ], [ 31.744, 46.333 ], [ 31.675, 46.706 ], [ 30.749, 46.583 ], [ 30.378, 46.032 ], [ 29.603, 45.293 ], [ 29.15, 45.465 ], [ 28.68, 45.304 ], [ 28.234, 45.488 ], [ 28.485, 45.597 ], [ 28.66, 45.94 ], [ 28.934, 46.259 ], [ 28.863, 46.438 ], [ 29.072, 46.518 ], [ 29.171, 46.379 ], [ 29.76, 46.35 ], [ 30.025, 46.424 ], [ 29.838, 46.525 ], [ 29.909, 46.674 ], [ 29.56, 46.929 ], [ 29.415, 47.347 ], [ 29.051, 47.51 ], [ 29.123, 47.849 ], [ 28.671, 48.118 ], [ 28.259, 48.156 ], [ 27.523, 48.467 ], [ 26.858, 48.368 ], [ 26.619, 48.221 ], [ 26.198, 48.221 ], [ 25.946, 47.987 ], [ 25.208, 47.891 ], [ 24.866, 47.737 ], [ 24.402, 47.982 ], [ 23.761, 47.986 ], [ 23.142, 48.096 ], [ 22.71, 47.882 ], [ 22.641, 48.15 ], [ 22.086, 48.422 ], [ 22.281, 48.825 ], [ 22.558, 49.086 ], [ 22.776, 49.027 ], [ 22.518, 49.477 ], [ 23.427, 50.309 ], [ 23.923, 50.425 ], [ 24.03, 50.705 ], [ 23.527, 51.578 ], [ 24.005, 51.617 ], [ 24.553, 51.889 ], [ 25.328, 51.911 ], [ 26.338, 51.832 ], [ 27.454, 51.592 ], [ 28.242, 51.572 ], [ 28.618, 51.428 ], [ 28.993, 51.602 ], [ 29.255, 51.368 ], [ 30.157, 51.416 ], [ 30.555, 51.319 ], [ 30.619, 51.823 ], [ 30.927, 52.042 ], [ 31.786, 52.102 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "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": null, "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United Arab Emirates", "name_alt": null, "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "fips_10": null, "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, "area_jk": "7973924", "area_hec": "7973924" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.58, 24.245 ], [ 51.757, 24.294 ], [ 51.794, 24.02 ], [ 52.577, 24.177 ], [ 53.404, 24.151 ], [ 54.008, 24.122 ], [ 54.693, 24.798 ], [ 55.439, 25.439 ], [ 56.071, 26.055 ], [ 56.261, 25.715 ], [ 56.397, 24.925 ], [ 55.886, 24.921 ], [ 55.804, 24.27 ], [ 55.981, 24.131 ], [ 55.529, 23.934 ], [ 55.526, 23.525 ], [ 55.234, 23.111 ], [ 55.208, 22.708 ], [ 55.007, 22.497 ], [ 52.001, 23.001 ], [ 51.618, 24.014 ], [ 51.58, 24.245 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "69970", "area_hec": "69970" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.758, 21.177 ], [ -156.789, 21.069 ], [ -157.325, 21.098 ], [ -157.25, 21.22 ], [ -156.758, 21.177 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "119306", "area_hec": "119306" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.345, 21.982 ], [ -159.464, 21.883 ], [ -159.8, 22.065 ], [ -159.749, 22.138 ], [ -159.596, 22.236 ], [ -159.366, 22.215 ], [ -159.345, 21.982 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "180996", "area_hec": "180996" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -157.653, 21.322 ], [ -157.707, 21.264 ], [ -157.779, 21.277 ], [ -158.127, 21.312 ], [ -158.254, 21.539 ], [ -158.293, 21.579 ], [ -158.025, 21.717 ], [ -157.942, 21.653 ], [ -157.653, 21.322 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "202684", "area_hec": "202684" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.079, 20.644 ], [ -156.415, 20.572 ], [ -156.587, 20.783 ], [ -156.702, 20.864 ], [ -156.71, 20.927 ], [ -156.613, 21.012 ], [ -156.257, 20.918 ], [ -155.996, 20.764 ], [ -156.079, 20.644 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "452364", "area_hec": "452364" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -165.579, 59.91 ], [ -166.193, 59.754 ], [ -166.848, 59.941 ], [ -167.455, 60.213 ], [ -166.468, 60.384 ], [ -165.674, 60.294 ], [ -165.579, 59.91 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "1119290", "area_hec": "1119290" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.542, 19.084 ], [ -155.688, 18.916 ], [ -155.937, 19.059 ], [ -155.908, 19.339 ], [ -156.073, 19.703 ], [ -156.024, 19.814 ], [ -155.85, 19.977 ], [ -155.919, 20.174 ], [ -155.861, 20.267 ], [ -155.785, 20.249 ], [ -155.402, 20.08 ], [ -155.225, 19.993 ], [ -155.062, 19.859 ], [ -154.807, 19.509 ], [ -154.832, 19.453 ], [ -155.222, 19.24 ], [ -155.542, 19.084 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "1201978", "area_hec": "1201978" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.006, 57.116 ], [ -154.005, 56.735 ], [ -154.516, 56.993 ], [ -154.671, 57.461 ], [ -153.763, 57.817 ], [ -153.229, 57.969 ], [ -152.565, 57.901 ], [ -152.141, 57.591 ], [ -153.006, 57.116 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "148800426", "area_hec": "148800426" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.068, 71.148 ], [ -154.344, 70.696 ], [ -153.9, 70.89 ], [ -152.21, 70.83 ], [ -152.27, 70.6 ], [ -150.74, 70.43 ], [ -149.72, 70.53 ], [ -147.613, 70.214 ], [ -145.69, 70.12 ], [ -144.92, 69.99 ], [ -143.589, 70.153 ], [ -142.072, 69.852 ], [ -140.986, 69.712 ], [ -140.986, 69.712 ], [ -140.993, 66.0 ], [ -140.998, 60.306 ], [ -140.013, 60.277 ], [ -139.039, 60.0 ], [ -138.341, 59.562 ], [ -137.452, 58.905 ], [ -136.48, 59.464 ], [ -135.476, 59.788 ], [ -134.945, 59.271 ], [ -134.271, 58.861 ], [ -133.356, 58.41 ], [ -132.73, 57.693 ], [ -131.708, 56.552 ], [ -130.008, 55.916 ], [ -129.98, 55.285 ], [ -130.536, 54.803 ], [ -131.086, 55.179 ], [ -131.967, 55.498 ], [ -132.25, 56.37 ], [ -133.539, 57.179 ], [ -134.078, 58.123 ], [ -135.038, 58.188 ], [ -136.628, 58.212 ], [ -137.8, 58.5 ], [ -139.868, 59.538 ], [ -140.825, 59.727 ], [ -142.574, 60.084 ], [ -143.959, 59.999 ], [ -145.926, 60.459 ], [ -147.114, 60.885 ], [ -148.224, 60.673 ], [ -148.018, 59.978 ], [ -148.571, 59.914 ], [ -149.728, 59.706 ], [ -150.608, 59.368 ], [ -151.716, 59.156 ], [ -151.859, 59.745 ], [ -151.41, 60.726 ], [ -150.347, 61.034 ], [ -150.621, 61.284 ], [ -151.896, 60.727 ], [ -152.578, 60.062 ], [ -154.019, 59.35 ], [ -153.287, 58.865 ], [ -154.232, 58.146 ], [ -155.308, 57.728 ], [ -156.308, 57.423 ], [ -156.556, 56.98 ], [ -158.117, 56.464 ], [ -158.433, 55.994 ], [ -159.603, 55.567 ], [ -160.29, 55.644 ], [ -161.223, 55.365 ], [ -162.238, 55.024 ], [ -163.069, 54.69 ], [ -164.786, 54.404 ], [ -164.942, 54.572 ], [ -163.848, 55.039 ], [ -162.87, 55.348 ], [ -161.804, 55.895 ], [ -160.564, 56.008 ], [ -160.071, 56.418 ], [ -158.684, 57.017 ], [ -158.461, 57.217 ], [ -157.723, 57.57 ], [ -157.55, 58.328 ], [ -157.042, 58.919 ], [ -158.195, 58.616 ], [ -158.517, 58.788 ], [ -159.059, 58.424 ], [ -159.712, 58.931 ], [ -159.981, 58.572 ], [ -160.355, 59.071 ], [ -161.355, 58.671 ], [ -161.969, 58.672 ], [ -162.055, 59.267 ], [ -161.874, 59.634 ], [ -162.518, 59.99 ], [ -163.818, 59.798 ], [ -164.662, 60.267 ], [ -165.346, 60.508 ], [ -165.351, 61.074 ], [ -166.121, 61.5 ], [ -165.734, 62.075 ], [ -164.919, 62.633 ], [ -164.562, 63.146 ], [ -163.753, 63.219 ], [ -163.067, 63.059 ], [ -162.261, 63.542 ], [ -161.534, 63.456 ], [ -160.773, 63.766 ], [ -160.958, 64.223 ], [ -161.518, 64.403 ], [ -160.778, 64.789 ], [ -161.392, 64.777 ], [ -162.453, 64.559 ], [ -162.758, 64.339 ], [ -163.546, 64.559 ], [ -164.961, 64.447 ], [ -166.425, 64.687 ], [ -166.845, 65.089 ], [ -168.111, 65.67 ], [ -166.705, 66.088 ], [ -164.475, 66.577 ], [ -163.653, 66.577 ], [ -163.789, 66.077 ], [ -161.678, 66.116 ], [ -162.49, 66.736 ], [ -163.72, 67.116 ], [ -164.431, 67.616 ], [ -165.39, 68.043 ], [ -166.764, 68.359 ], [ -166.205, 68.883 ], [ -164.431, 68.915 ], [ -163.169, 69.371 ], [ -162.931, 69.858 ], [ -161.909, 70.333 ], [ -160.935, 70.448 ], [ -159.039, 70.892 ], [ -158.12, 70.825 ], [ -156.581, 71.358 ], [ -155.068, 71.148 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "brk_group": null, "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "United States of America", "name_alt": null, "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000.000000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "fips_10": null, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "798495281", "area_hec": "798495281" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.818, 49.389 ], [ -94.64, 48.84 ], [ -94.329, 48.671 ], [ -93.631, 48.609 ], [ -92.61, 48.45 ], [ -91.64, 48.14 ], [ -90.83, 48.27 ], [ -89.6, 48.01 ], [ -89.273, 48.02 ], [ -88.378, 48.303 ], [ -87.44, 47.94 ], [ -86.462, 47.553 ], [ -85.652, 47.22 ], [ -84.876, 46.9 ], [ -84.779, 46.637 ], [ -84.544, 46.539 ], [ -84.605, 46.44 ], [ -84.337, 46.409 ], [ -84.142, 46.512 ], [ -84.092, 46.275 ], [ -83.891, 46.117 ], [ -83.616, 46.117 ], [ -83.47, 45.995 ], [ -83.593, 45.817 ], [ -82.551, 45.347 ], [ -82.338, 44.44 ], [ -82.138, 43.571 ], [ -82.43, 42.98 ], [ -82.9, 42.43 ], [ -83.12, 42.08 ], [ -83.142, 41.976 ], [ -83.03, 41.833 ], [ -82.69, 41.675 ], [ -82.439, 41.675 ], [ -81.278, 42.209 ], [ -80.247, 42.366 ], [ -78.939, 42.864 ], [ -78.92, 42.965 ], [ -79.01, 43.27 ], [ -79.172, 43.466 ], [ -78.72, 43.625 ], [ -77.738, 43.629 ], [ -76.82, 43.629 ], [ -76.5, 44.019 ], [ -76.375, 44.096 ], [ -75.318, 44.816 ], [ -74.867, 45.001 ], [ -73.348, 45.007 ], [ -71.505, 45.008 ], [ -71.405, 45.255 ], [ -71.085, 45.305 ], [ -70.66, 45.46 ], [ -70.305, 45.915 ], [ -70.0, 46.693 ], [ -69.237, 47.448 ], [ -68.905, 47.185 ], [ -68.234, 47.355 ], [ -67.79, 47.066 ], [ -67.791, 45.703 ], [ -67.137, 45.138 ], [ -66.965, 44.81 ], [ -68.032, 44.325 ], [ -69.06, 43.98 ], [ -70.116, 43.684 ], [ -70.645, 43.09 ], [ -70.815, 42.865 ], [ -70.825, 42.335 ], [ -70.495, 41.805 ], [ -70.08, 41.78 ], [ -70.185, 42.145 ], [ -69.885, 41.923 ], [ -69.965, 41.637 ], [ -70.64, 41.475 ], [ -71.12, 41.495 ], [ -71.86, 41.32 ], [ -72.295, 41.27 ], [ -72.876, 41.221 ], [ -73.71, 40.931 ], [ -72.241, 41.12 ], [ -71.945, 40.93 ], [ -73.345, 40.63 ], [ -73.982, 40.628 ], [ -73.952, 40.751 ], [ -74.257, 40.474 ], [ -73.962, 40.428 ], [ -74.178, 39.709 ], [ -74.906, 38.94 ], [ -74.98, 39.196 ], [ -75.2, 39.248 ], [ -75.528, 39.498 ], [ -75.32, 38.96 ], [ -75.072, 38.782 ], [ -75.057, 38.404 ], [ -75.377, 38.016 ], [ -75.94, 37.217 ], [ -76.031, 37.257 ], [ -75.722, 37.937 ], [ -76.233, 38.319 ], [ -76.35, 39.15 ], [ -76.543, 38.718 ], [ -76.329, 38.083 ], [ -76.99, 38.24 ], [ -76.302, 37.918 ], [ -76.259, 36.966 ], [ -75.972, 36.897 ], [ -75.868, 36.551 ], [ -75.728, 35.551 ], [ -76.363, 34.809 ], [ -77.398, 34.512 ], [ -78.055, 33.925 ], [ -78.554, 33.861 ], [ -79.061, 33.494 ], [ -79.204, 33.158 ], [ -80.301, 32.509 ], [ -80.865, 32.033 ], [ -81.336, 31.441 ], [ -81.49, 30.73 ], [ -81.314, 30.035 ], [ -80.98, 29.18 ], [ -80.536, 28.472 ], [ -80.53, 28.04 ], [ -80.056, 26.88 ], [ -80.088, 26.206 ], [ -80.132, 25.817 ], [ -80.381, 25.206 ], [ -80.68, 25.08 ], [ -81.172, 25.201 ], [ -81.33, 25.64 ], [ -81.71, 25.87 ], [ -82.24, 26.73 ], [ -82.705, 27.495 ], [ -82.855, 27.886 ], [ -82.65, 28.55 ], [ -82.93, 29.1 ], [ -83.71, 29.937 ], [ -84.1, 30.09 ], [ -85.109, 29.636 ], [ -85.288, 29.686 ], [ -85.773, 30.153 ], [ -86.4, 30.4 ], [ -87.53, 30.274 ], [ -88.418, 30.385 ], [ -89.18, 30.316 ], [ -89.594, 30.16 ], [ -89.414, 29.894 ], [ -89.43, 29.489 ], [ -89.218, 29.291 ], [ -89.408, 29.16 ], [ -89.779, 29.307 ], [ -90.155, 29.117 ], [ -90.88, 29.148 ], [ -91.627, 29.677 ], [ -92.499, 29.552 ], [ -93.226, 29.784 ], [ -93.848, 29.714 ], [ -94.69, 29.48 ], [ -95.6, 28.739 ], [ -96.594, 28.308 ], [ -97.14, 27.83 ], [ -97.37, 27.38 ], [ -97.38, 26.69 ], [ -97.33, 26.21 ], [ -97.14, 25.87 ], [ -97.53, 25.84 ], [ -98.24, 26.06 ], [ -99.02, 26.37 ], [ -99.3, 26.84 ], [ -99.52, 27.54 ], [ -100.11, 28.11 ], [ -100.456, 28.696 ], [ -100.958, 29.381 ], [ -101.662, 29.779 ], [ -102.48, 29.76 ], [ -103.11, 28.97 ], [ -103.94, 29.27 ], [ -104.457, 29.572 ], [ -104.706, 30.122 ], [ -105.037, 30.644 ], [ -105.632, 31.084 ], [ -106.143, 31.4 ], [ -106.508, 31.755 ], [ -108.24, 31.755 ], [ -108.242, 31.342 ], [ -109.035, 31.342 ], [ -111.024, 31.335 ], [ -113.305, 32.039 ], [ -114.815, 32.525 ], [ -114.721, 32.721 ], [ -115.991, 32.612 ], [ -117.128, 32.535 ], [ -117.296, 33.046 ], [ -117.944, 33.621 ], [ -118.411, 33.741 ], [ -118.52, 34.028 ], [ -119.081, 34.078 ], [ -119.439, 34.349 ], [ -120.368, 34.447 ], [ -120.623, 34.609 ], [ -120.744, 35.157 ], [ -121.715, 36.161 ], [ -122.547, 37.552 ], [ -122.512, 37.783 ], [ -122.953, 38.114 ], [ -123.727, 38.952 ], [ -123.865, 39.767 ], [ -124.398, 40.313 ], [ -124.179, 41.142 ], [ -124.214, 42.0 ], [ -124.533, 42.766 ], [ -124.142, 43.708 ], [ -124.02, 44.616 ], [ -123.899, 45.523 ], [ -124.08, 46.865 ], [ -124.396, 47.72 ], [ -124.687, 48.184 ], [ -124.566, 48.38 ], [ -123.12, 48.04 ], [ -122.587, 47.096 ], [ -122.34, 47.36 ], [ -122.5, 48.18 ], [ -122.84, 49.0 ], [ -120.0, 49.0 ], [ -117.031, 49.0 ], [ -116.048, 49.0 ], [ -113.0, 49.0 ], [ -110.05, 49.0 ], [ -107.05, 49.0 ], [ -104.048, 49.0 ], [ -100.65, 49.0 ], [ -97.229, 49.001 ], [ -95.159, 49.0 ], [ -95.156, 49.384 ], [ -94.818, 49.389 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "brk_group": null, "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Uruguay", "name_alt": null, "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "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, "area_jk": "17690935", "area_hec": "17690935" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.625, -30.216 ], [ -56.976, -30.11 ], [ -55.973, -30.883 ], [ -55.602, -30.854 ], [ -54.572, -31.494 ], [ -53.788, -32.047 ], [ -53.21, -32.728 ], [ -53.651, -33.202 ], [ -53.374, -33.768 ], [ -53.806, -34.397 ], [ -54.936, -34.953 ], [ -55.674, -34.753 ], [ -56.215, -34.86 ], [ -57.14, -34.431 ], [ -57.818, -34.462 ], [ -58.427, -33.91 ], [ -58.35, -33.263 ], [ -58.133, -33.041 ], [ -58.142, -32.044 ], [ -57.875, -31.017 ], [ -57.625, -30.216 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "brk_group": null, "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Uzbekistan", "name_alt": null, "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670.000000, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1, "area_jk": "46173089", "area_hec": "46173089" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.519, 37.363 ], [ 66.546, 37.975 ], [ 65.216, 38.403 ], [ 64.17, 38.892 ], [ 63.518, 39.363 ], [ 62.374, 40.054 ], [ 61.883, 41.085 ], [ 61.547, 41.266 ], [ 60.466, 41.22 ], [ 60.083, 41.425 ], [ 59.976, 42.223 ], [ 58.629, 42.752 ], [ 57.786, 42.171 ], [ 56.932, 41.826 ], [ 57.096, 41.322 ], [ 55.968, 41.309 ], [ 55.929, 44.996 ], [ 58.503, 45.587 ], [ 58.69, 45.5 ], [ 60.24, 44.784 ], [ 61.058, 44.406 ], [ 62.013, 43.505 ], [ 63.186, 43.65 ], [ 64.901, 43.728 ], [ 66.098, 42.998 ], [ 66.023, 41.995 ], [ 66.511, 41.988 ], [ 66.714, 41.168 ], [ 67.986, 41.136 ], [ 68.26, 40.662 ], [ 68.632, 40.669 ], [ 69.07, 41.384 ], [ 70.389, 42.081 ], [ 70.962, 42.266 ], [ 71.259, 42.168 ], [ 70.42, 41.52 ], [ 71.158, 41.144 ], [ 71.87, 41.393 ], [ 73.055, 40.866 ], [ 71.775, 40.146 ], [ 71.014, 40.244 ], [ 70.601, 40.218 ], [ 70.458, 40.496 ], [ 70.667, 40.96 ], [ 69.329, 40.728 ], [ 69.012, 40.086 ], [ 68.536, 39.533 ], [ 67.701, 39.581 ], [ 67.442, 39.14 ], [ 68.176, 38.902 ], [ 68.392, 38.157 ], [ 67.83, 37.145 ], [ 67.076, 37.356 ], [ 66.519, 37.363 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "brk_group": null, "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Vanuatu", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.500000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1, "area_jk": "224631", "area_hec": "224631" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.845, -16.466 ], [ 167.515, -16.598 ], [ 167.18, -16.16 ], [ 167.217, -15.892 ], [ 167.845, -16.466 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "brk_group": null, "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Vanuatu", "name_alt": null, "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.500000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1, "area_jk": "527036", "area_hec": "527036" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.108, -14.934 ], [ 167.27, -15.74 ], [ 167.001, -15.615 ], [ 166.793, -15.669 ], [ 166.65, -15.393 ], [ 166.629, -14.627 ], [ 167.108, -14.934 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "brk_group": null, "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "República Bolivariana de Venezuela", "note_adm0": null, "note_brk": null, "name_sort": "Venezuela, RB", "name_alt": null, "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400.000000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "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, "area_jk": "90851698", "area_hec": "90851698" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.332, 11.776 ], [ -71.36, 11.54 ], [ -71.947, 11.423 ], [ -71.621, 10.97 ], [ -71.633, 10.447 ], [ -72.074, 9.866 ], [ -71.696, 9.072 ], [ -71.265, 9.137 ], [ -71.04, 9.86 ], [ -71.35, 10.212 ], [ -71.401, 10.969 ], [ -70.155, 11.376 ], [ -70.294, 11.847 ], [ -69.943, 12.162 ], [ -69.584, 11.46 ], [ -68.883, 11.443 ], [ -68.233, 10.886 ], [ -68.194, 10.555 ], [ -67.296, 10.546 ], [ -66.228, 10.649 ], [ -65.655, 10.201 ], [ -64.891, 10.077 ], [ -64.329, 10.39 ], [ -64.318, 10.641 ], [ -63.079, 10.702 ], [ -61.881, 10.716 ], [ -62.73, 10.42 ], [ -62.389, 9.948 ], [ -61.589, 9.873 ], [ -60.831, 9.381 ], [ -60.671, 8.58 ], [ -60.15, 8.603 ], [ -59.758, 8.367 ], [ -60.551, 7.78 ], [ -60.638, 7.415 ], [ -60.296, 7.044 ], [ -60.544, 6.857 ], [ -61.159, 6.696 ], [ -61.139, 6.234 ], [ -61.41, 5.959 ], [ -60.734, 5.2 ], [ -60.601, 4.918 ], [ -60.967, 4.537 ], [ -62.085, 4.162 ], [ -62.804, 4.007 ], [ -63.093, 3.771 ], [ -63.888, 4.021 ], [ -64.629, 4.149 ], [ -64.816, 4.056 ], [ -64.368, 3.797 ], [ -64.409, 3.127 ], [ -64.27, 2.497 ], [ -63.423, 2.411 ], [ -63.369, 2.201 ], [ -64.083, 1.916 ], [ -64.199, 1.493 ], [ -64.611, 1.329 ], [ -65.355, 1.095 ], [ -65.548, 0.789 ], [ -66.326, 0.725 ], [ -66.876, 1.253 ], [ -67.181, 2.251 ], [ -67.447, 2.6 ], [ -67.81, 2.821 ], [ -67.303, 3.318 ], [ -67.338, 3.542 ], [ -67.622, 3.84 ], [ -67.823, 4.504 ], [ -67.745, 5.221 ], [ -67.522, 5.557 ], [ -67.341, 6.096 ], [ -67.695, 6.267 ], [ -68.265, 6.153 ], [ -68.985, 6.207 ], [ -69.389, 6.1 ], [ -70.093, 6.96 ], [ -70.674, 7.088 ], [ -71.96, 6.992 ], [ -72.198, 7.34 ], [ -72.445, 7.424 ], [ -72.48, 7.633 ], [ -72.361, 8.003 ], [ -72.44, 8.405 ], [ -72.66, 8.625 ], [ -72.789, 9.085 ], [ -73.305, 9.152 ], [ -73.028, 9.737 ], [ -72.905, 10.45 ], [ -72.615, 10.822 ], [ -72.228, 11.109 ], [ -71.974, 11.609 ], [ -71.332, 11.776 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "brk_group": null, "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Vietnam", "name_alt": null, "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700.000000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1, "area_jk": "33573609", "area_hec": "33573609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.05, 21.552 ], [ 106.715, 20.697 ], [ 105.882, 19.752 ], [ 105.662, 19.058 ], [ 106.427, 18.004 ], [ 107.362, 16.698 ], [ 108.269, 16.08 ], [ 108.877, 15.277 ], [ 109.335, 13.426 ], [ 109.2, 11.667 ], [ 108.366, 11.008 ], [ 107.221, 10.364 ], [ 106.405, 9.531 ], [ 105.158, 8.6 ], [ 104.795, 9.241 ], [ 105.076, 9.918 ], [ 104.334, 10.486 ], [ 105.2, 10.889 ], [ 106.25, 10.962 ], [ 105.811, 11.568 ], [ 107.491, 12.337 ], [ 107.615, 13.536 ], [ 107.383, 14.202 ], [ 107.564, 15.202 ], [ 107.313, 15.909 ], [ 106.556, 16.604 ], [ 105.926, 17.485 ], [ 105.095, 18.667 ], [ 103.897, 19.265 ], [ 104.183, 19.625 ], [ 104.823, 19.887 ], [ 104.435, 20.759 ], [ 103.204, 20.767 ], [ 102.755, 21.675 ], [ 102.17, 22.465 ], [ 102.707, 22.709 ], [ 103.504, 22.704 ], [ 104.477, 22.819 ], [ 105.329, 23.352 ], [ 105.811, 22.977 ], [ 106.725, 22.794 ], [ 106.567, 22.218 ], [ 107.043, 21.812 ], [ 108.05, 21.552 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "brk_group": null, "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "formal_fr": null, "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "name_alt": null, "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1, "area_jk": "9586088", "area_hec": "9586088" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.795, 27.121 ], [ -8.818, 27.656 ], [ -8.666, 27.656 ], [ -8.665, 27.59 ], [ -8.684, 27.396 ], [ -8.687, 25.881 ], [ -11.969, 25.933 ], [ -11.937, 23.375 ], [ -12.874, 23.285 ], [ -13.119, 22.771 ], [ -12.929, 21.327 ], [ -16.845, 21.333 ], [ -17.063, 21.0 ], [ -17.02, 21.422 ], [ -17.003, 21.421 ], [ -14.751, 21.501 ], [ -14.631, 21.861 ], [ -14.221, 22.31 ], [ -13.891, 23.691 ], [ -12.501, 24.77 ], [ -12.031, 26.031 ], [ -11.718, 26.104 ], [ -11.393, 26.883 ], [ -10.551, 26.991 ], [ -10.189, 26.861 ], [ -9.735, 26.861 ], [ -9.413, 27.088 ], [ -8.795, 27.121 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 1, "geounit": "Wales", "gu_a3": "WLS", "su_dif": 0, "subunit": "Wales", "su_a3": "WLS", "brk_diff": 0, "name": "Wales", "name_long": "Wales", "brk_a3": "WLS", "brk_name": "Wales", "brk_group": null, "abbrev": "Wales", "postal": "WA", "formal_en": null, "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Wales", "name_alt": null, "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 0, "gdp_md_est": 45268.000000, "pop_year": 2011, "lastcensus": -99, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "fips_10": null, "iso_a2": "GB", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "-99", "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": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1, "area_jk": "2647705", "area_hec": "2647705" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.094, 53.404 ], [ -2.724, 52.935 ], [ -3.067, 52.769 ], [ -3.105, 52.031 ], [ -2.674, 51.83 ], [ -2.668, 51.614 ], [ -3.391, 51.43 ], [ -3.423, 51.427 ], [ -4.984, 51.593 ], [ -5.267, 51.991 ], [ -4.222, 52.301 ], [ -4.77, 52.84 ], [ -4.58, 53.495 ], [ -3.094, 53.404 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 6, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 3, "type": "Geo unit", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 1, "geounit": "West Bank", "gu_a3": "WEB", "su_dif": 0, "subunit": "West Bank", "su_a3": "WEB", "brk_diff": 1, "name": "West Bank", "name_long": "West Bank", "brk_a3": "B54", "brk_name": "West Bank", "brk_group": null, "abbrev": "W.B.", "postal": "WB", "formal_en": "West Bank", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "West Bank", "name_alt": null, "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 2514845, "gdp_md_est": 11950.000000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "PS", "iso_a3": "-99", "iso_n3": "275", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99, "area_jk": "503822", "area_hec": "503822" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546, 32.394 ], [ 35.545, 31.782 ], [ 35.398, 31.489 ], [ 34.927, 31.353 ], [ 34.971, 31.617 ], [ 35.226, 31.754 ], [ 34.975, 31.867 ], [ 35.184, 32.532 ], [ 35.546, 32.394 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "brk_group": null, "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Yemen, Rep.", "name_alt": null, "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280.000000, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1, "area_jk": "45607621", "area_hec": "45607621" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.109, 16.651 ], [ 52.385, 16.382 ], [ 52.192, 15.938 ], [ 52.168, 15.597 ], [ 51.172, 15.175 ], [ 49.575, 14.709 ], [ 48.679, 14.003 ], [ 48.239, 13.948 ], [ 47.939, 14.007 ], [ 47.355, 13.592 ], [ 46.717, 13.4 ], [ 45.878, 13.348 ], [ 45.625, 13.291 ], [ 45.407, 13.027 ], [ 45.144, 12.954 ], [ 44.989, 12.7 ], [ 44.495, 12.722 ], [ 44.175, 12.586 ], [ 43.483, 12.637 ], [ 43.223, 13.221 ], [ 43.251, 13.768 ], [ 43.088, 14.063 ], [ 42.892, 14.802 ], [ 42.605, 15.213 ], [ 42.805, 15.262 ], [ 42.702, 15.719 ], [ 42.824, 15.912 ], [ 42.779, 16.348 ], [ 43.218, 16.667 ], [ 43.116, 17.088 ], [ 43.381, 17.58 ], [ 43.791, 17.32 ], [ 44.063, 17.41 ], [ 45.217, 17.433 ], [ 45.4, 17.333 ], [ 46.367, 17.233 ], [ 46.75, 17.283 ], [ 47.0, 16.95 ], [ 47.467, 17.117 ], [ 48.183, 18.167 ], [ 49.117, 18.617 ], [ 52.0, 19.0 ], [ 52.782, 17.35 ], [ 53.109, 16.651 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "brk_group": null, "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Zambia", "name_alt": null, "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500.000000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "fips_10": null, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1, "area_jk": "75154771", "area_hec": "75154771" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.759, -9.231 ], [ 33.231, -9.677 ], [ 33.486, -10.526 ], [ 33.315, -10.796 ], [ 33.114, -11.607 ], [ 33.306, -12.436 ], [ 32.992, -12.784 ], [ 32.688, -13.713 ], [ 33.214, -13.972 ], [ 30.18, -14.796 ], [ 30.274, -15.508 ], [ 29.517, -15.645 ], [ 28.948, -16.043 ], [ 28.826, -16.39 ], [ 28.468, -16.468 ], [ 27.598, -17.291 ], [ 27.044, -17.938 ], [ 26.707, -17.961 ], [ 26.382, -17.846 ], [ 25.264, -17.736 ], [ 25.084, -17.662 ], [ 25.077, -17.579 ], [ 24.682, -17.353 ], [ 24.034, -17.296 ], [ 23.215, -17.523 ], [ 22.562, -16.898 ], [ 21.888, -16.08 ], [ 21.934, -12.898 ], [ 24.016, -12.911 ], [ 23.931, -12.566 ], [ 24.08, -12.191 ], [ 23.904, -11.722 ], [ 24.018, -11.237 ], [ 23.912, -10.927 ], [ 24.257, -10.952 ], [ 24.314, -11.263 ], [ 24.783, -11.239 ], [ 25.418, -11.331 ], [ 25.752, -11.785 ], [ 26.553, -11.924 ], [ 27.164, -11.609 ], [ 27.389, -12.133 ], [ 28.155, -12.273 ], [ 28.524, -12.699 ], [ 28.934, -13.249 ], [ 29.7, -13.257 ], [ 29.616, -12.179 ], [ 29.341, -12.361 ], [ 28.642, -11.972 ], [ 28.372, -11.794 ], [ 28.496, -10.79 ], [ 28.674, -9.606 ], [ 28.45, -9.165 ], [ 28.735, -8.527 ], [ 29.003, -8.407 ], [ 30.346, -8.238 ], [ 30.74, -8.34 ], [ 31.158, -8.595 ], [ 31.556, -8.762 ], [ 32.192, -8.93 ], [ 32.759, -9.231 ] ] ] } },
{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 map unit", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "brk_group": null, "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Zimbabwe", "name_alt": null, "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323.000000, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "fips_10": null, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "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": 5, "tiny": -99, "homepart": 1, "area_jk": "37627038", "area_hec": "37627038" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.191, -22.252 ], [ 30.66, -22.152 ], [ 30.323, -22.272 ], [ 29.839, -22.102 ], [ 29.432, -22.091 ], [ 28.795, -21.64 ], [ 28.021, -21.486 ], [ 27.727, -20.852 ], [ 27.725, -20.499 ], [ 27.297, -20.392 ], [ 26.165, -19.293 ], [ 25.85, -18.714 ], [ 25.649, -18.536 ], [ 25.264, -17.736 ], [ 26.382, -17.846 ], [ 26.707, -17.961 ], [ 27.044, -17.938 ], [ 27.598, -17.291 ], [ 28.468, -16.468 ], [ 28.826, -16.39 ], [ 28.948, -16.043 ], [ 29.517, -15.645 ], [ 30.274, -15.508 ], [ 30.339, -15.881 ], [ 31.173, -15.861 ], [ 31.637, -16.072 ], [ 31.852, -16.319 ], [ 32.328, -16.392 ], [ 32.848, -16.713 ], [ 32.85, -17.979 ], [ 32.655, -18.672 ], [ 32.612, -19.419 ], [ 32.773, -19.716 ], [ 32.66, -20.304 ], [ 32.509, -20.395 ], [ 32.245, -21.116 ], [ 31.191, -22.252 ] ] ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment