Skip to content

Instantly share code, notes, and snippets.

@dwtkns
Last active October 19, 2023 16:44
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save dwtkns/4710879 to your computer and use it in GitHub Desktop.
Save dwtkns/4710879 to your computer and use it in GitHub Desktop.
Slippy map + extent indicator
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
margin: 0;
}
/* misc */
.info {
position: absolute;
bottom: 10px;
left: 10px;
font: 14px sans-serif;
}
.attrib {
position: absolute;
bottom: 10px;
right: 10px;
font: 10px sans-serif;
padding: 5px;
background-color:white;
opacity:.8;
}
.attrib a {
color: black;
font-weight:800;
}
/* tiles */
.map {
position: relative;
overflow: hidden;
}
.layer {
position: absolute;
}
.tile {
position: absolute;
width: 256px;
height: 256px;
opacity:.8;
}
/* globe */
svg {
position:absolute;
bottom:10px;
}
.land {
fill: rgb(84, 77, 69);
stroke-opacity: 1;
}
.countries path {
stroke: rgb(80, 64, 39);
stroke-linejoin: round;
stroke-width:.5;
fill: rgb(117, 87, 57);
opacity: .1;
}
.countries path:hover {
fill-opacity:.1;
stroke-width:1;
opacity: 1;
}
.graticule {
fill: none;
stroke: black;
stroke-width:.5;
opacity:.3;
}
.extent {
fill: #933;
opacity: .6;
}
.noclicks {
pointer-events:none;
}
.point { fill:rgb(57, 38, 19); }
/* point classes */
.point.r1 { opacity: .8; }
.point.r2 { opacity: .8; }
.point.r3,
.point.r4,
.point.r5 { opacity: .3; }
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.tile.v0.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
<script>
// slippy map code from
// http://bl.ocks.org/3943330 by tmcw
// http://bl.ocks.org/4132797 by mbostock
var width = window.innerWidth,
height = window.innerHeight,
prefix = prefixMatch(["webkit", "ms", "Moz", "O"]);
var inset = {
w: 320,
h: 320,
projection: null, extentRect: null, svg: null, path: null, graticule: null,
init: function() {
inset.projection = d3.geo.orthographic()
.scale(140)
.translate([inset.w / 2, inset.h / 2])
.clipAngle(90)
inset.path = d3.geo.path()
.projection(inset.projection)
.pointRadius(1.5);
inset.graticule = d3.geo.graticule();
inset.extentRect = [{
"type": "Feature",
"geometry": { "type": "Polygon", "coordinates": [[]]}
}]
inset.svg = d3.select("body").append("svg")
.attr("width", inset.w)
.attr("height", inset.h)
.attr("class","noclicks")
queue()
.defer(d3.json, "world-110m.json")
.defer(d3.json, "places.json")
.await(inset.ready);
},
ready: function(error,world,places) {
var scale = inset.projection.scale();
var defs = inset.svg.append("defs")
var ocean = defs.append("radialGradient")
.attr("id", "ocean")
.attr("cx", "75%")
.attr("cy", "25%");
ocean.append("stop").attr("offset", "5%").attr("stop-color", "#e6e6f4");
ocean.append("stop").attr("offset", "100%").attr("stop-color", "#a2abb3");
var highlight = defs.append("radialGradient")
.attr("id", "highlight")
.attr("cx", "75%")
.attr("cy", "25%");
highlight.append("stop")
.attr("offset", "5%").attr("stop-color", "#ffd")
.attr("stop-opacity","0.6");
highlight.append("stop")
.attr("offset", "100%").attr("stop-color", "#ba9")
.attr("stop-opacity","0.2");
var shade = defs.append("radialGradient")
.attr("id", "shade")
.attr("cx", "50%")
.attr("cy", "40%");
shade.append("stop")
.attr("offset","50%").attr("stop-color", "#a2abb3")
.attr("stop-opacity","0")
shade.append("stop")
.attr("offset","100%").attr("stop-color", "#57616b")
.attr("stop-opacity","0.3")
var halo = defs.append("radialGradient")
.attr("id", "halo")
.attr("cx", "50%")
.attr("cy", "50%");
halo.append("stop")
.attr("offset","85%").attr("stop-color", "#FFF")
.attr("stop-opacity","1")
halo.append("stop")
.attr("offset","100%").attr("stop-color", "#FFF")
.attr("stop-opacity","0")
inset.svg.append("ellipse")
.attr("cx", inset.w/2).attr("cy", inset.h/2)
.attr("rx", scale+20)
.attr("ry", scale+20)
.attr("class", "noclicks")
.style("fill", "url(#halo)");
inset.svg.append("circle")
.attr("cx", inset.w / 2).attr("cy", inset.h / 2)
.attr("r", scale)
.attr("class", "noclicks")
.style("fill", "url(#ocean)");
inset.svg.append("path")
.datum(topojson.object(world, world.objects.land))
.attr("class", "land")
.attr("d", inset.path);
inset.svg.append("path")
.datum(inset.graticule)
.attr("class", "graticule noclicks")
.attr("d", inset.path);
inset.svg.append("circle")
.attr("cx", inset.w / 2).attr("cy", inset.h / 2)
.attr("r", scale)
.attr("class","noclicks")
.style("fill", "url(#highlight)");
inset.svg.append("circle")
.attr("cx", inset.w / 2).attr("cy", inset.h/ 2)
.attr("r", scale)
.attr("class","noclicks")
.style("fill", "url(#shade)");
inset.svg.append("g").attr("class","points")
.selectAll("text").data(places.features)
.enter().append("path")
.attr("class", function(d){
return "point r" + (5-d.properties.scalerank)
})
.attr("d", inset.path);
inset.svg.append("g").attr("class","extents")
.selectAll("path").data(inset.extentRect)
.enter().append("path")
.attr("class", "extent")
.attr("d", inset.path);
},
refresh: function(dims) {
inset.projection.rotate([-dims.center[0],-dims.center[1]])
var e = dims.topline.concat(dims.bottomline);
e.push([dims.topline[0]])
inset.extentRect[0].geometry.coordinates[0] = e;
inset.svg.select(".extent").attr("d", inset.path);
inset.svg.select(".land").attr("d", inset.path);
inset.svg.select(".graticule").attr("d", inset.path);
inset.svg.select(".extent").attr("d", inset.path);
inset.svg.selectAll(".point").attr("d", inset.path);
}
}
var bg = {
tile: null,
init: function() {},
refresh: function() {},
}
var tile = d3.geo.tile()
.size([width, height]);
var projection = d3.geo.mercator();
var zoom = d3.behavior.zoom()
.scale(1 << 13)
.scaleExtent([1 << 12, 1 << 23])
.translate([width / 2, height / 2])
.on("zoom", refresh);
var map = d3.select("body").append("div")
.attr("class", "map")
.style("width", width + "px")
.style("height", height + "px")
.call(zoom)
.on("mousemove", mousemoved);
var layer = map.append("div").attr("class", "layer");
var info = map.append("div").attr("class", "info");
var attrib = map.append("div").attr("class", "attrib").html('Map tiles by <a href="http://stamen.com">Stamen Design</a>, under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, under <a href="http://creativecommons.org/licenses/by-sa/3.0">CC BY SA</a>.')
inset.init();
refresh();
function refresh() {
var tiles = tile
.scale(zoom.scale())
.translate(zoom.translate())
();
projection
.scale(zoom.scale())
.translate(zoom.translate());
var map_dims = {
topline: [],
bottomline: [],
center: projection.invert([width/2,height/2])
// for static globe / moving extent
// center: [-70,45]
}
var samples = 8,
step = width/samples;
for (var i = 0; i < samples; i++) {
map_dims.topline
.push(projection.invert( [step*i,0] ))
map_dims.bottomline
.push(projection.invert( [step*(samples-i-1),height] ))
}
inset.refresh(map_dims)
var image = layer
.style(prefix + "transform", matrix3d(tiles.scale, tiles.translate))
.selectAll(".tile")
.data(tiles, function(d) { return d; });
image.exit().remove();
image.enter().append("img")
.attr("class", "tile")
.attr("src", function(d) { return "http://tile.stamen.com/toner-lite/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; })
.style("left", function(d) { return (d[0] << 8) + "px"; })
.style("top", function(d) { return (d[1] << 8) + "px"; });
}
function mousemoved() {
info.text(formatLocation(projection.invert(d3.mouse(this)), zoom.scale()));
}
function matrix3d(scale, translate) {
var k = scale / 256, r = scale % 1 ? Number : Math.round;
return "matrix3d(" + [k, 0, 0, 0, 0, k, 0, 0, 0, 0, k, 0, r(translate[0] * scale), r(translate[1] * scale), 0, 1 ] + ")";
}
function prefixMatch(p) {
var i = -1, n = p.length, s = document.body.style;
while (++i < n) if (p[i] + "Transform" in s) return "-" + p[i].toLowerCase() + "-";
return "";
}
function formatLocation(p, k) {
var format = d3.format("." + Math.floor(Math.log(k) / 2 - 2) + "f");
return (p[1] < 0 ? format(-p[1]) + "°S" : format(p[1]) + "°N") + " "
+ (p[0] < 0 ? format(-p[0]) + "°W" : format(p[0]) + "°E");
}
</script>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port-of-Spain", "nameascii": "Port-of-Spain", "adm0name": "Trinidad and Tobago", "adm0_a3": "TTO", "adm1name": "Port of Spain", "iso_a2": "TT", "note": null, "latitude": 10.6519970896, "longitude": -61.517030885399997, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 294934, "pop_min": 49031, "pop_other": 419082, "rank_max": 10, "rank_min": 7, "geonameid": 3573890.0, "meganame": null, "ls_name": "Port-of-Spain", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -61.517030885449742, 10.651997089577264 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Kigali", "nameascii": "Kigali", "adm0name": "Rwanda", "adm0_a3": "RWA", "adm1name": "Kigali City", "iso_a2": "RW", "note": null, "latitude": -1.95359006868, "longitude": 30.0605317777, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 860000, "pop_min": 745261, "pop_other": 1152904, "rank_max": 11, "rank_min": 11, "geonameid": 202061.0, "meganame": "Kigali", "ls_name": "Kigali", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 30.058585919064114, -1.95164421006325 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Mbabane", "nameascii": "Mbabane", "adm0name": "Swaziland", "adm0_a3": "SWZ", "adm1name": "Hhohho", "iso_a2": "SZ", "note": null, "latitude": -26.3166507784, "longitude": 31.133334512099999, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 90138, "pop_min": 76218, "pop_other": 89979, "rank_max": 8, "rank_min": 8, "geonameid": 934985.0, "meganame": null, "ls_name": "Mbabane", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.133334512056365, -26.316650778409212 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Juba", "nameascii": "Juba", "adm0name": "South Sudan", "adm0_a3": "SSD", "adm1name": "Central Equatoria", "iso_a2": "SS", "note": null, "latitude": 4.82997519828, "longitude": 31.580025592799998, "changed": 20.0, "namediff": 0, "diffnote": "Changed country.", "pop_max": 111975, "pop_min": 111975, "pop_other": 111975, "rank_max": 9, "rank_min": 9, "geonameid": 373303.0, "meganame": null, "ls_name": "Juba", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.580025592787308, 4.829975198277964 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital alt", "name": "The Hague", "nameascii": "The Hague", "adm0name": "Netherlands", "adm0_a3": "NLD", "adm1name": "Zuid-Holland", "iso_a2": "NL", "note": null, "latitude": 52.080036844, "longitude": 4.26996130231, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1406000, "pop_min": 501725, "pop_other": 688599, "rank_max": 12, "rank_min": 11, "geonameid": 2747373.0, "meganame": null, "ls_name": "The Hague", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 4.269961302313448, 52.080036843974881 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Ljubljana", "nameascii": "Ljubljana", "adm0name": "Slovenia", "adm0_a3": "SVN", "adm1name": "Osrednjeslovenska", "iso_a2": "SI", "note": null, "latitude": 46.055288308800002, "longitude": 14.5149690335, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 314807, "pop_min": 255115, "pop_other": 256316, "rank_max": 10, "rank_min": 10, "geonameid": 3196359.0, "meganame": null, "ls_name": "Ljubljana", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.514969033474131, 46.055288308794502 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Bratislava", "nameascii": "Bratislava", "adm0name": "Slovakia", "adm0_a3": "SVK", "adm1name": "Bratislavský", "iso_a2": "SK", "note": null, "latitude": 48.15001833, "longitude": 17.1169807522, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 423737, "pop_min": 373687, "pop_other": 361489, "rank_max": 10, "rank_min": 10, "geonameid": 3060972.0, "meganame": null, "ls_name": "Bratislava", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.11698075223461, 48.150018329961711 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Doha", "nameascii": "Doha", "adm0name": "Qatar", "adm0_a3": "QAT", "adm1name": "Ad Dawhah", "iso_a2": "QA", "note": null, "latitude": 25.2865560089, "longitude": 51.5329678943, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 1450000, "pop_min": 731310, "pop_other": 0, "rank_max": 12, "rank_min": 11, "geonameid": 290030.0, "meganame": null, "ls_name": "Doha", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 51.532967894299304, 25.286556008906587 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Podgorica", "nameascii": "Podgorica", "adm0name": "Montenegro", "adm0_a3": "MNE", "adm1name": "Podgorica", "iso_a2": "ME", "note": null, "latitude": 42.465972512900002, "longitude": 19.2663069241, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 145850, "pop_min": 136473, "pop_other": 0, "rank_max": 9, "rank_min": 9, "geonameid": 3193044.0, "meganame": null, "ls_name": "Podgorica", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.266306924118226, 42.465972512881706 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 6, "featurecla": "Admin-0 capital alt", "name": "Sri Jawewardenepura Kotte", "nameascii": "Sri Jawewardenepura Kotte", "adm0name": "Sri Lanka", "adm0_a3": "LKA", "adm1name": "Colombo", "iso_a2": "LK", "note": null, "latitude": 6.90000388481, "longitude": 79.949993040899997, "changed": 4.0, "namediff": 1, "diffnote": "Name changed.", "pop_max": 115826, "pop_min": 115826, "pop_other": 2456292, "rank_max": 9, "rank_min": 9, "geonameid": 1238992.0, "meganame": null, "ls_name": "Kotte", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.949993040897482, 6.900003884809621 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 5, "featurecla": "Admin-0 capital alt", "name": "Baguio City", "nameascii": "Baguio City", "adm0name": "Philippines", "adm0_a3": "PHL", "adm1name": "Benguet", "iso_a2": "PH", "note": null, "latitude": 16.429990660600001, "longitude": 120.569942585, "changed": 40.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 447824, "pop_min": 272714, "pop_other": 164877, "rank_max": 10, "rank_min": 10, "geonameid": 1728930.0, "meganame": null, "ls_name": "Baguio City", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 120.569942585330864, 16.429990660563931 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 5, "featurecla": "Admin-0 capital alt", "name": "Dodoma", "nameascii": "Dodoma", "adm0name": "Tanzania", "adm0_a3": "TZA", "adm1name": "Dodoma", "iso_a2": "TZ", "note": null, "latitude": -6.18330605177, "longitude": 35.750003620100003, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 218269, "pop_min": 180541, "pop_other": 0, "rank_max": 10, "rank_min": 9, "geonameid": 160196.0, "meganame": null, "ls_name": "Dodoma", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.750003620147652, -6.183306051766181 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Bern", "nameascii": "Bern", "adm0name": "Switzerland", "adm0_a3": "CHE", "adm1name": "Bern", "iso_a2": "CH", "note": null, "latitude": 46.916682758699999, "longitude": 7.46697546248, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 275329, "pop_min": 121631, "pop_other": 267814, "rank_max": 10, "rank_min": 9, "geonameid": 2661552.0, "meganame": null, "ls_name": "Bern", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.466975462482424, 46.916682758667719 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 5, "featurecla": "Admin-0 capital alt", "name": "Laayoune", "nameascii": "Laayoune", "adm0name": "Morocco", "adm0_a3": "MAR", "adm1name": "Laâyoune - Boujdour - Sakia El Hamra", "iso_a2": "MA", "note": null, "latitude": 27.149982319100001, "longitude": -13.200005942200001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 188084, "pop_min": 176365, "pop_other": 176365, "rank_max": 9, "rank_min": 9, "geonameid": 2462881.0, "meganame": null, "ls_name": "Laayoune", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.200005942222674, 27.149982319135461 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Pristina", "nameascii": "Pristina", "adm0name": "Kosovo", "adm0_a3": "KOS", "adm1name": "Pristina", "iso_a2": "-99", "note": null, "latitude": 42.6667096141, "longitude": 21.165984251600001, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 465186, "pop_min": 198214, "pop_other": 261783, "rank_max": 10, "rank_min": 9, "geonameid": 786714.0, "meganame": null, "ls_name": "Pristina", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.165984251599866, 42.666709614119384 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Roseau", "nameascii": "Roseau", "adm0name": "Dominica", "adm0_a3": "DMA", "adm1name": "Saint George", "iso_a2": "DM", "note": null, "latitude": 15.3010156443, "longitude": -61.387012981799998, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 23336, "pop_min": 16571, "pop_other": 23336, "rank_max": 7, "rank_min": 6, "geonameid": 3575635.0, "meganame": null, "ls_name": "Roseau", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -61.387012981803366, 15.301015644283325 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Djibouti", "nameascii": "Djibouti", "adm0name": "Djibouti", "adm0_a3": "DJI", "adm1name": "Djibouti", "iso_a2": "DJ", "note": null, "latitude": 11.5950144643, "longitude": 43.148001667099997, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 923000, "pop_min": 604013, "pop_other": 335001, "rank_max": 11, "rank_min": 11, "geonameid": 223817.0, "meganame": null, "ls_name": "Djibouti", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.148001667052256, 11.595014464255485 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 6, "featurecla": "Admin-0 capital alt", "name": "Putrajaya", "nameascii": "Putrajaya", "adm0name": "Malaysia", "adm0_a3": "MYS", "adm1name": "Selangor", "iso_a2": "MY", "note": null, "latitude": 2.91401979462, "longitude": 101.70194698, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 67964, "pop_min": 50000, "pop_other": 956431, "rank_max": 8, "rank_min": 7, "geonameid": 6697380.0, "meganame": null, "ls_name": "Putrajaya", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 101.701946979786499, 2.914019794624551 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 2, "featurecla": "Admin-0 capital alt", "name": "Kyoto", "nameascii": "Kyoto", "adm0name": "Japan", "adm0_a3": "JPN", "adm1name": "Kyoto", "iso_a2": "JP", "note": null, "latitude": 35.029992288199999, "longitude": 135.749997924000013, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1805000, "pop_min": 1459640, "pop_other": 1827367, "rank_max": 12, "rank_min": 12, "geonameid": 1857910.0, "meganame": "Kyoto", "ls_name": "Kyoto", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 135.748052065320394, 35.031938146855623 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Banjul", "nameascii": "Banjul", "adm0name": "The Gambia", "adm0_a3": "GMB", "adm1name": "Banjul", "iso_a2": "GM", "note": null, "latitude": 13.4538764603, "longitude": -16.591701489199998, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 43094, "pop_min": 34589, "pop_other": 581300, "rank_max": 7, "rank_min": 7, "geonameid": 2413876.0, "meganame": null, "ls_name": "Banjul", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.591701489212596, 13.453876460315939 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Skopje", "nameascii": "Skopje", "adm0name": "Macedonia", "adm0_a3": "MKD", "adm1name": "Centar", "iso_a2": "MK", "note": null, "latitude": 42.000006122899997, "longitude": 21.433461465099999, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 494087, "pop_min": 474889, "pop_other": 491890, "rank_max": 10, "rank_min": 10, "geonameid": 785842.0, "meganame": null, "ls_name": "Skopje", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 21.4334614651425, 42.000006122905859 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bridgetown", "nameascii": "Bridgetown", "adm0name": "Barbados", "adm0_a3": "BRB", "adm1name": "Saint Michael", "iso_a2": "BB", "note": null, "latitude": 13.102002582800001, "longitude": -59.616526735100003, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 191152, "pop_min": 96578, "pop_other": 191814, "rank_max": 9, "rank_min": 8, "geonameid": 2075807.0, "meganame": null, "ls_name": "Bridgetown", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -59.616526735051593, 13.10200258275114 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital alt", "name": "Porto-Novo", "nameascii": "Porto-Novo", "adm0name": "Benin", "adm0_a3": "BEN", "adm1name": "Ouémé", "iso_a2": "BJ", "note": null, "latitude": 6.48331097302, "longitude": 2.61662552757, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 300000, "pop_min": 234168, "pop_other": 806945, "rank_max": 10, "rank_min": 10, "geonameid": 2392087.0, "meganame": null, "ls_name": "Porto-Novo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 2.61662552756718, 6.483310973024231 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bujumbura", "nameascii": "Bujumbura", "adm0name": "Burundi", "adm0_a3": "BDI", "adm1name": "Bujumbura Mairie", "iso_a2": "BI", "note": null, "latitude": -3.37608722037, "longitude": 29.360006061499998, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 331700, "pop_min": 331700, "pop_other": 1208361, "rank_max": 10, "rank_min": 10, "geonameid": 425378.0, "meganame": null, "ls_name": "Bujumbura", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.360006061528395, -3.376087220374643 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Kingstown", "nameascii": "Kingstown", "adm0name": "Saint Vincent and the Grenadines", "adm0_a3": "VCT", "adm1name": null, "iso_a2": "VC", "note": null, "latitude": 13.1482788279, "longitude": -61.212062420300001, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 49485, "pop_min": 24518, "pop_other": 0, "rank_max": 7, "rank_min": 7, "geonameid": 4359981.0, "meganame": null, "ls_name": "Kingstown", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -61.212062420279324, 13.14827882786841 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Castries", "nameascii": "Castries", "adm0name": "Saint Lucia", "adm0_a3": "LCA", "adm1name": null, "iso_a2": "LC", "note": null, "latitude": 14.001973489299999, "longitude": -61.000008180400002, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 37963, "pop_min": 10634, "pop_other": 0, "rank_max": 7, "rank_min": 6, "geonameid": 3028258.0, "meganame": null, "ls_name": "Castries", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -61.000008180369548, 14.001973489330339 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Basseterre", "nameascii": "Basseterre", "adm0name": "Saint Kitts and Nevis", "adm0_a3": "KNA", "adm1name": null, "iso_a2": "KN", "note": null, "latitude": 17.302030455499999, "longitude": -62.717009319699997, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 21887, "pop_min": 15500, "pop_other": 21887, "rank_max": 7, "rank_min": 6, "geonameid": 3575551.0, "meganame": null, "ls_name": "Basseterre", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -62.717009319699343, 17.302030455489387 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Port Louis", "nameascii": "Port Louis", "adm0name": "Mauritius", "adm0_a3": "MUS", "adm1name": null, "iso_a2": "MU", "note": null, "latitude": -20.1666385714, "longitude": 57.4999938546, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 595491, "pop_min": 148416, "pop_other": 304613, "rank_max": 11, "rank_min": 9, "geonameid": 934154.0, "meganame": null, "ls_name": "Port Louis", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 57.499993854609727, -20.166638571353246 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Saint George's", "nameascii": "Saint George's", "adm0name": "Grenada", "adm0_a3": "GRD", "adm1name": null, "iso_a2": "GD", "note": null, "latitude": 12.0526334017, "longitude": -61.741643226100003, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 33734, "pop_min": 27343, "pop_other": 27343, "rank_max": 7, "rank_min": 7, "geonameid": 3579925.0, "meganame": null, "ls_name": "Saint George‰?s", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -61.741643226074757, 12.052633401720414 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Manama", "nameascii": "Manama", "adm0name": "Bahrain", "adm0_a3": "BHR", "adm1name": null, "iso_a2": "BH", "note": null, "latitude": 26.236136290499999, "longitude": 50.583051715899998, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 563920, "pop_min": 157474, "pop_other": 563666, "rank_max": 11, "rank_min": 9, "geonameid": 290340.0, "meganame": null, "ls_name": "Manama", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 50.583051715910187, 26.236136290485945 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 4, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Saint John's", "nameascii": "Saint John's", "adm0name": "Antigua and Barbuda", "adm0_a3": "ATG", "adm1name": null, "iso_a2": "AG", "note": null, "latitude": 17.118036518299999, "longitude": -61.850033815099998, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 35499, "pop_min": 24226, "pop_other": 0, "rank_max": 7, "rank_min": 7, "geonameid": 3576022.0, "meganame": null, "ls_name": "Saint John's", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -61.850033815138659, 17.118036518314113 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Montevideo", "nameascii": "Montevideo", "adm0name": "Uruguay", "adm0_a3": "URY", "adm1name": "Montevideo", "iso_a2": "UY", "note": null, "latitude": -34.858041566200001, "longitude": -56.171052288399999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1513000, "pop_min": 5324, "pop_other": 1276128, "rank_max": 12, "rank_min": 5, "geonameid": 5038018.0, "meganame": "Montevideo", "ls_name": "Montevideo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.172998147035969, -34.856095707590725 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Lome", "nameascii": "Lome", "adm0name": "Togo", "adm0_a3": "TGO", "adm1name": "Maritime", "iso_a2": "TG", "note": null, "latitude": 6.13193707166, "longitude": 1.22275711936, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1452000, "pop_min": 749700, "pop_other": 1256715, "rank_max": 12, "rank_min": 11, "geonameid": 2365267.0, "meganame": "Lomé", "ls_name": "Lome", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 1.22081126074562, 6.133882930268385 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Tunis", "nameascii": "Tunis", "adm0name": "Tunisia", "adm0_a3": "TUN", "adm1name": "Tunis", "iso_a2": "TN", "note": null, "latitude": 36.802778136199997, "longitude": 10.1796780992, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 2412500, "pop_min": 728453, "pop_other": 1675117, "rank_max": 12, "rank_min": 11, "geonameid": 2464470.0, "meganame": null, "ls_name": "Tunis", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.179678099212026, 36.802778136231439 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Abu Dhabi", "nameascii": "Abu Dhabi", "adm0name": "United Arab Emirates", "adm0_a3": "ARE", "adm1name": "Abu Dhabi", "iso_a2": "AE", "note": null, "latitude": 24.466683572400001, "longitude": 54.366593382600001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 603492, "pop_min": 560230, "pop_other": 560230, "rank_max": 11, "rank_min": 11, "geonameid": 292968.0, "meganame": null, "ls_name": "Abu Dhabi", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.366593382591986, 24.466683572379907 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Ashgabat", "nameascii": "Ashgabat", "adm0name": "Turkmenistan", "adm0_a3": "TKM", "adm1name": "Ahal", "iso_a2": "TM", "note": null, "latitude": 37.949994933100001, "longitude": 58.3832991118, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 727700, "pop_min": 577982, "pop_other": 556048, "rank_max": 11, "rank_min": 11, "geonameid": 162183.0, "meganame": null, "ls_name": "Ashgabat", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.383299111774647, 37.949994933110986 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Lusaka", "nameascii": "Lusaka", "adm0name": "Zambia", "adm0_a3": "ZMB", "adm1name": "Lusaka", "iso_a2": "ZM", "note": null, "latitude": -15.416644267900001, "longitude": 28.283327594700001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1328000, "pop_min": 1267440, "pop_other": 1240558, "rank_max": 12, "rank_min": 12, "geonameid": 909137.0, "meganame": "Lusaka", "ls_name": "Lusaka", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.28138173611427, -15.414698409335926 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Harare", "nameascii": "Harare", "adm0name": "Zimbabwe", "adm0_a3": "ZWE", "adm1name": "Harare", "iso_a2": "ZW", "note": null, "latitude": -17.817789694399998, "longitude": 31.044709430699999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1572000, "pop_min": 1542813, "pop_other": 1831877, "rank_max": 12, "rank_min": 12, "geonameid": 890299.0, "meganame": "Harare", "ls_name": "Harare", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.042763572062825, -17.815843835777798 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dili", "nameascii": "Dili", "adm0name": "East Timor", "adm0_a3": "TLS", "adm1name": "Dili", "iso_a2": "TL", "note": null, "latitude": -8.559388408549999, "longitude": 125.579455932, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 234331, "pop_min": 193563, "pop_other": 55154, "rank_max": 10, "rank_min": 9, "geonameid": 1645457.0, "meganame": null, "ls_name": "Dili", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.57945593170507, -8.559388408546454 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port Vila", "nameascii": "Port-Vila", "adm0name": "Vanuatu", "adm0_a3": "VUT", "adm1name": "Shefa", "iso_a2": "VU", "note": null, "latitude": -17.733350404, "longitude": 168.316640584, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 44040, "pop_min": 35901, "pop_other": 7702, "rank_max": 7, "rank_min": 7, "geonameid": 2135171.0, "meganame": null, "ls_name": "Port-Vila", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 168.316640583568642, -17.733350404025828 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tegucigalpa", "nameascii": "Tegucigalpa", "adm0name": "Honduras", "adm0_a3": "HND", "adm1name": "Francisco Morazán", "iso_a2": "HN", "note": null, "latitude": 14.102044900499999, "longitude": -87.2175293393, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 946000, "pop_min": 850848, "pop_other": 1014546, "rank_max": 11, "rank_min": 11, "geonameid": 3600949.0, "meganame": "Tegucigalpa", "ls_name": "Tegucigalpa", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.219475197941506, 14.103990759076396 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Georgetown", "nameascii": "Georgetown", "adm0name": "Guyana", "adm0_a3": "GUY", "adm1name": "East Berbice-Corentyne", "iso_a2": "GY", "note": null, "latitude": 6.80197369275, "longitude": -58.167028647499997, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 264350, "pop_min": 235017, "pop_other": 264350, "rank_max": 10, "rank_min": 10, "geonameid": 3378644.0, "meganame": null, "ls_name": "Georgetown1", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -58.167028647480606, 6.801973692752028 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Reykjavík", "nameascii": "Reykjavik", "adm0name": "Iceland", "adm0_a3": "ISL", "adm1name": "Suðurnes", "iso_a2": "IS", "note": null, "latitude": 64.150023619699994, "longitude": -21.950014487200001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 166212, "pop_min": 113906, "pop_other": 160116, "rank_max": 9, "rank_min": 9, "geonameid": 3413829.0, "meganame": null, "ls_name": "Reykjavik", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.950014487179544, 64.150023619739216 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port-au-Prince", "nameascii": "Port-au-Prince", "adm0name": "Haiti", "adm0_a3": "HTI", "adm1name": "Ouest", "iso_a2": "HT", "note": null, "latitude": 18.541024596100002, "longitude": -72.336034588299995, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1998000, "pop_min": 1234742, "pop_other": 2385397, "rank_max": 12, "rank_min": 12, "geonameid": 3718426.0, "meganame": "Port-au-Prince", "ls_name": "Port-au-Prince", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -72.337980446905533, 18.542970454732369 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Kampala", "nameascii": "Kampala", "adm0name": "Uganda", "adm0_a3": "UGA", "adm1name": "Kampala", "iso_a2": "UG", "note": null, "latitude": 0.31665895477, "longitude": 32.583323525700003, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1420000, "pop_min": 1353189, "pop_other": 2153702, "rank_max": 12, "rank_min": 12, "geonameid": 232422.0, "meganame": "Kampala", "ls_name": "Kampala", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 32.581377667121046, 0.318604813383331 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Paramaribo", "nameascii": "Paramaribo", "adm0name": "Suriname", "adm0_a3": "SUR", "adm1name": "Paramaribo", "iso_a2": "SR", "note": null, "latitude": 5.83503012992, "longitude": -55.167030885400003, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 254169, "pop_min": 223757, "pop_other": 248161, "rank_max": 10, "rank_min": 10, "geonameid": 3383330.0, "meganame": null, "ls_name": "Paramaribo", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -55.167030885424367, 5.835030129922586 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Niamey", "nameascii": "Niamey", "adm0name": "Niger", "adm0_a3": "NER", "adm1name": "Niamey", "iso_a2": "NE", "note": null, "latitude": 13.516705951900001, "longitude": 2.11665604514, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 915000, "pop_min": 742791, "pop_other": 715325, "rank_max": 11, "rank_min": 11, "geonameid": 2440485.0, "meganame": "Niamey", "ls_name": "Niamey", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 2.114710186530374, 13.518651810506469 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dushanbe", "nameascii": "Dushanbe", "adm0name": "Tajikistan", "adm0_a3": "TJK", "adm1name": "Tadzhikistan Territories", "iso_a2": "TJ", "note": null, "latitude": 38.560035216300001, "longitude": 68.773879352700007, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1086244, "pop_min": 679400, "pop_other": 1081361, "rank_max": 12, "rank_min": 11, "geonameid": 1221874.0, "meganame": null, "ls_name": "Dushanbe", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 68.773879352701726, 38.560035216316578 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Asuncion", "nameascii": "Asuncion", "adm0name": "Paraguay", "adm0_a3": "PRY", "adm1name": "Asunción", "iso_a2": "PY", "note": null, "latitude": -25.296402975700001, "longitude": -57.641505169299997, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1870000, "pop_min": 11693, "pop_other": 636771, "rank_max": 12, "rank_min": 6, "geonameid": 1730025.0, "meganame": "Asunción", "ls_name": "Asuncion", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -57.643451027901335, -25.294457117057675 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Managua", "nameascii": "Managua", "adm0name": "Nicaragua", "adm0_a3": "NIC", "adm1name": "Managua", "iso_a2": "NI", "note": null, "latitude": 12.153016580099999, "longitude": -86.2684916603, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 920000, "pop_min": 920000, "pop_other": 1088194, "rank_max": 11, "rank_min": 11, "geonameid": 3617763.0, "meganame": "Managua", "ls_name": "Managua", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -86.27043751890119, 12.154962438756115 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Freetown", "nameascii": "Freetown", "adm0name": "Sierra Leone", "adm0_a3": "SLE", "adm1name": "Western", "iso_a2": "SL", "note": null, "latitude": 8.470011412490001, "longitude": -13.2342157404, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 827000, "pop_min": 13768, "pop_other": 1074640, "rank_max": 11, "rank_min": 6, "geonameid": 2408770.0, "meganame": "Freetown", "ls_name": "Freetown", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.236161599012746, 8.471957271098177 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Islamabad", "nameascii": "Islamabad", "adm0name": "Pakistan", "adm0_a3": "PAK", "adm1name": "F.C.T.", "iso_a2": "PK", "note": null, "latitude": 33.6999959503, "longitude": 73.166634479699994, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 780000, "pop_min": 601600, "pop_other": 893673, "rank_max": 11, "rank_min": 11, "geonameid": 1176615.0, "meganame": "Islamabad", "ls_name": "Islamabad", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.164688621059554, 33.701941808959589 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Kathmandu", "nameascii": "Kathmandu", "adm0name": "Nepal", "adm0_a3": "NPL", "adm1name": "Bhaktapur", "iso_a2": "NP", "note": null, "latitude": 27.7166919139, "longitude": 85.316642210799998, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 895000, "pop_min": 895000, "pop_other": 1099610, "rank_max": 11, "rank_min": 11, "geonameid": 1283240.0, "meganame": "Kathmandu", "ls_name": "Kathmandu", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 85.314696352227884, 27.718637772477223 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Bloemfontein", "nameascii": "Bloemfontein", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Orange Free State", "iso_a2": "ZA", "note": null, "latitude": -29.119993877399999, "longitude": 26.229912881200001, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 463064, "pop_min": 456669, "pop_other": 456513, "rank_max": 10, "rank_min": 10, "geonameid": 1018725.0, "meganame": null, "ls_name": "Bloemfontein", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 26.22991288117737, -29.119993877378704 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Pretoria", "nameascii": "Pretoria", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Gauteng", "iso_a2": "ZA", "note": null, "latitude": -25.7069205538, "longitude": 28.229429075799999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1338000, "pop_min": 1338000, "pop_other": 1443084, "rank_max": 12, "rank_min": 12, "geonameid": 964137.0, "meganame": "Pretoria", "ls_name": "Pretoria", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.227483217233839, -25.704974695184433 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Port Moresby", "nameascii": "Port Moresby", "adm0name": "Papua New Guinea", "adm0_a3": "PNG", "adm1name": "Central", "iso_a2": "PG", "note": null, "latitude": -9.464707825870001, "longitude": 147.192503620999986, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 283733, "pop_min": 251136, "pop_other": 251304, "rank_max": 10, "rank_min": 10, "geonameid": 2088122.0, "meganame": null, "ls_name": "Port Moresby", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 147.192503620593584, -9.464707825867777 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Honiara", "nameascii": "Honiara", "adm0name": "Solomon Islands", "adm0_a3": "SLB", "adm1name": "Guadalcanal", "iso_a2": "SB", "note": null, "latitude": -9.43799429509, "longitude": 159.94976573400001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 76328, "pop_min": 56298, "pop_other": 76328, "rank_max": 8, "rank_min": 8, "geonameid": 2108502.0, "meganame": null, "ls_name": "Honiara", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.949765733605659, -9.437994295089595 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Panama City", "nameascii": "Panama City", "adm0name": "Panama", "adm0_a3": "PAN", "adm1name": "Panama", "iso_a2": "PA", "note": null, "latitude": 8.968017190479999, "longitude": -79.533037151800002, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1281000, "pop_min": 408168, "pop_other": 939725, "rank_max": 12, "rank_min": 10, "geonameid": 3703443.0, "meganame": "Ciudad de Panamá (Panama City)", "ls_name": "Panama City1", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -79.53498301041077, 8.969963049094872 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Rabat", "nameascii": "Rabat", "adm0name": "Morocco", "adm0_a3": "MAR", "adm1name": "Rabat - Salé - Zemmour - Zaer", "iso_a2": "MA", "note": null, "latitude": 34.025299091599997, "longitude": -6.83613082013, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1705000, "pop_min": 1655753, "pop_other": 2029349, "rank_max": 12, "rank_min": 12, "geonameid": 2538475.0, "meganame": "Rabat", "ls_name": "Rabat", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -6.83640815612614, 34.025307311072822 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Chisinau", "nameascii": "Chisinau", "adm0name": "Moldova", "adm0_a3": "MDA", "adm1name": "Chisinau", "iso_a2": "MD", "note": null, "latitude": 47.005023619699998, "longitude": 28.857711139700001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 688134, "pop_min": 635994, "pop_other": 664472, "rank_max": 11, "rank_min": 11, "geonameid": 618426.0, "meganame": null, "ls_name": "Chisinau", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 28.857711139651428, 47.005023619670624 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Maputo", "nameascii": "Maputo", "adm0name": "Mozambique", "adm0_a3": "MOZ", "adm1name": "Maputo", "iso_a2": "MZ", "note": null, "latitude": -25.9552774874, "longitude": 32.5891629626, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1446000, "pop_min": 1191613, "pop_other": 1365454, "rank_max": 12, "rank_min": 12, "geonameid": 1040652.0, "meganame": "Maputo", "ls_name": "Maputo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 32.58721710397009, -25.953331628778983 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Mogadishu", "nameascii": "Mogadishu", "adm0name": "Somalia", "adm0_a3": "SOM", "adm1name": "Banaadir", "iso_a2": "SO", "note": null, "latitude": 2.06668133433, "longitude": 45.366677611100002, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1100000, "pop_min": 875388, "pop_other": 849392, "rank_max": 12, "rank_min": 11, "geonameid": 53654.0, "meganame": "Muqdisho", "ls_name": "Mogadishu", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 45.364731752458738, 2.068627192947531 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Muscat", "nameascii": "Muscat", "adm0name": "Oman", "adm0_a3": "OMN", "adm1name": "Muscat", "iso_a2": "OM", "note": null, "latitude": 23.6133248077, "longitude": 58.593312132599998, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 734697, "pop_min": 586861, "pop_other": 586861, "rank_max": 11, "rank_min": 11, "geonameid": 287286.0, "meganame": null, "ls_name": "Muscat", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.593312132608844, 23.613324807728134 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Colombo", "nameascii": "Colombo", "adm0name": "Sri Lanka", "adm0_a3": "LKA", "adm1name": "Colombo", "iso_a2": "LK", "note": null, "latitude": 6.93196575818, "longitude": 79.857750609299998, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 217000, "pop_min": 217000, "pop_other": 2490974, "rank_max": 10, "rank_min": 10, "geonameid": 3465927.0, "meganame": null, "ls_name": "Colombo", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 79.857750609256414, 6.931965758182116 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Ulaanbaatar", "nameascii": "Ulaanbaatar", "adm0name": "Mongolia", "adm0_a3": "MNG", "adm1name": "Ulaanbaatar", "iso_a2": "MN", "note": null, "latitude": 47.916673399899999, "longitude": 106.916615762, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 885000, "pop_min": 769612, "pop_other": 765359, "rank_max": 11, "rank_min": 11, "geonameid": 2028462.0, "meganame": "Ulaanbaatar", "ls_name": "Ulaanbaatar", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 106.914669903746528, 47.918619258560739 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Wellington", "nameascii": "Wellington", "adm0name": "New Zealand", "adm0_a3": "NZL", "adm1name": "Manawatu-Wanganui", "iso_a2": "NZ", "note": null, "latitude": -41.299973939300003, "longitude": 174.783274291, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 393400, "pop_min": 199200, "pop_other": 140594, "rank_max": 10, "rank_min": 9, "geonameid": 2144168.0, "meganame": null, "ls_name": "Wellington", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.783274291276939, -41.299973939276413 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Windhoek", "nameascii": "Windhoek", "adm0name": "Namibia", "adm0_a3": "NAM", "adm1name": "Khomas", "iso_a2": "NA", "note": null, "latitude": -22.570006084399999, "longitude": 17.083546100500001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 268132, "pop_min": 262796, "pop_other": 262796, "rank_max": 10, "rank_min": 10, "geonameid": 3352136.0, "meganame": null, "ls_name": "Windhoek", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.08354610054181, -22.570006084383806 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Abuja", "nameascii": "Abuja", "adm0name": "Nigeria", "adm0_a3": "NGA", "adm1name": "Federal Capital Territory", "iso_a2": "NG", "note": null, "latitude": 9.08333314914, "longitude": 7.53332800155, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1576000, "pop_min": 162135, "pop_other": 0, "rank_max": 12, "rank_min": 9, "geonameid": 2322794.0, "meganame": "Abuja", "ls_name": "Abuja", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 7.53138214293233, 9.085279007754195 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bissau", "nameascii": "Bissau", "adm0name": "Guinea Bissau", "adm0_a3": "GNB", "adm1name": "Bissau", "iso_a2": "GW", "note": null, "latitude": 11.865023823, "longitude": -15.5983608413, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 403339, "pop_min": 388028, "pop_other": 403339, "rank_max": 10, "rank_min": 10, "geonameid": 2374775.0, "meganame": null, "ls_name": "Bissau", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.598360841320755, 11.865023822980561 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Amman", "nameascii": "Amman", "adm0name": "Jordan", "adm0_a3": "JOR", "adm1name": "Amman", "iso_a2": "JO", "note": null, "latitude": 31.950025247199999, "longitude": 35.933299925500002, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1060000, "pop_min": 1060000, "pop_other": 2633729, "rank_max": 12, "rank_min": 12, "geonameid": 250441.0, "meganame": "Amman", "ls_name": "Amman", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.931354066874121, 31.951971105827454 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Vilnius", "nameascii": "Vilnius", "adm0name": "Lithuania", "adm0_a3": "LTU", "adm1name": "Vilniaus", "iso_a2": "LT", "note": null, "latitude": 54.6833663118, "longitude": 25.316635293299999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 542366, "pop_min": 507029, "pop_other": 494356, "rank_max": 11, "rank_min": 11, "geonameid": 593116.0, "meganame": null, "ls_name": "Vilnius", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.3166352932829, 54.683366311758618 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Riga", "nameascii": "Riga", "adm0name": "Latvia", "adm0_a3": "LVA", "adm1name": "Riga", "iso_a2": "LV", "note": null, "latitude": 56.950023823199999, "longitude": 24.0999653714, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 742572, "pop_min": 705033, "pop_other": 0, "rank_max": 11, "rank_min": 11, "geonameid": 456172.0, "meganame": null, "ls_name": "Riga", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.099965371403187, 56.950023823160961 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bishkek", "nameascii": "Bishkek", "adm0name": "Kyrgyzstan", "adm0_a3": "KGZ", "adm1name": "Bishkek", "iso_a2": "KG", "note": null, "latitude": 42.8730794465, "longitude": 74.585204222499996, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 837000, "pop_min": 804212, "pop_other": 781714, "rank_max": 11, "rank_min": 11, "geonameid": 1528675.0, "meganame": "Bishkek", "ls_name": "Bishkek", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 74.583258363903667, 42.875025305090105 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Maseru", "nameascii": "Maseru", "adm0name": "Lesotho", "adm0_a3": "LSO", "adm1name": "Maseru", "iso_a2": "LS", "note": null, "latitude": -29.3166743787, "longitude": 27.48327307, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 361324, "pop_min": 118355, "pop_other": 356225, "rank_max": 10, "rank_min": 9, "geonameid": 932505.0, "meganame": null, "ls_name": "Maseru", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 27.483273069984477, -29.316674378681626 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Antananarivo", "nameascii": "Antananarivo", "adm0name": "Madagascar", "adm0_a3": "MDG", "adm1name": "Antananarivo", "iso_a2": "MG", "note": null, "latitude": -18.916637350599999, "longitude": 47.516623900100001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1697000, "pop_min": 1391433, "pop_other": 1844658, "rank_max": 12, "rank_min": 12, "geonameid": 1070940.0, "meganame": "Antananarivo", "ls_name": "Antananarivo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 47.514678041529862, -18.914691492032148 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Quito", "nameascii": "Quito", "adm0name": "Ecuador", "adm0_a3": "ECU", "adm1name": "Pichincha", "iso_a2": "EC", "note": null, "latitude": -0.21498818065, "longitude": -78.500051108500003, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1701000, "pop_min": 1399814, "pop_other": 1435528, "rank_max": 12, "rank_min": 12, "geonameid": 3652462.0, "meganame": "Quito", "ls_name": "Quito", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -78.501996967112404, -0.213042322035562 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "San Jose", "nameascii": "San Jose", "adm0name": "Costa Rica", "adm0_a3": "CRI", "adm1name": "San José", "iso_a2": "CR", "note": null, "latitude": 9.93501242974, "longitude": -84.084051352700001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1284000, "pop_min": 1724, "pop_other": 1434681, "rank_max": 12, "rank_min": 3, "geonameid": 3669623.0, "meganame": "San José", "ls_name": "San Jose1", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -84.085997211275355, 9.936958288356607 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "San Salvador", "nameascii": "San Salvador", "adm0name": "El Salvador", "adm0_a3": "SLV", "adm1name": "San Salvador", "iso_a2": "SV", "note": null, "latitude": 13.7100016469, "longitude": -89.203041220800003, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1433000, "pop_min": 2807, "pop_other": 2139587, "rank_max": 12, "rank_min": 4, "geonameid": 1690681.0, "meganame": "San Salvador", "ls_name": "San Salvador", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -89.204987079459897, 13.711947505494038 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Kingston", "nameascii": "Kingston", "adm0name": "Jamaica", "adm0_a3": "JAM", "adm1name": "Kingston", "iso_a2": "JM", "note": null, "latitude": 17.977076623799999, "longitude": -76.767433713700001, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 937700, "pop_min": 664973, "pop_other": 18171, "rank_max": 11, "rank_min": 11, "geonameid": 3489854.0, "meganame": null, "ls_name": "Kingston1", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -76.767433713669107, 17.977076623830897 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Ndjamena", "nameascii": "Ndjamena", "adm0name": "Chad", "adm0_a3": "TCD", "adm1name": "Hadjer-Lamis", "iso_a2": "TD", "note": null, "latitude": 12.1130965362, "longitude": 15.0491483141, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 989000, "pop_min": 681387, "pop_other": 686347, "rank_max": 11, "rank_min": 11, "geonameid": 2427123.0, "meganame": "N'Djaména", "ls_name": "Ndjamena", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.047202455462298, 12.115042394810644 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Malabo", "nameascii": "Malabo", "adm0name": "Equatorial Guinea", "adm0_a3": "GNQ", "adm1name": "Bioko Norte", "iso_a2": "GQ", "note": null, "latitude": 3.75001527803, "longitude": 8.783277545820001, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 155963, "pop_min": 155963, "pop_other": 0, "rank_max": 9, "rank_min": 9, "geonameid": 2309527.0, "meganame": null, "ls_name": "Malabo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.783277545821136, 3.750015278026183 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Asmara", "nameascii": "Asmara", "adm0name": "Eritrea", "adm0_a3": "ERI", "adm1name": "Anseba", "iso_a2": "ER", "note": null, "latitude": 15.3333392527, "longitude": 38.933323525799999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 620802, "pop_min": 563930, "pop_other": 587094, "rank_max": 11, "rank_min": 11, "geonameid": 343300.0, "meganame": null, "ls_name": "Asmara", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 38.933323525759306, 15.333339252681924 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Zagreb", "nameascii": "Zagreb", "adm0name": "Croatia", "adm0_a3": "HRV", "adm1name": "Grad Zagreb", "iso_a2": "HR", "note": null, "latitude": 45.800006733300002, "longitude": 15.999994668199999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 722526, "pop_min": 698966, "pop_other": 690638, "rank_max": 11, "rank_min": 11, "geonameid": 3186886.0, "meganame": null, "ls_name": "Zagreb", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.999994668245677, 45.800006733272539 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tallinn", "nameascii": "Tallinn", "adm0name": "Estonia", "adm0_a3": "EST", "adm1name": "Harju", "iso_a2": "EE", "note": null, "latitude": 59.433877379499997, "longitude": 24.728040729500002, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 394024, "pop_min": 340027, "pop_other": 317949, "rank_max": 10, "rank_min": 10, "geonameid": 588409.0, "meganame": null, "ls_name": "Tallinn", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.72804072947855, 59.433877379485921 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Lilongwe", "nameascii": "Lilongwe", "adm0name": "Malawi", "adm0_a3": "MWI", "adm1name": "Lilongwe", "iso_a2": "MW", "note": null, "latitude": -13.9832950655, "longitude": 33.78330196, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 646750, "pop_min": 646750, "pop_other": 1061388, "rank_max": 11, "rank_min": 11, "geonameid": 927967.0, "meganame": null, "ls_name": "Lilongwe", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.783301959983532, -13.983295065469179 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Guatemala", "nameascii": "Guatemala", "adm0name": "Guatemala", "adm0_a3": "GTM", "adm1name": "Guatemala", "iso_a2": "GT", "note": null, "latitude": 14.621134662799999, "longitude": -90.5269655779, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1024000, "pop_min": 994938, "pop_other": 2391150, "rank_max": 12, "rank_min": 11, "geonameid": 3598132.0, "meganame": "Ciudad de Guatemala (Guatemala City)", "ls_name": "Guatemala", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -90.528911436561543, 14.623080521448173 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Libreville", "nameascii": "Libreville", "adm0name": "Gabon", "adm0_a3": "GAB", "adm1name": "Estuaire", "iso_a2": "GA", "note": null, "latitude": 0.38538860972, "longitude": 9.45796504582, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 578156, "pop_min": 483355, "pop_other": 483522, "rank_max": 11, "rank_min": 10, "geonameid": 2399697.0, "meganame": null, "ls_name": "Libreville", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.457965045823698, 0.385388609718518 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Suva", "nameascii": "Suva", "adm0name": "Fiji", "adm0_a3": "FJI", "adm1name": "Central", "iso_a2": "FJ", "note": null, "latitude": -18.133015931399999, "longitude": 178.441707315, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 175399, "pop_min": 88271, "pop_other": 0, "rank_max": 9, "rank_min": 8, "geonameid": 2198148.0, "meganame": null, "ls_name": "Suva", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.441707315379858, -18.133015931371233 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 3, "featurecla": "Admin-0 capital alt", "name": "Valparaiso", "nameascii": "Valparaiso", "adm0name": "Chile", "adm0_a3": "CHL", "adm1name": "Valparaíso", "iso_a2": "CL", "note": null, "latitude": -33.0477644666, "longitude": -71.621013632900002, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 854000, "pop_min": 15938, "pop_other": 130815, "rank_max": 11, "rank_min": 6, "geonameid": 3445575.0, "meganame": "Valparaíso", "ls_name": "Valparaiso2", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -71.622959491498932, -33.045818607974184 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Nouakchott", "nameascii": "Nouakchott", "adm0name": "Mauritania", "adm0_a3": "MRT", "adm1name": "Nouakchott", "iso_a2": "MR", "note": null, "latitude": 18.086427021199999, "longitude": -15.9753404149, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 742144, "pop_min": 661400, "pop_other": 742144, "rank_max": 11, "rank_min": 11, "geonameid": 2377450.0, "meganame": null, "ls_name": "Nouakchott", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.975340414890013, 18.086427021247516 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Bamako", "nameascii": "Bamako", "adm0name": "Mali", "adm0_a3": "MLI", "adm1name": "Bamako", "iso_a2": "ML", "note": null, "latitude": 12.650014667700001, "longitude": -8.000039104640001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1494000, "pop_min": 1297281, "pop_other": 1301407, "rank_max": 12, "rank_min": 12, "geonameid": 2460596.0, "meganame": "Bamako", "ls_name": "Bamako", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -8.001984963249697, 12.651960526323251 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Beirut", "nameascii": "Beirut", "adm0name": "Lebanon", "adm0_a3": "LBN", "adm1name": "Beirut", "iso_a2": "LB", "note": null, "latitude": 33.871975117, "longitude": 35.50970821, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1846000, "pop_min": 1712125, "pop_other": 1661980, "rank_max": 12, "rank_min": 12, "geonameid": 276781.0, "meganame": "Bayrut", "ls_name": "Beirut", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 35.507762351377664, 33.873920975626902 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tbilisi", "nameascii": "Tbilisi", "adm0name": "Georgia", "adm0_a3": "GEO", "adm1name": "Tbilisi", "iso_a2": "GE", "note": null, "latitude": 41.725009988499998, "longitude": 44.790795449599997, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1100000, "pop_min": 1005257, "pop_other": 977179, "rank_max": 12, "rank_min": 12, "geonameid": 611717.0, "meganame": "Tbilisi", "ls_name": "Tbilisi", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.788849590997984, 41.726955847077591 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Astana", "nameascii": "Astana", "adm0name": "Kazakhstan", "adm0_a3": "KAZ", "adm1name": "Aqmola", "iso_a2": "KZ", "note": null, "latitude": 51.181125304299997, "longitude": 71.427774209500001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 345604, "pop_min": 325021, "pop_other": 317445, "rank_max": 10, "rank_min": 10, "geonameid": 1526273.0, "meganame": null, "ls_name": "Astana", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.427774209483005, 51.181125304257591 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Vientiane", "nameascii": "Vientiane", "adm0name": "Laos", "adm0_a3": "LAO", "adm1name": "Vientiane [prefecture]", "iso_a2": "LA", "note": null, "latitude": 17.966692727600002, "longitude": 102.59998002, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 754000, "pop_min": 570348, "pop_other": 469811, "rank_max": 11, "rank_min": 11, "geonameid": 1651944.0, "meganame": null, "ls_name": "Vientiane", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.59998002015476, 17.96669272762739 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Brazzaville", "nameascii": "Brazzaville", "adm0name": "Congo (Brazzaville)", "adm0_a3": "COG", "adm1name": "Pool", "iso_a2": "CG", "note": null, "latitude": -4.25918577181, "longitude": 15.2846894925, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1355000, "pop_min": 1163890, "pop_other": 1174778, "rank_max": 12, "rank_min": 12, "geonameid": 2260535.0, "meganame": "Brazzaville", "ls_name": "Brazzaville", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.282743633848668, -4.257239913197509 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Conakry", "nameascii": "Conakry", "adm0name": "Guinea", "adm0_a3": "GIN", "adm1name": "Conakry", "iso_a2": "GN", "note": null, "latitude": 9.531522846410001, "longitude": -13.6802350275, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1494000, "pop_min": 1494000, "pop_other": 1498020, "rank_max": 12, "rank_min": 12, "geonameid": 2422465.0, "meganame": "Conakry", "ls_name": "Conakry", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -13.682180886123945, 9.533468705021789 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Yamoussoukro", "nameascii": "Yamoussoukro", "adm0name": "Ivory Coast", "adm0_a3": "CIV", "adm1name": "Lacs", "iso_a2": "CI", "note": null, "latitude": 6.81838096, "longitude": -5.27550256491, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 206499, "pop_min": 194530, "pop_other": 206499, "rank_max": 10, "rank_min": 9, "geonameid": 2279755.0, "meganame": null, "ls_name": "Yamoussoukro", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.275502564912301, 6.818380960004617 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Ottawa", "nameascii": "Ottawa", "adm0name": "Canada", "adm0_a3": "CAN", "adm1name": "Ontario", "iso_a2": "CA", "note": null, "latitude": 45.416696796700002, "longitude": -75.700015301199997, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1145000, "pop_min": 812129, "pop_other": 872781, "rank_max": 12, "rank_min": 11, "geonameid": 6094817.0, "meganame": "Ottawa-Gatineau", "ls_name": "Ottawa", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -75.701961159809514, 45.418642655360429 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Belgrade", "nameascii": "Belgrade", "adm0name": "Serbia", "adm0_a3": "SRB", "adm1name": "Grad Beograd", "iso_a2": "RS", "note": null, "latitude": 44.818645445800001, "longitude": 20.4679906806, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1099000, "pop_min": 1099000, "pop_other": 1271541, "rank_max": 12, "rank_min": 12, "geonameid": 792680.0, "meganame": "Beograd", "ls_name": "Belgrade", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 20.466044822020535, 44.820591304446737 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Bandar Seri Begawan", "nameascii": "Bandar Seri Begawan", "adm0name": "Brunei", "adm0_a3": "BRN", "adm1name": "Brunei and Muara", "iso_a2": "BN", "note": null, "latitude": 4.88333111462, "longitude": 114.933284057, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 296500, "pop_min": 140000, "pop_other": 222513, "rank_max": 10, "rank_min": 9, "geonameid": 1820906.0, "meganame": null, "ls_name": "Bandar Seri Begawan", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 114.933284056662274, 4.883331114619239 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Sucre", "nameascii": "Sucre", "adm0name": "Bolivia", "adm0_a3": "BOL", "adm1name": "Chuquisaca", "iso_a2": "BO", "note": null, "latitude": -19.040970846699999, "longitude": -65.259515626699994, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 224838, "pop_min": 221736, "pop_other": 221736, "rank_max": 10, "rank_min": 10, "geonameid": 3903987.0, "meganame": null, "ls_name": "Sucre", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.259515626675636, -19.040970846739469 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Belmopan", "nameascii": "Belmopan", "adm0name": "Belize", "adm0_a3": "BLZ", "adm1name": "Cayo", "iso_a2": "BZ", "note": null, "latitude": 17.2520335072, "longitude": -88.767072999800007, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 15220, "pop_min": 13381, "pop_other": 15220, "rank_max": 6, "rank_min": 6, "geonameid": 3582672.0, "meganame": null, "ls_name": "Belmopan", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.767072999816548, 17.252033507246892 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Bangui", "nameascii": "Bangui", "adm0name": "Central African Republic", "adm0_a3": "CAF", "adm1name": "Bangui", "iso_a2": "CF", "note": null, "latitude": 4.36664430635, "longitude": 18.558288125299999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 831925, "pop_min": 622771, "pop_other": 782274, "rank_max": 11, "rank_min": 11, "geonameid": 2389853.0, "meganame": null, "ls_name": "Bangui", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.558288125287277, 4.366644306349087 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Yaounde", "nameascii": "Yaounde", "adm0name": "Cameroon", "adm0_a3": "CMR", "adm1name": "Centre", "iso_a2": "CM", "note": null, "latitude": 3.86670066214, "longitude": 11.516650755500001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1611000, "pop_min": 1060587, "pop_other": 1060747, "rank_max": 12, "rank_min": 12, "geonameid": 2220957.0, "meganame": "Yaoundé", "ls_name": "Yaounde", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 11.514704896854425, 3.868646520754112 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Tirana", "nameascii": "Tirana", "adm0name": "Albania", "adm0_a3": "ALB", "adm1name": "Durrës", "iso_a2": "AL", "note": null, "latitude": 41.327540709499999, "longitude": 19.818883014600001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 895350, "pop_min": 421286, "pop_other": 517792, "rank_max": 11, "rank_min": 10, "geonameid": 3183875.0, "meganame": null, "ls_name": "Tirana", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.81888301461521, 41.327540709491586 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Yerevan", "nameascii": "Yerevan", "adm0name": "Armenia", "adm0_a3": "ARM", "adm1name": "Erevan", "iso_a2": "AM", "note": null, "latitude": 40.181150735499997, "longitude": 44.513551390400004, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1102000, "pop_min": 1093485, "pop_other": 1154748, "rank_max": 12, "rank_min": 12, "geonameid": 616052.0, "meganame": "Yerevan", "ls_name": "Yerevan", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 44.511605531752082, 40.183096594141887 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Baku", "nameascii": "Baku", "adm0name": "Azerbaijan", "adm0_a3": "AZE", "adm1name": "Baki", "iso_a2": "AZ", "note": null, "latitude": 40.395272032699999, "longitude": 49.862217161899999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 2122300, "pop_min": 1892000, "pop_other": 1518801, "rank_max": 12, "rank_min": 12, "geonameid": 587084.0, "meganame": "Baku", "ls_name": "Baku", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 49.860271303257775, 40.397217891343018 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Phnom Penh", "nameascii": "Phnom Penh", "adm0name": "Cambodia", "adm0_a3": "KHM", "adm1name": "Phnom Penh", "iso_a2": "KH", "note": null, "latitude": 11.5500301299, "longitude": 104.91663448, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1466000, "pop_min": 1466000, "pop_other": 1604086, "rank_max": 12, "rank_min": 12, "geonameid": 1821306.0, "meganame": "Phnum Pénh", "ls_name": "Phnom Penh", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 104.914688621186428, 11.551975988558411 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "La Paz", "nameascii": "La Paz", "adm0name": "Bolivia", "adm0_a3": "BOL", "adm1name": "La Paz", "iso_a2": "BO", "note": null, "latitude": -16.497973613700001, "longitude": -68.149985190500004, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1590000, "pop_min": 812799, "pop_other": 4400, "rank_max": 12, "rank_min": 11, "geonameid": 3911925.0, "meganame": "La Paz", "ls_name": "La Paz3", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -68.151931049102188, -16.496027755043372 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Cotonou", "nameascii": "Cotonou", "adm0name": "Benin", "adm0_a3": "BEN", "adm1name": "Ouémé", "iso_a2": "BJ", "note": null, "latitude": 6.40000856417, "longitude": 2.51999059918, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 762000, "pop_min": 690584, "pop_other": 1060640, "rank_max": 11, "rank_min": 11, "geonameid": 2394819.0, "meganame": "Cotonou", "ls_name": "Cotonou", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 2.518044740568598, 6.401954422782467 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Sofia", "nameascii": "Sofia", "adm0name": "Bulgaria", "adm0_a3": "BGR", "adm1name": "Grad Sofiya", "iso_a2": "BG", "note": null, "latitude": 42.683349425300001, "longitude": 23.316654010699999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1185000, "pop_min": 874827, "pop_other": 871735, "rank_max": 12, "rank_min": 11, "geonameid": 727011.0, "meganame": "Sofia", "ls_name": "Sofia", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 23.314708152110086, 42.685295283930543 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Minsk", "nameascii": "Minsk", "adm0name": "Belarus", "adm0_a3": "BLR", "adm1name": "Minsk", "iso_a2": "BY", "note": null, "latitude": 53.8999774364, "longitude": 27.566627155300001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1805000, "pop_min": 1577138, "pop_other": 1557919, "rank_max": 12, "rank_min": 12, "geonameid": 625144.0, "meganame": "Minsk", "ls_name": "Minsk", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 27.56468129665825, 53.901923295043105 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Thimphu", "nameascii": "Thimphu", "adm0name": "Bhutan", "adm0_a3": "BTN", "adm1name": "Thimphu", "iso_a2": "BT", "note": null, "latitude": 27.472985859200001, "longitude": 89.639014037, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 98676, "pop_min": 79185, "pop_other": 0, "rank_max": 8, "rank_min": 8, "geonameid": 1252416.0, "meganame": null, "ls_name": "Thimphu", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.639014037029995, 27.472985859175765 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Gaborone", "nameascii": "Gaborone", "adm0name": "Botswana", "adm0_a3": "BWA", "adm1name": "South-East", "iso_a2": "BW", "note": null, "latitude": -24.646313457400002, "longitude": 25.911947793300001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 208411, "pop_min": 159243, "pop_other": 158896, "rank_max": 10, "rank_min": 9, "geonameid": 933773.0, "meganame": null, "ls_name": "Gaborone", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.911947793285378, -24.646313457438907 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Canberra", "nameascii": "Canberra", "adm0name": "Australia", "adm0_a3": "AUS", "adm1name": "Australian Capital Territory", "iso_a2": "AU", "note": null, "latitude": -35.283028545400001, "longitude": 149.129026243999988, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 327700, "pop_min": 234032, "pop_other": 0, "rank_max": 10, "rank_min": 10, "geonameid": 2172517.0, "meganame": null, "ls_name": "Canberra", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 149.129026244299212, -35.283028545372076 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Ouagadougou", "nameascii": "Ouagadougou", "adm0name": "Burkina Faso", "adm0_a3": "BFA", "adm1name": "Kadiogo", "iso_a2": "BF", "note": null, "latitude": 12.370315977900001, "longitude": -1.5247237563, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1149000, "pop_min": 835457, "pop_other": 713874, "rank_max": 12, "rank_min": 11, "geonameid": 2357048.0, "meganame": "Ouagadougou", "ls_name": "Ouagadougou", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -1.526669614916443, 12.372261836543373 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Sarajevo", "nameascii": "Sarajevo", "adm0name": "Bosnia and Herzegovina", "adm0_a3": "BIH", "adm1name": "Sarajevo", "iso_a2": "BA", "note": null, "latitude": 43.850022399, "longitude": 18.383001667, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 696731, "pop_min": 628902, "pop_other": 627065, "rank_max": 11, "rank_min": 11, "geonameid": 3191281.0, "meganame": null, "ls_name": "Sarajevo", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 18.383001666953305, 43.850022398954934 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Naypyidaw", "nameascii": "Naypyidaw", "adm0name": "Myanmar", "adm0_a3": "MMR", "adm1name": "Mandalay", "iso_a2": "MM", "note": null, "latitude": 19.766557026099999, "longitude": 96.118618529200006, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 930000, "pop_min": 194824, "pop_other": 0, "rank_max": 11, "rank_min": 9, "geonameid": 6611854.0, "meganame": "Nay Pyi Taw", "ls_name": "Naypyidaw", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 96.116672670630351, 19.768502884750148 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Nukualofa", "nameascii": "Nukualofa", "adm0name": "Tonga", "adm0_a3": "TON", "adm1name": null, "iso_a2": "TO", "note": null, "latitude": -21.138512356700002, "longitude": -175.220564478, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 42620, "pop_min": 23658, "pop_other": 42620, "rank_max": 7, "rank_min": 7, "geonameid": 4032402.0, "meganame": null, "ls_name": "Nukualofa", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -175.220564477616563, -21.138512356698641 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Hargeysa", "nameascii": "Hargeysa", "adm0name": "Somaliland", "adm0_a3": "SOL", "adm1name": null, "iso_a2": "-99", "note": null, "latitude": 9.560022398819999, "longitude": 44.065310016700003, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 477876, "pop_min": 247018, "pop_other": 247018, "rank_max": 10, "rank_min": 10, "geonameid": 57289.0, "meganame": null, "ls_name": "Hargeysa", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 44.065310016665421, 9.56002239881775 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Victoria", "nameascii": "Victoria", "adm0name": "Seychelles", "adm0_a3": "SYC", "adm1name": null, "iso_a2": "SC", "note": null, "latitude": -4.61663165397, "longitude": 55.449989785600003, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 33576, "pop_min": 22881, "pop_other": 33737, "rank_max": 7, "rank_min": 7, "geonameid": 241131.0, "meganame": null, "ls_name": "Victoria4", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 55.449989785591129, -4.6166316539734 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Sao Tome", "nameascii": "Sao Tome", "adm0name": "Sao Tome and Principe", "adm0_a3": "STP", "adm1name": null, "iso_a2": "ST", "note": null, "latitude": 0.33340211883, "longitude": 6.73332515323, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 88219, "pop_min": 56166, "pop_other": 88219, "rank_max": 8, "rank_min": 8, "geonameid": 3388092.0, "meganame": null, "ls_name": "Sao Tome", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 6.733325153234773, 0.333402118832907 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Apia", "nameascii": "Apia", "adm0name": "Samoa", "adm0_a3": "WSM", "adm1name": null, "iso_a2": "WS", "note": null, "latitude": -13.8415450424, "longitude": -171.738641609000013, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 61916, "pop_min": 37708, "pop_other": 0, "rank_max": 8, "rank_min": 7, "geonameid": 3689793.0, "meganame": null, "ls_name": "Apia", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -171.73864160860316, -13.841545042448445 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Valletta", "nameascii": "Valletta", "adm0name": "Malta", "adm0_a3": "MLT", "adm1name": null, "iso_a2": "MT", "note": null, "latitude": 35.899732481900003, "longitude": 14.5147106513, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 368250, "pop_min": 6966, "pop_other": 336174, "rank_max": 10, "rank_min": 5, "geonameid": 2562305.0, "meganame": null, "ls_name": "Valletta", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 14.514710651312782, 35.899732481930869 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Male", "nameascii": "Male", "adm0name": "Maldives", "adm0_a3": "MDV", "adm1name": null, "iso_a2": "MV", "note": null, "latitude": 4.16670818981, "longitude": 73.499947468, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 112927, "pop_min": 103693, "pop_other": 0, "rank_max": 9, "rank_min": 9, "geonameid": 3174186.0, "meganame": null, "ls_name": "Male", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 73.499947467954996, 4.1667081898118 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Jerusalem", "nameascii": "Jerusalem", "adm0name": "Israel", "adm0_a3": "ISR", "adm1name": "Jerusalem", "iso_a2": "IL", "note": null, "latitude": 31.778407815600001, "longitude": 35.206625934599998, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1029300, "pop_min": 801000, "pop_other": 1072567, "rank_max": 12, "rank_min": 11, "geonameid": 281184.0, "meganame": null, "ls_name": "Jerusalem", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.206625934598662, 31.778407815573303 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Praia", "nameascii": "Praia", "adm0name": "Cape Verde", "adm0_a3": "CPV", "adm1name": null, "iso_a2": "CV", "note": null, "latitude": 14.9166980173, "longitude": -23.516688885, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 113364, "pop_min": 88859, "pop_other": 89205, "rank_max": 9, "rank_min": 8, "geonameid": 3374333.0, "meganame": null, "ls_name": "Praia", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -23.516688884972211, 14.916698017328656 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Nassau", "nameascii": "Nassau", "adm0name": "The Bahamas", "adm0_a3": "BHS", "adm1name": null, "iso_a2": "BS", "note": null, "latitude": 25.0833901154, "longitude": -77.350043784299999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 227940, "pop_min": 160966, "pop_other": 0, "rank_max": 10, "rank_min": 9, "geonameid": 3571824.0, "meganame": null, "ls_name": "Nassau", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -77.350043784276124, 25.083390115351222 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 3, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Nicosia", "nameascii": "Nicosia", "adm0name": "Cyprus", "adm0_a3": "CYP", "adm1name": null, "iso_a2": "CY", "note": null, "latitude": 35.166676451699999, "longitude": 33.3666348864, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 224300, "pop_min": 200452, "pop_other": 222985, "rank_max": 10, "rank_min": 10, "geonameid": 146268.0, "meganame": null, "ls_name": "Nicosia", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 33.366634886414147, 35.166676451654496 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Hanoi", "nameascii": "Hanoi", "adm0name": "Vietnam", "adm0_a3": "VNM", "adm1name": "Thái Nguyên", "iso_a2": "VN", "note": null, "latitude": 21.033327249100001, "longitude": 105.8500142, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4378000, "pop_min": 1431270, "pop_other": 5466347, "rank_max": 12, "rank_min": 12, "geonameid": 1581130.0, "meganame": "Hà Noi", "ls_name": "Hanoi", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 105.848068341242197, 21.035273107737055 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Ankara", "nameascii": "Ankara", "adm0name": "Turkey", "adm0_a3": "TUR", "adm1name": "Ankara", "iso_a2": "TR", "note": null, "latitude": 39.9272385855, "longitude": 32.864391641, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3716000, "pop_min": 3307379, "pop_other": 3267576, "rank_max": 12, "rank_min": 12, "geonameid": 323786.0, "meganame": "Ankara", "ls_name": "Ankara", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 32.862445782356644, 39.929184444075474 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Budapest", "nameascii": "Budapest", "adm0name": "Hungary", "adm0_a3": "HUN", "adm1name": "Budapest", "iso_a2": "HU", "note": null, "latitude": 47.500006326399998, "longitude": 19.0833206774, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1679000, "pop_min": 1679000, "pop_other": 1718895, "rank_max": 12, "rank_min": 12, "geonameid": 3054643.0, "meganame": "Budapest", "ls_name": "Budapest", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.081374818759684, 47.501952184991353 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Sanaa", "nameascii": "Sanaa", "adm0name": "Yemen", "adm0_a3": "YEM", "adm1name": "Amanat Al Asimah", "iso_a2": "YE", "note": null, "latitude": 15.354733295699999, "longitude": 44.206593382599998, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2008000, "pop_min": 1835853, "pop_other": 1742507, "rank_max": 12, "rank_min": 12, "geonameid": 71137.0, "meganame": "Sana'a'", "ls_name": "Sanaa", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.204647523938434, 15.356679154263645 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Bucharest", "nameascii": "Bucharest", "adm0name": "Romania", "adm0_a3": "ROU", "adm1name": "Bucharest", "iso_a2": "RO", "note": null, "latitude": 44.433371804899998, "longitude": 26.099946654, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1942000, "pop_min": 1742194, "pop_other": 1636574, "rank_max": 12, "rank_min": 12, "geonameid": 683506.0, "meganame": "Bucuresti", "ls_name": "Bucharest", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 26.098000795350401, 44.435317663494573 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Damascus", "nameascii": "Damascus", "adm0name": "Syria", "adm0_a3": "SYR", "adm1name": "Damascus", "iso_a2": "SY", "note": null, "latitude": 33.500033995599999, "longitude": 36.299995889, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2466000, "pop_min": 2466000, "pop_other": 3344577, "rank_max": 12, "rank_min": 12, "geonameid": 170654.0, "meganame": "Dimashq", "ls_name": "Damascus", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 36.298050030417073, 33.501979854206127 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Lisbon", "nameascii": "Lisbon", "adm0name": "Portugal", "adm0_a3": "PRT", "adm1name": "Lisboa", "iso_a2": "PT", "note": null, "latitude": 38.722722877899997, "longitude": -9.14486630549, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 2812000, "pop_min": 517802, "pop_other": 1795582, "rank_max": 12, "rank_min": 11, "geonameid": 2267057.0, "meganame": "Lisboa", "ls_name": "Lisbon", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.14681216410213, 38.724668736487843 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Khartoum", "nameascii": "Khartoum", "adm0name": "Sudan", "adm0_a3": "SDN", "adm1name": "Khartoum", "iso_a2": "SD", "note": null, "latitude": 15.5880782257, "longitude": 32.534179238599997, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4754000, "pop_min": 1974647, "pop_other": 2325931, "rank_max": 12, "rank_min": 12, "geonameid": 379252.0, "meganame": "Al-Khartum", "ls_name": "Khartoum", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 32.532233380011576, 15.590024084277673 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Oslo", "nameascii": "Oslo", "adm0name": "Norway", "adm0_a3": "NOR", "adm1name": "Oslo", "iso_a2": "NO", "note": null, "latitude": 59.916690286399998, "longitude": 10.749979206, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 835000, "pop_min": 580000, "pop_other": 701804, "rank_max": 11, "rank_min": 11, "geonameid": 3143244.0, "meganame": "Oslo", "ls_name": "Oslo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.748033347372314, 59.918636145001869 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Warsaw", "nameascii": "Warsaw", "adm0name": "Poland", "adm0_a3": "POL", "adm1name": "Masovian", "iso_a2": "PL", "note": null, "latitude": 52.250000629799999, "longitude": 20.9999995511, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1707000, "pop_min": 1702139, "pop_other": 2012431, "rank_max": 12, "rank_min": 12, "geonameid": 756135.0, "meganame": "Warszawa", "ls_name": "Warsaw", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 20.998053692465305, 52.251946488395561 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Pyongyang", "nameascii": "Pyongyang", "adm0name": "North Korea", "adm0_a3": "PRK", "adm1name": "P'yongyang", "iso_a2": "KP", "note": null, "latitude": 39.019438699399998, "longitude": 125.754690714, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3300000, "pop_min": 2498797, "pop_other": 2483216, "rank_max": 12, "rank_min": 12, "geonameid": 1871859.0, "meganame": "P'yongyang", "ls_name": "Pyongyang", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.752744854993921, 39.021384558004343 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Dar es Salaam", "nameascii": "Dar es Salaam", "adm0name": "Tanzania", "adm0_a3": "TZA", "adm1name": "Dar-Es-Salaam", "iso_a2": "TZ", "note": null, "latitude": -6.80001259474, "longitude": 39.268341836300003, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2930000, "pop_min": 2698652, "pop_other": 2757835, "rank_max": 12, "rank_min": 12, "geonameid": 160263.0, "meganame": "Dar es Salaam", "ls_name": "Dar es Salaam", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 39.266395977694572, -6.798066736124383 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dublin", "nameascii": "Dublin", "adm0name": "Ireland", "adm0_a3": "IRL", "adm1name": "Dublin", "iso_a2": "IE", "note": null, "latitude": 53.333061136, "longitude": -6.24890568178, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1059000, "pop_min": 968976, "pop_other": 22478, "rank_max": 12, "rank_min": 11, "geonameid": 2964574.0, "meganame": "Dublin", "ls_name": "Dublin2", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -6.250851540391068, 53.335006994584944 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Monrovia", "nameascii": "Monrovia", "adm0name": "Liberia", "adm0_a3": "LBR", "adm1name": "Montserrado", "iso_a2": "LR", "note": null, "latitude": 6.31055665987, "longitude": -10.8047516291, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1041000, "pop_min": 785662, "pop_other": 806416, "rank_max": 12, "rank_min": 11, "geonameid": 2274895.0, "meganame": "Monrovia", "ls_name": "Monrovia", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -10.799660436775923, 6.314581647160139 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Kuala Lumpur", "nameascii": "Kuala Lumpur", "adm0name": "Malaysia", "adm0_a3": "MYS", "adm1name": "Selangor", "iso_a2": "MY", "note": null, "latitude": 3.1666658721, "longitude": 101.699983275, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1448000, "pop_min": 1448000, "pop_other": 2667990, "rank_max": 12, "rank_min": 12, "geonameid": 1735161.0, "meganame": "Kuala Lumpur", "ls_name": "Kuala Lumpur", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 101.698037416746445, 3.168611730712371 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Havana", "nameascii": "Havana", "adm0name": "Cuba", "adm0_a3": "CUB", "adm1name": "Ciudad de la Habana", "iso_a2": "CU", "note": null, "latitude": 23.131958840900001, "longitude": -82.364182171300001, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2174000, "pop_min": 1990917, "pop_other": 1930305, "rank_max": 12, "rank_min": 12, "geonameid": 3553478.0, "meganame": "La Habana", "ls_name": "Havana", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -82.366128029953302, 23.1339046995422 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Prague", "nameascii": "Prague", "adm0name": "Czech Republic", "adm0_a3": "CZE", "adm1name": "Prague", "iso_a2": "CZ", "note": null, "latitude": 50.083337014900003, "longitude": 14.465979775699999, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1162000, "pop_min": 2087, "pop_other": 1088042, "rank_max": 12, "rank_min": 4, "geonameid": 4548393.0, "meganame": "Praha", "ls_name": "Prague", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.464033917048539, 50.08528287347832 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Kuwait", "nameascii": "Kuwait", "adm0name": "Kuwait", "adm0_a3": "KWT", "adm1name": "Al Kuwayt", "iso_a2": "KW", "note": null, "latitude": 29.36971763, "longitude": 47.978301146200003, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2063000, "pop_min": 60064, "pop_other": 1682968, "rank_max": 12, "rank_min": 8, "geonameid": 285787.0, "meganame": "Al Kuwayt (Kuwait City)", "ls_name": "Kuwait", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 47.976355287625267, 29.371663488629565 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Santo Domingo", "nameascii": "Santo Domingo", "adm0name": "Dominican Republic", "adm0_a3": "DOM", "adm1name": "Distrito Nacional", "iso_a2": "DO", "note": null, "latitude": 18.470072854600001, "longitude": -69.900085084699995, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2154000, "pop_min": 2873, "pop_other": 3322037, "rank_max": 12, "rank_min": 4, "geonameid": 3668373.0, "meganame": "Santo Domingo", "ls_name": "Santo Domingo", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -69.902030943315026, 18.472018713195382 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Accra", "nameascii": "Accra", "adm0name": "Ghana", "adm0_a3": "GHA", "adm1name": "Greater Accra", "iso_a2": "GH", "note": null, "latitude": 5.55003460583, "longitude": -0.21671574035, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2121000, "pop_min": 1963264, "pop_other": 2334371, "rank_max": 12, "rank_min": 12, "geonameid": 2306104.0, "meganame": "Accra", "ls_name": "Accra", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -0.218661598960693, 5.551980464445933 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Tripoli", "nameascii": "Tripoli", "adm0name": "Libya", "adm0_a3": "LBY", "adm1name": "Tajura' wa an Nawahi al Arba", "iso_a2": "LY", "note": null, "latitude": 32.892500019400003, "longitude": 13.180011758099999, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2189000, "pop_min": 229398, "pop_other": 1149981, "rank_max": 12, "rank_min": 10, "geonameid": -1.0, "meganame": "Tarabulus", "ls_name": "Tripoli1", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 13.180011758078194, 32.89250001935369 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital alt", "name": "Tel Aviv-Yafo", "nameascii": "Tel Aviv-Yafo", "adm0name": "Israel", "adm0_a3": "ISR", "adm1name": "Tel Aviv", "iso_a2": "IL", "note": null, "latitude": 32.079991474400003, "longitude": 34.770011758199999, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3112000, "pop_min": 378358, "pop_other": 2306851, "rank_max": 12, "rank_min": 10, "geonameid": 293394.0, "meganame": "Tel Aviv-Yafo", "ls_name": "Tel Aviv-Yafo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 34.768065899551743, 32.081937333041651 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Helsinki", "nameascii": "Helsinki", "adm0name": "Finland", "adm0_a3": "FIN", "adm1name": "Southern Finland", "iso_a2": "FI", "note": null, "latitude": 60.175563374, "longitude": 24.934126341500001, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1115000, "pop_min": 558457, "pop_other": 762958, "rank_max": 12, "rank_min": 11, "geonameid": 658225.0, "meganame": "Helsinki", "ls_name": "Helsinki", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.932180482845581, 60.17750923256807 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "København", "nameascii": "Kobenhavn", "adm0name": "Denmark", "adm0_a3": "DNK", "adm1name": "Hovedstaden", "iso_a2": "DK", "note": null, "latitude": 55.678564190400003, "longitude": 12.5634857473, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1085000, "pop_min": 1085000, "pop_other": 1038288, "rank_max": 12, "rank_min": 12, "geonameid": 2618425.0, "meganame": "København", "ls_name": "Copenhagen", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.561539888703294, 55.680510049025941 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Abidjan", "nameascii": "Abidjan", "adm0name": "Ivory Coast", "adm0_a3": "CIV", "adm1name": "Lagunes", "iso_a2": "CI", "note": null, "latitude": 5.31999696749, "longitude": -4.04004825989, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3802000, "pop_min": 3190395, "pop_other": 3181637, "rank_max": 12, "rank_min": 12, "geonameid": 2293538.0, "meganame": "Abidjan", "ls_name": "Abidjan", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -4.041994118507091, 5.321942826098564 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Brasilia", "nameascii": "Brasilia", "adm0name": "Brazil", "adm0_a3": "BRA", "adm1name": "Distrito Federal", "iso_a2": "BR", "note": null, "latitude": -15.7833402315, "longitude": -47.916052288400003, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3716996, "pop_min": 2562963, "pop_other": 1772679, "rank_max": 12, "rank_min": 12, "geonameid": 3469058.0, "meganame": "Brasília", "ls_name": "Brasilia", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -47.917998147003061, -15.781394372878992 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Brussels", "nameascii": "Brussels", "adm0name": "Belgium", "adm0_a3": "BEL", "adm1name": "Brussels", "iso_a2": "BE", "note": null, "latitude": 50.833317076699998, "longitude": 4.3333166083, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1743000, "pop_min": 1019022, "pop_other": 1490164, "rank_max": 12, "rank_min": 12, "geonameid": 2800866.0, "meganame": "Bruxelles-Brussel", "ls_name": "Brussels", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 4.33137074969045, 50.83526293533032 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Dhaka", "nameascii": "Dhaka", "adm0name": "Bangladesh", "adm0_a3": "BGD", "adm1name": "Dhaka", "iso_a2": "BD", "note": null, "latitude": 23.723059711699999, "longitude": 90.408579466700004, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 12797394, "pop_min": 7000940, "pop_other": 14995538, "rank_max": 14, "rank_min": 13, "geonameid": 1185241.0, "meganame": "Dhaka", "ls_name": "Dhaka", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 90.406633608107541, 23.725005570312817 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Luanda", "nameascii": "Luanda", "adm0name": "Angola", "adm0_a3": "AGO", "adm1name": "Luanda", "iso_a2": "AO", "note": null, "latitude": -8.83828611363, "longitude": 13.2344270413, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 5172900, "pop_min": 1951272, "pop_other": 1951272, "rank_max": 13, "rank_min": 12, "geonameid": 2240449.0, "meganame": "Luanda", "ls_name": "Luanda", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 13.23248118266855, -8.836340255012658 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Algiers", "nameascii": "Algiers", "adm0name": "Algeria", "adm0_a3": "DZA", "adm1name": "Alger", "iso_a2": "DZ", "note": null, "latitude": 36.763064798, "longitude": 3.05055252952, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3354000, "pop_min": 1977663, "pop_other": 3332619, "rank_max": 12, "rank_min": 12, "geonameid": 2507480.0, "meganame": "El Djazaïr", "ls_name": "Algiers", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 3.048606670909237, 36.765010656628135 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 2, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Rangoon", "nameascii": "Rangoon", "adm0name": "Myanmar", "adm0_a3": "MMR", "adm1name": "Yangon", "iso_a2": "MM", "note": null, "latitude": 16.783354104600001, "longitude": 96.166677611300003, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4088000, "pop_min": 3301820, "pop_other": 3124090, "rank_max": 12, "rank_min": 12, "geonameid": 1298824.0, "meganame": "Yangon", "ls_name": "Rangoon", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 96.164731752661851, 16.785299963188777 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Populated place", "name": "San Francisco", "nameascii": "San Francisco", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "California", "iso_a2": "US", "note": null, "latitude": 37.740007750499998, "longitude": -122.459977663, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 3450000, "pop_min": 732072, "pop_other": 27400, "rank_max": 12, "rank_min": 11, "geonameid": 5391959.0, "meganame": "San Francisco-Oakland", "ls_name": "San Francisco1", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.417168773552248, 37.769195629687431 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Denver", "nameascii": "Denver", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Colorado", "iso_a2": "US", "note": null, "latitude": 39.739188048400003, "longitude": -104.984015952, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2313000, "pop_min": 1548599, "pop_other": 1521278, "rank_max": 12, "rank_min": 12, "geonameid": 5419384.0, "meganame": "Denver-Aurora", "ls_name": "Denver", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -104.985961810968206, 39.741133906965501 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Populated place", "name": "Houston", "nameascii": "Houston", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Texas", "iso_a2": "US", "note": null, "latitude": 29.819974384599998, "longitude": -95.339979290499997, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4459000, "pop_min": 3647574, "pop_other": 3607616, "rank_max": 12, "rank_min": 12, "geonameid": 4699066.0, "meganame": "Houston", "ls_name": "Houston", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -95.341925149145993, 29.821920243188856 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Populated place", "name": "Miami", "nameascii": "Miami", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Florida", "iso_a2": "US", "note": null, "latitude": 25.787610696400002, "longitude": -80.224106080799999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 5585000, "pop_min": 382894, "pop_other": 1037811, "rank_max": 13, "rank_min": 10, "geonameid": 4164138.0, "meganame": "Miami", "ls_name": "Miami", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -80.226051939450031, 25.789556555021534 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Atlanta", "nameascii": "Atlanta", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Georgia", "iso_a2": "US", "note": null, "latitude": 33.830013854, "longitude": -84.399949383299997, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 4506000, "pop_min": 422908, "pop_other": 2874096, "rank_max": 12, "rank_min": 10, "geonameid": 4180439.0, "meganame": "Atlanta", "ls_name": "Atlanta", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -84.40189524187565, 33.831959712605851 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Populated place", "name": "Chicago", "nameascii": "Chicago", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "Illinois", "iso_a2": "US", "note": null, "latitude": 41.829990660699998, "longitude": -87.750054974099996, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 8990000, "pop_min": 2841952, "pop_other": 3635101, "rank_max": 13, "rank_min": 12, "geonameid": 4887398.0, "meganame": "Chicago", "ls_name": "Chicago", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -87.752000832709314, 41.831936519278429 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Caracas", "nameascii": "Caracas", "adm0name": "Venezuela", "adm0_a3": "VEN", "adm1name": "Distrito Capital", "iso_a2": "VE", "note": null, "latitude": 10.500998554400001, "longitude": -66.917037192400002, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2985000, "pop_min": 1815679, "pop_other": 2764555, "rank_max": 12, "rank_min": 12, "geonameid": 3646738.0, "meganame": "Caracas", "ls_name": "Caracas", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -66.918983051050418, 10.502944413033333 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Kiev", "nameascii": "Kiev", "adm0name": "Ukraine", "adm0_a3": "UKR", "adm1name": "Kiev", "iso_a2": "UA", "note": null, "latitude": 50.433367329, "longitude": 30.5166279691, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2709000, "pop_min": 1662508, "pop_other": 1611692, "rank_max": 12, "rank_min": 12, "geonameid": 703448.0, "meganame": "Kyiv", "ls_name": "Kiev", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 30.514682110472165, 50.435313187607221 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 8, "featurecla": "Admin-1 capital", "name": "Dubai", "nameascii": "Dubai", "adm0name": "United Arab Emirates", "adm0_a3": "ARE", "adm1name": "Dubay", "iso_a2": "AE", "note": null, "latitude": 25.229996153799998, "longitude": 55.279974323399998, "changed": 1.0, "namediff": 1, "diffnote": "Name changed.", "pop_max": 1379000, "pop_min": 1137347, "pop_other": 1166878, "rank_max": 12, "rank_min": 12, "geonameid": 292223.0, "meganame": "Dubayy", "ls_name": "Dubayy", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.278028464737872, 25.231942012376066 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Tashkent", "nameascii": "Tashkent", "adm0name": "Uzbekistan", "adm0_a3": "UZB", "adm1name": "Tashkent", "iso_a2": "UZ", "note": null, "latitude": 41.311701883, "longitude": 69.294932819500005, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2184000, "pop_min": 1978028, "pop_other": 2806287, "rank_max": 12, "rank_min": 12, "geonameid": 1512569.0, "meganame": "Tashkent", "ls_name": "Tashkent", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 69.292986960887788, 41.313647741607213 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Madrid", "nameascii": "Madrid", "adm0name": "Spain", "adm0_a3": "ESP", "adm1name": "Comunidad de Madrid", "iso_a2": "ES", "note": null, "latitude": 40.400026264499999, "longitude": -3.683351686, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 5567000, "pop_min": 50437, "pop_other": 3673427, "rank_max": 13, "rank_min": 8, "geonameid": 3675707.0, "meganame": "Madrid", "ls_name": "Madrid", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -3.685297544612524, 40.401972123113808 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 7, "featurecla": "Admin-1 capital", "name": "Geneva", "nameascii": "Geneva", "adm0name": "Switzerland", "adm0_a3": "CHE", "adm1name": "Genève", "iso_a2": "CH", "note": null, "latitude": 46.210007547099998, "longitude": 6.14002803409, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1240000, "pop_min": 192385, "pop_other": 508284, "rank_max": 12, "rank_min": 9, "geonameid": 2660646.0, "meganame": null, "ls_name": "Geneva", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.140028034091699, 46.210007547076259 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Stockholm", "nameascii": "Stockholm", "adm0name": "Sweden", "adm0_a3": "SWE", "adm1name": "Stockholm", "iso_a2": "SE", "note": null, "latitude": 59.350759954300003, "longitude": 18.0973347328, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted.", "pop_max": 1264000, "pop_min": 1253309, "pop_other": 0, "rank_max": 12, "rank_min": 12, "geonameid": 2673730.0, "meganame": "Stockholm", "ls_name": "Stockholm", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.095388874180912, 59.35270581286585 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Bangkok", "nameascii": "Bangkok", "adm0name": "Thailand", "adm0_a3": "THA", "adm1name": "Bangkok Metropolis", "iso_a2": "TH", "note": null, "latitude": 13.7499992055, "longitude": 100.516644652, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 6704000, "pop_min": 5104476, "pop_other": 5082758, "rank_max": 13, "rank_min": 13, "geonameid": 1609350.0, "meganame": "Krung Thep", "ls_name": "Bangkok", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 100.51469879369489, 13.751945064087977 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Lima", "nameascii": "Lima", "adm0name": "Peru", "adm0_a3": "PER", "adm1name": "Lima", "iso_a2": "PE", "note": null, "latitude": -12.048012676100001, "longitude": -77.050062094799998, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 8012000, "pop_min": 6758234, "pop_other": 6068380, "rank_max": 13, "rank_min": 13, "geonameid": 3936456.0, "meganame": "Lima", "ls_name": "Lima2", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.052007953434725, -12.046066817525571 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Dakar", "nameascii": "Dakar", "adm0name": "Senegal", "adm0_a3": "SEN", "adm1name": "Dakar", "iso_a2": "SM", "note": null, "latitude": 14.715831725, "longitude": -17.473130128400001, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2604000, "pop_min": 2476400, "pop_other": 2470140, "rank_max": 12, "rank_min": 12, "geonameid": 2253354.0, "meganame": "Dakar", "ls_name": "Dakar", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -17.475075987050559, 14.717777583623274 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Johannesburg", "nameascii": "Johannesburg", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Gauteng", "iso_a2": "ZA", "note": null, "latitude": -26.17004474, "longitude": 28.030009723599999, "changed": 4.0, "namediff": 0, "diffnote": "Changed feature class.", "pop_max": 3435000, "pop_min": 2026469, "pop_other": 3852246, "rank_max": 12, "rank_min": 12, "geonameid": 993800.0, "meganame": "Johannesburg", "ls_name": "Johannesburg", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.028063865019476, -26.16809888138414 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Amsterdam", "nameascii": "Amsterdam", "adm0name": "Netherlands", "adm0_a3": "NLD", "adm1name": "Noord-Holland", "iso_a2": "NL", "note": null, "latitude": 52.349968688099999, "longitude": 4.91664017601, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 1031000, "pop_min": 741636, "pop_other": 962488, "rank_max": 12, "rank_min": 11, "geonameid": 2759794.0, "meganame": "Amsterdam", "ls_name": "Amsterdam", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 4.914694317400972, 52.351914546664432 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-1 capital", "name": "Casablanca", "nameascii": "Casablanca", "adm0name": "Morocco", "adm0_a3": "MAR", "adm1name": "Grand Casablanca", "iso_a2": "MA", "note": null, "latitude": 33.599976215600002, "longitude": -7.61636743309, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3181000, "pop_min": 3144909, "pop_other": 3718797, "rank_max": 12, "rank_min": 12, "geonameid": 2553604.0, "meganame": "Dar-el-Beida", "ls_name": "Casablanca", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -7.618313291698712, 33.601922074258482 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Seoul", "nameascii": "Seoul", "adm0name": "South Korea", "adm0_a3": "KOR", "adm1name": "Seoul", "iso_a2": "KR", "note": null, "latitude": 37.5663490998, "longitude": 126.999730997, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 9796000, "pop_min": 9796000, "pop_other": 12018058, "rank_max": 13, "rank_min": 13, "geonameid": 1835848.0, "meganame": "Seoul", "ls_name": "Seoul", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 126.997785138201948, 37.568294958388947 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Manila", "nameascii": "Manila", "adm0name": "Philippines", "adm0_a3": "PHL", "adm1name": "Metropolitan Manila", "iso_a2": "PH", "note": null, "latitude": 14.604158954800001, "longitude": 120.982217162, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 11100000, "pop_min": 3077575, "pop_other": 2381280, "rank_max": 14, "rank_min": 12, "geonameid": 1701668.0, "meganame": "Manila", "ls_name": "Manila", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 120.980271303542395, 14.606104813440538 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 2, "featurecla": "Admin-1 capital", "name": "Monterrey", "nameascii": "Monterrey", "adm0name": "Mexico", "adm0_a3": "MEX", "adm1name": "Nuevo León", "iso_a2": "MX", "note": null, "latitude": 25.669995136499999, "longitude": -100.329984784, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3712000, "pop_min": 1122874, "pop_other": 3225636, "rank_max": 12, "rank_min": 12, "geonameid": 3995465.0, "meganame": "Monterrey", "ls_name": "Monterrey", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -100.331930642329951, 25.671940995125283 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 8, "featurecla": "Admin-1 capital", "name": "Auckland", "nameascii": "Auckland", "adm0name": "New Zealand", "adm0_a3": "NZL", "adm1name": "Auckland", "iso_a2": "NZ", "note": null, "latitude": -36.850013001800001, "longitude": 174.764980834, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 1245000, "pop_min": 274020, "pop_other": 243794, "rank_max": 12, "rank_min": 10, "geonameid": 2193733.0, "meganame": "Auckland", "ls_name": "Auckland", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.763034975632536, -36.84806714314567 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Berlin", "nameascii": "Berlin", "adm0name": "Germany", "adm0_a3": "DEU", "adm1name": "Berlin", "iso_a2": "DE", "note": null, "latitude": 52.521818663600001, "longitude": 13.4015486233, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 3406000, "pop_min": 3094014, "pop_other": 3013258, "rank_max": 12, "rank_min": 12, "geonameid": 2950159.0, "meganame": "Berlin", "ls_name": "Berlin", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 13.399602764700546, 52.523764522251156 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Urumqi", "nameascii": "Urumqi", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Xinjiang Uygur", "iso_a2": "CN", "note": null, "latitude": 43.805012226400002, "longitude": 87.575005654899996, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2151000, "pop_min": 1508225, "pop_other": 2044401, "rank_max": 12, "rank_min": 12, "geonameid": 1529102.0, "meganame": "Ürümqi (Wulumqi)", "ls_name": "Urumqi", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 87.573059796247264, 43.806958085041799 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Chengdu", "nameascii": "Chengdu", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Sichuan", "iso_a2": "CN", "note": null, "latitude": 30.670000019300002, "longitude": 104.07001949, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4123000, "pop_min": 3950437, "pop_other": 11622929, "rank_max": 12, "rank_min": 12, "geonameid": 1815286.0, "meganame": "Chengdu", "ls_name": "Chengdu", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 104.068073630948732, 30.671945877957796 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 2, "featurecla": "Admin-1 region capital", "name": "Osaka", "nameascii": "Osaka", "adm0name": "Japan", "adm0_a3": "JPN", "adm1name": "Osaka", "iso_a2": "JP", "note": null, "latitude": 34.750035216299999, "longitude": 135.460144815, "changed": 4.0, "namediff": 0, "diffnote": "Changed feature to Admin-0 region capital.", "pop_max": 11294000, "pop_min": 2592413, "pop_other": 9630783, "rank_max": 14, "rank_min": 12, "geonameid": 1853909.0, "meganame": "Osaka-Kobe", "ls_name": "Osaka", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 135.458198956595197, 34.75198107491417 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Kinshasa", "nameascii": "Kinshasa", "adm0name": "Congo (Kinshasa)", "adm0_a3": "COD", "adm1name": "Kinshasa City", "iso_a2": "CD", "note": null, "latitude": -4.32972410189, "longitude": 15.3149718818, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 7843000, "pop_min": 5565703, "pop_other": 4738154, "rank_max": 13, "rank_min": 13, "geonameid": 2314302.0, "meganame": "Kinshasa", "ls_name": "Kinshasa", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.313026023171744, -4.327778243275986 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "New Delhi", "nameascii": "New Delhi", "adm0name": "India", "adm0_a3": "IND", "adm1name": "Delhi", "iso_a2": "IN", "note": null, "latitude": 28.600023009200001, "longitude": 77.1999800201, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 317797, "pop_min": 317797, "pop_other": 8060107, "rank_max": 10, "rank_min": 10, "geonameid": 1261481.0, "meganame": null, "ls_name": "New Delhi", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.199980020053033, 28.600023009245433 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Bangalore", "nameascii": "Bangalore", "adm0name": "India", "adm0_a3": "IND", "adm1name": "Karnataka", "iso_a2": "IN", "note": null, "latitude": 12.9699951365, "longitude": 77.560009723799993, "changed": 3.0, "namediff": 1, "diffnote": "Name changed. Changed scale rank.", "pop_max": 6787000, "pop_min": 5104047, "pop_other": 8102712, "rank_max": 13, "rank_min": 13, "geonameid": 1277333.0, "meganame": "Bangalore", "ls_name": "Bangalore", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.558063865217548, 12.971940995074419 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 6, "featurecla": "Admin-0 capital", "name": "Athens", "nameascii": "Athens", "adm0name": "Greece", "adm0_a3": "GRC", "adm1name": "Attiki", "iso_a2": "GR", "note": null, "latitude": 37.983326231900001, "longitude": 23.733321084300002, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3242000, "pop_min": 729137, "pop_other": 112572, "rank_max": 12, "rank_min": 11, "geonameid": 264371.0, "meganame": "Athínai", "ls_name": "Athens2", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 23.731375225679358, 37.985272090552257 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Baghdad", "nameascii": "Baghdad", "adm0name": "Iraq", "adm0_a3": "IRQ", "adm1name": "Baghdad", "iso_a2": "IQ", "note": null, "latitude": 33.338648497500003, "longitude": 44.393868773199998, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 5054000, "pop_min": 5054000, "pop_other": 4959534, "rank_max": 13, "rank_min": 13, "geonameid": 98182.0, "meganame": "Baghdad", "ls_name": "Baghdad", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.391922914564134, 33.340594356158647 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Addis Ababa", "nameascii": "Addis Ababa", "adm0name": "Ethiopia", "adm0_a3": "ETH", "adm1name": "Addis Ababa", "iso_a2": "ET", "note": null, "latitude": 9.03331036268, "longitude": 38.700004434, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3100000, "pop_min": 2757729, "pop_other": 3013653, "rank_max": 12, "rank_min": 12, "geonameid": 344979.0, "meganame": "Addis Ababa", "ls_name": "Addis Ababa", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 38.698058575348682, 9.035256221295754 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Tehran", "nameascii": "Tehran", "adm0name": "Iran", "adm0_a3": "IRN", "adm1name": "Tehran", "iso_a2": "IR", "note": null, "latitude": 35.671942768400001, "longitude": 51.424344033600001, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 7873000, "pop_min": 7153309, "pop_other": 8209012, "rank_max": 13, "rank_min": 13, "geonameid": 112931.0, "meganame": "Tehran", "ls_name": "Tehran", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.422398175008993, 35.673888627001304 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 2, "featurecla": "Populated place", "name": "Vancouver", "nameascii": "Vancouver", "adm0name": "Canada", "adm0_a3": "CAN", "adm1name": "British Columbia", "iso_a2": "CA", "note": null, "latitude": 49.273416584099998, "longitude": -123.121644218, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 2313328, "pop_min": 603502, "pop_other": 482002, "rank_max": 12, "rank_min": 11, "geonameid": 6173331.0, "meganame": "Vancouver", "ls_name": "Vancouver2", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -123.123590076394294, 49.275362442711753 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 2, "featurecla": "Admin-1 capital", "name": "Toronto", "nameascii": "Toronto", "adm0name": "Canada", "adm0_a3": "CAN", "adm1name": "Ontario", "iso_a2": "CA", "note": null, "latitude": 43.699979877799997, "longitude": -79.420020794400003, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 5213000, "pop_min": 3934421, "pop_other": 3749229, "rank_max": 13, "rank_min": 12, "geonameid": 6167865.0, "meganame": "Toronto", "ls_name": "Toronto", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -79.421966652988431, 43.701925736408441 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Buenos Aires", "nameascii": "Buenos Aires", "adm0name": "Argentina", "adm0_a3": "ARG", "adm1name": "Ciudad de Buenos Aires", "iso_a2": "AR", "note": null, "latitude": -34.602501608499999, "longitude": -58.397531373699998, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 12795000, "pop_min": 10929146, "pop_other": 10271457, "rank_max": 14, "rank_min": 14, "geonameid": 3435910.0, "meganame": "Buenos Aires", "ls_name": "Buenos Aires", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -58.399477232331435, -34.600555749907414 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Kabul", "nameascii": "Kabul", "adm0name": "Afghanistan", "adm0_a3": "AFG", "adm1name": "Kabul", "iso_a2": "AF", "note": null, "latitude": 34.516690286299998, "longitude": 69.183260049300003, "changed": 5.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3277000, "pop_min": 3043532, "pop_other": 3475519, "rank_max": 12, "rank_min": 12, "geonameid": 1138958.0, "meganame": "Kabul", "ls_name": "Kabul", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 69.181314190705052, 34.518636144900313 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 7, "featurecla": "Admin-0 capital", "name": "Vienna", "nameascii": "Vienna", "adm0name": "Austria", "adm0_a3": "AUT", "adm1name": "Wien", "iso_a2": "AT", "note": null, "latitude": 48.200015278199999, "longitude": 16.366638955399999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 2400000, "pop_min": 1731000, "pop_other": 1480886, "rank_max": 12, "rank_min": 12, "geonameid": 2761369.0, "meganame": "Wien", "ls_name": "Vienna", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 16.364693096743736, 48.201961136816863 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 3, "featurecla": "Admin-1 capital", "name": "Melbourne", "nameascii": "Melbourne", "adm0name": "Australia", "adm0_a3": "AUS", "adm1name": "Victoria", "iso_a2": "AU", "note": null, "latitude": -37.820031312300003, "longitude": 144.975016235, "changed": 4.0, "namediff": 0, "diffnote": "Changed feature class. Changed scale rank.", "pop_max": 4170000, "pop_min": 93625, "pop_other": 1805353, "rank_max": 12, "rank_min": 8, "geonameid": 2158177.0, "meganame": "Melbourne", "ls_name": "Melbourne2", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 144.973070375904058, -37.818085453696312 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 1, "labelrank": 8, "featurecla": "Admin-0 capital", "name": "Taipei", "nameascii": "Taipei", "adm0name": "Taiwan", "adm0_a3": "TWN", "adm1name": "Taipei City", "iso_a2": "TW", "note": null, "latitude": 25.03583333333, "longitude": 121.568333333330003, "changed": 1.0, "namediff": 0, "diffnote": "Corrected coordinates.", "pop_max": 6900273, "pop_min": 2618772, "pop_other": 5698241, "rank_max": 13, "rank_min": 12, "geonameid": 1668341.0, "meganame": "Taipei", "ls_name": "Taipei", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 121.568333333333001, 25.035833333333301 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Populated place", "name": "Los Angeles", "nameascii": "Los Angeles", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "California", "iso_a2": "US", "note": null, "latitude": 33.989978250199997, "longitude": -118.179980511, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 12500000, "pop_min": 3694820, "pop_other": 142265, "rank_max": 14, "rank_min": 12, "geonameid": 5368361.0, "meganame": "Los Angeles-Long Beach-Santa Ana", "ls_name": "Los Angeles1", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -118.181926369940413, 33.991924108765431 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Washington, D.C.", "nameascii": "Washington, D.C.", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "District of Columbia", "iso_a2": "US", "note": null, "latitude": 38.899549376499998, "longitude": -77.009418580800002, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 4338000, "pop_min": 552433, "pop_other": 2175991, "rank_max": 12, "rank_min": 11, "geonameid": 4140963.0, "meganame": "Washington, D.C.", "ls_name": "Washington, D.C.", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -77.011364439437159, 38.901495235087054 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Populated place", "name": "New York", "nameascii": "New York", "adm0name": "United States of America", "adm0_a3": "USA", "adm1name": "New York", "iso_a2": "US", "note": null, "latitude": 40.749979064, "longitude": -73.980016928799998, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 19040000, "pop_min": 8008278, "pop_other": 9292603, "rank_max": 14, "rank_min": 13, "geonameid": 5128581.0, "meganame": "New York-Newark", "ls_name": "New York", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -73.981962787406815, 40.75192492259464 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "London", "nameascii": "London", "adm0name": "United Kingdom", "adm0_a3": "GBR", "adm1name": "Westminster", "iso_a2": "GB", "note": null, "latitude": 51.499994729699999, "longitude": -0.11672184386, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 8567000, "pop_min": 7421209, "pop_other": 326670, "rank_max": 13, "rank_min": 13, "geonameid": 2643743.0, "meganame": "London", "ls_name": "London2", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ -0.118667702475932, 51.5019405883275 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 5, "featurecla": "Admin-1 capital", "name": "Istanbul", "nameascii": "Istanbul", "adm0name": "Turkey", "adm0_a3": "TUR", "adm1name": "Istanbul", "iso_a2": "TR", "note": null, "latitude": 41.104996153800002, "longitude": 29.010001585600001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 10061000, "pop_min": 9945610, "pop_other": 9651488, "rank_max": 14, "rank_min": 13, "geonameid": 745044.0, "meganame": "Istanbul", "ls_name": "Istanbul", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.008055727002613, 41.106942012439788 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Riyadh", "nameascii": "Riyadh", "adm0name": "Saudi Arabia", "adm0_a3": "SAU", "adm1name": "Ar Riyad", "iso_a2": "SA", "note": null, "latitude": 24.640833149199999, "longitude": 46.772741657300003, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 4465000, "pop_min": 4205961, "pop_other": 5148778, "rank_max": 12, "rank_min": 12, "geonameid": 108410.0, "meganame": "Ar-Riyadh", "ls_name": "Riyadh", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 46.770795798688255, 24.642779007816443 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Cape Town", "nameascii": "Cape Town", "adm0name": "South Africa", "adm0_a3": "ZAF", "adm1name": "Western Cape", "iso_a2": "ZA", "note": null, "latitude": -33.9200109672, "longitude": 18.434988157799999, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3215000, "pop_min": 2432858, "pop_other": 2401318, "rank_max": 12, "rank_min": 12, "geonameid": 3369157.0, "meganame": "Cape Town", "ls_name": "Cape Town", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.433042299226031, -33.918065108628753 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Moscow", "nameascii": "Moscow", "adm0name": "Russia", "adm0_a3": "RUS", "adm1name": "Moskva", "iso_a2": "RU", "note": null, "latitude": 55.7521641226, "longitude": 37.615522825900001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 10452000, "pop_min": 10452000, "pop_other": 10585385, "rank_max": 14, "rank_min": 14, "geonameid": 524901.0, "meganame": "Moskva", "ls_name": "Moscow", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 37.613576967271399, 55.754109981248178 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Mexico City", "nameascii": "Mexico City", "adm0name": "Mexico", "adm0_a3": "MEX", "adm1name": "Distrito Federal", "iso_a2": "MX", "note": null, "latitude": 19.442442442800001, "longitude": -99.130988201700006, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 19028000, "pop_min": 10811002, "pop_other": 10018444, "rank_max": 14, "rank_min": 14, "geonameid": 3530597.0, "meganame": "Ciudad de México", "ls_name": "Mexico City", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -99.132934060293906, 19.444388301415472 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 2, "featurecla": "Admin-0 capital alt", "name": "Lagos", "nameascii": "Lagos", "adm0name": "Nigeria", "adm0_a3": "NGA", "adm1name": "Lagos", "iso_a2": "NG", "note": null, "latitude": 6.44326165348, "longitude": 3.39153107121, "changed": 4.0, "namediff": 0, "diffnote": "Location adjusted. Changed scale rank.", "pop_max": 9466000, "pop_min": 1536, "pop_other": 6567892, "rank_max": 13, "rank_min": 3, "geonameid": 735497.0, "meganame": "Lagos", "ls_name": "Lagos", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 3.389585212598433, 6.445207512093191 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Rome", "nameascii": "Rome", "adm0name": "Italy", "adm0_a3": "ITA", "adm1name": "Lazio", "iso_a2": "IT", "note": null, "latitude": 41.895955626499997, "longitude": 12.4832584215, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 3339000, "pop_min": 35452, "pop_other": 2050212, "rank_max": 12, "rank_min": 7, "geonameid": 4219762.0, "meganame": "Rome", "ls_name": "Rome", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.481312562873995, 41.897901485098942 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Beijing", "nameascii": "Beijing", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Beijing", "iso_a2": "CN", "note": null, "latitude": 39.928892231299997, "longitude": 116.388285684, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 11106000, "pop_min": 7480601, "pop_other": 9033231, "rank_max": 14, "rank_min": 13, "geonameid": 1816670.0, "meganame": "Beijing", "ls_name": "Beijing", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 116.386339825659434, 39.930838089909059 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Nairobi", "nameascii": "Nairobi", "adm0name": "Kenya", "adm0_a3": "KEN", "adm1name": "Nairobi", "iso_a2": "KE", "note": null, "latitude": -1.28334674185, "longitude": 36.8166568591, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 3010000, "pop_min": 2750547, "pop_other": 3400962, "rank_max": 12, "rank_min": 12, "geonameid": 184745.0, "meganame": "Nairobi", "ls_name": "Nairobi", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 36.814711000471448, -1.281400883237779 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Admin-0 capital", "name": "Jakarta", "nameascii": "Jakarta", "adm0name": "Indonesia", "adm0_a3": "IDN", "adm1name": "Jakarta Raya", "iso_a2": "ID", "note": null, "latitude": -6.17441770541, "longitude": 106.829437621, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 9125000, "pop_min": 8540121, "pop_other": 9129613, "rank_max": 13, "rank_min": 13, "geonameid": 1642911.0, "meganame": "Jakarta", "ls_name": "Jakarta", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 106.827491762470117, -6.172471846798885 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 5, "featurecla": "Admin-0 capital", "name": "Bogota", "nameascii": "Bogota", "adm0name": "Colombia", "adm0_a3": "COL", "adm1name": "Bogota", "iso_a2": "CO", "note": null, "latitude": 4.59642356253, "longitude": -74.083343955199993, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 7772000, "pop_min": 6333661, "pop_other": 5754084, "rank_max": 13, "rank_min": 13, "geonameid": 3688689.0, "meganame": "Bogotá", "ls_name": "Bogota", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -74.085289813774409, 4.598369421147822 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Cairo", "nameascii": "Cairo", "adm0name": "Egypt", "adm0_a3": "EGY", "adm1name": "Al Qahirah", "iso_a2": "EG", "note": null, "latitude": 30.049960346500001, "longitude": 31.249968219700001, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 11893000, "pop_min": 7734614, "pop_other": 13720557, "rank_max": 14, "rank_min": 13, "geonameid": 360630.0, "meganame": "Al-Qahirah", "ls_name": "Cairo", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.248022361126118, 30.051906205103705 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Shanghai", "nameascii": "Shanghai", "adm0name": "China", "adm0_a3": "CHN", "adm1name": "Shanghai", "iso_a2": "CN", "note": null, "latitude": 31.216452452599999, "longitude": 121.436504678, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 14987000, "pop_min": 14608512, "pop_other": 16803572, "rank_max": 14, "rank_min": 14, "geonameid": 1796236.0, "meganame": "Shanghai", "ls_name": "Shanghai", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 121.434558819820154, 31.218398311228327 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 2, "featurecla": "Admin-0 capital", "name": "Tokyo", "nameascii": "Tokyo", "adm0name": "Japan", "adm0_a3": "JPN", "adm1name": "Tokyo", "iso_a2": "JP", "note": null, "latitude": 35.685016905799998, "longitude": 139.751407429000011, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 35676000, "pop_min": 8336599, "pop_other": 12945252, "rank_max": 14, "rank_min": 13, "geonameid": 1850147.0, "meganame": "Tokyo", "ls_name": "Tokyo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 139.749461570544668, 35.686962764371174 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Mumbai", "nameascii": "Mumbai", "adm0name": "India", "adm0_a3": "IND", "adm1name": "Maharashtra", "iso_a2": "IN", "note": null, "latitude": 19.016990375700001, "longitude": 72.856989297400006, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 18978000, "pop_min": 12691836, "pop_other": 12426085, "rank_max": 14, "rank_min": 14, "geonameid": 1275339.0, "meganame": "Mumbai", "ls_name": "Mumbai", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 72.855043438766472, 19.018936234356602 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Paris", "nameascii": "Paris", "adm0name": "France", "adm0_a3": "FRA", "adm1name": "Île-de-France", "iso_a2": "FR", "note": null, "latitude": 48.866692931199999, "longitude": 2.33333532574, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 9904000, "pop_min": 11177, "pop_other": 7142744, "rank_max": 13, "rank_min": 6, "geonameid": 6942553.0, "meganame": "Paris", "ls_name": "Paris", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 2.33138946713035, 48.868638789814611 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 3, "featurecla": "Admin-0 capital", "name": "Santiago", "nameascii": "Santiago", "adm0name": "Chile", "adm0_a3": "CHL", "adm1name": "Región Metropolitana de Santiago", "iso_a2": "CL", "note": null, "latitude": -33.4500138155, "longitude": -70.667040854600003, "changed": 4.0, "namediff": 0, "diffnote": "Changed scale rank.", "pop_max": 5720000, "pop_min": 46611, "pop_other": 3066651, "rank_max": 13, "rank_min": 7, "geonameid": 3449741.0, "meganame": "Santiago", "ls_name": "Santiago3", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -70.668986713174831, -33.448067956934096 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Kolkata", "nameascii": "Kolkata", "adm0name": "India", "adm0_a3": "IND", "adm1name": "West Bengal", "iso_a2": "IN", "note": null, "latitude": 22.494969298299999, "longitude": 88.324675658100006, "changed": 4.0, "namediff": 1, "diffnote": "Name changed. Changed scale rank.", "pop_max": 14787000, "pop_min": 4631392, "pop_other": 7783716, "rank_max": 14, "rank_min": 12, "geonameid": 1275004.0, "meganame": "Kolkata", "ls_name": "Calcutta", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 88.32272979950551, 22.496915156896421 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Populated place", "name": "Rio de Janeiro", "nameascii": "Rio de Janeiro", "adm0name": "Brazil", "adm0_a3": "BRA", "adm1name": "Rio de Janeiro", "iso_a2": "BR", "note": null, "latitude": -22.9250231742, "longitude": -43.225020794199999, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 11748000, "pop_min": 2010175, "pop_other": 1821489, "rank_max": 14, "rank_min": 12, "geonameid": 3451190.0, "meganame": "Rio de Janeiro", "ls_name": "Rio de Janeiro", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -43.226966652843657, -22.923077315615956 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 1, "featurecla": "Admin-1 capital", "name": "Sao Paulo", "nameascii": "Sao Paulo", "adm0name": "Brazil", "adm0_a3": "BRA", "adm1name": "São Paulo", "iso_a2": "BR", "note": null, "latitude": -23.558679587, "longitude": -46.625019980399998, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 18845000, "pop_min": 10021295, "pop_other": 11522944, "rank_max": 14, "rank_min": 14, "geonameid": 3448439.0, "meganame": "São Paulo", "ls_name": "Sao Paolo", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ -46.626965839055231, -23.556733728378958 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 3, "featurecla": "Admin-1 capital", "name": "Sydney", "nameascii": "Sydney", "adm0name": "Australia", "adm0_a3": "AUS", "adm1name": "New South Wales", "iso_a2": "AU", "note": null, "latitude": -33.9200109672, "longitude": 151.185179809, "changed": 4.0, "namediff": 0, "diffnote": "Changed feature class.", "pop_max": 4630000, "pop_min": 3641422, "pop_other": 2669348, "rank_max": 12, "rank_min": 12, "geonameid": 2147714.0, "meganame": "Sydney", "ls_name": "Sydney1", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 151.183233950147496, -33.918065108628753 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 0, "featurecla": "Admin-0 capital", "name": "Singapore", "nameascii": "Singapore", "adm0name": "Singapore", "adm0_a3": "SGP", "adm1name": null, "iso_a2": "SG", "note": null, "latitude": 1.29303346649, "longitude": 103.855820678, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 5183700, "pop_min": 3289529, "pop_other": 3314179, "rank_max": 13, "rank_min": 12, "geonameid": 1880252.0, "meganame": "Singapore", "ls_name": "Singapore", "ls_match": 1, "checkme": 5 }, "geometry": { "type": "Point", "coordinates": [ 103.853874819099019, 1.294979325105942 ] } }
,
{ "type": "Feature", "properties": { "scalerank": 0, "labelrank": 0, "featurecla": "Admin-0 region capital", "name": "Hong Kong", "nameascii": "Hong Kong", "adm0name": "Hong Kong S.A.R.", "adm0_a3": "HKG", "adm1name": null, "iso_a2": "HK", "note": null, "latitude": 22.304980895, "longitude": 114.185009317, "changed": 0.0, "namediff": 0, "diffnote": null, "pop_max": 7206000, "pop_min": 4551579, "pop_other": 4549026, "rank_max": 13, "rank_min": 12, "geonameid": 1819729.0, "meganame": "Hong Kong", "ls_name": "Hong Kong", "ls_match": 1, "checkme": 0 }, "geometry": { "type": "Point", "coordinates": [ 114.183063458463039, 22.30692675357551 ] } }
]
}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment