Skip to content

Instantly share code, notes, and snippets.

@toja
Last active September 19, 2017 21:08
Show Gist options
  • Save toja/49a09c867c32d5c9f201204f41e0c488 to your computer and use it in GitHub Desktop.
Save toja/49a09c867c32d5c9f201204f41e0c488 to your computer and use it in GitHub Desktop.
World population - Dorling
license: gpl-3.0
height: 500
border: no
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<meta charset="utf-8">
<script src="//d3js.org/d3.v4.min.js"></script>
<script src="//d3js.org/d3-geo-projection.v1.min.js"></script>
<script src="//d3js.org/topojson.v2.min.js"></script>
<style>
.land {
fill: #323436;
stroke: none;
opacity: 0.5;
}
.border {
fill: none;
stroke: #727476;
stroke-width: .5px;
stroke-linejoin: round;
stroke-linecap: round;
}
.graticule {
fill: none;
stroke: #323436;
stroke-width: .5px;
}
.stroke {
fill: none;
stroke: #121416;
stroke-width: .5px;
}
.fill {
fill: #121416;
}
.bubble {
stroke: none;
stroke-width: .5px;
}
.q0-9 { fill:rgba(255,247,243, 0.1); }
.q1-9 { fill:rgba(253,224,221, 0.2); }
.q2-9 { fill:rgba(252,197,192, 0.3); }
.q3-9 { fill:rgba(250,159,181, 0.35); }
.q4-9 { fill:rgba(247,104,161, 0.4); }
.q5-9 { fill:rgba(221,52,151, 0.45); }
.q6-9 { fill:rgba(174,1,126, 0.5); }
.q7-9 { fill:rgba(122,1,119, 0.55); }
.q8-9 { fill:rgba(73,0,106, 0.6); }
</style>
<body>
<script>
var width = 960,
height = 500;
var radius = d3.scaleSqrt()
.domain([0, 1.45e9])
.range([0, 32]);
var proj = d3.geoCylindricalStereographic()
.parallel(35) // DIN A4
.precision(.1);
var path = d3.geoPath()
.projection (proj);
var quantile = d3.scaleQuantile()
.range(d3.range(9).map(function(i) { return "q" + i + "-9"; }));
var dichteById = d3.map();
// start map
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var defs = svg.append("defs");
defs.append("path")
.datum({type: "Sphere"})
.attr("id", "sphere")
.attr("d", path)
defs.append("clipPath")
.attr("id", "clip")
.append("use")
.attr("xlink:href", "#sphere");
svg.append("use")
.attr("class", "stroke")
.attr("xlink:href", "#sphere");
svg.append("use")
.attr("class", "fill")
.attr("xlink:href", "#sphere");
var features = svg.append("g")
.attr("class", "land");
var bubbles = svg.append("g");
function renderWorld(world) {
// Graticule
features.append("path")
.datum(d3.geoGraticule())
.attr("class", "graticule")
.attr("clip-path", "url(#clip)")
.attr("d", path);
// world land
features.selectAll("countries")
.data(topojson.feature(world, world.objects.countries).features)
.enter().append("path")
.attr("clip-path", "url(#clip)")
.attr("d", path);
// country borders
features.append("path")
.datum(topojson.mesh(world, world.objects.countries, function(a, b) { return a !== b; }))
.attr("class", "border")
.attr("clip-path", "url(#clip)")
.attr("d", path);
}
function renderBubbles(nodes) {
var node = bubbles.selectAll("circle")
.data(nodes)
.enter().append("circle")
.attr("class", function(d) { return quantile(dichteById.get(d.n)); })
.attr("r", function(d) {return d.r;} );
node.append("title").text(function(d) {return d.n;});
var simulation = d3.forceSimulation(nodes)
.velocityDecay(0.8)
.force("x", d3.forceX().x(function(d) { return d.x; }))
.force("y", d3.forceY().y(function(d) { return d.y; }))
.force("collide", d3.forceCollide().radius(function(d) { return d.r }).strength(0.5))
.on("tick", function() {
node
.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; })
});
}
d3.json("50m.json", function (error, world) {
if (error) throw error;
renderWorld(world);
});
d3.json("points.geojson", function (error, points) {
if (error) throw error;
// set domain for quantiles based on data
for (var i = 0; i < points.features.length; ++i) {
dichteById.set(points.features[i].properties.name, +points.features[i].properties.dichte);
}
quantile.domain(dichteById.values());
// create a set of nodes for dorling cartogram
var nodes = points.features.map(function(d) {
var point = proj(d.geometry.coordinates);
return {
x: point[0], y: point[1],
//x0: point[0], y0: point[1],
r: radius(d.properties.pop_est),
n: d.properties.name
}
});
// render cartogram
renderBubbles(nodes);
});
</script>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "name": "Aruba", "pop_est": 103065.000000, "AREA": 154675161.000000, "dichte": 666.000000 }, "geometry": { "type": "Point", "coordinates": [ -69.982677, 12.52088 ] } },
{ "type": "Feature", "properties": { "name": "Afghanistan", "pop_est": 28400000.000000, "AREA": 641824848263.000000, "dichte": 44.000000 }, "geometry": { "type": "Point", "coordinates": [ 66.004734, 33.835231 ] } },
{ "type": "Feature", "properties": { "name": "Angola", "pop_est": 12799293.000000, "AREA": 1244662661290.000000, "dichte": 10.000000 }, "geometry": { "type": "Point", "coordinates": [ 17.537368, -12.293361 ] } },
{ "type": "Feature", "properties": { "name": "Anguilla", "pop_est": 14436.000000, "AREA": 82993728.000000, "dichte": 173.000000 }, "geometry": { "type": "Point", "coordinates": [ -63.064989, 18.22396 ] } },
{ "type": "Feature", "properties": { "name": "Albania", "pop_est": 3639453.000000, "AREA": 28372523588.000000, "dichte": 128.000000 }, "geometry": { "type": "Point", "coordinates": [ 20.049834, 41.14245 ] } },
{ "type": "Feature", "properties": { "name": "Aland", "pop_est": 27153.000000, "AREA": 764093049.000000, "dichte": 35.000000 }, "geometry": { "type": "Point", "coordinates": [ 19.953288, 60.214887 ] } },
{ "type": "Feature", "properties": { "name": "Andorra", "pop_est": 83888.000000, "AREA": 442556582.000000, "dichte": 189.000000 }, "geometry": { "type": "Point", "coordinates": [ 1.560544, 42.542291 ] } },
{ "type": "Feature", "properties": { "name": "United Arab Emirates", "pop_est": 4798491.000000, "AREA": 71118805322.000000, "dichte": 67.000000 }, "geometry": { "type": "Point", "coordinates": [ 54.300167, 23.905282 ] } },
{ "type": "Feature", "properties": { "name": "Argentina", "pop_est": 40913584.000000, "AREA": 2782481447496.000000, "dichte": 14.000000 }, "geometry": { "type": "Point", "coordinates": [ -65.179807, -35.381349 ] } },
{ "type": "Feature", "properties": { "name": "Armenia", "pop_est": 2967004.000000, "AREA": 29590907784.000000, "dichte": 100.000000 }, "geometry": { "type": "Point", "coordinates": [ 44.929933, 40.289526 ] } },
{ "type": "Feature", "properties": { "name": "American Samoa", "pop_est": 65628.000000, "AREA": 120365884.000000, "dichte": 545.000000 }, "geometry": { "type": "Point", "coordinates": [ -170.718026, -14.30446 ] } },
{ "type": "Feature", "properties": { "name": "Antarctica", "pop_est": 3802.000000, "AREA": 12352383762173.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ 19.92109, -80.508579 ] } },
{ "type": "Feature", "properties": { "name": "Ashmore and Cartier Is.", "pop_est": 0.000000, "AREA": 2707567.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ 123.583838, -12.429932 ] } },
{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands", "pop_est": 140.000000, "AREA": 6994355775.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ 69.226668, -49.248955 ] } },
{ "type": "Feature", "properties": { "name": "Antigua and Barb.", "pop_est": 85632.000000, "AREA": 431379079.000000, "dichte": 198.000000 }, "geometry": { "type": "Point", "coordinates": [ -61.794693, 17.2775 ] } },
{ "type": "Feature", "properties": { "name": "Australia", "pop_est": 21262641.000000, "AREA": 7690843502675.000000, "dichte": 2.000000 }, "geometry": { "type": "Point", "coordinates": [ 134.491, -25.732887 ] } },
{ "type": "Feature", "properties": { "name": "Austria", "pop_est": 8210281.000000, "AREA": 84148778646.000000, "dichte": 97.000000 }, "geometry": { "type": "Point", "coordinates": [ 14.126476, 47.585494 ] } },
{ "type": "Feature", "properties": { "name": "Azerbaijan", "pop_est": 8238672.000000, "AREA": 86499770950.000000, "dichte": 95.000000 }, "geometry": { "type": "Point", "coordinates": [ 47.545999, 40.288272 ] } },
{ "type": "Feature", "properties": { "name": "Burundi", "pop_est": 8988091.000000, "AREA": 27086122771.000000, "dichte": 331.000000 }, "geometry": { "type": "Point", "coordinates": [ 29.875122, -3.359397 ] } },
{ "type": "Feature", "properties": { "name": "Belgium", "pop_est": 10414336.000000, "AREA": 30790991295.000000, "dichte": 338.000000 }, "geometry": { "type": "Point", "coordinates": [ 4.640651, 50.639816 ] } },
{ "type": "Feature", "properties": { "name": "Benin", "pop_est": 8791832.000000, "AREA": 116103195927.000000, "dichte": 75.000000 }, "geometry": { "type": "Point", "coordinates": [ 2.327853, 9.64176 ] } },
{ "type": "Feature", "properties": { "name": "Burkina Faso", "pop_est": 15746232.000000, "AREA": 272626745895.000000, "dichte": 57.000000 }, "geometry": { "type": "Point", "coordinates": [ -1.754566, 12.269538 ] } },
{ "type": "Feature", "properties": { "name": "Bangladesh", "pop_est": 156050883.000000, "AREA": 135342724097.000000, "dichte": 1153.000000 }, "geometry": { "type": "Point", "coordinates": [ 90.238127, 23.867312 ] } },
{ "type": "Feature", "properties": { "name": "Bulgaria", "pop_est": 7204687.000000, "AREA": 112612574025.000000, "dichte": 63.000000 }, "geometry": { "type": "Point", "coordinates": [ 25.215529, 42.768903 ] } },
{ "type": "Feature", "properties": { "name": "Bahrain", "pop_est": 727785.000000, "AREA": 540435010.000000, "dichte": 1346.000000 }, "geometry": { "type": "Point", "coordinates": [ 50.541969, 26.042051 ] } },
{ "type": "Feature", "properties": { "name": "Bahamas", "pop_est": 309156.000000, "AREA": 12638890162.000000, "dichte": 24.000000 }, "geometry": { "type": "Point", "coordinates": [ -76.62843, 24.290367 ] } },
{ "type": "Feature", "properties": { "name": "Bosnia and Herz.", "pop_est": 4613414.000000, "AREA": 51789387742.000000, "dichte": 89.000000 }, "geometry": { "type": "Point", "coordinates": [ 17.768767, 44.174501 ] } },
{ "type": "Feature", "properties": { "name": "St-Barthélemy", "pop_est": 7448.000000, "AREA": 24449891.000000, "dichte": 304.000000 }, "geometry": { "type": "Point", "coordinates": [ -62.840678, 17.898805 ] } },
{ "type": "Feature", "properties": { "name": "Belarus", "pop_est": 9648533.000000, "AREA": 207560333245.000000, "dichte": 46.000000 }, "geometry": { "type": "Point", "coordinates": [ 28.032093, 53.531314 ] } },
{ "type": "Feature", "properties": { "name": "Belize", "pop_est": 307899.000000, "AREA": 22703595384.000000, "dichte": 13.000000 }, "geometry": { "type": "Point", "coordinates": [ -88.710105, 17.200275 ] } },
{ "type": "Feature", "properties": { "name": "Bermuda", "pop_est": 67837.000000, "AREA": 65941916.000000, "dichte": 1028.000000 }, "geometry": { "type": "Point", "coordinates": [ -64.754559, 32.313678 ] } },
{ "type": "Feature", "properties": { "name": "Bolivia", "pop_est": 9775246.000000, "AREA": 1086616828404.000000, "dichte": 8.000000 }, "geometry": { "type": "Point", "coordinates": [ -64.685386, -16.708148 ] } },
{ "type": "Feature", "properties": { "name": "Brazil", "pop_est": 198739269.000000, "AREA": 8467119313218.000000, "dichte": 23.000000 }, "geometry": { "type": "Point", "coordinates": [ -53.097831, -10.787777 ] } },
{ "type": "Feature", "properties": { "name": "Barbados", "pop_est": 284589.000000, "AREA": 387860511.000000, "dichte": 733.000000 }, "geometry": { "type": "Point", "coordinates": [ -59.559797, 13.181454 ] } },
{ "type": "Feature", "properties": { "name": "Brunei", "pop_est": 388190.000000, "AREA": 5647674665.000000, "dichte": 68.000000 }, "geometry": { "type": "Point", "coordinates": [ 114.72203, 4.51969 ] } },
{ "type": "Feature", "properties": { "name": "Bhutan", "pop_est": 691141.000000, "AREA": 39811165861.000000, "dichte": 17.000000 }, "geometry": { "type": "Point", "coordinates": [ 90.401882, 27.411066 ] } },
{ "type": "Feature", "properties": { "name": "Botswana", "pop_est": 1990876.000000, "AREA": 579143524977.000000, "dichte": 3.000000 }, "geometry": { "type": "Point", "coordinates": [ 23.798534, -22.184032 ] } },
{ "type": "Feature", "properties": { "name": "Central African Rep.", "pop_est": 4511488.000000, "AREA": 618319388687.000000, "dichte": 7.000000 }, "geometry": { "type": "Point", "coordinates": [ 20.468268, 6.568233 ] } },
{ "type": "Feature", "properties": { "name": "Canada", "pop_est": 33487208.000000, "AREA": 9923030003711.000000, "dichte": 3.000000 }, "geometry": { "type": "Point", "coordinates": [ -108.116645, 57.91934 ] } },
{ "type": "Feature", "properties": { "name": "Switzerland", "pop_est": 7604467.000000, "AREA": 41316259748.000000, "dichte": 184.000000 }, "geometry": { "type": "Point", "coordinates": [ 8.208675, 46.797859 ] } },
{ "type": "Feature", "properties": { "name": "Chile", "pop_est": 16601707.000000, "AREA": 737647896692.000000, "dichte": 22.000000 }, "geometry": { "type": "Point", "coordinates": [ -71.382562, -37.73071 ] } },
{ "type": "Feature", "properties": { "name": "China", "pop_est": 1338612970.000000, "AREA": 9373040311432.000000, "dichte": 142.000000 }, "geometry": { "type": "Point", "coordinates": [ 104.261435, 33.465238 ] } },
{ "type": "Feature", "properties": { "name": "Côte d'Ivoire", "pop_est": 20617068.000000, "AREA": 320926037414.000000, "dichte": 64.000000 }, "geometry": { "type": "Point", "coordinates": [ -5.569216, 7.628426 ] } },
{ "type": "Feature", "properties": { "name": "Cameroon", "pop_est": 18879301.000000, "AREA": 463869795413.000000, "dichte": 40.000000 }, "geometry": { "type": "Point", "coordinates": [ 12.739642, 5.691098 ] } },
{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo", "pop_est": 68692542.000000, "AREA": 2324445715111.000000, "dichte": 29.000000 }, "geometry": { "type": "Point", "coordinates": [ 23.643961, -2.877463 ] } },
{ "type": "Feature", "properties": { "name": "Congo", "pop_est": 4012809.000000, "AREA": 345331943326.000000, "dichte": 11.000000 }, "geometry": { "type": "Point", "coordinates": [ 15.219658, -0.837875 ] } },
{ "type": "Feature", "properties": { "name": "Cook Is.", "pop_est": 11870.000000, "AREA": 60488124.000000, "dichte": 196.000000 }, "geometry": { "type": "Point", "coordinates": [ -159.787242, -21.219273 ] } },
{ "type": "Feature", "properties": { "name": "Colombia", "pop_est": 45644023.000000, "AREA": 1134469488707.000000, "dichte": 40.000000 }, "geometry": { "type": "Point", "coordinates": [ -73.081146, 3.913834 ] } },
{ "type": "Feature", "properties": { "name": "Comoros", "pop_est": 752438.000000, "AREA": 1579660483.000000, "dichte": 476.000000 }, "geometry": { "type": "Point", "coordinates": [ 43.68254, -11.877834 ] } },
{ "type": "Feature", "properties": { "name": "Cape Verde", "pop_est": 429474.000000, "AREA": 3572788768.000000, "dichte": 120.000000 }, "geometry": { "type": "Point", "coordinates": [ -23.959888, 15.955233 ] } },
{ "type": "Feature", "properties": { "name": "Costa Rica", "pop_est": 4253877.000000, "AREA": 51302626589.000000, "dichte": 82.000000 }, "geometry": { "type": "Point", "coordinates": [ -84.192088, 9.976345 ] } },
{ "type": "Feature", "properties": { "name": "Cuba", "pop_est": 11451652.000000, "AREA": 109004926687.000000, "dichte": 105.000000 }, "geometry": { "type": "Point", "coordinates": [ -79.016054, 21.622895 ] } },
{ "type": "Feature", "properties": { "name": "Curaçao", "pop_est": 141766.000000, "AREA": 427797000.000000, "dichte": 331.000000 }, "geometry": { "type": "Point", "coordinates": [ -68.971194, 12.195517 ] } },
{ "type": "Feature", "properties": { "name": "Cayman Is.", "pop_est": 49035.000000, "AREA": 300424941.000000, "dichte": 163.000000 }, "geometry": { "type": "Point", "coordinates": [ -80.912133, 19.428965 ] } },
{ "type": "Feature", "properties": { "name": "N. Cyprus", "pop_est": 265100.000000, "AREA": 3470037190.000000, "dichte": 76.000000 }, "geometry": { "type": "Point", "coordinates": [ 33.568481, 35.262775 ] } },
{ "type": "Feature", "properties": { "name": "Cyprus", "pop_est": 531640.000000, "AREA": 5707351004.000000, "dichte": 93.000000 }, "geometry": { "type": "Point", "coordinates": [ 33.006002, 34.916672 ] } },
{ "type": "Feature", "properties": { "name": "Czech Rep.", "pop_est": 10211904.000000, "AREA": 78743912480.000000, "dichte": 129.000000 }, "geometry": { "type": "Point", "coordinates": [ 15.312402, 49.733412 ] } },
{ "type": "Feature", "properties": { "name": "Germany", "pop_est": 82329758.000000, "AREA": 357460626962.000000, "dichte": 230.000000 }, "geometry": { "type": "Point", "coordinates": [ 10.385781, 51.106982 ] } },
{ "type": "Feature", "properties": { "name": "Djibouti", "pop_est": 516055.000000, "AREA": 21618769534.000000, "dichte": 23.000000 }, "geometry": { "type": "Point", "coordinates": [ 42.560675, 11.748718 ] } },
{ "type": "Feature", "properties": { "name": "Dominica", "pop_est": 72660.000000, "AREA": 695362372.000000, "dichte": 104.000000 }, "geometry": { "type": "Point", "coordinates": [ -61.357726, 15.43947 ] } },
{ "type": "Feature", "properties": { "name": "Denmark", "pop_est": 5500510.000000, "AREA": 42618622969.000000, "dichte": 129.000000 }, "geometry": { "type": "Point", "coordinates": [ 10.02801, 55.981253 ] } },
{ "type": "Feature", "properties": { "name": "Dominican Rep.", "pop_est": 9650054.000000, "AREA": 48441349250.000000, "dichte": 199.000000 }, "geometry": { "type": "Point", "coordinates": [ -70.505689, 18.894331 ] } },
{ "type": "Feature", "properties": { "name": "Algeria", "pop_est": 34178188.000000, "AREA": 2319279533091.000000, "dichte": 14.000000 }, "geometry": { "type": "Point", "coordinates": [ 2.617323, 28.158938 ] } },
{ "type": "Feature", "properties": { "name": "Ecuador", "pop_est": 14573101.000000, "AREA": 254528274235.000000, "dichte": 57.000000 }, "geometry": { "type": "Point", "coordinates": [ -78.752019, -1.423816 ] } },
{ "type": "Feature", "properties": { "name": "Egypt", "pop_est": 83082869.000000, "AREA": 1001772553841.000000, "dichte": 82.000000 }, "geometry": { "type": "Point", "coordinates": [ 29.861901, 26.495933 ] } },
{ "type": "Feature", "properties": { "name": "Eritrea", "pop_est": 5647168.000000, "AREA": 123248993089.000000, "dichte": 45.000000 }, "geometry": { "type": "Point", "coordinates": [ 38.84617, 15.361866 ] } },
{ "type": "Feature", "properties": { "name": "Spain", "pop_est": 40525002.000000, "AREA": 506722030649.000000, "dichte": 79.000000 }, "geometry": { "type": "Point", "coordinates": [ -3.64755, 40.244487 ] } },
{ "type": "Feature", "properties": { "name": "Estonia", "pop_est": 1299371.000000, "AREA": 45697656697.000000, "dichte": 28.000000 }, "geometry": { "type": "Point", "coordinates": [ 25.542485, 58.67193 ] } },
{ "type": "Feature", "properties": { "name": "Ethiopia", "pop_est": 85237338.000000, "AREA": 1127087650233.000000, "dichte": 75.000000 }, "geometry": { "type": "Point", "coordinates": [ 39.600801, 8.622787 ] } },
{ "type": "Feature", "properties": { "name": "Finland", "pop_est": 5250275.000000, "AREA": 332611140225.000000, "dichte": 15.000000 }, "geometry": { "type": "Point", "coordinates": [ 26.274666, 63.748756 ] } },
{ "type": "Feature", "properties": { "name": "Fiji", "pop_est": 944720.000000, "AREA": 18347463552.000000, "dichte": 51.000000 }, "geometry": { "type": "Point", "coordinates": [ 165.451954, -17.42858 ] } },
{ "type": "Feature", "properties": { "name": "Falkland Is.", "pop_est": 3140.000000, "AREA": 11428293307.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ -59.35239, -51.74484 ] } },
{ "type": "Feature", "properties": { "name": "France", "pop_est": 64057792.000000, "AREA": 636067533993.000000, "dichte": 100.000000 }, "geometry": { "type": "Point", "coordinates": [ 2.719701, 47.366374 ] } },
{ "type": "Feature", "properties": { "name": "Faeroe Is.", "pop_est": 48856.000000, "AREA": 1041345475.000000, "dichte": 46.000000 }, "geometry": { "type": "Point", "coordinates": [ -6.880954, 62.053854 ] } },
{ "type": "Feature", "properties": { "name": "Micronesia", "pop_est": 107434.000000, "AREA": 521832336.000000, "dichte": 205.000000 }, "geometry": { "type": "Point", "coordinates": [ 153.239438, 7.452468 ] } },
{ "type": "Feature", "properties": { "name": "Gabon", "pop_est": 1514993.000000, "AREA": 259499476433.000000, "dichte": 5.000000 }, "geometry": { "type": "Point", "coordinates": [ 11.788629, -0.5866 ] } },
{ "type": "Feature", "properties": { "name": "United Kingdom", "pop_est": 62262000.000000, "AREA": 240644824797.000000, "dichte": 258.000000 }, "geometry": { "type": "Point", "coordinates": [ -2.865632, 54.123872 ] } },
{ "type": "Feature", "properties": { "name": "Georgia", "pop_est": 4615807.000000, "AREA": 69413291659.000000, "dichte": 66.000000 }, "geometry": { "type": "Point", "coordinates": [ 43.507803, 42.168558 ] } },
{ "type": "Feature", "properties": { "name": "Guernsey", "pop_est": 68633.000000, "AREA": 48212716.000000, "dichte": 1423.000000 }, "geometry": { "type": "Point", "coordinates": [ -2.572391, 49.468098 ] } },
{ "type": "Feature", "properties": { "name": "Ghana", "pop_est": 23832495.000000, "AREA": 238555665316.000000, "dichte": 99.000000 }, "geometry": { "type": "Point", "coordinates": [ -1.216766, 7.953456 ] } },
{ "type": "Feature", "properties": { "name": "Guinea", "pop_est": 10057975.000000, "AREA": 243939243288.000000, "dichte": 41.000000 }, "geometry": { "type": "Point", "coordinates": [ -10.940666, 10.436216 ] } },
{ "type": "Feature", "properties": { "name": "Gambia", "pop_est": 1782893.000000, "AREA": 10274785975.000000, "dichte": 173.000000 }, "geometry": { "type": "Point", "coordinates": [ -15.396013, 13.449652 ] } },
{ "type": "Feature", "properties": { "name": "Guinea-Bissau", "pop_est": 1533964.000000, "AREA": 31932515090.000000, "dichte": 48.000000 }, "geometry": { "type": "Point", "coordinates": [ -14.949724, 12.047449 ] } },
{ "type": "Feature", "properties": { "name": "Eq. Guinea", "pop_est": 650702.000000, "AREA": 26525404737.000000, "dichte": 24.000000 }, "geometry": { "type": "Point", "coordinates": [ 10.341379, 1.705551 ] } },
{ "type": "Feature", "properties": { "name": "Greece", "pop_est": 10737428.000000, "AREA": 130273620126.000000, "dichte": 82.000000 }, "geometry": { "type": "Point", "coordinates": [ 22.955558, 39.074696 ] } },
{ "type": "Feature", "properties": { "name": "Grenada", "pop_est": 90739.000000, "AREA": 284948023.000000, "dichte": 318.000000 }, "geometry": { "type": "Point", "coordinates": [ -61.682202, 12.11725 ] } },
{ "type": "Feature", "properties": { "name": "Greenland", "pop_est": 57600.000000, "AREA": 2171357475297.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ -41.341911, 74.710513 ] } },
{ "type": "Feature", "properties": { "name": "Guatemala", "pop_est": 13276517.000000, "AREA": 108100936365.000000, "dichte": 122.000000 }, "geometry": { "type": "Point", "coordinates": [ -90.36482, 15.694037 ] } },
{ "type": "Feature", "properties": { "name": "Guam", "pop_est": 178430.000000, "AREA": 480079306.000000, "dichte": 371.000000 }, "geometry": { "type": "Point", "coordinates": [ 144.76791, 13.441656 ] } },
{ "type": "Feature", "properties": { "name": "Guyana", "pop_est": 772298.000000, "AREA": 211025772843.000000, "dichte": 3.000000 }, "geometry": { "type": "Point", "coordinates": [ -58.982025, 4.79378 ] } },
{ "type": "Feature", "properties": { "name": "Hong Kong", "pop_est": 7061200.000000, "AREA": 1026377101.000000, "dichte": 6879.000000 }, "geometry": { "type": "Point", "coordinates": [ 114.113805, 22.398277 ] } },
{ "type": "Feature", "properties": { "name": "Heard I. and McDonald Is.", "pop_est": 0.000000, "AREA": 420318040.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ 73.520517, -53.087247 ] } },
{ "type": "Feature", "properties": { "name": "Honduras", "pop_est": 7792854.000000, "AREA": 113117981124.000000, "dichte": 68.000000 }, "geometry": { "type": "Point", "coordinates": [ -86.615166, 14.826882 ] } },
{ "type": "Feature", "properties": { "name": "Croatia", "pop_est": 4489409.000000, "AREA": 54540592721.000000, "dichte": 82.000000 }, "geometry": { "type": "Point", "coordinates": [ 16.404129, 45.080476 ] } },
{ "type": "Feature", "properties": { "name": "Haiti", "pop_est": 9035536.000000, "AREA": 26726652145.000000, "dichte": 338.000000 }, "geometry": { "type": "Point", "coordinates": [ -72.685275, 18.935026 ] } },
{ "type": "Feature", "properties": { "name": "Hungary", "pop_est": 9905596.000000, "AREA": 93213772640.000000, "dichte": 106.000000 }, "geometry": { "type": "Point", "coordinates": [ 19.395591, 47.162775 ] } },
{ "type": "Feature", "properties": { "name": "Indonesia", "pop_est": 240271522.000000, "AREA": 1863864029800.000000, "dichte": 128.000000 }, "geometry": { "type": "Point", "coordinates": [ 117.240114, -2.215055 ] } },
{ "type": "Feature", "properties": { "name": "Isle of Man", "pop_est": 76512.000000, "AREA": 559750638.000000, "dichte": 136.000000 }, "geometry": { "type": "Point", "coordinates": [ -4.53874, 54.224189 ] } },
{ "type": "Feature", "properties": { "name": "India", "pop_est": 1166079220.000000, "AREA": 3148224496635.000000, "dichte": 370.000000 }, "geometry": { "type": "Point", "coordinates": [ 79.611976, 22.885782 ] } },
{ "type": "Feature", "properties": { "name": "Indian Ocean Ter.", "pop_est": 2069.000000, "AREA": 143102470.000000, "dichte": 14.000000 }, "geometry": { "type": "Point", "coordinates": [ 104.851898, -10.647851 ] } },
{ "type": "Feature", "properties": { "name": "Br. Indian Ocean Ter.", "pop_est": 4000.000000, "AREA": 131837402.000000, "dichte": 30.000000 }, "geometry": { "type": "Point", "coordinates": [ 72.445412, -7.330598 ] } },
{ "type": "Feature", "properties": { "name": "Ireland", "pop_est": 4203200.000000, "AREA": 68981468678.000000, "dichte": 60.000000 }, "geometry": { "type": "Point", "coordinates": [ -8.137936, 53.175449 ] } },
{ "type": "Feature", "properties": { "name": "Iran", "pop_est": 66429284.000000, "AREA": 1621858981379.000000, "dichte": 40.000000 }, "geometry": { "type": "Point", "coordinates": [ 54.27407, 32.575033 ] } },
{ "type": "Feature", "properties": { "name": "Iraq", "pop_est": 31129225.000000, "AREA": 437230984249.000000, "dichte": 71.000000 }, "geometry": { "type": "Point", "coordinates": [ 43.743531, 33.039706 ] } },
{ "type": "Feature", "properties": { "name": "Iceland", "pop_est": 306694.000000, "AREA": 101819576874.000000, "dichte": 3.000000 }, "geometry": { "type": "Point", "coordinates": [ -18.573962, 64.995754 ] } },
{ "type": "Feature", "properties": { "name": "Israel", "pop_est": 7233701.000000, "AREA": 22266473992.000000, "dichte": 324.000000 }, "geometry": { "type": "Point", "coordinates": [ 35.004447, 31.461101 ] } },
{ "type": "Feature", "properties": { "name": "Italy", "pop_est": 58126212.000000, "AREA": 300794146925.000000, "dichte": 193.000000 }, "geometry": { "type": "Point", "coordinates": [ 12.070013, 42.796626 ] } },
{ "type": "Feature", "properties": { "name": "Jamaica", "pop_est": 2825928.000000, "AREA": 10900049758.000000, "dichte": 259.000000 }, "geometry": { "type": "Point", "coordinates": [ -77.314826, 18.156949 ] } },
{ "type": "Feature", "properties": { "name": "Jersey", "pop_est": 91626.000000, "AREA": 126738545.000000, "dichte": 722.000000 }, "geometry": { "type": "Point", "coordinates": [ -2.126899, 49.218374 ] } },
{ "type": "Feature", "properties": { "name": "Jordan", "pop_est": 6342948.000000, "AREA": 88781946137.000000, "dichte": 71.000000 }, "geometry": { "type": "Point", "coordinates": [ 36.771361, 31.245791 ] } },
{ "type": "Feature", "properties": { "name": "Japan", "pop_est": 127078679.000000, "AREA": 370270771448.000000, "dichte": 343.000000 }, "geometry": { "type": "Point", "coordinates": [ 138.030896, 37.592301 ] } },
{ "type": "Feature", "properties": { "name": "Siachen Glacier", "pop_est": 6000.000000, "AREA": 2118126562.000000, "dichte": 2.000000 }, "geometry": { "type": "Point", "coordinates": [ 77.180119, 35.392363 ] } },
{ "type": "Feature", "properties": { "name": "Kazakhstan", "pop_est": 15399437.000000, "AREA": 2720704389271.000000, "dichte": 5.000000 }, "geometry": { "type": "Point", "coordinates": [ 67.291494, 48.156881 ] } },
{ "type": "Feature", "properties": { "name": "Kenya", "pop_est": 39002772.000000, "AREA": 592179466059.000000, "dichte": 65.000000 }, "geometry": { "type": "Point", "coordinates": [ 37.79594, 0.59988 ] } },
{ "type": "Feature", "properties": { "name": "Kyrgyzstan", "pop_est": 5431747.000000, "AREA": 198928262122.000000, "dichte": 27.000000 }, "geometry": { "type": "Point", "coordinates": [ 74.541655, 41.462219 ] } },
{ "type": "Feature", "properties": { "name": "Cambodia", "pop_est": 14494293.000000, "AREA": 180669963265.000000, "dichte": 80.000000 }, "geometry": { "type": "Point", "coordinates": [ 104.906943, 12.720048 ] } },
{ "type": "Feature", "properties": { "name": "Kiribati", "pop_est": 112850.000000, "AREA": 932995375.000000, "dichte": 120.000000 }, "geometry": { "type": "Point", "coordinates": [ -45.611105, 0.860015 ] } },
{ "type": "Feature", "properties": { "name": "St. Kitts and Nevis", "pop_est": 40131.000000, "AREA": 232173356.000000, "dichte": 172.000000 }, "geometry": { "type": "Point", "coordinates": [ -62.687553, 17.2646 ] } },
{ "type": "Feature", "properties": { "name": "Korea", "pop_est": 48508972.000000, "AREA": 97175237035.000000, "dichte": 499.000000 }, "geometry": { "type": "Point", "coordinates": [ 127.839161, 36.38524 ] } },
{ "type": "Feature", "properties": { "name": "Kosovo", "pop_est": 1804838.000000, "AREA": 10929568635.000000, "dichte": 165.000000 }, "geometry": { "type": "Point", "coordinates": [ 20.872498, 42.570787 ] } },
{ "type": "Feature", "properties": { "name": "Kuwait", "pop_est": 2691158.000000, "AREA": 17307631852.000000, "dichte": 155.000000 }, "geometry": { "type": "Point", "coordinates": [ 47.587005, 29.334313 ] } },
{ "type": "Feature", "properties": { "name": "Lao PDR", "pop_est": 6834942.000000, "AREA": 228234704281.000000, "dichte": 29.000000 }, "geometry": { "type": "Point", "coordinates": [ 103.737724, 18.502174 ] } },
{ "type": "Feature", "properties": { "name": "Lebanon", "pop_est": 4017095.000000, "AREA": 10009481459.000000, "dichte": 401.000000 }, "geometry": { "type": "Point", "coordinates": [ 35.880161, 33.923066 ] } },
{ "type": "Feature", "properties": { "name": "Liberia", "pop_est": 3441790.000000, "AREA": 95230929535.000000, "dichte": 36.000000 }, "geometry": { "type": "Point", "coordinates": [ -9.322076, 6.452785 ] } },
{ "type": "Feature", "properties": { "name": "Libya", "pop_est": 6310434.000000, "AREA": 1623713831128.000000, "dichte": 3.000000 }, "geometry": { "type": "Point", "coordinates": [ 18.008662, 27.030945 ] } },
{ "type": "Feature", "properties": { "name": "Saint Lucia", "pop_est": 160267.000000, "AREA": 549303381.000000, "dichte": 291.000000 }, "geometry": { "type": "Point", "coordinates": [ -60.969699, 13.894795 ] } },
{ "type": "Feature", "properties": { "name": "Liechtenstein", "pop_est": 34761.000000, "AREA": 138344373.000000, "dichte": 251.000000 }, "geometry": { "type": "Point", "coordinates": [ 9.535743, 47.136658 ] } },
{ "type": "Feature", "properties": { "name": "Sri Lanka", "pop_est": 21324791.000000, "AREA": 65766619664.000000, "dichte": 324.000000 }, "geometry": { "type": "Point", "coordinates": [ 80.701082, 7.612665 ] } },
{ "type": "Feature", "properties": { "name": "Lesotho", "pop_est": 2130819.000000, "AREA": 29991298335.000000, "dichte": 71.000000 }, "geometry": { "type": "Point", "coordinates": [ 28.227231, -29.580032 ] } },
{ "type": "Feature", "properties": { "name": "Lithuania", "pop_est": 3555179.000000, "AREA": 64816654614.000000, "dichte": 54.000000 }, "geometry": { "type": "Point", "coordinates": [ 23.887194, 55.32611 ] } },
{ "type": "Feature", "properties": { "name": "Luxembourg", "pop_est": 491775.000000, "AREA": 2620659612.000000, "dichte": 187.000000 }, "geometry": { "type": "Point", "coordinates": [ 6.071822, 49.767254 ] } },
{ "type": "Feature", "properties": { "name": "Latvia", "pop_est": 2231503.000000, "AREA": 64578858788.000000, "dichte": 34.000000 }, "geometry": { "type": "Point", "coordinates": [ 24.91236, 56.850852 ] } },
{ "type": "Feature", "properties": { "name": "Macao", "pop_est": 559846.000000, "AREA": 22679667.000000, "dichte": 24684.000000 }, "geometry": { "type": "Point", "coordinates": [ 113.509321, 22.223117 ] } },
{ "type": "Feature", "properties": { "name": "St-Martin", "pop_est": 36661.000000, "AREA": 48831500.000000, "dichte": 750.000000 }, "geometry": { "type": "Point", "coordinates": [ -63.059729, 18.088886 ] } },
{ "type": "Feature", "properties": { "name": "Morocco", "pop_est": 34859364.000000, "AREA": 581748447028.000000, "dichte": 59.000000 }, "geometry": { "type": "Point", "coordinates": [ -8.456158, 29.83763 ] } },
{ "type": "Feature", "properties": { "name": "Monaco", "pop_est": 32965.000000, "AREA": 12437293.000000, "dichte": 2650.000000 }, "geometry": { "type": "Point", "coordinates": [ 7.406277, 43.752746 ] } },
{ "type": "Feature", "properties": { "name": "Moldova", "pop_est": 4320748.000000, "AREA": 33207825015.000000, "dichte": 130.000000 }, "geometry": { "type": "Point", "coordinates": [ 28.456734, 47.194988 ] } },
{ "type": "Feature", "properties": { "name": "Madagascar", "pop_est": 20653556.000000, "AREA": 592821607939.000000, "dichte": 34.000000 }, "geometry": { "type": "Point", "coordinates": [ 46.704737, -19.371896 ] } },
{ "type": "Feature", "properties": { "name": "Maldives", "pop_est": 396334.000000, "AREA": 66119181.000000, "dichte": 5994.000000 }, "geometry": { "type": "Point", "coordinates": [ 73.45713, 3.728709 ] } },
{ "type": "Feature", "properties": { "name": "Mexico", "pop_est": 111211789.000000, "AREA": 1957856466154.000000, "dichte": 56.000000 }, "geometry": { "type": "Point", "coordinates": [ -102.523452, 23.947537 ] } },
{ "type": "Feature", "properties": { "name": "Marshall Is.", "pop_est": 64522.000000, "AREA": 236871740.000000, "dichte": 272.000000 }, "geometry": { "type": "Point", "coordinates": [ 170.339761, 7.003764 ] } },
{ "type": "Feature", "properties": { "name": "Macedonia", "pop_est": 2066718.000000, "AREA": 25400412713.000000, "dichte": 81.000000 }, "geometry": { "type": "Point", "coordinates": [ 21.682113, 41.595309 ] } },
{ "type": "Feature", "properties": { "name": "Mali", "pop_est": 12666987.000000, "AREA": 1254123089734.000000, "dichte": 10.000000 }, "geometry": { "type": "Point", "coordinates": [ -3.542691, 17.345816 ] } },
{ "type": "Feature", "properties": { "name": "Malta", "pop_est": 405165.000000, "AREA": 273817893.000000, "dichte": 1479.000000 }, "geometry": { "type": "Point", "coordinates": [ 14.405233, 35.921496 ] } },
{ "type": "Feature", "properties": { "name": "Myanmar", "pop_est": 48137741.000000, "AREA": 660977373652.000000, "dichte": 72.000000 }, "geometry": { "type": "Point", "coordinates": [ 96.488433, 21.185666 ] } },
{ "type": "Feature", "properties": { "name": "Montenegro", "pop_est": 672180.000000, "AREA": 13689678383.000000, "dichte": 49.000000 }, "geometry": { "type": "Point", "coordinates": [ 19.238839, 42.788903 ] } },
{ "type": "Feature", "properties": { "name": "Mongolia", "pop_est": 3041142.000000, "AREA": 1564504592141.000000, "dichte": 1.000000 }, "geometry": { "type": "Point", "coordinates": [ 103.052998, 46.826815 ] } },
{ "type": "Feature", "properties": { "name": "N. Mariana Is.", "pop_est": 88662.000000, "AREA": 392215653.000000, "dichte": 226.000000 }, "geometry": { "type": "Point", "coordinates": [ 145.619697, 15.829276 ] } },
{ "type": "Feature", "properties": { "name": "Mozambique", "pop_est": 21669278.000000, "AREA": 788079434037.000000, "dichte": 27.000000 }, "geometry": { "type": "Point", "coordinates": [ 35.533675, -17.273816 ] } },
{ "type": "Feature", "properties": { "name": "Mauritania", "pop_est": 3129486.000000, "AREA": 1035382840067.000000, "dichte": 3.000000 }, "geometry": { "type": "Point", "coordinates": [ -10.347798, 20.257367 ] } },
{ "type": "Feature", "properties": { "name": "Montserrat", "pop_est": 5097.000000, "AREA": 79514145.000000, "dichte": 64.000000 }, "geometry": { "type": "Point", "coordinates": [ -62.185185, 16.739414 ] } },
{ "type": "Feature", "properties": { "name": "Mauritius", "pop_est": 1284264.000000, "AREA": 1873796193.000000, "dichte": 685.000000 }, "geometry": { "type": "Point", "coordinates": [ 57.571206, -20.277687 ] } },
{ "type": "Feature", "properties": { "name": "Malawi", "pop_est": 14268711.000000, "AREA": 119344439286.000000, "dichte": 119.000000 }, "geometry": { "type": "Point", "coordinates": [ 34.289356, -13.218081 ] } },
{ "type": "Feature", "properties": { "name": "Malaysia", "pop_est": 25715819.000000, "AREA": 326218332371.000000, "dichte": 78.000000 }, "geometry": { "type": "Point", "coordinates": [ 109.697623, 3.789868 ] } },
{ "type": "Feature", "properties": { "name": "Namibia", "pop_est": 2108665.000000, "AREA": 822524813882.000000, "dichte": 2.000000 }, "geometry": { "type": "Point", "coordinates": [ 17.209636, -22.130326 ] } },
{ "type": "Feature", "properties": { "name": "New Caledonia", "pop_est": 227436.000000, "AREA": 18621283683.000000, "dichte": 12.000000 }, "geometry": { "type": "Point", "coordinates": [ 165.684924, -21.299918 ] } },
{ "type": "Feature", "properties": { "name": "Niger", "pop_est": 15306252.000000, "AREA": 1181204161514.000000, "dichte": 12.000000 }, "geometry": { "type": "Point", "coordinates": [ 9.385459, 17.419125 ] } },
{ "type": "Feature", "properties": { "name": "Norfolk Island", "pop_est": 2141.000000, "AREA": 41090636.000000, "dichte": 52.000000 }, "geometry": { "type": "Point", "coordinates": [ 167.949217, -29.051461 ] } },
{ "type": "Feature", "properties": { "name": "Nigeria", "pop_est": 149229090.000000, "AREA": 907834367874.000000, "dichte": 164.000000 }, "geometry": { "type": "Point", "coordinates": [ 8.089439, 9.594115 ] } },
{ "type": "Feature", "properties": { "name": "Nicaragua", "pop_est": 5891199.000000, "AREA": 128741661831.000000, "dichte": 45.000000 }, "geometry": { "type": "Point", "coordinates": [ -85.03053, 12.847094 ] } },
{ "type": "Feature", "properties": { "name": "Niue", "pop_est": 1398.000000, "AREA": 196072323.000000, "dichte": 7.000000 }, "geometry": { "type": "Point", "coordinates": [ -169.869947, -19.049457 ] } },
{ "type": "Feature", "properties": { "name": "Netherlands", "pop_est": 16715999.000000, "AREA": 37277539779.000000, "dichte": 448.000000 }, "geometry": { "type": "Point", "coordinates": [ 5.281448, 52.10079 ] } },
{ "type": "Feature", "properties": { "name": "Norway", "pop_est": 4676305.000000, "AREA": 386809284002.000000, "dichte": 12.000000 }, "geometry": { "type": "Point", "coordinates": [ 9.001427, 62.11474 ] } },
{ "type": "Feature", "properties": { "name": "Nepal", "pop_est": 28563377.000000, "AREA": 146977076228.000000, "dichte": 194.000000 }, "geometry": { "type": "Point", "coordinates": [ 83.915826, 28.248914 ] } },
{ "type": "Feature", "properties": { "name": "Nauru", "pop_est": 14019.000000, "AREA": 27669196.000000, "dichte": 506.000000 }, "geometry": { "type": "Point", "coordinates": [ 166.932568, -0.519126 ] } },
{ "type": "Feature", "properties": { "name": "New Zealand", "pop_est": 4213418.000000, "AREA": 267235437966.000000, "dichte": 15.000000 }, "geometry": { "type": "Point", "coordinates": [ 171.484923, -41.811136 ] } },
{ "type": "Feature", "properties": { "name": "Oman", "pop_est": 3418085.000000, "AREA": 311189879212.000000, "dichte": 10.000000 }, "geometry": { "type": "Point", "coordinates": [ 56.091662, 20.605153 ] } },
{ "type": "Feature", "properties": { "name": "Pakistan", "pop_est": 176242949.000000, "AREA": 872788717991.000000, "dichte": 201.000000 }, "geometry": { "type": "Point", "coordinates": [ 69.339579, 29.949752 ] } },
{ "type": "Feature", "properties": { "name": "Panama", "pop_est": 3360474.000000, "AREA": 73936224261.000000, "dichte": 45.000000 }, "geometry": { "type": "Point", "coordinates": [ -80.119152, 8.517508 ] } },
{ "type": "Feature", "properties": { "name": "Pitcairn Is.", "pop_est": 48.000000, "AREA": 38588463.000000, "dichte": 1.000000 }, "geometry": { "type": "Point", "coordinates": [ -128.317042, -24.365005 ] } },
{ "type": "Feature", "properties": { "name": "Peru", "pop_est": 29546963.000000, "AREA": 1290959684342.000000, "dichte": 22.000000 }, "geometry": { "type": "Point", "coordinates": [ -74.382427, -9.152804 ] } },
{ "type": "Feature", "properties": { "name": "Philippines", "pop_est": 97976603.000000, "AREA": 289186496371.000000, "dichte": 338.000000 }, "geometry": { "type": "Point", "coordinates": [ 122.883933, 11.775368 ] } },
{ "type": "Feature", "properties": { "name": "Palau", "pop_est": 20796.000000, "AREA": 339100390.000000, "dichte": 61.000000 }, "geometry": { "type": "Point", "coordinates": [ 134.40808, 7.287428 ] } },
{ "type": "Feature", "properties": { "name": "Papua New Guinea", "pop_est": 6057263.000000, "AREA": 462325781235.000000, "dichte": 13.000000 }, "geometry": { "type": "Point", "coordinates": [ 145.207448, -6.464166 ] } },
{ "type": "Feature", "properties": { "name": "Poland", "pop_est": 38482919.000000, "AREA": 313762791324.000000, "dichte": 122.000000 }, "geometry": { "type": "Point", "coordinates": [ 19.390128, 52.127596 ] } },
{ "type": "Feature", "properties": { "name": "Puerto Rico", "pop_est": 3971020.000000, "AREA": 8919712042.000000, "dichte": 445.000000 }, "geometry": { "type": "Point", "coordinates": [ -66.473076, 18.228131 ] } },
{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea", "pop_est": 22665345.000000, "AREA": 122628533468.000000, "dichte": 184.000000 }, "geometry": { "type": "Point", "coordinates": [ 127.19248, 40.153503 ] } },
{ "type": "Feature", "properties": { "name": "Portugal", "pop_est": 10707924.000000, "AREA": 90846412727.000000, "dichte": 117.000000 }, "geometry": { "type": "Point", "coordinates": [ -8.501044, 39.595507 ] } },
{ "type": "Feature", "properties": { "name": "Paraguay", "pop_est": 6995655.000000, "AREA": 399945388472.000000, "dichte": 17.000000 }, "geometry": { "type": "Point", "coordinates": [ -58.400137, -23.228239 ] } },
{ "type": "Feature", "properties": { "name": "Palestine", "pop_est": 4119083.000000, "AREA": 6328674954.000000, "dichte": 650.000000 }, "geometry": { "type": "Point", "coordinates": [ 35.196287, 31.916139 ] } },
{ "type": "Feature", "properties": { "name": "Fr. Polynesia", "pop_est": 287032.000000, "AREA": 2606705460.000000, "dichte": 110.000000 }, "geometry": { "type": "Point", "coordinates": [ -144.904944, -14.722274 ] } },
{ "type": "Feature", "properties": { "name": "Qatar", "pop_est": 833285.000000, "AREA": 11051891573.000000, "dichte": 75.000000 }, "geometry": { "type": "Point", "coordinates": [ 51.184796, 25.306012 ] } },
{ "type": "Feature", "properties": { "name": "Romania", "pop_est": 22215421.000000, "AREA": 236339408191.000000, "dichte": 93.000000 }, "geometry": { "type": "Point", "coordinates": [ 24.97293, 45.852431 ] } },
{ "type": "Feature", "properties": { "name": "Russia", "pop_est": 140041247.000000, "AREA": 16946364471270.000000, "dichte": 8.000000 }, "geometry": { "type": "Point", "coordinates": [ 96.686561, 61.980522 ] } },
{ "type": "Feature", "properties": { "name": "Rwanda", "pop_est": 10473282.000000, "AREA": 25272673201.000000, "dichte": 414.000000 }, "geometry": { "type": "Point", "coordinates": [ 29.919885, -1.990338 ] } },
{ "type": "Feature", "properties": { "name": "W. Sahara", "pop_est": 0.000000, "AREA": 90591307864.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ -12.219828, 24.229567 ] } },
{ "type": "Feature", "properties": { "name": "Saudi Arabia", "pop_est": 28686633.000000, "AREA": 1921563063600.000000, "dichte": 14.000000 }, "geometry": { "type": "Point", "coordinates": [ 44.536863, 24.122458 ] } },
{ "type": "Feature", "properties": { "name": "Sudan", "pop_est": 25946220.000000, "AREA": 1856656500751.000000, "dichte": 13.000000 }, "geometry": { "type": "Point", "coordinates": [ 29.940468, 15.990357 ] } },
{ "type": "Feature", "properties": { "name": "S. Sudan", "pop_est": 10625176.000000, "AREA": 621344834670.000000, "dichte": 17.000000 }, "geometry": { "type": "Point", "coordinates": [ 30.2479, 7.308779 ] } },
{ "type": "Feature", "properties": { "name": "Senegal", "pop_est": 13711597.000000, "AREA": 196607533778.000000, "dichte": 69.000000 }, "geometry": { "type": "Point", "coordinates": [ -14.473492, 14.366242 ] } },
{ "type": "Feature", "properties": { "name": "Singapore", "pop_est": 4657542.000000, "AREA": 482634506.000000, "dichte": 9650.000000 }, "geometry": { "type": "Point", "coordinates": [ 103.817256, 1.358761 ] } },
{ "type": "Feature", "properties": { "name": "S. Geo. and S. Sandw. Is.", "pop_est": 30.000000, "AREA": 3684183013.000000, "dichte": 0.000000 }, "geometry": { "type": "Point", "coordinates": [ -36.433184, -54.464882 ] } },
{ "type": "Feature", "properties": { "name": "Saint Helena", "pop_est": 7637.000000, "AREA": 185124677.000000, "dichte": 41.000000 }, "geometry": { "type": "Point", "coordinates": [ -9.547794, -12.40356 ] } },
{ "type": "Feature", "properties": { "name": "Solomon Is.", "pop_est": 595613.000000, "AREA": 25640269999.000000, "dichte": 23.000000 }, "geometry": { "type": "Point", "coordinates": [ 159.632877, -8.92178 ] } },
{ "type": "Feature", "properties": { "name": "Sierra Leone", "pop_est": 6440053.000000, "AREA": 71574175437.000000, "dichte": 89.000000 }, "geometry": { "type": "Point", "coordinates": [ -11.792712, 8.563296 ] } },
{ "type": "Feature", "properties": { "name": "El Salvador", "pop_est": 7185218.000000, "AREA": 20309984746.000000, "dichte": 353.000000 }, "geometry": { "type": "Point", "coordinates": [ -88.871645, 13.739437 ] } },
{ "type": "Feature", "properties": { "name": "San Marino", "pop_est": 30324.000000, "AREA": 68394691.000000, "dichte": 443.000000 }, "geometry": { "type": "Point", "coordinates": [ 12.459223, 43.941867 ] } },
{ "type": "Feature", "properties": { "name": "Somaliland", "pop_est": 3500000.000000, "AREA": 167804489203.000000, "dichte": 20.000000 }, "geometry": { "type": "Point", "coordinates": [ 46.251984, 9.733455 ] } },
{ "type": "Feature", "properties": { "name": "Somalia", "pop_est": 9832017.000000, "AREA": 471472146185.000000, "dichte": 20.000000 }, "geometry": { "type": "Point", "coordinates": [ 45.707145, 4.750629 ] } },
{ "type": "Feature", "properties": { "name": "St. Pierre and Miquelon", "pop_est": 7051.000000, "AREA": 205770347.000000, "dichte": 34.000000 }, "geometry": { "type": "Point", "coordinates": [ -56.303198, 46.919188 ] } },
{ "type": "Feature", "properties": { "name": "Serbia", "pop_est": 7379339.000000, "AREA": 77647938531.000000, "dichte": 95.000000 }, "geometry": { "type": "Point", "coordinates": [ 20.789583, 44.221503 ] } },
{ "type": "Feature", "properties": { "name": "São Tomé and Principe", "pop_est": 212679.000000, "AREA": 981439138.000000, "dichte": 216.000000 }, "geometry": { "type": "Point", "coordinates": [ 6.724297, 0.443914 ] } },
{ "type": "Feature", "properties": { "name": "Suriname", "pop_est": 481267.000000, "AREA": 144940445129.000000, "dichte": 3.000000 }, "geometry": { "type": "Point", "coordinates": [ -55.912346, 4.130554 ] } },
{ "type": "Feature", "properties": { "name": "Slovakia", "pop_est": 5463046.000000, "AREA": 48487950374.000000, "dichte": 112.000000 }, "geometry": { "type": "Point", "coordinates": [ 19.479052, 48.705475 ] } },
{ "type": "Feature", "properties": { "name": "Slovenia", "pop_est": 2005692.000000, "AREA": 20244582379.000000, "dichte": 99.000000 }, "geometry": { "type": "Point", "coordinates": [ 14.804442, 46.115548 ] } },
{ "type": "Feature", "properties": { "name": "Sweden", "pop_est": 9059651.000000, "AREA": 445650363534.000000, "dichte": 20.000000 }, "geometry": { "type": "Point", "coordinates": [ 14.783805, 60.413995 ] } },
{ "type": "Feature", "properties": { "name": "Swaziland", "pop_est": 1123913.000000, "AREA": 16961386160.000000, "dichte": 66.000000 }, "geometry": { "type": "Point", "coordinates": [ 31.481937, -26.55843 ] } },
{ "type": "Feature", "properties": { "name": "Sint Maarten", "pop_est": 37429.000000, "AREA": 41716851.000000, "dichte": 897.000000 }, "geometry": { "type": "Point", "coordinates": [ -63.057134, 18.050817 ] } },
{ "type": "Feature", "properties": { "name": "Seychelles", "pop_est": 87476.000000, "AREA": 173638098.000000, "dichte": 503.000000 }, "geometry": { "type": "Point", "coordinates": [ 55.476033, -4.660991 ] } },
{ "type": "Feature", "properties": { "name": "Syria", "pop_est": 20178485.000000, "AREA": 185724767662.000000, "dichte": 108.000000 }, "geometry": { "type": "Point", "coordinates": [ 38.507882, 35.025474 ] } },
{ "type": "Feature", "properties": { "name": "Turks and Caicos Is.", "pop_est": 22942.000000, "AREA": 329419219.000000, "dichte": 69.000000 }, "geometry": { "type": "Point", "coordinates": [ -71.973879, 21.830476 ] } },
{ "type": "Feature", "properties": { "name": "Chad", "pop_est": 10329208.000000, "AREA": 1266581549552.000000, "dichte": 8.000000 }, "geometry": { "type": "Point", "coordinates": [ 18.644925, 15.333338 ] } },
{ "type": "Feature", "properties": { "name": "Togo", "pop_est": 6019877.000000, "AREA": 56902068969.000000, "dichte": 105.000000 }, "geometry": { "type": "Point", "coordinates": [ 0.962328, 8.525314 ] } },
{ "type": "Feature", "properties": { "name": "Thailand", "pop_est": 65905410.000000, "AREA": 513901566810.000000, "dichte": 128.000000 }, "geometry": { "type": "Point", "coordinates": [ 101.002881, 15.118158 ] } },
{ "type": "Feature", "properties": { "name": "Tajikistan", "pop_est": 7349145.000000, "AREA": 142395533261.000000, "dichte": 51.000000 }, "geometry": { "type": "Point", "coordinates": [ 71.013626, 38.530454 ] } },
{ "type": "Feature", "properties": { "name": "Turkmenistan", "pop_est": 4884887.000000, "AREA": 471027996101.000000, "dichte": 10.000000 }, "geometry": { "type": "Point", "coordinates": [ 59.371, 39.115541 ] } },
{ "type": "Feature", "properties": { "name": "Timor-Leste", "pop_est": 1131612.000000, "AREA": 14961259678.000000, "dichte": 75.000000 }, "geometry": { "type": "Point", "coordinates": [ 125.84439, -8.828892 ] } },
{ "type": "Feature", "properties": { "name": "Tonga", "pop_est": 120898.000000, "AREA": 429591908.000000, "dichte": 281.000000 }, "geometry": { "type": "Point", "coordinates": [ -174.809873, -20.428432 ] } },
{ "type": "Feature", "properties": { "name": "Trinidad and Tobago", "pop_est": 1310000.000000, "AREA": 5080611029.000000, "dichte": 257.000000 }, "geometry": { "type": "Point", "coordinates": [ -61.265679, 10.457334 ] } },
{ "type": "Feature", "properties": { "name": "Tunisia", "pop_est": 10486339.000000, "AREA": 156616582332.000000, "dichte": 66.000000 }, "geometry": { "type": "Point", "coordinates": [ 9.552884, 34.119562 ] } },
{ "type": "Feature", "properties": { "name": "Turkey", "pop_est": 76805524.000000, "AREA": 780477085222.000000, "dichte": 98.000000 }, "geometry": { "type": "Point", "coordinates": [ 35.168953, 39.061603 ] } },
{ "type": "Feature", "properties": { "name": "Taiwan", "pop_est": 22974347.000000, "AREA": 35932022179.000000, "dichte": 639.000000 }, "geometry": { "type": "Point", "coordinates": [ 120.954273, 23.753993 ] } },
{ "type": "Feature", "properties": { "name": "Tanzania", "pop_est": 41048532.000000, "AREA": 941735512896.000000, "dichte": 43.000000 }, "geometry": { "type": "Point", "coordinates": [ 34.8131, -6.275654 ] } },
{ "type": "Feature", "properties": { "name": "Uganda", "pop_est": 32369558.000000, "AREA": 241477442500.000000, "dichte": 134.000000 }, "geometry": { "type": "Point", "coordinates": [ 32.36908, 1.274693 ] } },
{ "type": "Feature", "properties": { "name": "Ukraine", "pop_est": 45700395.000000, "AREA": 599005651254.000000, "dichte": 76.000000 }, "geometry": { "type": "Point", "coordinates": [ 31.383265, 48.996567 ] } },
{ "type": "Feature", "properties": { "name": "Uruguay", "pop_est": 3494382.000000, "AREA": 177461769259.000000, "dichte": 19.000000 }, "geometry": { "type": "Point", "coordinates": [ -56.018071, -32.799515 ] } },
{ "type": "Feature", "properties": { "name": "United States", "pop_est": 313973000.000000, "AREA": 9455752567595.000000, "dichte": 33.000000 }, "geometry": { "type": "Point", "coordinates": [ -96.767474, 38.294041 ] } },
{ "type": "Feature", "properties": { "name": "Uzbekistan", "pop_est": 27606007.000000, "AREA": 448019127624.000000, "dichte": 61.000000 }, "geometry": { "type": "Point", "coordinates": [ 63.140015, 41.755542 ] } },
{ "type": "Feature", "properties": { "name": "Vatican", "pop_est": 832.000000, "AREA": 707514.000000, "dichte": 1175.000000 }, "geometry": { "type": "Point", "coordinates": [ 12.433872, 41.90175 ] } },
{ "type": "Feature", "properties": { "name": "St. Vin. and Gren.", "pop_est": 104574.000000, "AREA": 309902348.000000, "dichte": 337.000000 }, "geometry": { "type": "Point", "coordinates": [ -61.201297, 13.224723 ] } },
{ "type": "Feature", "properties": { "name": "Venezuela", "pop_est": 26814843.000000, "AREA": 910461743570.000000, "dichte": 29.000000 }, "geometry": { "type": "Point", "coordinates": [ -66.181841, 7.124224 ] } },
{ "type": "Feature", "properties": { "name": "British Virgin Is.", "pop_est": 24491.000000, "AREA": 134953626.000000, "dichte": 181.000000 }, "geometry": { "type": "Point", "coordinates": [ -64.47147, 18.525858 ] } },
{ "type": "Feature", "properties": { "name": "U.S. Virgin Is.", "pop_est": 109825.000000, "AREA": 314694660.000000, "dichte": 348.000000 }, "geometry": { "type": "Point", "coordinates": [ -64.803015, 17.955006 ] } },
{ "type": "Feature", "properties": { "name": "Vietnam", "pop_est": 86967524.000000, "AREA": 327832038706.000000, "dichte": 265.000000 }, "geometry": { "type": "Point", "coordinates": [ 106.299147, 16.646017 ] } },
{ "type": "Feature", "properties": { "name": "Vanuatu", "pop_est": 218519.000000, "AREA": 11250363073.000000, "dichte": 19.000000 }, "geometry": { "type": "Point", "coordinates": [ 167.686446, -16.226409 ] } },
{ "type": "Feature", "properties": { "name": "Wallis and Futuna Is.", "pop_est": 15289.000000, "AREA": 131162644.000000, "dichte": 116.000000 }, "geometry": { "type": "Point", "coordinates": [ -177.348348, -13.88737 ] } },
{ "type": "Feature", "properties": { "name": "Samoa", "pop_est": 219998.000000, "AREA": 2691219562.000000, "dichte": 81.000000 }, "geometry": { "type": "Point", "coordinates": [ -172.164851, -13.753243 ] } },
{ "type": "Feature", "properties": { "name": "Yemen", "pop_est": 23822783.000000, "AREA": 452560372438.000000, "dichte": 52.000000 }, "geometry": { "type": "Point", "coordinates": [ 47.586762, 15.90928 ] } },
{ "type": "Feature", "properties": { "name": "South Africa", "pop_est": 49052489.000000, "AREA": 1220022927475.000000, "dichte": 40.000000 }, "geometry": { "type": "Point", "coordinates": [ 25.083901, -29.000341 ] } },
{ "type": "Feature", "properties": { "name": "Zambia", "pop_est": 11862740.000000, "AREA": 752769920118.000000, "dichte": 15.000000 }, "geometry": { "type": "Point", "coordinates": [ 27.774759, -13.458242 ] } },
{ "type": "Feature", "properties": { "name": "Zimbabwe", "pop_est": 12619600.000000, "AREA": 388995344665.000000, "dichte": 32.000000 }, "geometry": { "type": "Point", "coordinates": [ 29.851441, -19.004204 ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment