Skip to content

Instantly share code, notes, and snippets.

@saxman
Last active December 12, 2015 06:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saxman/4732930 to your computer and use it in GitHub Desktop.
Save saxman/4732930 to your computer and use it in GitHub Desktop.
Top 100 Cities by Population
var map;
var geometries;
var POP_ATTR = 'POP_MAX';
var NUM_CITIES = 100;
function initialize() {
var mapStyle = [
{
stylers: [
{ saturation: -100 },
{ gamma: 0.15 },
{ lightness: -20 }
]
},{
elementType: "labels",
stylers: [
{ invert_lightness: true },
{ lightness: -10 }
]
},{
featureType: "water",
elementType: "geometry",
stylers: [
{ lightness: -65 }
]
},{
featureType: "administrative",
elementType: "geometry",
stylers: [
{ invert_lightness: true },
{ lightness: -20 }
]
}];
map = new google.maps.Map(document.getElementById('map_canvas'), {
center: new google.maps.LatLng(0, 0),
mapTypeId: google.maps.MapTypeId.ROADMAP,
zoom: 2,
maxZoom: 4,
disableDefaultUI: true,
scrollwheel: false,
zoomControl: true,
zoomControlOptions: {
position: google.maps.ControlPosition.LEFT_CENTER
},
styles: mapStyle
});
var prop = Object.getOwnPropertyNames(naturalearth.data.objects)[0]
geojson = topojson.feature(naturalearth.data, naturalearth.data.objects[prop]);
// Reverse sort by population and take the top NUM_CITIES cities
geojson.features.sort(function(a, b) {
return a.properties[POP_ATTR] < b.properties[POP_ATTR] ? 1 : -1;
});
geojson.features = geojson.features.slice(0, NUM_CITIES);
// Convert the GeoJSON data to Google Maps geometry objects
geometries = new GeoJSON(geojson);
for (var i = 0; i < geometries.length; i++) {
geometries[i].setOptions({
icon: {
path: google.maps.SymbolPath.CIRCLE,
scale: Math.sqrt(geometries[i].geojsonProperties[POP_ATTR] / 100000),
fillColor: "#ff0000",
fillOpacity: 0.6,
strokeColor: "#333333",
strokeWeight: 1,
strokeOpacity: 0.6
}
});
var infoWindow = new google.maps.InfoWindow();
google.maps.event.addListener(geometries[i], 'click', function() {
infoWindow.setContent(
'<div>' + this.geojsonProperties.NAME + '</div>' +
'<div>Population: ' + this.geojsonProperties[POP_ATTR].toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') + '</div>');
infoWindow.open(map, this);
});
geometries[i].setMap(map);
}
var credits = document.getElementById('credits');
map.controls[google.maps.ControlPosition.BOTTOM_RIGHT].push(credits);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Natural Earth Data in Google Maps via GeoJSON and TopoJSON</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<script src="https://maps.google.com/maps/api/js?sensor=false"></script>
<script src="https://raw.github.com/saxman/topojson/master/topojson.js"></script>
<script src="https://raw.github.com/saxman/GeoJSON-to-Google-Maps/master/GeoJSON.js"></script>
<script src="cities.js"></script>
<script src="ne_10m_populated_places.topojson.js"></script>
<body onload="initialize()">
<div id="map_canvas"></div>
<div id="credits">
<a href="http://www.naturalearthdata.com/" target="_new">Made with Natural Earth</a>
</div>
</body>
</html>
var naturalearth = naturalearth || {};
naturalearth['data'] =
{"type":"Topology","transform":{"scale":[0.03590091833904782,0.01725005730520519],"translate":[-179.58997888396897,-89.99999981438727]},"objects":{"ne_10m_populated_places":{"type":"GeometryCollection","geometries":[{"type":"Point","coordinates":[3391,3218],"properties":{"NAME":"Colonia del Sacramento","POP_MAX":21714}},{"type":"Point","coordinates":[3417,3272],"properties":{"NAME":"Trinidad","POP_MAX":21093}},{"type":"Point","coordinates":[3378,3296],"properties":{"NAME":"Fray Bentos","POP_MAX":23279}},{"type":"Point","coordinates":[3434,3215],"properties":{"NAME":"Canelones","POP_MAX":19698}},{"type":"Point","coordinates":[3436,3240],"properties":{"NAME":"Florida","POP_MAX":32234}},{"type":"Point","coordinates":[5024,5754],"properties":{"NAME":"Bassar","POP_MAX":61845}},{"type":"Point","coordinates":[5029,5713],"properties":{"NAME":"Sotouboua","POP_MAX":21054}},{"type":"Point","coordinates":[5292,7153],"properties":{"NAME":"Medenine","POP_MAX":61705}},{"type":"Point","coordinates":[5252,7170],"properties":{"NAME":"Kebili","POP_MAX":19875}},{"type":"Point","coordinates":[5293,7130],"properties":{"NAME":"Tataouine","POP_MAX":62577}},{"type":"Point","coordinates":[5286,7354],"properties":{"NAME":"L'Ariana","POP_MAX":97687}},{"type":"Point","coordinates":[5246,7333],"properties":{"NAME":"Jendouba","POP_MAX":51408}},{"type":"Point","coordinates":[5245,7258],"properties":{"NAME":"Kasserine","POP_MAX":76243}},{"type":"Point","coordinates":[5266,7247],"properties":{"NAME":"Sdid Bouzid","POP_MAX":42098}},{"type":"Point","coordinates":[5263,7309],"properties":{"NAME":"Siliana","POP_MAX":26960}},{"type":"Point","coordinates":[5309,7274],"properties":{"NAME":"Mahdia","POP_MAX":45977}},{"type":"Point","coordinates":[5302,7288],"properties":{"NAME":"Monastir","POP_MAX":71546}},{"type":"Point","coordinates":[5285,7327],"properties":{"NAME":"Zaghouan","POP_MAX":16911}},{"type":"Point","coordinates":[7959,5873],"properties":{"NAME":"Tay Ninh","POP_MAX":126370}},{"type":"Point","coordinates":[7880,6477],"properties":{"NAME":"Luan Chau","POP_MAX":7335}},{"type":"Point","coordinates":[7950,6500],"properties":{"NAME":"Bac Kan","POP_MAX":29227}},{"type":"Point","coordinates":[7976,6483],"properties":{"NAME":"Lang Son","POP_MAX":148000}},{"type":"Point","coordinates":[7896,6453],"properties":{"NAME":"Son La","POP_MAX":19054}},{"type":"Point","coordinates":[7932,6482],"properties":{"NAME":"Tuyen Quang","POP_MAX":36430}},{"type":"Point","coordinates":[7923,6475],"properties":{"NAME":"Yen Bai","POP_MAX":96540}},{"type":"Point","coordinates":[7964,6431],"properties":{"NAME":"Hai Duong","POP_MAX":58030}},{"type":"Point","coordinates":[7964,6402],"properties":{"NAME":"Thai Binh","POP_MAX":210000}},{"type":"Point","coordinates":[8047,5975],"properties":{"NAME":"Tuy Hoa","POP_MAX":69596}},{"type":"Point","coordinates":[7973,5853],"properties":{"NAME":"Thu Dau Mot","POP_MAX":244277}},{"type":"Point","coordinates":[7986,6194],"properties":{"NAME":"Dong Ha","POP_MAX":17662}},{"type":"Point","coordinates":[7944,5824],"properties":{"NAME":"Cao Lanh","POP_MAX":149837}},{"type":"Point","coordinates":[7965,5810],"properties":{"NAME":"Truc Giang","POP_MAX":59442}},{"type":"Point","coordinates":[7964,5793],"properties":{"NAME":"Tra Vinh","POP_MAX":131360}},{"type":"Point","coordinates":[7953,5811],"properties":{"NAME":"Vinh Long","POP_MAX":103314}},{"type":"Point","coordinates":[7962,6531],"properties":{"NAME":"Cao Bang","POP_MAX":41112}},{"type":"Point","coordinates":[2570,6090],"properties":{"NAME":"Yoro","POP_MAX":15774}},{"type":"Point","coordinates":[2546,6048],"properties":{"NAME":"La Esperanza","POP_MAX":5318}},{"type":"Point","coordinates":[2559,6047],"properties":{"NAME":"La Paz","POP_MAX":17555}},{"type":"Point","coordinates":[2544,6082],"properties":{"NAME":"Santa Barbara","POP_MAX":15119}},{"type":"Point","coordinates":[2534,6062],"properties":{"NAME":"Gracias","POP_MAX":7909}},{"type":"Point","coordinates":[2518,6054],"properties":{"NAME":"Nueva Ocotepeque","POP_MAX":8780}},{"type":"Point","coordinates":[2583,6025],"properties":{"NAME":"Yuscaran","POP_MAX":2371}},{"type":"Point","coordinates":[2937,6297],"properties":{"NAME":"Jeremie","POP_MAX":30917}},{"type":"Point","coordinates":[2973,6372],"properties":{"NAME":"Port-De-Paix","POP_MAX":34657}},{"type":"Point","coordinates":[2996,6327],"properties":{"NAME":"Hinche","POP_MAX":18590}},{"type":"Point","coordinates":[3001,6357],"properties":{"NAME":"Fort-Liberte","POP_MAX":11465}},{"type":"Point","coordinates":[2981,6274],"properties":{"NAME":"Jacmel","POP_MAX":33563}},{"type":"Point","coordinates":[5760,7637],"properties":{"NAME":"Kirklareli","POP_MAX":58223}},{"type":"Point","coordinates":[5837,7544],"properties":{"NAME":"Bilecik","POP_MAX":40285}},{"type":"Point","coordinates":[5849,7580],"properties":{"NAME":"Sakarya","POP_MAX":286787}},{"type":"Point","coordinates":[5943,7616],"properties":{"NAME":"Kastamonu","POP_MAX":70402}},{"type":"Point","coordinates":[5845,7403],"properties":{"NAME":"Burdur","POP_MAX":66158}},{"type":"Point","coordinates":[5954,7486],"properties":{"NAME":"Kirsehir","POP_MAX":94336}},{"type":"Point","coordinates":[5969,7456],"properties":{"NAME":"Nevsehir","POP_MAX":75527}},{"type":"Point","coordinates":[6008,7317],"properties":{"NAME":"Antioch","POP_MAX":154803}},{"type":"Point","coordinates":[6071,7589],"properties":{"NAME":"Giresun","POP_MAX":98864}},{"type":"Point","coordinates":[5981,7653],"properties":{"NAME":"Sinop","POP_MAX":34834}},{"type":"Point","coordinates":[6020,7553],"properties":{"NAME":"Tokat","POP_MAX":129702}},{"type":"Point","coordinates":[6167,7604],"properties":{"NAME":"Artvin","POP_MAX":32272}},{"type":"Point","coordinates":[6130,7471],"properties":{"NAME":"Bingol","POP_MAX":80568}},{"type":"Point","coordinates":[6175,7443],"properties":{"NAME":"Bitlis","POP_MAX":62811}},{"type":"Point","coordinates":[5899,5199],"properties":{"NAME":"Kalangala","POP_MAX":5200}},{"type":"Point","coordinates":[5938,7571],"properties":{"NAME":"Cankiri","POP_MAX":71379}},{"type":"Point","coordinates":[5968,7418],"properties":{"NAME":"Nigde","POP_MAX":91039}},{"type":"Point","coordinates":[5972,7525],"properties":{"NAME":"Yozgat","POP_MAX":87881}},{"type":"Point","coordinates":[6102,7563],"properties":{"NAME":"Gumushane","POP_MAX":32250}},{"type":"Point","coordinates":[6170,7417],"properties":{"NAME":"Siirt","POP_MAX":114034}},{"type":"Point","coordinates":[6103,7485],"properties":{"NAME":"Tunceli","POP_MAX":29062}},{"type":"Point","coordinates":[5947,5302],"properties":{"NAME":"Kumi","POP_MAX":13000}},{"type":"Point","coordinates":[5926,5318],"properties":{"NAME":"Kaberamaido","POP_MAX":3400}},{"type":"Point","coordinates":[5918,5258],"properties":{"NAME":"Kayunga","POP_MAX":21704}},{"type":"Point","coordinates":[5934,5252],"properties":{"NAME":"Iganga","POP_MAX":45024}},{"type":"Point","coordinates":[5924,5272],"properties":{"NAME":"Kamuli","POP_MAX":12764}},{"type":"Point","coordinates":[5941,5283],"properties":{"NAME":"Pallisa","POP_MAX":30745}},{"type":"Point","coordinates":[5902,5230],"properties":{"NAME":"Mpigi","POP_MAX":11082}},{"type":"Point","coordinates":[5888,5412],"properties":{"NAME":"Adjumani","POP_MAX":34700}},{"type":"Point","coordinates":[5868,5360],"properties":{"NAME":"Nebbi","POP_MAX":30354}},{"type":"Point","coordinates":[5887,5270],"properties":{"NAME":"Kiboga","POP_MAX":14512}},{"type":"Point","coordinates":[5906,5293],"properties":{"NAME":"Nakasongola","POP_MAX":6921}},{"type":"Point","coordinates":[5908,5251],"properties":{"NAME":"Bombo","POP_MAX":75000}},{"type":"Point","coordinates":[5885,5314],"properties":{"NAME":"Masindi","POP_MAX":31486}},{"type":"Point","coordinates":[5845,5256],"properties":{"NAME":"Fort Portal","POP_MAX":42670}},{"type":"Point","coordinates":[5867,5263],"properties":{"NAME":"Kibale","POP_MAX":5200}},{"type":"Point","coordinates":[5957,5289],"properties":{"NAME":"Sironko","POP_MAX":14100}},{"type":"Point","coordinates":[5951,5243],"properties":{"NAME":"Busia","POP_MAX":47100}},{"type":"Point","coordinates":[5948,5327],"properties":{"NAME":"Katakwi","POP_MAX":8400}},{"type":"Point","coordinates":[5501,7947],"properties":{"NAME":"Veszprem","POP_MAX":62023}},{"type":"Point","coordinates":[5471,7932],"properties":{"NAME":"Zalaegerszeg","POP_MAX":61898}},{"type":"Point","coordinates":[5515,7973],"properties":{"NAME":"Tatabanya","POP_MAX":70541}},{"type":"Point","coordinates":[5523,7903],"properties":{"NAME":"Szekszard","POP_MAX":34174}},{"type":"Point","coordinates":[5554,8006],"properties":{"NAME":"Salgotarjan","POP_MAX":39640}},{"type":"Point","coordinates":[5590,7922],"properties":{"NAME":"Bekescsaba","POP_MAX":65206}},{"type":"Point","coordinates":[5570,7993],"properties":{"NAME":"Eger","POP_MAX":56647}},{"type":"Point","coordinates":[5845,5166],"properties":{"NAME":"Ntungamo","POP_MAX":16400}},{"type":"Point","coordinates":[5829,5138],"properties":{"NAME":"Kisoro","POP_MAX":12900}},{"type":"Point","coordinates":[5825,5073],"properties":{"NAME":"Gikongoro","POP_MAX":15000}},{"type":"Point","coordinates":[5819,5098],"properties":{"NAME":"Kibuye","POP_MAX":48024}},{"type":"Point","coordinates":[5852,5091],"properties":{"NAME":"Kibungo","POP_MAX":46240}},{"type":"Point","coordinates":[5650,7828],"properties":{"NAME":"Targu Jiu","POP_MAX":97179}},{"type":"Point","coordinates":[5681,7793],"properties":{"NAME":"Slatina","POP_MAX":78988}},{"type":"Point","coordinates":[5706,7762],"properties":{"NAME":"Alexandria","POP_MAX":49346}},{"type":"Point","coordinates":[5711,7822],"properties":{"NAME":"Targoviste","POP_MAX":88435}},{"type":"Point","coordinates":[5722,7764],"properties":{"NAME":"Giurgiu","POP_MAX":69067}},{"type":"Point","coordinates":[5765,7801],"properties":{"NAME":"Slobozia","POP_MAX":52693}},{"type":"Point","coordinates":[6008,7108],"properties":{"NAME":"Dar'a","POP_MAX":146481}},{"type":"Point","coordinates":[5206,7963],"properties":{"NAME":"Delemont","POP_MAX":11315}},{"type":"Point","coordinates":[5195,7941],"properties":{"NAME":"Neuchatel","POP_MAX":31270}},{"type":"Point","coordinates":[5226,7964],"properties":{"NAME":"Aarau","POP_MAX":15501}},{"type":"Point","coordinates":[5235,7939],"properties":{"NAME":"Stans","POP_MAX":7475}},{"type":"Point","coordinates":[5207,7897],"properties":{"NAME":"Sion","POP_MAX":28045}},{"type":"Point","coordinates":[5260,7964],"properties":{"NAME":"Herisau","POP_MAX":15438}},{"type":"Point","coordinates":[5263,7966],"properties":{"NAME":"Saint Gallen","POP_MAX":70572}},{"type":"Point","coordinates":[5253,7895],"properties":{"NAME":"Bellinzona","POP_MAX":16572}},{"type":"Point","coordinates":[5254,7944],"properties":{"NAME":"Glarus","POP_MAX":5681}},{"type":"Point","coordinates":[5242,7982],"properties":{"NAME":"Schaffhausen","POP_MAX":33863}},{"type":"Point","coordinates":[5243,7943],"properties":{"NAME":"Schwyz","POP_MAX":14177}},{"type":"Point","coordinates":[5256,7974],"properties":{"NAME":"Frauenfeld","POP_MAX":21979}},{"type":"Point","coordinates":[5242,7934],"properties":{"NAME":"Altdorf","POP_MAX":8678}},{"type":"Point","coordinates":[5238,7952],"properties":{"NAME":"Zug","POP_MAX":23435}},{"type":"Point","coordinates":[5438,8731],"properties":{"NAME":"Falun","POP_MAX":36477}},{"type":"Point","coordinates":[5476,8623],"properties":{"NAME":"Nykoping","POP_MAX":27582}},{"type":"Point","coordinates":[5501,8848],"properties":{"NAME":"Harnosand","POP_MAX":17016}},{"type":"Point","coordinates":[5428,8475],"properties":{"NAME":"Karlskrona","POP_MAX":35212}},{"type":"Point","coordinates":[5659,7888],"properties":{"NAME":"Alba Lulia","POP_MAX":66085}},{"type":"Point","coordinates":[5685,7950],"properties":{"NAME":"Bistrita","POP_MAX":81318}},{"type":"Point","coordinates":[5640,7877],"properties":{"NAME":"Deva","POP_MAX":67802}},{"type":"Point","coordinates":[5644,7952],"properties":{"NAME":"Zalau","POP_MAX":63232}},{"type":"Point","coordinates":[5639,7987],"properties":{"NAME":"Satu Mare","POP_MAX":112490}},{"type":"Point","coordinates":[5681,7832],"properties":{"NAME":"Rimnicu Vilcea","POP_MAX":107558}},{"type":"Point","coordinates":[5720,7876],"properties":{"NAME":"Sfintu-Gheorghe","POP_MAX":60677}},{"type":"Point","coordinates":[5713,7904],"properties":{"NAME":"Miercurea Cuic","POP_MAX":42029}},{"type":"Point","coordinates":[5737,7938],"properties":{"NAME":"Piatra-Neamt","POP_MAX":102688}},{"type":"Point","coordinates":[5781,7842],"properties":{"NAME":"Braila","POP_MAX":213569}},{"type":"Point","coordinates":[5774,7920],"properties":{"NAME":"Vaslui","POP_MAX":69225}},{"type":"Point","coordinates":[7291,6860],"properties":{"NAME":"Salyan","POP_MAX":15000}},{"type":"Point","coordinates":[7731,6336],"properties":{"NAME":"Mae Hong Son","POP_MAX":9109}},{"type":"Point","coordinates":[7746,5707],"properties":{"NAME":"Phangnga","POP_MAX":9676}},{"type":"Point","coordinates":[7749,5794],"properties":{"NAME":"Ranong","POP_MAX":24561}},{"type":"Point","coordinates":[7757,5684],"properties":{"NAME":"Krabi","POP_MAX":31219}},{"type":"Point","coordinates":[7790,5658],"properties":{"NAME":"Phatthalung","POP_MAX":43522}},{"type":"Point","coordinates":[7789,5600],"properties":{"NAME":"Satun","POP_MAX":34544}},{"type":"Point","coordinates":[7762,6290],"properties":{"NAME":"Lamphun","POP_MAX":14030}},{"type":"Point","coordinates":[7774,6172],"properties":{"NAME":"Kamphaeng Phet","POP_MAX":58787}},{"type":"Point","coordinates":[7797,6170],"properties":{"NAME":"Phichit","POP_MAX":35760}},{"type":"Point","coordinates":[7820,6169],"properties":{"NAME":"Phetchabun","POP_MAX":50656}},{"type":"Point","coordinates":[7791,6056],"properties":{"NAME":"Supham Buri","POP_MAX":53399}},{"type":"Point","coordinates":[7800,6062],"properties":{"NAME":"Ang Thong","POP_MAX":13738}},{"type":"Point","coordinates":[7791,6097],"properties":{"NAME":"Chainat","POP_MAX":15469}},{"type":"Point","coordinates":[7821,6040],"properties":{"NAME":"Nakhon Nayok","POP_MAX":21309}},{"type":"Point","coordinates":[7798,6080],"properties":{"NAME":"Sing Buri","POP_MAX":20046}},{"type":"Point","coordinates":[7789,6018],"properties":{"NAME":"Nakhon Pathom","POP_MAX":117927}},{"type":"Point","coordinates":[7782,5901],"properties":{"NAME":"Prachuap Khiri Khan","POP_MAX":33521}},{"type":"Point","coordinates":[7795,6002],"properties":{"NAME":"Samut Sakhon","POP_MAX":63498}},{"type":"Point","coordinates":[7787,5994],"properties":{"NAME":"Samut Songkhram","POP_MAX":35065}},{"type":"Point","coordinates":[7903,6132],"properties":{"NAME":"Yasothon","POP_MAX":21643}},{"type":"Point","coordinates":[7817,6010],"properties":{"NAME":"Chachoengsao","POP_MAX":49741}},{"type":"Point","coordinates":[7857,5926],"properties":{"NAME":"Trat","POP_MAX":21590}},{"type":"Point","coordinates":[7885,6169],"properties":{"NAME":"Kalasin","POP_MAX":55102}},{"type":"Point","coordinates":[7879,6155],"properties":{"NAME":"Maha Sarakham","POP_MAX":51584}},{"type":"Point","coordinates":[7889,6147],"properties":{"NAME":"Roi Et","POP_MAX":39328}},{"type":"Point","coordinates":[7822,5615],"properties":{"NAME":"Pattani","POP_MAX":150000}},{"type":"Point","coordinates":[5872,3712],"properties":{"NAME":"Piggs Peak","POP_MAX":5750}},{"type":"Point","coordinates":[5892,3683],"properties":{"NAME":"Siteki","POP_MAX":6152}},{"type":"Point","coordinates":[5876,3681],"properties":{"NAME":"Manzini","POP_MAX":110537}},{"type":"Point","coordinates":[5877,3652],"properties":{"NAME":"Hlatikulu","POP_MAX":2748}},{"type":"Point","coordinates":[2590,5998],"properties":{"NAME":"Somoto","POP_MAX":20316}},{"type":"Point","coordinates":[2593,6007],"properties":{"NAME":"Ocotal","POP_MAX":33928}},{"type":"Point","coordinates":[4761,7573],"properties":{"NAME":"Aveiro","POP_MAX":54162}},{"type":"Point","coordinates":[4757,7521],"properties":{"NAME":"Leiria","POP_MAX":45112}},{"type":"Point","coordinates":[4756,7634],"properties":{"NAME":"Viana Do Castelo","POP_MAX":15555}},{"type":"Point","coordinates":[4825,7473],"properties":{"NAME":"Merida","POP_MAX":52423}},{"type":"Point","coordinates":[4783,7421],"properties":{"NAME":"Beja","POP_MAX":35854}},{"type":"Point","coordinates":[4782,7452],"properties":{"NAME":"Evora","POP_MAX":55620}},{"type":"Point","coordinates":[4795,7495],"properties":{"NAME":"Portalegre","POP_MAX":15581}},{"type":"Point","coordinates":[4760,7491],"properties":{"NAME":"Santarem","POP_MAX":29385}},{"type":"Point","coordinates":[4814,7641],"properties":{"NAME":"Braganca","POP_MAX":34375}},{"type":"Point","coordinates":[4793,7525],"properties":{"NAME":"Castelo Branco","POP_MAX":33479}},{"type":"Point","coordinates":[4800,7567],"properties":{"NAME":"Guarda","POP_MAX":32111}},{"type":"Point","coordinates":[4782,7574],"properties":{"NAME":"Viseu","POP_MAX":26364}},{"type":"Point","coordinates":[4786,7611],"properties":{"NAME":"Vila Real","POP_MAX":17001}},{"type":"Point","coordinates":[4545,6048],"properties":{"NAME":"Fatick","POP_MAX":24243}},{"type":"Point","coordinates":[6042,7033],"properties":{"NAME":"An Nabk","POP_MAX":10000}},{"type":"Point","coordinates":[5184,8289],"properties":{"NAME":"Assen","POP_MAX":62237}},{"type":"Point","coordinates":[5167,8231],"properties":{"NAME":"Arnhem","POP_MAX":141674}},{"type":"Point","coordinates":[5160,8165],"properties":{"NAME":"Maastricht","POP_MAX":122378}},{"type":"Point","coordinates":[5172,8262],"properties":{"NAME":"Zwolle","POP_MAX":111805}},{"type":"Point","coordinates":[5102,8202],"properties":{"NAME":"Middelburg","POP_MAX":46485}},{"type":"Point","coordinates":[5150,8213],"properties":{"NAME":"'s-Hertogenbosch","POP_MAX":134520}},{"type":"Point","coordinates":[5246,8606],"properties":{"NAME":"Arendal","POP_MAX":30916}},{"type":"Point","coordinates":[5181,8732],"properties":{"NAME":"Vossavangen","POP_MAX":5571}},{"type":"Point","coordinates":[5193,8764],"properties":{"NAME":"Leikanger","POP_MAX":1965}},{"type":"Point","coordinates":[5318,8690],"properties":{"NAME":"B�rum","POP_MAX":113659}},{"type":"Point","coordinates":[5310,8743],"properties":{"NAME":"Hamar","POP_MAX":29479}},{"type":"Point","coordinates":[5292,8652],"properties":{"NAME":"T�nsberg","POP_MAX":38914}},{"type":"Point","coordinates":[7330,6856],"properties":{"NAME":"Baglung","POP_MAX":23296}},{"type":"Point","coordinates":[7292,6913],"properties":{"NAME":"Jumla","POP_MAX":9073}},{"type":"Point","coordinates":[7324,6813],"properties":{"NAME":"Bhairawa","POP_MAX":63367}},{"type":"Point","coordinates":[7247,6915],"properties":{"NAME":"Dandeldhura","POP_MAX":19014}},{"type":"Point","coordinates":[7247,6880],"properties":{"NAME":"Dhangarhi","POP_MAX":92294}},{"type":"Point","coordinates":[7400,6801],"properties":{"NAME":"Ramechhap","POP_MAX":15000}},{"type":"Point","coordinates":[7373,6814],"properties":{"NAME":"Bhimphedi","POP_MAX":15000}},{"type":"Point","coordinates":[7418,6755],"properties":{"NAME":"Rajbiraj","POP_MAX":33061}},{"type":"Point","coordinates":[7451,6777],"properties":{"NAME":"Ilam","POP_MAX":17491}},{"type":"Point","coordinates":[9005,4899],"properties":{"NAME":"Wabag","POP_MAX":3958}},{"type":"Point","coordinates":[8938,5061],"properties":{"NAME":"Vanimo","POP_MAX":11204}},{"type":"Point","coordinates":[9040,4868],"properties":{"NAME":"Kundiawa","POP_MAX":9383}},{"type":"Point","coordinates":[9064,4757],"properties":{"NAME":"Kerema","POP_MAX":5646}},{"type":"Point","coordinates":[9335,4856],"properties":{"NAME":"Arawa","POP_MAX":40266}},{"type":"Point","coordinates":[9104,5099],"properties":{"NAME":"Lorengau","POP_MAX":5806}},{"type":"Point","coordinates":[9184,4895],"properties":{"NAME":"Kimbe","POP_MAX":18847}},{"type":"Point","coordinates":[5814,7957],"properties":{"NAME":"Dubasari","POP_MAX":23254}},{"type":"Point","coordinates":[5801,3471],"properties":{"NAME":"Qacha's Nek","POP_MAX":25573}},{"type":"Point","coordinates":[6224,5459],"properties":{"NAME":"Hudur","POP_MAX":1639}},{"type":"Point","coordinates":[6178,5410],"properties":{"NAME":"Garbahaarey","POP_MAX":12652}},{"type":"Point","coordinates":[6188,5280],"properties":{"NAME":"Bu'aale","POP_MAX":1490}},{"type":"Point","coordinates":[6297,5550],"properties":{"NAME":"Dhuusa Mareeb","POP_MAX":447}},{"type":"Point","coordinates":[7265,5714],"properties":{"NAME":"Trincomalee","POP_MAX":108420}},{"type":"Point","coordinates":[7225,5683],"properties":{"NAME":"Puttalan","POP_MAX":45661}},{"type":"Point","coordinates":[7241,5605],"properties":{"NAME":"Ratnapura","POP_MAX":47832}},{"type":"Point","coordinates":[5210,5538],"properties":{"NAME":"Umuahia","POP_MAX":264662}},{"type":"Point","coordinates":[5221,5507],"properties":{"NAME":"Uyo","POP_MAX":554906}},{"type":"Point","coordinates":[5198,5535],"properties":{"NAME":"Owerri","POP_MAX":215038}},{"type":"Point","coordinates":[8505,7449],"properties":{"NAME":"Sariwon","POP_MAX":154942}},{"type":"Point","coordinates":[8497,7506],"properties":{"NAME":"Sin-Ni","POP_MAX":19463}},{"type":"Point","coordinates":[7960,8130],"properties":{"NAME":"Suchboatar","POP_MAX":24235}},{"type":"Point","coordinates":[7981,7983],"properties":{"NAME":"Dzuunmod","POP_MAX":17738}},{"type":"Point","coordinates":[5446,3974],"properties":{"NAME":"Omaruru","POP_MAX":11547}},{"type":"Point","coordinates":[5443,3945],"properties":{"NAME":"Karibib","POP_MAX":6898}},{"type":"Point","coordinates":[5485,4078],"properties":{"NAME":"Otavi","POP_MAX":4562}},{"type":"Point","coordinates":[5530,3915],"properties":{"NAME":"Gobabis","POP_MAX":16321}},{"type":"Point","coordinates":[6108,4923],"properties":{"NAME":"Wete","POP_MAX":26450}},{"type":"Point","coordinates":[6086,4825],"properties":{"NAME":"Kibaha","POP_MAX":23651}},{"type":"Point","coordinates":[6095,4876],"properties":{"NAME":"Mkokotoni","POP_MAX":2572}},{"type":"Point","coordinates":[5201,7930],"properties":{"NAME":"Fribourg","POP_MAX":32827}},{"type":"Point","coordinates":[5217,7970],"properties":{"NAME":"Liestal","POP_MAX":12832}},{"type":"Point","coordinates":[5212,7954],"properties":{"NAME":"Solothurn","POP_MAX":14853}},{"type":"Point","coordinates":[5231,7936],"properties":{"NAME":"Sarnen","POP_MAX":9410}},{"type":"Point","coordinates":[5387,8620],"properties":{"NAME":"Mariestad","POP_MAX":14891}},{"type":"Point","coordinates":[5345,8600],"properties":{"NAME":"Vannersborg","POP_MAX":21835}},{"type":"Point","coordinates":[5264,7961],"properties":{"NAME":"Appenzell","POP_MAX":5649}},{"type":"Point","coordinates":[4774,8326],"properties":{"NAME":"Ros Comain","POP_MAX":4860}},{"type":"Point","coordinates":[4552,5928],"properties":{"NAME":"Cacheu","POP_MAX":10490}},{"type":"Point","coordinates":[4578,5941],"properties":{"NAME":"Farim","POP_MAX":6792}},{"type":"Point","coordinates":[4579,5899],"properties":{"NAME":"Fulacunda","POP_MAX":1311}},{"type":"Point","coordinates":[4605,5929],"properties":{"NAME":"Gabu","POP_MAX":14430}},{"type":"Point","coordinates":[4579,5867],"properties":{"NAME":"Catio","POP_MAX":9898}},{"type":"Point","coordinates":[4774,5495],"properties":{"NAME":"Barclayville","POP_MAX":2733}},{"type":"Point","coordinates":[4730,5705],"properties":{"NAME":"Voinjama","POP_MAX":26594}},{"type":"Point","coordinates":[4707,5590],"properties":{"NAME":"Bensonville","POP_MAX":4089}},{"type":"Point","coordinates":[4714,5595],"properties":{"NAME":"Kakata","POP_MAX":33945}},{"type":"Point","coordinates":[4760,5644],"properties":{"NAME":"Sanniquellie","POP_MAX":11415}},{"type":"Point","coordinates":[4735,5534],"properties":{"NAME":"Rivercess","POP_MAX":2578}},{"type":"Point","coordinates":[5442,7573],"properties":{"NAME":"Potenza","POP_MAX":69060}},{"type":"Point","coordinates":[5410,7626],"properties":{"NAME":"Campobasso","POP_MAX":50762}},{"type":"Point","coordinates":[6011,7088],"properties":{"NAME":"Al Mafraq","POP_MAX":57118}},{"type":"Point","coordinates":[5993,7004],"properties":{"NAME":"At Tafilah","POP_MAX":25429}},{"type":"Point","coordinates":[5997,6967],"properties":{"NAME":"Ma'an","POP_MAX":50350}},{"type":"Point","coordinates":[5206,7868],"properties":{"NAME":"Aosta","POP_MAX":34062}},{"type":"Point","coordinates":[5174,8109],"properties":{"NAME":"Diekirch","POP_MAX":6242}},{"type":"Point","coordinates":[5178,8098],"properties":{"NAME":"Grevenmacher","POP_MAX":3958}},{"type":"Point","coordinates":[7793,5590],"properties":{"NAME":"Kangar","POP_MAX":63869}},{"type":"Point","coordinates":[7844,5459],"properties":{"NAME":"Kuala Lipis","POP_MAX":15448}},{"type":"Point","coordinates":[7830,5395],"properties":{"NAME":"Shah Alam","POP_MAX":481654}},{"type":"Point","coordinates":[6031,5193],"properties":{"NAME":"Nyeri","POP_MAX":51084}},{"type":"Point","coordinates":[5775,3527],"properties":{"NAME":"Teyateyaneng","POP_MAX":5115}},{"type":"Point","coordinates":[5767,3469],"properties":{"NAME":"Mohales Hoek","POP_MAX":24992}},{"type":"Point","coordinates":[5774,3454],"properties":{"NAME":"Moyeni","POP_MAX":24130}},{"type":"Point","coordinates":[5783,3543],"properties":{"NAME":"Hlotse","POP_MAX":47675}},{"type":"Point","coordinates":[5789,3550],"properties":{"NAME":"Butha-Buthe","POP_MAX":16330}},{"type":"Point","coordinates":[5812,3519],"properties":{"NAME":"Mokhotlong","POP_MAX":8809}},{"type":"Point","coordinates":[2499,6024],"properties":{"NAME":"Ahuachapan","POP_MAX":34102}},{"type":"Point","coordinates":[2525,6012],"properties":{"NAME":"Cojutepeque","POP_MAX":48411}},{"type":"Point","coordinates":[2515,6010],"properties":{"NAME":"Nueva San Salvador","POP_MAX":124694}},{"type":"Point","coordinates":[2527,6000],"properties":{"NAME":"Zacatecoluca","POP_MAX":39613}},{"type":"Point","coordinates":[2555,5990],"properties":{"NAME":"La Union","POP_MAX":26807}},{"type":"Point","coordinates":[2548,6011],"properties":{"NAME":"San Francisco Gotera","POP_MAX":16152}},{"type":"Point","coordinates":[2529,6008],"properties":{"NAME":"San Vicente","POP_MAX":37326}},{"type":"Point","coordinates":[2539,5991],"properties":{"NAME":"Usulutan","POP_MAX":51910}},{"type":"Point","coordinates":[2520,6033],"properties":{"NAME":"Chalatenango","POP_MAX":29271}},{"type":"Point","coordinates":[2824,6286],"properties":{"NAME":"Lucea","POP_MAX":6289}},{"type":"Point","coordinates":[2843,6262],"properties":{"NAME":"Mandeville","POP_MAX":47115}},{"type":"Point","coordinates":[2833,6262],"properties":{"NAME":"Black River","POP_MAX":4229}},{"type":"Point","coordinates":[2839,6288],"properties":{"NAME":"Falmouth","POP_MAX":7779}},{"type":"Point","coordinates":[2831,6270],"properties":{"NAME":"Savanna-la-Mar","POP_MAX":30000}},{"type":"Point","coordinates":[2874,6270],"properties":{"NAME":"Port Antonio","POP_MAX":14400}},{"type":"Point","coordinates":[2852,6285],"properties":{"NAME":"St. Ann's Bay","POP_MAX":13671}},{"type":"Point","coordinates":[2860,6282],"properties":{"NAME":"Port Maria","POP_MAX":7906}},{"type":"Point","coordinates":[2863,6262],"properties":{"NAME":"Half Way Tree","POP_MAX":96494}},{"type":"Point","coordinates":[2876,6254],"properties":{"NAME":"Port Morant","POP_MAX":11536}},{"type":"Point","coordinates":[3015,6348],"properties":{"NAME":"Sabaneta","POP_MAX":16380}},{"type":"Point","coordinates":[3022,6350],"properties":{"NAME":"Mao","POP_MAX":48297}},{"type":"Point","coordinates":[3048,6322],"properties":{"NAME":"Cotui","POP_MAX":41641}},{"type":"Point","coordinates":[5296,5301],"properties":{"NAME":"Evinayong","POP_MAX":8462}},{"type":"Point","coordinates":[5240,5417],"properties":{"NAME":"Luba","POP_MAX":8655}},{"type":"Point","coordinates":[5445,7752],"properties":{"NAME":"Sibenik","POP_MAX":37112}},{"type":"Point","coordinates":[5863,6990],"properties":{"NAME":"Shibin el Kom","POP_MAX":182900}},{"type":"Point","coordinates":[5870,6983],"properties":{"NAME":"Benha","POP_MAX":167029}},{"type":"Point","coordinates":[5880,6990],"properties":{"NAME":"Zagazig","POP_MAX":285097}},{"type":"Point","coordinates":[5864,7020],"properties":{"NAME":"Kafr el Sheikh","POP_MAX":143970}},{"type":"Point","coordinates":[6182,5861],"properties":{"NAME":"Dikhil","POP_MAX":12043}},{"type":"Point","coordinates":[6197,5900],"properties":{"NAME":"Tadjoura","POP_MAX":22193}},{"type":"Point","coordinates":[5658,8634],"properties":{"NAME":"Haapsalu","POP_MAX":11805}},{"type":"Point","coordinates":[6339,6917],"properties":{"NAME":"Hawalli","POP_MAX":164212}},{"type":"Point","coordinates":[5797,5173],"properties":{"NAME":"Buluko","POP_MAX":1192}},{"type":"Point","coordinates":[5938,4527],"properties":{"NAME":"Mzimba","POP_MAX":19308}},{"type":"Point","coordinates":[5991,4349],"properties":{"NAME":"Machinga","POP_MAX":1418}},{"type":"Point","coordinates":[5958,4384],"properties":{"NAME":"Dedza","POP_MAX":15608}},{"type":"Point","coordinates":[5918,4417],"properties":{"NAME":"Mchinji","POP_MAX":18305}},{"type":"Point","coordinates":[5967,4358],"properties":{"NAME":"Ntcheu","POP_MAX":10445}},{"type":"Point","coordinates":[5982,4307],"properties":{"NAME":"Chiradzulu","POP_MAX":1580}},{"type":"Point","coordinates":[5984,4236],"properties":{"NAME":"Nsanje","POP_MAX":21774}},{"type":"Point","coordinates":[5963,4312],"properties":{"NAME":"Mwanza","POP_MAX":11379}},{"type":"Point","coordinates":[5991,4287],"properties":{"NAME":"Mulanje","POP_MAX":16483}},{"type":"Point","coordinates":[2486,6092],"properties":{"NAME":"Salama","POP_MAX":40000}},{"type":"Point","coordinates":[2448,6060],"properties":{"NAME":"Retalhuleu","POP_MAX":36656}},{"type":"Point","coordinates":[2445,6084],"properties":{"NAME":"San Marcos","POP_MAX":25088}},{"type":"Point","coordinates":[2472,6067],"properties":{"NAME":"Chimaltenango","POP_MAX":82370}},{"type":"Point","coordinates":[2475,6061],"properties":{"NAME":"Antigua Guatemala","POP_MAX":39368}},{"type":"Point","coordinates":[2462,6073],"properties":{"NAME":"Solola","POP_MAX":45373}},{"type":"Point","coordinates":[2457,6081],"properties":{"NAME":"Totonicapan","POP_MAX":69734}},{"type":"Point","coordinates":[2495,6078],"properties":{"NAME":"El Progreso","POP_MAX":147197}},{"type":"Point","coordinates":[2487,6045],"properties":{"NAME":"Cuilapa","POP_MAX":16484}},{"type":"Point","coordinates":[2508,6075],"properties":{"NAME":"Chiquimula","POP_MAX":41521}},{"type":"Point","coordinates":[2495,6065],"properties":{"NAME":"Jalapa","POP_MAX":45834}},{"type":"Point","coordinates":[2508,6085],"properties":{"NAME":"Zacapa","POP_MAX":36088}},{"type":"Point","coordinates":[3033,6364],"properties":{"NAME":"Puerto Plata","POP_MAX":119897}},{"type":"Point","coordinates":[3005,6350],"properties":{"NAME":"Dajabon","POP_MAX":16398}},{"type":"Point","coordinates":[3037,6341],"properties":{"NAME":"Moca","POP_MAX":61834}},{"type":"Point","coordinates":[3040,6341],"properties":{"NAME":"Salcedo","POP_MAX":45299}},{"type":"Point","coordinates":[3001,6289],"properties":{"NAME":"Jimani","POP_MAX":6567}},{"type":"Point","coordinates":[3005,6311],"properties":{"NAME":"Comendador","POP_MAX":43894}},{"type":"Point","coordinates":[3004,6263],"properties":{"NAME":"Pedernales","POP_MAX":11072}},{"type":"Point","coordinates":[3032,6287],"properties":{"NAME":"Azua","POP_MAX":59139}},{"type":"Point","coordinates":[3041,6315],"properties":{"NAME":"Bonao","POP_MAX":73269}},{"type":"Point","coordinates":[3043,6277],"properties":{"NAME":"Bani","POP_MAX":66709}},{"type":"Point","coordinates":[3073,6305],"properties":{"NAME":"Hato Mayor","POP_MAX":35999}},{"type":"Point","coordinates":[3058,6307],"properties":{"NAME":"Monte Plata","POP_MAX":15532}},{"type":"Point","coordinates":[3056,6340],"properties":{"NAME":"Nagua","POP_MAX":33862}},{"type":"Point","coordinates":[3071,6331],"properties":{"NAME":"Samana","POP_MAX":11432}},{"type":"Point","coordinates":[3049,6284],"properties":{"NAME":"San Cristobal","POP_MAX":154040}},{"type":"Point","coordinates":[3079,6305],"properties":{"NAME":"El Seibo","POP_MAX":23547}},{"type":"Point","coordinates":[3088,6296],"properties":{"NAME":"Higuey","POP_MAX":123787}},{"type":"Point","coordinates":[4591,6002],"properties":{"NAME":"Georgetown","POP_MAX":3584}},{"type":"Point","coordinates":[4606,5988],"properties":{"NAME":"Basse Santa Su","POP_MAX":14380}},{"type":"Point","coordinates":[4554,5999],"properties":{"NAME":"Kerewan","POP_MAX":2751}},{"type":"Point","coordinates":[4565,5992],"properties":{"NAME":"Mansa Konko","POP_MAX":18672}},{"type":"Point","coordinates":[4937,5642],"properties":{"NAME":"Sunyani","POP_MAX":70299}},{"type":"Point","coordinates":[5317,5342],"properties":{"NAME":"Ebebiyin","POP_MAX":24831}},{"type":"Point","coordinates":[5715,8600],"properties":{"NAME":"Viljandi","POP_MAX":20309}},{"type":"Point","coordinates":[5309,5051],"properties":{"NAME":"Tchibanga","POP_MAX":19365}},{"type":"Point","coordinates":[5379,4975],"properties":{"NAME":"Madingou","POP_MAX":22760}},{"type":"Point","coordinates":[5627,7472],"properties":{"NAME":"Lamia","POP_MAX":47246}},{"type":"Point","coordinates":[5655,7558],"properties":{"NAME":"Polygyros","POP_MAX":5258}},{"type":"Point","coordinates":[5710,7601],"properties":{"NAME":"Komatini","POP_MAX":45631}},{"type":"Point","coordinates":[5992,7178],"properties":{"NAME":"B'abda","POP_MAX":9000}},{"type":"Point","coordinates":[5973,7067],"properties":{"NAME":"Ramla","POP_MAX":63860}},{"type":"Point","coordinates":[5989,7152],"properties":{"NAME":"Nabatiye et Tahta","POP_MAX":80000}},{"type":"Point","coordinates":[5558,8701],"properties":{"NAME":"Mariehamn","POP_MAX":10682}},{"type":"Point","coordinates":[5684,8753],"properties":{"NAME":"Hameenlinna","POP_MAX":47261}},{"type":"Point","coordinates":[5746,8746],"properties":{"NAME":"Kouvola","POP_MAX":31133}},{"type":"Point","coordinates":[5762,8793],"properties":{"NAME":"Mikkeli","POP_MAX":46550}},{"type":"Point","coordinates":[7799,6392],"properties":{"NAME":"Ban Houayxay","POP_MAX":6347}},{"type":"Point","coordinates":[7827,6431],"properties":{"NAME":"Louang Namtha","POP_MAX":3225}},{"type":"Point","coordinates":[7951,6080],"properties":{"NAME":"Champasak","POP_MAX":12994}},{"type":"Point","coordinates":[7966,6128],"properties":{"NAME":"Saravan","POP_MAX":5521}},{"type":"Point","coordinates":[7900,6400],"properties":{"NAME":"Xam Nua","POP_MAX":38992}},{"type":"Point","coordinates":[7846,6474],"properties":{"NAME":"Phongsali","POP_MAX":6000}},{"type":"Point","coordinates":[7978,6075],"properties":{"NAME":"Attapu","POP_MAX":4297}},{"type":"Point","coordinates":[5413,4964],"properties":{"NAME":"Kinkala","POP_MAX":13882}},{"type":"Point","coordinates":[4808,8362],"properties":{"NAME":"Muineachan","POP_MAX":5937}},{"type":"Point","coordinates":[5267,8446],"properties":{"NAME":"Vejle","POP_MAX":51177}},{"type":"Point","coordinates":[5345,8459],"properties":{"NAME":"Hillerod","POP_MAX":28313}},{"type":"Point","coordinates":[5324,8430],"properties":{"NAME":"Soro","POP_MAX":7167}},{"type":"Point","coordinates":[4659,5917],"properties":{"NAME":"Mali","POP_MAX":5479}},{"type":"Point","coordinates":[4677,5880],"properties":{"NAME":"Tongue","POP_MAX":25531}},{"type":"Point","coordinates":[4726,5834],"properties":{"NAME":"Kouroussa","POP_MAX":14223}},{"type":"Point","coordinates":[4656,5859],"properties":{"NAME":"Pita","POP_MAX":20052}},{"type":"Point","coordinates":[4660,5835],"properties":{"NAME":"Dalaba","POP_MAX":6349}},{"type":"Point","coordinates":[4611,5807],"properties":{"NAME":"Boffa","POP_MAX":2332}},{"type":"Point","coordinates":[4632,5940],"properties":{"NAME":"Koundara","POP_MAX":13990}},{"type":"Point","coordinates":[4634,5898],"properties":{"NAME":"Gaoual","POP_MAX":7461}},{"type":"Point","coordinates":[4639,5849],"properties":{"NAME":"Telimele","POP_MAX":30311}},{"type":"Point","coordinates":[4637,5764],"properties":{"NAME":"Forecariah","POP_MAX":12358}},{"type":"Point","coordinates":[4761,5720],"properties":{"NAME":"Beyla","POP_MAX":13204}},{"type":"Point","coordinates":[4719,5713],"properties":{"NAME":"Gueckedou","POP_MAX":221715}},{"type":"Point","coordinates":[4703,5872],"properties":{"NAME":"Dinguiraye","POP_MAX":6062}},{"type":"Point","coordinates":[4692,5840],"properties":{"NAME":"Dabola","POP_MAX":13057}},{"type":"Point","coordinates":[4788,5697],"properties":{"NAME":"Touba","POP_MAX":27504}},{"type":"Point","coordinates":[4842,5621],"properties":{"NAME":"Bouafle","POP_MAX":60962}},{"type":"Point","coordinates":[4853,5555],"properties":{"NAME":"Divo","POP_MAX":127867}},{"type":"Point","coordinates":[4862,5597],"properties":{"NAME":"Toumodi","POP_MAX":39005}},{"type":"Point","coordinates":[4913,5534],"properties":{"NAME":"Aboisso","POP_MAX":37654}},{"type":"Point","coordinates":[2463,6088],"properties":{"NAME":"Santa Cruz Del Quiche","POP_MAX":23618}},{"type":"Point","coordinates":[5259,5458],"properties":{"NAME":"Buea","POP_MAX":90088}},{"type":"Point","coordinates":[5553,7624],"properties":{"NAME":"Kruje","POP_MAX":21286}},{"type":"Point","coordinates":[5547,7578],"properties":{"NAME":"Fier","POP_MAX":82297}},{"type":"Point","coordinates":[5551,7590],"properties":{"NAME":"Lushnje","POP_MAX":41469}},{"type":"Point","coordinates":[5556,7654],"properties":{"NAME":"Puke","POP_MAX":6495}},{"type":"Point","coordinates":[5561,7671],"properties":{"NAME":"Bajram Curri","POP_MAX":7967}},{"type":"Point","coordinates":[5571,7656],"properties":{"NAME":"Kukes","POP_MAX":17832}},{"type":"Point","coordinates":[5559,7529],"properties":{"NAME":"Sarande","POP_MAX":15147}},{"type":"Point","coordinates":[5578,7555],"properties":{"NAME":"Erseke","POP_MAX":7890}},{"type":"Point","coordinates":[5577,7588],"properties":{"NAME":"Pogradec","POP_MAX":40000}},{"type":"Point","coordinates":[5580,7571],"properties":{"NAME":"Korce","POP_MAX":58259}},{"type":"Point","coordinates":[5558,7577],"properties":{"NAME":"Berat","POP_MAX":46866}},{"type":"Point","coordinates":[5565,7566],"properties":{"NAME":"Corovode","POP_MAX":14046}},{"type":"Point","coordinates":[5565,7586],"properties":{"NAME":"Gramsh","POP_MAX":11556}},{"type":"Point","coordinates":[5569,7605],"properties":{"NAME":"Librazhd","POP_MAX":12691}},{"type":"Point","coordinates":[5560,7552],"properties":{"NAME":"Tepelene","POP_MAX":11955}},{"type":"Point","coordinates":[5569,7549],"properties":{"NAME":"Permet","POP_MAX":10686}},{"type":"Point","coordinates":[5563,7540],"properties":{"NAME":"Gjirokaster","POP_MAX":23437}},{"type":"Point","coordinates":[5571,7633],"properties":{"NAME":"Peshkopi","POP_MAX":14848}},{"type":"Point","coordinates":[5559,7630],"properties":{"NAME":"Burrel","POP_MAX":15405}},{"type":"Point","coordinates":[5549,7639],"properties":{"NAME":"Lezhe","POP_MAX":18695}},{"type":"Point","coordinates":[5554,7639],"properties":{"NAME":"Rreshen","POP_MAX":10064}},{"type":"Point","coordinates":[6237,7553],"properties":{"NAME":"Ashtarak","POP_MAX":18779}},{"type":"Point","coordinates":[5112,8141],"properties":{"NAME":"Mons","POP_MAX":91277}},{"type":"Point","coordinates":[5155,8171],"properties":{"NAME":"Hasselt","POP_MAX":69222}},{"type":"Point","coordinates":[6259,7586],"properties":{"NAME":"Ijevan","POP_MAX":14737}},{"type":"Point","coordinates":[6243,7533],"properties":{"NAME":"Artashat","POP_MAX":20562}},{"type":"Point","coordinates":[6259,7557],"properties":{"NAME":"Gavarr","POP_MAX":21680}},{"type":"Point","coordinates":[6278,7568],"properties":{"NAME":"Gadabay","POP_MAX":8657}},{"type":"Point","coordinates":[6305,7571],"properties":{"NAME":"Goranboy","POP_MAX":7333}},{"type":"Point","coordinates":[6273,7593],"properties":{"NAME":"Tovuz","POP_MAX":12626}},{"type":"Point","coordinates":[6271,7588],"properties":{"NAME":"Agdam","POP_MAX":0}},{"type":"Point","coordinates":[6335,7593],"properties":{"NAME":"Qabala","POP_MAX":11867}},{"type":"Point","coordinates":[6324,7598],"properties":{"NAME":"Oguz","POP_MAX":6876}},{"type":"Point","coordinates":[6265,7522],"properties":{"NAME":"Yeghegnadzor","POP_MAX":8200}},{"type":"Point","coordinates":[6760,7245],"properties":{"NAME":"Qal eh-ye Now","POP_MAX":2997}},{"type":"Point","coordinates":[6819,7218],"properties":{"NAME":"Chaghcharan","POP_MAX":15000}},{"type":"Point","coordinates":[6795,7048],"properties":{"NAME":"Lashkar Gah","POP_MAX":201546}},{"type":"Point","coordinates":[6726,7020],"properties":{"NAME":"Zaranj","POP_MAX":49851}},{"type":"Point","coordinates":[6837,7109],"properties":{"NAME":"Tarin Kowt","POP_MAX":10000}},{"type":"Point","coordinates":[6908,7121],"properties":{"NAME":"Zareh Sharan","POP_MAX":13737}},{"type":"Point","coordinates":[6984,7238],"properties":{"NAME":"Asadabad","POP_MAX":48400}},{"type":"Point","coordinates":[6939,7346],"properties":{"NAME":"Taloqan","POP_MAX":64256}},{"type":"Point","coordinates":[6933,7247],"properties":{"NAME":"Mahmud-E Eraqi","POP_MAX":7407}},{"type":"Point","coordinates":[6956,7226],"properties":{"NAME":"Mehtar Lam","POP_MAX":17345}},{"type":"Point","coordinates":[6923,7186],"properties":{"NAME":"Baraki Barak","POP_MAX":22305}},{"type":"Point","coordinates":[6897,7319],"properties":{"NAME":"Aybak","POP_MAX":24000}},{"type":"Point","coordinates":[6918,7214],"properties":{"NAME":"Mayda Shahr","POP_MAX":35008}},{"type":"Point","coordinates":[7913,5881],"properties":{"NAME":"Kampong Spoe","POP_MAX":33231}},{"type":"Point","coordinates":[7924,5954],"properties":{"NAME":"Kampong Thum","POP_MAX":19951}},{"type":"Point","coordinates":[7936,5883],"properties":{"NAME":"Prey Veng","POP_MAX":74000}},{"type":"Point","coordinates":[7926,6018],"properties":{"NAME":"Phnum Tbeng Meanchey","POP_MAX":24380}},{"type":"Point","coordinates":[7954,6001],"properties":{"NAME":"Stoeng Treng","POP_MAX":29665}},{"type":"Point","coordinates":[7955,5940],"properties":{"NAME":"Kracheh","POP_MAX":19975}},{"type":"Point","coordinates":[7988,5939],"properties":{"NAME":"Senmonorom","POP_MAX":7944}},{"type":"Point","coordinates":[7982,6000],"properties":{"NAME":"Lumphat","POP_MAX":19205}},{"type":"Point","coordinates":[7949,5859],"properties":{"NAME":"Svay Rieng","POP_MAX":23956}},{"type":"Point","coordinates":[5162,7351],"properties":{"NAME":"Jijel","POP_MAX":148000}},{"type":"Point","coordinates":[5050,5600],"properties":{"NAME":"Lokossa","POP_MAX":86971}},{"type":"Point","coordinates":[5012,5916],"properties":{"NAME":"Fada Ngourma","POP_MAX":33910}},{"type":"Point","coordinates":[5114,7350],"properties":{"NAME":"Tizi-Ouzou","POP_MAX":144000}},{"type":"Point","coordinates":[5131,7307],"properties":{"NAME":"Bordj Bou Arreridj","POP_MAX":140000}},{"type":"Point","coordinates":[5128,7286],"properties":{"NAME":"M'sila","POP_MAX":150000}},{"type":"Point","coordinates":[5209,7331],"properties":{"NAME":"Guelma","POP_MAX":123590}},{"type":"Point","coordinates":[5201,7295],"properties":{"NAME":"Oum el Bouaghi","POP_MAX":100821}},{"type":"Point","coordinates":[5690,7718],"properties":{"NAME":"Lovec","POP_MAX":42211}},{"type":"Point","coordinates":[5649,7734],"properties":{"NAME":"Montana","POP_MAX":47445}},{"type":"Point","coordinates":[5741,7741],"properties":{"NAME":"Razgrad","POP_MAX":38285}},{"type":"Point","coordinates":[5164,8097],"properties":{"NAME":"Arlon","POP_MAX":26179}},{"type":"Point","coordinates":[5274,7971],"properties":{"NAME":"Bregenz","POP_MAX":26928}},{"type":"Point","coordinates":[5462,7990],"properties":{"NAME":"Eisenstadt","POP_MAX":13165}},{"type":"Point","coordinates":[7495,6804],"properties":{"NAME":"Paro","POP_MAX":15000}},{"type":"Point","coordinates":[7504,6819],"properties":{"NAME":"Punakha","POP_MAX":5000}},{"type":"Point","coordinates":[7709,6357],"properties":{"NAME":"Loikaw","POP_MAX":17293}},{"type":"Point","coordinates":[7506,6807],"properties":{"NAME":"Wangdue Prodrang","POP_MAX":5000}},{"type":"Point","coordinates":[5852,5033],"properties":{"NAME":"Cankuzo","POP_MAX":6585}},{"type":"Point","coordinates":[5842,5037],"properties":{"NAME":"Karusi","POP_MAX":10705}},{"type":"Point","coordinates":[5837,4989],"properties":{"NAME":"Rutana","POP_MAX":20893}},{"type":"Point","coordinates":[5844,5015],"properties":{"NAME":"Ruyigi","POP_MAX":38458}},{"type":"Point","coordinates":[5820,5038],"properties":{"NAME":"Bubanza","POP_MAX":12728}},{"type":"Point","coordinates":[5825,5049],"properties":{"NAME":"Kayanza","POP_MAX":19443}},{"type":"Point","coordinates":[5832,4977],"properties":{"NAME":"Makamba","POP_MAX":19642}},{"type":"Point","coordinates":[5833,5048],"properties":{"NAME":"Ngozi","POP_MAX":21506}},{"type":"Point","coordinates":[5840,5067],"properties":{"NAME":"Kirundo","POP_MAX":6083}},{"type":"Point","coordinates":[4865,5853],"properties":{"NAME":"Orodara","POP_MAX":18632}},{"type":"Point","coordinates":[4888,5923],"properties":{"NAME":"Solenzo","POP_MAX":10385}},{"type":"Point","coordinates":[4894,5955],"properties":{"NAME":"Nouna","POP_MAX":29048}},{"type":"Point","coordinates":[4905,5939],"properties":{"NAME":"Dedougou","POP_MAX":45341}},{"type":"Point","coordinates":[4995,6055],"properties":{"NAME":"Gorom Gorom","POP_MAX":6691}},{"type":"Point","coordinates":[4957,6034],"properties":{"NAME":"Djibo","POP_MAX":22223}},{"type":"Point","coordinates":[4916,5974],"properties":{"NAME":"Tougan","POP_MAX":17590}},{"type":"Point","coordinates":[4965,5916],"properties":{"NAME":"Kombissiri","POP_MAX":30137}},{"type":"Point","coordinates":[4966,5946],"properties":{"NAME":"Ziniare","POP_MAX":12703}},{"type":"Point","coordinates":[4939,5968],"properties":{"NAME":"Yako","POP_MAX":22904}},{"type":"Point","coordinates":[4933,5932],"properties":{"NAME":"Reo","POP_MAX":37535}},{"type":"Point","coordinates":[4943,5860],"properties":{"NAME":"Leo","POP_MAX":26884}},{"type":"Point","coordinates":[4952,5887],"properties":{"NAME":"Sapouy","POP_MAX":3837}},{"type":"Point","coordinates":[4986,5951],"properties":{"NAME":"Boulsa","POP_MAX":17489}},{"type":"Point","coordinates":[4985,5927],"properties":{"NAME":"Zorgo","POP_MAX":23892}},{"type":"Point","coordinates":[4992,5923],"properties":{"NAME":"Koupela","POP_MAX":32052}},{"type":"Point","coordinates":[4970,5864],"properties":{"NAME":"Po","POP_MAX":17924}},{"type":"Point","coordinates":[4972,5893],"properties":{"NAME":"Manga","POP_MAX":15173}},{"type":"Point","coordinates":[4911,5852],"properties":{"NAME":"Diebougou","POP_MAX":12732}},{"type":"Point","coordinates":[4913,5815],"properties":{"NAME":"Gaoua","POP_MAX":28023}},{"type":"Point","coordinates":[4998,5969],"properties":{"NAME":"Bogande","POP_MAX":9854}},{"type":"Point","coordinates":[5001,6030],"properties":{"NAME":"Dori","POP_MAX":37806}},{"type":"Point","coordinates":[5017,5996],"properties":{"NAME":"Sebba","POP_MAX":3273}},{"type":"Point","coordinates":[5052,5917],"properties":{"NAME":"Diapaga","POP_MAX":26013}},{"type":"Point","coordinates":[7721,6194],"properties":{"NAME":"Pa-an","POP_MAX":50000}},{"type":"Point","coordinates":[7610,6530],"properties":{"NAME":"Hakha","POP_MAX":20000}},{"type":"Point","coordinates":[7705,6422],"properties":{"NAME":"Taunggyi","POP_MAX":160115}},{"type":"Point","coordinates":[7675,6485],"properties":{"NAME":"Sagaing","POP_MAX":78739}},{"type":"Point","coordinates":[5827,5028],"properties":{"NAME":"Muramvya","POP_MAX":18041}},{"type":"Point","coordinates":[5939,7241],"properties":{"NAME":"Larnaka","POP_MAX":48947}},{"type":"Point","coordinates":[5905,7232],"properties":{"NAME":"Paphos","POP_MAX":35961}},{"type":"Point","coordinates":[6320,5706],"properties":{"NAME":"Laascaanood","POP_MAX":60100}},{"type":"Point","coordinates":[6320,5830],"properties":{"NAME":"Ceerigaabo","POP_MAX":180000}},{"type":"Point","coordinates":[5208,5312],"properties":{"NAME":"Santo Antonio","POP_MAX":1156}},{"type":"Point","coordinates":[8992,4689],"properties":{"NAME":"Daru","POP_MAX":15214}},{"type":"Point","coordinates":[5983,7066],"properties":{"NAME":"Ramallah","POP_MAX":24599}},{"type":"Point","coordinates":[5930,7265],"properties":{"NAME":"Kyrenia","POP_MAX":26701}},{"type":"Point","coordinates":[3091,5777],"properties":{"NAME":"San Carlos","POP_MAX":77192}},{"type":"Point","coordinates":[3087,5816],"properties":{"NAME":"San Felipe","POP_MAX":76766}},{"type":"Point","coordinates":[3126,5791],"properties":{"NAME":"San Juan De Los Morros","POP_MAX":87739}},{"type":"Point","coordinates":[3222,5856],"properties":{"NAME":"La Asuncion","POP_MAX":35084}},{"type":"Point","coordinates":[6271,6027],"properties":{"NAME":"Al Bayda","POP_MAX":37821}},{"type":"Point","coordinates":[6305,6060],"properties":{"NAME":"'Ataq","POP_MAX":37315}},{"type":"Point","coordinates":[6265,6111],"properties":{"NAME":"Marib","POP_MAX":16794}},{"type":"Point","coordinates":[2592,6164],"properties":{"NAME":"Roatan","POP_MAX":7514}},{"type":"Point","coordinates":[4393,8960],"properties":{"NAME":"Borgarnes","POP_MAX":1783}},{"type":"Point","coordinates":[2640,5866],"properties":{"NAME":"San Carlos","POP_MAX":13451}},{"type":"Point","coordinates":[3464,5542],"properties":{"NAME":"Onverwacht","POP_MAX":2105}},{"type":"Point","coordinates":[3456,5553],"properties":{"NAME":"Groningen","POP_MAX":3216}},{"type":"Point","coordinates":[6924,7521],"properties":{"NAME":"Leninobod","POP_MAX":11468}},{"type":"Point","coordinates":[3314,3940],"properties":{"NAME":"Mariscal Estigarribia","POP_MAX":2500}},{"type":"Point","coordinates":[3410,3745],"properties":{"NAME":"Caacupe","POP_MAX":21696}},{"type":"Point","coordinates":[2601,5904],"properties":{"NAME":"Jinotepe","POP_MAX":29507}},{"type":"Point","coordinates":[2606,5976],"properties":{"NAME":"Jinotega","POP_MAX":51073}},{"type":"Point","coordinates":[2604,5911],"properties":{"NAME":"Masaya","POP_MAX":130113}},{"type":"Point","coordinates":[6120,6956],"properties":{"NAME":"Sakakah","POP_MAX":128332}},{"type":"Point","coordinates":[5833,5752],"properties":{"NAME":"Bentiu","POP_MAX":7653}},{"type":"Point","coordinates":[2802,5770],"properties":{"NAME":"El Porvenir","POP_MAX":10}},{"type":"Point","coordinates":[6249,7723],"properties":{"NAME":"Nazran","POP_MAX":93357}},{"type":"Point","coordinates":[7918,8280],"properties":{"NAME":"Ust' Ordynskiy","POP_MAX":14538}},{"type":"Point","coordinates":[5262,5901],"properties":{"NAME":"Dutse","POP_MAX":17129}},{"type":"Point","coordinates":[5335,5898],"properties":{"NAME":"Damaturu","POP_MAX":255895}},{"type":"Point","coordinates":[9771,2755],"properties":{"NAME":"Greymouth","POP_MAX":9419}},{"type":"Point","coordinates":[2830,5131],"properties":{"NAME":"Puyo","POP_MAX":24881}},{"type":"Point","coordinates":[2659,5796],"properties":{"NAME":"Heredia","POP_MAX":21947}},{"type":"Point","coordinates":[2837,5265],"properties":{"NAME":"Tulcan","POP_MAX":83000}},{"type":"Point","coordinates":[2985,5527],"properties":{"NAME":"Yopal","POP_MAX":61029}},{"type":"Point","coordinates":[4820,8825],"properties":{"NAME":"Klaksvik","POP_MAX":4664}},{"type":"Point","coordinates":[5456,5762],"properties":{"NAME":"Lai","POP_MAX":19382}},{"type":"Point","coordinates":[5232,8114],"properties":{"NAME":"Mainz","POP_MAX":184997}},{"type":"Point","coordinates":[5394,8154],"properties":{"NAME":"Usti Nad Labem","POP_MAX":94105}},{"type":"Point","coordinates":[5442,8127],"properties":{"NAME":"Hradec Kralove","POP_MAX":95195}},{"type":"Point","coordinates":[4648,6532],"properties":{"NAME":"Fderik","POP_MAX":5760}},{"type":"Point","coordinates":[4614,6206],"properties":{"NAME":"Aleg","POP_MAX":8388}},{"type":"Point","coordinates":[4601,6362],"properties":{"NAME":"Akjoujt","POP_MAX":370}},{"type":"Point","coordinates":[6200,7354],"properties":{"NAME":"Dahuk","POP_MAX":986000}},{"type":"Point","coordinates":[6224,7199],"properties":{"NAME":"Samarra","POP_MAX":158508}},{"type":"Point","coordinates":[6074,5626],"properties":{"NAME":"Awasa","POP_MAX":133097}},{"type":"Point","coordinates":[5992,5689],"properties":{"NAME":"Gore","POP_MAX":9352}},{"type":"Point","coordinates":[5320,8326],"properties":{"NAME":"Schwerin","POP_MAX":96641}},{"type":"Point","coordinates":[6771,8094],"properties":{"NAME":"Turgay","POP_MAX":5277}},{"type":"Point","coordinates":[6439,6994],"properties":{"NAME":"Yasuj","POP_MAX":96786}},{"type":"Point","coordinates":[6418,7091],"properties":{"NAME":"Shar e Kord","POP_MAX":129153}},{"type":"Point","coordinates":[6426,7750],"properties":{"NAME":"Mangyshlak","POP_MAX":147443}},{"type":"Point","coordinates":[7058,6115],"properties":{"NAME":"Panaji","POP_MAX":65586}},{"type":"Point","coordinates":[5592,5467],"properties":{"NAME":"Mobaye","POP_MAX":19431}},{"type":"Point","coordinates":[2521,6211],"properties":{"NAME":"El Cayo","POP_MAX":16977}},{"type":"Point","coordinates":[2540,6283],"properties":{"NAME":"Corozal","POP_MAX":8724}},{"type":"Point","coordinates":[5730,3804],"properties":{"NAME":"Mochudi","POP_MAX":39700}},{"type":"Point","coordinates":[2726,5945],"properties":{"NAME":"San Andres","POP_MAX":58257}},{"type":"Point","coordinates":[8381,6664],"properties":{"NAME":"Bade","POP_MAX":172065}},{"type":"Point","coordinates":[8378,6663],"properties":{"NAME":"Pingzhen","POP_MAX":201632}},{"type":"Point","coordinates":[8354,6576],"properties":{"NAME":"Taibao","POP_MAX":35000}},{"type":"Point","coordinates":[8381,6666],"properties":{"NAME":"Taoyuan","POP_MAX":500000}},{"type":"Point","coordinates":[8376,6661],"properties":{"NAME":"Yangmei","POP_MAX":175000}},{"type":"Point","coordinates":[8393,6652],"properties":{"NAME":"Yilan","POP_MAX":150000}},{"type":"Point","coordinates":[8373,6656],"properties":{"NAME":"Zhubei","POP_MAX":200000}},{"type":"Point","coordinates":[3428,3454],"properties":{"NAME":"Artigas","POP_MAX":41909}},{"type":"Point","coordinates":[3405,3435],"properties":{"NAME":"Baltasar Brum","POP_MAX":2517}},{"type":"Point","coordinates":[3449,3408],"properties":{"NAME":"Tranqueras","POP_MAX":7474}},{"type":"Point","coordinates":[3443,3379],"properties":{"NAME":"Tacuarembo","POP_MAX":54277}},{"type":"Point","coordinates":[3428,3315],"properties":{"NAME":"Paso de los Toros","POP_MAX":13221}},{"type":"Point","coordinates":[3499,3308],"properties":{"NAME":"Vergara","POP_MAX":3998}},{"type":"Point","coordinates":[3487,3291],"properties":{"NAME":"Treinta y Tres","POP_MAX":27684}},{"type":"Point","coordinates":[3431,3219],"properties":{"NAME":"Santa Lucia","POP_MAX":16438}},{"type":"Point","coordinates":[3467,3277],"properties":{"NAME":"Jose Batlle y Ordonez","POP_MAX":2438}},{"type":"Point","coordinates":[3463,3224],"properties":{"NAME":"Minas","POP_MAX":41180}},{"type":"Point","coordinates":[3471,3193],"properties":{"NAME":"Maldonado","POP_MAX":55478}},{"type":"Point","coordinates":[3471,3190],"properties":{"NAME":"Punta del Este","POP_MAX":159000}},{"type":"Point","coordinates":[3477,3234],"properties":{"NAME":"Aigua","POP_MAX":2692}},{"type":"Point","coordinates":[3493,3207],"properties":{"NAME":"La Paloma","POP_MAX":3230}},{"type":"Point","coordinates":[2404,7784],"properties":{"NAME":"Faribault","POP_MAX":25376}},{"type":"Point","coordinates":[2384,7777],"properties":{"NAME":"Mankato","POP_MAX":56325}},{"type":"Point","coordinates":[2401,7747],"properties":{"NAME":"Albert Lea","POP_MAX":20522}},{"type":"Point","coordinates":[2355,7833],"properties":{"NAME":"Willmar","POP_MAX":18473}},{"type":"Point","coordinates":[2378,7904],"properties":{"NAME":"Brainerd","POP_MAX":28187}},{"type":"Point","coordinates":[2311,7986],"properties":{"NAME":"Crookston","POP_MAX":8653}},{"type":"Point","coordinates":[2004,7868],"properties":{"NAME":"Hardin","POP_MAX":4448}},{"type":"Point","coordinates":[2085,7948],"properties":{"NAME":"Glendive","POP_MAX":5856}},{"type":"Point","coordinates":[1863,7838],"properties":{"NAME":"Dillon","POP_MAX":4463}},{"type":"Point","coordinates":[1822,7981],"properties":{"NAME":"Polson","POP_MAX":5326}},{"type":"Point","coordinates":[2248,8006],"properties":{"NAME":"Devils Lake","POP_MAX":7813}},{"type":"Point","coordinates":[1832,7683],"properties":{"NAME":"Burley","POP_MAX":14042}},{"type":"Point","coordinates":[1773,7969],"properties":{"NAME":"Wallace","POP_MAX":1028}},{"type":"Point","coordinates":[1683,7896],"properties":{"NAME":"Kennewick","POP_MAX":102504}},{"type":"Point","coordinates":[1577,7925],"properties":{"NAME":"Centralia","POP_MAX":18880}},{"type":"Point","coordinates":[1877,7164],"properties":{"NAME":"Glendale","POP_MAX":500000}},{"type":"Point","coordinates":[1946,7120],"properties":{"NAME":"Safford","POP_MAX":10668}},{"type":"Point","coordinates":[1889,7123],"properties":{"NAME":"Casa Grande","POP_MAX":44655}},{"type":"Point","coordinates":[1890,7154],"properties":{"NAME":"Mesa","POP_MAX":1085394}},{"type":"Point","coordinates":[1818,7217],"properties":{"NAME":"Lake Havasu City","POP_MAX":56133}},{"type":"Point","coordinates":[1596,7412],"properties":{"NAME":"Berkeley","POP_MAX":496356}},{"type":"Point","coordinates":[1740,7111],"properties":{"NAME":"National City","POP_MAX":150000}},{"type":"Point","coordinates":[1554,7496],"properties":{"NAME":"Mendocino","POP_MAX":548}},{"type":"Point","coordinates":[1640,7282],"properties":{"NAME":"Paso Robles","POP_MAX":27157}},{"type":"Point","coordinates":[1732,7185],"properties":{"NAME":"Riverside","POP_MAX":297554}},{"type":"Point","coordinates":[1680,7290],"properties":{"NAME":"Delano","POP_MAX":44757}},{"type":"Point","coordinates":[1595,7394],"properties":{"NAME":"San Mateo","POP_MAX":626406}},{"type":"Point","coordinates":[1596,7426],"properties":{"NAME":"Vallejo","POP_MAX":146289}},{"type":"Point","coordinates":[2012,7509],"properties":{"NAME":"Glenwood Springs","POP_MAX":14004}},{"type":"Point","coordinates":[2082,7518],"properties":{"NAME":"Aurora","POP_MAX":587540}},{"type":"Point","coordinates":[2084,7560],"properties":{"NAME":"Greeley","POP_MAX":125410}},{"type":"Point","coordinates":[1737,7424],"properties":{"NAME":"Tonopah","POP_MAX":3261}},{"type":"Point","coordinates":[2000,7087],"properties":{"NAME":"Deming","POP_MAX":16298}},{"type":"Point","coordinates":[2014,7138],"properties":{"NAME":"Truth or Consequences","POP_MAX":7121}},{"type":"Point","coordinates":[2071,7280],"properties":{"NAME":"Las Vegas","POP_MAX":16998}},{"type":"Point","coordinates":[1988,7348],"properties":{"NAME":"Farmington","POP_MAX":43278}},{"type":"Point","coordinates":[1576,7771],"properties":{"NAME":"Springfield","POP_MAX":56032}},{"type":"Point","coordinates":[1552,7852],"properties":{"NAME":"Tillamook","POP_MAX":8145}},{"type":"Point","coordinates":[1744,7769],"properties":{"NAME":"Ontario","POP_MAX":12187}},{"type":"Point","coordinates":[1713,7844],"properties":{"NAME":"La Grande","POP_MAX":15004}},{"type":"Point","coordinates":[1880,7465],"properties":{"NAME":"Richfield","POP_MAX":7621}},{"type":"Point","coordinates":[1887,7519],"properties":{"NAME":"Nephi","POP_MAX":5117}},{"type":"Point","coordinates":[1973,7700],"properties":{"NAME":"Lander","POP_MAX":6821}},{"type":"Point","coordinates":[1972,7812],"properties":{"NAME":"Powell","POP_MAX":6895}},{"type":"Point","coordinates":[2481,7307],"properties":{"NAME":"Paragould","POP_MAX":23450}},{"type":"Point","coordinates":[2452,7632],"properties":{"NAME":"Iowa City","POP_MAX":98516}},{"type":"Point","coordinates":[2428,7594],"properties":{"NAME":"Ottumwa","POP_MAX":25982}},{"type":"Point","coordinates":[2352,7718],"properties":{"NAME":"Spencer","POP_MAX":11203}},{"type":"Point","coordinates":[2379,7681],"properties":{"NAME":"Ft. Dodge","POP_MAX":26879}},{"type":"Point","coordinates":[2274,7424],"properties":{"NAME":"Hutchinson","POP_MAX":44477}},{"type":"Point","coordinates":[2366,7484],"properties":{"NAME":"Kansas City","POP_MAX":501577}},{"type":"Point","coordinates":[2349,7475],"properties":{"NAME":"Lawrence","POP_MAX":92726}},{"type":"Point","coordinates":[2192,7418],"properties":{"NAME":"Garden City","POP_MAX":28564}},{"type":"Point","coordinates":[2311,7489],"properties":{"NAME":"Manhattan","POP_MAX":56949}},{"type":"Point","coordinates":[2235,7471],"properties":{"NAME":"Hays","POP_MAX":21394}},{"type":"Point","coordinates":[2169,7498],"properties":{"NAME":"Goodland","POP_MAX":4378}},{"type":"Point","coordinates":[2372,7483],"properties":{"NAME":"Independence","POP_MAX":148102}},{"type":"Point","coordinates":[2423,7547],"properties":{"NAME":"Kirksville","POP_MAX":19193}},{"type":"Point","coordinates":[2242,7576],"properties":{"NAME":"Kearney","POP_MAX":31553}},{"type":"Point","coordinates":[2262,7589],"properties":{"NAME":"Grand Island","POP_MAX":45651}},{"type":"Point","coordinates":[2136,7658],"properties":{"NAME":"Alliance","POP_MAX":8344}},{"type":"Point","coordinates":[2328,7347],"properties":{"NAME":"Bartlesville","POP_MAX":34610}},{"type":"Point","coordinates":[2276,7327],"properties":{"NAME":"Enid","POP_MAX":46138}},{"type":"Point","coordinates":[2296,7198],"properties":{"NAME":"Ardmore","POP_MAX":24960}},{"type":"Point","coordinates":[2334,7242],"properties":{"NAME":"McAlester","POP_MAX":21668}},{"type":"Point","coordinates":[2298,7312],"properties":{"NAME":"Stillwater","POP_MAX":47667}},{"type":"Point","coordinates":[2112,7788],"properties":{"NAME":"Lead","POP_MAX":2874}},{"type":"Point","coordinates":[2501,6972],"properties":{"NAME":"Slidell","POP_MAX":84239}},{"type":"Point","coordinates":[2405,6969],"properties":{"NAME":"Lake Charles","POP_MAX":83821}},{"type":"Point","coordinates":[2491,6955],"properties":{"NAME":"Metairie","POP_MAX":394206}},{"type":"Point","coordinates":[2444,6956],"properties":{"NAME":"New Iberia","POP_MAX":37540}},{"type":"Point","coordinates":[2318,6995],"properties":{"NAME":"Bryan","POP_MAX":146692}},{"type":"Point","coordinates":[2274,6949],"properties":{"NAME":"San Marcos","POP_MAX":70371}},{"type":"Point","coordinates":[2363,7101],"properties":{"NAME":"Longview","POP_MAX":75920}},{"type":"Point","coordinates":[2266,6736],"properties":{"NAME":"McAllen","POP_MAX":364004}},{"type":"Point","coordinates":[2281,6736],"properties":{"NAME":"Harlingen","POP_MAX":110339}},{"type":"Point","coordinates":[2270,6826],"properties":{"NAME":"Alice","POP_MAX":22655}},{"type":"Point","coordinates":[2269,6938],"properties":{"NAME":"New Braunfels","POP_MAX":45840}},{"type":"Point","coordinates":[2289,7092],"properties":{"NAME":"Cleburne","POP_MAX":35545}},{"type":"Point","coordinates":[2245,7055],"properties":{"NAME":"Brownwood","POP_MAX":20988}},{"type":"Point","coordinates":[2114,6977],"properties":{"NAME":"Alpine","POP_MAX":6587}},{"type":"Point","coordinates":[2082,7016],"properties":{"NAME":"Van Horn","POP_MAX":2175}},{"type":"Point","coordinates":[2175,7086],"properties":{"NAME":"Big Spring","POP_MAX":24122}},{"type":"Point","coordinates":[2236,7197],"properties":{"NAME":"Vernon","POP_MAX":11660}},{"type":"Point","coordinates":[2210,7213],"properties":{"NAME":"Childress","POP_MAX":6557}},{"type":"Point","coordinates":[2150,7236],"properties":{"NAME":"Hereford","POP_MAX":15675}},{"type":"Point","coordinates":[2146,7307],"properties":{"NAME":"Dalhart","POP_MAX":7088}},{"type":"Point","coordinates":[2357,6922],"properties":{"NAME":"Texas City","POP_MAX":69914}},{"type":"Point","coordinates":[2352,6936],"properties":{"NAME":"Pasadena","POP_MAX":628492}},{"type":"Point","coordinates":[2357,6942],"properties":{"NAME":"Baytown","POP_MAX":86034}},{"type":"Point","coordinates":[2299,7112],"properties":{"NAME":"Arlington","POP_MAX":724777}},{"type":"Point","coordinates":[3031,5637],"properties":{"NAME":"Guasdualito","POP_MAX":30860}},{"type":"Point","coordinates":[3045,5715],"properties":{"NAME":"Barinas","POP_MAX":284289}},{"type":"Point","coordinates":[3035,5757],"properties":{"NAME":"Valera","POP_MAX":191167}},{"type":"Point","coordinates":[3012,5822],"properties":{"NAME":"Cabimas","POP_MAX":441094}},{"type":"Point","coordinates":[3050,5808],"properties":{"NAME":"Carora","POP_MAX":149711}},{"type":"Point","coordinates":[3059,5742],"properties":{"NAME":"Guanare","POP_MAX":151642}},{"type":"Point","coordinates":[2994,7614],"properties":{"NAME":"New London","POP_MAX":96178}},{"type":"Point","coordinates":[2953,7597],"properties":{"NAME":"Stamford","POP_MAX":746920}},{"type":"Point","coordinates":[2967,7626],"properties":{"NAME":"Waterbury","POP_MAX":174236}},{"type":"Point","coordinates":[3026,7632],"properties":{"NAME":"New Bedford","POP_MAX":136082}},{"type":"Point","coordinates":[2980,7659],"properties":{"NAME":"Springfield","POP_MAX":421780}},{"type":"Point","coordinates":[3027,7682],"properties":{"NAME":"Salem","POP_MAX":335509}},{"type":"Point","coordinates":[2961,7678],"properties":{"NAME":"Pittsfield","POP_MAX":46230}},{"type":"Point","coordinates":[2980,7783],"properties":{"NAME":"Montpelier","POP_MAX":8538}},{"type":"Point","coordinates":[2621,7107],"properties":{"NAME":"Auburn","POP_MAX":73929}},{"type":"Point","coordinates":[2560,7234],"properties":{"NAME":"Florence","POP_MAX":45349}},{"type":"Point","coordinates":[2725,6841],"properties":{"NAME":"Winter Haven","POP_MAX":108932}},{"type":"Point","coordinates":[2757,6845],"properties":{"NAME":"Melbourne","POP_MAX":265414}},{"type":"Point","coordinates":[2760,6693],"properties":{"NAME":"Homestead","POP_MAX":85967}},{"type":"Point","coordinates":[2738,6886],"properties":{"NAME":"Sanford","POP_MAX":333460}},{"type":"Point","coordinates":[2770,6713],"properties":{"NAME":"Miami Beach","POP_MAX":407750}},{"type":"Point","coordinates":[2766,6740],"properties":{"NAME":"Coral Springs","POP_MAX":250000}},{"type":"Point","coordinates":[2715,6782],"properties":{"NAME":"Port Charlotte","POP_MAX":64279}},{"type":"Point","coordinates":[2703,6868],"properties":{"NAME":"Spring Hill","POP_MAX":114697}},{"type":"Point","coordinates":[2739,6929],"properties":{"NAME":"Palm Coast","POP_MAX":48577}},{"type":"Point","coordinates":[2728,6936],"properties":{"NAME":"Palatka","POP_MAX":21452}},{"type":"Point","coordinates":[2721,6887],"properties":{"NAME":"Leesburg","POP_MAX":49574}},{"type":"Point","coordinates":[2700,6967],"properties":{"NAME":"Lake City","POP_MAX":29395}},{"type":"Point","coordinates":[2590,7000],"properties":{"NAME":"Crestview","POP_MAX":22403}},{"type":"Point","coordinates":[2616,6965],"properties":{"NAME":"Panama City","POP_MAX":100072}},{"type":"Point","coordinates":[2635,7233],"properties":{"NAME":"Dalton","POP_MAX":58557}},{"type":"Point","coordinates":[2647,7185],"properties":{"NAME":"Marietta","POP_MAX":61360}},{"type":"Point","coordinates":[2708,7026],"properties":{"NAME":"Waycross","POP_MAX":19824}},{"type":"Point","coordinates":[2633,7132],"properties":{"NAME":"La Grange","POP_MAX":31776}},{"type":"Point","coordinates":[2495,7244],"properties":{"NAME":"Southaven","POP_MAX":121268}},{"type":"Point","coordinates":[2531,7093],"properties":{"NAME":"Meridian","POP_MAX":42290}},{"type":"Point","coordinates":[2519,7054],"properties":{"NAME":"Laurel","POP_MAX":28841}},{"type":"Point","coordinates":[2720,7243],"properties":{"NAME":"Spartanburg","POP_MAX":124126}},{"type":"Point","coordinates":[2750,7159],"properties":{"NAME":"Orangeburg","POP_MAX":35472}},{"type":"Point","coordinates":[2485,7591],"properties":{"NAME":"Galesburg","POP_MAX":32094}},{"type":"Point","coordinates":[2548,7624],"properties":{"NAME":"Joliet","POP_MAX":578460}},{"type":"Point","coordinates":[2508,7380],"properties":{"NAME":"Cape Girardeau","POP_MAX":40427}},{"type":"Point","coordinates":[2521,7667],"properties":{"NAME":"Rockford","POP_MAX":255978}},{"type":"Point","coordinates":[2559,7654],"properties":{"NAME":"Evanston","POP_MAX":350000}},{"type":"Point","coordinates":[2480,7622],"properties":{"NAME":"Rock Island","POP_MAX":165728}},{"type":"Point","coordinates":[2543,7654],"properties":{"NAME":"Elgin","POP_MAX":389514}},{"type":"Point","coordinates":[2637,7526],"properties":{"NAME":"Richmond","POP_MAX":44400}},{"type":"Point","coordinates":[2567,7505],"properties":{"NAME":"Terre Haute","POP_MAX":73236}},{"type":"Point","coordinates":[2582,7560],"properties":{"NAME":"Lafayette","POP_MAX":133977}},{"type":"Point","coordinates":[2616,7568],"properties":{"NAME":"Marion","POP_MAX":38297}},{"type":"Point","coordinates":[2599,7633],"properties":{"NAME":"South Bend","POP_MAX":239822}},{"type":"Point","coordinates":[2611,7438],"properties":{"NAME":"New Albany","POP_MAX":120625}},{"type":"Point","coordinates":[2607,7633],"properties":{"NAME":"Elkhart","POP_MAX":149190}},{"type":"Point","coordinates":[2565,7354],"properties":{"NAME":"Hopkinsville","POP_MAX":35604}},{"type":"Point","coordinates":[2660,7369],"properties":{"NAME":"London","POP_MAX":7844}},{"type":"Point","coordinates":[2565,7381],"properties":{"NAME":"Madisonville","POP_MAX":22294}},{"type":"Point","coordinates":[2835,7300],"properties":{"NAME":"Rocky Mount","POP_MAX":58361}},{"type":"Point","coordinates":[2760,7285],"properties":{"NAME":"Salisbury","POP_MAX":41352}},{"type":"Point","coordinates":[2804,7304],"properties":{"NAME":"Durham","POP_MAX":309495}},{"type":"Point","coordinates":[2801,7224],"properties":{"NAME":"Lumberton","POP_MAX":32785}},{"type":"Point","coordinates":[2717,7532],"properties":{"NAME":"Zanesville","POP_MAX":40052}},{"type":"Point","coordinates":[2703,7580],"properties":{"NAME":"Mansfield","POP_MAX":77768}},{"type":"Point","coordinates":[2672,7615],"properties":{"NAME":"Bowling Green","POP_MAX":37080}},{"type":"Point","coordinates":[2668,7531],"properties":{"NAME":"Springfield","POP_MAX":84576}},{"type":"Point","coordinates":[2701,7519],"properties":{"NAME":"Lancaster","POP_MAX":48829}},{"type":"Point","coordinates":[2708,7322],"properties":{"NAME":"Johnson City","POP_MAX":77538}},{"type":"Point","coordinates":[2702,7336],"properties":{"NAME":"Kingsport","POP_MAX":57467}},{"type":"Point","coordinates":[2578,7282],"properties":{"NAME":"Columbia","POP_MAX":116091}},{"type":"Point","coordinates":[2499,7259],"properties":{"NAME":"Barlett","POP_MAX":286423}},{"type":"Point","coordinates":[2762,7375],"properties":{"NAME":"Blacksburg","POP_MAX":67508}},{"type":"Point","coordinates":[2805,7446],"properties":{"NAME":"Harrisonburg","POP_MAX":42538}},{"type":"Point","coordinates":[2846,7375],"properties":{"NAME":"Petersburg","POP_MAX":118577}},{"type":"Point","coordinates":[2875,7364],"properties":{"NAME":"Hampton","POP_MAX":366766}},{"type":"Point","coordinates":[2559,7753],"properties":{"NAME":"Sheboygan","POP_MAX":53705}},{"type":"Point","coordinates":[2544,7710],"properties":{"NAME":"Waukesha","POP_MAX":249912}},{"type":"Point","coordinates":[2460,7756],"properties":{"NAME":"La Crosse","POP_MAX":87381}},{"type":"Point","coordinates":[2453,7815],"properties":{"NAME":"Eau Claire","POP_MAX":79740}},{"type":"Point","coordinates":[2481,7767],"properties":{"NAME":"Tomah","POP_MAX":12997}},{"type":"Point","coordinates":[2522,7691],"properties":{"NAME":"Janesville","POP_MAX":69278}},{"type":"Point","coordinates":[2540,7783],"properties":{"NAME":"Appleton","POP_MAX":203665}},{"type":"Point","coordinates":[2730,7493],"properties":{"NAME":"Parkersburg","POP_MAX":61935}},{"type":"Point","coordinates":[2765,7408],"properties":{"NAME":"White Sulphur Springs","POP_MAX":2407}},{"type":"Point","coordinates":[2764,7494],"properties":{"NAME":"Clarksburg","POP_MAX":28773}},{"type":"Point","coordinates":[2898,7487],"properties":{"NAME":"Dover","POP_MAX":76039}},{"type":"Point","coordinates":[2859,7455],"properties":{"NAME":"St. Charles","POP_MAX":69208}},{"type":"Point","coordinates":[2871,7476],"properties":{"NAME":"Annapolis","POP_MAX":81300}},{"type":"Point","coordinates":[2837,7515],"properties":{"NAME":"Hagerstown","POP_MAX":79662}},{"type":"Point","coordinates":[2936,7589],"properties":{"NAME":"Paterson","POP_MAX":151205}},{"type":"Point","coordinates":[2947,7714],"properties":{"NAME":"Saratoga Springs","POP_MAX":55793}},{"type":"Point","coordinates":[2943,7634],"properties":{"NAME":"Poughkeepsie","POP_MAX":170996}},{"type":"Point","coordinates":[2956,7808],"properties":{"NAME":"Plattsburg","POP_MAX":29238}},{"type":"Point","coordinates":[2765,7579],"properties":{"NAME":"Beaver Falls","POP_MAX":120125}},{"type":"Point","coordinates":[2818,7566],"properties":{"NAME":"Altoona","POP_MAX":78607}},{"type":"Point","coordinates":[2857,7608],"properties":{"NAME":"Williamsport","POP_MAX":56877}},{"type":"Point","coordinates":[2876,7538],"properties":{"NAME":"Lancaster","POP_MAX":209489}},{"type":"Point","coordinates":[2899,7570],"properties":{"NAME":"Allentown","POP_MAX":496442}},{"type":"Point","coordinates":[3200,5806],"properties":{"NAME":"Puerto la Cruz","POP_MAX":546616}},{"type":"Point","coordinates":[3206,5764],"properties":{"NAME":"Anaco","POP_MAX":117596}},{"type":"Point","coordinates":[3135,5821],"properties":{"NAME":"Los Teques","POP_MAX":303470}},{"type":"Point","coordinates":[3163,5751],"properties":{"NAME":"Valle de la Pascua","POP_MAX":89080}},{"type":"Point","coordinates":[3142,5804],"properties":{"NAME":"Ocumare del Tuy","POP_MAX":166072}},{"type":"Point","coordinates":[3241,5835],"properties":{"NAME":"Carupano","POP_MAX":126293}},{"type":"Point","coordinates":[3290,5813],"properties":{"NAME":"San Fernando","POP_MAX":166039}},{"type":"Point","coordinates":[3465,5508],"properties":{"NAME":"Brownsweg","POP_MAX":4582}},{"type":"Point","coordinates":[3486,5543],"properties":{"NAME":"Moengo","POP_MAX":7766}},{"type":"Point","coordinates":[3468,5559],"properties":{"NAME":"Nieuw Amsterdam","POP_MAX":4935}},{"type":"Point","coordinates":[3062,7800],"properties":{"NAME":"Waterville","POP_MAX":25152}},{"type":"Point","coordinates":[3129,7835],"properties":{"NAME":"Calais","POP_MAX":3306}},{"type":"Point","coordinates":[3112,7891],"properties":{"NAME":"Houlton","POP_MAX":6703}},{"type":"Point","coordinates":[2594,7658],"properties":{"NAME":"Benton Harbor","POP_MAX":58382}},{"type":"Point","coordinates":[2629,7670],"properties":{"NAME":"Battle Creek","POP_MAX":70820}},{"type":"Point","coordinates":[2665,7744],"properties":{"NAME":"Bay City","POP_MAX":68549}},{"type":"Point","coordinates":[2678,7829],"properties":{"NAME":"Alpena","POP_MAX":18330}},{"type":"Point","coordinates":[2549,7873],"properties":{"NAME":"Iron Mountain","POP_MAX":16183}},{"type":"Point","coordinates":[2491,7910],"properties":{"NAME":"Ironwood","POP_MAX":7064}},{"type":"Point","coordinates":[4866,7334],"properties":{"NAME":"Marbella","POP_MAX":186131}},{"type":"Point","coordinates":[4901,7425],"properties":{"NAME":"Linares","POP_MAX":59761}},{"type":"Point","coordinates":[4850,7311],"properties":{"NAME":"Algeciras","POP_MAX":111027}},{"type":"Point","coordinates":[4847,7685],"properties":{"NAME":"Leon","POP_MAX":136227}},{"type":"Point","coordinates":[5070,7625],"properties":{"NAME":"Mataro","POP_MAX":183293}},{"type":"Point","coordinates":[5999,7277],"properties":{"NAME":"Al Ladhiqiyah","POP_MAX":539147}},{"type":"Point","coordinates":[6076,7294],"properties":{"NAME":"Madinat ath Thawrah","POP_MAX":87880}},{"type":"Point","coordinates":[6034,7338],"properties":{"NAME":"Izaz","POP_MAX":31534}},{"type":"Point","coordinates":[6059,7334],"properties":{"NAME":"Manbij","POP_MAX":120169}},{"type":"Point","coordinates":[6022,7300],"properties":{"NAME":"Idlib","POP_MAX":128840}},{"type":"Point","coordinates":[6150,7364],"properties":{"NAME":"Al Qamishli","POP_MAX":104107}},{"type":"Point","coordinates":[6137,7332],"properties":{"NAME":"Al Hasakah","POP_MAX":128100}},{"type":"Point","coordinates":[6016,7164],"properties":{"NAME":"Douma","POP_MAX":496145}},{"type":"Point","coordinates":[6238,6061],"properties":{"NAME":"Dhamar","POP_MAX":191259}},{"type":"Point","coordinates":[6232,6027],"properties":{"NAME":"Ibb","POP_MAX":234837}},{"type":"Point","coordinates":[5266,7933],"properties":{"NAME":"Chur","POP_MAX":38293}},{"type":"Point","coordinates":[531,8425],"properties":{"NAME":"Sand Point","POP_MAX":667}},{"type":"Point","coordinates":[1303,8418],"properties":{"NAME":"Hydaburg","POP_MAX":382}},{"type":"Point","coordinates":[373,8718],"properties":{"NAME":"Mekoryuk","POP_MAX":99}},{"type":"Point","coordinates":[618,9302],"properties":{"NAME":"Atqasuk","POP_MAX":201}},{"type":"Point","coordinates":[583,8518],"properties":{"NAME":"Port Heiden","POP_MAX":102}},{"type":"Point","coordinates":[569,8459],"properties":{"NAME":"Perryville","POP_MAX":113}},{"type":"Point","coordinates":[587,8640],"properties":{"NAME":"Dillingham","POP_MAX":2488}},{"type":"Point","coordinates":[501,8644],"properties":{"NAME":"Goodnews Bay","POP_MAX":230}},{"type":"Point","coordinates":[547,8753],"properties":{"NAME":"Nyac","POP_MAX":100}},{"type":"Point","coordinates":[399,8729],"properties":{"NAME":"Tununak","POP_MAX":352}},{"type":"Point","coordinates":[441,8816],"properties":{"NAME":"Mountain Village","POP_MAX":755}},{"type":"Point","coordinates":[419,8856],"properties":{"NAME":"Emmonak","POP_MAX":100}},{"type":"Point","coordinates":[581,8946],"properties":{"NAME":"Kaltag","POP_MAX":190}},{"type":"Point","coordinates":[368,9000],"properties":{"NAME":"Teller","POP_MAX":83}},{"type":"Point","coordinates":[609,8978],"properties":{"NAME":"Koyukuk","POP_MAX":101}},{"type":"Point","coordinates":[632,9096],"properties":{"NAME":"Kobuk","POP_MAX":151}},{"type":"Point","coordinates":[545,9078],"properties":{"NAME":"Selawik","POP_MAX":832}},{"type":"Point","coordinates":[821,8830],"properties":{"NAME":"Talkeetna","POP_MAX":1078}},{"type":"Point","coordinates":[861,8741],"properties":{"NAME":"Whittier","POP_MAX":177}},{"type":"Point","coordinates":[822,8816],"properties":{"NAME":"Montana","POP_MAX":10}},{"type":"Point","coordinates":[759,8920],"properties":{"NAME":"Lake Minchumina","POP_MAX":32}},{"type":"Point","coordinates":[853,8892],"properties":{"NAME":"Cantwell","POP_MAX":222}},{"type":"Point","coordinates":[952,8827],"properties":{"NAME":"Gulkana","POP_MAX":119}},{"type":"Point","coordinates":[1069,8973],"properties":{"NAME":"Eagle","POP_MAX":104}},{"type":"Point","coordinates":[849,8960],"properties":{"NAME":"Nenana","POP_MAX":75}},{"type":"Point","coordinates":[940,8936],"properties":{"NAME":"Big Delta","POP_MAX":591}},{"type":"Point","coordinates":[750,9076],"properties":{"NAME":"Allakaket","POP_MAX":97}},{"type":"Point","coordinates":[766,8995],"properties":{"NAME":"Tanana","POP_MAX":308}},{"type":"Point","coordinates":[5431,8723],"properties":{"NAME":"Borl�nge","POP_MAX":39422}},{"type":"Point","coordinates":[5463,8674],"properties":{"NAME":"V�ster�s","POP_MAX":107194}},{"type":"Point","coordinates":[5893,7940],"properties":{"NAME":"Mykolayiv","POP_MAX":510840}},{"type":"Point","coordinates":[5874,8203],"properties":{"NAME":"Chernihiv","POP_MAX":307684}},{"type":"Point","coordinates":[5754,8082],"properties":{"NAME":"Khmelnytskyy","POP_MAX":398346}},{"type":"Point","coordinates":[5742,8039],"properties":{"NAME":"Kamyanets-Podilskyy","POP_MAX":114658}},{"type":"Point","coordinates":[5656,8077],"properties":{"NAME":"Drohobych","POP_MAX":124269}},{"type":"Point","coordinates":[5622,8036],"properties":{"NAME":"Uzhgorod","POP_MAX":150832}},{"type":"Point","coordinates":[5843,8043],"properties":{"NAME":"Uman","POP_MAX":87658}},{"type":"Point","coordinates":[5859,8144],"properties":{"NAME":"Brovary","POP_MAX":88506}},{"type":"Point","coordinates":[5841,8102],"properties":{"NAME":"Bila Tserkva","POP_MAX":199163}},{"type":"Point","coordinates":[5856,7901],"properties":{"NAME":"Illichivsk","POP_MAX":54102}},{"type":"Point","coordinates":[5927,8187],"properties":{"NAME":"Konotop","POP_MAX":103547}},{"type":"Point","coordinates":[5931,7995],"properties":{"NAME":"Kryvyy Rih","POP_MAX":652380}},{"type":"Point","coordinates":[6060,8001],"properties":{"NAME":"Makiyivka","POP_MAX":376610}},{"type":"Point","coordinates":[6062,8017],"properties":{"NAME":"Horlivka","POP_MAX":396885}},{"type":"Point","coordinates":[6047,8041],"properties":{"NAME":"Kramatorsk","POP_MAX":184105}},{"type":"Point","coordinates":[6027,7927],"properties":{"NAME":"Berdyansk","POP_MAX":118284}},{"type":"Point","coordinates":[6384,6072],"properties":{"NAME":"Ash Shihr","POP_MAX":54274}},{"type":"Point","coordinates":[6549,6699],"properties":{"NAME":"Umm al Qaywayn","POP_MAX":44411}},{"type":"Point","coordinates":[6545,6688],"properties":{"NAME":"Sharjah","POP_MAX":1103027}},{"type":"Point","coordinates":[6569,7476],"properties":{"NAME":"Gyzlarbat","POP_MAX":48458}},{"type":"Point","coordinates":[6482,7503],"properties":{"NAME":"Celeken","POP_MAX":1206}},{"type":"Point","coordinates":[6687,7384],"properties":{"NAME":"Tejen","POP_MAX":67294}},{"type":"Point","coordinates":[6623,7423],"properties":{"NAME":"Buzmeyin","POP_MAX":40813}},{"type":"Point","coordinates":[6650,7670],"properties":{"NAME":"Koneurgench","POP_MAX":31400}},{"type":"Point","coordinates":[6658,7675],"properties":{"NAME":"Khujayli","POP_MAX":60401}},{"type":"Point","coordinates":[6875,7501],"properties":{"NAME":"Urgut","POP_MAX":99675}},{"type":"Point","coordinates":[6848,7530],"properties":{"NAME":"Kattaqorgon","POP_MAX":247113}},{"type":"Point","coordinates":[6893,7436],"properties":{"NAME":"Denow","POP_MAX":217274}},{"type":"Point","coordinates":[6917,7410],"properties":{"NAME":"Qurghonteppa","POP_MAX":311574}},{"type":"Point","coordinates":[6964,7553],"properties":{"NAME":"Konibodom","POP_MAX":259876}},{"type":"Point","coordinates":[6918,7564],"properties":{"NAME":"Guliston","POP_MAX":95520}},{"type":"Point","coordinates":[6943,7626],"properties":{"NAME":"Iskandar","POP_MAX":195633}},{"type":"Point","coordinates":[6939,7620],"properties":{"NAME":"Chirchiq","POP_MAX":167842}},{"type":"Point","coordinates":[2565,6001],"properties":{"NAME":"Nacaome","POP_MAX":47000}},{"type":"Point","coordinates":[2529,6073],"properties":{"NAME":"Santa Rosa de Copan","POP_MAX":35529}},{"type":"Point","coordinates":[3409,5559],"properties":{"NAME":"Corriverton","POP_MAX":12000}},{"type":"Point","coordinates":[3379,5532],"properties":{"NAME":"Ituni","POP_MAX":100}},{"type":"Point","coordinates":[3336,5413],"properties":{"NAME":"Lethem","POP_MAX":352}},{"type":"Point","coordinates":[4844,7740],"properties":{"NAME":"Gijon","POP_MAX":335972}},{"type":"Point","coordinates":[4928,7701],"properties":{"NAME":"Vitoria","POP_MAX":224578}},{"type":"Point","coordinates":[5349,7646],"properties":{"NAME":"Vatican City","POP_MAX":832}},{"type":"Point","coordinates":[4870,8459],"properties":{"NAME":"Greenock","POP_MAX":74635}},{"type":"Point","coordinates":[4963,8401],"properties":{"NAME":"Sunderland","POP_MAX":452934}},{"type":"Point","coordinates":[4963,8168],"properties":{"NAME":"Southampton","POP_MAX":384417}},{"type":"Point","coordinates":[4930,8199],"properties":{"NAME":"Bristol","POP_MAX":553528}},{"type":"Point","coordinates":[4949,8158],"properties":{"NAME":"Bournemouth","POP_MAX":426945}},{"type":"Point","coordinates":[4799,8382],"properties":{"NAME":"Omagh","POP_MAX":21056}},{"type":"Point","coordinates":[4921,8301],"properties":{"NAME":"Chester","POP_MAX":89531}},{"type":"Point","coordinates":[4892,8210],"properties":{"NAME":"Swansea","POP_MAX":294339}},{"type":"Point","coordinates":[4920,8398],"properties":{"NAME":"Carlisle","POP_MAX":72633}},{"type":"Point","coordinates":[5778,7411],"properties":{"NAME":"Aydin","POP_MAX":198857}},{"type":"Point","coordinates":[5764,7617],"properties":{"NAME":"Luleburgaz","POP_MAX":90899}},{"type":"Point","coordinates":[5852,7406],"properties":{"NAME":"Isparta","POP_MAX":172334}},{"type":"Point","coordinates":[5836,7502],"properties":{"NAME":"Kutahya","POP_MAX":185008}},{"type":"Point","coordinates":[5792,7374],"properties":{"NAME":"Mugla","POP_MAX":48183}},{"type":"Point","coordinates":[6095,7459],"properties":{"NAME":"Elazig","POP_MAX":271492}},{"type":"Point","coordinates":[6031,7397],"properties":{"NAME":"Kahramanmaras","POP_MAX":376045}},{"type":"Point","coordinates":[5966,7350],"properties":{"NAME":"Icel","POP_MAX":616990}},{"type":"Point","coordinates":[5975,7566],"properties":{"NAME":"Corum","POP_MAX":183418}},{"type":"Point","coordinates":[6131,7595],"properties":{"NAME":"Rize","POP_MAX":279450}},{"type":"Point","coordinates":[6180,7449],"properties":{"NAME":"Tatvan","POP_MAX":73222}},{"type":"Point","coordinates":[8559,7358],"properties":{"NAME":"Eumseong","POP_MAX":10077}},{"type":"Point","coordinates":[8553,7341],"properties":{"NAME":"Cheongju","POP_MAX":775096}},{"type":"Point","coordinates":[8566,7382],"properties":{"NAME":"Wonju","POP_MAX":243387}},{"type":"Point","coordinates":[8560,7413],"properties":{"NAME":"Chuncheon","POP_MAX":226509}},{"type":"Point","coordinates":[8535,7382],"properties":{"NAME":"Ansan","POP_MAX":739493}},{"type":"Point","coordinates":[8538,7300],"properties":{"NAME":"Iksan","POP_MAX":283501}},{"type":"Point","coordinates":[8601,7295],"properties":{"NAME":"Gyeongju","POP_MAX":155237}},{"type":"Point","coordinates":[8584,7259],"properties":{"NAME":"Changwon","POP_MAX":1081499}},{"type":"Point","coordinates":[5022,8205],"properties":{"NAME":"Southend-on-Sea","POP_MAX":618386}},{"type":"Point","coordinates":[4975,8201],"properties":{"NAME":"Reading","POP_MAX":369804}},{"type":"Point","coordinates":[4970,8268],"properties":{"NAME":"Leicester","POP_MAX":457983}},{"type":"Point","coordinates":[4953,8336],"properties":{"NAME":"Bradford","POP_MAX":501700}},{"type":"Point","coordinates":[4960,8311],"properties":{"NAME":"Sheffield","POP_MAX":1292900}},{"type":"Point","coordinates":[5897,7512],"properties":{"NAME":"Polatli","POP_MAX":93262}},{"type":"Point","coordinates":[5910,7605],"properties":{"NAME":"Karabuk","POP_MAX":128564}},{"type":"Point","coordinates":[6150,7366],"properties":{"NAME":"Nusaybin","POP_MAX":152668}},{"type":"Point","coordinates":[6220,7395],"properties":{"NAME":"Hakkari","POP_MAX":77699}},{"type":"Point","coordinates":[5465,7955],"properties":{"NAME":"Szombathely","POP_MAX":109518}},{"type":"Point","coordinates":[5551,7936],"properties":{"NAME":"Kecskemet","POP_MAX":113895}},{"type":"Point","coordinates":[5515,7953],"properties":{"NAME":"Szekesfehervar","POP_MAX":144319}},{"type":"Point","coordinates":[5607,7997],"properties":{"NAME":"Nyiregyhaza","POP_MAX":176880}},{"type":"Point","coordinates":[5204,7951],"properties":{"NAME":"Biel","POP_MAX":78708}},{"type":"Point","coordinates":[2610,5869],"properties":{"NAME":"San Juan del Sur","POP_MAX":7790}},{"type":"Point","coordinates":[5633,7805],"properties":{"NAME":"Drobeta-Turnu Severin","POP_MAX":106578}},{"type":"Point","coordinates":[5804,7837],"properties":{"NAME":"Tulcea","POP_MAX":92475}},{"type":"Point","coordinates":[5596,7893],"properties":{"NAME":"Arad","POP_MAX":169065}},{"type":"Point","coordinates":[5612,7944],"properties":{"NAME":"Oradea","POP_MAX":213830}},{"type":"Point","coordinates":[5674,7872],"properties":{"NAME":"Sibiu","POP_MAX":155565}},{"type":"Point","coordinates":[5733,7978],"properties":{"NAME":"Suceava","POP_MAX":105796}},{"type":"Point","coordinates":[5749,7835],"properties":{"NAME":"Buzau","POP_MAX":130954}},{"type":"Point","coordinates":[5783,7852],"properties":{"NAME":"Galati","POP_MAX":311156}},{"type":"Point","coordinates":[5759,7866],"properties":{"NAME":"Focsani","POP_MAX":105112}},{"type":"Point","coordinates":[2779,4833],"properties":{"NAME":"Ferrenafe","POP_MAX":50184}},{"type":"Point","coordinates":[2782,4860],"properties":{"NAME":"Motupe","POP_MAX":13681}},{"type":"Point","coordinates":[2996,4230],"properties":{"NAME":"Mollendo","POP_MAX":49033}},{"type":"Point","coordinates":[2993,4446],"properties":{"NAME":"Urubamba","POP_MAX":7540}},{"type":"Point","coordinates":[2994,4379],"properties":{"NAME":"Santo Tomas","POP_MAX":4134}},{"type":"Point","coordinates":[3068,4320],"properties":{"NAME":"Putina","POP_MAX":8118}},{"type":"Point","coordinates":[2823,4670],"properties":{"NAME":"Casma","POP_MAX":30000}},{"type":"Point","coordinates":[2921,4699],"properties":{"NAME":"Tournavista","POP_MAX":511}},{"type":"Point","coordinates":[2828,4764],"properties":{"NAME":"Huamachuco","POP_MAX":30835}},{"type":"Point","coordinates":[2813,4759],"properties":{"NAME":"Otuzco","POP_MAX":10134}},{"type":"Point","coordinates":[2870,4844],"properties":{"NAME":"Lamas","POP_MAX":13693}},{"type":"Point","coordinates":[2947,4952],"properties":{"NAME":"Nauta","POP_MAX":2500}},{"type":"Point","coordinates":[2937,4365],"properties":{"NAME":"Puquio","POP_MAX":10491}},{"type":"Point","coordinates":[2865,4525],"properties":{"NAME":"Chosica","POP_MAX":88606}},{"type":"Point","coordinates":[2921,4564],"properties":{"NAME":"Satipo","POP_MAX":15532}},{"type":"Point","coordinates":[2892,4555],"properties":{"NAME":"Tarma","POP_MAX":51350}},{"type":"Point","coordinates":[2887,4549],"properties":{"NAME":"La Oroya","POP_MAX":33345}},{"type":"Point","coordinates":[2840,4576],"properties":{"NAME":"Huaura","POP_MAX":40400}},{"type":"Point","coordinates":[2840,4573],"properties":{"NAME":"Huacho","POP_MAX":80474}},{"type":"Point","coordinates":[3269,4027],"properties":{"NAME":"General Eugenio Alejandrino Garay","POP_MAX":972}},{"type":"Point","coordinates":[3412,3765],"properties":{"NAME":"Arroyos y Esteros","POP_MAX":3055}},{"type":"Point","coordinates":[3399,3762],"properties":{"NAME":"Villa Hayes","POP_MAX":15643}},{"type":"Point","coordinates":[3335,3881],"properties":{"NAME":"Fortin Falcon","POP_MAX":-99}},{"type":"Point","coordinates":[3392,3904],"properties":{"NAME":"Puerto Pinasco","POP_MAX":500}},{"type":"Point","coordinates":[3362,3859],"properties":{"NAME":"Pozo Colorado","POP_MAX":2135}},{"type":"Point","coordinates":[3412,3820],"properties":{"NAME":"San Pedro","POP_MAX":9360}},{"type":"Point","coordinates":[3400,3748],"properties":{"NAME":"San Lorenzo","POP_MAX":500000}},{"type":"Point","coordinates":[3406,3744],"properties":{"NAME":"Ypacarai","POP_MAX":30150}},{"type":"Point","coordinates":[3410,3670],"properties":{"NAME":"San Juan Bautista","POP_MAX":7882}},{"type":"Point","coordinates":[3410,3732],"properties":{"NAME":"Paraguari","POP_MAX":18881}},{"type":"Point","coordinates":[3476,3708],"properties":{"NAME":"Nacunday","POP_MAX":1250}},{"type":"Point","coordinates":[3430,3742],"properties":{"NAME":"Coronel Oviedo","POP_MAX":88101}},{"type":"Point","coordinates":[3431,3698],"properties":{"NAME":"Caazapa","POP_MAX":5504}},{"type":"Point","coordinates":[3457,3831],"properties":{"NAME":"Ype Jhu","POP_MAX":600}},{"type":"Point","coordinates":[3446,3632],"properties":{"NAME":"Encarnacion","POP_MAX":357119}},{"type":"Point","coordinates":[3435,3642],"properties":{"NAME":"Coronel Bogado","POP_MAX":14297}},{"type":"Point","coordinates":[2596,5976],"properties":{"NAME":"Esteli","POP_MAX":107839}},{"type":"Point","coordinates":[2616,5940],"properties":{"NAME":"Boaco","POP_MAX":29046}},{"type":"Point","coordinates":[2624,5919],"properties":{"NAME":"Juigalpa","POP_MAX":54731}},{"type":"Point","coordinates":[4767,7626],"properties":{"NAME":"Braga","POP_MAX":826833}},{"type":"Point","coordinates":[4793,7552],"properties":{"NAME":"Covilha","POP_MAX":24828}},{"type":"Point","coordinates":[6062,6614],"properties":{"NAME":"Yanbu al Bahr","POP_MAX":267590}},{"type":"Point","coordinates":[6112,6945],"properties":{"NAME":"Dawmat al Jandal","POP_MAX":22583}},{"type":"Point","coordinates":[6188,6377],"properties":{"NAME":"Qal at Bishah","POP_MAX":88291}},{"type":"Point","coordinates":[6127,6449],"properties":{"NAME":"At Taif","POP_MAX":657282}},{"type":"Point","coordinates":[5503,9231],"properties":{"NAME":"Finnsnes","POP_MAX":3907}},{"type":"Point","coordinates":[5155,8198],"properties":{"NAME":"Eindhoven","POP_MAX":398053}},{"type":"Point","coordinates":[5300,8742],"properties":{"NAME":"Gj�vik","POP_MAX":22719}},{"type":"Point","coordinates":[5314,8977],"properties":{"NAME":"R�rvik","POP_MAX":2615}},{"type":"Point","coordinates":[5535,8042],"properties":{"NAME":"Banska Bystrica","POP_MAX":82336}},{"type":"Point","coordinates":[5492,8021],"properties":{"NAME":"Trnava","POP_MAX":69785}},{"type":"Point","coordinates":[5763,8492],"properties":{"NAME":"Rezekne","POP_MAX":38340}},{"type":"Point","coordinates":[5681,8448],"properties":{"NAME":"Paneve�ys","POP_MAX":127405}},{"type":"Point","coordinates":[5652,8460],"properties":{"NAME":"Siauliai","POP_MAX":133528}},{"type":"Point","coordinates":[6231,6232],"properties":{"NAME":"Najran","POP_MAX":369609}},{"type":"Point","coordinates":[6263,6612],"properties":{"NAME":"Al Quwayiyah","POP_MAX":8712}},{"type":"Point","coordinates":[6304,6579],"properties":{"NAME":"Al Hillah","POP_MAX":594605}},{"type":"Point","coordinates":[6383,6691],"properties":{"NAME":"Al Mubarraz","POP_MAX":298562}},{"type":"Point","coordinates":[6395,6754],"properties":{"NAME":"Al-Qatif","POP_MAX":368892}},{"type":"Point","coordinates":[6399,6741],"properties":{"NAME":"Az Zahran","POP_MAX":97446}},{"type":"Point","coordinates":[6954,7182],"properties":{"NAME":"Parachinar","POP_MAX":55685}},{"type":"Point","coordinates":[7079,7102],"properties":{"NAME":"Sialkote","POP_MAX":477396}},{"type":"Point","coordinates":[7063,7056],"properties":{"NAME":"Sheikhu Pura","POP_MAX":361303}},{"type":"Point","coordinates":[7065,7106],"properties":{"NAME":"Gujrat","POP_MAX":301506}},{"type":"Point","coordinates":[7038,6995],"properties":{"NAME":"Sahiwal","POP_MAX":235695}},{"type":"Point","coordinates":[7035,7056],"properties":{"NAME":"Chiniot","POP_MAX":201781}},{"type":"Point","coordinates":[6960,6864],"properties":{"NAME":"Rahim Yar Khan","POP_MAX":353203}},{"type":"Point","coordinates":[7099,7700],"properties":{"NAME":"Tokmak","POP_MAX":112860}},{"type":"Point","coordinates":[7060,7700],"properties":{"NAME":"Kara Balta","POP_MAX":74133}},{"type":"Point","coordinates":[7149,7689],"properties":{"NAME":"Cholpon Ata","POP_MAX":18595}},{"type":"Point","coordinates":[7119,7618],"properties":{"NAME":"Naryn","POP_MAX":52300}},{"type":"Point","coordinates":[7041,7595],"properties":{"NAME":"Kok Yangak","POP_MAX":15000}},{"type":"Point","coordinates":[7041,7208],"properties":{"NAME":"Mansehra","POP_MAX":66486}},{"type":"Point","coordinates":[6992,7165],"properties":{"NAME":"Kohat","POP_MAX":343027}},{"type":"Point","coordinates":[7041,7197],"properties":{"NAME":"Abbottabad","POP_MAX":1183647}},{"type":"Point","coordinates":[7009,7199],"properties":{"NAME":"Mardan","POP_MAX":300424}},{"type":"Point","coordinates":[7379,6821],"properties":{"NAME":"Lalitpur","POP_MAX":337785}},{"type":"Point","coordinates":[7370,6806],"properties":{"NAME":"Hetauda","POP_MAX":232334}},{"type":"Point","coordinates":[2763,5710],"properties":{"NAME":"Penonome","POP_MAX":28766}},{"type":"Point","coordinates":[2762,5679],"properties":{"NAME":"Chitre","POP_MAX":44082}},{"type":"Point","coordinates":[2825,5653],"properties":{"NAME":"Jaque","POP_MAX":1357}},{"type":"Point","coordinates":[5580,7665],"properties":{"NAME":"Prizren","POP_MAX":171464}},{"type":"Point","coordinates":[6341,6902],"properties":{"NAME":"Al Ahmadi","POP_MAX":68763}},{"type":"Point","coordinates":[6329,6918],"properties":{"NAME":"Al Jahra","POP_MAX":194193}},{"type":"Point","coordinates":[2711,5758],"properties":{"NAME":"Bocas del Toro","POP_MAX":9883}},{"type":"Point","coordinates":[2707,5756],"properties":{"NAME":"Almirante","POP_MAX":8114}},{"type":"Point","coordinates":[6119,7803],"properties":{"NAME":"Maykop","POP_MAX":158451}},{"type":"Point","coordinates":[6246,7753],"properties":{"NAME":"Mozdok","POP_MAX":45702}},{"type":"Point","coordinates":[6213,7777],"properties":{"NAME":"Georgievsk","POP_MAX":72649}},{"type":"Point","coordinates":[6202,7772],"properties":{"NAME":"Pyatigorsk","POP_MAX":142865}},{"type":"Point","coordinates":[6192,7762],"properties":{"NAME":"Kislovodsk","POP_MAX":132771}},{"type":"Point","coordinates":[6170,7804],"properties":{"NAME":"Nevinnomyssk","POP_MAX":134380}},{"type":"Point","coordinates":[216,9098],"properties":{"NAME":"Enurmino","POP_MAX":297}},{"type":"Point","coordinates":[238,9019],"properties":{"NAME":"Lavrentiya","POP_MAX":1242}},{"type":"Point","coordinates":[0,9330],"properties":{"NAME":"Zvezdnyy","POP_MAX":10}},{"type":"Point","coordinates":[9500,9241],"properties":{"NAME":"Mikhalkino","POP_MAX":570}},{"type":"Point","coordinates":[5609,8384],"properties":{"NAME":"Chernyakhovsk","POP_MAX":45187}},{"type":"Point","coordinates":[5933,9221],"properties":{"NAME":"Severomorsk","POP_MAX":53921}},{"type":"Point","coordinates":[5932,9134],"properties":{"NAME":"Apatity","POP_MAX":66907}},{"type":"Point","coordinates":[5934,9229],"properties":{"NAME":"Polyarnyy","POP_MAX":19200}},{"type":"Point","coordinates":[5784,8644],"properties":{"NAME":"Slantsy","POP_MAX":36209}},{"type":"Point","coordinates":[5856,8679],"properties":{"NAME":"Kolpino","POP_MAX":225801}},{"type":"Point","coordinates":[5892,8262],"properties":{"NAME":"Novozybkov","POP_MAX":43534}},{"type":"Point","coordinates":[5958,8323],"properties":{"NAME":"Dyatkovo","POP_MAX":33527}},{"type":"Point","coordinates":[6154,8513],"properties":{"NAME":"Shuya","POP_MAX":60705}},{"type":"Point","coordinates":[6175,8548],"properties":{"NAME":"Kineshma","POP_MAX":92983}},{"type":"Point","coordinates":[6216,8492],"properties":{"NAME":"Balakhna","POP_MAX":63083}},{"type":"Point","coordinates":[6222,8428],"properties":{"NAME":"Arzamas","POP_MAX":142597}},{"type":"Point","coordinates":[5958,8478],"properties":{"NAME":"Rzhev","POP_MAX":63414}},{"type":"Point","coordinates":[5965,8555],"properties":{"NAME":"Vyshnniy Volochek","POP_MAX":53800}},{"type":"Point","coordinates":[6070,8552],"properties":{"NAME":"Uglich","POP_MAX":37732}},{"type":"Point","coordinates":[6074,8265],"properties":{"NAME":"Yelets","POP_MAX":115919}},{"type":"Point","coordinates":[6088,8453],"properties":{"NAME":"Orekhovo-Zuevo","POP_MAX":140247}},{"type":"Point","coordinates":[6024,8483],"properties":{"NAME":"Klin","POP_MAX":80778}},{"type":"Point","coordinates":[6065,8482],"properties":{"NAME":"Sergiyev Posad","POP_MAX":109252}},{"type":"Point","coordinates":[6082,8410],"properties":{"NAME":"Kolomna","POP_MAX":147690}},{"type":"Point","coordinates":[6109,7949],"properties":{"NAME":"Bataysk","POP_MAX":109962}},{"type":"Point","coordinates":[6086,7955],"properties":{"NAME":"Taganrog","POP_MAX":279056}},{"type":"Point","coordinates":[6118,7966],"properties":{"NAME":"Novocherkassk","POP_MAX":166974}},{"type":"Point","coordinates":[6123,8019],"properties":{"NAME":"Kamensk Shakhtinskiy","POP_MAX":75814}},{"type":"Point","coordinates":[6114,7986],"properties":{"NAME":"Novoshakhtinsk","POP_MAX":99478}},{"type":"Point","coordinates":[6035,8377],"properties":{"NAME":"Aleksin","POP_MAX":66885}},{"type":"Point","coordinates":[6066,8353],"properties":{"NAME":"Novomoskovsk","POP_MAX":130982}},{"type":"Point","coordinates":[6047,8348],"properties":{"NAME":"Shchekino","POP_MAX":86088}},{"type":"Point","coordinates":[6267,8116],"properties":{"NAME":"Nikolayevsk","POP_MAX":16044}},{"type":"Point","coordinates":[6030,8139],"properties":{"NAME":"Shebekino","POP_MAX":45194}},{"type":"Point","coordinates":[6043,8189],"properties":{"NAME":"Gubkin","POP_MAX":272}},{"type":"Point","coordinates":[6108,7795],"properties":{"NAME":"Apsheronsk","POP_MAX":45876}},{"type":"Point","coordinates":[6132,7851],"properties":{"NAME":"Kropotkin","POP_MAX":79599}},{"type":"Point","coordinates":[6253,8351],"properties":{"NAME":"Ruzayevka","POP_MAX":49311}},{"type":"Point","coordinates":[6192,8269],"properties":{"NAME":"Kirsanov","POP_MAX":17975}},{"type":"Point","coordinates":[6130,8284],"properties":{"NAME":"Michurinsk","POP_MAX":93499}},{"type":"Point","coordinates":[6174,8195],"properties":{"NAME":"Borisoglebsk","POP_MAX":68597}},{"type":"Point","coordinates":[6491,8374],"properties":{"NAME":"Oktyabrskiy","POP_MAX":108200}},{"type":"Point","coordinates":[6696,8369],"properties":{"NAME":"Plast","POP_MAX":17050}},{"type":"Point","coordinates":[6640,8402],"properties":{"NAME":"Bakal","POP_MAX":26559}},{"type":"Point","coordinates":[6680,8467],"properties":{"NAME":"Verkhniy Ufaley","POP_MAX":33879}},{"type":"Point","coordinates":[6788,9136],"properties":{"NAME":"Severnyy","POP_MAX":11562}},{"type":"Point","coordinates":[6396,8611],"properties":{"NAME":"Kirovo-Chepetsk","POP_MAX":90252}},{"type":"Point","coordinates":[6687,8683],"properties":{"NAME":"Krasnoturinsk","POP_MAX":64878}},{"type":"Point","coordinates":[6714,8523],"properties":{"NAME":"Asbest","POP_MAX":81248}},{"type":"Point","coordinates":[6720,8570],"properties":{"NAME":"Alapayevsk","POP_MAX":44000}},{"type":"Point","coordinates":[6675,8600],"properties":{"NAME":"Krasnouralsk","POP_MAX":20571}},{"type":"Point","coordinates":[6672,8704],"properties":{"NAME":"Severouralsk","POP_MAX":36138}},{"type":"Point","coordinates":[6627,8185],"properties":{"NAME":"Novotroitsk","POP_MAX":106186}},{"type":"Point","coordinates":[6462,8328],"properties":{"NAME":"Buguruslan","POP_MAX":53511}},{"type":"Point","coordinates":[6387,8288],"properties":{"NAME":"Chapayevsk","POP_MAX":107164}},{"type":"Point","coordinates":[6352,8299],"properties":{"NAME":"Syzran","POP_MAX":189338}},{"type":"Point","coordinates":[6392,8296],"properties":{"NAME":"Novokuybishevsk","POP_MAX":152334}},{"type":"Point","coordinates":[6459,8446],"properties":{"NAME":"Naberezhnyye Chelny","POP_MAX":461086}},{"type":"Point","coordinates":[6357,8454],"properties":{"NAME":"Zelenodolsk","POP_MAX":99600}},{"type":"Point","coordinates":[6463,8382],"properties":{"NAME":"Leninogorsk","POP_MAX":66263}},{"type":"Point","coordinates":[6472,8379],"properties":{"NAME":"Bugulma","POP_MAX":91900}},{"type":"Point","coordinates":[7027,8758],"properties":{"NAME":"Nefteyugansk","POP_MAX":112632}},{"type":"Point","coordinates":[7402,8386],"properties":{"NAME":"Leninsk Kuznetsky","POP_MAX":109023}},{"type":"Point","coordinates":[7398,8468],"properties":{"NAME":"Anzhero Sudzhensk","POP_MAX":83692}},{"type":"Point","coordinates":[7415,8347],"properties":{"NAME":"Kiselevsk","POP_MAX":104000}},{"type":"Point","coordinates":[7434,8303],"properties":{"NAME":"Mundybash","POP_MAX":5870}},{"type":"Point","coordinates":[7543,8338],"properties":{"NAME":"Chernogorsk","POP_MAX":71582}},{"type":"Point","coordinates":[7511,8270],"properties":{"NAME":"Abaza","POP_MAX":18094}},{"type":"Point","coordinates":[7322,8385],"properties":{"NAME":"Iskitim","POP_MAX":61827}},{"type":"Point","coordinates":[7352,8419],"properties":{"NAME":"Toguchin","POP_MAX":21886}},{"type":"Point","coordinates":[7154,8368],"properties":{"NAME":"Kupina","POP_MAX":16333}},{"type":"Point","coordinates":[6617,6568],"properties":{"NAME":"Alayat Samail","POP_MAX":47718}},{"type":"Point","coordinates":[7640,8461],"properties":{"NAME":"Zaozernyy","POP_MAX":33865}},{"type":"Point","coordinates":[7495,8476],"properties":{"NAME":"Bogotol","POP_MAX":23622}},{"type":"Point","coordinates":[8234,8224],"properties":{"NAME":"Shilka","POP_MAX":14132}},{"type":"Point","coordinates":[8241,8146],"properties":{"NAME":"Sherlovaya Gora","POP_MAX":411}},{"type":"Point","coordinates":[8033,8190],"properties":{"NAME":"Petrovsk Zabaykalskiy","POP_MAX":20889}},{"type":"Point","coordinates":[8714,7777],"properties":{"NAME":"Arsenyev","POP_MAX":58700}},{"type":"Point","coordinates":[8710,7717],"properties":{"NAME":"Partizansk","POP_MAX":42489}},{"type":"Point","coordinates":[8727,7879],"properties":{"NAME":"Dalnerechensk","POP_MAX":28300}},{"type":"Point","coordinates":[8960,9559],"properties":{"NAME":"Zemlya Bunge","POP_MAX":10}},{"type":"Point","coordinates":[8167,9477],"properties":{"NAME":"Khorgo","POP_MAX":10}},{"type":"Point","coordinates":[8005,9189],"properties":{"NAME":"Put Lenina","POP_MAX":298}},{"type":"Point","coordinates":[8653,8057],"properties":{"NAME":"Obluchye","POP_MAX":10000}},{"type":"Point","coordinates":[8908,8063],"properties":{"NAME":"Vanino","POP_MAX":18618}},{"type":"Point","coordinates":[9122,8790],"properties":{"NAME":"Omchak","POP_MAX":10}},{"type":"Point","coordinates":[8958,8062],"properties":{"NAME":"Uglegorsk","POP_MAX":12669}},{"type":"Point","coordinates":[8959,7944],"properties":{"NAME":"Kholmsk","POP_MAX":32911}},{"type":"Point","coordinates":[1771,7000],"properties":{"NAME":"Vicente Guerrero","POP_MAX":12829}},{"type":"Point","coordinates":[1900,6725],"properties":{"NAME":"Loreto","POP_MAX":11227}},{"type":"Point","coordinates":[1892,6668],"properties":{"NAME":"Ciudad Constitucion","POP_MAX":39915}},{"type":"Point","coordinates":[2193,6859],"properties":{"NAME":"Allende","POP_MAX":19636}},{"type":"Point","coordinates":[2182,6837],"properties":{"NAME":"Nueva Rosita","POP_MAX":36642}},{"type":"Point","coordinates":[2059,6778],"properties":{"NAME":"Hidalgo del Parral","POP_MAX":103378}},{"type":"Point","coordinates":[1994,7020],"properties":{"NAME":"Ascension","POP_MAX":11781}},{"type":"Point","coordinates":[2119,6699],"properties":{"NAME":"Gomez Palacio","POP_MAX":399328}},{"type":"Point","coordinates":[2083,6638],"properties":{"NAME":"Canatlan","POP_MAX":10342}},{"type":"Point","coordinates":[2043,6562],"properties":{"NAME":"Villa Union","POP_MAX":15443}},{"type":"Point","coordinates":[1996,6645],"properties":{"NAME":"Altata","POP_MAX":1000}},{"type":"Point","coordinates":[1940,6816],"properties":{"NAME":"Esperanza","POP_MAX":3836}},{"type":"Point","coordinates":[1909,6992],"properties":{"NAME":"Magdalena","POP_MAX":23359}},{"type":"Point","coordinates":[1948,6980],"properties":{"NAME":"Nacozari Viejo","POP_MAX":11872}},{"type":"Point","coordinates":[2136,6513],"properties":{"NAME":"Villanueva","POP_MAX":11138}},{"type":"Point","coordinates":[2221,6677],"properties":{"NAME":"Montemorelos","POP_MAX":42640}},{"type":"Point","coordinates":[2211,6754],"properties":{"NAME":"Sabinas Hidalgo","POP_MAX":32047}},{"type":"Point","coordinates":[2226,6492],"properties":{"NAME":"Cardenas","POP_MAX":15331}},{"type":"Point","coordinates":[2244,6491],"properties":{"NAME":"Ciudad Valles","POP_MAX":114964}},{"type":"Point","coordinates":[2217,6488],"properties":{"NAME":"Rio Verde","POP_MAX":69613}},{"type":"Point","coordinates":[2246,6535],"properties":{"NAME":"Ciudad Mante","POP_MAX":79981}},{"type":"Point","coordinates":[2264,6729],"properties":{"NAME":"Reynosa","POP_MAX":498654}},{"type":"Point","coordinates":[2277,6511],"properties":{"NAME":"Ciudad Madero","POP_MAX":192736}},{"type":"Point","coordinates":[2095,6363],"properties":{"NAME":"Autlan","POP_MAX":47669}},{"type":"Point","coordinates":[2201,6358],"properties":{"NAME":"Ciudad Hidalgo","POP_MAX":64154}},{"type":"Point","coordinates":[2151,6323],"properties":{"NAME":"Apatzingan","POP_MAX":98422}},{"type":"Point","coordinates":[2071,6482],"properties":{"NAME":"Santiago Ixcuintla","POP_MAX":18365}},{"type":"Point","coordinates":[2355,6169],"properties":{"NAME":"Juchitan","POP_MAX":67637}},{"type":"Point","coordinates":[2311,6164],"properties":{"NAME":"Miahuatlan","POP_MAX":17632}},{"type":"Point","coordinates":[2260,6313],"properties":{"NAME":"Atlixco","POP_MAX":97842}},{"type":"Point","coordinates":[2271,6272],"properties":{"NAME":"Acatlan","POP_MAX":18879}},{"type":"Point","coordinates":[2405,6284],"properties":{"NAME":"Paraiso","POP_MAX":23830}},{"type":"Point","coordinates":[2452,6249],"properties":{"NAME":"Balancan","POP_MAX":11895}},{"type":"Point","coordinates":[2266,6337],"properties":{"NAME":"Tlaxcala","POP_MAX":503878}},{"type":"Point","coordinates":[2175,6415],"properties":{"NAME":"Irapuato","POP_MAX":339554}},{"type":"Point","coordinates":[2194,6407],"properties":{"NAME":"Celaya","POP_MAX":383697}},{"type":"Point","coordinates":[2230,6234],"properties":{"NAME":"Chilpancingo","POP_MAX":182387}},{"type":"Point","coordinates":[2229,6282],"properties":{"NAME":"Iguala","POP_MAX":112106}},{"type":"Point","coordinates":[2197,6217],"properties":{"NAME":"Tecpan","POP_MAX":14638}},{"type":"Point","coordinates":[2204,6214],"properties":{"NAME":"Atoyac","POP_MAX":20515}},{"type":"Point","coordinates":[2243,6342],"properties":{"NAME":"Nezahualcoyotl","POP_MAX":1109363}},{"type":"Point","coordinates":[2216,6398],"properties":{"NAME":"San Juan del Rio","POP_MAX":147559}},{"type":"Point","coordinates":[2363,6257],"properties":{"NAME":"Jaltipan","POP_MAX":66998}},{"type":"Point","coordinates":[2296,6310],"properties":{"NAME":"Orizaba","POP_MAX":355333}},{"type":"Point","coordinates":[2302,6349],"properties":{"NAME":"Xalapa","POP_MAX":452186}},{"type":"Point","coordinates":[2306,6389],"properties":{"NAME":"Nautla","POP_MAX":2890}},{"type":"Point","coordinates":[2422,6188],"properties":{"NAME":"San Cristobal de Las Casas","POP_MAX":186661}},{"type":"Point","coordinates":[2422,6106],"properties":{"NAME":"Escuintla","POP_MAX":107638}},{"type":"Point","coordinates":[2515,6440],"properties":{"NAME":"Motul","POP_MAX":21253}},{"type":"Point","coordinates":[2515,6388],"properties":{"NAME":"Tekax","POP_MAX":22806}},{"type":"Point","coordinates":[2525,6384],"properties":{"NAME":"Peto","POP_MAX":17607}},{"type":"Point","coordinates":[2493,6404],"properties":{"NAME":"Halacho","POP_MAX":9165}},{"type":"Point","coordinates":[5118,5659],"properties":{"NAME":"Iwo","POP_MAX":250443}},{"type":"Point","coordinates":[5102,5679],"properties":{"NAME":"Iseyin","POP_MAX":98071}},{"type":"Point","coordinates":[5586,7652],"properties":{"NAME":"Tetovo","POP_MAX":119132}},{"type":"Point","coordinates":[5987,7163],"properties":{"NAME":"Saida","POP_MAX":173894}},{"type":"Point","coordinates":[5572,8336],"properties":{"NAME":"Olsztyn","POP_MAX":186670}},{"type":"Point","coordinates":[5542,8358],"properties":{"NAME":"Elblag","POP_MAX":127558}},{"type":"Point","coordinates":[5510,8277],"properties":{"NAME":"Inowroclaw","POP_MAX":79007}},{"type":"Point","coordinates":[5529,8136],"properties":{"NAME":"Bytom","POP_MAX":662247}},{"type":"Point","coordinates":[5501,8155],"properties":{"NAME":"Opole","POP_MAX":131412}},{"type":"Point","coordinates":[6487,7979],"properties":{"NAME":"Maqat","POP_MAX":14082}},{"type":"Point","coordinates":[6583,8676],"properties":{"NAME":"Solikamsk","POP_MAX":100812}},{"type":"Point","coordinates":[6607,8641],"properties":{"NAME":"Kizel","POP_MAX":22135}},{"type":"Point","coordinates":[7038,8260],"properties":{"NAME":"Bestobe","POP_MAX":7189}},{"type":"Point","coordinates":[7023,8149],"properties":{"NAME":"Osakarovka","POP_MAX":7305}},{"type":"Point","coordinates":[7031,8015],"properties":{"NAME":"Aqadyr","POP_MAX":9710}},{"type":"Point","coordinates":[7179,8260],"properties":{"NAME":"Sharbaqty","POP_MAX":107}},{"type":"Point","coordinates":[7283,8152],"properties":{"NAME":"Shemonaikha","POP_MAX":27176}},{"type":"Point","coordinates":[7326,8098],"properties":{"NAME":"Serebryansk","POP_MAX":701}},{"type":"Point","coordinates":[7142,7729],"properties":{"NAME":"Boralday","POP_MAX":20996}},{"type":"Point","coordinates":[7230,7777],"properties":{"NAME":"Zharkent","POP_MAX":36496}},{"type":"Point","coordinates":[7159,7731],"properties":{"NAME":"Esik","POP_MAX":35319}},{"type":"Point","coordinates":[6948,7663],"properties":{"NAME":"Lenger","POP_MAX":23058}},{"type":"Point","coordinates":[6910,7740],"properties":{"NAME":"Kentau","POP_MAX":57408}},{"type":"Point","coordinates":[8487,7434],"properties":{"NAME":"Changyon","POP_MAX":48984}},{"type":"Point","coordinates":[8554,7479],"properties":{"NAME":"Anbyon","POP_MAX":38142}},{"type":"Point","coordinates":[8546,7500],"properties":{"NAME":"Munchon","POP_MAX":73619}},{"type":"Point","coordinates":[8527,7418],"properties":{"NAME":"Kaesong","POP_MAX":338155}},{"type":"Point","coordinates":[8506,7584],"properties":{"NAME":"Chosan","POP_MAX":7786}},{"type":"Point","coordinates":[8520,7602],"properties":{"NAME":"Manpo","POP_MAX":186827}},{"type":"Point","coordinates":[8510,7502],"properties":{"NAME":"Sunchon","POP_MAX":400629}},{"type":"Point","coordinates":[8572,7583],"properties":{"NAME":"Kimhyonggwon","POP_MAX":3839}},{"type":"Point","coordinates":[7828,7969],"properties":{"NAME":"Tsetserleg","POP_MAX":19812}},{"type":"Point","coordinates":[9711,8729],"properties":{"NAME":"Pakhachi","POP_MAX":10}},{"type":"Point","coordinates":[4755,8272],"properties":{"NAME":"Shannon","POP_MAX":8781}},{"type":"Point","coordinates":[4804,8246],"properties":{"NAME":"Waterford","POP_MAX":49275}},{"type":"Point","coordinates":[4731,8247],"properties":{"NAME":"Tralee","POP_MAX":26384}},{"type":"Point","coordinates":[4776,8385],"properties":{"NAME":"Donegal","POP_MAX":2513}},{"type":"Point","coordinates":[5306,7805],"properties":{"NAME":"Modena","POP_MAX":175502}},{"type":"Point","coordinates":[5479,7483],"properties":{"NAME":"Crotone","POP_MAX":60010}},{"type":"Point","coordinates":[5450,7458],"properties":{"NAME":"Vibo Valentia","POP_MAX":33957}},{"type":"Point","coordinates":[5438,7426],"properties":{"NAME":"Reggio di Calabria","POP_MAX":180353}},{"type":"Point","coordinates":[5401,7597],"properties":{"NAME":"Caserta","POP_MAX":250000}},{"type":"Point","coordinates":[5455,7612],"properties":{"NAME":"Barletta","POP_MAX":107830}},{"type":"Point","coordinates":[5412,7358],"properties":{"NAME":"Ragusa","POP_MAX":68956}},{"type":"Point","coordinates":[6000,7104],"properties":{"NAME":"Irbid","POP_MAX":650000}},{"type":"Point","coordinates":[5997,7074],"properties":{"NAME":"As Salt","POP_MAX":140689}},{"type":"Point","coordinates":[6007,7076],"properties":{"NAME":"Az Zarqa","POP_MAX":894691}},{"type":"Point","coordinates":[5231,7822],"properties":{"NAME":"Asti","POP_MAX":71276}},{"type":"Point","coordinates":[5242,7852],"properties":{"NAME":"Novara","POP_MAX":100910}},{"type":"Point","coordinates":[5255,7873],"properties":{"NAME":"Como","POP_MAX":250000}},{"type":"Point","coordinates":[5371,7888],"properties":{"NAME":"Udine","POP_MAX":119009}},{"type":"Point","coordinates":[5343,7864],"properties":{"NAME":"Treviso","POP_MAX":177309}},{"type":"Point","coordinates":[7724,7526],"properties":{"NAME":"Yumen","POP_MAX":350000}},{"type":"Point","coordinates":[7876,7281],"properties":{"NAME":"Linxia","POP_MAX":534555}},{"type":"Point","coordinates":[8227,7509],"properties":{"NAME":"Zhuozhou","POP_MAX":628000}},{"type":"Point","coordinates":[8277,6737],"properties":{"NAME":"Sanming","POP_MAX":209444}},{"type":"Point","coordinates":[8188,6555],"properties":{"NAME":"Huizhou","POP_MAX":289201}},{"type":"Point","coordinates":[8251,6590],"properties":{"NAME":"Chaozhou","POP_MAX":424787}},{"type":"Point","coordinates":[5172,7878],"properties":{"NAME":"Annecy","POP_MAX":105749}},{"type":"Point","coordinates":[5115,7885],"properties":{"NAME":"Roanne","POP_MAX":73315}},{"type":"Point","coordinates":[2783,5004],"properties":{"NAME":"Pinas","POP_MAX":16981}},{"type":"Point","coordinates":[2467,5163],"properties":{"NAME":"Puerto Villamil","POP_MAX":2200}},{"type":"Point","coordinates":[2506,5165],"properties":{"NAME":"Puerto Baquerizo Moreno","POP_MAX":6030}},{"type":"Point","coordinates":[2801,5124],"properties":{"NAME":"Guaranda","POP_MAX":27866}},{"type":"Point","coordinates":[2806,5058],"properties":{"NAME":"Azogues","POP_MAX":69087}},{"type":"Point","coordinates":[2746,5089],"properties":{"NAME":"Salinas","POP_MAX":43862}},{"type":"Point","coordinates":[2806,5090],"properties":{"NAME":"Alausi","POP_MAX":14294}},{"type":"Point","coordinates":[2816,5199],"properties":{"NAME":"Sangolqui","POP_MAX":178582}},{"type":"Point","coordinates":[2904,5548],"properties":{"NAME":"Sonson","POP_MAX":18817}},{"type":"Point","coordinates":[2970,5548],"properties":{"NAME":"Sogamoso","POP_MAX":126551}},{"type":"Point","coordinates":[2945,5628],"properties":{"NAME":"Barrancabermeja","POP_MAX":191403}},{"type":"Point","coordinates":[2664,5789],"properties":{"NAME":"Cartago","POP_MAX":196946}},{"type":"Point","coordinates":[2686,5718],"properties":{"NAME":"Golfito","POP_MAX":6777}},{"type":"Point","coordinates":[2656,5798],"properties":{"NAME":"Alajuela","POP_MAX":387743}},{"type":"Point","coordinates":[2631,5822],"properties":{"NAME":"Canas","POP_MAX":20306}},{"type":"Point","coordinates":[2773,5252],"properties":{"NAME":"Muisne","POP_MAX":13393}},{"type":"Point","coordinates":[2533,6022],"properties":{"NAME":"Sensuntepeque","POP_MAX":26989}},{"type":"Point","coordinates":[2502,6012],"properties":{"NAME":"Sonsonate","POP_MAX":168947}},{"type":"Point","coordinates":[2546,5999],"properties":{"NAME":"San Miguel","POP_MAX":201563}},{"type":"Point","coordinates":[2808,6483],"properties":{"NAME":"Ciego de Avila","POP_MAX":142027}},{"type":"Point","coordinates":[2885,6389],"properties":{"NAME":"Palma Soriano","POP_MAX":102826}},{"type":"Point","coordinates":[2851,6258],"properties":{"NAME":"May Pen","POP_MAX":135142}},{"type":"Point","coordinates":[2858,6259],"properties":{"NAME":"Spanish Town","POP_MAX":432704}},{"type":"Point","coordinates":[2918,5467],"properties":{"NAME":"Girardot","POP_MAX":130289}},{"type":"Point","coordinates":[2904,5373],"properties":{"NAME":"Campoalegre","POP_MAX":22568}},{"type":"Point","coordinates":[2840,5280],"properties":{"NAME":"Tuquerres","POP_MAX":33979}},{"type":"Point","coordinates":[2867,5284],"properties":{"NAME":"Mocoa","POP_MAX":22035}},{"type":"Point","coordinates":[2887,5492],"properties":{"NAME":"Cartago","POP_MAX":134827}},{"type":"Point","coordinates":[2834,5252],"properties":{"NAME":"San Gabriel","POP_MAX":16066}},{"type":"Point","coordinates":[2919,5850],"properties":{"NAME":"Soledad","POP_MAX":698852}},{"type":"Point","coordinates":[2915,5834],"properties":{"NAME":"Sabanalarga","POP_MAX":68535}},{"type":"Point","coordinates":[2903,5812],"properties":{"NAME":"Arjona","POP_MAX":50405}},{"type":"Point","coordinates":[2920,5752],"properties":{"NAME":"Magangue","POP_MAX":100313}},{"type":"Point","coordinates":[2962,5824],"properties":{"NAME":"Valledupar","POP_MAX":308237}},{"type":"Point","coordinates":[2979,5366],"properties":{"NAME":"San Jose del Guaviare","POP_MAX":22136}},{"type":"Point","coordinates":[2970,5454],"properties":{"NAME":"Puerto Lopez","POP_MAX":16678}},{"type":"Point","coordinates":[2704,6544],"properties":{"NAME":"San Antonio de los Banos","POP_MAX":42724}},{"type":"Point","coordinates":[2717,6541],"properties":{"NAME":"Guines","POP_MAX":68935}},{"type":"Point","coordinates":[2788,6522],"properties":{"NAME":"Caibarien","POP_MAX":39140}},{"type":"Point","coordinates":[2783,6511],"properties":{"NAME":"Placetas","POP_MAX":55408}},{"type":"Point","coordinates":[5239,8233],"properties":{"NAME":"Bielefeld","POP_MAX":331906}},{"type":"Point","coordinates":[5209,8204],"properties":{"NAME":"Dortmund","POP_MAX":588462}},{"type":"Point","coordinates":[5190,8198],"properties":{"NAME":"Duisburg","POP_MAX":1276757}},{"type":"Point","coordinates":[5202,8188],"properties":{"NAME":"Wuppertal","POP_MAX":776525}},{"type":"Point","coordinates":[5197,8199],"properties":{"NAME":"Essen","POP_MAX":1742135}},{"type":"Point","coordinates":[5236,8057],"properties":{"NAME":"Karlsruhe","POP_MAX":377487}},{"type":"Point","coordinates":[5244,8082],"properties":{"NAME":"Heidelberg","POP_MAX":426590}},{"type":"Point","coordinates":[5266,8191],"properties":{"NAME":"Kassel","POP_MAX":289924}},{"type":"Point","coordinates":[5231,8297],"properties":{"NAME":"Oldenburg","POP_MAX":167458}},{"type":"Point","coordinates":[5203,8311],"properties":{"NAME":"Emden","POP_MAX":51526}},{"type":"Point","coordinates":[5294,8246],"properties":{"NAME":"Braunschweig","POP_MAX":244715}},{"type":"Point","coordinates":[5309,8172],"properties":{"NAME":"Erfurt","POP_MAX":203254}},{"type":"Point","coordinates":[5435,7854],"properties":{"NAME":"Karlovac","POP_MAX":55063}},{"type":"Point","coordinates":[5404,7845],"properties":{"NAME":"Rijeka","POP_MAX":170992}},{"type":"Point","coordinates":[5307,8131],"properties":{"NAME":"Coburg","POP_MAX":61054}},{"type":"Point","coordinates":[5305,8020],"properties":{"NAME":"Augsburg","POP_MAX":358989}},{"type":"Point","coordinates":[5308,8085],"properties":{"NAME":"Furth","POP_MAX":237844}},{"type":"Point","coordinates":[5405,8056],"properties":{"NAME":"Ceske Budejovice","POP_MAX":98851}},{"type":"Point","coordinates":[5422,8162],"properties":{"NAME":"Liberec","POP_MAX":102175}},{"type":"Point","coordinates":[5362,8164],"properties":{"NAME":"Chemnitz","POP_MAX":302643}},{"type":"Point","coordinates":[5504,7835],"properties":{"NAME":"Slavonski Brod","POP_MAX":97718}},{"type":"Point","coordinates":[5482,8094],"properties":{"NAME":"Olomouc","POP_MAX":101268}},{"type":"Point","coordinates":[5762,8660],"properties":{"NAME":"Kohtla-Jarve","POP_MAX":46060}},{"type":"Point","coordinates":[7499,6895],"properties":{"NAME":"Gyangze","POP_MAX":10000}},{"type":"Point","coordinates":[8064,7234],"properties":{"NAME":"Dali","POP_MAX":109696}},{"type":"Point","coordinates":[8165,7412],"properties":{"NAME":"Yangquan","POP_MAX":981448}},{"type":"Point","coordinates":[8088,7105],"properties":{"NAME":"Shiyan","POP_MAX":770000}},{"type":"Point","coordinates":[8108,7102],"properties":{"NAME":"Danjiangkou","POP_MAX":92008}},{"type":"Point","coordinates":[8128,6975],"properties":{"NAME":"Shashi","POP_MAX":520000}},{"type":"Point","coordinates":[8168,7030],"properties":{"NAME":"Anlu","POP_MAX":71198}},{"type":"Point","coordinates":[8161,6722],"properties":{"NAME":"Zixing","POP_MAX":6618}},{"type":"Point","coordinates":[7910,7022],"properties":{"NAME":"Deyang","POP_MAX":152194}},{"type":"Point","coordinates":[7745,6668],"properties":{"NAME":"Tengchong","POP_MAX":126058}},{"type":"Point","coordinates":[7882,6571],"properties":{"NAME":"Mengzi","POP_MAX":303341}},{"type":"Point","coordinates":[7830,6668],"properties":{"NAME":"Chuxiong","POP_MAX":254370}},{"type":"Point","coordinates":[8225,7404],"properties":{"NAME":"Hengshui","POP_MAX":456356}},{"type":"Point","coordinates":[8206,7570],"properties":{"NAME":"Xuanhua","POP_MAX":409745}},{"type":"Point","coordinates":[8178,7163],"properties":{"NAME":"Luohe","POP_MAX":417356}},{"type":"Point","coordinates":[8366,7641],"properties":{"NAME":"Beipiao","POP_MAX":228515}},{"type":"Point","coordinates":[8400,7514],"properties":{"NAME":"Wafangdian","POP_MAX":355844}},{"type":"Point","coordinates":[8327,7303],"properties":{"NAME":"Zhucheng","POP_MAX":1060000}},{"type":"Point","coordinates":[8282,7491],"properties":{"NAME":"Hangu","POP_MAX":332793}},{"type":"Point","coordinates":[8298,7210],"properties":{"NAME":"Xinyi","POP_MAX":962656}},{"type":"Point","coordinates":[8329,7095],"properties":{"NAME":"Yangzhou","POP_MAX":539715}},{"type":"Point","coordinates":[8376,6889],"properties":{"NAME":"Linhai","POP_MAX":251759}},{"type":"Point","coordinates":[8379,6878],"properties":{"NAME":"Huangyan","POP_MAX":198713}},{"type":"Point","coordinates":[8732,7227],"properties":{"NAME":"Okayama","POP_MAX":866092}},{"type":"Point","coordinates":[8649,7186],"properties":{"NAME":"Shimonoseki","POP_MAX":245786}},{"type":"Point","coordinates":[8464,7855],"properties":{"NAME":"Daan","POP_MAX":93297}},{"type":"Point","coordinates":[8456,7783],"properties":{"NAME":"Changling","POP_MAX":55841}},{"type":"Point","coordinates":[8505,7633],"properties":{"NAME":"Tonghua","POP_MAX":27227}},{"type":"Point","coordinates":[8524,7646],"properties":{"NAME":"Baishan","POP_MAX":330000}},{"type":"Point","coordinates":[8609,7703],"properties":{"NAME":"Yanji","POP_MAX":488740}},{"type":"Point","coordinates":[8647,7036],"properties":{"NAME":"Kanoya","POP_MAX":82335}},{"type":"Point","coordinates":[8736,7208],"properties":{"NAME":"Takamatsu","POP_MAX":334223}},{"type":"Point","coordinates":[8750,7192],"properties":{"NAME":"Tokushima","POP_MAX":443760}},{"type":"Point","coordinates":[8387,8161],"properties":{"NAME":"Ergun Zuoqi","POP_MAX":42849}},{"type":"Point","coordinates":[8164,7626],"properties":{"NAME":"Shangdu","POP_MAX":18831}},{"type":"Point","coordinates":[8448,8148],"properties":{"NAME":"Orongen Zizhiqi","POP_MAX":40128}},{"type":"Point","coordinates":[8420,7999],"properties":{"NAME":"Zalantun","POP_MAX":138032}},{"type":"Point","coordinates":[8106,7599],"properties":{"NAME":"Wuchuan","POP_MAX":23776}},{"type":"Point","coordinates":[7986,7587],"properties":{"NAME":"Hanggin Houqi","POP_MAX":39954}},{"type":"Point","coordinates":[8493,7907],"properties":{"NAME":"Anda","POP_MAX":181533}},{"type":"Point","coordinates":[8514,7924],"properties":{"NAME":"Qinggang","POP_MAX":64182}},{"type":"Point","coordinates":[8450,7951],"properties":{"NAME":"Angangxi","POP_MAX":24317}},{"type":"Point","coordinates":[8445,7954],"properties":{"NAME":"Hulan Ergi","POP_MAX":289999}},{"type":"Point","coordinates":[8554,7934],"properties":{"NAME":"Qingan","POP_MAX":53206}},{"type":"Point","coordinates":[8514,7976],"properties":{"NAME":"Baiquan","POP_MAX":70472}},{"type":"Point","coordinates":[8542,7956],"properties":{"NAME":"Suileng","POP_MAX":57789}},{"type":"Point","coordinates":[8630,7842],"properties":{"NAME":"Linkou","POP_MAX":77754}},{"type":"Point","coordinates":[8824,7344],"properties":{"NAME":"Toyama","POP_MAX":332812}},{"type":"Point","coordinates":[8818,7343],"properties":{"NAME":"Takaoka","POP_MAX":170077}},{"type":"Point","coordinates":[8786,7246],"properties":{"NAME":"Otsu","POP_MAX":536976}},{"type":"Point","coordinates":[8876,7327],"properties":{"NAME":"Maebashi","POP_MAX":344871}},{"type":"Point","coordinates":[8893,7277],"properties":{"NAME":"Kawasaki","POP_MAX":1437266}},{"type":"Point","coordinates":[8887,7299],"properties":{"NAME":"Kawagoe","POP_MAX":337931}},{"type":"Point","coordinates":[8898,7336],"properties":{"NAME":"Utsunomiya","POP_MAX":667752}},{"type":"Point","coordinates":[8883,7284],"properties":{"NAME":"Hachioji","POP_MAX":579399}},{"type":"Point","coordinates":[8912,7386],"properties":{"NAME":"Koriyama","POP_MAX":340560}},{"type":"Point","coordinates":[2511,6156],"properties":{"NAME":"San Luis","POP_MAX":132470}},{"type":"Point","coordinates":[2484,6114],"properties":{"NAME":"Coban","POP_MAX":65194}},{"type":"Point","coordinates":[2530,6135],"properties":{"NAME":"Livingston","POP_MAX":14350}},{"type":"Point","coordinates":[2498,6045],"properties":{"NAME":"Jutiapa","POP_MAX":50681}},{"type":"Point","coordinates":[3013,6287],"properties":{"NAME":"Neiba","POP_MAX":25731}},{"type":"Point","coordinates":[3038,6331],"properties":{"NAME":"La Vega","POP_MAX":163197}},{"type":"Point","coordinates":[3045,6336],"properties":{"NAME":"San Francisco de Macoris","POP_MAX":152538}},{"type":"Point","coordinates":[3544,5491],"properties":{"NAME":"Roura","POP_MAX":2229}},{"type":"Point","coordinates":[3527,5529],"properties":{"NAME":"Sinnamary","POP_MAX":3180}},{"type":"Point","coordinates":[7151,7020],"properties":{"NAME":"Simla","POP_MAX":173503}},{"type":"Point","coordinates":[7147,6866],"properties":{"NAME":"Gurgaon","POP_MAX":197340}},{"type":"Point","coordinates":[7147,6898],"properties":{"NAME":"Sonipat","POP_MAX":250521}},{"type":"Point","coordinates":[7135,6892],"properties":{"NAME":"Rohtak","POP_MAX":317245}},{"type":"Point","coordinates":[7111,6908],"properties":{"NAME":"Hisar","POP_MAX":544829}},{"type":"Point","coordinates":[7122,6887],"properties":{"NAME":"Bhiwani","POP_MAX":190855}},{"type":"Point","coordinates":[7142,6975],"properties":{"NAME":"Ambala","POP_MAX":146787}},{"type":"Point","coordinates":[7076,7205],"properties":{"NAME":"Sopore","POP_MAX":63035}},{"type":"Point","coordinates":[7036,6392],"properties":{"NAME":"Silvassa","POP_MAX":27359}},{"type":"Point","coordinates":[7040,6333],"properties":{"NAME":"Kalyan","POP_MAX":1576614}},{"type":"Point","coordinates":[7114,6435],"properties":{"NAME":"Bhusawal","POP_MAX":183001}},{"type":"Point","coordinates":[7626,6768],"properties":{"NAME":"Jorhat","POP_MAX":69033}},{"type":"Point","coordinates":[4924,8029],"properties":{"NAME":"St.-Brieuc","POP_MAX":53223}},{"type":"Point","coordinates":[5011,7917],"properties":{"NAME":"Poitier","POP_MAX":85960}},{"type":"Point","coordinates":[4987,7969],"properties":{"NAME":"Angers","POP_MAX":188380}},{"type":"Point","coordinates":[4958,7737],"properties":{"NAME":"Biarritz","POP_MAX":145348}},{"type":"Point","coordinates":[5154,7740],"properties":{"NAME":"Aix-en-Provence","POP_MAX":146821}},{"type":"Point","coordinates":[5083,7692],"properties":{"NAME":"Perpignan","POP_MAX":146620}},{"type":"Point","coordinates":[5004,7723],"properties":{"NAME":"Tarbes","POP_MAX":54854}},{"type":"Point","coordinates":[5088,7871],"properties":{"NAME":"Clermont-Ferrand","POP_MAX":233050}},{"type":"Point","coordinates":[5076,8030],"properties":{"NAME":"Melun","POP_MAX":249432}},{"type":"Point","coordinates":[5079,8132],"properties":{"NAME":"Arras","POP_MAX":64165}},{"type":"Point","coordinates":[5170,7955],"properties":{"NAME":"Besancon","POP_MAX":128426}},{"type":"Point","coordinates":[3011,2165],"properties":{"NAME":"Rio Verde","POP_MAX":358}},{"type":"Point","coordinates":[3048,4109],"properties":{"NAME":"Cuya","POP_MAX":20}},{"type":"Point","coordinates":[3082,3923],"properties":{"NAME":"Chuquicamata","POP_MAX":11941}},{"type":"Point","coordinates":[3061,3921],"properties":{"NAME":"Maria Elena","POP_MAX":2370}},{"type":"Point","coordinates":[3044,3624],"properties":{"NAME":"Tierra Amarilla","POP_MAX":12888}},{"type":"Point","coordinates":[3024,3409],"properties":{"NAME":"Combarbala","POP_MAX":5134}},{"type":"Point","coordinates":[3033,3269],"properties":{"NAME":"San Bernardo","POP_MAX":246762}},{"type":"Point","coordinates":[3032,3318],"properties":{"NAME":"San Felipe","POP_MAX":59294}},{"type":"Point","coordinates":[3009,3302],"properties":{"NAME":"Vina del Mar","POP_MAX":503534}},{"type":"Point","coordinates":[3018,3335],"properties":{"NAME":"La Ligua","POP_MAX":26665}},{"type":"Point","coordinates":[3017,3311],"properties":{"NAME":"Quillota","POP_MAX":79686}},{"type":"Point","coordinates":[2970,2971],"properties":{"NAME":"Nueva Imperial","POP_MAX":18777}},{"type":"Point","coordinates":[2979,2935],"properties":{"NAME":"Loncoche","POP_MAX":15590}},{"type":"Point","coordinates":[2990,2940],"properties":{"NAME":"Villarica","POP_MAX":31602}},{"type":"Point","coordinates":[2963,2943],"properties":{"NAME":"Tolten","POP_MAX":2293}},{"type":"Point","coordinates":[3018,2989],"properties":{"NAME":"Lonquimay","POP_MAX":10237}},{"type":"Point","coordinates":[2977,3026],"properties":{"NAME":"Angol","POP_MAX":44856}},{"type":"Point","coordinates":[2984,3016],"properties":{"NAME":"Collipulli","POP_MAX":16392}},{"type":"Point","coordinates":[2966,2881],"properties":{"NAME":"La Union","POP_MAX":26298}},{"type":"Point","coordinates":[2970,2878],"properties":{"NAME":"Rio Bueno","POP_MAX":15456}},{"type":"Point","coordinates":[2964,3070],"properties":{"NAME":"Coronel","POP_MAX":92940}},{"type":"Point","coordinates":[2965,3088],"properties":{"NAME":"Talcahuano","POP_MAX":288074}},{"type":"Point","coordinates":[2982,3114],"properties":{"NAME":"Quirihue","POP_MAX":6529}},{"type":"Point","coordinates":[2959,3044],"properties":{"NAME":"Curanilahue","POP_MAX":30611}},{"type":"Point","coordinates":[2996,3033],"properties":{"NAME":"Santa Barbara","POP_MAX":3494}},{"type":"Point","coordinates":[2996,3224],"properties":{"NAME":"Pichilemu","POP_MAX":11603}},{"type":"Point","coordinates":[3024,3212],"properties":{"NAME":"San Fernando","POP_MAX":60746}},{"type":"Point","coordinates":[2969,2821],"properties":{"NAME":"Puerto Varas","POP_MAX":24958}},{"type":"Point","coordinates":[2965,2796],"properties":{"NAME":"Calbuco","POP_MAX":12490}},{"type":"Point","coordinates":[2947,2754],"properties":{"NAME":"Castro","POP_MAX":29926}},{"type":"Point","coordinates":[2946,2747],"properties":{"NAME":"Chonchi","POP_MAX":381}},{"type":"Point","coordinates":[3008,3139],"properties":{"NAME":"Linares","POP_MAX":81015}},{"type":"Point","coordinates":[2987,3132],"properties":{"NAME":"Cauquenes","POP_MAX":31362}},{"type":"Point","coordinates":[5662,7417],"properties":{"NAME":"Pirai�vs","POP_MAX":466065}},{"type":"Point","coordinates":[5641,7499],"properties":{"NAME":"Volos","POP_MAX":110632}},{"type":"Point","coordinates":[5671,7276],"properties":{"NAME":"Hania","POP_MAX":78728}},{"type":"Point","coordinates":[5682,7590],"properties":{"NAME":"Kavala","POP_MAX":59240}},{"type":"Point","coordinates":[5723,7585],"properties":{"NAME":"Alexandroupoli","POP_MAX":52979}},{"type":"Point","coordinates":[6192,7666],"properties":{"NAME":"Kutaisi","POP_MAX":183945}},{"type":"Point","coordinates":[6227,7665],"properties":{"NAME":"Tskhinvali","POP_MAX":38502}},{"type":"Point","coordinates":[5972,7028],"properties":{"NAME":"Beer Sheva","POP_MAX":206408}},{"type":"Point","coordinates":[5806,8803],"properties":{"NAME":"Savonlinna","POP_MAX":27353}},{"type":"Point","coordinates":[5608,8781],"properties":{"NAME":"Pori","POP_MAX":76772}},{"type":"Point","coordinates":[6787,7854],"properties":{"NAME":"Zhosaly","POP_MAX":20065}},{"type":"Point","coordinates":[6473,6944],"properties":{"NAME":"Marv Dasht","POP_MAX":125000}},{"type":"Point","coordinates":[6533,7328],"properties":{"NAME":"Shahrud","POP_MAX":131889}},{"type":"Point","coordinates":[6440,7264],"properties":{"NAME":"Varamin","POP_MAX":179603}},{"type":"Point","coordinates":[6375,7071],"properties":{"NAME":"Masjed Soleyman","POP_MAX":153663}},{"type":"Point","coordinates":[6361,7183],"properties":{"NAME":"Borujerd","POP_MAX":251958}},{"type":"Point","coordinates":[6331,6979],"properties":{"NAME":"Az Aubayr","POP_MAX":262219}},{"type":"Point","coordinates":[6253,7071],"properties":{"NAME":"Ad Diwaniyah","POP_MAX":358408}},{"type":"Point","coordinates":[6288,7038],"properties":{"NAME":"Ash Shatrah","POP_MAX":161949}},{"type":"Point","coordinates":[6363,7206],"properties":{"NAME":"Malayer","POP_MAX":176573}},{"type":"Point","coordinates":[6353,7343],"properties":{"NAME":"Zanjan","POP_MAX":357471}},{"type":"Point","coordinates":[6255,7393],"properties":{"NAME":"Urmia","POP_MAX":577307}},{"type":"Point","coordinates":[6313,7448],"properties":{"NAME":"Ahar","POP_MAX":103639}},{"type":"Point","coordinates":[6312,7263],"properties":{"NAME":"Sanandaj","POP_MAX":349176}},{"type":"Point","coordinates":[6271,7173],"properties":{"NAME":"Mandali","POP_MAX":29785}},{"type":"Point","coordinates":[6640,7317],"properties":{"NAME":"Neyshabur","POP_MAX":221700}},{"type":"Point","coordinates":[6598,7389],"properties":{"NAME":"Bojnurd","POP_MAX":208582}},{"type":"Point","coordinates":[6554,6925],"properties":{"NAME":"Sirjan","POP_MAX":175000}},{"type":"Point","coordinates":[7118,7044],"properties":{"NAME":"Hoshiarpur","POP_MAX":158142}},{"type":"Point","coordinates":[7081,6750],"properties":{"NAME":"Ajmer","POP_MAX":589985}},{"type":"Point","coordinates":[7176,6817],"properties":{"NAME":"Hathras","POP_MAX":126882}},{"type":"Point","coordinates":[7251,6819],"properties":{"NAME":"Sitapur","POP_MAX":164435}},{"type":"Point","coordinates":[7225,6877],"properties":{"NAME":"Pilibhit","POP_MAX":131008}},{"type":"Point","coordinates":[7205,6842],"properties":{"NAME":"Budaun","POP_MAX":161555}},{"type":"Point","coordinates":[7186,6791],"properties":{"NAME":"Firozabad","POP_MAX":306409}},{"type":"Point","coordinates":[7165,6811],"properties":{"NAME":"Mathura","POP_MAX":330511}},{"type":"Point","coordinates":[7170,6864],"properties":{"NAME":"Bulandshahr","POP_MAX":198612}},{"type":"Point","coordinates":[7168,6883],"properties":{"NAME":"Hapur","POP_MAX":242920}},{"type":"Point","coordinates":[7166,6926],"properties":{"NAME":"Muzaffarnagar","POP_MAX":349706}},{"type":"Point","coordinates":[7470,6801],"properties":{"NAME":"Gangtok","POP_MAX":77900}},{"type":"Point","coordinates":[5264,8488],"properties":{"NAME":"Viborg","POP_MAX":34831}},{"type":"Point","coordinates":[5338,8443],"properties":{"NAME":"Roskilde","POP_MAX":44285}},{"type":"Point","coordinates":[6208,7154],"properties":{"NAME":"Ar Ramadi","POP_MAX":295121}},{"type":"Point","coordinates":[6236,7117],"properties":{"NAME":"Al Musayyib","POP_MAX":76454}},{"type":"Point","coordinates":[5550,7888],"properties":{"NAME":"Subotica","POP_MAX":100000}},{"type":"Point","coordinates":[3716,4880],"properties":{"NAME":"Grajau","POP_MAX":30217}},{"type":"Point","coordinates":[3762,4913],"properties":{"NAME":"Presidente Dutra","POP_MAX":30330}},{"type":"Point","coordinates":[3766,5020],"properties":{"NAME":"Itapecuru Mirim","POP_MAX":34943}},{"type":"Point","coordinates":[3774,5069],"properties":{"NAME":"Sao Jose de Ribamar","POP_MAX":55265}},{"type":"Point","coordinates":[3738,5005],"properties":{"NAME":"Santa Ines","POP_MAX":67424}},{"type":"Point","coordinates":[3769,5046],"properties":{"NAME":"Rosario","POP_MAX":6798}},{"type":"Point","coordinates":[3808,4920],"properties":{"NAME":"Timon","POP_MAX":203157}},{"type":"Point","coordinates":[3688,5148],"properties":{"NAME":"Capanema","POP_MAX":47766}},{"type":"Point","coordinates":[3586,5104],"properties":{"NAME":"Portel","POP_MAX":21315}},{"type":"Point","coordinates":[3629,4920],"properties":{"NAME":"Itupiranga","POP_MAX":21301}},{"type":"Point","coordinates":[3297,4542],"properties":{"NAME":"Pimenta Bueno","POP_MAX":25762}},{"type":"Point","coordinates":[3450,3911],"properties":{"NAME":"Ponta Pora","POP_MAX":94331}},{"type":"Point","coordinates":[3465,3964],"properties":{"NAME":"Maracaju","POP_MAX":22690}},{"type":"Point","coordinates":[3438,3972],"properties":{"NAME":"Jardim","POP_MAX":23780}},{"type":"Point","coordinates":[3561,4012],"properties":{"NAME":"Tres Lagoas","POP_MAX":78712}},{"type":"Point","coordinates":[3806,4128],"properties":{"NAME":"Guanhaes","POP_MAX":23727}},{"type":"Point","coordinates":[3814,3969],"properties":{"NAME":"Leopoldina","POP_MAX":46742}},{"type":"Point","coordinates":[3780,4059],"properties":{"NAME":"Nova Lima","POP_MAX":88399}},{"type":"Point","coordinates":[3722,3929],"properties":{"NAME":"Pouso Alegre","POP_MAX":115201}},{"type":"Point","coordinates":[3760,4054],"properties":{"NAME":"Itauna","POP_MAX":77400}},{"type":"Point","coordinates":[3828,4070],"properties":{"NAME":"Caratinga","POP_MAX":60066}},{"type":"Point","coordinates":[3787,4159],"properties":{"NAME":"Diamantina","POP_MAX":37343}},{"type":"Point","coordinates":[3878,4183],"properties":{"NAME":"Nanuque","POP_MAX":37824}},{"type":"Point","coordinates":[3783,3987],"properties":{"NAME":"Barbacena","POP_MAX":122211}},{"type":"Point","coordinates":[3705,3954],"properties":{"NAME":"Pocos de Caldas","POP_MAX":146588}},{"type":"Point","coordinates":[3701,3983],"properties":{"NAME":"Guaxupe","POP_MAX":47889}},{"type":"Point","coordinates":[3769,3992],"properties":{"NAME":"Sao Joao del Rei","POP_MAX":78592}},{"type":"Point","coordinates":[3821,3992],"properties":{"NAME":"Muriae","POP_MAX":91173}},{"type":"Point","coordinates":[3704,4016],"properties":{"NAME":"Passos","POP_MAX":98752}},{"type":"Point","coordinates":[3782,4019],"properties":{"NAME":"Conselheiro Lafaiete","POP_MAX":111596}},{"type":"Point","coordinates":[3736,4031],"properties":{"NAME":"Formiga","POP_MAX":56404}},{"type":"Point","coordinates":[3639,4056],"properties":{"NAME":"Frutal","POP_MAX":40931}},{"type":"Point","coordinates":[3604,4073],"properties":{"NAME":"Iturama","POP_MAX":29805}},{"type":"Point","coordinates":[3624,4117],"properties":{"NAME":"Ituiutaba","POP_MAX":85345}},{"type":"Point","coordinates":[3659,4136],"properties":{"NAME":"Araguari","POP_MAX":96565}},{"type":"Point","coordinates":[3868,4279],"properties":{"NAME":"Almenara","POP_MAX":29333}},{"type":"Point","coordinates":[3438,4310],"properties":{"NAME":"Varzea Grande","POP_MAX":249752}},{"type":"Point","coordinates":[3400,4286],"properties":{"NAME":"C�ceres","POP_MAX":85274}},{"type":"Point","coordinates":[3455,3427],"properties":{"NAME":"Santana do Livramento","POP_MAX":89694}},{"type":"Point","coordinates":[3576,3482],"properties":{"NAME":"Canoas","POP_MAX":600000}},{"type":"Point","coordinates":[3429,3456],"properties":{"NAME":"Quarai","POP_MAX":23229}},{"type":"Point","coordinates":[3515,3274],"properties":{"NAME":"Santa Vitoria do Palmar","POP_MAX":27775}},{"type":"Point","coordinates":[3554,3398],"properties":{"NAME":"Sao Lourenco do Sul","POP_MAX":25340}},{"type":"Point","coordinates":[3587,3515],"properties":{"NAME":"Canela","POP_MAX":60806}},{"type":"Point","coordinates":[3489,3459],"properties":{"NAME":"Sao Gabriel","POP_MAX":55434}},{"type":"Point","coordinates":[3472,3463],"properties":{"NAME":"Rosario do Sul","POP_MAX":36721}},{"type":"Point","coordinates":[3528,3476],"properties":{"NAME":"Cachoeira do Sul","POP_MAX":74694}},{"type":"Point","coordinates":[3602,3485],"properties":{"NAME":"Osorio","POP_MAX":34628}},{"type":"Point","coordinates":[3541,3495],"properties":{"NAME":"Santa Cruz do Sul","POP_MAX":113625}},{"type":"Point","coordinates":[3471,3570],"properties":{"NAME":"Sao Luiz Gonzaga","POP_MAX":31798}},{"type":"Point","coordinates":[3490,3576],"properties":{"NAME":"Santo Angelo","POP_MAX":65420}},{"type":"Point","coordinates":[3531,3577],"properties":{"NAME":"Carazinho","POP_MAX":59417}},{"type":"Point","coordinates":[3546,3615],"properties":{"NAME":"Erechim","POP_MAX":96087}},{"type":"Point","coordinates":[3490,3820],"properties":{"NAME":"Guaira","POP_MAX":36426}},{"type":"Point","coordinates":[3553,3682],"properties":{"NAME":"Palmas","POP_MAX":39150}},{"type":"Point","coordinates":[3569,3860],"properties":{"NAME":"Arapongas","POP_MAX":97512}},{"type":"Point","coordinates":[3650,3737],"properties":{"NAME":"Paranagua","POP_MAX":141013}},{"type":"Point","coordinates":[3632,3735],"properties":{"NAME":"Sao Jose dos Pinhais","POP_MAX":665063}},{"type":"Point","coordinates":[3568,3746],"properties":{"NAME":"Guarapuava","POP_MAX":150850}},{"type":"Point","coordinates":[3615,3704],"properties":{"NAME":"Rio Negro","POP_MAX":65597}},{"type":"Point","coordinates":[3568,3852],"properties":{"NAME":"Apucarana","POP_MAX":107085}},{"type":"Point","coordinates":[3617,3724],"properties":{"NAME":"Lapa","POP_MAX":25621}},{"type":"Point","coordinates":[3591,3740],"properties":{"NAME":"Irati","POP_MAX":45830}},{"type":"Point","coordinates":[3609,3780],"properties":{"NAME":"Castro","POP_MAX":42091}},{"type":"Point","coordinates":[3592,3806],"properties":{"NAME":"Telemaco Borba","POP_MAX":58880}},{"type":"Point","coordinates":[3610,3874],"properties":{"NAME":"Jacarezinho","POP_MAX":35090}},{"type":"Point","coordinates":[3553,3638],"properties":{"NAME":"Concordia","POP_MAX":55367}},{"type":"Point","coordinates":[3635,3656],"properties":{"NAME":"Blumenau","POP_MAX":293949}},{"type":"Point","coordinates":[3639,3644],"properties":{"NAME":"Brusque","POP_MAX":88284}},{"type":"Point","coordinates":[3623,3539],"properties":{"NAME":"Ararangua","POP_MAX":43444}},{"type":"Point","coordinates":[3634,3682],"properties":{"NAME":"Jaragua do Sul","POP_MAX":130130}},{"type":"Point","coordinates":[3636,3566],"properties":{"NAME":"Tubarao","POP_MAX":92275}},{"type":"Point","coordinates":[3643,3566],"properties":{"NAME":"Laguna","POP_MAX":39711}},{"type":"Point","coordinates":[3567,3642],"properties":{"NAME":"Joacaba","POP_MAX":38876}},{"type":"Point","coordinates":[3581,3665],"properties":{"NAME":"Cacador","POP_MAX":63726}},{"type":"Point","coordinates":[3598,3699],"properties":{"NAME":"Canoinhas","POP_MAX":41498}},{"type":"Point","coordinates":[3864,5049],"properties":{"NAME":"Camocim","POP_MAX":44481}},{"type":"Point","coordinates":[3944,4930],"properties":{"NAME":"Russas","POP_MAX":39465}},{"type":"Point","coordinates":[3878,5003],"properties":{"NAME":"Sobral","POP_MAX":157996}},{"type":"Point","coordinates":[3907,4848],"properties":{"NAME":"Iguatu","POP_MAX":70380}},{"type":"Point","coordinates":[3915,4929],"properties":{"NAME":"Quixada","POP_MAX":49328}},{"type":"Point","coordinates":[3907,4965],"properties":{"NAME":"Caninde","POP_MAX":42720}},{"type":"Point","coordinates":[3827,4937],"properties":{"NAME":"Campo Maior","POP_MAX":31739}},{"type":"Point","coordinates":[3824,4970],"properties":{"NAME":"Barras","POP_MAX":21597}},{"type":"Point","coordinates":[4004,4667],"properties":{"NAME":"Rio Largo","POP_MAX":158545}},{"type":"Point","coordinates":[3982,4671],"properties":{"NAME":"Palmeira dos Indios","POP_MAX":41095}},{"type":"Point","coordinates":[3915,4273],"properties":{"NAME":"Santa Cruz Cabralia","POP_MAX":19545}},{"type":"Point","coordinates":[3936,4676],"properties":{"NAME":"Paulo Afonso","POP_MAX":85350}},{"type":"Point","coordinates":[3841,4393],"properties":{"NAME":"Brumado","POP_MAX":41989}},{"type":"Point","coordinates":[3889,4433],"properties":{"NAME":"Jaguaquara","POP_MAX":41498}},{"type":"Point","coordinates":[3881,4333],"properties":{"NAME":"Itapetinga","POP_MAX":59721}},{"type":"Point","coordinates":[3906,4388],"properties":{"NAME":"Ubaitaba","POP_MAX":28375}},{"type":"Point","coordinates":[3856,4008],"properties":{"NAME":"Cachoeiro de Itapemirim","POP_MAX":187019}},{"type":"Point","coordinates":[3772,3909],"properties":{"NAME":"Barra Mansa","POP_MAX":169386}},{"type":"Point","coordinates":[3791,3899],"properties":{"NAME":"Nova Iguacu","POP_MAX":844583}},{"type":"Point","coordinates":[3796,3897],"properties":{"NAME":"Duque de Caxias","POP_MAX":842890}},{"type":"Point","coordinates":[3801,3889],"properties":{"NAME":"Niteroi","POP_MAX":1500513}},{"type":"Point","coordinates":[3831,3890],"properties":{"NAME":"Cabo Frio","POP_MAX":261721}},{"type":"Point","coordinates":[3838,3919],"properties":{"NAME":"Macae","POP_MAX":143029}},{"type":"Point","coordinates":[3826,3976],"properties":{"NAME":"Miracema","POP_MAX":26684}},{"type":"Point","coordinates":[3949,4889],"properties":{"NAME":"Apodi","POP_MAX":16757}},{"type":"Point","coordinates":[3998,4856],"properties":{"NAME":"Santa Cruz","POP_MAX":27775}},{"type":"Point","coordinates":[2303,8124],"properties":{"NAME":"Selkirk","POP_MAX":9986}},{"type":"Point","coordinates":[2299,8253],"properties":{"NAME":"Berens River","POP_MAX":892}},{"type":"Point","coordinates":[2180,8448],"properties":{"NAME":"Pukatawagan","POP_MAX":431}},{"type":"Point","coordinates":[2300,8152],"properties":{"NAME":"Gimli","POP_MAX":2623}},{"type":"Point","coordinates":[2362,8345],"properties":{"NAME":"Island Lake","POP_MAX":10}},{"type":"Point","coordinates":[2138,8170],"properties":{"NAME":"Melville","POP_MAX":4279}},{"type":"Point","coordinates":[2109,8096],"properties":{"NAME":"Weyburn","POP_MAX":9362}},{"type":"Point","coordinates":[2069,8411],"properties":{"NAME":"La Ronge","POP_MAX":3783}},{"type":"Point","coordinates":[2054,8653],"properties":{"NAME":"Stony Rapids","POP_MAX":152}},{"type":"Point","coordinates":[1859,8290],"properties":{"NAME":"Camrose","POP_MAX":15808}},{"type":"Point","coordinates":[1727,8313],"properties":{"NAME":"Hinton","POP_MAX":10265}},{"type":"Point","coordinates":[1881,8318],"properties":{"NAME":"Vegreville","POP_MAX":5813}},{"type":"Point","coordinates":[1863,8251],"properties":{"NAME":"Stettler","POP_MAX":5494}},{"type":"Point","coordinates":[1883,8392],"properties":{"NAME":"Lac La Biche","POP_MAX":2986}},{"type":"Point","coordinates":[1844,8287],"properties":{"NAME":"Wetaskiwin","POP_MAX":11823}},{"type":"Point","coordinates":[1724,8639],"properties":{"NAME":"Meander River","POP_MAX":200}},{"type":"Point","coordinates":[1756,8063],"properties":{"NAME":"Creston","POP_MAX":4816}},{"type":"Point","coordinates":[1777,8087],"properties":{"NAME":"Cranbrook","POP_MAX":18610}},{"type":"Point","coordinates":[1420,8376],"properties":{"NAME":"Terrace","POP_MAX":19443}},{"type":"Point","coordinates":[1605,8067],"properties":{"NAME":"Chilliwack","POP_MAX":51942}},{"type":"Point","coordinates":[2739,9203],"properties":{"NAME":"Hall Beach","POP_MAX":654}},{"type":"Point","coordinates":[1917,8834],"properties":{"NAME":"Lutselke","POP_MAX":102}},{"type":"Point","coordinates":[1779,8744],"properties":{"NAME":"Hay River","POP_MAX":3900}},{"type":"Point","coordinates":[1564,8996],"properties":{"NAME":"D�line","POP_MAX":525}},{"type":"Point","coordinates":[1548,9239],"properties":{"NAME":"Paulatuk","POP_MAX":294}},{"type":"Point","coordinates":[1276,9126],"properties":{"NAME":"Tsiigehtchic","POP_MAX":175}},{"type":"Point","coordinates":[2750,7800],"properties":{"NAME":"Owen Sound","POP_MAX":22625}},{"type":"Point","coordinates":[2790,7802],"properties":{"NAME":"Orillia","POP_MAX":37483}},{"type":"Point","coordinates":[2706,8082],"properties":{"NAME":"Kapuskasing","POP_MAX":9240}},{"type":"Point","coordinates":[2675,7898],"properties":{"NAME":"Thessalon","POP_MAX":1464}},{"type":"Point","coordinates":[2579,8099],"properties":{"NAME":"Geraldton","POP_MAX":1290}},{"type":"Point","coordinates":[2846,7777],"properties":{"NAME":"Belleville","POP_MAX":43990}},{"type":"Point","coordinates":[2707,7708],"properties":{"NAME":"Sarnia","POP_MAX":144172}},{"type":"Point","coordinates":[2820,7785],"properties":{"NAME":"Peterborough","POP_MAX":83627}},{"type":"Point","coordinates":[2806,7761],"properties":{"NAME":"Oshawa","POP_MAX":450963}},{"type":"Point","coordinates":[2739,7708],"properties":{"NAME":"London","POP_MAX":346765}},{"type":"Point","coordinates":[2760,7736],"properties":{"NAME":"Kitchener","POP_MAX":417001}},{"type":"Point","coordinates":[2783,7970],"properties":{"NAME":"New Liskeard","POP_MAX":5203}},{"type":"Point","coordinates":[2893,7802],"properties":{"NAME":"Brockville","POP_MAX":26458}},{"type":"Point","coordinates":[2498,8286],"properties":{"NAME":"Big Beaver House","POP_MAX":10}},{"type":"Point","coordinates":[3210,8105],"properties":{"NAME":"Port-Menier","POP_MAX":263}},{"type":"Point","coordinates":[3065,7990],"properties":{"NAME":"Riviere-du-Loup","POP_MAX":16403}},{"type":"Point","coordinates":[2983,7877],"properties":{"NAME":"Drummondville","POP_MAX":59489}},{"type":"Point","coordinates":[2999,7849],"properties":{"NAME":"Sherbrooke","POP_MAX":139652}},{"type":"Point","coordinates":[3144,8063],"properties":{"NAME":"Cap-Chat","POP_MAX":1484}},{"type":"Point","coordinates":[3103,8070],"properties":{"NAME":"Baie-Comeau","POP_MAX":10435}},{"type":"Point","coordinates":[3280,8127],"properties":{"NAME":"Natashquan","POP_MAX":722}},{"type":"Point","coordinates":[2815,8245],"properties":{"NAME":"Eastmain","POP_MAX":335}},{"type":"Point","coordinates":[3141,8394],"properties":{"NAME":"Schefferville","POP_MAX":471}},{"type":"Point","coordinates":[2894,8822],"properties":{"NAME":"Salluit","POP_MAX":106}},{"type":"Point","coordinates":[2826,8032],"properties":{"NAME":"Amos","POP_MAX":10516}},{"type":"Point","coordinates":[2956,7885],"properties":{"NAME":"Joliette","POP_MAX":45361}},{"type":"Point","coordinates":[2941,7870],"properties":{"NAME":"St.-Jerome","POP_MAX":78439}},{"type":"Point","coordinates":[3368,8187],"properties":{"NAME":"St-Augustin","POP_MAX":3961}},{"type":"Point","coordinates":[2800,8014],"properties":{"NAME":"Rouyn-Noranda","POP_MAX":24602}},{"type":"Point","coordinates":[2796,8046],"properties":{"NAME":"La Sarre","POP_MAX":7206}},{"type":"Point","coordinates":[3257,7859],"properties":{"NAME":"New Glasgow","POP_MAX":20322}},{"type":"Point","coordinates":[3199,7770],"properties":{"NAME":"Liverpool","POP_MAX":4331}},{"type":"Point","coordinates":[3213,7873],"properties":{"NAME":"Amherst","POP_MAX":9336}},{"type":"Point","coordinates":[3310,7889],"properties":{"NAME":"Baddeck","POP_MAX":852}},{"type":"Point","coordinates":[3402,8068],"properties":{"NAME":"Deer Lake","POP_MAX":4163}},{"type":"Point","coordinates":[3454,8114],"properties":{"NAME":"La Scie","POP_MAX":817}},{"type":"Point","coordinates":[3325,8431],"properties":{"NAME":"Hopedale","POP_MAX":442}},{"type":"Point","coordinates":[3322,8307],"properties":{"NAME":"Happy Valley - Goose Bay","POP_MAX":7572}},{"type":"Point","coordinates":[3434,8262],"properties":{"NAME":"Port Hope Simpson","POP_MAX":197}},{"type":"Point","coordinates":[5585,7769],"properties":{"NAME":"Kragujevac","POP_MAX":171197}},{"type":"Point","coordinates":[5570,7848],"properties":{"NAME":"Zrenjanin","POP_MAX":64053}},{"type":"Point","coordinates":[2988,2223],"properties":{"NAME":"28 de Noviembre","POP_MAX":5300}},{"type":"Point","coordinates":[3045,2390],"properties":{"NAME":"Gobernador Gregores","POP_MAX":2519}},{"type":"Point","coordinates":[3083,2320],"properties":{"NAME":"Comondante Luis Piedrabuena","POP_MAX":410}},{"type":"Point","coordinates":[3045,2569],"properties":{"NAME":"Paso Rio Mayo","POP_MAX":1825}},{"type":"Point","coordinates":[3029,2606],"properties":{"NAME":"Alto Rio Sanguer","POP_MAX":1548}},{"type":"Point","coordinates":[3020,2779],"properties":{"NAME":"El Maiten","POP_MAX":4269}},{"type":"Point","coordinates":[3190,2737],"properties":{"NAME":"Puerto Madryn","POP_MAX":64555}},{"type":"Point","coordinates":[3182,2710],"properties":{"NAME":"Trelew","POP_MAX":93442}},{"type":"Point","coordinates":[3085,3314],"properties":{"NAME":"Las Heras","POP_MAX":66663}},{"type":"Point","coordinates":[3094,3300],"properties":{"NAME":"San Martin","POP_MAX":117399}},{"type":"Point","coordinates":[3070,3327],"properties":{"NAME":"Uspallata","POP_MAX":2390}},{"type":"Point","coordinates":[3073,2959],"properties":{"NAME":"Cutral Co","POP_MAX":47814}},{"type":"Point","coordinates":[3168,4199],"properties":{"NAME":"Punata","POP_MAX":26323}},{"type":"Point","coordinates":[3165,4197],"properties":{"NAME":"Cliza","POP_MAX":15816}},{"type":"Point","coordinates":[3156,4208],"properties":{"NAME":"Quillacollo","POP_MAX":227052}},{"type":"Point","coordinates":[3197,4239],"properties":{"NAME":"Puerto Villarroel","POP_MAX":1778}},{"type":"Point","coordinates":[3194,4105],"properties":{"NAME":"Tarabuco","POP_MAX":2428}},{"type":"Point","coordinates":[3180,4589],"properties":{"NAME":"Guayaramerin","POP_MAX":36008}},{"type":"Point","coordinates":[3175,4419],"properties":{"NAME":"Santa Ana","POP_MAX":234478}},{"type":"Point","coordinates":[3231,4430],"properties":{"NAME":"Baures","POP_MAX":2422}},{"type":"Point","coordinates":[3634,4189],"properties":{"NAME":"Morrinhos","POP_MAX":34143}},{"type":"Point","coordinates":[3620,4330],"properties":{"NAME":"Ceres","POP_MAX":18759}},{"type":"Point","coordinates":[3666,4163],"properties":{"NAME":"Catalao","POP_MAX":63544}},{"type":"Point","coordinates":[3676,4245],"properties":{"NAME":"Cristalina","POP_MAX":36531}},{"type":"Point","coordinates":[3623,4252],"properties":{"NAME":"Trindade","POP_MAX":97521}},{"type":"Point","coordinates":[3578,4263],"properties":{"NAME":"Ipora","POP_MAX":28254}},{"type":"Point","coordinates":[3623,4268],"properties":{"NAME":"Inhumas","POP_MAX":44058}},{"type":"Point","coordinates":[3614,4288],"properties":{"NAME":"Itaberai","POP_MAX":22129}},{"type":"Point","coordinates":[3273,2963],"properties":{"NAME":"Punta Alta","POP_MAX":57209}},{"type":"Point","coordinates":[3324,3285],"properties":{"NAME":"San Nicolas","POP_MAX":127742}},{"type":"Point","coordinates":[3360,3237],"properties":{"NAME":"Campana","POP_MAX":81612}},{"type":"Point","coordinates":[3317,3208],"properties":{"NAME":"Chacabuco","POP_MAX":34587}},{"type":"Point","coordinates":[3346,3208],"properties":{"NAME":"Mercedes","POP_MAX":52949}},{"type":"Point","coordinates":[3288,3195],"properties":{"NAME":"Lincoln","POP_MAX":24798}},{"type":"Point","coordinates":[3329,3194],"properties":{"NAME":"Chivilcoy","POP_MAX":54514}},{"type":"Point","coordinates":[3326,3163],"properties":{"NAME":"Veinticinco de Mayo","POP_MAX":24668}},{"type":"Point","coordinates":[3306,3162],"properties":{"NAME":"Nueve de Julio","POP_MAX":34718}},{"type":"Point","coordinates":[3395,3111],"properties":{"NAME":"Dolores","POP_MAX":25190}},{"type":"Point","coordinates":[3256,2928],"properties":{"NAME":"Pedro Luro","POP_MAX":7100}},{"type":"Point","coordinates":[3323,2993],"properties":{"NAME":"Tres Arroyos","POP_MAX":47136}},{"type":"Point","coordinates":[3277,3045],"properties":{"NAME":"Coronel Suarez","POP_MAX":27000}},{"type":"Point","coordinates":[3379,3024],"properties":{"NAME":"Balcarce","POP_MAX":18967}},{"type":"Point","coordinates":[3117,3026],"properties":{"NAME":"25 de Mayo","POP_MAX":17430}},{"type":"Point","coordinates":[3119,2955],"properties":{"NAME":"General Roca","POP_MAX":73212}},{"type":"Point","coordinates":[3045,2838],"properties":{"NAME":"Comallo","POP_MAX":741}},{"type":"Point","coordinates":[3064,2823],"properties":{"NAME":"Ingeniero Jacobacci","POP_MAX":5719}},{"type":"Point","coordinates":[3207,2892],"properties":{"NAME":"General Conesa","POP_MAX":2958}},{"type":"Point","coordinates":[3172,2941],"properties":{"NAME":"Choele Choel","POP_MAX":10000}},{"type":"Point","coordinates":[3272,3395],"properties":{"NAME":"San Francisco","POP_MAX":59062}},{"type":"Point","coordinates":[3207,3382],"properties":{"NAME":"Alta Gracia","POP_MAX":40384}},{"type":"Point","coordinates":[3240,3338],"properties":{"NAME":"Villa Maria","POP_MAX":92453}},{"type":"Point","coordinates":[3256,3327],"properties":{"NAME":"Bell Ville","POP_MAX":35105}},{"type":"Point","coordinates":[3206,3351],"properties":{"NAME":"Villa Rumipal","POP_MAX":1269}},{"type":"Point","coordinates":[3205,3395],"properties":{"NAME":"Villa Carlos Paz","POP_MAX":69451}},{"type":"Point","coordinates":[3157,3543],"properties":{"NAME":"Chumbicha","POP_MAX":2572}},{"type":"Point","coordinates":[3120,3590],"properties":{"NAME":"Tinogasta","POP_MAX":587}},{"type":"Point","coordinates":[3172,3900],"properties":{"NAME":"Abra Pampa","POP_MAX":4480}},{"type":"Point","coordinates":[3182,3872],"properties":{"NAME":"Humahuaca","POP_MAX":11369}},{"type":"Point","coordinates":[3150,3859],"properties":{"NAME":"Susques","POP_MAX":1093}},{"type":"Point","coordinates":[3147,3399],"properties":{"NAME":"Chepes","POP_MAX":6020}},{"type":"Point","coordinates":[3228,3940],"properties":{"NAME":"Yacuiba","POP_MAX":82803}},{"type":"Point","coordinates":[3224,3910],"properties":{"NAME":"Tartagal","POP_MAX":60819}},{"type":"Point","coordinates":[3214,3763],"properties":{"NAME":"Joaquin V. Gonzalez","POP_MAX":13376}},{"type":"Point","coordinates":[3190,3787],"properties":{"NAME":"General Guemes","POP_MAX":19828}},{"type":"Point","coordinates":[3183,3697],"properties":{"NAME":"Trancas","POP_MAX":1599}},{"type":"Point","coordinates":[3318,3664],"properties":{"NAME":"Presidencia Roque Saenz Pena","POP_MAX":81879}},{"type":"Point","coordinates":[3298,3680],"properties":{"NAME":"Pampa del Infierno","POP_MAX":2921}},{"type":"Point","coordinates":[3311,3618],"properties":{"NAME":"Villa Angela","POP_MAX":30051}},{"type":"Point","coordinates":[3279,3831],"properties":{"NAME":"Ingeniero Guillermo N. Juarez","POP_MAX":6453}},{"type":"Point","coordinates":[3339,3748],"properties":{"NAME":"Comandante Fontana","POP_MAX":4277}},{"type":"Point","coordinates":[3267,3914],"properties":{"NAME":"Doctor Pedro P. Pena","POP_MAX":6143}},{"type":"Point","coordinates":[3365,3587],"properties":{"NAME":"San Lorenzo","POP_MAX":47626}},{"type":"Point","coordinates":[3364,3623],"properties":{"NAME":"Corrientes","POP_MAX":340823}},{"type":"Point","coordinates":[3380,3334],"properties":{"NAME":"Concepcion del Uruguay","POP_MAX":67895}},{"type":"Point","coordinates":[3326,3326],"properties":{"NAME":"Victoria","POP_MAX":25139}},{"type":"Point","coordinates":[3349,3295],"properties":{"NAME":"Gualeguay","POP_MAX":33120}},{"type":"Point","coordinates":[3316,3377],"properties":{"NAME":"Parana","POP_MAX":262295}},{"type":"Point","coordinates":[3321,3291],"properties":{"NAME":"Villa Constitucion","POP_MAX":44271}},{"type":"Point","coordinates":[3289,3405],"properties":{"NAME":"Rafaela","POP_MAX":88713}},{"type":"Point","coordinates":[3706,3846],"properties":{"NAME":"Santo Andre","POP_MAX":662373}},{"type":"Point","coordinates":[3735,3888],"properties":{"NAME":"Pindamonhangaba","POP_MAX":132218}},{"type":"Point","coordinates":[3677,3918],"properties":{"NAME":"Rio Claro","POP_MAX":180147}},{"type":"Point","coordinates":[3613,3885],"properties":{"NAME":"Ourinhos","POP_MAX":97799}},{"type":"Point","coordinates":[3698,3815],"properties":{"NAME":"Itanhaem","POP_MAX":90385}},{"type":"Point","coordinates":[3656,3985],"properties":{"NAME":"Jaboticabal","POP_MAX":69394}},{"type":"Point","coordinates":[3705,3886],"properties":{"NAME":"Braganca Paulista","POP_MAX":127676}},{"type":"Point","coordinates":[3696,3872],"properties":{"NAME":"Jundiai","POP_MAX":505548}},{"type":"Point","coordinates":[3724,3872],"properties":{"NAME":"Sao Jose dos Campos","POP_MAX":753769}},{"type":"Point","coordinates":[3743,3894],"properties":{"NAME":"Guaratingueta","POP_MAX":203580}},{"type":"Point","coordinates":[3681,3942],"properties":{"NAME":"Pirassununga","POP_MAX":60413}},{"type":"Point","coordinates":[3684,3898],"properties":{"NAME":"Americana","POP_MAX":479472}},{"type":"Point","coordinates":[3675,3900],"properties":{"NAME":"Piracicaba","POP_MAX":342209}},{"type":"Point","coordinates":[3699,3943],"properties":{"NAME":"Sao Joao da Boa Vista","POP_MAX":76540}},{"type":"Point","coordinates":[3668,3940],"properties":{"NAME":"Sao Carlos","POP_MAX":205035}},{"type":"Point","coordinates":[3595,3946],"properties":{"NAME":"Tupa","POP_MAX":62035}},{"type":"Point","coordinates":[3607,3976],"properties":{"NAME":"Penapolis","POP_MAX":54477}},{"type":"Point","coordinates":[3570,3935],"properties":{"NAME":"Presidente Prudente","POP_MAX":209502}},{"type":"Point","coordinates":[3669,3797],"properties":{"NAME":"Registro","POP_MAX":53273}},{"type":"Point","coordinates":[3669,3863],"properties":{"NAME":"Tatui","POP_MAX":93580}},{"type":"Point","coordinates":[3639,3877],"properties":{"NAME":"Avare","POP_MAX":81285}},{"type":"Point","coordinates":[3619,3929],"properties":{"NAME":"Garca","POP_MAX":41302}},{"type":"Point","coordinates":[3638,3991],"properties":{"NAME":"Catanduva","POP_MAX":109612}},{"type":"Point","coordinates":[3676,4006],"properties":{"NAME":"Batatais","POP_MAX":51976}},{"type":"Point","coordinates":[3649,4026],"properties":{"NAME":"Barretos","POP_MAX":101220}},{"type":"Point","coordinates":[3611,3929],"properties":{"NAME":"Marilia","POP_MAX":212218}},{"type":"Point","coordinates":[3684,3868],"properties":{"NAME":"Itu","POP_MAX":320170}},{"type":"Point","coordinates":[3664,3849],"properties":{"NAME":"Itapetininga","POP_MAX":126243}},{"type":"Point","coordinates":[3481,3698],"properties":{"NAME":"Eldorado","POP_MAX":17365}},{"type":"Point","coordinates":[4026,4747],"properties":{"NAME":"Jaboatao","POP_MAX":702621}},{"type":"Point","coordinates":[4031,4753],"properties":{"NAME":"Olinda","POP_MAX":921840}},{"type":"Point","coordinates":[4026,4736],"properties":{"NAME":"Cabo de Santo Agostinho","POP_MAX":146219}},{"type":"Point","coordinates":[4020,4762],"properties":{"NAME":"Carpina","POP_MAX":165579}},{"type":"Point","coordinates":[3969,4729],"properties":{"NAME":"Arcoverde","POP_MAX":57163}},{"type":"Point","coordinates":[2545,6201],"properties":{"NAME":"Dangriga","POP_MAX":10750}},{"type":"Point","coordinates":[5545,7563],"properties":{"NAME":"Vlore","POP_MAX":89546}},{"type":"Point","coordinates":[5561,7601],"properties":{"NAME":"Elbasan","POP_MAX":165010}},{"type":"Point","coordinates":[6223,7581],"properties":{"NAME":"Gyumri","POP_MAX":148381}},{"type":"Point","coordinates":[5105,8175],"properties":{"NAME":"Gent","POP_MAX":444336}},{"type":"Point","coordinates":[6241,7583],"properties":{"NAME":"Vanadzor","POP_MAX":101098}},{"type":"Point","coordinates":[6293,7575],"properties":{"NAME":"Ganca","POP_MAX":303268}},{"type":"Point","coordinates":[6315,7571],"properties":{"NAME":"Yevlax","POP_MAX":53716}},{"type":"Point","coordinates":[6384,7569],"properties":{"NAME":"Sumqayt","POP_MAX":279159}},{"type":"Point","coordinates":[6745,7216],"properties":{"NAME":"Karokh","POP_MAX":17484}},{"type":"Point","coordinates":[6833,7342],"properties":{"NAME":"Sheberghan","POP_MAX":93241}},{"type":"Point","coordinates":[6916,7301],"properties":{"NAME":"Pol-e Khomri","POP_MAX":56369}},{"type":"Point","coordinates":[7507,6623],"properties":{"NAME":"Tangail","POP_MAX":180144}},{"type":"Point","coordinates":[3115,4212],"properties":{"NAME":"Sica Sica","POP_MAX":1006}},{"type":"Point","coordinates":[3120,4379],"properties":{"NAME":"Rurrenabaque","POP_MAX":11749}},{"type":"Point","coordinates":[3089,4302],"properties":{"NAME":"Sorata","POP_MAX":2190}},{"type":"Point","coordinates":[3089,4285],"properties":{"NAME":"Achacachi","POP_MAX":8447}},{"type":"Point","coordinates":[3099,4252],"properties":{"NAME":"Viacha","POP_MAX":34776}},{"type":"Point","coordinates":[3130,4233],"properties":{"NAME":"Quime","POP_MAX":4045}},{"type":"Point","coordinates":[3146,4149],"properties":{"NAME":"Llallagua","POP_MAX":28069}},{"type":"Point","coordinates":[3148,4146],"properties":{"NAME":"Uncia","POP_MAX":4723}},{"type":"Point","coordinates":[3140,4031],"properties":{"NAME":"Uyuni","POP_MAX":12939}},{"type":"Point","coordinates":[3114,4013],"properties":{"NAME":"Villa Martin","POP_MAX":10}},{"type":"Point","coordinates":[3179,4083],"properties":{"NAME":"Betanzos","POP_MAX":4847}},{"type":"Point","coordinates":[3236,4210],"properties":{"NAME":"Portachuelo","POP_MAX":11485}},{"type":"Point","coordinates":[3226,4163],"properties":{"NAME":"Samaipata","POP_MAX":2926}},{"type":"Point","coordinates":[3232,4031],"properties":{"NAME":"Cuevo","POP_MAX":953}},{"type":"Point","coordinates":[3227,4208],"properties":{"NAME":"San Carlos","POP_MAX":6353}},{"type":"Point","coordinates":[3198,3972],"properties":{"NAME":"San Lorenzo","POP_MAX":3000}},{"type":"Point","coordinates":[3214,3969],"properties":{"NAME":"Entre Rios","POP_MAX":2685}},{"type":"Point","coordinates":[5735,7691],"properties":{"NAME":"Sliven","POP_MAX":96368}},{"type":"Point","coordinates":[5691,7661],"properties":{"NAME":"Plovdiv","POP_MAX":340494}},{"type":"Point","coordinates":[5643,7687],"properties":{"NAME":"Pernik","POP_MAX":82467}},{"type":"Point","coordinates":[5658,7722],"properties":{"NAME":"Vratsa","POP_MAX":71633}},{"type":"Point","coordinates":[5752,7725],"properties":{"NAME":"Shumen","POP_MAX":87283}},{"type":"Point","coordinates":[5455,7989],"properties":{"NAME":"Wiener Neustadt","POP_MAX":82762}},{"type":"Point","coordinates":[5726,8297],"properties":{"NAME":"Baranavichy","POP_MAX":168772}},{"type":"Point","coordinates":[5804,8434],"properties":{"NAME":"Polatsk","POP_MAX":82258}},{"type":"Point","coordinates":[5750,8366],"properties":{"NAME":"Maladzyechna","POP_MAX":101300}},{"type":"Point","coordinates":[7561,6661],"properties":{"NAME":"Sylhet","POP_MAX":237000}},{"type":"Point","coordinates":[9216,3279],"properties":{"NAME":"Central Coast","POP_MAX":3026}},{"type":"Point","coordinates":[9265,3670],"properties":{"NAME":"Sunshine Coast","POP_MAX":71043}},{"type":"Point","coordinates":[5501,7780],"properties":{"NAME":"Zenica","POP_MAX":164423}},{"type":"Point","coordinates":[5157,8152],"properties":{"NAME":"Liege","POP_MAX":749110}},{"type":"Point","coordinates":[6979,6418],"properties":{"NAME":"Diu","POP_MAX":23779}},{"type":"Point","coordinates":[6534,6665],"properties":{"NAME":"Jabal Ali","POP_MAX":80000}},{"type":"Point","coordinates":[6643,6413],"properties":{"NAME":"Dawwah","POP_MAX":2000}},{"type":"Point","coordinates":[5979,7045],"properties":{"NAME":"Al Khalil","POP_MAX":280321}},{"type":"Point","coordinates":[5948,7253],"properties":{"NAME":"Ammochostos","POP_MAX":42526}},{"type":"Point","coordinates":[9067,3472],"properties":{"NAME":"Bourke","POP_MAX":2475}},{"type":"Point","coordinates":[1496,8063],"properties":{"NAME":"Tofino","POP_MAX":1655}},{"type":"Point","coordinates":[4859,8511],"properties":{"NAME":"Fort William","POP_MAX":9652}},{"type":"Point","coordinates":[5453,8359],"properties":{"NAME":"Koszalin","POP_MAX":107450}},{"type":"Point","coordinates":[8979,8893],"properties":{"NAME":"Oymyakon","POP_MAX":500}},{"type":"Point","coordinates":[3362,1613],"properties":{"NAME":"Artigas Base","POP_MAX":60}},{"type":"Point","coordinates":[8360,6591],"properties":{"NAME":"Douliou","POP_MAX":106653}},{"type":"Point","coordinates":[8378,6664],"properties":{"NAME":"Zhongli","POP_MAX":1632616}},{"type":"Point","coordinates":[8393,6674],"properties":{"NAME":"Keelung","POP_MAX":500000}},{"type":"Point","coordinates":[8363,6603],"properties":{"NAME":"Nantou","POP_MAX":165000}},{"type":"Point","coordinates":[8351,6577],"properties":{"NAME":"Puzi","POP_MAX":50000}},{"type":"Point","coordinates":[3378,3246],"properties":{"NAME":"Carmelo","POP_MAX":16921}},{"type":"Point","coordinates":[3397,3463],"properties":{"NAME":"Bella Union","POP_MAX":22723}},{"type":"Point","coordinates":[3385,3289],"properties":{"NAME":"Mercedes","POP_MAX":42359}},{"type":"Point","coordinates":[3493,3341],"properties":{"NAME":"Melo","POP_MAX":55494}},{"type":"Point","coordinates":[3454,3426],"properties":{"NAME":"Rivera","POP_MAX":200000}},{"type":"Point","coordinates":[3492,3265],"properties":{"NAME":"Lascano","POP_MAX":6976}},{"type":"Point","coordinates":[3502,3236],"properties":{"NAME":"Castillos","POP_MAX":7686}},{"type":"Point","coordinates":[2424,7972],"properties":{"NAME":"Virginia","POP_MAX":8709}},{"type":"Point","coordinates":[2449,7771],"properties":{"NAME":"Winona","POP_MAX":32897}},{"type":"Point","coordinates":[2426,7769],"properties":{"NAME":"Rochester","POP_MAX":108511}},{"type":"Point","coordinates":[2405,7805],"properties":{"NAME":"Lakeville","POP_MAX":261308}},{"type":"Point","coordinates":[2444,7994],"properties":{"NAME":"Ely","POP_MAX":3731}},{"type":"Point","coordinates":[2307,7934],"properties":{"NAME":"Moorhead","POP_MAX":35528}},{"type":"Point","coordinates":[2379,7858],"properties":{"NAME":"St. Cloud","POP_MAX":112794}},{"type":"Point","coordinates":[2054,7907],"properties":{"NAME":"Miles City","POP_MAX":8615}},{"type":"Point","coordinates":[1909,7865],"properties":{"NAME":"Bozeman","POP_MAX":44921}},{"type":"Point","coordinates":[2032,8010],"properties":{"NAME":"Glasgow","POP_MAX":3240}},{"type":"Point","coordinates":[2139,7935],"properties":{"NAME":"Dickinson","POP_MAX":16399}},{"type":"Point","coordinates":[2253,7936],"properties":{"NAME":"Jamestown","POP_MAX":15081}},{"type":"Point","coordinates":[2115,8009],"properties":{"NAME":"Williston","POP_MAX":13564}},{"type":"Point","coordinates":[563,6491],"properties":{"NAME":"Lihue","POP_MAX":15536}},{"type":"Point","coordinates":[600,6463],"properties":{"NAME":"Wahiawa","POP_MAX":174766}},{"type":"Point","coordinates":[643,6428],"properties":{"NAME":"Wailuku","POP_MAX":52148}},{"type":"Point","coordinates":[1902,7670],"properties":{"NAME":"Montpelier","POP_MAX":2997}},{"type":"Point","coordinates":[1814,7684],"properties":{"NAME":"Twin Falls","POP_MAX":47315}},{"type":"Point","coordinates":[1752,7748],"properties":{"NAME":"Caldwell","POP_MAX":132476}},{"type":"Point","coordinates":[1829,7836],"properties":{"NAME":"Salmon","POP_MAX":3601}},{"type":"Point","coordinates":[1749,7981],"properties":{"NAME":"Coeur d'Alene","POP_MAX":34514}},{"type":"Point","coordinates":[1679,7900],"properties":{"NAME":"Richland","POP_MAX":44869}},{"type":"Point","coordinates":[1590,8044],"properties":{"NAME":"Bellingham","POP_MAX":99662}},{"type":"Point","coordinates":[1578,7892],"properties":{"NAME":"Longview","POP_MAX":66231}},{"type":"Point","coordinates":[1706,7887],"properties":{"NAME":"Walla Walla","POP_MAX":45150}},{"type":"Point","coordinates":[1553,7940],"properties":{"NAME":"Aberdeen","POP_MAX":32745}},{"type":"Point","coordinates":[1586,7975],"properties":{"NAME":"Bremerton","POP_MAX":126820}},{"type":"Point","coordinates":[1598,7997],"properties":{"NAME":"Everett","POP_MAX":486903}},{"type":"Point","coordinates":[1811,7254],"properties":{"NAME":"Bullhead City","POP_MAX":37989}},{"type":"Point","coordinates":[1918,7262],"properties":{"NAME":"Winslow","POP_MAX":9931}},{"type":"Point","coordinates":[1862,7127],"properties":{"NAME":"Gila Bend","POP_MAX":2088}},{"type":"Point","coordinates":[1936,7055],"properties":{"NAME":"Tombstone","POP_MAX":1570}},{"type":"Point","coordinates":[1943,7087],"properties":{"NAME":"Willcox","POP_MAX":5146}},{"type":"Point","coordinates":[1886,7170],"properties":{"NAME":"Scottsdale","POP_MAX":15401}},{"type":"Point","coordinates":[1825,7257],"properties":{"NAME":"Kingman","POP_MAX":42182}},{"type":"Point","coordinates":[1878,7307],"properties":{"NAME":"Grand Canyon","POP_MAX":1550}},{"type":"Point","coordinates":[1545,7587],"properties":{"NAME":"Arcata","POP_MAX":20905}},{"type":"Point","coordinates":[1623,7417],"properties":{"NAME":"Stockton","POP_MAX":685306}},{"type":"Point","coordinates":[1742,7240],"properties":{"NAME":"Barstow","POP_MAX":21119}},{"type":"Point","coordinates":[1735,7219],"properties":{"NAME":"Victorville","POP_MAX":83496}},{"type":"Point","coordinates":[1711,7197],"properties":{"NAME":"Pasadena","POP_MAX":144618}},{"type":"Point","coordinates":[1678,7323],"properties":{"NAME":"Visalia","POP_MAX":121968}},{"type":"Point","coordinates":[1783,7118],"properties":{"NAME":"El Centro","POP_MAX":45000}},{"type":"Point","coordinates":[1641,7262],"properties":{"NAME":"San Luis Obispo","POP_MAX":65386}},{"type":"Point","coordinates":[1646,7379],"properties":{"NAME":"Merced","POP_MAX":96091}},{"type":"Point","coordinates":[1614,7486],"properties":{"NAME":"Yuba City","POP_MAX":116217}},{"type":"Point","coordinates":[1593,7570],"properties":{"NAME":"Redding","POP_MAX":96058}},{"type":"Point","coordinates":[1584,7446],"properties":{"NAME":"Santa Rosa","POP_MAX":231792}},{"type":"Point","coordinates":[1734,7143],"properties":{"NAME":"Oceanside","POP_MAX":609854}},{"type":"Point","coordinates":[1632,7400],"properties":{"NAME":"Modesto","POP_MAX":323386}},{"type":"Point","coordinates":[1720,7169],"properties":{"NAME":"Irvine","POP_MAX":3010232}},{"type":"Point","coordinates":[1570,7487],"properties":{"NAME":"Ukiah","POP_MAX":27828}},{"type":"Point","coordinates":[1809,7237],"properties":{"NAME":"Needles","POP_MAX":6974}},{"type":"Point","coordinates":[1704,7383],"properties":{"NAME":"Bishop","POP_MAX":4827}},{"type":"Point","coordinates":[1756,7175],"properties":{"NAME":"Palm Springs","POP_MAX":390115}},{"type":"Point","coordinates":[1647,7242],"properties":{"NAME":"Santa Maria","POP_MAX":110705}},{"type":"Point","coordinates":[1678,7316],"properties":{"NAME":"Tulare","POP_MAX":55908}},{"type":"Point","coordinates":[1595,7612],"properties":{"NAME":"Mt. Shasta","POP_MAX":3855}},{"type":"Point","coordinates":[1542,7638],"properties":{"NAME":"Crescent City","POP_MAX":11534}},{"type":"Point","coordinates":[2076,7568],"properties":{"NAME":"Fort Collins","POP_MAX":228385}},{"type":"Point","coordinates":[2087,7436],"properties":{"NAME":"Pueblo","POP_MAX":112195}},{"type":"Point","coordinates":[2143,7425],"properties":{"NAME":"Lamar","POP_MAX":8620}},{"type":"Point","coordinates":[2091,7372],"properties":{"NAME":"Trinidad","POP_MAX":9156}},{"type":"Point","coordinates":[2023,7451],"properties":{"NAME":"Gunnison","POP_MAX":7324}},{"type":"Point","coordinates":[1997,7378],"properties":{"NAME":"Durango","POP_MAX":23233}},{"type":"Point","coordinates":[1997,7447],"properties":{"NAME":"Montrose","POP_MAX":21789}},{"type":"Point","coordinates":[2006,7566],"properties":{"NAME":"Craig","POP_MAX":9391}},{"type":"Point","coordinates":[2070,7538],"properties":{"NAME":"Boulder","POP_MAX":122274}},{"type":"Point","coordinates":[1803,7303],"properties":{"NAME":"Boulder City","POP_MAX":15479}},{"type":"Point","coordinates":[1722,7592],"properties":{"NAME":"Winnemucca","POP_MAX":9666}},{"type":"Point","coordinates":[2090,7153],"properties":{"NAME":"Roswell","POP_MAX":46096}},{"type":"Point","coordinates":[2127,7211],"properties":{"NAME":"Clovis","POP_MAX":33792}},{"type":"Point","coordinates":[2028,7090],"properties":{"NAME":"Las Cruces","POP_MAX":115167}},{"type":"Point","coordinates":[2129,7113],"properties":{"NAME":"Hobbs","POP_MAX":28738}},{"type":"Point","coordinates":[2024,7191],"properties":{"NAME":"Socorro","POP_MAX":8668}},{"type":"Point","coordinates":[1973,7276],"properties":{"NAME":"Gallup","POP_MAX":23800}},{"type":"Point","coordinates":[2093,7356],"properties":{"NAME":"Raton","POP_MAX":7073}},{"type":"Point","coordinates":[2113,7256],"properties":{"NAME":"Tucumcari","POP_MAX":5313}},{"type":"Point","coordinates":[1566,7722],"properties":{"NAME":"Roseburg","POP_MAX":30479}},{"type":"Point","coordinates":[1693,7865],"properties":{"NAME":"Pendleton","POP_MAX":16799}},{"type":"Point","coordinates":[1689,7792],"properties":{"NAME":"John Day","POP_MAX":1573}},{"type":"Point","coordinates":[1567,7677],"properties":{"NAME":"Grants Pass","POP_MAX":46189}},{"type":"Point","coordinates":[1568,7801],"properties":{"NAME":"Corvallis","POP_MAX":59030}},{"type":"Point","coordinates":[1573,7804],"properties":{"NAME":"Albany","POP_MAX":51376}},{"type":"Point","coordinates":[1553,7894],"properties":{"NAME":"Astoria","POP_MAX":10011}},{"type":"Point","coordinates":[1887,7636],"properties":{"NAME":"Logan","POP_MAX":72490}},{"type":"Point","coordinates":[1859,7411],"properties":{"NAME":"Parowan","POP_MAX":2571}},{"type":"Point","coordinates":[1868,7365],"properties":{"NAME":"Kanab","POP_MAX":3442}},{"type":"Point","coordinates":[1956,7412],"properties":{"NAME":"Monticello","POP_MAX":1864}},{"type":"Point","coordinates":[1950,7453],"properties":{"NAME":"Moab","POP_MAX":5730}},{"type":"Point","coordinates":[1915,7513],"properties":{"NAME":"Price","POP_MAX":10281}},{"type":"Point","coordinates":[1853,7401],"properties":{"NAME":"Cedar City","POP_MAX":27738}},{"type":"Point","coordinates":[1951,7562],"properties":{"NAME":"Vernal","POP_MAX":14353}},{"type":"Point","coordinates":[1883,7607],"properties":{"NAME":"Ogden","POP_MAX":377224}},{"type":"Point","coordinates":[1953,7624],"properties":{"NAME":"Green River","POP_MAX":11358}},{"type":"Point","coordinates":[2015,7640],"properties":{"NAME":"Rawlins","POP_MAX":8533}},{"type":"Point","coordinates":[2066,7696],"properties":{"NAME":"Douglas","POP_MAX":6298}},{"type":"Point","coordinates":[1983,7711],"properties":{"NAME":"Riverton","POP_MAX":11508}},{"type":"Point","coordinates":[1988,7747],"properties":{"NAME":"Thermopolis","POP_MAX":3445}},{"type":"Point","coordinates":[2063,7784],"properties":{"NAME":"Gillette","POP_MAX":29113}},{"type":"Point","coordinates":[2475,7295],"properties":{"NAME":"Jonesboro","POP_MAX":58619}},{"type":"Point","coordinates":[2383,7156],"properties":{"NAME":"Texarkana","POP_MAX":74414}},{"type":"Point","coordinates":[2439,7201],"properties":{"NAME":"Pine Bluff","POP_MAX":53217}},{"type":"Point","coordinates":[2410,7217],"properties":{"NAME":"Hot Springs","POP_MAX":44182}},{"type":"Point","coordinates":[2372,7268],"properties":{"NAME":"Fort Smith","POP_MAX":93988}},{"type":"Point","coordinates":[2379,7307],"properties":{"NAME":"Fayetteville","POP_MAX":151671}},{"type":"Point","coordinates":[2427,7251],"properties":{"NAME":"Conway","POP_MAX":61995}},{"type":"Point","coordinates":[2421,7142],"properties":{"NAME":"El Dorado","POP_MAX":22416}},{"type":"Point","coordinates":[2479,7626],"properties":{"NAME":"Davenport","POP_MAX":255738}},{"type":"Point","coordinates":[2464,7583],"properties":{"NAME":"Burlington","POP_MAX":29773}},{"type":"Point","coordinates":[2476,7681],"properties":{"NAME":"Dubuque","POP_MAX":62483}},{"type":"Point","coordinates":[2430,7680],"properties":{"NAME":"Waterloo","POP_MAX":98347}},{"type":"Point","coordinates":[2317,7681],"properties":{"NAME":"Sioux City","POP_MAX":90932}},{"type":"Point","coordinates":[2332,7609],"properties":{"NAME":"Council Bluffs","POP_MAX":101805}},{"type":"Point","coordinates":[2394,7655],"properties":{"NAME":"Ames","POP_MAX":57104}},{"type":"Point","coordinates":[2406,7719],"properties":{"NAME":"Mason City","POP_MAX":27802}},{"type":"Point","coordinates":[2323,7443],"properties":{"NAME":"Emporia","POP_MAX":29048}},{"type":"Point","coordinates":[2283,7468],"properties":{"NAME":"Salina","POP_MAX":48031}},{"type":"Point","coordinates":[2216,7406],"properties":{"NAME":"Dodge City","POP_MAX":25932}},{"type":"Point","coordinates":[2338,7364],"properties":{"NAME":"Coffeyville","POP_MAX":11760}},{"type":"Point","coordinates":[2481,7465],"properties":{"NAME":"St. Charles","POP_MAX":360485}},{"type":"Point","coordinates":[2484,7348],"properties":{"NAME":"Poplar Bluff","POP_MAX":20662}},{"type":"Point","coordinates":[2369,7367],"properties":{"NAME":"Joplin","POP_MAX":73763}},{"type":"Point","coordinates":[2430,7475],"properties":{"NAME":"Columbia","POP_MAX":398093}},{"type":"Point","coordinates":[2360,7522],"properties":{"NAME":"St. Joseph","POP_MAX":78012}},{"type":"Point","coordinates":[2199,7548],"properties":{"NAME":"McCook","POP_MAX":8012}},{"type":"Point","coordinates":[2288,7653],"properties":{"NAME":"Norfolk","POP_MAX":25030}},{"type":"Point","coordinates":[2195,7602],"properties":{"NAME":"North Platte","POP_MAX":25247}},{"type":"Point","coordinates":[2133,7602],"properties":{"NAME":"Sidney","POP_MAX":6492}},{"type":"Point","coordinates":[2114,7644],"properties":{"NAME":"Scottsbluff","POP_MAX":25475}},{"type":"Point","coordinates":[2133,7700],"properties":{"NAME":"Chadron","POP_MAX":5798}},{"type":"Point","coordinates":[2261,7223],"properties":{"NAME":"Lawton","POP_MAX":91752}},{"type":"Point","coordinates":[2290,7259],"properties":{"NAME":"Norman","POP_MAX":113525}},{"type":"Point","coordinates":[2345,7289],"properties":{"NAME":"Muskogee","POP_MAX":39295}},{"type":"Point","coordinates":[2298,7345],"properties":{"NAME":"Ponca City","POP_MAX":25273}},{"type":"Point","coordinates":[2302,7266],"properties":{"NAME":"Shawnee","POP_MAX":29628}},{"type":"Point","coordinates":[2233,7329],"properties":{"NAME":"Woodward","POP_MAX":12931}},{"type":"Point","coordinates":[2175,7344],"properties":{"NAME":"Guymon","POP_MAX":11178}},{"type":"Point","coordinates":[2289,7703],"properties":{"NAME":"Yankton","POP_MAX":15580}},{"type":"Point","coordinates":[2306,7785],"properties":{"NAME":"Brookings","POP_MAX":22411}},{"type":"Point","coordinates":[2271,7751],"properties":{"NAME":"Mitchell","POP_MAX":15205}},{"type":"Point","coordinates":[2259,7853],"properties":{"NAME":"Aberdeen","POP_MAX":26041}},{"type":"Point","coordinates":[2204,7857],"properties":{"NAME":"Mobridge","POP_MAX":3156}},{"type":"Point","coordinates":[2475,6933],"properties":{"NAME":"Houma","POP_MAX":64592}},{"type":"Point","coordinates":[2436,7101],"properties":{"NAME":"Monroe","POP_MAX":101724}},{"type":"Point","coordinates":[2343,6974],"properties":{"NAME":"Conroe","POP_MAX":41643}},{"type":"Point","coordinates":[2365,7049],"properties":{"NAME":"Nacogdoches","POP_MAX":30691}},{"type":"Point","coordinates":[2203,6881],"properties":{"NAME":"Eagle Pass","POP_MAX":53276}},{"type":"Point","coordinates":[2268,6742],"properties":{"NAME":"Edinburg","POP_MAX":150000}},{"type":"Point","coordinates":[2276,6812],"properties":{"NAME":"Kingsville","POP_MAX":25264}},{"type":"Point","coordinates":[2386,6950],"properties":{"NAME":"Port Arthur","POP_MAX":56945}},{"type":"Point","coordinates":[2340,6998],"properties":{"NAME":"Huntsville","POP_MAX":35590}},{"type":"Point","coordinates":[2280,7021],"properties":{"NAME":"Killeen","POP_MAX":137919}},{"type":"Point","coordinates":[2363,7034],"properties":{"NAME":"Lufkin","POP_MAX":43264}},{"type":"Point","coordinates":[2191,6919],"properties":{"NAME":"Del Rio","POP_MAX":36068}},{"type":"Point","coordinates":[2204,7041],"properties":{"NAME":"San Angelo","POP_MAX":88256}},{"type":"Point","coordinates":[2311,7167],"properties":{"NAME":"Sherman","POP_MAX":40284}},{"type":"Point","coordinates":[2381,6961],"properties":{"NAME":"Beaumont","POP_MAX":111485}},{"type":"Point","coordinates":[2329,6897],"properties":{"NAME":"Bay City","POP_MAX":18663}},{"type":"Point","coordinates":[2310,6876],"properties":{"NAME":"Port Lavaca","POP_MAX":11743}},{"type":"Point","coordinates":[2268,6795],"properties":{"NAME":"Falfurrias","POP_MAX":5349}},{"type":"Point","coordinates":[2279,6864],"properties":{"NAME":"Beeville","POP_MAX":13004}},{"type":"Point","coordinates":[2136,7008],"properties":{"NAME":"Fort Stockton","POP_MAX":7721}},{"type":"Point","coordinates":[2119,7038],"properties":{"NAME":"Pecos","POP_MAX":8372}},{"type":"Point","coordinates":[2162,7296],"properties":{"NAME":"Dumas","POP_MAX":13629}},{"type":"Point","coordinates":[2296,7142],"properties":{"NAME":"Denton","POP_MAX":176930}},{"type":"Point","coordinates":[2158,7074],"properties":{"NAME":"Midland","POP_MAX":98501}},{"type":"Point","coordinates":[2290,7020],"properties":{"NAME":"Temple","POP_MAX":61161}},{"type":"Point","coordinates":[3040,5761],"properties":{"NAME":"Trujillo","POP_MAX":50353}},{"type":"Point","coordinates":[3010,5827],"properties":{"NAME":"Santa Rita","POP_MAX":31810}},{"type":"Point","coordinates":[2981,5801],"properties":{"NAME":"Machiques","POP_MAX":62968}},{"type":"Point","coordinates":[2999,5739],"properties":{"NAME":"San Carlos del Zulia","POP_MAX":97288}},{"type":"Point","coordinates":[3103,5824],"properties":{"NAME":"Puerto Cabello","POP_MAX":174000}},{"type":"Point","coordinates":[3074,5772],"properties":{"NAME":"Acarigua","POP_MAX":260921}},{"type":"Point","coordinates":[2971,7613],"properties":{"NAME":"New Haven","POP_MAX":846766}},{"type":"Point","coordinates":[3015,7688],"properties":{"NAME":"Lowell","POP_MAX":723629}},{"type":"Point","coordinates":[3002,7667],"properties":{"NAME":"Worcester","POP_MAX":287365}},{"type":"Point","coordinates":[3012,7709],"properties":{"NAME":"Manchester","POP_MAX":196566}},{"type":"Point","coordinates":[3015,7622],"properties":{"NAME":"Newport","POP_MAX":45968}},{"type":"Point","coordinates":[2623,7027],"properties":{"NAME":"Dothan","POP_MAX":61741}},{"type":"Point","coordinates":[2563,7143],"properties":{"NAME":"Tuscaloosa","POP_MAX":121373}},{"type":"Point","coordinates":[2606,7189],"properties":{"NAME":"Gadsden","POP_MAX":41709}},{"type":"Point","coordinates":[2611,7033],"properties":{"NAME":"Enterprise","POP_MAX":24205}},{"type":"Point","coordinates":[2578,7096],"properties":{"NAME":"Selma","POP_MAX":20126}},{"type":"Point","coordinates":[2765,6708],"properties":{"NAME":"Coral Gables","POP_MAX":150000}},{"type":"Point","coordinates":[2718,6759],"properties":{"NAME":"Cape Coral","POP_MAX":132489}},{"type":"Point","coordinates":[2724,6732],"properties":{"NAME":"Naples","POP_MAX":262306}},{"type":"Point","coordinates":[2764,6808],"properties":{"NAME":"Fort Pierce","POP_MAX":228245}},{"type":"Point","coordinates":[2734,6857],"properties":{"NAME":"Kissimmee","POP_MAX":225494}},{"type":"Point","coordinates":[2751,6876],"properties":{"NAME":"Titusville","POP_MAX":52311}},{"type":"Point","coordinates":[2737,6950],"properties":{"NAME":"St. Augustine","POP_MAX":76331}},{"type":"Point","coordinates":[2714,6909],"properties":{"NAME":"Ocala","POP_MAX":141382}},{"type":"Point","coordinates":[2770,6732],"properties":{"NAME":"Fort Lauderdale","POP_MAX":2042042}},{"type":"Point","coordinates":[2634,6940],"properties":{"NAME":"Apalachicola","POP_MAX":2284}},{"type":"Point","coordinates":[2763,6819],"properties":{"NAME":"Vero Beach","POP_MAX":86039}},{"type":"Point","coordinates":[2682,7004],"properties":{"NAME":"Valdosta","POP_MAX":61179}},{"type":"Point","coordinates":[2658,7048],"properties":{"NAME":"Albany","POP_MAX":88766}},{"type":"Point","coordinates":[2679,7186],"properties":{"NAME":"Athens","POP_MAX":110301}},{"type":"Point","coordinates":[2672,7121],"properties":{"NAME":"Macon","POP_MAX":115592}},{"type":"Point","coordinates":[2635,7099],"properties":{"NAME":"Columbus","POP_MAX":217980}},{"type":"Point","coordinates":[2694,7043],"properties":{"NAME":"Douglas","POP_MAX":13441}},{"type":"Point","coordinates":[2692,7103],"properties":{"NAME":"Dublin","POP_MAX":22623}},{"type":"Point","coordinates":[2520,6977],"properties":{"NAME":"Gulfport","POP_MAX":82165}},{"type":"Point","coordinates":[2515,7033],"properties":{"NAME":"Hattiesburg","POP_MAX":58874}},{"type":"Point","coordinates":[2531,7203],"properties":{"NAME":"Tupelo","POP_MAX":35956}},{"type":"Point","coordinates":[2465,7154],"properties":{"NAME":"Greenville","POP_MAX":38107}},{"type":"Point","coordinates":[2456,7046],"properties":{"NAME":"Natchez","POP_MAX":23863}},{"type":"Point","coordinates":[2780,7199],"properties":{"NAME":"Florence","POP_MAX":57438}},{"type":"Point","coordinates":[2707,7237],"properties":{"NAME":"Greenville","POP_MAX":350954}},{"type":"Point","coordinates":[2764,7183],"properties":{"NAME":"Sumter","POP_MAX":50868}},{"type":"Point","coordinates":[2700,7217],"properties":{"NAME":"Anderson","POP_MAX":61558}},{"type":"Point","coordinates":[2726,7162],"properties":{"NAME":"Aiken","POP_MAX":46196}},{"type":"Point","coordinates":[2754,7097],"properties":{"NAME":"Beaufort","POP_MAX":31626}},{"type":"Point","coordinates":[2745,7242],"properties":{"NAME":"Rock Hill","POP_MAX":94564}},{"type":"Point","coordinates":[2524,7526],"properties":{"NAME":"Decatur","POP_MAX":77868}},{"type":"Point","coordinates":[2490,7471],"properties":{"NAME":"Alton","POP_MAX":84276}},{"type":"Point","coordinates":[2456,7532],"properties":{"NAME":"Quincy","POP_MAX":47108}},{"type":"Point","coordinates":[2545,7542],"properties":{"NAME":"Urbana","POP_MAX":144074}},{"type":"Point","coordinates":[2523,7564],"properties":{"NAME":"Bloomington","POP_MAX":128979}},{"type":"Point","coordinates":[2555,7601],"properties":{"NAME":"Kankakee","POP_MAX":69608}},{"type":"Point","coordinates":[2555,7673],"properties":{"NAME":"Waukegan","POP_MAX":200000}},{"type":"Point","coordinates":[2542,7638],"properties":{"NAME":"Aurora","POP_MAX":350000}},{"type":"Point","coordinates":[2517,7404],"properties":{"NAME":"Carbondale","POP_MAX":32444}},{"type":"Point","coordinates":[2495,7450],"properties":{"NAME":"Belleville","POP_MAX":143900}},{"type":"Point","coordinates":[2592,7487],"properties":{"NAME":"Bloomington","POP_MAX":100310}},{"type":"Point","coordinates":[2623,7547],"properties":{"NAME":"Muncie","POP_MAX":85449}},{"type":"Point","coordinates":[2603,7564],"properties":{"NAME":"Kokomo","POP_MAX":61121}},{"type":"Point","coordinates":[2569,7627],"properties":{"NAME":"Gary","POP_MAX":591180}},{"type":"Point","coordinates":[2631,7598],"properties":{"NAME":"Fort Wayne","POP_MAX":299871}},{"type":"Point","coordinates":[2648,7483],"properties":{"NAME":"Covington","POP_MAX":585489}},{"type":"Point","coordinates":[2594,7361],"properties":{"NAME":"Bowling Green","POP_MAX":71140}},{"type":"Point","coordinates":[2534,7367],"properties":{"NAME":"Paducah","POP_MAX":41317}},{"type":"Point","coordinates":[2575,7407],"properties":{"NAME":"Owensboro","POP_MAX":67825}},{"type":"Point","coordinates":[2845,7232],"properties":{"NAME":"Jacksonville","POP_MAX":77288}},{"type":"Point","coordinates":[2829,7268],"properties":{"NAME":"Goldsboro","POP_MAX":47602}},{"type":"Point","coordinates":[2847,7281],"properties":{"NAME":"Greenville","POP_MAX":92565}},{"type":"Point","coordinates":[2805,7250],"properties":{"NAME":"Fayetteville","POP_MAX":243306}},{"type":"Point","coordinates":[2736,7288],"properties":{"NAME":"Hickory","POP_MAX":89462}},{"type":"Point","coordinates":[2702,7281],"properties":{"NAME":"Asheville","POP_MAX":142755}},{"type":"Point","coordinates":[2766,7310],"properties":{"NAME":"Winston-Salem","POP_MAX":281683}},{"type":"Point","coordinates":[2893,7308],"properties":{"NAME":"Kitty Hawk","POP_MAX":3413}},{"type":"Point","coordinates":[2731,7598],"properties":{"NAME":"Akron","POP_MAX":703200}},{"type":"Point","coordinates":[2659,7579],"properties":{"NAME":"Lima","POP_MAX":68364}},{"type":"Point","coordinates":[2655,7304],"properties":{"NAME":"Oak Ridge","POP_MAX":33556}},{"type":"Point","coordinates":[2596,7295],"properties":{"NAME":"Murfreesboro","POP_MAX":115774}},{"type":"Point","coordinates":[2569,7335],"properties":{"NAME":"Clarksville","POP_MAX":132536}},{"type":"Point","coordinates":[2528,7281],"properties":{"NAME":"Jackson","POP_MAX":63196}},{"type":"Point","coordinates":[2854,7467],"properties":{"NAME":"Alexandria","POP_MAX":127273}},{"type":"Point","coordinates":[2844,7437],"properties":{"NAME":"Fredericksburg","POP_MAX":133134}},{"type":"Point","coordinates":[2775,7378],"properties":{"NAME":"Roanoke","POP_MAX":198171}},{"type":"Point","coordinates":[2790,7338],"properties":{"NAME":"Danville","POP_MAX":45894}},{"type":"Point","coordinates":[2825,7488],"properties":{"NAME":"Winchester","POP_MAX":53941}},{"type":"Point","coordinates":[2713,7339],"properties":{"NAME":"Bristol","POP_MAX":37443}},{"type":"Point","coordinates":[2436,7925],"properties":{"NAME":"Superior","POP_MAX":27580}},{"type":"Point","coordinates":[2546,7734],"properties":{"NAME":"West Bend","POP_MAX":34530}},{"type":"Point","coordinates":[2538,7754],"properties":{"NAME":"Fond du Lac","POP_MAX":54299}},{"type":"Point","coordinates":[2536,7769],"properties":{"NAME":"Oshkosh","POP_MAX":72698}},{"type":"Point","coordinates":[2511,7863],"properties":{"NAME":"Rhinelander","POP_MAX":11483}},{"type":"Point","coordinates":[2556,7694],"properties":{"NAME":"Racine","POP_MAX":131654}},{"type":"Point","coordinates":[2561,7831],"properties":{"NAME":"Marinette","POP_MAX":27169}},{"type":"Point","coordinates":[2753,7539],"properties":{"NAME":"Wheeling","POP_MAX":52492}},{"type":"Point","coordinates":[2775,7514],"properties":{"NAME":"Morgantown","POP_MAX":58808}},{"type":"Point","coordinates":[2705,7444],"properties":{"NAME":"Huntington","POP_MAX":85396}},{"type":"Point","coordinates":[2741,7407],"properties":{"NAME":"Beckley","POP_MAX":37836}},{"type":"Point","coordinates":[2898,7521],"properties":{"NAME":"Wilmington","POP_MAX":161560}},{"type":"Point","coordinates":[2808,7516],"properties":{"NAME":"Cumberland","POP_MAX":21316}},{"type":"Point","coordinates":[2929,7499],"properties":{"NAME":"Atlantic City","POP_MAX":76573}},{"type":"Point","coordinates":[2936,7576],"properties":{"NAME":"Newark","POP_MAX":280123}},{"type":"Point","coordinates":[2942,7699],"properties":{"NAME":"Schenectady","POP_MAX":149255}},{"type":"Point","coordinates":[2887,7657],"properties":{"NAME":"Binghamton","POP_MAX":139895}},{"type":"Point","coordinates":[2906,7715],"properties":{"NAME":"Utica","POP_MAX":105150}},{"type":"Point","coordinates":[2887,7766],"properties":{"NAME":"Watertown","POP_MAX":33821}},{"type":"Point","coordinates":[2800,7715],"properties":{"NAME":"Niagara Falls","POP_MAX":153134}},{"type":"Point","coordinates":[2795,7657],"properties":{"NAME":"Jamestown","POP_MAX":45756}},{"type":"Point","coordinates":[2862,7657],"properties":{"NAME":"Elmira","POP_MAX":62376}},{"type":"Point","coordinates":[2865,7534],"properties":{"NAME":"York","POP_MAX":218010}},{"type":"Point","coordinates":[2804,7555],"properties":{"NAME":"Johnstown","POP_MAX":69286}},{"type":"Point","coordinates":[2894,7617],"properties":{"NAME":"Scranton","POP_MAX":156196}},{"type":"Point","coordinates":[2833,7582],"properties":{"NAME":"State College","POP_MAX":87926}},{"type":"Point","coordinates":[2771,7659],"properties":{"NAME":"Erie","POP_MAX":178182}},{"type":"Point","coordinates":[2888,7608],"properties":{"NAME":"Wilkes Barre","POP_MAX":158913}},{"type":"Point","coordinates":[3414,5562],"properties":{"NAME":"Nieuw Nickerie","POP_MAX":15992}},{"type":"Point","coordinates":[3263,5682],"properties":{"NAME":"Upata","POP_MAX":53685}},{"type":"Point","coordinates":[3260,5643],"properties":{"NAME":"El Manteco","POP_MAX":2215}},{"type":"Point","coordinates":[3226,5751],"properties":{"NAME":"Chaguaramas","POP_MAX":15000}},{"type":"Point","coordinates":[3199,5804],"properties":{"NAME":"Barcelona","POP_MAX":600954}},{"type":"Point","coordinates":[3212,5732],"properties":{"NAME":"El Tigre","POP_MAX":197440}},{"type":"Point","coordinates":[3136,5831],"properties":{"NAME":"Maiquetia","POP_MAX":315442}},{"type":"Point","coordinates":[3123,5735],"properties":{"NAME":"Calabozo","POP_MAX":117132}},{"type":"Point","coordinates":[3182,5758],"properties":{"NAME":"Zaraza","POP_MAX":41483}},{"type":"Point","coordinates":[3153,5788],"properties":{"NAME":"Altagracia de Orituco","POP_MAX":40052}},{"type":"Point","coordinates":[3273,5742],"properties":{"NAME":"Tucupita","POP_MAX":51534}},{"type":"Point","coordinates":[3223,5852],"properties":{"NAME":"Porlamar","POP_MAX":196934}},{"type":"Point","coordinates":[3469,5509],"properties":{"NAME":"Brokopondo","POP_MAX":8340}},{"type":"Point","coordinates":[3433,5558],"properties":{"NAME":"Totness","POP_MAX":1685}},{"type":"Point","coordinates":[3102,7790],"properties":{"NAME":"Bar Harbor","POP_MAX":6090}},{"type":"Point","coordinates":[3046,7773],"properties":{"NAME":"Lewiston","POP_MAX":57688}},{"type":"Point","coordinates":[3108,7930],"properties":{"NAME":"Presque Isle","POP_MAX":9466}},{"type":"Point","coordinates":[2670,7669],"properties":{"NAME":"Ann Arbor","POP_MAX":265976}},{"type":"Point","coordinates":[2618,7669],"properties":{"NAME":"Kalamazoo","POP_MAX":183381}},{"type":"Point","coordinates":[2599,7723],"properties":{"NAME":"Muskegon","POP_MAX":101177}},{"type":"Point","coordinates":[2671,7710],"properties":{"NAME":"Flint","POP_MAX":295212}},{"type":"Point","coordinates":[2616,7708],"properties":{"NAME":"Grand Rapids","POP_MAX":535829}},{"type":"Point","coordinates":[2682,7689],"properties":{"NAME":"Pontiac","POP_MAX":67994}},{"type":"Point","coordinates":[2623,7782],"properties":{"NAME":"Cadillac","POP_MAX":14097}},{"type":"Point","coordinates":[2617,7812],"properties":{"NAME":"Traverse City","POP_MAX":43189}},{"type":"Point","coordinates":[2635,7847],"properties":{"NAME":"Petoskey","POP_MAX":12667}},{"type":"Point","coordinates":[2577,7869],"properties":{"NAME":"Escanaba","POP_MAX":17318}},{"type":"Point","coordinates":[2567,7915],"properties":{"NAME":"Marquette","POP_MAX":26591}},{"type":"Point","coordinates":[2535,7949],"properties":{"NAME":"Hancock","POP_MAX":16355}},{"type":"Point","coordinates":[4934,7352],"properties":{"NAME":"Almeria","POP_MAX":179405}},{"type":"Point","coordinates":[4879,7346],"properties":{"NAME":"Malaga","POP_MAX":550058}},{"type":"Point","coordinates":[4896,7406],"properties":{"NAME":"Ja�n","POP_MAX":116400}},{"type":"Point","coordinates":[4809,7376],"properties":{"NAME":"Huelva","POP_MAX":144174}},{"type":"Point","coordinates":[4950,7478],"properties":{"NAME":"Albacete","POP_MAX":158094}},{"type":"Point","coordinates":[4890,7528],"properties":{"NAME":"Toledo","POP_MAX":74632}},{"type":"Point","coordinates":[4914,7572],"properties":{"NAME":"Guadalajara","POP_MAX":72850}},{"type":"Point","coordinates":[4896,7732],"properties":{"NAME":"Santander","POP_MAX":208763}},{"type":"Point","coordinates":[4844,7592],"properties":{"NAME":"Salamanca","POP_MAX":162353}},{"type":"Point","coordinates":[4899,7672],"properties":{"NAME":"Burgos","POP_MAX":170183}},{"type":"Point","coordinates":[5019,5617],"properties":{"NAME":"Kpalime","POP_MAX":100479}},{"type":"Point","coordinates":[5034,5738],"properties":{"NAME":"Sokode","POP_MAX":117811}},{"type":"Point","coordinates":[5015,5817],"properties":{"NAME":"Mango","POP_MAX":42626}},{"type":"Point","coordinates":[5314,7138],"properties":{"NAME":"Ben Gardane","POP_MAX":19843}},{"type":"Point","coordinates":[5311,7159],"properties":{"NAME":"Zarzis","POP_MAX":159161}},{"type":"Point","coordinates":[5300,7073],"properties":{"NAME":"Dehibat","POP_MAX":3525}},{"type":"Point","coordinates":[5037,7601],"properties":{"NAME":"Tarragona","POP_MAX":126291}},{"type":"Point","coordinates":[5228,7184],"properties":{"NAME":"Tozeur","POP_MAX":39504}},{"type":"Point","coordinates":[5258,7346],"properties":{"NAME":"Beja","POP_MAX":59567}},{"type":"Point","coordinates":[5276,7379],"properties":{"NAME":"Bizerte","POP_MAX":139843}},{"type":"Point","coordinates":[5301,7331],"properties":{"NAME":"Nabeul","POP_MAX":115149}},{"type":"Point","coordinates":[5245,7314],"properties":{"NAME":"El Kef","POP_MAX":47979}},{"type":"Point","coordinates":[5248,7256],"properties":{"NAME":"Qasserine","POP_MAX":81987}},{"type":"Point","coordinates":[5283,7182],"properties":{"NAME":"Gabes","POP_MAX":219517}},{"type":"Point","coordinates":[5246,7212],"properties":{"NAME":"Gafsa","POP_MAX":126803}},{"type":"Point","coordinates":[5283,7285],"properties":{"NAME":"Qairouan","POP_MAX":144522}},{"type":"Point","coordinates":[6001,7239],"properties":{"NAME":"Tartus","POP_MAX":162980}},{"type":"Point","coordinates":[6089,7300],"properties":{"NAME":"Ar Raqqah","POP_MAX":177636}},{"type":"Point","coordinates":[6025,7255],"properties":{"NAME":"Hamah","POP_MAX":460602}},{"type":"Point","coordinates":[6068,7220],"properties":{"NAME":"Tadmur","POP_MAX":55111}},{"type":"Point","coordinates":[6142,7214],"properties":{"NAME":"Abu Kamal","POP_MAX":80808}},{"type":"Point","coordinates":[6120,7265],"properties":{"NAME":"Dayr az Zawr","POP_MAX":309141}},{"type":"Point","coordinates":[6020,7113],"properties":{"NAME":"As Suwayda","POP_MAX":72248}},{"type":"Point","coordinates":[6025,7189],"properties":{"NAME":"Ad Nabk","POP_MAX":50178}},{"type":"Point","coordinates":[5959,5899],"properties":{"NAME":"Ad Damazin","POP_MAX":186051}},{"type":"Point","coordinates":[6015,6280],"properties":{"NAME":"Haiya","POP_MAX":20000}},{"type":"Point","coordinates":[6208,6040],"properties":{"NAME":"Zabid","POP_MAX":152504}},{"type":"Point","coordinates":[6216,6127],"properties":{"NAME":"Hajjah","POP_MAX":208287}},{"type":"Point","coordinates":[6252,5974],"properties":{"NAME":"Lahij","POP_MAX":66288}},{"type":"Point","coordinates":[5233,7944],"properties":{"NAME":"Luzern","POP_MAX":250000}},{"type":"Point","coordinates":[5252,7884],"properties":{"NAME":"Lugano","POP_MAX":105388}},{"type":"Point","coordinates":[1315,8491],"properties":{"NAME":"Wrangell","POP_MAX":2070}},{"type":"Point","coordinates":[376,9058],"properties":{"NAME":"Shishmaref","POP_MAX":254}},{"type":"Point","coordinates":[1229,8586],"properties":{"NAME":"Hoonah","POP_MAX":361}},{"type":"Point","coordinates":[150,8243],"properties":{"NAME":"Atka","POP_MAX":61}},{"type":"Point","coordinates":[298,8286],"properties":{"NAME":"Nikolski","POP_MAX":18}},{"type":"Point","coordinates":[700,8554],"properties":{"NAME":"Karluk","POP_MAX":96}},{"type":"Point","coordinates":[450,8397],"properties":{"NAME":"False Pass","POP_MAX":35}},{"type":"Point","coordinates":[420,9143],"properties":{"NAME":"Kivalina","POP_MAX":374}},{"type":"Point","coordinates":[687,8679],"properties":{"NAME":"Newhalen","POP_MAX":160}},{"type":"Point","coordinates":[613,8554],"properties":{"NAME":"Pilot Point","POP_MAX":68}},{"type":"Point","coordinates":[590,8480],"properties":{"NAME":"Chignik","POP_MAX":118}},{"type":"Point","coordinates":[638,8619],"properties":{"NAME":"King Salmon","POP_MAX":292}},{"type":"Point","coordinates":[492,8681],"properties":{"NAME":"Quinhagak","POP_MAX":250}},{"type":"Point","coordinates":[558,8787],"properties":{"NAME":"Aniak","POP_MAX":501}},{"type":"Point","coordinates":[446,8871],"properties":{"NAME":"Kotlit","POP_MAX":1002}},{"type":"Point","coordinates":[523,8920],"properties":{"NAME":"Unalakleet","POP_MAX":741}},{"type":"Point","coordinates":[513,8982],"properties":{"NAME":"Koyuk","POP_MAX":254}},{"type":"Point","coordinates":[668,8867],"properties":{"NAME":"McGrath","POP_MAX":138}},{"type":"Point","coordinates":[705,9046],"properties":{"NAME":"Hughes","POP_MAX":78}},{"type":"Point","coordinates":[605,9106],"properties":{"NAME":"Ambler","POP_MAX":258}},{"type":"Point","coordinates":[320,9020],"properties":{"NAME":"Wales","POP_MAX":99}},{"type":"Point","coordinates":[473,9095],"properties":{"NAME":"Kotzebue","POP_MAX":3194}},{"type":"Point","coordinates":[839,8787],"properties":{"NAME":"Wasilla","POP_MAX":8521}},{"type":"Point","coordinates":[989,9033],"properties":{"NAME":"Circle","POP_MAX":100}},{"type":"Point","coordinates":[854,8912],"properties":{"NAME":"Denali Park","POP_MAX":1826}},{"type":"Point","coordinates":[1110,8669],"properties":{"NAME":"Yakutat","POP_MAX":109}},{"type":"Point","coordinates":[781,8674],"properties":{"NAME":"Homer","POP_MAX":6560}},{"type":"Point","coordinates":[1009,8891],"properties":{"NAME":"Tanacross","POP_MAX":136}},{"type":"Point","coordinates":[821,9125],"properties":{"NAME":"Wiseman","POP_MAX":14}},{"type":"Point","coordinates":[5458,8774],"properties":{"NAME":"Bolln�s","POP_MAX":13398}},{"type":"Point","coordinates":[5480,8734],"properties":{"NAME":"G�vle","POP_MAX":68635}},{"type":"Point","coordinates":[5458,8502],"properties":{"NAME":"Kalmar","POP_MAX":35024}},{"type":"Point","coordinates":[5415,8514],"properties":{"NAME":"V�xj�","POP_MAX":59600}},{"type":"Point","coordinates":[5426,8653],"properties":{"NAME":"�rebro","POP_MAX":98573}},{"type":"Point","coordinates":[5453,8614],"properties":{"NAME":"Norrk�ping","POP_MAX":88639}},{"type":"Point","coordinates":[5360,8502],"properties":{"NAME":"Halmstad","POP_MAX":55657}},{"type":"Point","coordinates":[5378,8658],"properties":{"NAME":"Karlstad","POP_MAX":74141}},{"type":"Point","coordinates":[5585,8972],"properties":{"NAME":"Skellefte�","POP_MAX":31311}},{"type":"Point","coordinates":[5512,8558],"properties":{"NAME":"Visby","POP_MAX":22593}},{"type":"Point","coordinates":[5960,7867],"properties":{"NAME":"Dzhankoy","POP_MAX":43879}},{"type":"Point","coordinates":[5931,7837],"properties":{"NAME":"Yevpatoriya","POP_MAX":105223}},{"type":"Point","coordinates":[6018,7847],"properties":{"NAME":"Kerch","POP_MAX":152195}},{"type":"Point","coordinates":[5952,7823],"properties":{"NAME":"Simferopol","POP_MAX":358108}},{"type":"Point","coordinates":[5910,7920],"properties":{"NAME":"Kherson","POP_MAX":320477}},{"type":"Point","coordinates":[5875,7973],"properties":{"NAME":"Voznesensk","POP_MAX":43996}},{"type":"Point","coordinates":[5890,8177],"properties":{"NAME":"Nizhyn","POP_MAX":116288}},{"type":"Point","coordinates":[5733,8151],"properties":{"NAME":"Rivne","POP_MAX":255106}},{"type":"Point","coordinates":[5724,8017],"properties":{"NAME":"Chernivtsi","POP_MAX":298251}},{"type":"Point","coordinates":[5690,8054],"properties":{"NAME":"Ivano-Frankivsk","POP_MAX":241239}},{"type":"Point","coordinates":[5714,8089],"properties":{"NAME":"Ternopil","POP_MAX":244768}},{"type":"Point","coordinates":[5708,8159],"properties":{"NAME":"Lutsk","POP_MAX":213661}},{"type":"Point","coordinates":[5690,8186],"properties":{"NAME":"Kovel","POP_MAX":71301}},{"type":"Point","coordinates":[5895,8083],"properties":{"NAME":"Cherkasy","POP_MAX":297568}},{"type":"Point","coordinates":[5900,8029],"properties":{"NAME":"Kirovohrad","POP_MAX":249454}},{"type":"Point","coordinates":[5805,7846],"properties":{"NAME":"Izmayil","POP_MAX":83194}},{"type":"Point","coordinates":[5795,8071],"properties":{"NAME":"Vinnytsya","POP_MAX":352115}},{"type":"Point","coordinates":[5800,8171],"properties":{"NAME":"Korosten","POP_MAX":72984}},{"type":"Point","coordinates":[5934,8224],"properties":{"NAME":"Shostka","POP_MAX":96825}},{"type":"Point","coordinates":[5960,7974],"properties":{"NAME":"Nikopol","POP_MAX":130500}},{"type":"Point","coordinates":[6049,8099],"properties":{"NAME":"Kupyansk","POP_MAX":78870}},{"type":"Point","coordinates":[6072,8053],"properties":{"NAME":"Lysychansk","POP_MAX":124421}},{"type":"Point","coordinates":[6098,8033],"properties":{"NAME":"Luhansk","POP_MAX":452000}},{"type":"Point","coordinates":[5965,8091],"properties":{"NAME":"Poltava","POP_MAX":317847}},{"type":"Point","coordinates":[5933,8062],"properties":{"NAME":"Kremenchuk","POP_MAX":232742}},{"type":"Point","coordinates":[5987,7932],"properties":{"NAME":"Melitopol","POP_MAX":158000}},{"type":"Point","coordinates":[6455,6158],"properties":{"NAME":"Al Ghaydah","POP_MAX":27404}},{"type":"Point","coordinates":[6251,6053],"properties":{"NAME":"Rida","POP_MAX":45233}},{"type":"Point","coordinates":[6507,5950],"properties":{"NAME":"Hadiboh","POP_MAX":11396}},{"type":"Point","coordinates":[6361,6141],"properties":{"NAME":"Saywun","POP_MAX":68747}},{"type":"Point","coordinates":[6560,6712],"properties":{"NAME":"Ras al Khaymah","POP_MAX":160849}},{"type":"Point","coordinates":[6571,6673],"properties":{"NAME":"Al Fujayrah","POP_MAX":94163}},{"type":"Point","coordinates":[6554,6622],"properties":{"NAME":"Al Ayn","POP_MAX":408733}},{"type":"Point","coordinates":[6516,7507],"properties":{"NAME":"Balkanabat","POP_MAX":110827}},{"type":"Point","coordinates":[6662,7382],"properties":{"NAME":"Kaka","POP_MAX":38381}},{"type":"Point","coordinates":[6800,7520],"properties":{"NAME":"Kogon","POP_MAX":107566}},{"type":"Point","coordinates":[6683,7616],"properties":{"NAME":"Khiwa","POP_MAX":149751}},{"type":"Point","coordinates":[6667,7706],"properties":{"NAME":"Chimboy","POP_MAX":36917}},{"type":"Point","coordinates":[6643,7714],"properties":{"NAME":"Qunghirot","POP_MAX":57758}},{"type":"Point","coordinates":[6790,7627],"properties":{"NAME":"Zarafshon","POP_MAX":63543}},{"type":"Point","coordinates":[6822,7542],"properties":{"NAME":"Navoi","POP_MAX":214828}},{"type":"Point","coordinates":[6818,7410],"properties":{"NAME":"Atamyrat","POP_MAX":33242}},{"type":"Point","coordinates":[6863,7481],"properties":{"NAME":"Shahrisabz","POP_MAX":498545}},{"type":"Point","coordinates":[6835,7470],"properties":{"NAME":"Qarshi","POP_MAX":386361}},{"type":"Point","coordinates":[6978,7567],"properties":{"NAME":"Qoqon","POP_MAX":350000}},{"type":"Point","coordinates":[6915,7419],"properties":{"NAME":"Kuybyshevskiy","POP_MAX":8925}},{"type":"Point","coordinates":[6945,7415],"properties":{"NAME":"Kulob","POP_MAX":115164}},{"type":"Point","coordinates":[6924,7531],"properties":{"NAME":"Uroteppa","POP_MAX":156621}},{"type":"Point","coordinates":[6891,7542],"properties":{"NAME":"Jizzax","POP_MAX":235352}},{"type":"Point","coordinates":[6956,7595],"properties":{"NAME":"Angren","POP_MAX":202070}},{"type":"Point","coordinates":[6940,7585],"properties":{"NAME":"Olmaliq","POP_MAX":121207}},{"type":"Point","coordinates":[7765,5826],"properties":{"NAME":"Chumphon","POP_MAX":85686}},{"type":"Point","coordinates":[7780,5690],"properties":{"NAME":"Thung Song","POP_MAX":28223}},{"type":"Point","coordinates":[7776,5655],"properties":{"NAME":"Trang","POP_MAX":147820}},{"type":"Point","coordinates":[7823,5597],"properties":{"NAME":"Yala","POP_MAX":148140}},{"type":"Point","coordinates":[7782,6371],"properties":{"NAME":"Chiang Rai","POP_MAX":117127}},{"type":"Point","coordinates":[7773,6277],"properties":{"NAME":"Lampang","POP_MAX":204081}},{"type":"Point","coordinates":[7809,6306],"properties":{"NAME":"Nan","POP_MAX":82483}},{"type":"Point","coordinates":[7785,6328],"properties":{"NAME":"Phayao","POP_MAX":21058}},{"type":"Point","coordinates":[7792,6269],"properties":{"NAME":"Phrae","POP_MAX":38538}},{"type":"Point","coordinates":[7795,6192],"properties":{"NAME":"Phitsanulok","POP_MAX":164017}},{"type":"Point","coordinates":[7780,6203],"properties":{"NAME":"Sukhothai","POP_MAX":10276}},{"type":"Point","coordinates":[7790,6239],"properties":{"NAME":"Uttaradit","POP_MAX":76630}},{"type":"Point","coordinates":[7774,6029],"properties":{"NAME":"Kanchanaburi","POP_MAX":63699}},{"type":"Point","coordinates":[7748,6186],"properties":{"NAME":"Mae Sot","POP_MAX":45781}},{"type":"Point","coordinates":[7763,6196],"properties":{"NAME":"Tak","POP_MAX":33146}},{"type":"Point","coordinates":[7788,6109],"properties":{"NAME":"Uthai Thani","POP_MAX":22219}},{"type":"Point","coordinates":[7805,6075],"properties":{"NAME":"Lop Buri","POP_MAX":57761}},{"type":"Point","coordinates":[7826,6032],"properties":{"NAME":"Prachin Buri","POP_MAX":79757}},{"type":"Point","coordinates":[7803,6049],"properties":{"NAME":"Ayutthaya","POP_MAX":145615}},{"type":"Point","coordinates":[7802,6029],"properties":{"NAME":"Pathum Thani","POP_MAX":154412}},{"type":"Point","coordinates":[7812,6059],"properties":{"NAME":"Saraburi","POP_MAX":70769}},{"type":"Point","coordinates":[7801,6019],"properties":{"NAME":"Nonthaburi","POP_MAX":258550}},{"type":"Point","coordinates":[7786,5977],"properties":{"NAME":"Phetchaburi","POP_MAX":90497}},{"type":"Point","coordinates":[7786,5946],"properties":{"NAME":"Hua Hin","POP_MAX":50456}},{"type":"Point","coordinates":[7782,6002],"properties":{"NAME":"Ratchaburi","POP_MAX":106996}},{"type":"Point","coordinates":[7804,6006],"properties":{"NAME":"Samut Prakan","POP_MAX":388920}},{"type":"Point","coordinates":[7908,6093],"properties":{"NAME":"Sisaket","POP_MAX":44751}},{"type":"Point","coordinates":[7985,6432],"properties":{"NAME":"Hong Gai","POP_MAX":172915}},{"type":"Point","coordinates":[7991,6437],"properties":{"NAME":"Cam Pha","POP_MAX":135477}},{"type":"Point","coordinates":[7813,5980],"properties":{"NAME":"Si Racha","POP_MAX":178916}},{"type":"Point","coordinates":[7815,5994],"properties":{"NAME":"Chon Buri","POP_MAX":226618}},{"type":"Point","coordinates":[7846,5948],"properties":{"NAME":"Chanthaburi","POP_MAX":99819}},{"type":"Point","coordinates":[7857,6010],"properties":{"NAME":"Aranyaprathet","POP_MAX":22472}},{"type":"Point","coordinates":[7823,5951],"properties":{"NAME":"Rayong","POP_MAX":37035}},{"type":"Point","coordinates":[7874,6086],"properties":{"NAME":"Buriram","POP_MAX":47292}},{"type":"Point","coordinates":[7844,6133],"properties":{"NAME":"Chaiyaphum","POP_MAX":58350}},{"type":"Point","coordinates":[7855,6120],"properties":{"NAME":"Bua Yai","POP_MAX":18269}},{"type":"Point","coordinates":[7885,6080],"properties":{"NAME":"Surin","POP_MAX":62536}},{"type":"Point","coordinates":[7836,6231],"properties":{"NAME":"Loei","POP_MAX":35273}},{"type":"Point","coordinates":[7864,6253],"properties":{"NAME":"Nong Khai","POP_MAX":104505}},{"type":"Point","coordinates":[7903,6212],"properties":{"NAME":"Sakhon Nakhon","POP_MAX":76237}},{"type":"Point","coordinates":[7865,6226],"properties":{"NAME":"Udon Thani","POP_MAX":247231}},{"type":"Point","coordinates":[7898,6521],"properties":{"NAME":"Lao Chi","POP_MAX":67206}},{"type":"Point","coordinates":[7936,6423],"properties":{"NAME":"Hoa Binh","POP_MAX":105260}},{"type":"Point","coordinates":[7941,6442],"properties":{"NAME":"Son Tay","POP_MAX":189547}},{"type":"Point","coordinates":[7954,6391],"properties":{"NAME":"Ninh Binh","POP_MAX":130517}},{"type":"Point","coordinates":[7939,6453],"properties":{"NAME":"Viet Tri","POP_MAX":350000}},{"type":"Point","coordinates":[7960,6450],"properties":{"NAME":"Bac Giang","POP_MAX":53728}},{"type":"Point","coordinates":[7920,6225],"properties":{"NAME":"Nakhon Phanom","POP_MAX":55377}},{"type":"Point","coordinates":[7952,6280],"properties":{"NAME":"Ha Tinh","POP_MAX":165396}},{"type":"Point","coordinates":[8012,5951],"properties":{"NAME":"Buon Me Thuot","POP_MAX":349945}},{"type":"Point","coordinates":[8022,5908],"properties":{"NAME":"Da Lat","POP_MAX":256019}},{"type":"Point","coordinates":[8038,5887],"properties":{"NAME":"Phan Rang","POP_MAX":179773}},{"type":"Point","coordinates":[7971,5892],"properties":{"NAME":"Hon Quan","POP_MAX":40279}},{"type":"Point","coordinates":[8010,6051],"properties":{"NAME":"Kon Tum","POP_MAX":105489}},{"type":"Point","coordinates":[8033,6095],"properties":{"NAME":"Quang Ngai","POP_MAX":250000}},{"type":"Point","coordinates":[7988,6188],"properties":{"NAME":"Quang Tri","POP_MAX":72722}},{"type":"Point","coordinates":[7838,5590],"properties":{"NAME":"Narathiwat","POP_MAX":68112}},{"type":"Point","coordinates":[7985,5817],"properties":{"NAME":"Vung Tau","POP_MAX":248767}},{"type":"Point","coordinates":[8013,5851],"properties":{"NAME":"Phan Thiet","POP_MAX":336846}},{"type":"Point","coordinates":[7938,5819],"properties":{"NAME":"Long Xuyen","POP_MAX":350000}},{"type":"Point","coordinates":[7930,5837],"properties":{"NAME":"Chau Doc","POP_MAX":70239}},{"type":"Point","coordinates":[7929,5797],"properties":{"NAME":"Rach Gia","POP_MAX":300000}},{"type":"Point","coordinates":[7966,5828],"properties":{"NAME":"Tan An","POP_MAX":137498}},{"type":"Point","coordinates":[7964,5817],"properties":{"NAME":"My Tho","POP_MAX":124143}},{"type":"Point","coordinates":[7947,5755],"properties":{"NAME":"Bac Lieu","POP_MAX":225000}},{"type":"Point","coordinates":[7931,5749],"properties":{"NAME":"Ca Mau","POP_MAX":356636}},{"type":"Point","coordinates":[7954,5774],"properties":{"NAME":"Soc Trang","POP_MAX":300000}},{"type":"Point","coordinates":[7926,6541],"properties":{"NAME":"Ha Giang","POP_MAX":38362}},{"type":"Point","coordinates":[5812,4650],"properties":{"NAME":"Kawambwa","POP_MAX":20589}},{"type":"Point","coordinates":[5802,4675],"properties":{"NAME":"Nchelenge","POP_MAX":23693}},{"type":"Point","coordinates":[5895,4605],"properties":{"NAME":"Chinsali","POP_MAX":14015}},{"type":"Point","coordinates":[5870,4626],"properties":{"NAME":"Kasama","POP_MAX":200000}},{"type":"Point","coordinates":[5800,4407],"properties":{"NAME":"Kapiri Mposhi","POP_MAX":37942}},{"type":"Point","coordinates":[5756,4348],"properties":{"NAME":"Mumbwa","POP_MAX":19086}},{"type":"Point","coordinates":[5778,4490],"properties":{"NAME":"Chingola","POP_MAX":182015}},{"type":"Point","coordinates":[5777,4500],"properties":{"NAME":"Chililabombwe","POP_MAX":82068}},{"type":"Point","coordinates":[5860,4373],"properties":{"NAME":"Nyimba","POP_MAX":1336}},{"type":"Point","coordinates":[5926,4504],"properties":{"NAME":"Lundazi","POP_MAX":11635}},{"type":"Point","coordinates":[5911,4427],"properties":{"NAME":"Chipata","POP_MAX":85963}},{"type":"Point","coordinates":[5683,4536],"properties":{"NAME":"Mwinilunga","POP_MAX":13798}},{"type":"Point","coordinates":[5721,4437],"properties":{"NAME":"Kasempa","POP_MAX":5622}},{"type":"Point","coordinates":[5737,4511],"properties":{"NAME":"Solwezi","POP_MAX":65000}},{"type":"Point","coordinates":[5753,4242],"properties":{"NAME":"Choma","POP_MAX":46746}},{"type":"Point","coordinates":[5646,4331],"properties":{"NAME":"Mongu","POP_MAX":52534}},{"type":"Point","coordinates":[5693,4360],"properties":{"NAME":"Kaoma","POP_MAX":14212}},{"type":"Point","coordinates":[5679,4204],"properties":{"NAME":"Sesheke","POP_MAX":20149}},{"type":"Point","coordinates":[5649,4383],"properties":{"NAME":"Lukulu","POP_MAX":3349}},{"type":"Point","coordinates":[5634,4348],"properties":{"NAME":"Kalabo","POP_MAX":7731}},{"type":"Point","coordinates":[5650,4282],"properties":{"NAME":"Senanga","POP_MAX":10005}},{"type":"Point","coordinates":[5865,4201],"properties":{"NAME":"Mazowe","POP_MAX":9966}},{"type":"Point","coordinates":[5881,4213],"properties":{"NAME":"Shamva","POP_MAX":10317}},{"type":"Point","coordinates":[5722,4177],"properties":{"NAME":"Victoria Falls","POP_MAX":35761}},{"type":"Point","coordinates":[5839,4038],"properties":{"NAME":"Zvishavane","POP_MAX":35896}},{"type":"Point","coordinates":[5832,4120],"properties":{"NAME":"Kwekwe","POP_MAX":99149}},{"type":"Point","coordinates":[5777,4030],"properties":{"NAME":"Plumtree","POP_MAX":2148}},{"type":"Point","coordinates":[5837,3929],"properties":{"NAME":"Beitbridge","POP_MAX":26459}},{"type":"Point","coordinates":[5810,4003],"properties":{"NAME":"Gwanda","POP_MAX":14450}},{"type":"Point","coordinates":[5884,3997],"properties":{"NAME":"Chiredzi","POP_MAX":28205}},{"type":"Point","coordinates":[5860,4054],"properties":{"NAME":"Masvingo","POP_MAX":76311}},{"type":"Point","coordinates":[5829,4242],"properties":{"NAME":"Karoi","POP_MAX":25030}},{"type":"Point","coordinates":[5843,4211],"properties":{"NAME":"Chinhoyi","POP_MAX":61739}},{"type":"Point","coordinates":[5804,4259],"properties":{"NAME":"Kariba","POP_MAX":25531}},{"type":"Point","coordinates":[5890,3634],"properties":{"NAME":"Golela","POP_MAX":3695}},{"type":"Point","coordinates":[9658,4318],"properties":{"NAME":"Luganville","POP_MAX":13397}},{"type":"Point","coordinates":[2608,6139],"properties":{"NAME":"Trujillo","POP_MAX":9646}},{"type":"Point","coordinates":[2649,6130],"properties":{"NAME":"Brus Laguna","POP_MAX":4067}},{"type":"Point","coordinates":[2668,6102],"properties":{"NAME":"Puerto Lempira","POP_MAX":4856}},{"type":"Point","coordinates":[2600,6067],"properties":{"NAME":"Juticalpa","POP_MAX":37442}},{"type":"Point","coordinates":[2560,6055],"properties":{"NAME":"Comayagua","POP_MAX":71142}},{"type":"Point","coordinates":[2573,5988],"properties":{"NAME":"Choluteca","POP_MAX":99429}},{"type":"Point","coordinates":[3376,5443],"properties":{"NAME":"Kumaka","POP_MAX":2190}},{"type":"Point","coordinates":[3369,5588],"properties":{"NAME":"Bartica","POP_MAX":11524}},{"type":"Point","coordinates":[3372,5638],"properties":{"NAME":"Anna Regina","POP_MAX":3113}},{"type":"Point","coordinates":[4601,9000],"properties":{"NAME":"Egilssta�ir","POP_MAX":2265}},{"type":"Point","coordinates":[4455,9028],"properties":{"NAME":"Sau��rkr�kur","POP_MAX":2682}},{"type":"Point","coordinates":[4417,8923],"properties":{"NAME":"Selfoss","POP_MAX":6275}},{"type":"Point","coordinates":[4955,7402],"properties":{"NAME":"Lorca","POP_MAX":86119}},{"type":"Point","coordinates":[4975,7397],"properties":{"NAME":"Cartagena","POP_MAX":201274}},{"type":"Point","coordinates":[4839,7730],"properties":{"NAME":"Oviedo","POP_MAX":235651}},{"type":"Point","coordinates":[4764,7703],"properties":{"NAME":"Santiago de Compostela","POP_MAX":92430}},{"type":"Point","coordinates":[4808,7471],"properties":{"NAME":"Badajoz","POP_MAX":140133}},{"type":"Point","coordinates":[4934,7679],"properties":{"NAME":"Logrono","POP_MAX":143698}},{"type":"Point","coordinates":[4947,7728],"properties":{"NAME":"San Sebasti�n","POP_MAX":357468}},{"type":"Point","coordinates":[5823,5502],"properties":{"NAME":"Maridi","POP_MAX":14224}},{"type":"Point","coordinates":[5856,5454],"properties":{"NAME":"Yei","POP_MAX":185000}},{"type":"Point","coordinates":[5899,5822],"properties":{"NAME":"Melut","POP_MAX":6407}},{"type":"Point","coordinates":[5923,5715],"properties":{"NAME":"Nasir","POP_MAX":1741}},{"type":"Point","coordinates":[5785,5712],"properties":{"NAME":"Gogrial","POP_MAX":50065}},{"type":"Point","coordinates":[5921,6043],"properties":{"NAME":"El Manaqil","POP_MAX":151827}},{"type":"Point","coordinates":[5933,6184],"properties":{"NAME":"Shendi","POP_MAX":186611}},{"type":"Point","coordinates":[5948,6261],"properties":{"NAME":"Berber","POP_MAX":49556}},{"type":"Point","coordinates":[5849,6355],"properties":{"NAME":"Kerma","POP_MAX":3928}},{"type":"Point","coordinates":[5902,6028],"properties":{"NAME":"Ed Dueim","POP_MAX":87068}},{"type":"Point","coordinates":[5871,5965],"properties":{"NAME":"Umm Ruwaba","POP_MAX":55742}},{"type":"Point","coordinates":[5938,5494],"properties":{"NAME":"Kapoeta","POP_MAX":7042}},{"type":"Point","coordinates":[2948,6272],"properties":{"NAME":"Les Cayes","POP_MAX":175457}},{"type":"Point","coordinates":[2977,6344],"properties":{"NAME":"Gonaives","POP_MAX":166678}},{"type":"Point","coordinates":[4873,8431],"properties":{"NAME":"Ayr","POP_MAX":69042}},{"type":"Point","coordinates":[4944,8531],"properties":{"NAME":"Aberdeen","POP_MAX":189364}},{"type":"Point","coordinates":[4905,8486],"properties":{"NAME":"Perth","POP_MAX":39654}},{"type":"Point","coordinates":[4918,8491],"properties":{"NAME":"Dundee","POP_MAX":151592}},{"type":"Point","coordinates":[4968,8381],"properties":{"NAME":"Middlesbrough","POP_MAX":416042}},{"type":"Point","coordinates":[4960,8256],"properties":{"NAME":"Coventry","POP_MAX":388271}},{"type":"Point","coordinates":[4936,8196],"properties":{"NAME":"Bath","POP_MAX":93238}},{"type":"Point","coordinates":[4904,8156],"properties":{"NAME":"Exeter","POP_MAX":113118}},{"type":"Point","coordinates":[5005,8243],"properties":{"NAME":"Cambridge","POP_MAX":128488}},{"type":"Point","coordinates":[4993,8333],"properties":{"NAME":"Kingston upon Hull","POP_MAX":302296}},{"type":"Point","coordinates":[4798,8405],"properties":{"NAME":"Londonderry","POP_MAX":83652}},{"type":"Point","coordinates":[4816,8377],"properties":{"NAME":"Lisburn","POP_MAX":12899}},{"type":"Point","coordinates":[4847,8123],"properties":{"NAME":"Penzance","POP_MAX":20812}},{"type":"Point","coordinates":[4972,8346],"properties":{"NAME":"York","POP_MAX":158947}},{"type":"Point","coordinates":[4917,8337],"properties":{"NAME":"Blackpool","POP_MAX":272792}},{"type":"Point","coordinates":[4903,8409],"properties":{"NAME":"Dumfries","POP_MAX":31044}},{"type":"Point","coordinates":[4990,8364],"properties":{"NAME":"Scarborough","POP_MAX":70571}},{"type":"Point","coordinates":[4886,8138],"properties":{"NAME":"Plymouth","POP_MAX":247297}},{"type":"Point","coordinates":[5765,7405],"properties":{"NAME":"Soke","POP_MAX":77341}},{"type":"Point","coordinates":[5779,7515],"properties":{"NAME":"Balikesir","POP_MAX":261516}},{"type":"Point","coordinates":[5737,7544],"properties":{"NAME":"Canakkale","POP_MAX":87791}},{"type":"Point","coordinates":[5742,7633],"properties":{"NAME":"Edirne","POP_MAX":126470}},{"type":"Point","coordinates":[5768,7593],"properties":{"NAME":"Tekirdag","POP_MAX":122287}},{"type":"Point","coordinates":[5836,7581],"properties":{"NAME":"Izmit","POP_MAX":466504}},{"type":"Point","coordinates":[5882,7578],"properties":{"NAME":"Bolu","POP_MAX":96629}},{"type":"Point","coordinates":[5853,7463],"properties":{"NAME":"Afyon","POP_MAX":156992}},{"type":"Point","coordinates":[5812,7406],"properties":{"NAME":"Denizli","POP_MAX":372344}},{"type":"Point","coordinates":[5766,7456],"properties":{"NAME":"Manisa","POP_MAX":243971}},{"type":"Point","coordinates":[6068,7406],"properties":{"NAME":"Adiyaman","POP_MAX":223744}},{"type":"Point","coordinates":[6069,7441],"properties":{"NAME":"Malatya","POP_MAX":461574}},{"type":"Point","coordinates":[5973,7357],"properties":{"NAME":"Tarsus","POP_MAX":894318}},{"type":"Point","coordinates":[6003,7311],"properties":{"NAME":"Samandagi","POP_MAX":93638}},{"type":"Point","coordinates":[6008,7317],"properties":{"NAME":"Hatay","POP_MAX":305564}},{"type":"Point","coordinates":[6009,7337],"properties":{"NAME":"Iskenderun","POP_MAX":297943}},{"type":"Point","coordinates":[6000,7574],"properties":{"NAME":"Amasya","POP_MAX":82896}},{"type":"Point","coordinates":[6057,7594],"properties":{"NAME":"Ordu","POP_MAX":155117}},{"type":"Point","coordinates":[6033,7521],"properties":{"NAME":"Sivas","POP_MAX":264022}},{"type":"Point","coordinates":[6002,7627],"properties":{"NAME":"Bafra","POP_MAX":97452}},{"type":"Point","coordinates":[6152,7531],"properties":{"NAME":"Erzurum","POP_MAX":420691}},{"type":"Point","coordinates":[6102,7521],"properties":{"NAME":"Erzincan","POP_MAX":129407}},{"type":"Point","coordinates":[6201,7519],"properties":{"NAME":"Agri","POP_MAX":87854}},{"type":"Point","coordinates":[6122,7415],"properties":{"NAME":"Diyarbakir","POP_MAX":644763}},{"type":"Point","coordinates":[6158,7463],"properties":{"NAME":"Mus","POP_MAX":82536}},{"type":"Point","coordinates":[5034,8235],"properties":{"NAME":"Ipswich","POP_MAX":143767}},{"type":"Point","coordinates":[5038,8268],"properties":{"NAME":"Norwich","POP_MAX":190756}},{"type":"Point","coordinates":[7278,5664],"properties":{"NAME":"Batticaloa","POP_MAX":129222}},{"type":"Point","coordinates":[7241,5762],"properties":{"NAME":"Kilinochchi","POP_MAX":103717}},{"type":"Point","coordinates":[7245,5562],"properties":{"NAME":"Matara","POP_MAX":68244}},{"type":"Point","coordinates":[7259,5622],"properties":{"NAME":"Badulla","POP_MAX":47587}},{"type":"Point","coordinates":[7227,5610],"properties":{"NAME":"Moratuwa","POP_MAX":200000}},{"type":"Point","coordinates":[8560,7231],"properties":{"NAME":"Yeosu","POP_MAX":341994}},{"type":"Point","coordinates":[8587,7337],"properties":{"NAME":"Andong","POP_MAX":129319}},{"type":"Point","coordinates":[8526,7159],"properties":{"NAME":"Jeju","POP_MAX":408364}},{"type":"Point","coordinates":[4997,8164],"properties":{"NAME":"Brighton","POP_MAX":503008}},{"type":"Point","coordinates":[4920,8635],"properties":{"NAME":"Kirkwall","POP_MAX":8500}},{"type":"Point","coordinates":[4884,8548],"properties":{"NAME":"Inverness","POP_MAX":45158}},{"type":"Point","coordinates":[4967,8218],"properties":{"NAME":"Oxford","POP_MAX":192796}},{"type":"Point","coordinates":[4990,8224],"properties":{"NAME":"Luton","POP_MAX":235958}},{"type":"Point","coordinates":[4972,8162],"properties":{"NAME":"Portsmouth","POP_MAX":442252}},{"type":"Point","coordinates":[4995,8265],"properties":{"NAME":"Peterborough","POP_MAX":140141}},{"type":"Point","coordinates":[4969,8288],"properties":{"NAME":"Nottingham","POP_MAX":825600}},{"type":"Point","coordinates":[4941,8289],"properties":{"NAME":"Stoke","POP_MAX":390801}},{"type":"Point","coordinates":[5887,7619],"properties":{"NAME":"Zonguldak","POP_MAX":156918}},{"type":"Point","coordinates":[5950,7391],"properties":{"NAME":"Eregli","POP_MAX":92117}},{"type":"Point","coordinates":[5927,7372],"properties":{"NAME":"Karaman","POP_MAX":120399}},{"type":"Point","coordinates":[5821,7459],"properties":{"NAME":"Usak","POP_MAX":152862}},{"type":"Point","coordinates":[6036,7346],"properties":{"NAME":"Kilis","POP_MAX":82301}},{"type":"Point","coordinates":[5936,7527],"properties":{"NAME":"Kirikkale","POP_MAX":211138}},{"type":"Point","coordinates":[6202,7571],"properties":{"NAME":"Kars","POP_MAX":77486}},{"type":"Point","coordinates":[6137,7380],"properties":{"NAME":"Mardin","POP_MAX":71373}},{"type":"Point","coordinates":[6148,7413],"properties":{"NAME":"Batman","POP_MAX":302074}},{"type":"Point","coordinates":[6211,7448],"properties":{"NAME":"Van","POP_MAX":371713}},{"type":"Point","coordinates":[6000,7137],"properties":{"NAME":"Al Qunaytirah","POP_MAX":4318}},{"type":"Point","coordinates":[5927,5242],"properties":{"NAME":"Jinja","POP_MAX":301619}},{"type":"Point","coordinates":[5938,5316],"properties":{"NAME":"Soroti","POP_MAX":1038}},{"type":"Point","coordinates":[5863,5392],"properties":{"NAME":"Arua","POP_MAX":250000}},{"type":"Point","coordinates":[5879,5360],"properties":{"NAME":"Pakwach","POP_MAX":17541}},{"type":"Point","coordinates":[5885,5428],"properties":{"NAME":"Moyo","POP_MAX":22434}},{"type":"Point","coordinates":[5906,5220],"properties":{"NAME":"Entebbe","POP_MAX":175128}},{"type":"Point","coordinates":[5876,5251],"properties":{"NAME":"Mubende","POP_MAX":18936}},{"type":"Point","coordinates":[5895,5240],"properties":{"NAME":"Mityana","POP_MAX":41131}},{"type":"Point","coordinates":[5917,5408],"properties":{"NAME":"Kitgum","POP_MAX":56891}},{"type":"Point","coordinates":[5918,5348],"properties":{"NAME":"Lira","POP_MAX":135445}},{"type":"Point","coordinates":[5895,5315],"properties":{"NAME":"Masindi-Port","POP_MAX":8319}},{"type":"Point","coordinates":[5954,5280],"properties":{"NAME":"Mbale","POP_MAX":402368}},{"type":"Point","coordinates":[5954,5258],"properties":{"NAME":"Tororo","POP_MAX":150000}},{"type":"Point","coordinates":[5952,5421],"properties":{"NAME":"Kaabong","POP_MAX":1137}},{"type":"Point","coordinates":[5967,5364],"properties":{"NAME":"Moroto","POP_MAX":371}},{"type":"Point","coordinates":[5509,7888],"properties":{"NAME":"Pecs","POP_MAX":186262}},{"type":"Point","coordinates":[5493,7982],"properties":{"NAME":"Gyor","POP_MAX":136081}},{"type":"Point","coordinates":[5498,7905],"properties":{"NAME":"Kaposvar","POP_MAX":108528}},{"type":"Point","coordinates":[5535,7987],"properties":{"NAME":"Vac","POP_MAX":35293}},{"type":"Point","coordinates":[5581,8005],"properties":{"NAME":"Miskolc","POP_MAX":247757}},{"type":"Point","coordinates":[5563,7898],"properties":{"NAME":"Szeged","POP_MAX":187765}},{"type":"Point","coordinates":[5604,7972],"properties":{"NAME":"Debrecen","POP_MAX":231286}},{"type":"Point","coordinates":[5564,7952],"properties":{"NAME":"Szolnok","POP_MAX":109261}},{"type":"Point","coordinates":[5915,4679],"properties":{"NAME":"Tunduma","POP_MAX":36556}},{"type":"Point","coordinates":[5939,4681],"properties":{"NAME":"Tukuyu","POP_MAX":127570}},{"type":"Point","coordinates":[5883,4755],"properties":{"NAME":"Sumbawanga","POP_MAX":89161}},{"type":"Point","coordinates":[5867,4848],"properties":{"NAME":"Mpanda","POP_MAX":73338}},{"type":"Point","coordinates":[5854,4786],"properties":{"NAME":"Kipili","POP_MAX":1533}},{"type":"Point","coordinates":[5850,4822],"properties":{"NAME":"Karema","POP_MAX":16385}},{"type":"Point","coordinates":[5898,5051],"properties":{"NAME":"Geita","POP_MAX":1536}},{"type":"Point","coordinates":[5936,5079],"properties":{"NAME":"Nyahanga","POP_MAX":16092}},{"type":"Point","coordinates":[5909,4995],"properties":{"NAME":"Kahama","POP_MAX":36014}},{"type":"Point","coordinates":[5933,5005],"properties":{"NAME":"Shinyanga","POP_MAX":107362}},{"type":"Point","coordinates":[5926,4973],"properties":{"NAME":"Nzega","POP_MAX":26584}},{"type":"Point","coordinates":[5915,4891],"properties":{"NAME":"Sikonge","POP_MAX":27113}},{"type":"Point","coordinates":[5874,5064],"properties":{"NAME":"Biharamulo","POP_MAX":34038}},{"type":"Point","coordinates":[5888,5140],"properties":{"NAME":"Bukoba","POP_MAX":100504}},{"type":"Point","coordinates":[5856,5074],"properties":{"NAME":"Ngara","POP_MAX":16890}},{"type":"Point","coordinates":[5886,5198],"properties":{"NAME":"Masaka","POP_MAX":65373}},{"type":"Point","coordinates":[5864,5027],"properties":{"NAME":"Kakonko","POP_MAX":24688}},{"type":"Point","coordinates":[5840,4951],"properties":{"NAME":"Kasulu","POP_MAX":37349}},{"type":"Point","coordinates":[5845,4959],"properties":{"NAME":"Kanyato","POP_MAX":232}},{"type":"Point","coordinates":[5848,4920],"properties":{"NAME":"Uvinza","POP_MAX":80350}},{"type":"Point","coordinates":[5827,4934],"properties":{"NAME":"Kigoma","POP_MAX":164268}},{"type":"Point","coordinates":[5835,5209],"properties":{"NAME":"Katwe","POP_MAX":1957}},{"type":"Point","coordinates":[5856,5182],"properties":{"NAME":"Mbarara","POP_MAX":83700}},{"type":"Point","coordinates":[5837,5144],"properties":{"NAME":"Kabale","POP_MAX":44600}},{"type":"Point","coordinates":[6032,4788],"properties":{"NAME":"Mikumi","POP_MAX":16780}},{"type":"Point","coordinates":[6024,4746],"properties":{"NAME":"Ifakara","POP_MAX":49528}},{"type":"Point","coordinates":[6032,4820],"properties":{"NAME":"Kilosa","POP_MAX":91889}},{"type":"Point","coordinates":[6110,4913],"properties":{"NAME":"Chake Chake","POP_MAX":49959}},{"type":"Point","coordinates":[6087,4769],"properties":{"NAME":"Kibiti","POP_MAX":30163}},{"type":"Point","coordinates":[6085,4844],"properties":{"NAME":"Bagamoyo","POP_MAX":82426}},{"type":"Point","coordinates":[6106,4758],"properties":{"NAME":"Kilindoni","POP_MAX":12409}},{"type":"Point","coordinates":[6018,4849],"properties":{"NAME":"Mpwapwa","POP_MAX":19806}},{"type":"Point","coordinates":[5970,4676],"properties":{"NAME":"Njombe","POP_MAX":46724}},{"type":"Point","coordinates":[5996,4766],"properties":{"NAME":"Iringa","POP_MAX":111820}},{"type":"Point","coordinates":[6083,4595],"properties":{"NAME":"Masasi","POP_MAX":36032}},{"type":"Point","coordinates":[6121,4622],"properties":{"NAME":"Mtwara","POP_MAX":96602}},{"type":"Point","coordinates":[6043,4574],"properties":{"NAME":"Tunduru","POP_MAX":600}},{"type":"Point","coordinates":[5970,4563],"properties":{"NAME":"Mbamba Bay","POP_MAX":8997}},{"type":"Point","coordinates":[5974,4882],"properties":{"NAME":"Manyoni","POP_MAX":310}},{"type":"Point","coordinates":[5962,4886],"properties":{"NAME":"Itigi","POP_MAX":19711}},{"type":"Point","coordinates":[5970,4937],"properties":{"NAME":"Singida","POP_MAX":62432}},{"type":"Point","coordinates":[5991,5028],"properties":{"NAME":"Ngorongoro","POP_MAX":10836}},{"type":"Point","coordinates":[5992,5023],"properties":{"NAME":"Oldeani","POP_MAX":8000}},{"type":"Point","coordinates":[5992,4994],"properties":{"NAME":"Mbulu","POP_MAX":13430}},{"type":"Point","coordinates":[5998,4972],"properties":{"NAME":"Babati","POP_MAX":34291}},{"type":"Point","coordinates":[6053,4981],"properties":{"NAME":"Same","POP_MAX":17455}},{"type":"Point","coordinates":[6042,5023],"properties":{"NAME":"Moshi","POP_MAX":721018}},{"type":"Point","coordinates":[5943,5131],"properties":{"NAME":"Musoma","POP_MAX":133156}},{"type":"Point","coordinates":[6075,4922],"properties":{"NAME":"Korogwe","POP_MAX":50000}},{"type":"Point","coordinates":[5038,8181],"properties":{"NAME":"Dover","POP_MAX":36384}},{"type":"Point","coordinates":[5187,7914],"properties":{"NAME":"Lausanne","POP_MAX":265702}},{"type":"Point","coordinates":[5213,7975],"properties":{"NAME":"Basel","POP_MAX":830000}},{"type":"Point","coordinates":[5344,8595],"properties":{"NAME":"Trollh�ttan","POP_MAX":44543}},{"type":"Point","coordinates":[5362,8564],"properties":{"NAME":"Bor�s","POP_MAX":65008}},{"type":"Point","coordinates":[5396,8465],"properties":{"NAME":"Kristianstad","POP_MAX":32188}},{"type":"Point","coordinates":[5356,8466],"properties":{"NAME":"Helsingborg","POP_MAX":91304}},{"type":"Point","coordinates":[4988,7440],"properties":{"NAME":"Alicante","POP_MAX":315863}},{"type":"Point","coordinates":[5000,7534],"properties":{"NAME":"Castello","POP_MAX":180610}},{"type":"Point","coordinates":[5794,5953],"properties":{"NAME":"En Nuhud","POP_MAX":108008}},{"type":"Point","coordinates":[5774,5857],"properties":{"NAME":"Muglad","POP_MAX":19997}},{"type":"Point","coordinates":[5830,5081],"properties":{"NAME":"Nyanza","POP_MAX":225209}},{"type":"Point","coordinates":[5831,5097],"properties":{"NAME":"Gitarama","POP_MAX":87613}},{"type":"Point","coordinates":[5830,5067],"properties":{"NAME":"Butare","POP_MAX":77000}},{"type":"Point","coordinates":[5817,5119],"properties":{"NAME":"Gisenyi","POP_MAX":83623}},{"type":"Point","coordinates":[5807,5073],"properties":{"NAME":"Cyangugu","POP_MAX":19900}},{"type":"Point","coordinates":[5839,5125],"properties":{"NAME":"Byumba","POP_MAX":70593}},{"type":"Point","coordinates":[5827,5130],"properties":{"NAME":"Ruhengeri","POP_MAX":86685}},{"type":"Point","coordinates":[2611,5880],"properties":{"NAME":"Rivas","POP_MAX":31941}},{"type":"Point","coordinates":[2670,5850],"properties":{"NAME":"San Juan de Nicaragua","POP_MAX":1000}},{"type":"Point","coordinates":[5288,6028],"properties":{"NAME":"Goure","POP_MAX":14639}},{"type":"Point","coordinates":[5098,5906],"properties":{"NAME":"Gaya","POP_MAX":33051}},{"type":"Point","coordinates":[5042,6041],"properties":{"NAME":"Tillaberi","POP_MAX":19262}},{"type":"Point","coordinates":[5027,6071],"properties":{"NAME":"Ayorou","POP_MAX":26290}},{"type":"Point","coordinates":[5148,6016],"properties":{"NAME":"Birni Nkonni","POP_MAX":65252}},{"type":"Point","coordinates":[5168,6033],"properties":{"NAME":"Madaoua","POP_MAX":24804}},{"type":"Point","coordinates":[5666,7787],"properties":{"NAME":"Craiova","POP_MAX":304142}},{"type":"Point","coordinates":[5763,7780],"properties":{"NAME":"Calarasi","POP_MAX":73224}},{"type":"Point","coordinates":[5438,7915],"properties":{"NAME":"Maribor","POP_MAX":114228}},{"type":"Point","coordinates":[5612,7843],"properties":{"NAME":"Resita","POP_MAX":83324}},{"type":"Point","coordinates":[5593,7870],"properties":{"NAME":"Timisoara","POP_MAX":315053}},{"type":"Point","coordinates":[5744,7985],"properties":{"NAME":"Botosani","POP_MAX":114783}},{"type":"Point","coordinates":[5659,7980],"properties":{"NAME":"Baia Mare","POP_MAX":136553}},{"type":"Point","coordinates":[5686,7916],"properties":{"NAME":"Tirgu Mures","POP_MAX":149433}},{"type":"Point","coordinates":[5695,7817],"properties":{"NAME":"Pitesti","POP_MAX":171021}},{"type":"Point","coordinates":[5715,7863],"properties":{"NAME":"Brasov","POP_MAX":311044}},{"type":"Point","coordinates":[5727,7822],"properties":{"NAME":"Ploiesti","POP_MAX":232542}},{"type":"Point","coordinates":[5752,7917],"properties":{"NAME":"Bacau","POP_MAX":199668}},{"type":"Point","coordinates":[2775,4821],"properties":{"NAME":"Pimentel","POP_MAX":15552}},{"type":"Point","coordinates":[2780,4870],"properties":{"NAME":"Olmos","POP_MAX":9800}},{"type":"Point","coordinates":[2751,4895],"properties":{"NAME":"Sechura","POP_MAX":23020}},{"type":"Point","coordinates":[2769,4922],"properties":{"NAME":"Chulucanas","POP_MAX":68835}},{"type":"Point","coordinates":[2755,4933],"properties":{"NAME":"Sullana","POP_MAX":160789}},{"type":"Point","coordinates":[2972,4426],"properties":{"NAME":"Abancay","POP_MAX":55111}},{"type":"Point","coordinates":[2976,4253],"properties":{"NAME":"Camana","POP_MAX":20956}},{"type":"Point","coordinates":[3018,4388],"properties":{"NAME":"Sicuani","POP_MAX":33575}},{"type":"Point","coordinates":[3051,4299],"properties":{"NAME":"Puno","POP_MAX":116552}},{"type":"Point","coordinates":[3035,4354],"properties":{"NAME":"Ayaviri","POP_MAX":19310}},{"type":"Point","coordinates":[3061,4285],"properties":{"NAME":"Ilave","POP_MAX":16033}},{"type":"Point","coordinates":[3079,4257],"properties":{"NAME":"Desaguadero","POP_MAX":5329}},{"type":"Point","coordinates":[2825,4633],"properties":{"NAME":"Huarmey","POP_MAX":16172}},{"type":"Point","coordinates":[2828,4775],"properties":{"NAME":"Cajabamba","POP_MAX":13486}},{"type":"Point","coordinates":[2807,4886],"properties":{"NAME":"Jaen","POP_MAX":52493}},{"type":"Point","coordinates":[2811,4837],"properties":{"NAME":"Chota","POP_MAX":14240}},{"type":"Point","coordinates":[2885,4678],"properties":{"NAME":"Tingo Maria","POP_MAX":53177}},{"type":"Point","coordinates":[2858,4866],"properties":{"NAME":"Moyobamba","POP_MAX":47734}},{"type":"Point","coordinates":[2864,4801],"properties":{"NAME":"Juanjui","POP_MAX":37715}},{"type":"Point","coordinates":[2870,4743],"properties":{"NAME":"Tocache","POP_MAX":29029}},{"type":"Point","coordinates":[2815,4913],"properties":{"NAME":"Sechura","POP_MAX":8602}},{"type":"Point","coordinates":[2833,4856],"properties":{"NAME":"Chachapoyas","POP_MAX":25978}},{"type":"Point","coordinates":[3038,4990],"properties":{"NAME":"Caballococha","POP_MAX":3195}},{"type":"Point","coordinates":[2999,5082],"properties":{"NAME":"Puca Urco","POP_MAX":10}},{"type":"Point","coordinates":[2874,5049],"properties":{"NAME":"Andoas","POP_MAX":10}},{"type":"Point","coordinates":[2891,5071],"properties":{"NAME":"Soldado Bartra","POP_MAX":10}},{"type":"Point","coordinates":[2902,5163],"properties":{"NAME":"Nuevo Rocafuerte","POP_MAX":40}},{"type":"Point","coordinates":[2943,4923],"properties":{"NAME":"Requena","POP_MAX":18000}},{"type":"Point","coordinates":[2934,4466],"properties":{"NAME":"Huanta","POP_MAX":18627}},{"type":"Point","coordinates":[2946,4346],"properties":{"NAME":"Coracora","POP_MAX":7420}},{"type":"Point","coordinates":[2881,4439],"properties":{"NAME":"Chincha Alta","POP_MAX":153076}},{"type":"Point","coordinates":[2892,4394],"properties":{"NAME":"Santiago","POP_MAX":10449}},{"type":"Point","coordinates":[2903,4572],"properties":{"NAME":"San Ramon","POP_MAX":14708}},{"type":"Point","coordinates":[2885,4571],"properties":{"NAME":"Junin","POP_MAX":15320}},{"type":"Point","coordinates":[2899,4533],"properties":{"NAME":"Jauja","POP_MAX":21057}},{"type":"Point","coordinates":[2835,4597],"properties":{"NAME":"Pativilca","POP_MAX":31905}},{"type":"Point","coordinates":[2850,4547],"properties":{"NAME":"Chancay","POP_MAX":26958}},{"type":"Point","coordinates":[2864,4491],"properties":{"NAME":"Chilca","POP_MAX":12884}},{"type":"Point","coordinates":[3389,3995],"properties":{"NAME":"Fuerte Olimpo","POP_MAX":2475}},{"type":"Point","coordinates":[3309,4062],"properties":{"NAME":"Capitan Pablo Lagerenza","POP_MAX":1200}},{"type":"Point","coordinates":[3388,3925],"properties":{"NAME":"La Victoria","POP_MAX":5000}},{"type":"Point","coordinates":[3413,3864],"properties":{"NAME":"Horqueta","POP_MAX":16171}},{"type":"Point","coordinates":[3407,3856],"properties":{"NAME":"Belen","POP_MAX":11359}},{"type":"Point","coordinates":[3411,3801],"properties":{"NAME":"Rosario","POP_MAX":5123}},{"type":"Point","coordinates":[3404,3738],"properties":{"NAME":"Ita","POP_MAX":41090}},{"type":"Point","coordinates":[3378,3659],"properties":{"NAME":"Pilar","POP_MAX":28435}},{"type":"Point","coordinates":[3449,3910],"properties":{"NAME":"Pedro Juan Caballero","POP_MAX":102787}},{"type":"Point","coordinates":[3428,3934],"properties":{"NAME":"Bella Vista","POP_MAX":16852}},{"type":"Point","coordinates":[3444,3708],"properties":{"NAME":"Abai","POP_MAX":3024}},{"type":"Point","coordinates":[3456,3821],"properties":{"NAME":"Ygatimi","POP_MAX":2809}},{"type":"Point","coordinates":[3449,3647],"properties":{"NAME":"Hohenau","POP_MAX":5306}},{"type":"Point","coordinates":[2608,5909],"properties":{"NAME":"Granada","POP_MAX":105219}},{"type":"Point","coordinates":[2575,5949],"properties":{"NAME":"Chinandega","POP_MAX":139023}},{"type":"Point","coordinates":[2609,5966],"properties":{"NAME":"Matagalpa","POP_MAX":109089}},{"type":"Point","coordinates":[4204,7451],"properties":{"NAME":"Horta","POP_MAX":6611}},{"type":"Point","coordinates":[4244,7457],"properties":{"NAME":"Angra do Heroismo","POP_MAX":12045}},{"type":"Point","coordinates":[4764,7370],"properties":{"NAME":"Portimao","POP_MAX":61226}},{"type":"Point","coordinates":[4781,7363],"properties":{"NAME":"Faro","POP_MAX":41355}},{"type":"Point","coordinates":[4767,7547],"properties":{"NAME":"Coimbra","POP_MAX":106582}},{"type":"Point","coordinates":[4666,5732],"properties":{"NAME":"Makeni","POP_MAX":87679}},{"type":"Point","coordinates":[4550,6067],"properties":{"NAME":"Diourbel","POP_MAX":148024}},{"type":"Point","coordinates":[4549,6122],"properties":{"NAME":"Louga","POP_MAX":85075}},{"type":"Point","coordinates":[4530,6075],"properties":{"NAME":"Thies","POP_MAX":293001}},{"type":"Point","coordinates":[4585,5965],"properties":{"NAME":"Kolda","POP_MAX":69267}},{"type":"Point","coordinates":[4621,6016],"properties":{"NAME":"Tambacounda","POP_MAX":89212}},{"type":"Point","coordinates":[4663,5945],"properties":{"NAME":"Kedougou","POP_MAX":18226}},{"type":"Point","coordinates":[4787,5471],"properties":{"NAME":"Harper","POP_MAX":32661}},{"type":"Point","coordinates":[4738,5623],"properties":{"NAME":"Gbarnga","POP_MAX":45835}},{"type":"Point","coordinates":[4700,5706],"properties":{"NAME":"Koidu","POP_MAX":87539}},{"type":"Point","coordinates":[4690,5674],"properties":{"NAME":"Kenema","POP_MAX":143137}},{"type":"Point","coordinates":[4775,5569],"properties":{"NAME":"Zwedru","POP_MAX":25678}},{"type":"Point","coordinates":[5353,5989],"properties":{"NAME":"Diffa","POP_MAX":30988}},{"type":"Point","coordinates":[5367,6043],"properties":{"NAME":"Nguigmi","POP_MAX":17897}},{"type":"Point","coordinates":[5568,7690],"properties":{"NAME":"Pec","POP_MAX":105163}},{"type":"Point","coordinates":[6226,6745],"properties":{"NAME":"Buraydah","POP_MAX":398581}},{"type":"Point","coordinates":[6163,6812],"properties":{"NAME":"Hail","POP_MAX":385257}},{"type":"Point","coordinates":[6144,7013],"properties":{"NAME":"Arar","POP_MAX":222016}},{"type":"Point","coordinates":[6213,6934],"properties":{"NAME":"Rafha","POP_MAX":64755}},{"type":"Point","coordinates":[6062,5163],"properties":{"NAME":"Mwingi","POP_MAX":11219}},{"type":"Point","coordinates":[6045,5187],"properties":{"NAME":"Embu","POP_MAX":58620}},{"type":"Point","coordinates":[6040,5129],"properties":{"NAME":"Machakos","POP_MAX":144925}},{"type":"Point","coordinates":[6034,5218],"properties":{"NAME":"Nanyuki","POP_MAX":36142}},{"type":"Point","coordinates":[6024,5281],"properties":{"NAME":"Maralal","POP_MAX":20841}},{"type":"Point","coordinates":[6036,5115],"properties":{"NAME":"Konza","POP_MAX":2004}},{"type":"Point","coordinates":[5993,5398],"properties":{"NAME":"Lodwar","POP_MAX":20219}},{"type":"Point","coordinates":[5997,5220],"properties":{"NAME":"Eldama Ravine","POP_MAX":17581}},{"type":"Point","coordinates":[5980,5177],"properties":{"NAME":"Sotik","POP_MAX":71285}},{"type":"Point","coordinates":[6027,5070],"properties":{"NAME":"Namanga","POP_MAX":13193}},{"type":"Point","coordinates":[6017,5176],"properties":{"NAME":"Naivasha","POP_MAX":43983}},{"type":"Point","coordinates":[5985,5196],"properties":{"NAME":"Kericho","POP_MAX":98852}},{"type":"Point","coordinates":[5977,5277],"properties":{"NAME":"Kitale","POP_MAX":150495}},{"type":"Point","coordinates":[5965,5250],"properties":{"NAME":"Bungoma","POP_MAX":55962}},{"type":"Point","coordinates":[5969,5234],"properties":{"NAME":"Kakamega","POP_MAX":63426}},{"type":"Point","coordinates":[6117,5318],"properties":{"NAME":"Wajir","POP_MAX":45771}},{"type":"Point","coordinates":[6107,5191],"properties":{"NAME":"Garissa","POP_MAX":67861}},{"type":"Point","coordinates":[5163,8304],"properties":{"NAME":"Leeuwarden","POP_MAX":125778}},{"type":"Point","coordinates":[5185,8302],"properties":{"NAME":"Groningen","POP_MAX":216688}},{"type":"Point","coordinates":[5462,9205],"properties":{"NAME":"Harstad","POP_MAX":19433}},{"type":"Point","coordinates":[5144,8237],"properties":{"NAME":"Utrecht","POP_MAX":640000}},{"type":"Point","coordinates":[5180,8843],"properties":{"NAME":"�lesund","POP_MAX":47772}},{"type":"Point","coordinates":[5160,8628],"properties":{"NAME":"Sandnes","POP_MAX":46911}},{"type":"Point","coordinates":[5286,8681],"properties":{"NAME":"Drammen","POP_MAX":90722}},{"type":"Point","coordinates":[5299,8662],"properties":{"NAME":"Moss","POP_MAX":36901}},{"type":"Point","coordinates":[5322,8928],"properties":{"NAME":"Steinkjer","POP_MAX":11274}},{"type":"Point","coordinates":[5602,8544],"properties":{"NAME":"Ventspils","POP_MAX":42884}},{"type":"Point","coordinates":[5590,8447],"properties":{"NAME":"Klaipeda","POP_MAX":192307}},{"type":"Point","coordinates":[5535,8033],"properties":{"NAME":"Zvolen","POP_MAX":44502}},{"type":"Point","coordinates":[5524,8070],"properties":{"NAME":"Zilina","POP_MAX":87625}},{"type":"Point","coordinates":[5594,8042],"properties":{"NAME":"Kosice","POP_MAX":236563}},{"type":"Point","coordinates":[5593,8057],"properties":{"NAME":"Presov","POP_MAX":94718}},{"type":"Point","coordinates":[5667,8402],"properties":{"NAME":"Kaunas","POP_MAX":374643}},{"type":"Point","coordinates":[5662,8501],"properties":{"NAME":"Jelgava","POP_MAX":67207}},{"type":"Point","coordinates":[6320,6617],"properties":{"NAME":"Al Kharj","POP_MAX":298428}},{"type":"Point","coordinates":[6397,6749],"properties":{"NAME":"Ad Damman","POP_MAX":2054710}},{"type":"Point","coordinates":[6282,6865],"properties":{"NAME":"Hafar al Batin","POP_MAX":249194}},{"type":"Point","coordinates":[6385,6782],"properties":{"NAME":"Al Jubayl","POP_MAX":237274}},{"type":"Point","coordinates":[6738,6674],"properties":{"NAME":"Gwadar","POP_MAX":51901}},{"type":"Point","coordinates":[6936,7034],"properties":{"NAME":"Zhob","POP_MAX":88356}},{"type":"Point","coordinates":[7071,7299],"properties":{"NAME":"Gilgit","POP_MAX":216760}},{"type":"Point","coordinates":[7076,7021],"properties":{"NAME":"Kasur","POP_MAX":290643}},{"type":"Point","coordinates":[6993,7098],"properties":{"NAME":"Kundian","POP_MAX":35406}},{"type":"Point","coordinates":[7048,7003],"properties":{"NAME":"Okara","POP_MAX":223648}},{"type":"Point","coordinates":[7016,7030],"properties":{"NAME":"Jhang","POP_MAX":341210}},{"type":"Point","coordinates":[7026,7077],"properties":{"NAME":"Sargodha","POP_MAX":542603}},{"type":"Point","coordinates":[6969,6959],"properties":{"NAME":"Dera Ghazi Khan","POP_MAX":236093}},{"type":"Point","coordinates":[6955,6857],"properties":{"NAME":"Sadiqabad","POP_MAX":189876}},{"type":"Point","coordinates":[6907,6738],"properties":{"NAME":"Nawabshah","POP_MAX":229504}},{"type":"Point","coordinates":[7124,7678],"properties":{"NAME":"Balykchy","POP_MAX":40527}},{"type":"Point","coordinates":[7113,7604],"properties":{"NAME":"At Bashy","POP_MAX":15601}},{"type":"Point","coordinates":[7035,7590],"properties":{"NAME":"Jalal Abad","POP_MAX":248899}},{"type":"Point","coordinates":[7034,7645],"properties":{"NAME":"Toktogul","POP_MAX":26115}},{"type":"Point","coordinates":[7014,7613],"properties":{"NAME":"Tash Komur","POP_MAX":23594}},{"type":"Point","coordinates":[7014,7682],"properties":{"NAME":"Talas","POP_MAX":35172}},{"type":"Point","coordinates":[7029,7567],"properties":{"NAME":"Osh","POP_MAX":391277}},{"type":"Point","coordinates":[6968,7129],"properties":{"NAME":"Bannu","POP_MAX":622419}},{"type":"Point","coordinates":[6977,7062],"properties":{"NAME":"Dera Ismail Khan","POP_MAX":101616}},{"type":"Point","coordinates":[7275,6843],"properties":{"NAME":"Nepalganj","POP_MAX":64400}},{"type":"Point","coordinates":[7366,6782],"properties":{"NAME":"Birganj","POP_MAX":133238}},{"type":"Point","coordinates":[7433,6752],"properties":{"NAME":"Biratnagar","POP_MAX":182324}},{"type":"Point","coordinates":[7816,5449],"properties":{"NAME":"Teluk Intan","POP_MAX":101659}},{"type":"Point","coordinates":[7798,5531],"properties":{"NAME":"Butterworth","POP_MAX":821652}},{"type":"Point","coordinates":[7801,5544],"properties":{"NAME":"Sungai Petani","POP_MAX":358499}},{"type":"Point","coordinates":[7798,5571],"properties":{"NAME":"Alor Setar","POP_MAX":336475}},{"type":"Point","coordinates":[7859,5335],"properties":{"NAME":"Muar","POP_MAX":191346}},{"type":"Point","coordinates":[7869,5324],"properties":{"NAME":"Batu Pahat","POP_MAX":199619}},{"type":"Point","coordinates":[7880,5335],"properties":{"NAME":"Keluang","POP_MAX":169828}},{"type":"Point","coordinates":[7841,5374],"properties":{"NAME":"Seremban","POP_MAX":372917}},{"type":"Point","coordinates":[7839,5437],"properties":{"NAME":"Raub","POP_MAX":40024}},{"type":"Point","coordinates":[7883,5462],"properties":{"NAME":"Chukai","POP_MAX":82425}},{"type":"Point","coordinates":[7874,5526],"properties":{"NAME":"Kuala Terengganu","POP_MAX":350210}},{"type":"Point","coordinates":[8298,5509],"properties":{"NAME":"Lahad Datu","POP_MAX":105622}},{"type":"Point","coordinates":[8150,5400],"properties":{"NAME":"Bintulu","POP_MAX":151617}},{"type":"Point","coordinates":[8177,5472],"properties":{"NAME":"Miri","POP_MAX":228212}},{"type":"Point","coordinates":[5701,3436],"properties":{"NAME":"Colesberg","POP_MAX":12423}},{"type":"Point","coordinates":[5542,3528],"properties":{"NAME":"Poffader","POP_MAX":4220}},{"type":"Point","coordinates":[5618,3423],"properties":{"NAME":"Carnarvon","POP_MAX":5785}},{"type":"Point","coordinates":[5635,3497],"properties":{"NAME":"Prieska","POP_MAX":11236}},{"type":"Point","coordinates":[5654,3626],"properties":{"NAME":"Kuruman","POP_MAX":10006}},{"type":"Point","coordinates":[5643,3244],"properties":{"NAME":"Knysna","POP_MAX":63106}},{"type":"Point","coordinates":[5571,3245],"properties":{"NAME":"Swellendam","POP_MAX":13674}},{"type":"Point","coordinates":[5538,3222],"properties":{"NAME":"Hermanus","POP_MAX":25153}},{"type":"Point","coordinates":[5530,3263],"properties":{"NAME":"Paarl","POP_MAX":187865}},{"type":"Point","coordinates":[5560,3215],"properties":{"NAME":"Bredasdorp","POP_MAX":14936}},{"type":"Point","coordinates":[5631,3342],"properties":{"NAME":"Beaufort West","POP_MAX":44737}},{"type":"Point","coordinates":[5948,4284],"properties":{"NAME":"Moatize","POP_MAX":42000}},{"type":"Point","coordinates":[5849,4311],"properties":{"NAME":"Luangwa","POP_MAX":3065}},{"type":"Point","coordinates":[5918,4117],"properties":{"NAME":"Manica","POP_MAX":4000}},{"type":"Point","coordinates":[5915,4031],"properties":{"NAME":"Espungabera","POP_MAX":393}},{"type":"Point","coordinates":[6128,5079],"properties":{"NAME":"Witu","POP_MAX":5380}},{"type":"Point","coordinates":[6073,5044],"properties":{"NAME":"Tsavo","POP_MAX":414}},{"type":"Point","coordinates":[6076,5022],"properties":{"NAME":"Voi","POP_MAX":36487}},{"type":"Point","coordinates":[6112,5008],"properties":{"NAME":"Kilifi","POP_MAX":80339}},{"type":"Point","coordinates":[5947,4641],"properties":{"NAME":"Karonga","POP_MAX":34207}},{"type":"Point","coordinates":[6035,5157],"properties":{"NAME":"Thika","POP_MAX":99322}},{"type":"Point","coordinates":[5967,5196],"properties":{"NAME":"Kendu Bay","POP_MAX":91248}},{"type":"Point","coordinates":[5953,5168],"properties":{"NAME":"Karungu","POP_MAX":2376}},{"type":"Point","coordinates":[5970,5178],"properties":{"NAME":"Kisii","POP_MAX":28547}},{"type":"Point","coordinates":[6088,4456],"properties":{"NAME":"Montepuez","POP_MAX":72279}},{"type":"Point","coordinates":[6126,4561],"properties":{"NAME":"Mocimboa","POP_MAX":27909}},{"type":"Point","coordinates":[6046,4452],"properties":{"NAME":"Marrupa","POP_MAX":8762}},{"type":"Point","coordinates":[6020,4360],"properties":{"NAME":"Cuamba","POP_MAX":73268}},{"type":"Point","coordinates":[6053,4337],"properties":{"NAME":"Ligonha","POP_MAX":3500}},{"type":"Point","coordinates":[5776,3731],"properties":{"NAME":"Brits","POP_MAX":122497}},{"type":"Point","coordinates":[5715,3614],"properties":{"NAME":"Bloemhof","POP_MAX":17122}},{"type":"Point","coordinates":[5757,3669],"properties":{"NAME":"Potchefstroom","POP_MAX":123669}},{"type":"Point","coordinates":[5739,3553],"properties":{"NAME":"Brandfort","POP_MAX":12091}},{"type":"Point","coordinates":[5790,3581],"properties":{"NAME":"Bethlehem","POP_MAX":83654}},{"type":"Point","coordinates":[5924,3766],"properties":{"NAME":"Macia","POP_MAX":23156}},{"type":"Point","coordinates":[5920,3968],"properties":{"NAME":"Massangena","POP_MAX":650}},{"type":"Point","coordinates":[5892,3893],"properties":{"NAME":"Mapai","POP_MAX":201}},{"type":"Point","coordinates":[5794,3694],"properties":{"NAME":"Springs","POP_MAX":236083}},{"type":"Point","coordinates":[5834,3631],"properties":{"NAME":"Volksrust","POP_MAX":43378}},{"type":"Point","coordinates":[5865,3740],"properties":{"NAME":"Mbombela","POP_MAX":348138}},{"type":"Point","coordinates":[5892,3744],"properties":{"NAME":"Komatipoort","POP_MAX":20508}},{"type":"Point","coordinates":[5823,3724],"properties":{"NAME":"Middelburg","POP_MAX":154706}},{"type":"Point","coordinates":[5822,3682],"properties":{"NAME":"Bethal","POP_MAX":101919}},{"type":"Point","coordinates":[5816,3655],"properties":{"NAME":"Standerton","POP_MAX":74021}},{"type":"Point","coordinates":[5824,3814],"properties":{"NAME":"Lebowakgomo","POP_MAX":33308}},{"type":"Point","coordinates":[5842,3836],"properties":{"NAME":"Tzaneen","POP_MAX":67245}},{"type":"Point","coordinates":[5877,3575],"properties":{"NAME":"Ulundi","POP_MAX":20753}},{"type":"Point","coordinates":[5831,3562],"properties":{"NAME":"Ladysmith","POP_MAX":47375}},{"type":"Point","coordinates":[5850,3436],"properties":{"NAME":"Port Shepstone","POP_MAX":52793}},{"type":"Point","coordinates":[5896,3619],"properties":{"NAME":"Ubomba","POP_MAX":564}},{"type":"Point","coordinates":[6399,4390],"properties":{"NAME":"Sambava","POP_MAX":43465}},{"type":"Point","coordinates":[6351,4424],"properties":{"NAME":"Ambanja","POP_MAX":30621}},{"type":"Point","coordinates":[6286,3918],"properties":{"NAME":"Ihosy","POP_MAX":16990}},{"type":"Point","coordinates":[6362,4299],"properties":{"NAME":"Mandritsara","POP_MAX":9705}},{"type":"Point","coordinates":[6241,4246],"properties":{"NAME":"Besalampy","POP_MAX":1022}},{"type":"Point","coordinates":[6301,4284],"properties":{"NAME":"Marovoay","POP_MAX":31253}},{"type":"Point","coordinates":[6338,4355],"properties":{"NAME":"Antsohihy","POP_MAX":21290}},{"type":"Point","coordinates":[6350,4183],"properties":{"NAME":"Ambatondrazaka","POP_MAX":43134}},{"type":"Point","coordinates":[6264,3813],"properties":{"NAME":"Bekiy","POP_MAX":4286}},{"type":"Point","coordinates":[6237,3974],"properties":{"NAME":"Manja","POP_MAX":1536}},{"type":"Point","coordinates":[6268,4086],"properties":{"NAME":"Miandrivazo","POP_MAX":20631}},{"type":"Point","coordinates":[9310,4902],"properties":{"NAME":"Sohano","POP_MAX":2338}},{"type":"Point","coordinates":[9337,4857],"properties":{"NAME":"Kieta","POP_MAX":6958}},{"type":"Point","coordinates":[9370,4747],"properties":{"NAME":"Gizo","POP_MAX":6154}},{"type":"Point","coordinates":[9003,4861],"properties":{"NAME":"Mendi","POP_MAX":26252}},{"type":"Point","coordinates":[9140,4635],"properties":{"NAME":"Abau","POP_MAX":230}},{"type":"Point","coordinates":[9193,4620],"properties":{"NAME":"Alotau","POP_MAX":11624}},{"type":"Point","coordinates":[9131,4709],"properties":{"NAME":"Popondetta","POP_MAX":28198}},{"type":"Point","coordinates":[9191,4900],"properties":{"NAME":"Hoskins","POP_MAX":871}},{"type":"Point","coordinates":[5131,8253],"properties":{"NAME":"Haarlem","POP_MAX":349957}},{"type":"Point","coordinates":[2766,5667],"properties":{"NAME":"Las Tablas","POP_MAX":11358}},{"type":"Point","coordinates":[2746,5686],"properties":{"NAME":"Santiago","POP_MAX":45955}},{"type":"Point","coordinates":[2825,5704],"properties":{"NAME":"La Palma","POP_MAX":1845}},{"type":"Point","coordinates":[4837,7247],"properties":{"NAME":"Ksar El Kebir","POP_MAX":306600}},{"type":"Point","coordinates":[4830,7257],"properties":{"NAME":"Larache","POP_MAX":120082}},{"type":"Point","coordinates":[4890,7201],"properties":{"NAME":"Taza","POP_MAX":199633}},{"type":"Point","coordinates":[4847,7235],"properties":{"NAME":"Ouezzane","POP_MAX":69658}},{"type":"Point","coordinates":[4819,7204],"properties":{"NAME":"Kenitra","POP_MAX":551786}},{"type":"Point","coordinates":[4790,7131],"properties":{"NAME":"Settat","POP_MAX":161748}},{"type":"Point","coordinates":[4878,7068],"properties":{"NAME":"Er Rachidia","POP_MAX":228489}},{"type":"Point","coordinates":[4847,7182],"properties":{"NAME":"Meknes","POP_MAX":697628}},{"type":"Point","coordinates":[4731,6939],"properties":{"NAME":"Tiznit","POP_MAX":57705}},{"type":"Point","coordinates":[4765,7145],"properties":{"NAME":"El Jadida","POP_MAX":180470}},{"type":"Point","coordinates":[5779,7986],"properties":{"NAME":"Balti","POP_MAX":151355}},{"type":"Point","coordinates":[5787,7878],"properties":{"NAME":"Cahul","POP_MAX":63407}},{"type":"Point","coordinates":[5827,7933],"properties":{"NAME":"Tiraspol","POP_MAX":157000}},{"type":"Point","coordinates":[5929,4654],"properties":{"NAME":"Chitipa","POP_MAX":13412}},{"type":"Point","coordinates":[5957,4544],"properties":{"NAME":"Nkhata Bay","POP_MAX":22108}},{"type":"Point","coordinates":[5957,4468],"properties":{"NAME":"Nkhotakota","POP_MAX":59854}},{"type":"Point","coordinates":[5969,4080],"properties":{"NAME":"Dondo","POP_MAX":78648}},{"type":"Point","coordinates":[5967,4238],"properties":{"NAME":"Chiramba","POP_MAX":556}},{"type":"Point","coordinates":[6068,4240],"properties":{"NAME":"Mocuba","POP_MAX":68984}},{"type":"Point","coordinates":[6027,4196],"properties":{"NAME":"Nicuadala","POP_MAX":6945}},{"type":"Point","coordinates":[5984,4379],"properties":{"NAME":"Mangochi","POP_MAX":97711}},{"type":"Point","coordinates":[5961,4418],"properties":{"NAME":"Salima","POP_MAX":71181}},{"type":"Point","coordinates":[5988,3833],"properties":{"NAME":"Maxixe","POP_MAX":119868}},{"type":"Point","coordinates":[5969,3822],"properties":{"NAME":"Panda","POP_MAX":602}},{"type":"Point","coordinates":[5970,3784],"properties":{"NAME":"Quissico","POP_MAX":1210}},{"type":"Point","coordinates":[5986,3942],"properties":{"NAME":"Vilanculos","POP_MAX":177}},{"type":"Point","coordinates":[5715,3350],"properties":{"NAME":"Cradock","POP_MAX":32898}},{"type":"Point","coordinates":[5709,3260],"properties":{"NAME":"Uitenhage","POP_MAX":228912}},{"type":"Point","coordinates":[5751,3269],"properties":{"NAME":"Port Alfred","POP_MAX":17959}},{"type":"Point","coordinates":[5741,3286],"properties":{"NAME":"Grahamstown","POP_MAX":91548}},{"type":"Point","coordinates":[5824,3383],"properties":{"NAME":"Port St. Johns","POP_MAX":5939}},{"type":"Point","coordinates":[5746,3438],"properties":{"NAME":"Aliwal North","POP_MAX":44436}},{"type":"Point","coordinates":[5751,3368],"properties":{"NAME":"Queenstown","POP_MAX":105309}},{"type":"Point","coordinates":[5906,3711],"properties":{"NAME":"Matola","POP_MAX":543907}},{"type":"Point","coordinates":[9622,4594],"properties":{"NAME":"Lata","POP_MAX":553}},{"type":"Point","coordinates":[7367,8492],"properties":{"NAME":"Timiryazevskiy","POP_MAX":7182}},{"type":"Point","coordinates":[7402,8521],"properties":{"NAME":"Asino","POP_MAX":27070}},{"type":"Point","coordinates":[7163,8738],"properties":{"NAME":"Strezhevoy","POP_MAX":44784}},{"type":"Point","coordinates":[6173,7784],"properties":{"NAME":"Cherkessk","POP_MAX":116224}},{"type":"Point","coordinates":[6246,7713],"properties":{"NAME":"Vladikavkaz","POP_MAX":364630}},{"type":"Point","coordinates":[6212,7832],"properties":{"NAME":"Blagodarnyy","POP_MAX":35995}},{"type":"Point","coordinates":[6224,7791],"properties":{"NAME":"Zelenokumsk","POP_MAX":41306}},{"type":"Point","coordinates":[6230,5378],"properties":{"NAME":"Buurhakaba","POP_MAX":31267}},{"type":"Point","coordinates":[6187,5437],"properties":{"NAME":"Luuq","POP_MAX":33820}},{"type":"Point","coordinates":[6168,5445],"properties":{"NAME":"Mandera","POP_MAX":52885}},{"type":"Point","coordinates":[9830,9067],"properties":{"NAME":"Mukhomornoye","POP_MAX":100}},{"type":"Point","coordinates":[9996,8873],"properties":{"NAME":"Beringovskiy","POP_MAX":1861}},{"type":"Point","coordinates":[9635,9162],"properties":{"NAME":"Bilibino","POP_MAX":5757}},{"type":"Point","coordinates":[2,9213],"properties":{"NAME":"Mys Shmidta","POP_MAX":492}},{"type":"Point","coordinates":[11,9062],"properties":{"NAME":"Egvekinot","POP_MAX":2248}},{"type":"Point","coordinates":[5611,8409],"properties":{"NAME":"Sovetsk","POP_MAX":43309}},{"type":"Point","coordinates":[5844,9241],"properties":{"NAME":"Nikel","POP_MAX":15866}},{"type":"Point","coordinates":[5916,9155],"properties":{"NAME":"Monchegorsk","POP_MAX":49868}},{"type":"Point","coordinates":[5940,9136],"properties":{"NAME":"Kirovsk","POP_MAX":29605}},{"type":"Point","coordinates":[5946,8602],"properties":{"NAME":"Borovichi","POP_MAX":57887}},{"type":"Point","coordinates":[5875,8579],"properties":{"NAME":"Staraya Russa","POP_MAX":34303}},{"type":"Point","coordinates":[5903,8691],"properties":{"NAME":"Volkhov","POP_MAX":45673}},{"type":"Point","coordinates":[5935,8675],"properties":{"NAME":"Tikhvin","POP_MAX":62075}},{"type":"Point","coordinates":[5807,8759],"properties":{"NAME":"Svetogorsk","POP_MAX":30115}},{"type":"Point","coordinates":[5841,8670],"properties":{"NAME":"Gatchina","POP_MAX":90486}},{"type":"Point","coordinates":[5833,8622],"properties":{"NAME":"Luga","POP_MAX":40114}},{"type":"Point","coordinates":[5900,8276],"properties":{"NAME":"Klintsy","POP_MAX":66336}},{"type":"Point","coordinates":[5917,8344],"properties":{"NAME":"Roslavl","POP_MAX":56971}},{"type":"Point","coordinates":[5927,8414],"properties":{"NAME":"Safonovo","POP_MAX":46637}},{"type":"Point","coordinates":[5957,8418],"properties":{"NAME":"Vyazma","POP_MAX":55500}},{"type":"Point","coordinates":[5958,8913],"properties":{"NAME":"Segezha","POP_MAX":33354}},{"type":"Point","coordinates":[6170,8534],"properties":{"NAME":"Vichuga","POP_MAX":39071}},{"type":"Point","coordinates":[6270,8601],"properties":{"NAME":"Sharya","POP_MAX":35532}},{"type":"Point","coordinates":[6159,8607],"properties":{"NAME":"Buy","POP_MAX":26486}},{"type":"Point","coordinates":[6212,8478],"properties":{"NAME":"Dzerzhinsk","POP_MAX":256537}},{"type":"Point","coordinates":[6176,8424],"properties":{"NAME":"Vyska","POP_MAX":61664}},{"type":"Point","coordinates":[6042,8514],"properties":{"NAME":"Kimry","POP_MAX":52070}},{"type":"Point","coordinates":[6024,8566],"properties":{"NAME":"Bezhetsk","POP_MAX":34736}},{"type":"Point","coordinates":[5915,8476],"properties":{"NAME":"Nelidovo","POP_MAX":25349}},{"type":"Point","coordinates":[5950,8572],"properties":{"NAME":"Bologoye","POP_MAX":25142}},{"type":"Point","coordinates":[5976,8523],"properties":{"NAME":"Torzhok","POP_MAX":48546}},{"type":"Point","coordinates":[6119,8664],"properties":{"NAME":"Sokol","POP_MAX":42174}},{"type":"Point","coordinates":[6058,8645],"properties":{"NAME":"Cherepovets","POP_MAX":311850}},{"type":"Point","coordinates":[6083,8582],"properties":{"NAME":"Rybinsk","POP_MAX":216724}},{"type":"Point","coordinates":[6099,8532],"properties":{"NAME":"Rostov","POP_MAX":33803}},{"type":"Point","coordinates":[6012,8377],"properties":{"NAME":"Kaluga","POP_MAX":338978}},{"type":"Point","coordinates":[5957,8352],"properties":{"NAME":"Kirov","POP_MAX":39319}},{"type":"Point","coordinates":[6022,8410],"properties":{"NAME":"Obninsk","POP_MAX":107392}},{"type":"Point","coordinates":[5984,8214],"properties":{"NAME":"Lgov","POP_MAX":23500}},{"type":"Point","coordinates":[5988,8252],"properties":{"NAME":"Zheleznogorsk","POP_MAX":97900}},{"type":"Point","coordinates":[6114,8260],"properties":{"NAME":"Gryazi","POP_MAX":47413}},{"type":"Point","coordinates":[6089,8428],"properties":{"NAME":"Yegoryevsk","POP_MAX":89795}},{"type":"Point","coordinates":[6047,8427],"properties":{"NAME":"Podolsk","POP_MAX":320635}},{"type":"Point","coordinates":[6032,8474],"properties":{"NAME":"Solnechnogorsk","POP_MAX":58891}},{"type":"Point","coordinates":[6074,8456],"properties":{"NAME":"Noginsk","POP_MAX":229731}},{"type":"Point","coordinates":[6044,8401],"properties":{"NAME":"Serpukhov","POP_MAX":135584}},{"type":"Point","coordinates":[6049,8256],"properties":{"NAME":"Livny","POP_MAX":52915}},{"type":"Point","coordinates":[6020,8305],"properties":{"NAME":"Mtsensk","POP_MAX":47609}},{"type":"Point","coordinates":[6159,7911],"properties":{"NAME":"Salsk","POP_MAX":61000}},{"type":"Point","coordinates":[6138,8010],"properties":{"NAME":"Belaya Kalitva","POP_MAX":48098}},{"type":"Point","coordinates":[6124,7983],"properties":{"NAME":"Shakhty","POP_MAX":221312}},{"type":"Point","coordinates":[6127,8054],"properties":{"NAME":"Millerovo","POP_MAX":38527}},{"type":"Point","coordinates":[6064,8298],"properties":{"NAME":"Yefremov","POP_MAX":45497}},{"type":"Point","coordinates":[6064,8334],"properties":{"NAME":"Bogoroditsk","POP_MAX":39553}},{"type":"Point","coordinates":[6266,8120],"properties":{"NAME":"Kamyshin","POP_MAX":128626}},{"type":"Point","coordinates":[6308,8118],"properties":{"NAME":"Pallasovka","POP_MAX":17139}},{"type":"Point","coordinates":[6218,8102],"properties":{"NAME":"Frolovo","POP_MAX":40882}},{"type":"Point","coordinates":[6249,8046],"properties":{"NAME":"Volzhskiy","POP_MAX":323293}},{"type":"Point","coordinates":[6206,8119],"properties":{"NAME":"Mikhaylovka","POP_MAX":58898}},{"type":"Point","coordinates":[6172,8160],"properties":{"NAME":"Uryupinsk","POP_MAX":41644}},{"type":"Point","coordinates":[6056,8191],"properties":{"NAME":"Starsy Oskol","POP_MAX":226977}},{"type":"Point","coordinates":[6080,8153],"properties":{"NAME":"Alekseyevka","POP_MAX":39848}},{"type":"Point","coordinates":[6063,8128],"properties":{"NAME":"Valuyki","POP_MAX":35887}},{"type":"Point","coordinates":[6090,7774],"properties":{"NAME":"Tuapse","POP_MAX":99145}},{"type":"Point","coordinates":[6062,7801],"properties":{"NAME":"Gelendzhik","POP_MAX":55508}},{"type":"Point","coordinates":[6137,7804],"properties":{"NAME":"Labinsk","POP_MAX":61945}},{"type":"Point","coordinates":[6148,7826],"properties":{"NAME":"Armavir","POP_MAX":199548}},{"type":"Point","coordinates":[6087,7862],"properties":{"NAME":"Timashevsk","POP_MAX":44024}},{"type":"Point","coordinates":[6120,7875],"properties":{"NAME":"Tikhoretsk","POP_MAX":64387}},{"type":"Point","coordinates":[6068,7924],"properties":{"NAME":"Yeysk","POP_MAX":87814}},{"type":"Point","coordinates":[6260,8357],"properties":{"NAME":"Saransk","POP_MAX":303394}},{"type":"Point","coordinates":[6229,8301],"properties":{"NAME":"Kamenka","POP_MAX":16560}},{"type":"Point","coordinates":[6300,8296],"properties":{"NAME":"Kuznetsk","POP_MAX":95574}},{"type":"Point","coordinates":[6234,8258],"properties":{"NAME":"Serdobsk","POP_MAX":36652}},{"type":"Point","coordinates":[6155,8402],"properties":{"NAME":"Kasimov","POP_MAX":36663}},{"type":"Point","coordinates":[6169,8368],"properties":{"NAME":"Sasovo","POP_MAX":31325}},{"type":"Point","coordinates":[6158,8266],"properties":{"NAME":"Kotovsk","POP_MAX":33077}},{"type":"Point","coordinates":[6166,8316],"properties":{"NAME":"Morshansk","POP_MAX":49350}},{"type":"Point","coordinates":[6153,8484],"properties":{"NAME":"Kovrov","POP_MAX":154224}},{"type":"Point","coordinates":[6173,8438],"properties":{"NAME":"Murom","POP_MAX":131287}},{"type":"Point","coordinates":[6532,8351],"properties":{"NAME":"Rayevskiy","POP_MAX":20060}},{"type":"Point","coordinates":[6635,8272],"properties":{"NAME":"Sibay","POP_MAX":61590}},{"type":"Point","coordinates":[6556,8276],"properties":{"NAME":"Kumertau","POP_MAX":65321}},{"type":"Point","coordinates":[6560,8311],"properties":{"NAME":"Salavat","POP_MAX":159893}},{"type":"Point","coordinates":[6509,8355],"properties":{"NAME":"Belebey","POP_MAX":62582}},{"type":"Point","coordinates":[6498,8382],"properties":{"NAME":"Tuymazy","POP_MAX":68829}},{"type":"Point","coordinates":[6513,8468],"properties":{"NAME":"Neftekamsk","POP_MAX":126805}},{"type":"Point","coordinates":[6717,8353],"properties":{"NAME":"Troitsk","POP_MAX":82338}},{"type":"Point","coordinates":[6709,8391],"properties":{"NAME":"Yemanzhelinsk","POP_MAX":42023}},{"type":"Point","coordinates":[6692,8292],"properties":{"NAME":"Kartaly","POP_MAX":28503}},{"type":"Point","coordinates":[6597,8405],"properties":{"NAME":"Asha","POP_MAX":38883}},{"type":"Point","coordinates":[6676,8405],"properties":{"NAME":"Miass","POP_MAX":167500}},{"type":"Point","coordinates":[6689,8446],"properties":{"NAME":"Kyshtym","POP_MAX":50911}},{"type":"Point","coordinates":[6797,8400],"properties":{"NAME":"Kurtamysh","POP_MAX":17936}},{"type":"Point","coordinates":[6774,8468],"properties":{"NAME":"Shadrinsk","POP_MAX":79479}},{"type":"Point","coordinates":[6675,9259],"properties":{"NAME":"Varnek","POP_MAX":10}},{"type":"Point","coordinates":[6375,9206],"properties":{"NAME":"Bugrino","POP_MAX":300}},{"type":"Point","coordinates":[7150,9179],"properties":{"NAME":"Yamburg","POP_MAX":48488}},{"type":"Point","coordinates":[7161,9144],"properties":{"NAME":"Nakhodka","POP_MAX":159551}},{"type":"Point","coordinates":[6503,8904],"properties":{"NAME":"Sosnogorsk","POP_MAX":29343}},{"type":"Point","coordinates":[6366,8555],"properties":{"NAME":"Sovetsk","POP_MAX":17869}},{"type":"Point","coordinates":[6400,8621],"properties":{"NAME":"Slobodskoy","POP_MAX":48962}},{"type":"Point","coordinates":[6457,8655],"properties":{"NAME":"Kirs","POP_MAX":11385}},{"type":"Point","coordinates":[6455,8617],"properties":{"NAME":"Omutninsk","POP_MAX":32800}},{"type":"Point","coordinates":[6348,8597],"properties":{"NAME":"Kotelnich","POP_MAX":28431}},{"type":"Point","coordinates":[6335,8500],"properties":{"NAME":"Yoshkar Ola","POP_MAX":324406}},{"type":"Point","coordinates":[6727,8488],"properties":{"NAME":"Kamensk Uralskiy","POP_MAX":182500}},{"type":"Point","coordinates":[6678,8489],"properties":{"NAME":"Polevskoy","POP_MAX":65770}},{"type":"Point","coordinates":[6820,8582],"properties":{"NAME":"Tavda","POP_MAX":39480}},{"type":"Point","coordinates":[6725,8542],"properties":{"NAME":"Artemovskiy","POP_MAX":44689}},{"type":"Point","coordinates":[6679,8550],"properties":{"NAME":"Nevyansk","POP_MAX":28170}},{"type":"Point","coordinates":[6688,8582],"properties":{"NAME":"Verkhnyaya Salda","POP_MAX":48992}},{"type":"Point","coordinates":[6668,8616],"properties":{"NAME":"Nizhnyaya Tura","POP_MAX":56084}},{"type":"Point","coordinates":[6673,8681],"properties":{"NAME":"Karpinsk","POP_MAX":30807}},{"type":"Point","coordinates":[6685,8735],"properties":{"NAME":"Ivdel","POP_MAX":19379}},{"type":"Point","coordinates":[6611,8498],"properties":{"NAME":"Krasnoufimsk","POP_MAX":43121}},{"type":"Point","coordinates":[6500,8491],"properties":{"NAME":"Sarapul","POP_MAX":101344}},{"type":"Point","coordinates":[6455,8490],"properties":{"NAME":"Mozhga","POP_MAX":47270}},{"type":"Point","coordinates":[6506,8523],"properties":{"NAME":"Votkinsk","POP_MAX":98633}},{"type":"Point","coordinates":[6468,8586],"properties":{"NAME":"Glazov","POP_MAX":100676}},{"type":"Point","coordinates":[6324,8435],"properties":{"NAME":"Kanash","POP_MAX":49886}},{"type":"Point","coordinates":[6295,8433],"properties":{"NAME":"Shumerlya","POP_MAX":35230}},{"type":"Point","coordinates":[6300,8397],"properties":{"NAME":"Alatyr","POP_MAX":46427}},{"type":"Point","coordinates":[6534,8183],"properties":{"NAME":"Sol-lletsk","POP_MAX":27419}},{"type":"Point","coordinates":[6660,8159],"properties":{"NAME":"Dombarovskiy","POP_MAX":9556}},{"type":"Point","coordinates":[6606,8198],"properties":{"NAME":"Mednogorsk","POP_MAX":30676}},{"type":"Point","coordinates":[6630,8201],"properties":{"NAME":"Gay","POP_MAX":41619}},{"type":"Point","coordinates":[6458,8277],"properties":{"NAME":"Buzuluk","POP_MAX":87714}},{"type":"Point","coordinates":[6432,8311],"properties":{"NAME":"Otradnyy","POP_MAX":50127}},{"type":"Point","coordinates":[6382,8317],"properties":{"NAME":"Tolyatti","POP_MAX":702879}},{"type":"Point","coordinates":[6287,8202],"properties":{"NAME":"Engels","POP_MAX":196011}},{"type":"Point","coordinates":[6361,8232],"properties":{"NAME":"Pugachev","POP_MAX":26690}},{"type":"Point","coordinates":[6321,8233],"properties":{"NAME":"Volsk","POP_MAX":70500}},{"type":"Point","coordinates":[6255,8224],"properties":{"NAME":"Atkarsk","POP_MAX":27554}},{"type":"Point","coordinates":[6204,8205],"properties":{"NAME":"Balashov","POP_MAX":98107}},{"type":"Point","coordinates":[6459,8399],"properties":{"NAME":"Almetyevsk","POP_MAX":140437}},{"type":"Point","coordinates":[6412,8426],"properties":{"NAME":"Chistopol","POP_MAX":62200}},{"type":"Point","coordinates":[6445,8442],"properties":{"NAME":"Nizhnekamsk","POP_MAX":234297}},{"type":"Point","coordinates":[6382,8362],"properties":{"NAME":"Dimitrovgrad","POP_MAX":132226}},{"type":"Point","coordinates":[6815,8867],"properties":{"NAME":"Peregrebnoye","POP_MAX":10}},{"type":"Point","coordinates":[6700,8942],"properties":{"NAME":"Saranpaul","POP_MAX":2985}},{"type":"Point","coordinates":[6806,8703],"properties":{"NAME":"Uray","POP_MAX":39878}},{"type":"Point","coordinates":[7237,8759],"properties":{"NAME":"Laryak","POP_MAX":10}},{"type":"Point","coordinates":[7077,8814],"properties":{"NAME":"Kogalym","POP_MAX":58192}},{"type":"Point","coordinates":[7121,8757],"properties":{"NAME":"Megion","POP_MAX":48691}},{"type":"Point","coordinates":[7086,8357],"properties":{"NAME":"Cherlak","POP_MAX":12122}},{"type":"Point","coordinates":[7079,8408],"properties":{"NAME":"Kalachinsk","POP_MAX":24059}},{"type":"Point","coordinates":[6989,8438],"properties":{"NAME":"Nazyvayevsk","POP_MAX":12284}},{"type":"Point","coordinates":[6987,8401],"properties":{"NAME":"Isikul","POP_MAX":21136}},{"type":"Point","coordinates":[6936,8472],"properties":{"NAME":"Ishim","POP_MAX":67762}},{"type":"Point","coordinates":[6906,8485],"properties":{"NAME":"Golyshmanovo","POP_MAX":13424}},{"type":"Point","coordinates":[6849,8502],"properties":{"NAME":"Yalutorovsk","POP_MAX":35892}},{"type":"Point","coordinates":[7375,8262],"properties":{"NAME":"Biysk","POP_MAX":215430}},{"type":"Point","coordinates":[7291,8182],"properties":{"NAME":"Zmeinogorsk","POP_MAX":11514}},{"type":"Point","coordinates":[7308,8260],"properties":{"NAME":"Aleysk","POP_MAX":28019}},{"type":"Point","coordinates":[7341,8312],"properties":{"NAME":"Novoaltaysk","POP_MAX":91386}},{"type":"Point","coordinates":[7268,8335],"properties":{"NAME":"Kamenna Obi","POP_MAX":44564}},{"type":"Point","coordinates":[7272,8173],"properties":{"NAME":"Gornyak","POP_MAX":15668}},{"type":"Point","coordinates":[7201,8265],"properties":{"NAME":"Kulunda","POP_MAX":15345}},{"type":"Point","coordinates":[7193,8290],"properties":{"NAME":"Slavgorod","POP_MAX":34141}},{"type":"Point","coordinates":[7449,8277],"properties":{"NAME":"Tashtagol","POP_MAX":22779}},{"type":"Point","coordinates":[7396,8365],"properties":{"NAME":"Guryevsk","POP_MAX":38757}},{"type":"Point","coordinates":[7366,8447],"properties":{"NAME":"Yurga","POP_MAX":84220}},{"type":"Point","coordinates":[7387,8422],"properties":{"NAME":"Topki","POP_MAX":24672}},{"type":"Point","coordinates":[7446,8475],"properties":{"NAME":"Mariinsk","POP_MAX":43122}},{"type":"Point","coordinates":[7507,8376],"properties":{"NAME":"Shira","POP_MAX":9358}},{"type":"Point","coordinates":[7324,8361],"properties":{"NAME":"Cherepanovo","POP_MAX":20125}},{"type":"Point","coordinates":[7238,8417],"properties":{"NAME":"Kargat","POP_MAX":10881}},{"type":"Point","coordinates":[7306,8405],"properties":{"NAME":"Ob","POP_MAX":39949}},{"type":"Point","coordinates":[7175,8331],"properties":{"NAME":"Karasuk","POP_MAX":28589}},{"type":"Point","coordinates":[7184,8426],"properties":{"NAME":"Barabinsk","POP_MAX":31508}},{"type":"Point","coordinates":[7118,8418],"properties":{"NAME":"Tatarsk","POP_MAX":25150}},{"type":"Point","coordinates":[6260,5512],"properties":{"NAME":"Ferfer","POP_MAX":6000}},{"type":"Point","coordinates":[6270,5377],"properties":{"NAME":"Jawhar","POP_MAX":111308}},{"type":"Point","coordinates":[6525,6202],"properties":{"NAME":"Mirbat","POP_MAX":1120}},{"type":"Point","coordinates":[6426,5830],"properties":{"NAME":"Hurdiyo","POP_MAX":176}},{"type":"Point","coordinates":[6371,5768],"properties":{"NAME":"Qardho","POP_MAX":1341}},{"type":"Point","coordinates":[6415,5911],"properties":{"NAME":"Caluula","POP_MAX":513}},{"type":"Point","coordinates":[6576,6563],"properties":{"NAME":"Ibri","POP_MAX":101640}},{"type":"Point","coordinates":[6328,7702],"properties":{"NAME":"Kaspiysk","POP_MAX":81752}},{"type":"Point","coordinates":[6347,7655],"properties":{"NAME":"Derbent","POP_MAX":105965}},{"type":"Point","coordinates":[6314,7700],"properties":{"NAME":"Buynaksk","POP_MAX":75800}},{"type":"Point","coordinates":[8592,7406],"properties":{"NAME":"Gangneung","POP_MAX":180611}},{"type":"Point","coordinates":[8584,7432],"properties":{"NAME":"Sokcho","POP_MAX":85430}},{"type":"Point","coordinates":[8543,7294],"properties":{"NAME":"Jeonju","POP_MAX":711424}},{"type":"Point","coordinates":[8531,7303],"properties":{"NAME":"Gunsan","POP_MAX":244080}},{"type":"Point","coordinates":[8523,7235],"properties":{"NAME":"Mokpo","POP_MAX":268402}},{"type":"Point","coordinates":[8439,5828],"properties":{"NAME":"San Carlos","POP_MAX":6353}},{"type":"Point","coordinates":[8437,5852],"properties":{"NAME":"Cadiz","POP_MAX":283157}},{"type":"Point","coordinates":[8442,5672],"properties":{"NAME":"Pagadian","POP_MAX":159590}},{"type":"Point","coordinates":[8451,5689],"properties":{"NAME":"Ozamis","POP_MAX":97806}},{"type":"Point","coordinates":[8361,6114],"properties":{"NAME":"Tarlac","POP_MAX":183930}},{"type":"Point","coordinates":[8371,6116],"properties":{"NAME":"Cabanatuan","POP_MAX":220250}},{"type":"Point","coordinates":[8352,6077],"properties":{"NAME":"Olongapo","POP_MAX":304388}},{"type":"Point","coordinates":[8354,6147],"properties":{"NAME":"Dagupan","POP_MAX":163676}},{"type":"Point","coordinates":[8381,6032],"properties":{"NAME":"San Pablo","POP_MAX":240830}},{"type":"Point","coordinates":[8373,6066],"properties":{"NAME":"Quezon City","POP_MAX":2761720}},{"type":"Point","coordinates":[8372,6060],"properties":{"NAME":"Pasay City","POP_MAX":403064}},{"type":"Point","coordinates":[8462,5691],"properties":{"NAME":"Iligan","POP_MAX":464599}},{"type":"Point","coordinates":[8473,5858],"properties":{"NAME":"Ormac","POP_MAX":167584}},{"type":"Point","coordinates":[8484,5869],"properties":{"NAME":"Tacloban","POP_MAX":280006}},{"type":"Point","coordinates":[8499,5736],"properties":{"NAME":"Butuan","POP_MAX":190557}},{"type":"Point","coordinates":[8506,5645],"properties":{"NAME":"Tagum","POP_MAX":6726}},{"type":"Point","coordinates":[8497,5784],"properties":{"NAME":"Surigao","POP_MAX":87832}},{"type":"Point","coordinates":[8487,5729],"properties":{"NAME":"Gingoog","POP_MAX":218}},{"type":"Point","coordinates":[7848,9187],"properties":{"NAME":"Yessey","POP_MAX":10}},{"type":"Point","coordinates":[8004,8457],"properties":{"NAME":"Ulkan","POP_MAX":10}},{"type":"Point","coordinates":[8013,8567],"properties":{"NAME":"Kirensk","POP_MAX":13308}},{"type":"Point","coordinates":[7902,8497],"properties":{"NAME":"Zheleznogorsk Ilimskiy","POP_MAX":28456}},{"type":"Point","coordinates":[7822,8469],"properties":{"NAME":"Vikhorevka","POP_MAX":166}},{"type":"Point","coordinates":[7726,8461],"properties":{"NAME":"Biryusinsk","POP_MAX":9583}},{"type":"Point","coordinates":[7764,8620],"properties":{"NAME":"Kodinskiy","POP_MAX":15670}},{"type":"Point","coordinates":[7604,8368],"properties":{"NAME":"Artemovsk","POP_MAX":4948}},{"type":"Point","coordinates":[7629,8452],"properties":{"NAME":"Uyar","POP_MAX":13167}},{"type":"Point","coordinates":[7504,8424],"properties":{"NAME":"Uzhur","POP_MAX":19212}},{"type":"Point","coordinates":[7548,8295],"properties":{"NAME":"Sayanogorsk","POP_MAX":55642}},{"type":"Point","coordinates":[7512,8788],"properties":{"NAME":"Podkamennaya","POP_MAX":10}},{"type":"Point","coordinates":[7414,9128],"properties":{"NAME":"Igarka","POP_MAX":7470}},{"type":"Point","coordinates":[7488,9359],"properties":{"NAME":"Agapa","POP_MAX":10}},{"type":"Point","coordinates":[7718,9319],"properties":{"NAME":"Boyarka","POP_MAX":35968}},{"type":"Point","coordinates":[8108,9508],"properties":{"NAME":"Nordvik","POP_MAX":0}},{"type":"Point","coordinates":[7906,9722],"properties":{"NAME":"Chelyuskin","POP_MAX":885}},{"type":"Point","coordinates":[8202,8482],"properties":{"NAME":"Taksimo","POP_MAX":10359}},{"type":"Point","coordinates":[7968,8190],"properties":{"NAME":"Gusinoozyorsk","POP_MAX":24083}},{"type":"Point","coordinates":[8192,8179],"properties":{"NAME":"Aginskoye","POP_MAX":11491}},{"type":"Point","coordinates":[8612,8101],"properties":{"NAME":"Progress","POP_MAX":146}},{"type":"Point","coordinates":[8580,8169],"properties":{"NAME":"Belogorsk","POP_MAX":70203}},{"type":"Point","coordinates":[8389,8494],"properties":{"NAME":"Nyukzha","POP_MAX":10}},{"type":"Point","coordinates":[8248,8232],"properties":{"NAME":"Nerchinsk","POP_MAX":15360}},{"type":"Point","coordinates":[8764,7783],"properties":{"NAME":"Kavalerovo","POP_MAX":18657}},{"type":"Point","coordinates":[8701,7802],"properties":{"NAME":"Spassk Dalniy","POP_MAX":45900}},{"type":"Point","coordinates":[8990,9462],"properties":{"NAME":"Shalaurova","POP_MAX":10}},{"type":"Point","coordinates":[9289,9324],"properties":{"NAME":"Logashkino","POP_MAX":0}},{"type":"Point","coordinates":[8779,9276],"properties":{"NAME":"Ust Kuyga","POP_MAX":1517}},{"type":"Point","coordinates":[8599,8782],"properties":{"NAME":"Pokrovsk","POP_MAX":9763}},{"type":"Point","coordinates":[8353,8895],"properties":{"NAME":"Verkhnevilyuysk","POP_MAX":6341}},{"type":"Point","coordinates":[8137,8663],"properties":{"NAME":"Vitim","POP_MAX":3843}},{"type":"Point","coordinates":[8355,8724],"properties":{"NAME":"Olyokminsk","POP_MAX":10000}},{"type":"Point","coordinates":[8491,8979],"properties":{"NAME":"Tunguskhaya","POP_MAX":10}},{"type":"Point","coordinates":[8454,9183],"properties":{"NAME":"Natara","POP_MAX":10}},{"type":"Point","coordinates":[8177,9283],"properties":{"NAME":"Zhilinda","POP_MAX":10}},{"type":"Point","coordinates":[8540,9426],"properties":{"NAME":"Trofimovsk","POP_MAX":10}},{"type":"Point","coordinates":[8888,8542],"properties":{"NAME":"Tukchi","POP_MAX":10}},{"type":"Point","coordinates":[8815,8128],"properties":{"NAME":"Amursk","POP_MAX":46993}},{"type":"Point","coordinates":[8742,7931],"properties":{"NAME":"Bikin","POP_MAX":19659}},{"type":"Point","coordinates":[8755,7972],"properties":{"NAME":"Vyazemskiy","POP_MAX":15247}},{"type":"Point","coordinates":[8707,8180],"properties":{"NAME":"Chegdomyn","POP_MAX":14855}},{"type":"Point","coordinates":[9247,8639],"properties":{"NAME":"Siglan","POP_MAX":10}},{"type":"Point","coordinates":[9213,8707],"properties":{"NAME":"Karamken","POP_MAX":10}},{"type":"Point","coordinates":[9243,8803],"properties":{"NAME":"Strelka","POP_MAX":10}},{"type":"Point","coordinates":[9350,8155],"properties":{"NAME":"Severo Kurilsk","POP_MAX":2422}},{"type":"Point","coordinates":[8960,8026],"properties":{"NAME":"Krasnogorsk","POP_MAX":3304}},{"type":"Point","coordinates":[8987,8071],"properties":{"NAME":"Poronaysk","POP_MAX":16677}},{"type":"Point","coordinates":[8979,8036],"properties":{"NAME":"Makarov","POP_MAX":6663}},{"type":"Point","coordinates":[8979,7962],"properties":{"NAME":"Dolinsk","POP_MAX":11989}},{"type":"Point","coordinates":[8954,7923],"properties":{"NAME":"Nevelsk","POP_MAX":17000}},{"type":"Point","coordinates":[6168,5147],"properties":{"NAME":"Buur Gaabo","POP_MAX":3096}},{"type":"Point","coordinates":[4900,6169],"properties":{"NAME":"Goundam","POP_MAX":8456}},{"type":"Point","coordinates":[5026,6345],"properties":{"NAME":"Aguelhok","POP_MAX":9000}},{"type":"Point","coordinates":[4992,6197],"properties":{"NAME":"Bourem","POP_MAX":30000}},{"type":"Point","coordinates":[1772,6984],"properties":{"NAME":"San Quintin","POP_MAX":5433}},{"type":"Point","coordinates":[1822,6894],"properties":{"NAME":"Punta Prieta","POP_MAX":527}},{"type":"Point","coordinates":[1803,7015],"properties":{"NAME":"San Felipe","POP_MAX":20750}},{"type":"Point","coordinates":[1874,6800],"properties":{"NAME":"Santa Rosalia","POP_MAX":11899}},{"type":"Point","coordinates":[1822,6840],"properties":{"NAME":"Guerrero Negro","POP_MAX":13054}},{"type":"Point","coordinates":[2202,6881],"properties":{"NAME":"Piedras Negras","POP_MAX":139619}},{"type":"Point","coordinates":[2133,6710],"properties":{"NAME":"San Pedro de las Colonias","POP_MAX":53688}},{"type":"Point","coordinates":[2125,6799],"properties":{"NAME":"Sierra Mojada","POP_MAX":10}},{"type":"Point","coordinates":[2156,6691],"properties":{"NAME":"Parras","POP_MAX":32253}},{"type":"Point","coordinates":[2025,6865],"properties":{"NAME":"Cuauhtemoc","POP_MAX":90835}},{"type":"Point","coordinates":[1996,6980],"properties":{"NAME":"Nuevo Casas Grandes","POP_MAX":54826}},{"type":"Point","coordinates":[2094,6929],"properties":{"NAME":"Ojinaga","POP_MAX":22128}},{"type":"Point","coordinates":[2035,6991],"properties":{"NAME":"Villa Ahumada","POP_MAX":9326}},{"type":"Point","coordinates":[2054,6771],"properties":{"NAME":"Santa Barbara","POP_MAX":10800}},{"type":"Point","coordinates":[2072,6822],"properties":{"NAME":"Ciudad Camargo","POP_MAX":37743}},{"type":"Point","coordinates":[2113,6659],"properties":{"NAME":"Cuencame","POP_MAX":8876}},{"type":"Point","coordinates":[2068,6656],"properties":{"NAME":"Papasquiaro","POP_MAX":22750}},{"type":"Point","coordinates":[2055,6542],"properties":{"NAME":"Escuinapa","POP_MAX":28248}},{"type":"Point","coordinates":[1991,6693],"properties":{"NAME":"Guamuchil","POP_MAX":62695}},{"type":"Point","coordinates":[1981,6699],"properties":{"NAME":"Guasave","POP_MAX":96860}},{"type":"Point","coordinates":[1976,6748],"properties":{"NAME":"El Fuerte","POP_MAX":11171}},{"type":"Point","coordinates":[2011,6627],"properties":{"NAME":"Eldorado","POP_MAX":17365}},{"type":"Point","coordinates":[2024,6604],"properties":{"NAME":"La Cruz","POP_MAX":11900}},{"type":"Point","coordinates":[1950,7033],"properties":{"NAME":"Agua Prieta","POP_MAX":86083}},{"type":"Point","coordinates":[1940,6809],"properties":{"NAME":"Ciudad Obregon","POP_MAX":288002}},{"type":"Point","coordinates":[1953,6787],"properties":{"NAME":"Navajoa","POP_MAX":116093}},{"type":"Point","coordinates":[1878,6998],"properties":{"NAME":"Caborca","POP_MAX":57357}},{"type":"Point","coordinates":[1934,6899],"properties":{"NAME":"Mazatl�n","POP_MAX":500000}},{"type":"Point","coordinates":[1930,7013],"properties":{"NAME":"Cananea","POP_MAX":33433}},{"type":"Point","coordinates":[1948,6772],"properties":{"NAME":"Huatabampo","POP_MAX":30426}},{"type":"Point","coordinates":[2145,6537],"properties":{"NAME":"Zacatecas","POP_MAX":234481}},{"type":"Point","coordinates":[2122,6625],"properties":{"NAME":"Juan Aldama","POP_MAX":14162}},{"type":"Point","coordinates":[2117,6537],"properties":{"NAME":"Valparaiso","POP_MAX":10545}},{"type":"Point","coordinates":[2137,6560],"properties":{"NAME":"Fresnillo","POP_MAX":105488}},{"type":"Point","coordinates":[2228,6658],"properties":{"NAME":"Linares","POP_MAX":57731}},{"type":"Point","coordinates":[2198,6588],"properties":{"NAME":"Matehuala","POP_MAX":67717}},{"type":"Point","coordinates":[2251,6491],"properties":{"NAME":"Tamuin","POP_MAX":14748}},{"type":"Point","coordinates":[2250,6450],"properties":{"NAME":"Tamazunchale","POP_MAX":72685}},{"type":"Point","coordinates":[2224,6550],"properties":{"NAME":"Tula","POP_MAX":9054}},{"type":"Point","coordinates":[2270,6546],"properties":{"NAME":"Aldama","POP_MAX":12292}},{"type":"Point","coordinates":[2268,6657],"properties":{"NAME":"San Fernando","POP_MAX":29171}},{"type":"Point","coordinates":[2108,6314],"properties":{"NAME":"Tecoman","POP_MAX":91321}},{"type":"Point","coordinates":[2070,6416],"properties":{"NAME":"Puerto Vallarta","POP_MAX":187134}},{"type":"Point","coordinates":[2145,6393],"properties":{"NAME":"La Barca","POP_MAX":35345}},{"type":"Point","coordinates":[2120,6360],"properties":{"NAME":"Ciudad Guzman","POP_MAX":92161}},{"type":"Point","coordinates":[2163,6456],"properties":{"NAME":"Lagos de Moreno","POP_MAX":94127}},{"type":"Point","coordinates":[2183,6361],"properties":{"NAME":"Morelia","POP_MAX":644306}},{"type":"Point","coordinates":[2155,6258],"properties":{"NAME":"Lazaro Cardenas","POP_MAX":160087}},{"type":"Point","coordinates":[2153,6375],"properties":{"NAME":"Zamora","POP_MAX":214947}},{"type":"Point","coordinates":[2129,6306],"properties":{"NAME":"Coalcoman","POP_MAX":10715}},{"type":"Point","coordinates":[2159,6343],"properties":{"NAME":"Uruapan","POP_MAX":264531}},{"type":"Point","coordinates":[2070,6488],"properties":{"NAME":"Tuxpan","POP_MAX":26115}},{"type":"Point","coordinates":[2081,6464],"properties":{"NAME":"Tepic","POP_MAX":318781}},{"type":"Point","coordinates":[2080,6448],"properties":{"NAME":"Compostela","POP_MAX":16162}},{"type":"Point","coordinates":[2064,6515],"properties":{"NAME":"Tecuala","POP_MAX":14921}},{"type":"Point","coordinates":[2444,6298],"properties":{"NAME":"Ciudad del Carmen","POP_MAX":156195}},{"type":"Point","coordinates":[2475,6339],"properties":{"NAME":"Champoton","POP_MAX":26636}},{"type":"Point","coordinates":[2350,6154],"properties":{"NAME":"Salina Cruz","POP_MAX":81063}},{"type":"Point","coordinates":[2298,6136],"properties":{"NAME":"Puerto Escondido","POP_MAX":19488}},{"type":"Point","coordinates":[2315,6129],"properties":{"NAME":"Pochutla","POP_MAX":24481}},{"type":"Point","coordinates":[2317,6198],"properties":{"NAME":"Mitla","POP_MAX":7547}},{"type":"Point","coordinates":[2281,6218],"properties":{"NAME":"Tlaxiaco","POP_MAX":21391}},{"type":"Point","coordinates":[2278,6249],"properties":{"NAME":"Huajuapan de Leon","POP_MAX":47844}},{"type":"Point","coordinates":[2289,6286],"properties":{"NAME":"Tehuacan","POP_MAX":241429}},{"type":"Point","coordinates":[2290,6366],"properties":{"NAME":"Teziutlan","POP_MAX":177796}},{"type":"Point","coordinates":[2421,6294],"properties":{"NAME":"Frontera","POP_MAX":22621}},{"type":"Point","coordinates":[2455,6230],"properties":{"NAME":"Tenosique","POP_MAX":32415}},{"type":"Point","coordinates":[2183,6409],"properties":{"NAME":"Salamanca","POP_MAX":197524}},{"type":"Point","coordinates":[2181,6435],"properties":{"NAME":"Guanajuato","POP_MAX":112200}},{"type":"Point","coordinates":[2227,6293],"properties":{"NAME":"Taxco","POP_MAX":53217}},{"type":"Point","coordinates":[2238,6197],"properties":{"NAME":"Ayutla","POP_MAX":9897}},{"type":"Point","coordinates":[2198,6279],"properties":{"NAME":"Ciudad Altamirano","POP_MAX":24533}},{"type":"Point","coordinates":[2181,6233],"properties":{"NAME":"Petatlan","POP_MAX":31910}},{"type":"Point","coordinates":[2252,6386],"properties":{"NAME":"Pachuca","POP_MAX":319581}},{"type":"Point","coordinates":[2226,6338],"properties":{"NAME":"Toluca","POP_MAX":1531000}},{"type":"Point","coordinates":[2241,6365],"properties":{"NAME":"Zumpango","POP_MAX":250000}},{"type":"Point","coordinates":[2369,6259],"properties":{"NAME":"Minatitlan","POP_MAX":201902}},{"type":"Point","coordinates":[2372,6267],"properties":{"NAME":"Coatzacoalcos","POP_MAX":287285}},{"type":"Point","coordinates":[2287,6408],"properties":{"NAME":"Poza Rica de Hidalgo","POP_MAX":254481}},{"type":"Point","coordinates":[2302,6314],"properties":{"NAME":"Cordoba","POP_MAX":220563}},{"type":"Point","coordinates":[2347,6288],"properties":{"NAME":"Santiago Tuxtla","POP_MAX":15681}},{"type":"Point","coordinates":[2289,6432],"properties":{"NAME":"Tuxpam","POP_MAX":109049}},{"type":"Point","coordinates":[2267,6496],"properties":{"NAME":"Panuco","POP_MAX":35316}},{"type":"Point","coordinates":[2405,6126],"properties":{"NAME":"Pijijiapan","POP_MAX":23675}},{"type":"Point","coordinates":[2587,6446],"properties":{"NAME":"Isla Mujeres","POP_MAX":12491}},{"type":"Point","coordinates":[2549,6352],"properties":{"NAME":"Felipe Carrillo Puerto","POP_MAX":24807}},{"type":"Point","coordinates":[2547,6442],"properties":{"NAME":"Tizimin","POP_MAX":41993}},{"type":"Point","coordinates":[2545,6415],"properties":{"NAME":"Valladolid","POP_MAX":48479}},{"type":"Point","coordinates":[2522,6430],"properties":{"NAME":"Izamal","POP_MAX":14954}},{"type":"Point","coordinates":[2508,6400],"properties":{"NAME":"Ticul","POP_MAX":30519}},{"type":"Point","coordinates":[4654,6535],"properties":{"NAME":"Zouirat","POP_MAX":56345}},{"type":"Point","coordinates":[4841,6688],"properties":{"NAME":"Chegga","POP_MAX":10}},{"type":"Point","coordinates":[4626,6202],"properties":{"NAME":"Magta Lajar","POP_MAX":10}},{"type":"Point","coordinates":[4604,6179],"properties":{"NAME":"Bogue","POP_MAX":10415}},{"type":"Point","coordinates":[4592,6234],"properties":{"NAME":"Boutilimit","POP_MAX":14142}},{"type":"Point","coordinates":[4663,6096],"properties":{"NAME":"Selibaby","POP_MAX":460}},{"type":"Point","coordinates":[4777,5956],"properties":{"NAME":"Kati","POP_MAX":66895}},{"type":"Point","coordinates":[4794,6002],"properties":{"NAME":"Banamba","POP_MAX":30591}},{"type":"Point","coordinates":[4767,5909],"properties":{"NAME":"Kangaba","POP_MAX":17232}},{"type":"Point","coordinates":[4735,6100],"properties":{"NAME":"Nioro du Sahel","POP_MAX":14421}},{"type":"Point","coordinates":[4700,6017],"properties":{"NAME":"Bafoulabe","POP_MAX":26823}},{"type":"Point","coordinates":[4684,5948],"properties":{"NAME":"Satadougou","POP_MAX":706}},{"type":"Point","coordinates":[4708,6094],"properties":{"NAME":"Yelimane","POP_MAX":988}},{"type":"Point","coordinates":[4738,5973],"properties":{"NAME":"Kita","POP_MAX":46435}},{"type":"Point","coordinates":[4850,5935],"properties":{"NAME":"Koutiala","POP_MAX":104927}},{"type":"Point","coordinates":[4844,5873],"properties":{"NAME":"Sikasso","POP_MAX":225753}},{"type":"Point","coordinates":[4793,5879],"properties":{"NAME":"Bougouni","POP_MAX":35450}},{"type":"Point","coordinates":[4774,6159],"properties":{"NAME":"Timbedra","POP_MAX":245}},{"type":"Point","coordinates":[4800,6180],"properties":{"NAME":"Nema","POP_MAX":200000}},{"type":"Point","coordinates":[4833,6009],"properties":{"NAME":"Markala","POP_MAX":53738}},{"type":"Point","coordinates":[4831,6071],"properties":{"NAME":"Sokolo","POP_MAX":4374}},{"type":"Point","coordinates":[4865,5988],"properties":{"NAME":"San","POP_MAX":41386}},{"type":"Point","coordinates":[5341,5833],"properties":{"NAME":"Biu","POP_MAX":95005}},{"type":"Point","coordinates":[5383,5885],"properties":{"NAME":"Bama","POP_MAX":118121}},{"type":"Point","coordinates":[5207,5513],"properties":{"NAME":"Aba","POP_MAX":897560}},{"type":"Point","coordinates":[5212,5482],"properties":{"NAME":"Opobo","POP_MAX":34911}},{"type":"Point","coordinates":[5198,5552],"properties":{"NAME":"Orlu","POP_MAX":9351}},{"type":"Point","coordinates":[5228,5634],"properties":{"NAME":"Oturkpo","POP_MAX":68220}},{"type":"Point","coordinates":[5234,5504],"properties":{"NAME":"Calabar","POP_MAX":461796}},{"type":"Point","coordinates":[5274,5673],"properties":{"NAME":"Wukari","POP_MAX":92933}},{"type":"Point","coordinates":[5318,5733],"properties":{"NAME":"Jalingo","POP_MAX":117757}},{"type":"Point","coordinates":[5154,5820],"properties":{"NAME":"Kontagora","POP_MAX":98754}},{"type":"Point","coordinates":[5169,5743],"properties":{"NAME":"Bida","POP_MAX":173849}},{"type":"Point","coordinates":[5095,5632],"properties":{"NAME":"Abeokuta","POP_MAX":593100}},{"type":"Point","coordinates":[5111,5612],"properties":{"NAME":"Ijebu Ode","POP_MAX":209175}},{"type":"Point","coordinates":[5147,5637],"properties":{"NAME":"Akure","POP_MAX":420594}},{"type":"Point","coordinates":[5162,5653],"properties":{"NAME":"Ikare","POP_MAX":1099931}},{"type":"Point","coordinates":[5158,5634],"properties":{"NAME":"Owo","POP_MAX":276574}},{"type":"Point","coordinates":[5137,5628],"properties":{"NAME":"Ondo","POP_MAX":257005}},{"type":"Point","coordinates":[5147,5659],"properties":{"NAME":"Ado Ekiti","POP_MAX":446749}},{"type":"Point","coordinates":[5129,5651],"properties":{"NAME":"Ife","POP_MAX":482365}},{"type":"Point","coordinates":[5129,5667],"properties":{"NAME":"Oshogbo","POP_MAX":408245}},{"type":"Point","coordinates":[5111,5672],"properties":{"NAME":"Oyo","POP_MAX":736072}},{"type":"Point","coordinates":[5199,5577],"properties":{"NAME":"Awka","POP_MAX":500000}},{"type":"Point","coordinates":[5191,5573],"properties":{"NAME":"Onitsha","POP_MAX":73374}},{"type":"Point","coordinates":[5286,5894],"properties":{"NAME":"Azare","POP_MAX":105687}},{"type":"Point","coordinates":[5276,5815],"properties":{"NAME":"Bauchi","POP_MAX":316149}},{"type":"Point","coordinates":[5313,5813],"properties":{"NAME":"Gombe","POP_MAX":270366}},{"type":"Point","coordinates":[5314,5799],"properties":{"NAME":"Kumo","POP_MAX":35712}},{"type":"Point","coordinates":[5160,5558],"properties":{"NAME":"Sapele","POP_MAX":309162}},{"type":"Point","coordinates":[5208,5615],"properties":{"NAME":"Nsukka","POP_MAX":111017}},{"type":"Point","coordinates":[5190,5669],"properties":{"NAME":"Lokoja","POP_MAX":60579}},{"type":"Point","coordinates":[5190,5629],"properties":{"NAME":"Idah","POP_MAX":75087}},{"type":"Point","coordinates":[5239,5709],"properties":{"NAME":"Lafia","POP_MAX":127236}},{"type":"Point","coordinates":[5221,5730],"properties":{"NAME":"Keffi","POP_MAX":85911}},{"type":"Point","coordinates":[5206,5885],"properties":{"NAME":"Funtua","POP_MAX":180475}},{"type":"Point","coordinates":[5214,5970],"properties":{"NAME":"Katsina","POP_MAX":432149}},{"type":"Point","coordinates":[5187,5922],"properties":{"NAME":"Gusau","POP_MAX":226857}},{"type":"Point","coordinates":[5293,5964],"properties":{"NAME":"Nguru","POP_MAX":111014}},{"type":"Point","coordinates":[5309,5963],"properties":{"NAME":"Gashua","POP_MAX":125817}},{"type":"Point","coordinates":[5311,5896],"properties":{"NAME":"Potiskum","POP_MAX":86002}},{"type":"Point","coordinates":[5119,5939],"properties":{"NAME":"Birnin Kebbi","POP_MAX":108164}},{"type":"Point","coordinates":[5128,5879],"properties":{"NAME":"Koko","POP_MAX":25792}},{"type":"Point","coordinates":[5372,5812],"properties":{"NAME":"Mubi","POP_MAX":225705}},{"type":"Point","coordinates":[5337,5765],"properties":{"NAME":"Numan","POP_MAX":77617}},{"type":"Point","coordinates":[5293,6966],"properties":{"NAME":"Dirj","POP_MAX":931}},{"type":"Point","coordinates":[5307,7065],"properties":{"NAME":"Nalut","POP_MAX":66609}},{"type":"Point","coordinates":[5596,7596],"properties":{"NAME":"Bitola","POP_MAX":86528}},{"type":"Point","coordinates":[5492,6872],"properties":{"NAME":"Zillah","POP_MAX":10}},{"type":"Point","coordinates":[5399,7110],"properties":{"NAME":"Al Khums","POP_MAX":201943}},{"type":"Point","coordinates":[5405,6630],"properties":{"NAME":"Tajarhi","POP_MAX":1500}},{"type":"Point","coordinates":[5421,6812],"properties":{"NAME":"Umm al Abid","POP_MAX":300}},{"type":"Point","coordinates":[5356,7116],"properties":{"NAME":"Az Zawiyah","POP_MAX":200000}},{"type":"Point","coordinates":[5365,7082],"properties":{"NAME":"Gharyan","POP_MAX":146810}},{"type":"Point","coordinates":[5364,7039],"properties":{"NAME":"Mizdah","POP_MAX":26107}},{"type":"Point","coordinates":[5392,7059],"properties":{"NAME":"Bani Walid","POP_MAX":65392}},{"type":"Point","coordinates":[5582,7101],"properties":{"NAME":"Al Marj","POP_MAX":169540}},{"type":"Point","coordinates":[5604,7116],"properties":{"NAME":"Al Bayda","POP_MAX":1794}},{"type":"Point","coordinates":[5611,7120],"properties":{"NAME":"Shahhat","POP_MAX":45000}},{"type":"Point","coordinates":[5537,6971],"properties":{"NAME":"El Agheila","POP_MAX":100}},{"type":"Point","coordinates":[5537,6912],"properties":{"NAME":"Maradah","POP_MAX":2500}},{"type":"Point","coordinates":[5559,7052],"properties":{"NAME":"Qaminis","POP_MAX":5348}},{"type":"Point","coordinates":[5511,6995],"properties":{"NAME":"As Sidr","POP_MAX":50}},{"type":"Point","coordinates":[5685,6942],"properties":{"NAME":"Al Jaghbub","POP_MAX":1744}},{"type":"Point","coordinates":[6002,7179],"properties":{"NAME":"Zahle","POP_MAX":78145}},{"type":"Point","coordinates":[5624,8338],"properties":{"NAME":"Elk","POP_MAX":55769}},{"type":"Point","coordinates":[5518,8377],"properties":{"NAME":"Gdynia","POP_MAX":314664}},{"type":"Point","coordinates":[5476,8180],"properties":{"NAME":"Wroclaw","POP_MAX":634893}},{"type":"Point","coordinates":[5407,8314],"properties":{"NAME":"Szczecin","POP_MAX":407811}},{"type":"Point","coordinates":[5434,8228],"properties":{"NAME":"Zielona Gora","POP_MAX":118433}},{"type":"Point","coordinates":[5473,8255],"properties":{"NAME":"Poznan","POP_MAX":623997}},{"type":"Point","coordinates":[5524,8317],"properties":{"NAME":"Grudziadz","POP_MAX":102443}},{"type":"Point","coordinates":[5504,8296],"properties":{"NAME":"Bydgoszcz","POP_MAX":366452}},{"type":"Point","coordinates":[5532,8131],"properties":{"NAME":"Katowice","POP_MAX":2746000}},{"type":"Point","coordinates":[5522,8135],"properties":{"NAME":"Gliwice","POP_MAX":507670}},{"type":"Point","coordinates":[5577,8167],"properties":{"NAME":"Kielce","POP_MAX":215733}},{"type":"Point","coordinates":[5647,8298],"properties":{"NAME":"Bialystok","POP_MAX":291855}},{"type":"Point","coordinates":[5631,8188],"properties":{"NAME":"Lublin","POP_MAX":360044}},{"type":"Point","coordinates":[5615,8120],"properties":{"NAME":"Rzeszow","POP_MAX":245686}},{"type":"Point","coordinates":[6524,8638],"properties":{"NAME":"Kudymkar","POP_MAX":32423}},{"type":"Point","coordinates":[6588,8546],"properties":{"NAME":"Kungur","POP_MAX":66389}},{"type":"Point","coordinates":[6555,8584],"properties":{"NAME":"Krasnokamsk","POP_MAX":52689}},{"type":"Point","coordinates":[6612,8596],"properties":{"NAME":"Chusovoy","POP_MAX":72113}},{"type":"Point","coordinates":[6606,8630],"properties":{"NAME":"Gubakha","POP_MAX":31424}},{"type":"Point","coordinates":[7507,8054],"properties":{"NAME":"Olgiy","POP_MAX":34934}},{"type":"Point","coordinates":[7836,6333],"properties":{"NAME":"Xaignabouri","POP_MAX":16200}},{"type":"Point","coordinates":[7949,6094],"properties":{"NAME":"Pakxe","POP_MAX":102775}},{"type":"Point","coordinates":[7881,6338],"properties":{"NAME":"Xiangkhoang","POP_MAX":5189}},{"type":"Point","coordinates":[7847,6370],"properties":{"NAME":"Louangphrabang","POP_MAX":107142}},{"type":"Point","coordinates":[7922,6226],"properties":{"NAME":"Thakhek","POP_MAX":76928}},{"type":"Point","coordinates":[8100,7787],"properties":{"NAME":"Ulaan-Uul","POP_MAX":3726}},{"type":"Point","coordinates":[8522,7439],"properties":{"NAME":"Pyongsan","POP_MAX":66260}},{"type":"Point","coordinates":[8494,7416],"properties":{"NAME":"Ongjin","POP_MAX":69195}},{"type":"Point","coordinates":[8504,7422],"properties":{"NAME":"Haeju","POP_MAX":224231}},{"type":"Point","coordinates":[8604,7591],"properties":{"NAME":"Kilchu","POP_MAX":101165}},{"type":"Point","coordinates":[8602,7665],"properties":{"NAME":"Musan","POP_MAX":80146}},{"type":"Point","coordinates":[8634,7671],"properties":{"NAME":"Sonbong","POP_MAX":60864}},{"type":"Point","coordinates":[8528,7592],"properties":{"NAME":"Kanggye","POP_MAX":299514}},{"type":"Point","coordinates":[8557,7525],"properties":{"NAME":"Hungnam","POP_MAX":751322}},{"type":"Point","coordinates":[8496,7571],"properties":{"NAME":"Taedong","POP_MAX":1884}},{"type":"Point","coordinates":[8490,7517],"properties":{"NAME":"Chongju","POP_MAX":141769}},{"type":"Point","coordinates":[8573,7616],"properties":{"NAME":"Hyeson","POP_MAX":227461}},{"type":"Point","coordinates":[7698,8055],"properties":{"NAME":"Hodrogo","POP_MAX":10}},{"type":"Point","coordinates":[9877,2832],"properties":{"NAME":"Upper Hutt","POP_MAX":38400}},{"type":"Point","coordinates":[9894,2843],"properties":{"NAME":"Masterton","POP_MAX":20698}},{"type":"Point","coordinates":[9884,2863],"properties":{"NAME":"Levin","POP_MAX":19789}},{"type":"Point","coordinates":[5524,3593],"properties":{"NAME":"Karasburg","POP_MAX":6054}},{"type":"Point","coordinates":[5480,3681],"properties":{"NAME":"Bethanie","POP_MAX":10363}},{"type":"Point","coordinates":[5460,3562],"properties":{"NAME":"Oranjemund","POP_MAX":8496}},{"type":"Point","coordinates":[5502,3790],"properties":{"NAME":"Mariental","POP_MAX":13380}},{"type":"Point","coordinates":[5478,3865],"properties":{"NAME":"Rehoboth","POP_MAX":25219}},{"type":"Point","coordinates":[5451,4051],"properties":{"NAME":"Outjo","POP_MAX":6557}},{"type":"Point","coordinates":[5387,4170],"properties":{"NAME":"Opuwo","POP_MAX":4857}},{"type":"Point","coordinates":[5436,3942],"properties":{"NAME":"Usakos","POP_MAX":9147}},{"type":"Point","coordinates":[5473,3943],"properties":{"NAME":"Okahandja","POP_MAX":20879}},{"type":"Point","coordinates":[5465,4031],"properties":{"NAME":"Otjiwarongo","POP_MAX":24815}},{"type":"Point","coordinates":[5444,4208],"properties":{"NAME":"Oshikango","POP_MAX":12423}},{"type":"Point","coordinates":[5521,4196],"properties":{"NAME":"Cuangar","POP_MAX":500}},{"type":"Point","coordinates":[5678,4202],"properties":{"NAME":"Katima Mulilo","POP_MAX":25027}},{"type":"Point","coordinates":[5599,4172],"properties":{"NAME":"Mucusso","POP_MAX":100}},{"type":"Point","coordinates":[9864,3081],"properties":{"NAME":"Waitakere","POP_MAX":166237}},{"type":"Point","coordinates":[9870,3084],"properties":{"NAME":"Takapuna","POP_MAX":207865}},{"type":"Point","coordinates":[9932,3015],"properties":{"NAME":"Whakatane","POP_MAX":20665}},{"type":"Point","coordinates":[9785,2672],"properties":{"NAME":"Ashburton","POP_MAX":8895}},{"type":"Point","coordinates":[9811,2702],"properties":{"NAME":"Kaiapoi","POP_MAX":7169}},{"type":"Point","coordinates":[9851,2952],"properties":{"NAME":"New Plymouth","POP_MAX":49168}},{"type":"Point","coordinates":[9781,2795],"properties":{"NAME":"Westport","POP_MAX":3629}},{"type":"Point","coordinates":[9764,2740],"properties":{"NAME":"Hokitika","POP_MAX":3401}},{"type":"Point","coordinates":[9764,2603],"properties":{"NAME":"Oamaru","POP_MAX":13000}},{"type":"Point","coordinates":[4640,6809],"properties":{"NAME":"Dawra","POP_MAX":10}},{"type":"Point","coordinates":[4616,6756],"properties":{"NAME":"Lemsid","POP_MAX":100}},{"type":"Point","coordinates":[4693,6865],"properties":{"NAME":"Tan Tan","POP_MAX":64868}},{"type":"Point","coordinates":[9382,8553],"properties":{"NAME":"Utkholok","POP_MAX":10}},{"type":"Point","coordinates":[9357,8257],"properties":{"NAME":"Bol'sheretsk","POP_MAX":10}},{"type":"Point","coordinates":[9575,8693],"properties":{"NAME":"Il'pyrskiy","POP_MAX":10}},{"type":"Point","coordinates":[9621,8714],"properties":{"NAME":"Korf","POP_MAX":400}},{"type":"Point","coordinates":[4597,6601],"properties":{"NAME":"Bir Anzarane","POP_MAX":6597}},{"type":"Point","coordinates":[7746,5427],"properties":{"NAME":"Binjai","POP_MAX":564979}},{"type":"Point","coordinates":[7767,5297],"properties":{"NAME":"Padangsidempuan","POP_MAX":266882}},{"type":"Point","coordinates":[7759,5334],"properties":{"NAME":"Tarutung","POP_MAX":1305}},{"type":"Point","coordinates":[7763,5410],"properties":{"NAME":"Tebingtinggi","POP_MAX":268043}},{"type":"Point","coordinates":[8552,5257],"properties":{"NAME":"Tidore","POP_MAX":60611}},{"type":"Point","coordinates":[7797,5199],"properties":{"NAME":"Bukittinggi","POP_MAX":506964}},{"type":"Point","coordinates":[7809,5178],"properties":{"NAME":"Sawahlunto","POP_MAX":50354}},{"type":"Point","coordinates":[7799,5191],"properties":{"NAME":"Padangpanjang","POP_MAX":44096}},{"type":"Point","coordinates":[8593,5024],"properties":{"NAME":"Amahai","POP_MAX":47653}},{"type":"Point","coordinates":[8237,4720],"properties":{"NAME":"Mataram","POP_MAX":499409}},{"type":"Point","coordinates":[8241,4711],"properties":{"NAME":"Praya","POP_MAX":35183}},{"type":"Point","coordinates":[8417,4900],"properties":{"NAME":"Baubau","POP_MAX":24412}},{"type":"Point","coordinates":[8422,5162],"properties":{"NAME":"Luwuk","POP_MAX":47778}},{"type":"Point","coordinates":[8366,5136],"properties":{"NAME":"Poso","POP_MAX":47110}},{"type":"Point","coordinates":[8791,5150],"properties":{"NAME":"Biak","POP_MAX":103610}},{"type":"Point","coordinates":[8815,4953],"properties":{"NAME":"Timika","POP_MAX":26021}},{"type":"Point","coordinates":[3559,5444],"properties":{"NAME":"Saint-Georges","POP_MAX":2742}},{"type":"Point","coordinates":[4825,8331],"properties":{"NAME":"Drogheda","POP_MAX":36533}},{"type":"Point","coordinates":[4823,8347],"properties":{"NAME":"Dundalk","POP_MAX":38884}},{"type":"Point","coordinates":[4750,8305],"properties":{"NAME":"Galway","POP_MAX":75594}},{"type":"Point","coordinates":[4800,8269],"properties":{"NAME":"Kilkenny","POP_MAX":21589}},{"type":"Point","coordinates":[4737,8234],"properties":{"NAME":"Killarney","POP_MAX":11902}},{"type":"Point","coordinates":[4766,8363],"properties":{"NAME":"Sligo","POP_MAX":20228}},{"type":"Point","coordinates":[4571,5888],"properties":{"NAME":"Bolama","POP_MAX":10769}},{"type":"Point","coordinates":[4593,5922],"properties":{"NAME":"Bafata","POP_MAX":29704}},{"type":"Point","coordinates":[5503,5441],"properties":{"NAME":"Mbaiki","POP_MAX":67132}},{"type":"Point","coordinates":[5444,5503],"properties":{"NAME":"Carnot","POP_MAX":38071}},{"type":"Point","coordinates":[5458,5583],"properties":{"NAME":"Bozoum","POP_MAX":40201}},{"type":"Point","coordinates":[5536,5622],"properties":{"NAME":"Kaga Bandoro","POP_MAX":56520}},{"type":"Point","coordinates":[5289,7815],"properties":{"NAME":"Parma","POP_MAX":166011}},{"type":"Point","coordinates":[5342,7792],"properties":{"NAME":"Ravenna","POP_MAX":134631}},{"type":"Point","coordinates":[5325,7817],"properties":{"NAME":"Ferrara","POP_MAX":130992}},{"type":"Point","coordinates":[5318,7797],"properties":{"NAME":"Bologna","POP_MAX":488172}},{"type":"Point","coordinates":[5267,7589],"properties":{"NAME":"Olbia","POP_MAX":45366}},{"type":"Point","coordinates":[5255,7491],"properties":{"NAME":"Cagliari","POP_MAX":291511}},{"type":"Point","coordinates":[5292,7751],"properties":{"NAME":"Pisa","POP_MAX":203336}},{"type":"Point","coordinates":[5289,7742],"properties":{"NAME":"Livorno","POP_MAX":156274}},{"type":"Point","coordinates":[5318,7728],"properties":{"NAME":"Siena","POP_MAX":52625}},{"type":"Point","coordinates":[5333,7736],"properties":{"NAME":"Arezzo","POP_MAX":91589}},{"type":"Point","coordinates":[5464,7472],"properties":{"NAME":"Catanzaro","POP_MAX":95251}},{"type":"Point","coordinates":[5413,7575],"properties":{"NAME":"Salerno","POP_MAX":954265}},{"type":"Point","coordinates":[5413,7601],"properties":{"NAME":"Benevento","POP_MAX":61791}},{"type":"Point","coordinates":[5472,7600],"properties":{"NAME":"Bari","POP_MAX":500577}},{"type":"Point","coordinates":[5435,7620],"properties":{"NAME":"Foggia","POP_MAX":155203}},{"type":"Point","coordinates":[5507,7557],"properties":{"NAME":"Lecce","POP_MAX":162582}},{"type":"Point","coordinates":[5501,7573],"properties":{"NAME":"Brindisi","POP_MAX":104437}},{"type":"Point","coordinates":[5482,7565],"properties":{"NAME":"Taranto","POP_MAX":202033}},{"type":"Point","coordinates":[5435,7431],"properties":{"NAME":"Messina","POP_MAX":252026}},{"type":"Point","coordinates":[5348,7408],"properties":{"NAME":"Marsala","POP_MAX":77784}},{"type":"Point","coordinates":[5428,7366],"properties":{"NAME":"Siracusa","POP_MAX":123657}},{"type":"Point","coordinates":[5398,7678],"properties":{"NAME":"Pescara","POP_MAX":314789}},{"type":"Point","coordinates":[5375,7672],"properties":{"NAME":"L'Aquila","POP_MAX":68503}},{"type":"Point","coordinates":[5331,7657],"properties":{"NAME":"Civitavecchia","POP_MAX":61316}},{"type":"Point","coordinates":[5378,7744],"properties":{"NAME":"Ancona","POP_MAX":100507}},{"type":"Point","coordinates":[5347,7716],"properties":{"NAME":"Perugia","POP_MAX":149125}},{"type":"Point","coordinates":[5979,6929],"properties":{"NAME":"Al Aqabah","POP_MAX":95048}},{"type":"Point","coordinates":[5996,7025],"properties":{"NAME":"Al Karak","POP_MAX":80062}},{"type":"Point","coordinates":[5702,5509],"properties":{"NAME":"Zemio","POP_MAX":20000}},{"type":"Point","coordinates":[5651,5542],"properties":{"NAME":"Yakossi","POP_MAX":500}},{"type":"Point","coordinates":[5271,7866],"properties":{"NAME":"Bergamo","POP_MAX":200000}},{"type":"Point","coordinates":[5386,7863],"properties":{"NAME":"Trieste","POP_MAX":216035}},{"type":"Point","coordinates":[5318,7913],"properties":{"NAME":"Bolzano","POP_MAX":95895}},{"type":"Point","coordinates":[5312,7888],"properties":{"NAME":"Trento","POP_MAX":107808}},{"type":"Point","coordinates":[5308,7851],"properties":{"NAME":"Verona","POP_MAX":347459}},{"type":"Point","coordinates":[7731,5488],"properties":{"NAME":"Langsa","POP_MAX":117256}},{"type":"Point","coordinates":[7917,7249],"properties":{"NAME":"Longxi","POP_MAX":355037}},{"type":"Point","coordinates":[7973,7277],"properties":{"NAME":"Pingliang","POP_MAX":207256}},{"type":"Point","coordinates":[7670,7565],"properties":{"NAME":"Anxi","POP_MAX":17886}},{"type":"Point","coordinates":[7900,7213],"properties":{"NAME":"Minxian","POP_MAX":67826}},{"type":"Point","coordinates":[7848,7449],"properties":{"NAME":"Jinchang","POP_MAX":144363}},{"type":"Point","coordinates":[7827,7306],"properties":{"NAME":"Guide","POP_MAX":7642}},{"type":"Point","coordinates":[8027,6489],"properties":{"NAME":"Qinzhou","POP_MAX":245376}},{"type":"Point","coordinates":[7976,6498],"properties":{"NAME":"Pingxiang","POP_MAX":31109}},{"type":"Point","coordinates":[8029,6637],"properties":{"NAME":"Yishan","POP_MAX":47062}},{"type":"Point","coordinates":[8041,6462],"properties":{"NAME":"Beihai","POP_MAX":728978}},{"type":"Point","coordinates":[8055,6556],"properties":{"NAME":"Hechi","POP_MAX":3830000}},{"type":"Point","coordinates":[8042,6822],"properties":{"NAME":"Tongren","POP_MAX":118290}},{"type":"Point","coordinates":[8052,7017],"properties":{"NAME":"Fengjie","POP_MAX":49168}},{"type":"Point","coordinates":[8238,7549],"properties":{"NAME":"Changping","POP_MAX":614821}},{"type":"Point","coordinates":[8275,6799],"properties":{"NAME":"Shaowu","POP_MAX":112585}},{"type":"Point","coordinates":[8262,6677],"properties":{"NAME":"Longyan","POP_MAX":367896}},{"type":"Point","coordinates":[8280,6638],"properties":{"NAME":"Zhangzhou","POP_MAX":3531147}},{"type":"Point","coordinates":[8317,6691],"properties":{"NAME":"Putian","POP_MAX":376558}},{"type":"Point","coordinates":[8334,6786],"properties":{"NAME":"Fuan","POP_MAX":92470}},{"type":"Point","coordinates":[8242,6716],"properties":{"NAME":"Changting","POP_MAX":87458}},{"type":"Point","coordinates":[8293,6761],"properties":{"NAME":"Nanping","POP_MAX":213054}},{"type":"Point","coordinates":[8331,6764],"properties":{"NAME":"Ninde","POP_MAX":314077}},{"type":"Point","coordinates":[8215,7144],"properties":{"NAME":"Jieshou","POP_MAX":141993}},{"type":"Point","coordinates":[8283,7011],"properties":{"NAME":"Tongling","POP_MAX":562832}},{"type":"Point","coordinates":[8302,7056],"properties":{"NAME":"Maanshan","POP_MAX":1366302}},{"type":"Point","coordinates":[8228,7124],"properties":{"NAME":"Fuyang","POP_MAX":170023}},{"type":"Point","coordinates":[8121,6484],"properties":{"NAME":"Yangjiang","POP_MAX":872363}},{"type":"Point","coordinates":[8236,6626],"properties":{"NAME":"Meizhou","POP_MAX":414930}},{"type":"Point","coordinates":[8196,6593],"properties":{"NAME":"Heyuan","POP_MAX":330961}},{"type":"Point","coordinates":[8150,6591],"properties":{"NAME":"Qingyuan","POP_MAX":706717}},{"type":"Point","coordinates":[8134,6553],"properties":{"NAME":"Zhaoqing","POP_MAX":480000}},{"type":"Point","coordinates":[8132,6653],"properties":{"NAME":"Lianxian","POP_MAX":203639}},{"type":"Point","coordinates":[8152,6526],"properties":{"NAME":"Jiangmen","POP_MAX":532419}},{"type":"Point","coordinates":[8090,6488],"properties":{"NAME":"Maoming","POP_MAX":1217715}},{"type":"Point","coordinates":[8019,4850],"properties":{"NAME":"Indramayu","POP_MAX":123263}},{"type":"Point","coordinates":[7980,4816],"properties":{"NAME":"Sukabumi","POP_MAX":276414}},{"type":"Point","coordinates":[8038,4769],"properties":{"NAME":"Cilacap","POP_MAX":1174964}},{"type":"Point","coordinates":[8095,4826],"properties":{"NAME":"Pati","POP_MAX":122785}},{"type":"Point","coordinates":[8057,4818],"properties":{"NAME":"Pakalongan","POP_MAX":272000}},{"type":"Point","coordinates":[8041,4819],"properties":{"NAME":"Tegal","POP_MAX":237084}},{"type":"Point","coordinates":[8080,4793],"properties":{"NAME":"Salatiga","POP_MAX":176000}},{"type":"Point","coordinates":[8071,4784],"properties":{"NAME":"Magelang","POP_MAX":111461}},{"type":"Point","coordinates":[7959,4863],"properties":{"NAME":"Serang","POP_MAX":164767}},{"type":"Point","coordinates":[7982,4856],"properties":{"NAME":"Bekasi","POP_MAX":2378211}},{"type":"Point","coordinates":[8037,5270],"properties":{"NAME":"Singkawang","POP_MAX":248012}},{"type":"Point","coordinates":[7935,4901],"properties":{"NAME":"Bandar Lampung","POP_MAX":881801}},{"type":"Point","coordinates":[7905,5017],"properties":{"NAME":"Perabumulih","POP_MAX":103470}},{"type":"Point","coordinates":[8210,4712],"properties":{"NAME":"Kuta","POP_MAX":30012}},{"type":"Point","coordinates":[8208,4746],"properties":{"NAME":"Singaraja","POP_MAX":234468}},{"type":"Point","coordinates":[8173,4811],"properties":{"NAME":"Sumenep","POP_MAX":84656}},{"type":"Point","coordinates":[8188,4742],"properties":{"NAME":"Banyuwangi","POP_MAX":172424}},{"type":"Point","coordinates":[8123,4817],"properties":{"NAME":"Tuban","POP_MAX":76242}},{"type":"Point","coordinates":[8154,4768],"properties":{"NAME":"Probolinggo","POP_MAX":181656}},{"type":"Point","coordinates":[8147,4775],"properties":{"NAME":"Pasuruan","POP_MAX":500000}},{"type":"Point","coordinates":[8134,4784],"properties":{"NAME":"Mojokerto","POP_MAX":112557}},{"type":"Point","coordinates":[8108,4774],"properties":{"NAME":"Madiun","POP_MAX":186099}},{"type":"Point","coordinates":[8122,4765],"properties":{"NAME":"Kediri","POP_MAX":235143}},{"type":"Point","coordinates":[8126,4749],"properties":{"NAME":"Blitar","POP_MAX":132416}},{"type":"Point","coordinates":[8351,4657],"properties":{"NAME":"Waingapu","POP_MAX":48828}},{"type":"Point","coordinates":[8406,4717],"properties":{"NAME":"Maumere","POP_MAX":104285}},{"type":"Point","coordinates":[8390,4703],"properties":{"NAME":"Ende","POP_MAX":77205}},{"type":"Point","coordinates":[8340,5037],"properties":{"NAME":"Makale","POP_MAX":9960}},{"type":"Point","coordinates":[8351,5037],"properties":{"NAME":"Palopo","POP_MAX":2444}},{"type":"Point","coordinates":[8354,4954],"properties":{"NAME":"Watampone","POP_MAX":81629}},{"type":"Point","coordinates":[8335,4997],"properties":{"NAME":"Pinrang","POP_MAX":182731}},{"type":"Point","coordinates":[8316,5012],"properties":{"NAME":"Majene","POP_MAX":272377}},{"type":"Point","coordinates":[5124,7851],"properties":{"NAME":"Saint-Etienne","POP_MAX":265684}},{"type":"Point","coordinates":[5161,7836],"properties":{"NAME":"Grenoble","POP_MAX":388574}},{"type":"Point","coordinates":[2775,4963],"properties":{"NAME":"Macara","POP_MAX":13035}},{"type":"Point","coordinates":[2802,4981],"properties":{"NAME":"Zamora","POP_MAX":15276}},{"type":"Point","coordinates":[2812,5163],"properties":{"NAME":"Latacunga","POP_MAX":94972}},{"type":"Point","coordinates":[2785,5091],"properties":{"NAME":"Milagro","POP_MAX":109970}},{"type":"Point","coordinates":[2786,5113],"properties":{"NAME":"Babahoyo","POP_MAX":76279}},{"type":"Point","coordinates":[2771,5177],"properties":{"NAME":"Chone","POP_MAX":44751}},{"type":"Point","coordinates":[2757,5139],"properties":{"NAME":"Jipijapa","POP_MAX":35901}},{"type":"Point","coordinates":[2831,5051],"properties":{"NAME":"Yaupi","POP_MAX":293}},{"type":"Point","coordinates":[2826,5083],"properties":{"NAME":"Macas","POP_MAX":23687}},{"type":"Point","coordinates":[2825,5220],"properties":{"NAME":"Cayambe","POP_MAX":27881}},{"type":"Point","coordinates":[2812,5143],"properties":{"NAME":"Ambato","POP_MAX":281425}},{"type":"Point","coordinates":[2835,5160],"properties":{"NAME":"Tena","POP_MAX":31126}},{"type":"Point","coordinates":[2896,5624],"properties":{"NAME":"Yarumal","POP_MAX":35315}},{"type":"Point","coordinates":[2929,5593],"properties":{"NAME":"Puerto Berrio","POP_MAX":33983}},{"type":"Point","coordinates":[2864,5686],"properties":{"NAME":"Turbo","POP_MAX":50508}},{"type":"Point","coordinates":[2958,5539],"properties":{"NAME":"Tunja","POP_MAX":161412}},{"type":"Point","coordinates":[2946,5543],"properties":{"NAME":"Chiquinquira","POP_MAX":53975}},{"type":"Point","coordinates":[2968,5555],"properties":{"NAME":"Duitama","POP_MAX":101156}},{"type":"Point","coordinates":[2909,5700],"properties":{"NAME":"Ayapel","POP_MAX":23639}},{"type":"Point","coordinates":[2890,5753],"properties":{"NAME":"Lorica","POP_MAX":52771}},{"type":"Point","coordinates":[2961,5591],"properties":{"NAME":"Socorro","POP_MAX":24895}},{"type":"Point","coordinates":[2971,5886],"properties":{"NAME":"Riohacha","POP_MAX":133186}},{"type":"Point","coordinates":[2761,6501],"properties":{"NAME":"Cienfuegos","POP_MAX":186644}},{"type":"Point","coordinates":[2696,6485],"properties":{"NAME":"Nueva Gerona","POP_MAX":25566}},{"type":"Point","coordinates":[2789,6488],"properties":{"NAME":"Sancti Spiritus","POP_MAX":127069}},{"type":"Point","coordinates":[2701,5769],"properties":{"NAME":"Sixaola","POP_MAX":1823}},{"type":"Point","coordinates":[2639,5795],"properties":{"NAME":"Puntarenas","POP_MAX":57102}},{"type":"Point","coordinates":[2675,5736],"properties":{"NAME":"Ciudad Cortes","POP_MAX":3850}},{"type":"Point","coordinates":[2650,5816],"properties":{"NAME":"Quesada","POP_MAX":31106}},{"type":"Point","coordinates":[2622,5833],"properties":{"NAME":"Liberia","POP_MAX":45380}},{"type":"Point","coordinates":[2617,5859],"properties":{"NAME":"La Cruz","POP_MAX":4319}},{"type":"Point","coordinates":[2802,5290],"properties":{"NAME":"Valdez","POP_MAX":11441}},{"type":"Point","coordinates":[2805,5291],"properties":{"NAME":"San Lorenzo","POP_MAX":20209}},{"type":"Point","coordinates":[2783,5271],"properties":{"NAME":"Esmeraldas","POP_MAX":173101}},{"type":"Point","coordinates":[2507,6028],"properties":{"NAME":"Santa Ana","POP_MAX":234478}},{"type":"Point","coordinates":[2812,6499],"properties":{"NAME":"Moron","POP_MAX":66060}},{"type":"Point","coordinates":[2850,6466],"properties":{"NAME":"Nuevitas","POP_MAX":54022}},{"type":"Point","coordinates":[2854,6396],"properties":{"NAME":"Manzanillo","POP_MAX":128188}},{"type":"Point","coordinates":[2867,6398],"properties":{"NAME":"Bayamo","POP_MAX":192632}},{"type":"Point","coordinates":[2893,6432],"properties":{"NAME":"Banes","POP_MAX":53104}},{"type":"Point","coordinates":[2858,6432],"properties":{"NAME":"Las Tunas","POP_MAX":203684}},{"type":"Point","coordinates":[3072,6286],"properties":{"NAME":"San Pedro de Macoris","POP_MAX":217899}},{"type":"Point","coordinates":[2894,5480],"properties":{"NAME":"Armenia","POP_MAX":315328}},{"type":"Point","coordinates":[2894,5496],"properties":{"NAME":"Pereira","POP_MAX":568750}},{"type":"Point","coordinates":[2920,5518],"properties":{"NAME":"Honda","POP_MAX":35469}},{"type":"Point","coordinates":[2923,5337],"properties":{"NAME":"San Vicente del Caguan","POP_MAX":1500}},{"type":"Point","coordinates":[2896,5310],"properties":{"NAME":"Florencia","POP_MAX":130337}},{"type":"Point","coordinates":[2833,5365],"properties":{"NAME":"Guapi","POP_MAX":13853}},{"type":"Point","coordinates":[2904,5387],"properties":{"NAME":"Neiva","POP_MAX":352855}},{"type":"Point","coordinates":[2895,5345],"properties":{"NAME":"Garzon","POP_MAX":56603}},{"type":"Point","coordinates":[2839,5265],"properties":{"NAME":"Ipiales","POP_MAX":109618}},{"type":"Point","coordinates":[2856,5441],"properties":{"NAME":"Buenaventura","POP_MAX":252805}},{"type":"Point","coordinates":[2879,5454],"properties":{"NAME":"Tulua","POP_MAX":165501}},{"type":"Point","coordinates":[2826,5238],"properties":{"NAME":"Ibarra","POP_MAX":146741}},{"type":"Point","coordinates":[2909,5780],"properties":{"NAME":"El Carmen de Bolivar","POP_MAX":60980}},{"type":"Point","coordinates":[2836,5630],"properties":{"NAME":"Jurado","POP_MAX":2351}},{"type":"Point","coordinates":[2849,5546],"properties":{"NAME":"Nuqui","POP_MAX":2741}},{"type":"Point","coordinates":[2867,5547],"properties":{"NAME":"Quibdo","POP_MAX":92780}},{"type":"Point","coordinates":[2941,5739],"properties":{"NAME":"El Banco","POP_MAX":54522}},{"type":"Point","coordinates":[2934,5855],"properties":{"NAME":"Cienaga","POP_MAX":131171}},{"type":"Point","coordinates":[2902,5755],"properties":{"NAME":"Sincelejo","POP_MAX":261187}},{"type":"Point","coordinates":[2897,5770],"properties":{"NAME":"Tolu","POP_MAX":27390}},{"type":"Point","coordinates":[3031,5628],"properties":{"NAME":"Arauca","POP_MAX":69264}},{"type":"Point","coordinates":[3004,5591],"properties":{"NAME":"Tame","POP_MAX":29099}},{"type":"Point","coordinates":[2978,5645],"properties":{"NAME":"Pamplona","POP_MAX":53587}},{"type":"Point","coordinates":[2959,5695],"properties":{"NAME":"Ocana","POP_MAX":83511}},{"type":"Point","coordinates":[3015,5495],"properties":{"NAME":"Orocue","POP_MAX":2835}},{"type":"Point","coordinates":[3110,5440],"properties":{"NAME":"Obando","POP_MAX":9065}},{"type":"Point","coordinates":[2949,5431],"properties":{"NAME":"San Martin","POP_MAX":16273}},{"type":"Point","coordinates":[3122,5575],"properties":{"NAME":"Puerto Carreno","POP_MAX":10216}},{"type":"Point","coordinates":[2697,6539],"properties":{"NAME":"Artemisa","POP_MAX":68073}},{"type":"Point","coordinates":[2730,6553],"properties":{"NAME":"Matanzas","POP_MAX":146733}},{"type":"Point","coordinates":[2748,6534],"properties":{"NAME":"Colon","POP_MAX":63882}},{"type":"Point","coordinates":[2772,6539],"properties":{"NAME":"Sagua la Grande","POP_MAX":62073}},{"type":"Point","coordinates":[3301,6064],"properties":{"NAME":"Fort-de-France","POP_MAX":253995}},{"type":"Point","coordinates":[5520,5468],"properties":{"NAME":"Zongo","POP_MAX":17667}},{"type":"Point","coordinates":[5521,5429],"properties":{"NAME":"Libenge","POP_MAX":27053}},{"type":"Point","coordinates":[5588,5304],"properties":{"NAME":"Bongandanga","POP_MAX":4105}},{"type":"Point","coordinates":[5650,5148],"properties":{"NAME":"Ikela","POP_MAX":291}},{"type":"Point","coordinates":[5571,5355],"properties":{"NAME":"Binga","POP_MAX":64639}},{"type":"Point","coordinates":[5553,5288],"properties":{"NAME":"Basankusu","POP_MAX":52216}},{"type":"Point","coordinates":[5583,5204],"properties":{"NAME":"Boende","POP_MAX":32091}},{"type":"Point","coordinates":[5587,5466],"properties":{"NAME":"Gbadolite","POP_MAX":50493}},{"type":"Point","coordinates":[5583,5411],"properties":{"NAME":"Businga","POP_MAX":34247}},{"type":"Point","coordinates":[5556,5460],"properties":{"NAME":"Bosobolo","POP_MAX":14553}},{"type":"Point","coordinates":[5462,6403],"properties":{"NAME":"Zouar","POP_MAX":204}},{"type":"Point","coordinates":[5412,5997],"properties":{"NAME":"Bol","POP_MAX":3303}},{"type":"Point","coordinates":[5264,5282],"properties":{"NAME":"Calatrava","POP_MAX":628}},{"type":"Point","coordinates":[5317,5312],"properties":{"NAME":"Mongomo","POP_MAX":6560}},{"type":"Point","coordinates":[5513,5983],"properties":{"NAME":"Ati","POP_MAX":25373}},{"type":"Point","coordinates":[5550,5988],"properties":{"NAME":"Oum Hadjer","POP_MAX":19271}},{"type":"Point","coordinates":[5523,5923],"properties":{"NAME":"Mongo","POP_MAX":27763}},{"type":"Point","coordinates":[5471,5718],"properties":{"NAME":"Doba","POP_MAX":29597}},{"type":"Point","coordinates":[5419,5759],"properties":{"NAME":"Pala","POP_MAX":35466}},{"type":"Point","coordinates":[5430,5813],"properties":{"NAME":"Bongor","POP_MAX":193941}},{"type":"Point","coordinates":[5442,5757],"properties":{"NAME":"Kelo","POP_MAX":96224}},{"type":"Point","coordinates":[5506,7690],"properties":{"NAME":"Dubrovnik","POP_MAX":36994}},{"type":"Point","coordinates":[5461,7740],"properties":{"NAME":"Split","POP_MAX":214741}},{"type":"Point","coordinates":[5427,7775],"properties":{"NAME":"Zadar","POP_MAX":71258}},{"type":"Point","coordinates":[5865,7002],"properties":{"NAME":"Tanta","POP_MAX":404901}},{"type":"Point","coordinates":[5900,6990],"properties":{"NAME":"Ismailia","POP_MAX":656135}},{"type":"Point","coordinates":[5876,7017],"properties":{"NAME":"El Mansura","POP_MAX":600000}},{"type":"Point","coordinates":[5888,7038],"properties":{"NAME":"Dumyat","POP_MAX":299459}},{"type":"Point","coordinates":[5760,7034],"properties":{"NAME":"Matruh","POP_MAX":103470}},{"type":"Point","coordinates":[5808,7003],"properties":{"NAME":"El Alamein","POP_MAX":7400}},{"type":"Point","coordinates":[5794,7016],"properties":{"NAME":"El Daba","POP_MAX":14212}},{"type":"Point","coordinates":[5702,7047],"properties":{"NAME":"Salum","POP_MAX":7330}},{"type":"Point","coordinates":[5851,7017],"properties":{"NAME":"Damanh�r","POP_MAX":500000}},{"type":"Point","coordinates":[5857,6857],"properties":{"NAME":"Samalut","POP_MAX":152097}},{"type":"Point","coordinates":[5861,6824],"properties":{"NAME":"Mallawi","POP_MAX":217365}},{"type":"Point","coordinates":[5860,6868],"properties":{"NAME":"Beni Mazar","POP_MAX":79553}},{"type":"Point","coordinates":[5868,6903],"properties":{"NAME":"Beni Suef","POP_MAX":489450}},{"type":"Point","coordinates":[5848,7041],"properties":{"NAME":"Rashid","POP_MAX":199509}},{"type":"Point","coordinates":[5781,6786],"properties":{"NAME":"Qasr Farafra","POP_MAX":5000}},{"type":"Point","coordinates":[5806,6707],"properties":{"NAME":"El Qasr","POP_MAX":1716}},{"type":"Point","coordinates":[5909,6683],"properties":{"NAME":"Isna","POP_MAX":100000}},{"type":"Point","coordinates":[5913,6733],"properties":{"NAME":"Qena","POP_MAX":302027}},{"type":"Point","coordinates":[5890,6743],"properties":{"NAME":"Girga","POP_MAX":128250}},{"type":"Point","coordinates":[5885,6756],"properties":{"NAME":"Sohag","POP_MAX":600000}},{"type":"Point","coordinates":[5990,6605],"properties":{"NAME":"Berenice","POP_MAX":10}},{"type":"Point","coordinates":[5947,6767],"properties":{"NAME":"Bur Safaga","POP_MAX":32944}},{"type":"Point","coordinates":[5938,6854],"properties":{"NAME":"El Tur","POP_MAX":27628}},{"type":"Point","coordinates":[5943,7021],"properties":{"NAME":"El Arish","POP_MAX":178651}},{"type":"Point","coordinates":[5682,5262],"properties":{"NAME":"Yangambi","POP_MAX":35531}},{"type":"Point","coordinates":[5664,5376],"properties":{"NAME":"Aketi","POP_MAX":58601}},{"type":"Point","coordinates":[5838,5330],"properties":{"NAME":"Mongbwalu","POP_MAX":2819}},{"type":"Point","coordinates":[5761,5280],"properties":{"NAME":"Bafwasende","POP_MAX":149}},{"type":"Point","coordinates":[5844,5307],"properties":{"NAME":"Bunia","POP_MAX":96764}},{"type":"Point","coordinates":[5782,5341],"properties":{"NAME":"Wamba","POP_MAX":146871}},{"type":"Point","coordinates":[5659,5289],"properties":{"NAME":"Basoko","POP_MAX":43709}},{"type":"Point","coordinates":[6023,6093],"properties":{"NAME":"Tessenei","POP_MAX":15255}},{"type":"Point","coordinates":[6057,6118],"properties":{"NAME":"Agordat","POP_MAX":28600}},{"type":"Point","coordinates":[6101,6122],"properties":{"NAME":"Massawa","POP_MAX":142564}},{"type":"Point","coordinates":[6073,6126],"properties":{"NAME":"Keren","POP_MAX":150000}},{"type":"Point","coordinates":[6083,6080],"properties":{"NAME":"Mendefera","POP_MAX":257390}},{"type":"Point","coordinates":[6192,5864],"properties":{"NAME":"Ali Sabih","POP_MAX":40074}},{"type":"Point","coordinates":[6208,5911],"properties":{"NAME":"Obock","POP_MAX":17776}},{"type":"Point","coordinates":[5199,8157],"properties":{"NAME":"Bonn","POP_MAX":680543}},{"type":"Point","coordinates":[5214,8230],"properties":{"NAME":"M�nster","POP_MAX":270184}},{"type":"Point","coordinates":[5191,8186],"properties":{"NAME":"D�sseldorf","POP_MAX":1220000}},{"type":"Point","coordinates":[5280,8023],"properties":{"NAME":"Ulm","POP_MAX":172955}},{"type":"Point","coordinates":[5238,8086],"properties":{"NAME":"Mannheim","POP_MAX":2362000}},{"type":"Point","coordinates":[5221,7999],"properties":{"NAME":"Freiburg","POP_MAX":254889}},{"type":"Point","coordinates":[5243,8149],"properties":{"NAME":"Giessen","POP_MAX":82358}},{"type":"Point","coordinates":[5232,8120],"properties":{"NAME":"Wiesbaden","POP_MAX":617126}},{"type":"Point","coordinates":[5241,8321],"properties":{"NAME":"Bremerhaven","POP_MAX":137751}},{"type":"Point","coordinates":[5226,8248],"properties":{"NAME":"Osnabr�ck","POP_MAX":231268}},{"type":"Point","coordinates":[5273,8253],"properties":{"NAME":"Hannover","POP_MAX":722490}},{"type":"Point","coordinates":[5278,8204],"properties":{"NAME":"Gottingen","POP_MAX":139419}},{"type":"Point","coordinates":[5338,8166],"properties":{"NAME":"Gera","POP_MAX":104659}},{"type":"Point","coordinates":[5324,8169],"properties":{"NAME":"Jena","POP_MAX":104712}},{"type":"Point","coordinates":[5265,8393],"properties":{"NAME":"Flensburg","POP_MAX":97930}},{"type":"Point","coordinates":[5299,8340],"properties":{"NAME":"Lubeck","POP_MAX":235390}},{"type":"Point","coordinates":[5284,8366],"properties":{"NAME":"Kiel","POP_MAX":269427}},{"type":"Point","coordinates":[5214,8136],"properties":{"NAME":"Koblenz","POP_MAX":312633}},{"type":"Point","coordinates":[5196,8072],"properties":{"NAME":"Saarbrucken","POP_MAX":770001}},{"type":"Point","coordinates":[5374,8100],"properties":{"NAME":"Pizen","POP_MAX":164180}},{"type":"Point","coordinates":[5339,8059],"properties":{"NAME":"Regensburg","POP_MAX":164359}},{"type":"Point","coordinates":[5340,7991],"properties":{"NAME":"Rosenheim","POP_MAX":92809}},{"type":"Point","coordinates":[5334,8134],"properties":{"NAME":"Hof","POP_MAX":56153}},{"type":"Point","coordinates":[5279,8104],"properties":{"NAME":"Wurzburg","POP_MAX":168561}},{"type":"Point","coordinates":[5321,8044],"properties":{"NAME":"Ingolstadt","POP_MAX":163325}},{"type":"Point","coordinates":[5388,7818],"properties":{"NAME":"Pula","POP_MAX":61599}},{"type":"Point","coordinates":[5436,8081],"properties":{"NAME":"Jihlava","POP_MAX":53921}},{"type":"Point","coordinates":[5494,8071],"properties":{"NAME":"Zlin","POP_MAX":124610}},{"type":"Point","coordinates":[5465,8069],"properties":{"NAME":"Brno","POP_MAX":388277}},{"type":"Point","coordinates":[5441,8118],"properties":{"NAME":"Pardubice","POP_MAX":107064}},{"type":"Point","coordinates":[5401,8218],"properties":{"NAME":"Cottbus","POP_MAX":105067}},{"type":"Point","coordinates":[5366,8255],"properties":{"NAME":"Potsdam","POP_MAX":218095}},{"type":"Point","coordinates":[5326,8239],"properties":{"NAME":"Magdeburg","POP_MAX":229826}},{"type":"Point","coordinates":[5348,8193],"properties":{"NAME":"Leipzig","POP_MAX":542529}},{"type":"Point","coordinates":[5522,7857],"properties":{"NAME":"Osijek","POP_MAX":95077}},{"type":"Point","coordinates":[5510,8106],"properties":{"NAME":"Ostrava","POP_MAX":478963}},{"type":"Point","coordinates":[5786,8659],"properties":{"NAME":"Narva","POP_MAX":66980}},{"type":"Point","coordinates":[7230,7084],"properties":{"NAME":"Gar","POP_MAX":10000}},{"type":"Point","coordinates":[7486,7706],"properties":{"NAME":"Turpan","POP_MAX":254900}},{"type":"Point","coordinates":[7384,7428],"properties":{"NAME":"Quiemo","POP_MAX":32494}},{"type":"Point","coordinates":[7494,7942],"properties":{"NAME":"Koktokay","POP_MAX":80000}},{"type":"Point","coordinates":[7912,5270],"properties":{"NAME":"Tanjungpinang","POP_MAX":226666}},{"type":"Point","coordinates":[8016,5461],"properties":{"NAME":"Telukbutun","POP_MAX":140}},{"type":"Point","coordinates":[8078,7273],"properties":{"NAME":"Hancheng","POP_MAX":222135}},{"type":"Point","coordinates":[8052,7217],"properties":{"NAME":"Weinan","POP_MAX":172321}},{"type":"Point","coordinates":[8133,7495],"properties":{"NAME":"Shuozhou","POP_MAX":570000}},{"type":"Point","coordinates":[8142,7444],"properties":{"NAME":"Xinzhou","POP_MAX":279607}},{"type":"Point","coordinates":[8145,7275],"properties":{"NAME":"Jincheng","POP_MAX":760000}},{"type":"Point","coordinates":[8119,7364],"properties":{"NAME":"Jiexiu","POP_MAX":77178}},{"type":"Point","coordinates":[8152,7314],"properties":{"NAME":"Changzhi","POP_MAX":706000}},{"type":"Point","coordinates":[8177,7050],"properties":{"NAME":"Guangshui","POP_MAX":154771}},{"type":"Point","coordinates":[8124,7016],"properties":{"NAME":"Jingmen","POP_MAX":400000}},{"type":"Point","coordinates":[8108,6973],"properties":{"NAME":"Zicheng","POP_MAX":237042}},{"type":"Point","coordinates":[8133,6939],"properties":{"NAME":"Shishou","POP_MAX":231787}},{"type":"Point","coordinates":[8174,7009],"properties":{"NAME":"Xiaogan","POP_MAX":160437}},{"type":"Point","coordinates":[8174,6940],"properties":{"NAME":"Puqi","POP_MAX":205164}},{"type":"Point","coordinates":[8089,7119],"properties":{"NAME":"Yunxian","POP_MAX":133558}},{"type":"Point","coordinates":[8117,6935],"properties":{"NAME":"Jinshi","POP_MAX":274000}},{"type":"Point","coordinates":[8150,6713],"properties":{"NAME":"Chenzhou","POP_MAX":322997}},{"type":"Point","coordinates":[8057,6808],"properties":{"NAME":"Zhijiang","POP_MAX":113907}},{"type":"Point","coordinates":[8147,6831],"properties":{"NAME":"Xiangtan","POP_MAX":2586948}},{"type":"Point","coordinates":[7920,6921],"properties":{"NAME":"Zigong","POP_MAX":1105000}},{"type":"Point","coordinates":[7873,6955],"properties":{"NAME":"Yaan","POP_MAX":340000}},{"type":"Point","coordinates":[7953,7047],"properties":{"NAME":"Langzhong","POP_MAX":60542}},{"type":"Point","coordinates":[7841,7011],"properties":{"NAME":"Rongzhag","POP_MAX":70000}},{"type":"Point","coordinates":[7815,6537],"properties":{"NAME":"Simao","POP_MAX":162725}},{"type":"Point","coordinates":[7906,6572],"properties":{"NAME":"Wenshan","POP_MAX":152388}},{"type":"Point","coordinates":[7894,6701],"properties":{"NAME":"Zhanyi","POP_MAX":652604}},{"type":"Point","coordinates":[7882,6744],"properties":{"NAME":"Huize","POP_MAX":5170}},{"type":"Point","coordinates":[8287,7591],"properties":{"NAME":"Chengde","POP_MAX":449325}},{"type":"Point","coordinates":[8257,7438],"properties":{"NAME":"Cangzhou","POP_MAX":527681}},{"type":"Point","coordinates":[8218,7470],"properties":{"NAME":"Baoding","POP_MAX":1107000}},{"type":"Point","coordinates":[8270,7441],"properties":{"NAME":"Huanghua","POP_MAX":120000}},{"type":"Point","coordinates":[8205,7449],"properties":{"NAME":"Dingzhou","POP_MAX":152934}},{"type":"Point","coordinates":[8215,7383],"properties":{"NAME":"Nangong","POP_MAX":82386}},{"type":"Point","coordinates":[8224,7353],"properties":{"NAME":"Linqing","POP_MAX":110046}},{"type":"Point","coordinates":[8191,7365],"properties":{"NAME":"Xiangtai","POP_MAX":611739}},{"type":"Point","coordinates":[8205,7286],"properties":{"NAME":"Puyang","POP_MAX":666322}},{"type":"Point","coordinates":[8183,7301],"properties":{"NAME":"Hebi","POP_MAX":244662}},{"type":"Point","coordinates":[8172,7189],"properties":{"NAME":"Xuchang","POP_MAX":449258}},{"type":"Point","coordinates":[8195,7166],"properties":{"NAME":"Zhoukou","POP_MAX":377061}},{"type":"Point","coordinates":[8124,7111],"properties":{"NAME":"Dengzhou","POP_MAX":59338}},{"type":"Point","coordinates":[8451,7669],"properties":{"NAME":"Tieling","POP_MAX":340000}},{"type":"Point","coordinates":[8356,7626],"properties":{"NAME":"Chaoyang","POP_MAX":470296}},{"type":"Point","coordinates":[8493,7609],"properties":{"NAME":"Huanren","POP_MAX":116621}},{"type":"Point","coordinates":[8427,7517],"properties":{"NAME":"Zhuanghe","POP_MAX":261510}},{"type":"Point","coordinates":[8306,7292],"properties":{"NAME":"Yishui","POP_MAX":94115}},{"type":"Point","coordinates":[8235,7234],"properties":{"NAME":"Shanxian","POP_MAX":74459}},{"type":"Point","coordinates":[8278,7275],"properties":{"NAME":"Pingyi","POP_MAX":78254}},{"type":"Point","coordinates":[8343,7350],"properties":{"NAME":"Pingdu","POP_MAX":91077}},{"type":"Point","coordinates":[8279,7315],"properties":{"NAME":"Laiwu","POP_MAX":124108}},{"type":"Point","coordinates":[8289,7383],"properties":{"NAME":"Buizhou","POP_MAX":115893}},{"type":"Point","coordinates":[8232,7329],"properties":{"NAME":"Liaocheng","POP_MAX":226930}},{"type":"Point","coordinates":[8329,7271],"properties":{"NAME":"Rizhao","POP_MAX":865000}},{"type":"Point","coordinates":[8241,7388],"properties":{"NAME":"Dezhou","POP_MAX":379555}},{"type":"Point","coordinates":[8243,6838],"properties":{"NAME":"Linchuan","POP_MAX":241104}},{"type":"Point","coordinates":[8227,6852],"properties":{"NAME":"Fengcheng","POP_MAX":61469}},{"type":"Point","coordinates":[8205,6790],"properties":{"NAME":"Jian","POP_MAX":520248}},{"type":"Point","coordinates":[8288,6867],"properties":{"NAME":"Shangrao","POP_MAX":1144577}},{"type":"Point","coordinates":[8266,6914],"properties":{"NAME":"Jingdezhen","POP_MAX":457298}},{"type":"Point","coordinates":[8342,7100],"properties":{"NAME":"Taizhou","POP_MAX":612356}},{"type":"Point","coordinates":[8310,7195],"properties":{"NAME":"Shuyang","POP_MAX":1770000}},{"type":"Point","coordinates":[8321,7223],"properties":{"NAME":"Lianyungang","POP_MAX":715600}},{"type":"Point","coordinates":[8342,6866],"properties":{"NAME":"Lishui","POP_MAX":172777}},{"type":"Point","coordinates":[8385,6880],"properties":{"NAME":"Jiaojing","POP_MAX":471500}},{"type":"Point","coordinates":[8313,6896],"properties":{"NAME":"Quzhou","POP_MAX":370000}},{"type":"Point","coordinates":[8694,7202],"properties":{"NAME":"Kure","POP_MAX":196991}},{"type":"Point","coordinates":[8708,7273],"properties":{"NAME":"Matsue","POP_MAX":156811}},{"type":"Point","coordinates":[8741,7275],"properties":{"NAME":"Tottori","POP_MAX":154098}},{"type":"Point","coordinates":[8615,7139],"properties":{"NAME":"Sasebo","POP_MAX":237444}},{"type":"Point","coordinates":[8479,7836],"properties":{"NAME":"Fuyu","POP_MAX":356905}},{"type":"Point","coordinates":[8573,7730],"properties":{"NAME":"Dunhua","POP_MAX":191870}},{"type":"Point","coordinates":[8488,7793],"properties":{"NAME":"Nongan","POP_MAX":141482}},{"type":"Point","coordinates":[8422,7845],"properties":{"NAME":"Taonan","POP_MAX":116611}},{"type":"Point","coordinates":[8504,7668],"properties":{"NAME":"Liuhe","POP_MAX":68938}},{"type":"Point","coordinates":[8519,7688],"properties":{"NAME":"Huinan","POP_MAX":66315}},{"type":"Point","coordinates":[8513,7706],"properties":{"NAME":"Panshi","POP_MAX":86216}},{"type":"Point","coordinates":[8549,7751],"properties":{"NAME":"Jiaohe","POP_MAX":123018}},{"type":"Point","coordinates":[8538,7642],"properties":{"NAME":"Linjiang","POP_MAX":84315}},{"type":"Point","coordinates":[8616,7728],"properties":{"NAME":"Wangqing","POP_MAX":88732}},{"type":"Point","coordinates":[8595,7683],"properties":{"NAME":"Helong","POP_MAX":85756}},{"type":"Point","coordinates":[8538,7791],"properties":{"NAME":"Shulan","POP_MAX":78764}},{"type":"Point","coordinates":[8507,7776],"properties":{"NAME":"Jiutai","POP_MAX":205399}},{"type":"Point","coordinates":[8646,7180],"properties":{"NAME":"Kitakyushu","POP_MAX":997536}},{"type":"Point","coordinates":[8642,7118],"properties":{"NAME":"Kumamoto","POP_MAX":718232}},{"type":"Point","coordinates":[8667,7144],"properties":{"NAME":"Oita","POP_MAX":448907}},{"type":"Point","coordinates":[7945,7468],"properties":{"NAME":"Alxa Zuoqi","POP_MAX":56387}},{"type":"Point","coordinates":[8290,7740],"properties":{"NAME":"Linxi","POP_MAX":679}},{"type":"Point","coordinates":[8378,7743],"properties":{"NAME":"Kailu","POP_MAX":2809}},{"type":"Point","coordinates":[8322,7767],"properties":{"NAME":"Bairin Zuoqi","POP_MAX":50000}},{"type":"Point","coordinates":[8387,8153],"properties":{"NAME":"Yitulihe","POP_MAX":19645}},{"type":"Point","coordinates":[8365,8074],"properties":{"NAME":"Yakeshi","POP_MAX":116284}},{"type":"Point","coordinates":[8398,8045],"properties":{"NAME":"Bugt","POP_MAX":17457}},{"type":"Point","coordinates":[8018,7599],"properties":{"NAME":"Wuyuan","POP_MAX":30057}},{"type":"Point","coordinates":[8065,7638],"properties":{"NAME":"Bayan Obo","POP_MAX":27476}},{"type":"Point","coordinates":[8153,7562],"properties":{"NAME":"Fengzhen","POP_MAX":99174}},{"type":"Point","coordinates":[8539,7920],"properties":{"NAME":"Suihua","POP_MAX":252245}},{"type":"Point","coordinates":[8661,7922],"properties":{"NAME":"Shuangyashan","POP_MAX":500000}},{"type":"Point","coordinates":[8566,7838],"properties":{"NAME":"Shangzhi","POP_MAX":96980}},{"type":"Point","coordinates":[8679,7957],"properties":{"NAME":"Fujin","POP_MAX":89442}},{"type":"Point","coordinates":[8492,7993],"properties":{"NAME":"Yian","POP_MAX":39924}},{"type":"Point","coordinates":[8439,7906],"properties":{"NAME":"Tailai","POP_MAX":75992}},{"type":"Point","coordinates":[8433,7961],"properties":{"NAME":"Longjiang","POP_MAX":106384}},{"type":"Point","coordinates":[8442,7995],"properties":{"NAME":"Gannan","POP_MAX":59239}},{"type":"Point","coordinates":[8537,7968],"properties":{"NAME":"Hailun","POP_MAX":109881}},{"type":"Point","coordinates":[8675,7857],"properties":{"NAME":"Mishan","POP_MAX":87257}},{"type":"Point","coordinates":[8569,7939],"properties":{"NAME":"Tieli","POP_MAX":109636}},{"type":"Point","coordinates":[8519,7846],"properties":{"NAME":"Shuangcheng","POP_MAX":130710}},{"type":"Point","coordinates":[8511,7888],"properties":{"NAME":"Zhaodong","POP_MAX":179980}},{"type":"Point","coordinates":[8519,7899],"properties":{"NAME":"Lanxi","POP_MAX":72528}},{"type":"Point","coordinates":[8508,8001],"properties":{"NAME":"Keshan","POP_MAX":72403}},{"type":"Point","coordinates":[8603,7949],"properties":{"NAME":"Nancha","POP_MAX":121367}},{"type":"Point","coordinates":[8609,8013],"properties":{"NAME":"Xinqing","POP_MAX":55415}},{"type":"Point","coordinates":[8706,7870],"properties":{"NAME":"Hulin","POP_MAX":42559}},{"type":"Point","coordinates":[8639,7869],"properties":{"NAME":"Boli","POP_MAX":95260}},{"type":"Point","coordinates":[8608,7787],"properties":{"NAME":"Ningan","POP_MAX":54636}},{"type":"Point","coordinates":[8811,7270],"properties":{"NAME":"Gifu","POP_MAX":412895}},{"type":"Point","coordinates":[8804,7229],"properties":{"NAME":"Tsu","POP_MAX":500000}},{"type":"Point","coordinates":[8845,7318],"properties":{"NAME":"Matsumoto","POP_MAX":224926}},{"type":"Point","coordinates":[8857,7245],"properties":{"NAME":"Shizuoka","POP_MAX":701561}},{"type":"Point","coordinates":[8838,7230],"properties":{"NAME":"Hamamatsu","POP_MAX":977023}},{"type":"Point","coordinates":[8990,7706],"properties":{"NAME":"Obihiro","POP_MAX":173890}},{"type":"Point","coordinates":[8945,7689],"properties":{"NAME":"Tomakomai","POP_MAX":174806}},{"type":"Point","coordinates":[9010,7759],"properties":{"NAME":"Kitami","POP_MAX":113137}},{"type":"Point","coordinates":[8929,7721],"properties":{"NAME":"Otaru","POP_MAX":143792}},{"type":"Point","coordinates":[8796,7308],"properties":{"NAME":"Fukui","POP_MAX":248707}},{"type":"Point","coordinates":[8772,7272],"properties":{"NAME":"Maizuru","POP_MAX":92465}},{"type":"Point","coordinates":[8767,7201],"properties":{"NAME":"Wakayama","POP_MAX":440006}},{"type":"Point","coordinates":[8915,7325],"properties":{"NAME":"Mito","POP_MAX":353892}},{"type":"Point","coordinates":[8862,7284],"properties":{"NAME":"Kofu","POP_MAX":197540}},{"type":"Point","coordinates":[8926,7365],"properties":{"NAME":"Iwaki","POP_MAX":357309}},{"type":"Point","coordinates":[8870,7388],"properties":{"NAME":"Nagaoka","POP_MAX":195318}},{"type":"Point","coordinates":[8910,7435],"properties":{"NAME":"Yamagata","POP_MAX":272209}},{"type":"Point","coordinates":[8897,7460],"properties":{"NAME":"Tsuruoka","POP_MAX":99820}},{"type":"Point","coordinates":[5473,4937],"properties":{"NAME":"Kenge","POP_MAX":241}},{"type":"Point","coordinates":[5454,5092],"properties":{"NAME":"Bolobo","POP_MAX":27862}},{"type":"Point","coordinates":[5531,4795],"properties":{"NAME":"Kahemba","POP_MAX":50000}},{"type":"Point","coordinates":[5520,4953],"properties":{"NAME":"Bulungu","POP_MAX":48344}},{"type":"Point","coordinates":[5462,4893],"properties":{"NAME":"Lusanga","POP_MAX":177}},{"type":"Point","coordinates":[5546,4983],"properties":{"NAME":"Mangai","POP_MAX":37188}},{"type":"Point","coordinates":[5471,4841],"properties":{"NAME":"Kasongo-Lunda","POP_MAX":20060}},{"type":"Point","coordinates":[5473,5042],"properties":{"NAME":"Mushie","POP_MAX":33062}},{"type":"Point","coordinates":[5639,4840],"properties":{"NAME":"Dibaya","POP_MAX":603}},{"type":"Point","coordinates":[5603,4936],"properties":{"NAME":"Mweka","POP_MAX":50675}},{"type":"Point","coordinates":[5598,4907],"properties":{"NAME":"Luebo","POP_MAX":35183}},{"type":"Point","coordinates":[5622,4897],"properties":{"NAME":"Demba","POP_MAX":22263}},{"type":"Point","coordinates":[5576,4966],"properties":{"NAME":"Ilebo","POP_MAX":107093}},{"type":"Point","coordinates":[5346,4874],"properties":{"NAME":"Moanda","POP_MAX":153915}},{"type":"Point","coordinates":[5404,4895],"properties":{"NAME":"Kimpese","POP_MAX":10578}},{"type":"Point","coordinates":[5425,4951],"properties":{"NAME":"Kasangulu","POP_MAX":27961}},{"type":"Point","coordinates":[5416,4913],"properties":{"NAME":"Mbanza-Ngungu","POP_MAX":197545}},{"type":"Point","coordinates":[5362,4929],"properties":{"NAME":"Tshela","POP_MAX":38845}},{"type":"Point","coordinates":[5794,5041],"properties":{"NAME":"Mwenga","POP_MAX":2216}},{"type":"Point","coordinates":[5745,5008],"properties":{"NAME":"Kampene","POP_MAX":37034}},{"type":"Point","coordinates":[5738,5071],"properties":{"NAME":"Kalima","POP_MAX":194}},{"type":"Point","coordinates":[5742,5174],"properties":{"NAME":"Lubutu","POP_MAX":1313}},{"type":"Point","coordinates":[5684,4862],"properties":{"NAME":"Kabinda","POP_MAX":59004}},{"type":"Point","coordinates":[5719,4904],"properties":{"NAME":"Lubao","POP_MAX":43068}},{"type":"Point","coordinates":[5655,4929],"properties":{"NAME":"Lusambo","POP_MAX":41416}},{"type":"Point","coordinates":[5669,4826],"properties":{"NAME":"Gandajika","POP_MAX":154425}},{"type":"Point","coordinates":[5654,5015],"properties":{"NAME":"Lodja","POP_MAX":68244}},{"type":"Point","coordinates":[5624,4597],"properties":{"NAME":"Dilolo","POP_MAX":7854}},{"type":"Point","coordinates":[5782,4872],"properties":{"NAME":"Nyunzu","POP_MAX":15397}},{"type":"Point","coordinates":[5655,4616],"properties":{"NAME":"Kasaji","POP_MAX":11969}},{"type":"Point","coordinates":[5801,4713],"properties":{"NAME":"Luanza","POP_MAX":861}},{"type":"Point","coordinates":[5830,4808],"properties":{"NAME":"Moba","POP_MAX":10006}},{"type":"Point","coordinates":[5722,4683],"properties":{"NAME":"Bukama","POP_MAX":38770}},{"type":"Point","coordinates":[5675,4778],"properties":{"NAME":"Kaniama","POP_MAX":36481}},{"type":"Point","coordinates":[5761,4535],"properties":{"NAME":"Kipushi","POP_MAX":113347}},{"type":"Point","coordinates":[5743,4587],"properties":{"NAME":"Kambove","POP_MAX":36702}},{"type":"Point","coordinates":[5753,4905],"properties":{"NAME":"Kongolo","POP_MAX":105202}},{"type":"Point","coordinates":[5751,4866],"properties":{"NAME":"Kabalo","POP_MAX":29833}},{"type":"Point","coordinates":[5822,5245],"properties":{"NAME":"Beni","POP_MAX":332903}},{"type":"Point","coordinates":[7826,5097],"properties":{"NAME":"Sungaipenuh","POP_MAX":95913}},{"type":"Point","coordinates":[8148,5070],"properties":{"NAME":"Sampit","POP_MAX":92710}},{"type":"Point","coordinates":[8187,5037],"properties":{"NAME":"Kualakapuas","POP_MAX":35632}},{"type":"Point","coordinates":[8175,5089],"properties":{"NAME":"Palangkaraya","POP_MAX":148289}},{"type":"Point","coordinates":[2454,6105],"properties":{"NAME":"Huehuetenango","POP_MAX":85992}},{"type":"Point","coordinates":[2498,6199],"properties":{"NAME":"Flores","POP_MAX":38035}},{"type":"Point","coordinates":[2492,6190],"properties":{"NAME":"La Libertad","POP_MAX":8646}},{"type":"Point","coordinates":[2472,6025],"properties":{"NAME":"San Jose","POP_MAX":18655}},{"type":"Point","coordinates":[2473,6046],"properties":{"NAME":"Escuintla","POP_MAX":107638}},{"type":"Point","coordinates":[2453,6059],"properties":{"NAME":"Mazatenango","POP_MAX":64652}},{"type":"Point","coordinates":[3006,6369],"properties":{"NAME":"Monte Cristi","POP_MAX":17001}},{"type":"Point","coordinates":[3021,6272],"properties":{"NAME":"Barahona","POP_MAX":90128}},{"type":"Point","coordinates":[3095,6302],"properties":{"NAME":"Bavaro","POP_MAX":795}},{"type":"Point","coordinates":[3497,5536],"properties":{"NAME":"Saint-Laurent-du-Maroni","POP_MAX":24287}},{"type":"Point","coordinates":[3519,5535],"properties":{"NAME":"Iracoubo","POP_MAX":1536}},{"type":"Point","coordinates":[4594,5996],"properties":{"NAME":"Bansang","POP_MAX":7615}},{"type":"Point","coordinates":[4538,5987],"properties":{"NAME":"Brikama","POP_MAX":195136}},{"type":"Point","coordinates":[4978,5762],"properties":{"NAME":"Tamale","POP_MAX":360579}},{"type":"Point","coordinates":[5001,5764],"properties":{"NAME":"Yendi","POP_MAX":42972}},{"type":"Point","coordinates":[4978,5842],"properties":{"NAME":"Bolgatanga","POP_MAX":82177}},{"type":"Point","coordinates":[4995,5858],"properties":{"NAME":"Bawku","POP_MAX":73594}},{"type":"Point","coordinates":[4932,5800],"properties":{"NAME":"Wa","POP_MAX":78107}},{"type":"Point","coordinates":[4956,5576],"properties":{"NAME":"Obuasi","POP_MAX":180117}},{"type":"Point","coordinates":[4930,5649],"properties":{"NAME":"Berekum","POP_MAX":46287}},{"type":"Point","coordinates":[4984,5527],"properties":{"NAME":"Winneba","POP_MAX":44254}},{"type":"Point","coordinates":[4967,5513],"properties":{"NAME":"Cape Coast","POP_MAX":143015}},{"type":"Point","coordinates":[4980,5597],"properties":{"NAME":"Nkawkaw","POP_MAX":62667}},{"type":"Point","coordinates":[4995,5570],"properties":{"NAME":"Koforidua","POP_MAX":156653}},{"type":"Point","coordinates":[5002,5544],"properties":{"NAME":"Tema","POP_MAX":209000}},{"type":"Point","coordinates":[5015,5600],"properties":{"NAME":"Ho","POP_MAX":93044}},{"type":"Point","coordinates":[5415,5166],"properties":{"NAME":"Ewo","POP_MAX":10650}},{"type":"Point","coordinates":[5390,5276],"properties":{"NAME":"Mekambo","POP_MAX":3170}},{"type":"Point","coordinates":[5360,5250],"properties":{"NAME":"Makokou","POP_MAX":17070}},{"type":"Point","coordinates":[5324,5262],"properties":{"NAME":"Mitzik","POP_MAX":4111}},{"type":"Point","coordinates":[5322,5338],"properties":{"NAME":"Bitam","POP_MAX":17637}},{"type":"Point","coordinates":[7111,7088],"properties":{"NAME":"Pathankot","POP_MAX":253987}},{"type":"Point","coordinates":[7092,6926],"properties":{"NAME":"Sirsa","POP_MAX":181639}},{"type":"Point","coordinates":[7146,6921],"properties":{"NAME":"Panipat","POP_MAX":292808}},{"type":"Point","coordinates":[7146,6937],"properties":{"NAME":"Karnal","POP_MAX":225049}},{"type":"Point","coordinates":[7073,7200],"properties":{"NAME":"Baramula","POP_MAX":167986}},{"type":"Point","coordinates":[7190,6072],"properties":{"NAME":"Proddatur","POP_MAX":197451}},{"type":"Point","coordinates":[7188,6117],"properties":{"NAME":"Nandyal","POP_MAX":188654}},{"type":"Point","coordinates":[7160,6016],"properties":{"NAME":"Hindupur","POP_MAX":168312}},{"type":"Point","coordinates":[7214,6008],"properties":{"NAME":"Tirupati","POP_MAX":287035}},{"type":"Point","coordinates":[7232,6119],"properties":{"NAME":"Ongole","POP_MAX":202860}},{"type":"Point","coordinates":[7328,6267],"properties":{"NAME":"Vizianagaram","POP_MAX":179358}},{"type":"Point","coordinates":[7280,6204],"properties":{"NAME":"Rajahmundry","POP_MAX":304804}},{"type":"Point","coordinates":[7263,6156],"properties":{"NAME":"Machilipatnam","POP_MAX":192827}},{"type":"Point","coordinates":[7235,6219],"properties":{"NAME":"Khammam","POP_MAX":290839}},{"type":"Point","coordinates":[7240,6136],"properties":{"NAME":"Chirala","POP_MAX":253000}},{"type":"Point","coordinates":[7205,6287],"properties":{"NAME":"Karimnagar","POP_MAX":288251}},{"type":"Point","coordinates":[7177,6299],"properties":{"NAME":"Nizamabad","POP_MAX":388505}},{"type":"Point","coordinates":[7135,5733],"properties":{"NAME":"Kollam","POP_MAX":394163}},{"type":"Point","coordinates":[7129,5768],"properties":{"NAME":"Alappuzha","POP_MAX":176783}},{"type":"Point","coordinates":[7395,6366],"properties":{"NAME":"Puri","POP_MAX":201026}},{"type":"Point","coordinates":[7341,6462],"properties":{"NAME":"Sambalpur","POP_MAX":310852}},{"type":"Point","coordinates":[7365,6506],"properties":{"NAME":"Raurkela","POP_MAX":625831}},{"type":"Point","coordinates":[7025,5829],"properties":{"NAME":"Kavaratti","POP_MAX":10688}},{"type":"Point","coordinates":[7144,5946],"properties":{"NAME":"Mandya","POP_MAX":285034}},{"type":"Point","coordinates":[7178,5978],"properties":{"NAME":"Kolar","POP_MAX":144625}},{"type":"Point","coordinates":[7107,6024],"properties":{"NAME":"Shimoga","POP_MAX":654055}},{"type":"Point","coordinates":[7157,6157],"properties":{"NAME":"Raichur","POP_MAX":255240}},{"type":"Point","coordinates":[7129,6103],"properties":{"NAME":"Hospet","POP_MAX":286007}},{"type":"Point","coordinates":[7161,6256],"properties":{"NAME":"Bidar","POP_MAX":300136}},{"type":"Point","coordinates":[7079,6194],"properties":{"NAME":"Sangli","POP_MAX":601214}},{"type":"Point","coordinates":[7140,6334],"properties":{"NAME":"Parbhani","POP_MAX":378326}},{"type":"Point","coordinates":[7078,6409],"properties":{"NAME":"Malegaon","POP_MAX":690844}},{"type":"Point","coordinates":[7585,5893],"properties":{"NAME":"Port Blair","POP_MAX":127562}},{"type":"Point","coordinates":[7587,6761],"properties":{"NAME":"Tezpur","POP_MAX":58851}},{"type":"Point","coordinates":[7586,6654],"properties":{"NAME":"Silchar","POP_MAX":152393}},{"type":"Point","coordinates":[7623,6705],"properties":{"NAME":"Kohima","POP_MAX":92113}},{"type":"Point","coordinates":[7561,6699],"properties":{"NAME":"Shillong","POP_MAX":375527}},{"type":"Point","coordinates":[9944,4185],"properties":{"NAME":"Nandi","POP_MAX":42284}},{"type":"Point","coordinates":[9945,4196],"properties":{"NAME":"Lautoka","POP_MAX":55894}},{"type":"Point","coordinates":[5286,5176],"properties":{"NAME":"Lambarene","POP_MAX":25310}},{"type":"Point","coordinates":[5291,5198],"properties":{"NAME":"Bifoum","POP_MAX":134}},{"type":"Point","coordinates":[5319,5079],"properties":{"NAME":"Ndende","POP_MAX":6200}},{"type":"Point","coordinates":[5309,5109],"properties":{"NAME":"Mouila","POP_MAX":28000}},{"type":"Point","coordinates":[5260,5126],"properties":{"NAME":"Omboue","POP_MAX":1667}},{"type":"Point","coordinates":[5370,5126],"properties":{"NAME":"Moanda","POP_MAX":30151}},{"type":"Point","coordinates":[5386,5177],"properties":{"NAME":"Okandja","POP_MAX":7155}},{"type":"Point","coordinates":[5350,5151],"properties":{"NAME":"Koulamoutou","POP_MAX":16222}},{"type":"Point","coordinates":[4956,8095],"properties":{"NAME":"Cherbourg","POP_MAX":60991}},{"type":"Point","coordinates":[4992,8068],"properties":{"NAME":"Caen","POP_MAX":190099}},{"type":"Point","coordinates":[4908,7985],"properties":{"NAME":"Lorient","POP_MAX":84952}},{"type":"Point","coordinates":[4877,8022],"properties":{"NAME":"Brest","POP_MAX":144899}},{"type":"Point","coordinates":[5005,7999],"properties":{"NAME":"Le Mans","POP_MAX":144515}},{"type":"Point","coordinates":[4958,7954],"properties":{"NAME":"Nantes","POP_MAX":438537}},{"type":"Point","coordinates":[5020,7779],"properties":{"NAME":"Agen","POP_MAX":58223}},{"type":"Point","coordinates":[5245,7647],"properties":{"NAME":"Ajaccio","POP_MAX":54364}},{"type":"Point","coordinates":[5265,7692],"properties":{"NAME":"Bastia","POP_MAX":41001}},{"type":"Point","coordinates":[5167,7717],"properties":{"NAME":"Toulon","POP_MAX":357693}},{"type":"Point","coordinates":[5091,7730],"properties":{"NAME":"Beziers","POP_MAX":81438}},{"type":"Point","coordinates":[5110,7745],"properties":{"NAME":"Montpellier","POP_MAX":327254}},{"type":"Point","coordinates":[5123,7758],"properties":{"NAME":"Nimes","POP_MAX":169547}},{"type":"Point","coordinates":[5097,7890],"properties":{"NAME":"Vichy","POP_MAX":43158}},{"type":"Point","coordinates":[5090,7941],"properties":{"NAME":"Nevers","POP_MAX":45929}},{"type":"Point","coordinates":[5101,7988],"properties":{"NAME":"Auxerre","POP_MAX":41516}},{"type":"Point","coordinates":[5142,7961],"properties":{"NAME":"Dijon","POP_MAX":169946}},{"type":"Point","coordinates":[5069,7946],"properties":{"NAME":"Bourges","POP_MAX":72340}},{"type":"Point","coordinates":[5021,7964],"properties":{"NAME":"Tours","POP_MAX":236096}},{"type":"Point","coordinates":[5055,7994],"properties":{"NAME":"Orleans","POP_MAX":217301}},{"type":"Point","coordinates":[5032,8112],"properties":{"NAME":"Dieppe","POP_MAX":42461}},{"type":"Point","coordinates":[5032,8082],"properties":{"NAME":"Rouen","POP_MAX":532559}},{"type":"Point","coordinates":[5061,8046],"properties":{"NAME":"Versailles","POP_MAX":85416}},{"type":"Point","coordinates":[5045,7834],"properties":{"NAME":"Brive","POP_MAX":55448}},{"type":"Point","coordinates":[5116,8019],"properties":{"NAME":"Troyes","POP_MAX":61703}},{"type":"Point","coordinates":[5114,8072],"properties":{"NAME":"Reims","POP_MAX":196565}},{"type":"Point","coordinates":[5053,8171],"properties":{"NAME":"Calais","POP_MAX":92201}},{"type":"Point","coordinates":[5066,8110],"properties":{"NAME":"Amiens","POP_MAX":143086}},{"type":"Point","coordinates":[5207,7985],"properties":{"NAME":"Mulhouse","POP_MAX":215454}},{"type":"Point","coordinates":[5175,8039],"properties":{"NAME":"Nancy","POP_MAX":268976}},{"type":"Point","coordinates":[5174,8064],"properties":{"NAME":"Metz","POP_MAX":409186}},{"type":"Point","coordinates":[2981,2477],"properties":{"NAME":"Cochrane","POP_MAX":4441}},{"type":"Point","coordinates":[3061,4000],"properties":{"NAME":"Lagunas","POP_MAX":10}},{"type":"Point","coordinates":[3058,4042],"properties":{"NAME":"Pozo Almonte","POP_MAX":10830}},{"type":"Point","coordinates":[3107,3873],"properties":{"NAME":"Toconao","POP_MAX":378}},{"type":"Point","coordinates":[3018,3566],"properties":{"NAME":"Huasco","POP_MAX":2558}},{"type":"Point","coordinates":[3051,3688],"properties":{"NAME":"Diego de Almagro","POP_MAX":18137}},{"type":"Point","coordinates":[3029,3648],"properties":{"NAME":"Caldera","POP_MAX":10259}},{"type":"Point","coordinates":[3015,3480],"properties":{"NAME":"Coquimbo","POP_MAX":161317}},{"type":"Point","coordinates":[3031,3476],"properties":{"NAME":"Vicuna","POP_MAX":13496}},{"type":"Point","coordinates":[3019,3383],"properties":{"NAME":"Illapel","POP_MAX":26340}},{"type":"Point","coordinates":[3025,3375],"properties":{"NAME":"Salamanca","POP_MAX":20214}},{"type":"Point","coordinates":[3035,3314],"properties":{"NAME":"Los Andes","POP_MAX":56859}},{"type":"Point","coordinates":[3007,3269],"properties":{"NAME":"San Antonio","POP_MAX":104292}},{"type":"Point","coordinates":[2987,3000],"properties":{"NAME":"Victoria","POP_MAX":24555}},{"type":"Point","coordinates":[2964,2973],"properties":{"NAME":"Carahue","POP_MAX":11875}},{"type":"Point","coordinates":[2973,2907],"properties":{"NAME":"Los Lagos","POP_MAX":12813}},{"type":"Point","coordinates":[2964,3067],"properties":{"NAME":"Lota","POP_MAX":49763}},{"type":"Point","coordinates":[2950,3037],"properties":{"NAME":"Lebu","POP_MAX":22345}},{"type":"Point","coordinates":[2952,2718],"properties":{"NAME":"Quellon","POP_MAX":7029}},{"type":"Point","coordinates":[2985,3169],"properties":{"NAME":"Constitucion","POP_MAX":37917}},{"type":"Point","coordinates":[3576,9206],"properties":{"NAME":"Qasigiannguit","POP_MAX":1341}},{"type":"Point","coordinates":[5504,5312],"properties":{"NAME":"Impfondo","POP_MAX":20859}},{"type":"Point","coordinates":[5408,5312],"properties":{"NAME":"Sembe","POP_MAX":9679}},{"type":"Point","coordinates":[5426,5335],"properties":{"NAME":"Moloundou","POP_MAX":12244}},{"type":"Point","coordinates":[5557,7513],"properties":{"NAME":"Kerkira","POP_MAX":38517}},{"type":"Point","coordinates":[5625,7391],"properties":{"NAME":"Tripoli","POP_MAX":28970}},{"type":"Point","coordinates":[5627,7366],"properties":{"NAME":"Sparti","POP_MAX":16187}},{"type":"Point","coordinates":[5598,7456],"properties":{"NAME":"Agrinio","POP_MAX":75233}},{"type":"Point","coordinates":[5599,7401],"properties":{"NAME":"Pirgos","POP_MAX":22399}},{"type":"Point","coordinates":[5626,7514],"properties":{"NAME":"Larissa","POP_MAX":128758}},{"type":"Point","coordinates":[5583,7516],"properties":{"NAME":"Ioanina","POP_MAX":86304}},{"type":"Point","coordinates":[5742,7484],"properties":{"NAME":"Mitilini","POP_MAX":29328}},{"type":"Point","coordinates":[5730,7441],"properties":{"NAME":"Hios","POP_MAX":26891}},{"type":"Point","coordinates":[5660,7447],"properties":{"NAME":"Chalkida","POP_MAX":71842}},{"type":"Point","coordinates":[5729,7257],"properties":{"NAME":"Sitia","POP_MAX":8833}},{"type":"Point","coordinates":[5629,7551],"properties":{"NAME":"Katerini","POP_MAX":53293}},{"type":"Point","coordinates":[5658,7599],"properties":{"NAME":"Seres","POP_MAX":55886}},{"type":"Point","coordinates":[5695,7602],"properties":{"NAME":"Xanthi","POP_MAX":50570}},{"type":"Point","coordinates":[5696,7388],"properties":{"NAME":"Ermoupoli","POP_MAX":12260}},{"type":"Point","coordinates":[5762,7356],"properties":{"NAME":"Kos","POP_MAX":19244}},{"type":"Point","coordinates":[5788,7329],"properties":{"NAME":"Rodos","POP_MAX":56969}},{"type":"Point","coordinates":[6163,7661],"properties":{"NAME":"Poti","POP_MAX":47149}},{"type":"Point","coordinates":[6257,7627],"properties":{"NAME":"Rustavi","POP_MAX":157063}},{"type":"Point","coordinates":[6191,7370],"properties":{"NAME":"Zakho","POP_MAX":134863}},{"type":"Point","coordinates":[6184,7326],"properties":{"NAME":"Tall Afar","POP_MAX":144465}},{"type":"Point","coordinates":[6218,7222],"properties":{"NAME":"Tikrit","POP_MAX":56591}},{"type":"Point","coordinates":[5976,7120],"properties":{"NAME":"Haifa","POP_MAX":1011000}},{"type":"Point","coordinates":[5985,7113],"properties":{"NAME":"Nazareth","POP_MAX":151459}},{"type":"Point","coordinates":[6228,7108],"properties":{"NAME":"Karbala","POP_MAX":510692}},{"type":"Point","coordinates":[6103,5778],"properties":{"NAME":"Debre Birhan","POP_MAX":65231}},{"type":"Point","coordinates":[6117,5865],"properties":{"NAME":"Bati","POP_MAX":19260}},{"type":"Point","coordinates":[6101,6045],"properties":{"NAME":"Adigrat","POP_MAX":104021}},{"type":"Point","coordinates":[6080,6036],"properties":{"NAME":"Aksum","POP_MAX":47487}},{"type":"Point","coordinates":[6072,5608],"properties":{"NAME":"Yirga Alem","POP_MAX":36292}},{"type":"Point","coordinates":[6056,5655],"properties":{"NAME":"Hosaina","POP_MAX":89300}},{"type":"Point","coordinates":[6069,5588],"properties":{"NAME":"Dila","POP_MAX":47021}},{"type":"Point","coordinates":[6060,5711],"properties":{"NAME":"Giyon","POP_MAX":114534}},{"type":"Point","coordinates":[6056,5737],"properties":{"NAME":"Hagere Hiywet","POP_MAX":43920}},{"type":"Point","coordinates":[6019,5744],"properties":{"NAME":"Nekemte","POP_MAX":73018}},{"type":"Point","coordinates":[6092,5678],"properties":{"NAME":"Asela","POP_MAX":82240}},{"type":"Point","coordinates":[6077,5634],"properties":{"NAME":"Shashemene","POP_MAX":114350}},{"type":"Point","coordinates":[5971,5712],"properties":{"NAME":"Dembi Dolo","POP_MAX":27780}},{"type":"Point","coordinates":[6000,5748],"properties":{"NAME":"Gimbi","POP_MAX":31809}},{"type":"Point","coordinates":[5964,5800],"properties":{"NAME":"Asosa","POP_MAX":30512}},{"type":"Point","coordinates":[6194,5759],"properties":{"NAME":"Jijiga","POP_MAX":56821}},{"type":"Point","coordinates":[5367,8365],"properties":{"NAME":"Stralsund","POP_MAX":61368}},{"type":"Point","coordinates":[5340,8351],"properties":{"NAME":"Rostock","POP_MAX":203080}},{"type":"Point","coordinates":[5743,9125],"properties":{"NAME":"Sodankyl�","POP_MAX":8942}},{"type":"Point","coordinates":[5719,8826],"properties":{"NAME":"Jyv�skyl�","POP_MAX":98136}},{"type":"Point","coordinates":[5773,8863],"properties":{"NAME":"Kuopio","POP_MAX":91900}},{"type":"Point","coordinates":[5787,8757],"properties":{"NAME":"Lappeenranta","POP_MAX":59276}},{"type":"Point","coordinates":[5717,8718],"properties":{"NAME":"Porvoo","POP_MAX":12242}},{"type":"Point","coordinates":[6602,8085],"properties":{"NAME":"Oktyabrsk","POP_MAX":28196}},{"type":"Point","coordinates":[6599,8110],"properties":{"NAME":"Algha","POP_MAX":28267}},{"type":"Point","coordinates":[6558,8040],"properties":{"NAME":"Bayghanin","POP_MAX":7657}},{"type":"Point","coordinates":[6621,8047],"properties":{"NAME":"Embi","POP_MAX":18760}},{"type":"Point","coordinates":[6708,8243],"properties":{"NAME":"Zhetiqara","POP_MAX":46740}},{"type":"Point","coordinates":[6730,8333],"properties":{"NAME":"Komsomolets","POP_MAX":9838}},{"type":"Point","coordinates":[6745,8272],"properties":{"NAME":"Tobol","POP_MAX":7155}},{"type":"Point","coordinates":[6801,8258],"properties":{"NAME":"Qusmuryn","POP_MAX":8049}},{"type":"Point","coordinates":[6861,7777],"properties":{"NAME":"Shieli","POP_MAX":29832}},{"type":"Point","coordinates":[6439,7980],"properties":{"NAME":"Makhambet","POP_MAX":8905}},{"type":"Point","coordinates":[6426,8127],"properties":{"NAME":"Chapaev","POP_MAX":6000}},{"type":"Point","coordinates":[6308,8082],"properties":{"NAME":"Zhanibek","POP_MAX":8212}},{"type":"Point","coordinates":[6479,8183],"properties":{"NAME":"Aqsay","POP_MAX":34799}},{"type":"Point","coordinates":[6851,8229],"properties":{"NAME":"Esil","POP_MAX":13504}},{"type":"Point","coordinates":[6849,8179],"properties":{"NAME":"Derzhavinsk","POP_MAX":15848}},{"type":"Point","coordinates":[6947,8210],"properties":{"NAME":"Zhaltyr","POP_MAX":694}},{"type":"Point","coordinates":[6963,8268],"properties":{"NAME":"Makinsk","POP_MAX":23020}},{"type":"Point","coordinates":[7006,8257],"properties":{"NAME":"Aqsu","POP_MAX":8543}},{"type":"Point","coordinates":[6999,8217],"properties":{"NAME":"Zholymbet","POP_MAX":6876}},{"type":"Point","coordinates":[7038,8210],"properties":{"NAME":"Erymentau","POP_MAX":25141}},{"type":"Point","coordinates":[7052,7890],"properties":{"NAME":"Saryshaghan","POP_MAX":4365}},{"type":"Point","coordinates":[6974,8001],"properties":{"NAME":"Qarazhal","POP_MAX":22170}},{"type":"Point","coordinates":[6998,8039],"properties":{"NAME":"Atasu","POP_MAX":19616}},{"type":"Point","coordinates":[7017,8326],"properties":{"NAME":"Kishkenekol","POP_MAX":6779}},{"type":"Point","coordinates":[6945,8338],"properties":{"NAME":"Tayynsha","POP_MAX":13148}},{"type":"Point","coordinates":[6964,8400],"properties":{"NAME":"Bulaevo","POP_MAX":9886}},{"type":"Point","coordinates":[7103,8309],"properties":{"NAME":"Ertis","POP_MAX":9216}},{"type":"Point","coordinates":[7121,8294],"properties":{"NAME":"Kachiry","POP_MAX":8931}},{"type":"Point","coordinates":[7366,7969],"properties":{"NAME":"Zaysan","POP_MAX":17600}},{"type":"Point","coordinates":[7349,8101],"properties":{"NAME":"Zyryanovsk","POP_MAX":49658}},{"type":"Point","coordinates":[7328,8136],"properties":{"NAME":"Ridder","POP_MAX":56756}},{"type":"Point","coordinates":[7260,8092],"properties":{"NAME":"Shar","POP_MAX":9087}},{"type":"Point","coordinates":[7275,7947],"properties":{"NAME":"Urzhar","POP_MAX":14826}},{"type":"Point","coordinates":[7228,7850],"properties":{"NAME":"Sarqan","POP_MAX":76919}},{"type":"Point","coordinates":[7174,7841],"properties":{"NAME":"Ushtobe","POP_MAX":20492}},{"type":"Point","coordinates":[7215,7741],"properties":{"NAME":"Shonzhy","POP_MAX":3902}},{"type":"Point","coordinates":[7149,7761],"properties":{"NAME":"Qapshaghay","POP_MAX":42167}},{"type":"Point","coordinates":[7097,7741],"properties":{"NAME":"Otar","POP_MAX":11238}},{"type":"Point","coordinates":[6446,7073],"properties":{"NAME":"Qomsheh","POP_MAX":118301}},{"type":"Point","coordinates":[6439,7187],"properties":{"NAME":"Kashan","POP_MAX":250000}},{"type":"Point","coordinates":[6436,7113],"properties":{"NAME":"Khomeini Shahr","POP_MAX":437138}},{"type":"Point","coordinates":[6497,6896],"properties":{"NAME":"Fasa","POP_MAX":124458}},{"type":"Point","coordinates":[6539,7376],"properties":{"NAME":"Gonbad-e Kavus","POP_MAX":159982}},{"type":"Point","coordinates":[6519,7352],"properties":{"NAME":"Gorgan","POP_MAX":281023}},{"type":"Point","coordinates":[6460,7331],"properties":{"NAME":"Amol","POP_MAX":221650}},{"type":"Point","coordinates":[6481,7336],"properties":{"NAME":"Sari","POP_MAX":271467}},{"type":"Point","coordinates":[6489,7278],"properties":{"NAME":"Semnan","POP_MAX":124826}},{"type":"Point","coordinates":[6422,7292],"properties":{"NAME":"Karaj","POP_MAX":1423000}},{"type":"Point","coordinates":[6402,6990],"properties":{"NAME":"Behbehan","POP_MAX":85707}},{"type":"Point","coordinates":[6352,7094],"properties":{"NAME":"Dezful","POP_MAX":315482}},{"type":"Point","coordinates":[6349,7158],"properties":{"NAME":"Khorramabad","POP_MAX":375198}},{"type":"Point","coordinates":[6295,7166],"properties":{"NAME":"Ilam","POP_MAX":152894}},{"type":"Point","coordinates":[6263,7032],"properties":{"NAME":"As Samawah","POP_MAX":174978}},{"type":"Point","coordinates":[6291,7016],"properties":{"NAME":"An Nasiriyah","POP_MAX":451547}},{"type":"Point","coordinates":[6315,7063],"properties":{"NAME":"Al Amarah","POP_MAX":345007}},{"type":"Point","coordinates":[6278,7100],"properties":{"NAME":"Al Kut","POP_MAX":321521}},{"type":"Point","coordinates":[6404,7247],"properties":{"NAME":"Saveh","POP_MAX":175533}},{"type":"Point","coordinates":[6386,7193],"properties":{"NAME":"Arak","POP_MAX":503647}},{"type":"Point","coordinates":[6402,7798],"properties":{"NAME":"Fort Shevchenko","POP_MAX":5213}},{"type":"Point","coordinates":[6473,7727],"properties":{"NAME":"Zhangaozen","POP_MAX":8895}},{"type":"Point","coordinates":[6275,7348],"properties":{"NAME":"Mahabad","POP_MAX":162434}},{"type":"Point","coordinates":[6254,7451],"properties":{"NAME":"Khvoy","POP_MAX":202728}},{"type":"Point","coordinates":[6289,7386],"properties":{"NAME":"Maragheh","POP_MAX":151385}},{"type":"Point","coordinates":[6271,7218],"properties":{"NAME":"Qasr-e Shirin","POP_MAX":11202}},{"type":"Point","coordinates":[6328,7297],"properties":{"NAME":"Bijar","POP_MAX":53871}},{"type":"Point","coordinates":[6267,7278],"properties":{"NAME":"As Sulaymaniyah","POP_MAX":723170}},{"type":"Point","coordinates":[6246,7173],"properties":{"NAME":"Baqubah","POP_MAX":299479}},{"type":"Point","coordinates":[6698,7159],"properties":{"NAME":"Yazdan","POP_MAX":2000}},{"type":"Point","coordinates":[6690,7259],"properties":{"NAME":"Torbat-e Jam","POP_MAX":104578}},{"type":"Point","coordinates":[6631,7368],"properties":{"NAME":"Quchan","POP_MAX":145531}},{"type":"Point","coordinates":[6691,6684],"properties":{"NAME":"Chabahar","POP_MAX":65801}},{"type":"Point","coordinates":[7071,6963],"properties":{"NAME":"Abohar","POP_MAX":130603}},{"type":"Point","coordinates":[7130,6975],"properties":{"NAME":"Patiala","POP_MAX":329224}},{"type":"Point","coordinates":[7081,6686],"properties":{"NAME":"Bhilwara","POP_MAX":389911}},{"type":"Point","coordinates":[7044,6712],"properties":{"NAME":"Pali","POP_MAX":210103}},{"type":"Point","coordinates":[7113,6733],"properties":{"NAME":"Tonk","POP_MAX":181734}},{"type":"Point","coordinates":[7095,6817],"properties":{"NAME":"Sikar","POP_MAX":400000}},{"type":"Point","coordinates":[7044,6842],"properties":{"NAME":"Bikaner","POP_MAX":576015}},{"type":"Point","coordinates":[7161,6797],"properties":{"NAME":"Bharatpur","POP_MAX":229384}},{"type":"Point","coordinates":[7136,6814],"properties":{"NAME":"Alwar","POP_MAX":283228}},{"type":"Point","coordinates":[6918,7677],"properties":{"NAME":"Arys","POP_MAX":42648}},{"type":"Point","coordinates":[7064,7822],"properties":{"NAME":"Burylbaytal","POP_MAX":100}},{"type":"Point","coordinates":[7056,7744],"properties":{"NAME":"Shu","POP_MAX":42439}},{"type":"Point","coordinates":[7027,7705],"properties":{"NAME":"Qulan","POP_MAX":13128}},{"type":"Point","coordinates":[7042,7705],"properties":{"NAME":"Oytal","POP_MAX":22673}},{"type":"Point","coordinates":[6965,7720],"properties":{"NAME":"Qaratau","POP_MAX":37881}},{"type":"Point","coordinates":[7253,6717],"properties":{"NAME":"Fatehpur","POP_MAX":166480}},{"type":"Point","coordinates":[7291,6768],"properties":{"NAME":"Faizabad","POP_MAX":153047}},{"type":"Point","coordinates":[7277,6818],"properties":{"NAME":"Bahraich","POP_MAX":182218}},{"type":"Point","coordinates":[7302,6675],"properties":{"NAME":"Mirzapur","POP_MAX":245817}},{"type":"Point","coordinates":[7190,6692],"properties":{"NAME":"Jhansi","POP_MAX":826494}},{"type":"Point","coordinates":[7228,6833],"properties":{"NAME":"Shahjahanpur","POP_MAX":320434}},{"type":"Point","coordinates":[7203,6887],"properties":{"NAME":"Rampur","POP_MAX":296418}},{"type":"Point","coordinates":[7214,6860],"properties":{"NAME":"Bareilly","POP_MAX":817000}},{"type":"Point","coordinates":[7203,6770],"properties":{"NAME":"Etawah","POP_MAX":257448}},{"type":"Point","coordinates":[7176,6975],"properties":{"NAME":"Dehra Dun","POP_MAX":714223}},{"type":"Point","coordinates":[7462,6526],"properties":{"NAME":"Haora","POP_MAX":4841638}},{"type":"Point","coordinates":[7497,6752],"properties":{"NAME":"Alipur Duar","POP_MAX":127342}},{"type":"Point","coordinates":[7455,6494],"properties":{"NAME":"Haldia","POP_MAX":200762}},{"type":"Point","coordinates":[7468,6542],"properties":{"NAME":"Bhatpara","POP_MAX":483129}},{"type":"Point","coordinates":[7429,6511],"properties":{"NAME":"Medinipur","POP_MAX":169127}},{"type":"Point","coordinates":[7466,6766],"properties":{"NAME":"Siliguri","POP_MAX":515574}},{"type":"Point","coordinates":[7439,6712],"properties":{"NAME":"Purnia","POP_MAX":198453}},{"type":"Point","coordinates":[7380,6731],"properties":{"NAME":"Muzaffarpur","POP_MAX":333200}},{"type":"Point","coordinates":[7352,6653],"properties":{"NAME":"Aurangabad","POP_MAX":95929}},{"type":"Point","coordinates":[7290,6497],"properties":{"NAME":"Bilaspur","POP_MAX":543454}},{"type":"Point","coordinates":[7122,6452],"properties":{"NAME":"Burhanpur","POP_MAX":197233}},{"type":"Point","coordinates":[7113,6561],"properties":{"NAME":"Ujjain","POP_MAX":513350}},{"type":"Point","coordinates":[7092,6571],"properties":{"NAME":"Ratlam","POP_MAX":307229}},{"type":"Point","coordinates":[7195,6600],"properties":{"NAME":"Sagar","POP_MAX":328240}},{"type":"Point","coordinates":[7207,5966],"properties":{"NAME":"Vellore","POP_MAX":177081}},{"type":"Point","coordinates":[7205,5928],"properties":{"NAME":"Tiruvannamalai","POP_MAX":138243}},{"type":"Point","coordinates":[7163,5763],"properties":{"NAME":"Rajapalaiyam","POP_MAX":369991}},{"type":"Point","coordinates":[7224,5896],"properties":{"NAME":"Cuddalore","POP_MAX":158569}},{"type":"Point","coordinates":[7177,5852],"properties":{"NAME":"Karur","POP_MAX":76915}},{"type":"Point","coordinates":[7222,5961],"properties":{"NAME":"Kanchipuram","POP_MAX":155029}},{"type":"Point","coordinates":[7166,5723],"properties":{"NAME":"Tirunelveli","POP_MAX":542200}},{"type":"Point","coordinates":[7159,5691],"properties":{"NAME":"Nagercoil","POP_MAX":224329}},{"type":"Point","coordinates":[7207,5841],"properties":{"NAME":"Thanjavur","POP_MAX":219571}},{"type":"Point","coordinates":[7214,5853],"properties":{"NAME":"Kumbakonam","POP_MAX":139264}},{"type":"Point","coordinates":[7146,5815],"properties":{"NAME":"Valparai","POP_MAX":114308}},{"type":"Point","coordinates":[7156,5859],"properties":{"NAME":"Tiruppur","POP_MAX":650000}},{"type":"Point","coordinates":[7031,6400],"properties":{"NAME":"Daman","POP_MAX":39737}},{"type":"Point","coordinates":[7033,6426],"properties":{"NAME":"Navsari","POP_MAX":163000}},{"type":"Point","coordinates":[6946,6565],"properties":{"NAME":"Bhuj","POP_MAX":289429}},{"type":"Point","coordinates":[7011,6479],"properties":{"NAME":"Bhavnagar","POP_MAX":554978}},{"type":"Point","coordinates":[7025,6568],"properties":{"NAME":"Gandhinagar","POP_MAX":195891}},{"type":"Point","coordinates":[7610,6788],"properties":{"NAME":"Itanagar","POP_MAX":44971}},{"type":"Point","coordinates":[7585,6591],"properties":{"NAME":"Aizawl","POP_MAX":283021}},{"type":"Point","coordinates":[7544,6599],"properties":{"NAME":"Agartala","POP_MAX":203264}},{"type":"Point","coordinates":[5445,5189],"properties":{"NAME":"Owando","POP_MAX":34070}},{"type":"Point","coordinates":[5438,5216],"properties":{"NAME":"Makoua","POP_MAX":11355}},{"type":"Point","coordinates":[5374,5003],"properties":{"NAME":"Sibiti","POP_MAX":22811}},{"type":"Point","coordinates":[5356,5046],"properties":{"NAME":"Mossendjo","POP_MAX":30936}},{"type":"Point","coordinates":[5355,4975],"properties":{"NAME":"Loubomo","POP_MAX":103894}},{"type":"Point","coordinates":[5443,5108],"properties":{"NAME":"Gamboma","POP_MAX":20877}},{"type":"Point","coordinates":[5413,5070],"properties":{"NAME":"Djambala","POP_MAX":9651}},{"type":"Point","coordinates":[5298,8409],"properties":{"NAME":"Svendborg","POP_MAX":29180}},{"type":"Point","coordinates":[5291,8428],"properties":{"NAME":"Odense","POP_MAX":158222}},{"type":"Point","coordinates":[5237,8432],"properties":{"NAME":"Esbjerg","POP_MAX":72205}},{"type":"Point","coordinates":[5295,8546],"properties":{"NAME":"Frederikshavn","POP_MAX":24103}},{"type":"Point","coordinates":[5278,8523],"properties":{"NAME":"Aalborg","POP_MAX":122219}},{"type":"Point","coordinates":[4857,5773],"properties":{"NAME":"Ferkessedougou","POP_MAX":62008}},{"type":"Point","coordinates":[4751,5754],"properties":{"NAME":"Kerouane","POP_MAX":15406}},{"type":"Point","coordinates":[4747,5879],"properties":{"NAME":"Siguiri","POP_MAX":50159}},{"type":"Point","coordinates":[4665,5819],"properties":{"NAME":"Mamou","POP_MAX":71153}},{"type":"Point","coordinates":[4595,5836],"properties":{"NAME":"Kamsar","POP_MAX":34973}},{"type":"Point","coordinates":[4624,5819],"properties":{"NAME":"Fria","POP_MAX":23729}},{"type":"Point","coordinates":[4791,5768],"properties":{"NAME":"Odienne","POP_MAX":49857}},{"type":"Point","coordinates":[4738,5713],"properties":{"NAME":"Macenta","POP_MAX":43102}},{"type":"Point","coordinates":[4744,5656],"properties":{"NAME":"Yomou","POP_MAX":3614}},{"type":"Point","coordinates":[4702,5799],"properties":{"NAME":"Faranah","POP_MAX":19469}},{"type":"Point","coordinates":[4720,5750],"properties":{"NAME":"Kissidougou","POP_MAX":66815}},{"type":"Point","coordinates":[4792,5646],"properties":{"NAME":"Man","POP_MAX":146974}},{"type":"Point","coordinates":[4816,5678],"properties":{"NAME":"Seguela","POP_MAX":51157}},{"type":"Point","coordinates":[4838,5573],"properties":{"NAME":"Gagnoa","POP_MAX":123184}},{"type":"Point","coordinates":[4818,5553],"properties":{"NAME":"Soubre","POP_MAX":108933}},{"type":"Point","coordinates":[4817,5493],"properties":{"NAME":"San-Pedro","POP_MAX":210273}},{"type":"Point","coordinates":[4832,5504],"properties":{"NAME":"Sassandra","POP_MAX":38411}},{"type":"Point","coordinates":[4924,5682],"properties":{"NAME":"Bondoukou","POP_MAX":58297}},{"type":"Point","coordinates":[4883,5561],"properties":{"NAME":"Agboville","POP_MAX":81770}},{"type":"Point","coordinates":[4871,5602],"properties":{"NAME":"Dimbokro","POP_MAX":67349}},{"type":"Point","coordinates":[4897,5518],"properties":{"NAME":"Grand Bassam","POP_MAX":73772}},{"type":"Point","coordinates":[4880,5525],"properties":{"NAME":"Dabou","POP_MAX":72913}},{"type":"Point","coordinates":[4793,5597],"properties":{"NAME":"Guiglo","POP_MAX":39134}},{"type":"Point","coordinates":[4905,5607],"properties":{"NAME":"Abengourou","POP_MAX":104020}},{"type":"Point","coordinates":[6124,7132],"properties":{"NAME":"Ar Rutbah","POP_MAX":22370}},{"type":"Point","coordinates":[6221,7150],"properties":{"NAME":"Al Fallujah","POP_MAX":231819}},{"type":"Point","coordinates":[6239,7099],"properties":{"NAME":"Al Hillah","POP_MAX":594605}},{"type":"Point","coordinates":[3288,6158],"properties":{"NAME":"Pointe-a-Pitre","POP_MAX":145511}},{"type":"Point","coordinates":[3291,6158],"properties":{"NAME":"Basse-terre","POP_MAX":307}},{"type":"Point","coordinates":[6554,3998],"properties":{"NAME":"St.-Benoit","POP_MAX":35310}},{"type":"Point","coordinates":[3313,5026],"properties":{"NAME":"Manacapuru","POP_MAX":59102}},{"type":"Point","coordinates":[3394,5020],"properties":{"NAME":"Maues","POP_MAX":32561}},{"type":"Point","coordinates":[3758,4952],"properties":{"NAME":"Pedreiras","POP_MAX":13638}},{"type":"Point","coordinates":[3780,4957],"properties":{"NAME":"Codo","POP_MAX":83288}},{"type":"Point","coordinates":[3772,4977],"properties":{"NAME":"Coroata","POP_MAX":34129}},{"type":"Point","coordinates":[3794,5000],"properties":{"NAME":"Chapadinha","POP_MAX":40804}},{"type":"Point","coordinates":[3746,5071],"properties":{"NAME":"Pinheiro","POP_MAX":38893}},{"type":"Point","coordinates":[3741,4897],"properties":{"NAME":"Barra do Corda","POP_MAX":48901}},{"type":"Point","coordinates":[3748,5031],"properties":{"NAME":"Viana","POP_MAX":26689}},{"type":"Point","coordinates":[3770,4867],"properties":{"NAME":"Colinas","POP_MAX":25158}},{"type":"Point","coordinates":[3717,5148],"properties":{"NAME":"Viseu","POP_MAX":18958}},{"type":"Point","coordinates":[3690,5115],"properties":{"NAME":"Capitao Poco","POP_MAX":32704}},{"type":"Point","coordinates":[3667,5142],"properties":{"NAME":"Castanhal","POP_MAX":137406}},{"type":"Point","coordinates":[3683,5182],"properties":{"NAME":"Salinopolis","POP_MAX":40998}},{"type":"Point","coordinates":[3476,5104],"properties":{"NAME":"Alenquer","POP_MAX":26290}},{"type":"Point","coordinates":[3446,5115],"properties":{"NAME":"Oriximina","POP_MAX":35581}},{"type":"Point","coordinates":[3611,4805],"properties":{"NAME":"Xinguara","POP_MAX":4047}},{"type":"Point","coordinates":[3626,4950],"properties":{"NAME":"Jacund�","POP_MAX":51375}},{"type":"Point","coordinates":[3497,4995],"properties":{"NAME":"Uruara","POP_MAX":10}},{"type":"Point","coordinates":[3548,5031],"properties":{"NAME":"Altamira","POP_MAX":70888}},{"type":"Point","coordinates":[3679,5045],"properties":{"NAME":"Paragominas","POP_MAX":69613}},{"type":"Point","coordinates":[3623,5087],"properties":{"NAME":"Cameta","POP_MAX":45200}},{"type":"Point","coordinates":[3281,4537],"properties":{"NAME":"Rolim de Moura","POP_MAX":24516}},{"type":"Point","coordinates":[3245,4641],"properties":{"NAME":"Ariquemes","POP_MAX":58096}},{"type":"Point","coordinates":[3181,4655],"properties":{"NAME":"Abuna","POP_MAX":1929}},{"type":"Point","coordinates":[3681,4851],"properties":{"NAME":"Tocantinopolis","POP_MAX":8750}},{"type":"Point","coordinates":[3635,4537],"properties":{"NAME":"Gurupi","POP_MAX":64789}},{"type":"Point","coordinates":[3448,4030],"properties":{"NAME":"Aquidauana","POP_MAX":40803}},{"type":"Point","coordinates":[3576,4076],"properties":{"NAME":"Paranaiba","POP_MAX":32217}},{"type":"Point","coordinates":[3769,4089],"properties":{"NAME":"Sete Lagoas","POP_MAX":201334}},{"type":"Point","coordinates":[3751,4049],"properties":{"NAME":"Divinopolis","POP_MAX":193832}},{"type":"Point","coordinates":[3818,4088],"properties":{"NAME":"Ipatinga","POP_MAX":407894}},{"type":"Point","coordinates":[3694,4082],"properties":{"NAME":"Araxa","POP_MAX":82595}},{"type":"Point","coordinates":[3748,3985],"properties":{"NAME":"Lavras","POP_MAX":81472}},{"type":"Point","coordinates":[3806,3993],"properties":{"NAME":"Uba","POP_MAX":97828}},{"type":"Point","coordinates":[3741,4006],"properties":{"NAME":"Campo Belo","POP_MAX":47491}},{"type":"Point","coordinates":[3807,4034],"properties":{"NAME":"Ponte Nova","POP_MAX":48187}},{"type":"Point","coordinates":[3764,4129],"properties":{"NAME":"Curvelo","POP_MAX":63954}},{"type":"Point","coordinates":[3696,4220],"properties":{"NAME":"Paracatu","POP_MAX":70753}},{"type":"Point","coordinates":[3782,4225],"properties":{"NAME":"Bocaiuva","POP_MAX":32114}},{"type":"Point","coordinates":[3830,4240],"properties":{"NAME":"Aracuai","POP_MAX":22005}},{"type":"Point","coordinates":[3796,4301],"properties":{"NAME":"Janauba","POP_MAX":56572}},{"type":"Point","coordinates":[3345,4556],"properties":{"NAME":"Juina","POP_MAX":980}},{"type":"Point","coordinates":[3546,4296],"properties":{"NAME":"Barra do Garcas","POP_MAX":52398}},{"type":"Point","coordinates":[3349,4335],"properties":{"NAME":"Pontes e Lacerda","POP_MAX":29381}},{"type":"Point","coordinates":[3409,4343],"properties":{"NAME":"Barra do Bugres","POP_MAX":31311}},{"type":"Point","coordinates":[3480,4262],"properties":{"NAME":"Rondonopolis","POP_MAX":152912}},{"type":"Point","coordinates":[3412,3491],"properties":{"NAME":"Uruguaiana","POP_MAX":123480}},{"type":"Point","coordinates":[3442,3555],"properties":{"NAME":"Sao Borja","POP_MAX":59613}},{"type":"Point","coordinates":[3577,3495],"properties":{"NAME":"Novo Hamburgo","POP_MAX":876990}},{"type":"Point","coordinates":[3550,3359],"properties":{"NAME":"Rio Grande","POP_MAX":187838}},{"type":"Point","coordinates":[3559,3429],"properties":{"NAME":"Camaqua","POP_MAX":53169}},{"type":"Point","coordinates":[3567,3526],"properties":{"NAME":"Bento Goncalves","POP_MAX":94271}},{"type":"Point","coordinates":[3583,3565],"properties":{"NAME":"Vacaria","POP_MAX":56765}},{"type":"Point","coordinates":[3500,3571],"properties":{"NAME":"Ijui","POP_MAX":71202}},{"type":"Point","coordinates":[3485,3601],"properties":{"NAME":"Santa Rosa","POP_MAX":59281}},{"type":"Point","coordinates":[3555,3860],"properties":{"NAME":"Maringa","POP_MAX":328335}},{"type":"Point","coordinates":[3513,3770],"properties":{"NAME":"Cascavel","POP_MAX":257172}},{"type":"Point","coordinates":[3542,3823],"properties":{"NAME":"Campo Murao","POP_MAX":75401}},{"type":"Point","coordinates":[3483,3737],"properties":{"NAME":"Foz do Iguacu","POP_MAX":440455}},{"type":"Point","coordinates":[3648,3696],"properties":{"NAME":"Sao Francisco do Sul","POP_MAX":36224}},{"type":"Point","coordinates":[3579,3696],"properties":{"NAME":"Porto Uniao","POP_MAX":71578}},{"type":"Point","coordinates":[3646,3657],"properties":{"NAME":"Itajai","POP_MAX":327126}},{"type":"Point","coordinates":[3646,3580],"properties":{"NAME":"Imbituba","POP_MAX":43450}},{"type":"Point","coordinates":[3601,3605],"properties":{"NAME":"Lajes","POP_MAX":164676}},{"type":"Point","coordinates":[3864,5036],"properties":{"NAME":"Granja","POP_MAX":25879}},{"type":"Point","coordinates":[3904,4798],"properties":{"NAME":"Crato","POP_MAX":273883}},{"type":"Point","coordinates":[3899,5014],"properties":{"NAME":"Itapipoca","POP_MAX":55784}},{"type":"Point","coordinates":[3914,5020],"properties":{"NAME":"Paracuru","POP_MAX":21196}},{"type":"Point","coordinates":[3884,5049],"properties":{"NAME":"Acarau","POP_MAX":28389}},{"type":"Point","coordinates":[3879,4869],"properties":{"NAME":"Taua","POP_MAX":29188}},{"type":"Point","coordinates":[3869,4917],"properties":{"NAME":"Crateus","POP_MAX":52933}},{"type":"Point","coordinates":[3919,4966],"properties":{"NAME":"Baturite","POP_MAX":22417}},{"type":"Point","coordinates":[3868,4966],"properties":{"NAME":"Ipu","POP_MAX":26678}},{"type":"Point","coordinates":[3803,4824],"properties":{"NAME":"Floriano","POP_MAX":48587}},{"type":"Point","coordinates":[3838,4969],"properties":{"NAME":"Piripiri","POP_MAX":44864}},{"type":"Point","coordinates":[3983,4622],"properties":{"NAME":"Penedo","POP_MAX":42097}},{"type":"Point","coordinates":[3908,4360],"properties":{"NAME":"Itabuna","POP_MAX":221938}},{"type":"Point","coordinates":[3901,4229],"properties":{"NAME":"Itamaraju","POP_MAX":47628}},{"type":"Point","coordinates":[3810,4392],"properties":{"NAME":"Guanambi","POP_MAX":58877}},{"type":"Point","coordinates":[3913,4264],"properties":{"NAME":"Porto Seguro","POP_MAX":123173}},{"type":"Point","coordinates":[3913,4442],"properties":{"NAME":"Valenca","POP_MAX":63231}},{"type":"Point","coordinates":[3915,4542],"properties":{"NAME":"Serrinha","POP_MAX":56829}},{"type":"Point","coordinates":[3921,4581],"properties":{"NAME":"Tucano","POP_MAX":31203}},{"type":"Point","coordinates":[3882,4611],"properties":{"NAME":"Senhor do Bonfim","POP_MAX":48471}},{"type":"Point","coordinates":[3829,4660],"properties":{"NAME":"Remanso","POP_MAX":37945}},{"type":"Point","coordinates":[3870,4333],"properties":{"NAME":"Itambe","POP_MAX":23558}},{"type":"Point","coordinates":[3792,4449],"properties":{"NAME":"Bom Jesus da Lapa","POP_MAX":40691}},{"type":"Point","coordinates":[3879,4491],"properties":{"NAME":"Itaberaba","POP_MAX":47301}},{"type":"Point","coordinates":[3892,4131],"properties":{"NAME":"Sao Mateus","POP_MAX":77117}},{"type":"Point","coordinates":[3963,4810],"properties":{"NAME":"Patos","POP_MAX":92575}},{"type":"Point","coordinates":[3774,3911],"properties":{"NAME":"Volta Redonda","POP_MAX":456362}},{"type":"Point","coordinates":[3799,3912],"properties":{"NAME":"Petropolis","POP_MAX":286071}},{"type":"Point","coordinates":[4015,4842],"properties":{"NAME":"Nova Cruz","POP_MAX":23166}},{"type":"Point","coordinates":[3968,4842],"properties":{"NAME":"Caico","POP_MAX":54934}},{"type":"Point","coordinates":[3974,4893],"properties":{"NAME":"Acu","POP_MAX":36125}},{"type":"Point","coordinates":[3959,4564],"properties":{"NAME":"Estancia","POP_MAX":55654}},{"type":"Point","coordinates":[2309,8087],"properties":{"NAME":"Steinbach","POP_MAX":9729}},{"type":"Point","coordinates":[2248,8452],"properties":{"NAME":"Nelson House","POP_MAX":2500}},{"type":"Point","coordinates":[2437,8455],"properties":{"NAME":"Shamattawa","POP_MAX":870}},{"type":"Point","coordinates":[2348,8402],"properties":{"NAME":"Oxford House","POP_MAX":184}},{"type":"Point","coordinates":[2148,8186],"properties":{"NAME":"Yorkton","POP_MAX":15172}},{"type":"Point","coordinates":[2000,8132],"properties":{"NAME":"Swift Current","POP_MAX":14906}},{"type":"Point","coordinates":[1994,8234],"properties":{"NAME":"Biggar","POP_MAX":2192}},{"type":"Point","coordinates":[1962,8200],"properties":{"NAME":"Kindersley","POP_MAX":4383}},{"type":"Point","coordinates":[1981,8355],"properties":{"NAME":"Meadow Lake","POP_MAX":5882}},{"type":"Point","coordinates":[2150,8281],"properties":{"NAME":"Hudson Bay","POP_MAX":2157}},{"type":"Point","coordinates":[1859,8098],"properties":{"NAME":"Lethbridge","POP_MAX":70617}},{"type":"Point","coordinates":[1885,8148],"properties":{"NAME":"Brooks","POP_MAX":14163}},{"type":"Point","coordinates":[1766,8199],"properties":{"NAME":"Lake Louise","POP_MAX":1248}},{"type":"Point","coordinates":[1847,8389],"properties":{"NAME":"Athabasca","POP_MAX":2539}},{"type":"Point","coordinates":[1906,8621],"properties":{"NAME":"Fort Chipewyan","POP_MAX":3222}},{"type":"Point","coordinates":[1433,8240],"properties":{"NAME":"Bella Bella","POP_MAX":1400}},{"type":"Point","coordinates":[1330,8303],"properties":{"NAME":"Sandspit","POP_MAX":538}},{"type":"Point","coordinates":[1513,8116],"properties":{"NAME":"Campbell River","POP_MAX":33430}},{"type":"Point","coordinates":[1450,8157],"properties":{"NAME":"Port Hardy","POP_MAX":2295}},{"type":"Point","coordinates":[1550,8066],"properties":{"NAME":"Nanaimo","POP_MAX":84905}},{"type":"Point","coordinates":[1590,8288],"properties":{"NAME":"Quesnel","POP_MAX":13788}},{"type":"Point","coordinates":[1595,8060],"properties":{"NAME":"Abbotsford","POP_MAX":151683}},{"type":"Point","coordinates":[1653,8450],"properties":{"NAME":"Dawson Creek","POP_MAX":10802}},{"type":"Point","coordinates":[1671,8086],"properties":{"NAME":"Penticton","POP_MAX":37721}},{"type":"Point","coordinates":[1735,8085],"properties":{"NAME":"Nelson","POP_MAX":11779}},{"type":"Point","coordinates":[1605,8155],"properties":{"NAME":"Lillooet","POP_MAX":2893}},{"type":"Point","coordinates":[1533,8109],"properties":{"NAME":"Powell River","POP_MAX":12779}},{"type":"Point","coordinates":[1710,8173],"properties":{"NAME":"Revelstoke","POP_MAX":7668}},{"type":"Point","coordinates":[1499,8360],"properties":{"NAME":"Burns Lake","POP_MAX":2635}},{"type":"Point","coordinates":[1380,8605],"properties":{"NAME":"Dease Lake","POP_MAX":303}},{"type":"Point","coordinates":[2685,8936],"properties":{"NAME":"Coral Harbour","POP_MAX":834}},{"type":"Point","coordinates":[2327,8945],"properties":{"NAME":"Baker Lake","POP_MAX":1584}},{"type":"Point","coordinates":[1469,9001],"properties":{"NAME":"Norman Wells","POP_MAX":1027}},{"type":"Point","coordinates":[1244,9129],"properties":{"NAME":"Fort McPherson","POP_MAX":1069}},{"type":"Point","coordinates":[1130,8773],"properties":{"NAME":"Burwash Landing","POP_MAX":73}},{"type":"Point","coordinates":[3299,5322],"properties":{"NAME":"Caracarai","POP_MAX":11368}},{"type":"Point","coordinates":[3576,5215],"properties":{"NAME":"Porto Santana","POP_MAX":83927}},{"type":"Point","coordinates":[2771,7763],"properties":{"NAME":"Orangeville","POP_MAX":32640}},{"type":"Point","coordinates":[2720,7882],"properties":{"NAME":"Little Current","POP_MAX":1595}},{"type":"Point","coordinates":[2679,7990],"properties":{"NAME":"Chapleau","POP_MAX":2663}},{"type":"Point","coordinates":[2640,7999],"properties":{"NAME":"Wawa","POP_MAX":2174}},{"type":"Point","coordinates":[2671,8098],"properties":{"NAME":"Hearst","POP_MAX":5043}},{"type":"Point","coordinates":[2596,8043],"properties":{"NAME":"Marathon","POP_MAX":4627}},{"type":"Point","coordinates":[2442,8131],"properties":{"NAME":"Sioux Lookout","POP_MAX":4570}},{"type":"Point","coordinates":[2388,8175],"properties":{"NAME":"Red Lake","POP_MAX":1765}},{"type":"Point","coordinates":[2382,8267],"properties":{"NAME":"Deer Lake","POP_MAX":3743}},{"type":"Point","coordinates":[2445,8215],"properties":{"NAME":"Cat Lake","POP_MAX":277}},{"type":"Point","coordinates":[2920,7827],"properties":{"NAME":"Cornwall","POP_MAX":48821}},{"type":"Point","coordinates":[2871,7781],"properties":{"NAME":"Kingston","POP_MAX":114195}},{"type":"Point","coordinates":[2782,7790],"properties":{"NAME":"Barrie","POP_MAX":182041}},{"type":"Point","coordinates":[2773,7845],"properties":{"NAME":"Parry Sound","POP_MAX":7105}},{"type":"Point","coordinates":[2742,7810],"properties":{"NAME":"Wiarton","POP_MAX":2182}},{"type":"Point","coordinates":[2782,7964],"properties":{"NAME":"Cobalt","POP_MAX":1372}},{"type":"Point","coordinates":[2745,8061],"properties":{"NAME":"Cochrane","POP_MAX":4441}},{"type":"Point","coordinates":[2544,8058],"properties":{"NAME":"Nipigon","POP_MAX":1204}},{"type":"Point","coordinates":[2450,8043],"properties":{"NAME":"Atikokan","POP_MAX":3625}},{"type":"Point","coordinates":[3093,8025],"properties":{"NAME":"Rimouski","POP_MAX":35584}},{"type":"Point","coordinates":[3033,7890],"properties":{"NAME":"Saint-Georges","POP_MAX":26149}},{"type":"Point","coordinates":[2997,7886],"properties":{"NAME":"Victoriaville","POP_MAX":41500}},{"type":"Point","coordinates":[3341,8143],"properties":{"NAME":"Chevery","POP_MAX":284}},{"type":"Point","coordinates":[2944,8140],"properties":{"NAME":"Mistassini","POP_MAX":2645}},{"type":"Point","coordinates":[3052,8697],"properties":{"NAME":"Kangirsuk","POP_MAX":549}},{"type":"Point","coordinates":[2976,7915],"properties":{"NAME":"Shawinigan","POP_MAX":49161}},{"type":"Point","coordinates":[2839,8101],"properties":{"NAME":"Matagami","POP_MAX":1966}},{"type":"Point","coordinates":[2899,7915],"properties":{"NAME":"Mont-Laurier","POP_MAX":11642}},{"type":"Point","coordinates":[2854,7875],"properties":{"NAME":"Pembroke","POP_MAX":15551}},{"type":"Point","coordinates":[2840,8335],"properties":{"NAME":"Radisson","POP_MAX":270}},{"type":"Point","coordinates":[3161,7841],"properties":{"NAME":"Saint John","POP_MAX":87857}},{"type":"Point","coordinates":[3098,7963],"properties":{"NAME":"Edmundston","POP_MAX":17894}},{"type":"Point","coordinates":[3182,7754],"properties":{"NAME":"Shelburne","POP_MAX":3167}},{"type":"Point","coordinates":[3275,7862],"properties":{"NAME":"Antigonish","POP_MAX":6739}},{"type":"Point","coordinates":[3216,7824],"properties":{"NAME":"Windsor","POP_MAX":3864}},{"type":"Point","coordinates":[3170,7804],"properties":{"NAME":"Digby","POP_MAX":3949}},{"type":"Point","coordinates":[3371,8031],"properties":{"NAME":"Stephenville","POP_MAX":7054}},{"type":"Point","coordinates":[3498,7959],"properties":{"NAME":"Argentia","POP_MAX":1063}},{"type":"Point","coordinates":[3453,8196],"properties":{"NAME":"St. Anthony","POP_MAX":224}},{"type":"Point","coordinates":[3354,7974],"properties":{"NAME":"Channel-Port aux Basques","POP_MAX":4220}},{"type":"Point","coordinates":[3418,8047],"properties":{"NAME":"Buchans","POP_MAX":685}},{"type":"Point","coordinates":[3383,8085],"properties":{"NAME":"Trout River","POP_MAX":452}},{"type":"Point","coordinates":[3220,8320],"properties":{"NAME":"Churchill Falls","POP_MAX":100}},{"type":"Point","coordinates":[3416,8199],"properties":{"NAME":"Forteau","POP_MAX":448}},{"type":"Point","coordinates":[5285,5517],"properties":{"NAME":"Bafang","POP_MAX":93145}},{"type":"Point","coordinates":[5305,5549],"properties":{"NAME":"Foumban","POP_MAX":92673}},{"type":"Point","coordinates":[5292,5535],"properties":{"NAME":"Bafoussam","POP_MAX":290768}},{"type":"Point","coordinates":[5265,5486],"properties":{"NAME":"Kumba","POP_MAX":144413}},{"type":"Point","coordinates":[5252,5550],"properties":{"NAME":"Eyumojok","POP_MAX":5798}},{"type":"Point","coordinates":[5258,5451],"properties":{"NAME":"Limbe","POP_MAX":212474}},{"type":"Point","coordinates":[5449,5422],"properties":{"NAME":"Nola","POP_MAX":26809}},{"type":"Point","coordinates":[5278,5387],"properties":{"NAME":"Kribi","POP_MAX":55224}},{"type":"Point","coordinates":[5533,5549],"properties":{"NAME":"Sibut","POP_MAX":34267}},{"type":"Point","coordinates":[5488,5593],"properties":{"NAME":"Bossangoa","POP_MAX":63064}},{"type":"Point","coordinates":[5636,5813],"properties":{"NAME":"Birao","POP_MAX":10178}},{"type":"Point","coordinates":[5568,7761],"properties":{"NAME":"Pec","POP_MAX":170000}},{"type":"Point","coordinates":[5612,7729],"properties":{"NAME":"Nis","POP_MAX":250000}},{"type":"Point","coordinates":[5626,5685],"properties":{"NAME":"Ouadda","POP_MAX":5434}},{"type":"Point","coordinates":[5637,5491],"properties":{"NAME":"Bangassou","POP_MAX":32841}},{"type":"Point","coordinates":[5555,7840],"properties":{"NAME":"Novi Sad","POP_MAX":225457}},{"type":"Point","coordinates":[5605,3959],"properties":{"NAME":"Ghanzi","POP_MAX":6306}},{"type":"Point","coordinates":[2980,2407],"properties":{"NAME":"Villa O'Higgins","POP_MAX":250}},{"type":"Point","coordinates":[3076,3465],"properties":{"NAME":"Rodeo","POP_MAX":701}},{"type":"Point","coordinates":[3129,2700],"properties":{"NAME":"Las Plumas","POP_MAX":605}},{"type":"Point","coordinates":[3073,2766],"properties":{"NAME":"Gastre","POP_MAX":557}},{"type":"Point","coordinates":[3137,2759],"properties":{"NAME":"Telsen","POP_MAX":500}},{"type":"Point","coordinates":[3064,3161],"properties":{"NAME":"Malargue","POP_MAX":11847}},{"type":"Point","coordinates":[3079,3271],"properties":{"NAME":"Tunuyan","POP_MAX":22834}},{"type":"Point","coordinates":[3120,3277],"properties":{"NAME":"La Paz","POP_MAX":4400}},{"type":"Point","coordinates":[3045,3050],"properties":{"NAME":"Chos Malal","POP_MAX":8556}},{"type":"Point","coordinates":[3042,2984],"properties":{"NAME":"Las Lajas","POP_MAX":1218}},{"type":"Point","coordinates":[3186,4162],"properties":{"NAME":"Aiquile","POP_MAX":8224}},{"type":"Point","coordinates":[3211,4098],"properties":{"NAME":"Padilla","POP_MAX":2920}},{"type":"Point","coordinates":[3185,4020],"properties":{"NAME":"Camargo","POP_MAX":4715}},{"type":"Point","coordinates":[3125,4387],"properties":{"NAME":"Reyes","POP_MAX":7376}},{"type":"Point","coordinates":[3140,4358],"properties":{"NAME":"San Borja","POP_MAX":19640}},{"type":"Point","coordinates":[3218,4448],"properties":{"NAME":"Magdalena","POP_MAX":3445}},{"type":"Point","coordinates":[3199,4446],"properties":{"NAME":"San Ramon","POP_MAX":6490}},{"type":"Point","coordinates":[3583,4184],"properties":{"NAME":"Rio Verde","POP_MAX":48318}},{"type":"Point","coordinates":[3657,4214],"properties":{"NAME":"Pires do Rio","POP_MAX":24822}},{"type":"Point","coordinates":[3638,4271],"properties":{"NAME":"Anapolis","POP_MAX":319587}},{"type":"Point","coordinates":[3633,4329],"properties":{"NAME":"Goianesia","POP_MAX":47883}},{"type":"Point","coordinates":[3652,4378],"properties":{"NAME":"Niquelandia","POP_MAX":27541}},{"type":"Point","coordinates":[3631,4150],"properties":{"NAME":"Itumbiara","POP_MAX":79582}},{"type":"Point","coordinates":[3560,4180],"properties":{"NAME":"Jatai","POP_MAX":76547}},{"type":"Point","coordinates":[3538,4198],"properties":{"NAME":"Mineiros","POP_MAX":38951}},{"type":"Point","coordinates":[3683,4316],"properties":{"NAME":"Formosa","POP_MAX":81232}},{"type":"Point","coordinates":[3357,3241],"properties":{"NAME":"Zarate","POP_MAX":88781}},{"type":"Point","coordinates":[3254,3061],"properties":{"NAME":"Carhue","POP_MAX":7190}},{"type":"Point","coordinates":[3242,3031],"properties":{"NAME":"Darregueira","POP_MAX":3412}},{"type":"Point","coordinates":[3336,3033],"properties":{"NAME":"Juarez","POP_MAX":10609}},{"type":"Point","coordinates":[3423,3088],"properties":{"NAME":"Mar de Ajo","POP_MAX":13610}},{"type":"Point","coordinates":[3356,3177],"properties":{"NAME":"Lobos","POP_MAX":18278}},{"type":"Point","coordinates":[3386,3155],"properties":{"NAME":"Chascomus","POP_MAX":21054}},{"type":"Point","coordinates":[3304,3212],"properties":{"NAME":"Junin","POP_MAX":85007}},{"type":"Point","coordinates":[3387,3193],"properties":{"NAME":"La Plata","POP_MAX":694253}},{"type":"Point","coordinates":[3315,3252],"properties":{"NAME":"Pergamino","POP_MAX":87652}},{"type":"Point","coordinates":[3355,3212],"properties":{"NAME":"Lujan","POP_MAX":81749}},{"type":"Point","coordinates":[3334,3085],"properties":{"NAME":"Azul","POP_MAX":53941}},{"type":"Point","coordinates":[3259,2905],"properties":{"NAME":"Villalonga","POP_MAX":2838}},{"type":"Point","coordinates":[3179,3117],"properties":{"NAME":"Victorica","POP_MAX":4458}},{"type":"Point","coordinates":[3226,3150],"properties":{"NAME":"General Pico","POP_MAX":57029}},{"type":"Point","coordinates":[3193,2856],"properties":{"NAME":"San Antonio Oeste","POP_MAX":8492}},{"type":"Point","coordinates":[3113,2864],"properties":{"NAME":"Sierra Colorado","POP_MAX":1522}},{"type":"Point","coordinates":[3178,3264],"properties":{"NAME":"Mercedes","POP_MAX":49345}},{"type":"Point","coordinates":[3216,3351],"properties":{"NAME":"Rio Tercero","POP_MAX":53389}},{"type":"Point","coordinates":[3135,3614],"properties":{"NAME":"Belen","POP_MAX":11359}},{"type":"Point","coordinates":[3159,3916],"properties":{"NAME":"Rinconada","POP_MAX":6692}},{"type":"Point","coordinates":[3195,3813],"properties":{"NAME":"San Pedro","POP_MAX":58430}},{"type":"Point","coordinates":[3197,3836],"properties":{"NAME":"Libertador General San Martin","POP_MAX":49267}},{"type":"Point","coordinates":[3122,3526],"properties":{"NAME":"Chilecito","POP_MAX":20343}},{"type":"Point","coordinates":[3155,3457],"properties":{"NAME":"Chamical","POP_MAX":8989}},{"type":"Point","coordinates":[3258,3849],"properties":{"NAME":"Los Blancos","POP_MAX":1145}},{"type":"Point","coordinates":[3164,3705],"properties":{"NAME":"Cafayate","POP_MAX":11785}},{"type":"Point","coordinates":[3178,3773],"properties":{"NAME":"Cerrillos","POP_MAX":11498}},{"type":"Point","coordinates":[3154,3815],"properties":{"NAME":"San Antonio de los Cobres","POP_MAX":4000}},{"type":"Point","coordinates":[3252,3567],"properties":{"NAME":"Anatuya","POP_MAX":14133}},{"type":"Point","coordinates":[3187,3556],"properties":{"NAME":"Frias","POP_MAX":13594}},{"type":"Point","coordinates":[3251,3721],"properties":{"NAME":"Monte Quemado","POP_MAX":11387}},{"type":"Point","coordinates":[3313,3713],"properties":{"NAME":"Juan Jose Castelli","POP_MAX":9421}},{"type":"Point","coordinates":[3297,3639],"properties":{"NAME":"Charata","POP_MAX":18297}},{"type":"Point","coordinates":[3314,3785],"properties":{"NAME":"Las Lomitas","POP_MAX":7683}},{"type":"Point","coordinates":[3384,3525],"properties":{"NAME":"Mercedes","POP_MAX":30649}},{"type":"Point","coordinates":[3385,3397],"properties":{"NAME":"Concordia","POP_MAX":145210}},{"type":"Point","coordinates":[3287,3424],"properties":{"NAME":"Sunchales","POP_MAX":12655}},{"type":"Point","coordinates":[3314,3432],"properties":{"NAME":"San Justo","POP_MAX":9607}},{"type":"Point","coordinates":[3325,3509],"properties":{"NAME":"Vera","POP_MAX":9979}},{"type":"Point","coordinates":[3340,3528],"properties":{"NAME":"Reconquista","POP_MAX":90184}},{"type":"Point","coordinates":[3276,3260],"properties":{"NAME":"Venado Tuerto","POP_MAX":72340}},{"type":"Point","coordinates":[3626,4011],"properties":{"NAME":"Sao Jose do Rio Preto","POP_MAX":374699}},{"type":"Point","coordinates":[3682,3910],"properties":{"NAME":"Limeira","POP_MAX":289665}},{"type":"Point","coordinates":[3733,3882],"properties":{"NAME":"Taubate","POP_MAX":403560}},{"type":"Point","coordinates":[3649,3925],"properties":{"NAME":"Jau","POP_MAX":119206}},{"type":"Point","coordinates":[3597,3903],"properties":{"NAME":"Assis","POP_MAX":87471}},{"type":"Point","coordinates":[3640,3827],"properties":{"NAME":"Itapeva","POP_MAX":62957}},{"type":"Point","coordinates":[3652,3891],"properties":{"NAME":"Botucatu","POP_MAX":113862}},{"type":"Point","coordinates":[3631,3973],"properties":{"NAME":"Novo Horizonte","POP_MAX":30158}},{"type":"Point","coordinates":[3571,4005],"properties":{"NAME":"Andradina","POP_MAX":52406}},{"type":"Point","coordinates":[3602,4042],"properties":{"NAME":"Fernandopolis","POP_MAX":61931}},{"type":"Point","coordinates":[4021,4705],"properties":{"NAME":"Barreiros","POP_MAX":35565}},{"type":"Point","coordinates":[3912,4750],"properties":{"NAME":"Salgueiro","POP_MAX":42152}},{"type":"Point","coordinates":[4027,4779],"properties":{"NAME":"Goiana","POP_MAX":71549}},{"type":"Point","coordinates":[4018,4782],"properties":{"NAME":"Timbauba","POP_MAX":57534}},{"type":"Point","coordinates":[2545,6231],"properties":{"NAME":"Belize City","POP_MAX":63028}},{"type":"Point","coordinates":[2535,6266],"properties":{"NAME":"Orange Walk","POP_MAX":20835}},{"type":"Point","coordinates":[2528,6150],"properties":{"NAME":"Punta Gorda","POP_MAX":7748}},{"type":"Point","coordinates":[5494,5522],"properties":{"NAME":"Bossembele","POP_MAX":7287}},{"type":"Point","coordinates":[5279,5504],"properties":{"NAME":"Nkongsamba","POP_MAX":117063}},{"type":"Point","coordinates":[5284,5437],"properties":{"NAME":"Edea","POP_MAX":203149}},{"type":"Point","coordinates":[5282,5588],"properties":{"NAME":"Wum","POP_MAX":68836}},{"type":"Point","coordinates":[5299,5577],"properties":{"NAME":"Kumbo","POP_MAX":125486}},{"type":"Point","coordinates":[5315,5492],"properties":{"NAME":"Bafia","POP_MAX":69270}},{"type":"Point","coordinates":[5322,5421],"properties":{"NAME":"Mbalmayo","POP_MAX":80206}},{"type":"Point","coordinates":[5302,5428],"properties":{"NAME":"Eseka","POP_MAX":22221}},{"type":"Point","coordinates":[5383,5482],"properties":{"NAME":"Bertoua","POP_MAX":218111}},{"type":"Point","coordinates":[5369,5448],"properties":{"NAME":"Abong Mbang","POP_MAX":14661}},{"type":"Point","coordinates":[5402,5474],"properties":{"NAME":"Batouri","POP_MAX":43821}},{"type":"Point","coordinates":[5372,5503],"properties":{"NAME":"Belabo","POP_MAX":22553}},{"type":"Point","coordinates":[5400,5595],"properties":{"NAME":"Meiganga","POP_MAX":80100}},{"type":"Point","coordinates":[5380,5641],"properties":{"NAME":"Ngaoundere","POP_MAX":231357}},{"type":"Point","coordinates":[5354,5592],"properties":{"NAME":"Tibati","POP_MAX":35589}},{"type":"Point","coordinates":[5343,5679],"properties":{"NAME":"Kontcha","POP_MAX":8018}},{"type":"Point","coordinates":[5390,5793],"properties":{"NAME":"Guider","POP_MAX":84647}},{"type":"Point","coordinates":[5381,5672],"properties":{"NAME":"Mbe","POP_MAX":3950}},{"type":"Point","coordinates":[5544,7612],"properties":{"NAME":"Durres","POP_MAX":142432}},{"type":"Point","coordinates":[5546,7656],"properties":{"NAME":"Shkoder","POP_MAX":155767}},{"type":"Point","coordinates":[5092,8186],"properties":{"NAME":"Brugge","POP_MAX":146469}},{"type":"Point","coordinates":[5138,8143],"properties":{"NAME":"Namur","POP_MAX":106284}},{"type":"Point","coordinates":[5126,8140],"properties":{"NAME":"Charleroi","POP_MAX":345367}},{"type":"Point","coordinates":[6365,7532],"properties":{"NAME":"Ali Bayramli","POP_MAX":70684}},{"type":"Point","coordinates":[6332,7574],"properties":{"NAME":"Goycay","POP_MAX":35348}},{"type":"Point","coordinates":[6363,7463],"properties":{"NAME":"Lankaran","POP_MAX":60180}},{"type":"Point","coordinates":[6316,7605],"properties":{"NAME":"Saki","POP_MAX":64968}},{"type":"Point","coordinates":[6304,7525],"properties":{"NAME":"Stepanakert","POP_MAX":57473}},{"type":"Point","coordinates":[6295,7489],"properties":{"NAME":"Kapan","POP_MAX":42288}},{"type":"Point","coordinates":[6865,7347],"properties":{"NAME":"Balkh","POP_MAX":179969}},{"type":"Point","coordinates":[6806,7300],"properties":{"NAME":"Meymaneh","POP_MAX":199795}},{"type":"Point","coordinates":[6815,7358],"properties":{"NAME":"Andkhvoy","POP_MAX":71730}},{"type":"Point","coordinates":[6865,7078],"properties":{"NAME":"Qalat","POP_MAX":12191}},{"type":"Point","coordinates":[6908,7163],"properties":{"NAME":"Ghazni","POP_MAX":141000}},{"type":"Point","coordinates":[6968,7369],"properties":{"NAME":"Feyzabad","POP_MAX":64704}},{"type":"Point","coordinates":[6920,7346],"properties":{"NAME":"Kondoz","POP_MAX":259809}},{"type":"Point","coordinates":[6964,7213],"properties":{"NAME":"Jalalabad","POP_MAX":597971}},{"type":"Point","coordinates":[6929,7247],"properties":{"NAME":"Charikar","POP_MAX":53676}},{"type":"Point","coordinates":[7870,6004],"properties":{"NAME":"Sisophon","POP_MAX":50302}},{"type":"Point","coordinates":[7870,5890],"properties":{"NAME":"Krong Koh Kong","POP_MAX":33134}},{"type":"Point","coordinates":[7896,5943],"properties":{"NAME":"Pursat","POP_MAX":52476}},{"type":"Point","coordinates":[7939,5913],"properties":{"NAME":"Kampong Cham","POP_MAX":83233}},{"type":"Point","coordinates":[7917,5927],"properties":{"NAME":"Kompong Chhnang","POP_MAX":75244}},{"type":"Point","coordinates":[7904,5832],"properties":{"NAME":"Kampot","POP_MAX":50105}},{"type":"Point","coordinates":[7921,5854],"properties":{"NAME":"Takeo","POP_MAX":15264}},{"type":"Point","coordinates":[7519,6652],"properties":{"NAME":"Mymensingh","POP_MAX":330126}},{"type":"Point","coordinates":[7507,6660],"properties":{"NAME":"Jamalpur","POP_MAX":167900}},{"type":"Point","coordinates":[7523,6586],"properties":{"NAME":"Narayanganj","POP_MAX":223622}},{"type":"Point","coordinates":[5580,4729],"properties":{"NAME":"Lucapa","POP_MAX":31041}},{"type":"Point","coordinates":[5515,4671],"properties":{"NAME":"Capenda-Camulemba","POP_MAX":80000}},{"type":"Point","coordinates":[5570,4657],"properties":{"NAME":"Saurimo","POP_MAX":41316}},{"type":"Point","coordinates":[5596,4602],"properties":{"NAME":"Muconda","POP_MAX":2324}},{"type":"Point","coordinates":[5538,4628],"properties":{"NAME":"Cacolo","POP_MAX":984}},{"type":"Point","coordinates":[5382,4720],"properties":{"NAME":"Caxito","POP_MAX":28224}},{"type":"Point","coordinates":[5430,4742],"properties":{"NAME":"Camabatela","POP_MAX":12837}},{"type":"Point","coordinates":[5417,4678],"properties":{"NAME":"Ndalatando","POP_MAX":8144}},{"type":"Point","coordinates":[5419,4595],"properties":{"NAME":"Quibala","POP_MAX":8915}},{"type":"Point","coordinates":[5417,4637],"properties":{"NAME":"Calulo","POP_MAX":795}},{"type":"Point","coordinates":[5423,4558],"properties":{"NAME":"Waku Kungo","POP_MAX":12069}},{"type":"Point","coordinates":[5416,4791],"properties":{"NAME":"Songo","POP_MAX":10579}},{"type":"Point","coordinates":[5399,4853],"properties":{"NAME":"Mbanza-Congo","POP_MAX":60182}},{"type":"Point","coordinates":[5360,4798],"properties":{"NAME":"Nzeto","POP_MAX":21059}},{"type":"Point","coordinates":[5346,4862],"properties":{"NAME":"Soyo","POP_MAX":67491}},{"type":"Point","coordinates":[5341,4895],"properties":{"NAME":"Cabinda","POP_MAX":91791}},{"type":"Point","coordinates":[5453,4561],"properties":{"NAME":"Calucinga","POP_MAX":531}},{"type":"Point","coordinates":[5488,4520],"properties":{"NAME":"Camacupa","POP_MAX":19828}},{"type":"Point","coordinates":[5399,4461],"properties":{"NAME":"Cubal","POP_MAX":4837}},{"type":"Point","coordinates":[5569,4302],"properties":{"NAME":"Mavinga","POP_MAX":30000}},{"type":"Point","coordinates":[5536,4338],"properties":{"NAME":"Cuito Caunavale","POP_MAX":149}},{"type":"Point","coordinates":[5643,4210],"properties":{"NAME":"Luiana","POP_MAX":150}},{"type":"Point","coordinates":[5440,4227],"properties":{"NAME":"Ondjiva","POP_MAX":10169}},{"type":"Point","coordinates":[5390,4213],"properties":{"NAME":"Chitado","POP_MAX":500}},{"type":"Point","coordinates":[5394,4304],"properties":{"NAME":"Chibemba","POP_MAX":1502}},{"type":"Point","coordinates":[5383,4336],"properties":{"NAME":"Chibia","POP_MAX":1411}},{"type":"Point","coordinates":[5407,4357],"properties":{"NAME":"Quipungo","POP_MAX":186}},{"type":"Point","coordinates":[5621,4596],"properties":{"NAME":"Luau","POP_MAX":18465}},{"type":"Point","coordinates":[5555,4423],"properties":{"NAME":"Cangamba","POP_MAX":1307}},{"type":"Point","coordinates":[5599,4400],"properties":{"NAME":"Lumbala Nguimbo","POP_MAX":25}},{"type":"Point","coordinates":[5640,4528],"properties":{"NAME":"Cazombo","POP_MAX":298}},{"type":"Point","coordinates":[3089,4492],"properties":{"NAME":"Puerto Heath","POP_MAX":10}},{"type":"Point","coordinates":[3067,4197],"properties":{"NAME":"Charana","POP_MAX":197}},{"type":"Point","coordinates":[3075,4318],"properties":{"NAME":"Puerto Acosta","POP_MAX":1123}},{"type":"Point","coordinates":[3096,4364],"properties":{"NAME":"Apolo","POP_MAX":4189}},{"type":"Point","coordinates":[3116,4278],"properties":{"NAME":"Coroico","POP_MAX":2361}},{"type":"Point","coordinates":[3095,4222],"properties":{"NAME":"Coro Coro","POP_MAX":1884}},{"type":"Point","coordinates":[3097,4114],"properties":{"NAME":"Sabaya","POP_MAX":573}},{"type":"Point","coordinates":[3142,4121],"properties":{"NAME":"Challapata","POP_MAX":9114}},{"type":"Point","coordinates":[3101,4066],"properties":{"NAME":"Llica","POP_MAX":553}},{"type":"Point","coordinates":[3170,4082],"properties":{"NAME":"Potosi","POP_MAX":179901}},{"type":"Point","coordinates":[3175,3937],"properties":{"NAME":"Villazon","POP_MAX":37215}},{"type":"Point","coordinates":[3171,3974],"properties":{"NAME":"Tupiza","POP_MAX":28766}},{"type":"Point","coordinates":[3240,4211],"properties":{"NAME":"Montero","POP_MAX":88616}},{"type":"Point","coordinates":[3279,4424],"properties":{"NAME":"Piso Firme","POP_MAX":72}},{"type":"Point","coordinates":[3337,4154],"properties":{"NAME":"Robore","POP_MAX":10036}},{"type":"Point","coordinates":[3393,4186],"properties":{"NAME":"Puerto Quijarro","POP_MAX":10392}},{"type":"Point","coordinates":[3304,4268],"properties":{"NAME":"San Ignacio","POP_MAX":25391}},{"type":"Point","coordinates":[3245,4307],"properties":{"NAME":"Ascension","POP_MAX":14429}},{"type":"Point","coordinates":[3261,4273],"properties":{"NAME":"San Javier","POP_MAX":4210}},{"type":"Point","coordinates":[3312,4244],"properties":{"NAME":"San Rafael","POP_MAX":1201}},{"type":"Point","coordinates":[3216,4145],"properties":{"NAME":"Vallegrande","POP_MAX":8422}},{"type":"Point","coordinates":[3390,4118],"properties":{"NAME":"Puerto Suarez","POP_MAX":22000}},{"type":"Point","coordinates":[3241,4069],"properties":{"NAME":"Charagua","POP_MAX":3025}},{"type":"Point","coordinates":[3233,3985],"properties":{"NAME":"Villamontes","POP_MAX":18761}},{"type":"Point","coordinates":[3209,3899],"properties":{"NAME":"Bermejo","POP_MAX":36544}},{"type":"Point","coordinates":[5009,6912],"properties":{"NAME":"Timimoun","POP_MAX":49237}},{"type":"Point","coordinates":[4984,7257],"properties":{"NAME":"Sidi bel Abbes","POP_MAX":208604}},{"type":"Point","coordinates":[4965,7239],"properties":{"NAME":"Tlimcen","POP_MAX":229777}},{"type":"Point","coordinates":[4967,7075],"properties":{"NAME":"Beni Ounif","POP_MAX":5628}},{"type":"Point","coordinates":[4926,7015],"properties":{"NAME":"Abadla","POP_MAX":14364}},{"type":"Point","coordinates":[4986,7116],"properties":{"NAME":"Sefra","POP_MAX":63420}},{"type":"Point","coordinates":[5194,7355],"properties":{"NAME":"Skikda","POP_MAX":225181}},{"type":"Point","coordinates":[5084,5862],"properties":{"NAME":"Kandi","POP_MAX":109701}},{"type":"Point","coordinates":[5060,5586],"properties":{"NAME":"Ouidah","POP_MAX":83503}},{"type":"Point","coordinates":[5057,5634],"properties":{"NAME":"Abomey","POP_MAX":82154}},{"type":"Point","coordinates":[5041,5815],"properties":{"NAME":"Natitingou","POP_MAX":80892}},{"type":"Point","coordinates":[5049,5779],"properties":{"NAME":"Djougou","POP_MAX":202810}},{"type":"Point","coordinates":[5266,6640],"properties":{"NAME":"Djanet","POP_MAX":666}},{"type":"Point","coordinates":[5268,6843],"properties":{"NAME":"I-n-Amenas","POP_MAX":216}},{"type":"Point","coordinates":[5146,6590],"properties":{"NAME":"In Amguel","POP_MAX":3030}},{"type":"Point","coordinates":[5030,7170],"properties":{"NAME":"El Bayadh","POP_MAX":67413}},{"type":"Point","coordinates":[5193,7151],"properties":{"NAME":"El Oued","POP_MAX":177497}},{"type":"Point","coordinates":[5171,7055],"properties":{"NAME":"Hassi Messaoud","POP_MAX":18124}},{"type":"Point","coordinates":[5039,7314],"properties":{"NAME":"Chlef","POP_MAX":449167}},{"type":"Point","coordinates":[5006,7269],"properties":{"NAME":"Mascara","POP_MAX":108230}},{"type":"Point","coordinates":[5004,7300],"properties":{"NAME":"Mostaganem","POP_MAX":188354}},{"type":"Point","coordinates":[5006,7237],"properties":{"NAME":"Saida","POP_MAX":142213}},{"type":"Point","coordinates":[5039,7268],"properties":{"NAME":"Tiarat","POP_MAX":184195}},{"type":"Point","coordinates":[5143,7348],"properties":{"NAME":"Bejaia","POP_MAX":384937}},{"type":"Point","coordinates":[5081,7328],"properties":{"NAME":"Blida","POP_MAX":511348}},{"type":"Point","coordinates":[5111,7326],"properties":{"NAME":"Bouira","POP_MAX":110144}},{"type":"Point","coordinates":[5079,7319],"properties":{"NAME":"Medea","POP_MAX":147707}},{"type":"Point","coordinates":[5223,7321],"properties":{"NAME":"Souk Ahras","POP_MAX":134947}},{"type":"Point","coordinates":[5228,7270],"properties":{"NAME":"Tebessa","POP_MAX":171742}},{"type":"Point","coordinates":[5498,7730],"properties":{"NAME":"Mostar","POP_MAX":163067}},{"type":"Point","coordinates":[5714,7648],"properties":{"NAME":"Khaskovo","POP_MAX":79699}},{"type":"Point","coordinates":[5716,7676],"properties":{"NAME":"Stara Zagora","POP_MAX":143431}},{"type":"Point","coordinates":[5687,7734],"properties":{"NAME":"Pleven","POP_MAX":118675}},{"type":"Point","coordinates":[5716,7715],"properties":{"NAME":"Turnovo","POP_MAX":53115}},{"type":"Point","coordinates":[5634,7668],"properties":{"NAME":"Kyustendil","POP_MAX":51067}},{"type":"Point","coordinates":[5777,7744],"properties":{"NAME":"Dobrich","POP_MAX":94831}},{"type":"Point","coordinates":[5779,7722],"properties":{"NAME":"Varna","POP_MAX":312770}},{"type":"Point","coordinates":[5725,7759],"properties":{"NAME":"Ruse","POP_MAX":184270}},{"type":"Point","coordinates":[5431,7946],"properties":{"NAME":"Graz","POP_MAX":263234}},{"type":"Point","coordinates":[5400,7919],"properties":{"NAME":"Klagenfurt","POP_MAX":90610}},{"type":"Point","coordinates":[5400,8018],"properties":{"NAME":"Linz","POP_MAX":349161}},{"type":"Point","coordinates":[5377,8032],"properties":{"NAME":"Passau","POP_MAX":50560}},{"type":"Point","coordinates":[5365,7988],"properties":{"NAME":"Salzburg","POP_MAX":206279}},{"type":"Point","coordinates":[5320,7958],"properties":{"NAME":"Innsbruck","POP_MAX":155214}},{"type":"Point","coordinates":[5729,8239],"properties":{"NAME":"Pinsk","POP_MAX":130777}},{"type":"Point","coordinates":[5817,8234],"properties":{"NAME":"Mazyr","POP_MAX":112137}},{"type":"Point","coordinates":[5847,8341],"properties":{"NAME":"Mahilyow","POP_MAX":369200}},{"type":"Point","coordinates":[5815,8297],"properties":{"NAME":"Babruysk","POP_MAX":220517}},{"type":"Point","coordinates":[5849,8377],"properties":{"NAME":"Orsha","POP_MAX":135206}},{"type":"Point","coordinates":[5706,8341],"properties":{"NAME":"Lida","POP_MAX":100216}},{"type":"Point","coordinates":[5666,8329],"properties":{"NAME":"Hrodna","POP_MAX":317365}},{"type":"Point","coordinates":[5796,8360],"properties":{"NAME":"Barysaw","POP_MAX":155389}},{"type":"Point","coordinates":[6267,7490],"properties":{"NAME":"Naxcivan","POP_MAX":94788}},{"type":"Point","coordinates":[7486,6560],"properties":{"NAME":"Jessore","POP_MAX":243987}},{"type":"Point","coordinates":[7519,6533],"properties":{"NAME":"Barisal","POP_MAX":202242}},{"type":"Point","coordinates":[7541,6577],"properties":{"NAME":"Comilla","POP_MAX":389411}},{"type":"Point","coordinates":[5610,3816],"properties":{"NAME":"Lokhwabe","POP_MAX":1473}},{"type":"Point","coordinates":[5611,3827],"properties":{"NAME":"Lehututu","POP_MAX":1942}},{"type":"Point","coordinates":[5626,3709],"properties":{"NAME":"Tshabong","POP_MAX":9679}},{"type":"Point","coordinates":[5627,4048],"properties":{"NAME":"Tsau","POP_MAX":1409}},{"type":"Point","coordinates":[5622,4077],"properties":{"NAME":"Nokaneng","POP_MAX":1763}},{"type":"Point","coordinates":[5609,4156],"properties":{"NAME":"Mohembo","POP_MAX":757}},{"type":"Point","coordinates":[5654,4058],"properties":{"NAME":"Maun","POP_MAX":49945}},{"type":"Point","coordinates":[5702,4184],"properties":{"NAME":"Kasane","POP_MAX":9250}},{"type":"Point","coordinates":[5731,4045],"properties":{"NAME":"Nata","POP_MAX":4794}},{"type":"Point","coordinates":[5695,3989],"properties":{"NAME":"Mopipi","POP_MAX":3301}},{"type":"Point","coordinates":[5758,3909],"properties":{"NAME":"Palapye","POP_MAX":30650}},{"type":"Point","coordinates":[5827,4988],"properties":{"NAME":"Bururi","POP_MAX":20393}},{"type":"Point","coordinates":[5846,5052],"properties":{"NAME":"Muyinga","POP_MAX":71076}},{"type":"Point","coordinates":[5717,3755],"properties":{"NAME":"Lobatse","POP_MAX":69804}},{"type":"Point","coordinates":[5708,3769],"properties":{"NAME":"Kanye","POP_MAX":46831}},{"type":"Point","coordinates":[8674,4416],"properties":{"NAME":"Pine Creek","POP_MAX":665}},{"type":"Point","coordinates":[8654,4449],"properties":{"NAME":"Adelaide River","POP_MAX":237}},{"type":"Point","coordinates":[8652,4490],"properties":{"NAME":"McMinns Lagoon","POP_MAX":5025}},{"type":"Point","coordinates":[8720,4199],"properties":{"NAME":"Newcastle Waters","POP_MAX":10}},{"type":"Point","coordinates":[8345,3270],"properties":{"NAME":"Ravensthorpe","POP_MAX":1101}},{"type":"Point","coordinates":[8271,3286],"properties":{"NAME":"Wagin","POP_MAX":1598}},{"type":"Point","coordinates":[8265,4012],"properties":{"NAME":"Roebourne","POP_MAX":19260}},{"type":"Point","coordinates":[8242,3963],"properties":{"NAME":"Pannawonica","POP_MAX":686}},{"type":"Point","coordinates":[8283,3901],"properties":{"NAME":"Tom Price","POP_MAX":2723}},{"type":"Point","coordinates":[8182,3613],"properties":{"NAME":"Kalbarri","POP_MAX":1537}},{"type":"Point","coordinates":[8284,3590],"properties":{"NAME":"Mount Magnet","POP_MAX":424}},{"type":"Point","coordinates":[8233,3523],"properties":{"NAME":"Morawa","POP_MAX":259}},{"type":"Point","coordinates":[8203,3519],"properties":{"NAME":"Port Denison","POP_MAX":1213}},{"type":"Point","coordinates":[8296,3392],"properties":{"NAME":"Merredin","POP_MAX":2668}},{"type":"Point","coordinates":[8279,3209],"properties":{"NAME":"Mount Barker","POP_MAX":1781}},{"type":"Point","coordinates":[8276,3263],"properties":{"NAME":"Katanning","POP_MAX":3934}},{"type":"Point","coordinates":[8265,3308],"properties":{"NAME":"Narrogin","POP_MAX":4238}},{"type":"Point","coordinates":[8230,3400],"properties":{"NAME":"Gingin","POP_MAX":1446}},{"type":"Point","coordinates":[8223,3284],"properties":{"NAME":"Bunbury","POP_MAX":26998}},{"type":"Point","coordinates":[8227,3348],"properties":{"NAME":"Kwinana","POP_MAX":20086}},{"type":"Point","coordinates":[8325,3407],"properties":{"NAME":"Southern Cross","POP_MAX":187}},{"type":"Point","coordinates":[8595,3722],"properties":{"NAME":"Kaltukatjara","POP_MAX":355}},{"type":"Point","coordinates":[9158,3167],"properties":{"NAME":"Queanbeyan","POP_MAX":32602}},{"type":"Point","coordinates":[9279,3583],"properties":{"NAME":"Tweed Heads","POP_MAX":33065}},{"type":"Point","coordinates":[9021,3310],"properties":{"NAME":"Ivanhoe","POP_MAX":265}},{"type":"Point","coordinates":[8996,3387],"properties":{"NAME":"Wilcannia","POP_MAX":442}},{"type":"Point","coordinates":[9177,3078],"properties":{"NAME":"Merimbula","POP_MAX":6367}},{"type":"Point","coordinates":[9034,3122],"properties":{"NAME":"Echuca","POP_MAX":19457}},{"type":"Point","coordinates":[9039,3157],"properties":{"NAME":"Deniliquin","POP_MAX":8024}},{"type":"Point","coordinates":[9197,3195],"properties":{"NAME":"Nowra","POP_MAX":94781}},{"type":"Point","coordinates":[9193,3168],"properties":{"NAME":"Ulladulla","POP_MAX":9250}},{"type":"Point","coordinates":[9186,3148],"properties":{"NAME":"Batemans Bay","POP_MAX":10557}},{"type":"Point","coordinates":[9156,3116],"properties":{"NAME":"Cooma","POP_MAX":6520}},{"type":"Point","coordinates":[9130,3170],"properties":{"NAME":"Tumut","POP_MAX":6526}},{"type":"Point","coordinates":[9080,3214],"properties":{"NAME":"Leeton","POP_MAX":7299}},{"type":"Point","coordinates":[9132,3228],"properties":{"NAME":"Young","POP_MAX":7501}},{"type":"Point","coordinates":[9143,3256],"properties":{"NAME":"Cowra","POP_MAX":6795}},{"type":"Point","coordinates":[9125,3281],"properties":{"NAME":"Forbes","POP_MAX":4838}},{"type":"Point","coordinates":[9172,3202],"properties":{"NAME":"Goulburn","POP_MAX":20940}},{"type":"Point","coordinates":[9203,3205],"properties":{"NAME":"Kiama","POP_MAX":10379}},{"type":"Point","coordinates":[9189,3263],"properties":{"NAME":"Katoomba","POP_MAX":22076}},{"type":"Point","coordinates":[9201,3269],"properties":{"NAME":"Richmond","POP_MAX":13880}},{"type":"Point","coordinates":[9184,3275],"properties":{"NAME":"Lithgow","POP_MAX":11128}},{"type":"Point","coordinates":[9129,3296],"properties":{"NAME":"Parkes","POP_MAX":11137}},{"type":"Point","coordinates":[9168,3280],"properties":{"NAME":"Bathurst","POP_MAX":6111}},{"type":"Point","coordinates":[9223,3320],"properties":{"NAME":"Maitland","POP_MAX":18625}},{"type":"Point","coordinates":[9212,3329],"properties":{"NAME":"Singleton","POP_MAX":13813}},{"type":"Point","coordinates":[9168,3328],"properties":{"NAME":"Mudgee","POP_MAX":5391}},{"type":"Point","coordinates":[9205,3346],"properties":{"NAME":"Muswellbrook","POP_MAX":11630}},{"type":"Point","coordinates":[9249,3368],"properties":{"NAME":"Taree","POP_MAX":44182}},{"type":"Point","coordinates":[9259,3415],"properties":{"NAME":"Kempsey","POP_MAX":11840}},{"type":"Point","coordinates":[9187,3421],"properties":{"NAME":"Gunnedah","POP_MAX":7148}},{"type":"Point","coordinates":[9267,3460],"properties":{"NAME":"Coffs Harbour","POP_MAX":62978}},{"type":"Point","coordinates":[9174,3459],"properties":{"NAME":"Narrabri","POP_MAX":7082}},{"type":"Point","coordinates":[9211,3491],"properties":{"NAME":"Inverell","POP_MAX":8561}},{"type":"Point","coordinates":[9273,3511],"properties":{"NAME":"Yamba","POP_MAX":1806}},{"type":"Point","coordinates":[9279,3544],"properties":{"NAME":"Ballina","POP_MAX":14242}},{"type":"Point","coordinates":[9106,3181],"properties":{"NAME":"Wagga Wagga","POP_MAX":55381}},{"type":"Point","coordinates":[9204,3357],"properties":{"NAME":"Scone","POP_MAX":4624}},{"type":"Point","coordinates":[9281,3556],"properties":{"NAME":"Byron Bay","POP_MAX":6764}},{"type":"Point","coordinates":[8918,3229],"properties":{"NAME":"Berri","POP_MAX":4716}},{"type":"Point","coordinates":[8869,3306],"properties":{"NAME":"Peterborough","POP_MAX":1689}},{"type":"Point","coordinates":[8836,3250],"properties":{"NAME":"Wallaroo","POP_MAX":2779}},{"type":"Point","coordinates":[8863,3256],"properties":{"NAME":"Clare","POP_MAX":3061}},{"type":"Point","coordinates":[8883,3147],"properties":{"NAME":"Meningie","POP_MAX":1501}},{"type":"Point","coordinates":[8897,3082],"properties":{"NAME":"Kingston South East","POP_MAX":206}},{"type":"Point","coordinates":[8923,3112],"properties":{"NAME":"Bordertown","POP_MAX":2583}},{"type":"Point","coordinates":[8924,3050],"properties":{"NAME":"Penola","POP_MAX":1514}},{"type":"Point","coordinates":[8771,3426],"properties":{"NAME":"Kingoonya","POP_MAX":50}},{"type":"Point","coordinates":[8802,3295],"properties":{"NAME":"Kimba","POP_MAX":636}},{"type":"Point","coordinates":[8740,3315],"properties":{"NAME":"Streaky Bay","POP_MAX":1060}},{"type":"Point","coordinates":[8816,3264],"properties":{"NAME":"Cowell","POP_MAX":537}},{"type":"Point","coordinates":[8792,3224],"properties":{"NAME":"Tumby Bay","POP_MAX":1791}},{"type":"Point","coordinates":[8823,3453],"properties":{"NAME":"Andamooka","POP_MAX":528}},{"type":"Point","coordinates":[8812,3411],"properties":{"NAME":"Woomera","POP_MAX":450}},{"type":"Point","coordinates":[8846,3293],"properties":{"NAME":"Port Pirie","POP_MAX":12506}},{"type":"Point","coordinates":[8866,3211],"properties":{"NAME":"Gawler","POP_MAX":16362}},{"type":"Point","coordinates":[8881,3180],"properties":{"NAME":"Murray Bridge","POP_MAX":18194}},{"type":"Point","coordinates":[8863,3155],"properties":{"NAME":"Victor Harbor","POP_MAX":7760}},{"type":"Point","coordinates":[8958,3030],"properties":{"NAME":"Hamilton","POP_MAX":8869}},{"type":"Point","coordinates":[8966,3184],"properties":{"NAME":"Ouyen","POP_MAX":1400}},{"type":"Point","coordinates":[9001,2994],"properties":{"NAME":"Colac","POP_MAX":9089}},{"type":"Point","coordinates":[8978,3068],"properties":{"NAME":"Stawell","POP_MAX":6991}},{"type":"Point","coordinates":[8963,3089],"properties":{"NAME":"Horsham","POP_MAX":12830}},{"type":"Point","coordinates":[8983,3056],"properties":{"NAME":"Ararat","POP_MAX":6110}},{"type":"Point","coordinates":[9005,3069],"properties":{"NAME":"Maryborough","POP_MAX":7046}},{"type":"Point","coordinates":[9113,3024],"properties":{"NAME":"Bairnsdale","POP_MAX":11005}},{"type":"Point","coordinates":[9098,3008],"properties":{"NAME":"Sale","POP_MAX":22486}},{"type":"Point","coordinates":[9083,3002],"properties":{"NAME":"Traralgon","POP_MAX":18226}},{"type":"Point","coordinates":[9057,2979],"properties":{"NAME":"Wonthaggi","POP_MAX":5985}},{"type":"Point","coordinates":[9049,3008],"properties":{"NAME":"Cranbourne","POP_MAX":460491}},{"type":"Point","coordinates":[9008,3040],"properties":{"NAME":"Ballarat","POP_MAX":85109}},{"type":"Point","coordinates":[9029,3032],"properties":{"NAME":"Melton","POP_MAX":32368}},{"type":"Point","coordinates":[9044,3070],"properties":{"NAME":"Seymour","POP_MAX":3693}},{"type":"Point","coordinates":[9052,3108],"properties":{"NAME":"Shepparton","POP_MAX":33550}},{"type":"Point","coordinates":[9059,3135],"properties":{"NAME":"Cobram","POP_MAX":4659}},{"type":"Point","coordinates":[9000,3168],"properties":{"NAME":"Swan Hill","POP_MAX":9276}},{"type":"Point","coordinates":[9033,3039],"properties":{"NAME":"Sunbury","POP_MAX":29925}},{"type":"Point","coordinates":[9141,4033],"properties":{"NAME":"Proserpine","POP_MAX":3976}},{"type":"Point","coordinates":[9182,3771],"properties":{"NAME":"Theodore","POP_MAX":246}},{"type":"Point","coordinates":[9212,3746],"properties":{"NAME":"Eidsvold","POP_MAX":459}},{"type":"Point","coordinates":[9049,3851],"properties":{"NAME":"Barcaldine","POP_MAX":1068}},{"type":"Point","coordinates":[8986,3918],"properties":{"NAME":"Winton","POP_MAX":1157}},{"type":"Point","coordinates":[9020,3857],"properties":{"NAME":"Longreach","POP_MAX":2894}},{"type":"Point","coordinates":[9262,3647],"properties":{"NAME":"Caboolture","POP_MAX":31513}},{"type":"Point","coordinates":[9236,3580],"properties":{"NAME":"Warwick","POP_MAX":12347}},{"type":"Point","coordinates":[9231,3678],"properties":{"NAME":"Kingaroy","POP_MAX":8573}},{"type":"Point","coordinates":[9215,3640],"properties":{"NAME":"Dalby","POP_MAX":9847}},{"type":"Point","coordinates":[9268,3647],"properties":{"NAME":"Bongaree","POP_MAX":13649}},{"type":"Point","coordinates":[9254,3699],"properties":{"NAME":"Gympie","POP_MAX":11649}},{"type":"Point","coordinates":[9073,4136],"properties":{"NAME":"Ingham","POP_MAX":6127}},{"type":"Point","coordinates":[8884,3715],"properties":{"NAME":"Birdsville","POP_MAX":283}},{"type":"Point","coordinates":[8887,3805],"properties":{"NAME":"Bedourie","POP_MAX":142}},{"type":"Point","coordinates":[8899,3889],"properties":{"NAME":"Boulia","POP_MAX":600}},{"type":"Point","coordinates":[8989,4016],"properties":{"NAME":"Richmond","POP_MAX":296}},{"type":"Point","coordinates":[8889,4190],"properties":{"NAME":"Burketown","POP_MAX":200}},{"type":"Point","coordinates":[9259,3751],"properties":{"NAME":"Hervey Bay","POP_MAX":25114}},{"type":"Point","coordinates":[9194,3803],"properties":{"NAME":"Biloela","POP_MAX":6309}},{"type":"Point","coordinates":[9201,3876],"properties":{"NAME":"Yeppoon","POP_MAX":10769}},{"type":"Point","coordinates":[9129,3854],"properties":{"NAME":"Emerald","POP_MAX":9398}},{"type":"Point","coordinates":[9125,3941],"properties":{"NAME":"Moranbah","POP_MAX":10000}},{"type":"Point","coordinates":[9076,4053],"properties":{"NAME":"Charters Towers","POP_MAX":9573}},{"type":"Point","coordinates":[9108,4082],"properties":{"NAME":"Ayr","POP_MAX":9078}},{"type":"Point","coordinates":[9054,4216],"properties":{"NAME":"Atherton","POP_MAX":6959}},{"type":"Point","coordinates":[9054,4261],"properties":{"NAME":"Port Douglas","POP_MAX":3000}},{"type":"Point","coordinates":[9044,2850],"properties":{"NAME":"Smithton","POP_MAX":4202}},{"type":"Point","coordinates":[9111,2831],"properties":{"NAME":"Scottsdale","POP_MAX":2468}},{"type":"Point","coordinates":[9132,2789],"properties":{"NAME":"Bicheno","POP_MAX":177}},{"type":"Point","coordinates":[9107,2765],"properties":{"NAME":"Oatlands","POP_MAX":1157}},{"type":"Point","coordinates":[9056,2777],"properties":{"NAME":"Queenstown","POP_MAX":2352}},{"type":"Point","coordinates":[9105,2725],"properties":{"NAME":"Kingston","POP_MAX":14371}},{"type":"Point","coordinates":[4936,5927],"properties":{"NAME":"Koudougou","POP_MAX":87347}},{"type":"Point","coordinates":[4934,6004],"properties":{"NAME":"Ouahigouya","POP_MAX":79504}},{"type":"Point","coordinates":[4972,5976],"properties":{"NAME":"Kaya","POP_MAX":40017}},{"type":"Point","coordinates":[4992,5900],"properties":{"NAME":"Tenkodogo","POP_MAX":38108}},{"type":"Point","coordinates":[4869,5833],"properties":{"NAME":"Banfora","POP_MAX":60288}},{"type":"Point","coordinates":[5522,7800],"properties":{"NAME":"Tuzla","POP_MAX":144334}},{"type":"Point","coordinates":[5467,7824],"properties":{"NAME":"Prijedor","POP_MAX":104858}},{"type":"Point","coordinates":[5480,7813],"properties":{"NAME":"Banja Luka","POP_MAX":221738}},{"type":"Point","coordinates":[7488,6608],"properties":{"NAME":"Pabna","POP_MAX":137888}},{"type":"Point","coordinates":[7463,6642],"properties":{"NAME":"Nawabganj","POP_MAX":142361}},{"type":"Point","coordinates":[7481,6713],"properties":{"NAME":"Saidpur","POP_MAX":232209}},{"type":"Point","coordinates":[7659,6461],"properties":{"NAME":"Myingyan","POP_MAX":163812}},{"type":"Point","coordinates":[7669,6248],"properties":{"NAME":"Letpadan","POP_MAX":176571}},{"type":"Point","coordinates":[7688,6315],"properties":{"NAME":"Taungoo","POP_MAX":106945}},{"type":"Point","coordinates":[7690,6188],"properties":{"NAME":"Thongwa","POP_MAX":52496}},{"type":"Point","coordinates":[7724,6160],"properties":{"NAME":"Mudon","POP_MAX":152300}},{"type":"Point","coordinates":[7728,6101],"properties":{"NAME":"Ye","POP_MAX":50798}},{"type":"Point","coordinates":[7722,6173],"properties":{"NAME":"Mawlamyine","POP_MAX":438861}},{"type":"Point","coordinates":[7608,6343],"properties":{"NAME":"Kyaukphyu","POP_MAX":4261}},{"type":"Point","coordinates":[7653,6180],"properties":{"NAME":"Wakema","POP_MAX":48405}},{"type":"Point","coordinates":[7640,6154],"properties":{"NAME":"Labutta","POP_MAX":1667}},{"type":"Point","coordinates":[7667,6161],"properties":{"NAME":"Phyarpon","POP_MAX":65601}},{"type":"Point","coordinates":[7666,6205],"properties":{"NAME":"Yandoon","POP_MAX":36172}},{"type":"Point","coordinates":[7661,6240],"properties":{"NAME":"Hinthada","POP_MAX":180728}},{"type":"Point","coordinates":[7641,6189],"properties":{"NAME":"Pathein","POP_MAX":237089}},{"type":"Point","coordinates":[7654,6340],"properties":{"NAME":"Allanmyo","POP_MAX":57897}},{"type":"Point","coordinates":[7645,6403],"properties":{"NAME":"Yaynangyoung","POP_MAX":110553}},{"type":"Point","coordinates":[7643,6429],"properties":{"NAME":"Chauk","POP_MAX":90870}},{"type":"Point","coordinates":[7650,6454],"properties":{"NAME":"Pakokku","POP_MAX":126938}},{"type":"Point","coordinates":[7715,6555],"properties":{"NAME":"Namtu","POP_MAX":48591}},{"type":"Point","coordinates":[7737,6034],"properties":{"NAME":"Dawei","POP_MAX":146212}},{"type":"Point","coordinates":[7667,6526],"properties":{"NAME":"Shwebo","POP_MAX":88914}},{"type":"Point","coordinates":[5833,5018],"properties":{"NAME":"Gitega","POP_MAX":23167}},{"type":"Point","coordinates":[6930,7165],"properties":{"NAME":"Gardiz","POP_MAX":103601}},{"type":"Point","coordinates":[5922,7227],"properties":{"NAME":"Lemosos","POP_MAX":154000}},{"type":"Point","coordinates":[7341,6855],"properties":{"NAME":"Pokhara","POP_MAX":200000}},{"type":"Point","coordinates":[8533,7391],"properties":{"NAME":"Puch'on","POP_MAX":866000}},{"type":"Point","coordinates":[8543,7387],"properties":{"NAME":"Songnam","POP_MAX":942000}},{"type":"Point","coordinates":[8535,7400],"properties":{"NAME":"Goyang","POP_MAX":903000}},{"type":"Point","coordinates":[9062,6099],"properties":{"NAME":"Capitol Hill","POP_MAX":2500}},{"type":"Point","coordinates":[3198,6246],"properties":{"NAME":"Christiansted","POP_MAX":32543}},{"type":"Point","coordinates":[3146,6260],"properties":{"NAME":"Ponce","POP_MAX":160334}},{"type":"Point","coordinates":[3132,6272],"properties":{"NAME":"Mayaguez","POP_MAX":291339}},{"type":"Point","coordinates":[3985,2070],"properties":{"NAME":"Grytviken","POP_MAX":99}},{"type":"Point","coordinates":[3328,2205],"properties":{"NAME":"Fox Bay","POP_MAX":120}},{"type":"Point","coordinates":[2736,6335],"properties":{"NAME":"George Town","POP_MAX":4268}},{"type":"Point","coordinates":[3020,6461],"properties":{"NAME":"Grand Turk","POP_MAX":5801}},{"type":"Point","coordinates":[4877,8356],"properties":{"NAME":"Douglas","POP_MAX":35854}},{"type":"Point","coordinates":[156,4136],"properties":{"NAME":"Neiafu","POP_MAX":7391}},{"type":"Point","coordinates":[4625,6896],"properties":{"NAME":"Arrecife","POP_MAX":52944}},{"type":"Point","coordinates":[6205,5793],"properties":{"NAME":"Boorama","POP_MAX":67664}},{"type":"Point","coordinates":[6270,5769],"properties":{"NAME":"Burco","POP_MAX":106593}},{"type":"Point","coordinates":[6314,5853],"properties":{"NAME":"Maydh","POP_MAX":30000}},{"type":"Point","coordinates":[5348,7764],"properties":{"NAME":"San Marino","POP_MAX":29579}},{"type":"Point","coordinates":[8747,5643],"properties":{"NAME":"Koror","POP_MAX":11200}},{"type":"Point","coordinates":[3079,5924],"properties":{"NAME":"Willemstad","POP_MAX":146813}},{"type":"Point","coordinates":[3051,5943],"properties":{"NAME":"Oranjestad","POP_MAX":68775}},{"type":"Point","coordinates":[6604,4039],"properties":{"NAME":"Curepipe","POP_MAX":299975}},{"type":"Point","coordinates":[5267,7949],"properties":{"NAME":"Vaduz","POP_MAX":36281}},{"type":"Point","coordinates":[5984,7085],"properties":{"NAME":"Nablus","POP_MAX":215981}},{"type":"Point","coordinates":[6263,4476],"properties":{"NAME":"Dzaoudzi","POP_MAX":32057}},{"type":"Point","coordinates":[3081,6285],"properties":{"NAME":"La Romana","POP_MAX":208437}},{"type":"Point","coordinates":[4306,6196],"properties":{"NAME":"Mindelo","POP_MAX":70611}},{"type":"Point","coordinates":[3515,7926],"properties":{"NAME":"Trepassey","POP_MAX":398}},{"type":"Point","coordinates":[3339,1594],"properties":{"NAME":"Capitan Arturo Prat Station","POP_MAX":41}},{"type":"Point","coordinates":[3424,1493],"properties":{"NAME":"Marambio Station","POP_MAX":150}},{"type":"Point","coordinates":[9576,891],"properties":{"NAME":"Zucchelli Station","POP_MAX":80}},{"type":"Point","coordinates":[3104,1300],"properties":{"NAME":"Rothera Station","POP_MAX":130}},{"type":"Point","coordinates":[3218,1463],"properties":{"NAME":"Palmer Station","POP_MAX":46}},{"type":"Point","coordinates":[3361,1612],"properties":{"NAME":"Base Presidente Montalva","POP_MAX":150}},{"type":"Point","coordinates":[3368,1610],"properties":{"NAME":"Carlini Station","POP_MAX":60}},{"type":"Point","coordinates":[3365,1610],"properties":{"NAME":"King Sejong Station","POP_MAX":90}},{"type":"Point","coordinates":[3359,1610],"properties":{"NAME":"Great Wall Station","POP_MAX":40}},{"type":"Point","coordinates":[3360,1611],"properties":{"NAME":"Escudero Base","POP_MAX":20}},{"type":"Point","coordinates":[3386,1623],"properties":{"NAME":"Elephant Island","POP_MAX":6}},{"type":"Point","coordinates":[9647,704],"properties":{"NAME":"Scott Base","POP_MAX":85}},{"type":"Point","coordinates":[9650,711],"properties":{"NAME":"McMurdo Station","POP_MAX":1000}},{"type":"Point","coordinates":[7128,1192],"properties":{"NAME":"Zhongshan Station","POP_MAX":60}},{"type":"Point","coordinates":[7977,668],"properties":{"NAME":"Vostok","POP_MAX":25}},{"type":"Point","coordinates":[2478,1231],"properties":{"NAME":"Peter I Island","POP_MAX":1}},{"type":"Point","coordinates":[7593,1357],"properties":{"NAME":"Mirny Station","POP_MAX":169}},{"type":"Point","coordinates":[6753,1297],"properties":{"NAME":"Mawson Station","POP_MAX":60}},{"type":"Point","coordinates":[7178,1230],"properties":{"NAME":"Davis Station","POP_MAX":70}},{"type":"Point","coordinates":[8460,888],"properties":{"NAME":"Concordia Research Station","POP_MAX":30}},{"type":"Point","coordinates":[8081,1374],"properties":{"NAME":"Casey Station","POP_MAX":200}},{"type":"Point","coordinates":[9932,0],"properties":{"NAME":"Amundsen�Scott South Pole Station","POP_MAX":200}},{"type":"Point","coordinates":[4628,982],"properties":{"NAME":"Wasa Station","POP_MAX":10}},{"type":"Point","coordinates":[5072,1042],"properties":{"NAME":"Troll Station","POP_MAX":44}},{"type":"Point","coordinates":[4689,893],"properties":{"NAME":"Svea Station","POP_MAX":10}},{"type":"Point","coordinates":[4672,1083],"properties":{"NAME":"Novolazarevskaya Station","POP_MAX":70}},{"type":"Point","coordinates":[4784,1107],"properties":{"NAME":"Neumayer Station III","POP_MAX":40}},{"type":"Point","coordinates":[5329,1114],"properties":{"NAME":"Maitri Station","POP_MAX":65}},{"type":"Point","coordinates":[4264,806],"properties":{"NAME":"Halley Station","POP_MAX":70}},{"type":"Point","coordinates":[4038,703],"properties":{"NAME":"Belgrano Station","POP_MAX":100}},{"type":"Point","coordinates":[3874,511],"properties":{"NAME":"Camp Sobral","POP_MAX":40}},{"type":"Point","coordinates":[4628,866],"properties":{"NAME":"Aboa Station","POP_MAX":18}},{"type":"Point","coordinates":[3133,1268],"properties":{"NAME":"San Mart�n Station","POP_MAX":20}},{"type":"Point","coordinates":[3389,1546],"properties":{"NAME":"Gen. O'Higgins Station","POP_MAX":44}},{"type":"Point","coordinates":[3413,1543],"properties":{"NAME":"Esperanza Station","POP_MAX":250}},{"type":"Point","coordinates":[3756,1696],"properties":{"NAME":"Orcadas Station","POP_MAX":45}},{"type":"Point","coordinates":[3732,1702],"properties":{"NAME":"Signy Research Station","POP_MAX":8}},{"type":"Point","coordinates":[3408,9540],"properties":{"NAME":"Kullorsuaq","POP_MAX":450}},{"type":"Point","coordinates":[3440,9470],"properties":{"NAME":"Tasiusaq","POP_MAX":250}},{"type":"Point","coordinates":[657,6356],"properties":{"NAME":"Kailua-Kona","POP_MAX":9870}},{"type":"Point","coordinates":[8900,1346],"properties":{"NAME":"Dumont d'Urville Station","POP_MAX":120}},{"type":"Point","coordinates":[6109,1215],"properties":{"NAME":"Showa Station","POP_MAX":60}},{"type":"Point","coordinates":[8359,6612],"properties":{"NAME":"Changhua","POP_MAX":750000}},{"type":"Point","coordinates":[8357,6578],"properties":{"NAME":"Chiayi","POP_MAX":500000}},{"type":"Point","coordinates":[8372,6656],"properties":{"NAME":"Hsinchu","POP_MAX":750000}},{"type":"Point","coordinates":[8367,6641],"properties":{"NAME":"Miaoli","POP_MAX":150000}},{"type":"Point","coordinates":[8358,6532],"properties":{"NAME":"Pingtung","POP_MAX":503530}},{"type":"Point","coordinates":[3422,3226],"properties":{"NAME":"San Jose de Mayo","POP_MAX":36529}},{"type":"Point","coordinates":[3488,3218],"properties":{"NAME":"Rocha","POP_MAX":26874}},{"type":"Point","coordinates":[1867,7884],"properties":{"NAME":"Butte","POP_MAX":34190}},{"type":"Point","coordinates":[2299,7995],"properties":{"NAME":"Grand Forks","POP_MAX":58566}},{"type":"Point","coordinates":[1870,7702],"properties":{"NAME":"Pocatello","POP_MAX":63998}},{"type":"Point","coordinates":[1589,7954],"properties":{"NAME":"Tacoma","POP_MAX":719868}},{"type":"Point","coordinates":[1809,7112],"properties":{"NAME":"Yuma","POP_MAX":92489}},{"type":"Point","coordinates":[1870,7222],"properties":{"NAME":"Prescott","POP_MAX":55038}},{"type":"Point","coordinates":[1711,7176],"properties":{"NAME":"Long Beach","POP_MAX":2036134}},{"type":"Point","coordinates":[1978,7483],"properties":{"NAME":"Grand Junction","POP_MAX":104214}},{"type":"Point","coordinates":[1802,7492],"properties":{"NAME":"Ely","POP_MAX":4216}},{"type":"Point","coordinates":[1666,7487],"properties":{"NAME":"Carson City","POP_MAX":57341}},{"type":"Point","coordinates":[2099,7096],"properties":{"NAME":"Carlsbad","POP_MAX":25302}},{"type":"Point","coordinates":[2050,7124],"properties":{"NAME":"Alamogordo","POP_MAX":36058}},{"type":"Point","coordinates":[1579,7671],"properties":{"NAME":"Medford","POP_MAX":108525}},{"type":"Point","coordinates":[1610,7665],"properties":{"NAME":"Klamath Falls","POP_MAX":42978}},{"type":"Point","coordinates":[1838,7368],"properties":{"NAME":"St. George","POP_MAX":98638}},{"type":"Point","coordinates":[1892,7550],"properties":{"NAME":"Provo","POP_MAX":356712}},{"type":"Point","coordinates":[2061,7612],"properties":{"NAME":"Laramie","POP_MAX":26934}},{"type":"Point","coordinates":[2430,7231],"properties":{"NAME":"Little Rock","POP_MAX":270893}},{"type":"Point","coordinates":[2291,7404],"properties":{"NAME":"Wichita","POP_MAX":401843}},{"type":"Point","coordinates":[2434,7453],"properties":{"NAME":"Jefferson City","POP_MAX":55139}},{"type":"Point","coordinates":[2126,7772],"properties":{"NAME":"Rapid City","POP_MAX":73632}},{"type":"Point","coordinates":[2439,6968],"properties":{"NAME":"Lafayette","POP_MAX":158214}},{"type":"Point","coordinates":[2361,6915],"properties":{"NAME":"Galveston","POP_MAX":68612}},{"type":"Point","coordinates":[2346,6896],"properties":{"NAME":"Freeport","POP_MAX":74892}},{"type":"Point","coordinates":[2300,6887],"properties":{"NAME":"Victoria","POP_MAX":64209}},{"type":"Point","coordinates":[2150,7063],"properties":{"NAME":"Odessa","POP_MAX":106054}},{"type":"Point","coordinates":[2258,7183],"properties":{"NAME":"Wichita Falls","POP_MAX":101212}},{"type":"Point","coordinates":[2296,7046],"properties":{"NAME":"Waco","POP_MAX":167347}},{"type":"Point","coordinates":[2164,7164],"properties":{"NAME":"Lubbock","POP_MAX":213300}},{"type":"Point","coordinates":[3123,5675],"properties":{"NAME":"San Fernando de Apure","POP_MAX":122701}},{"type":"Point","coordinates":[3072,5800],"properties":{"NAME":"Barquisimeto","POP_MAX":1116000}},{"type":"Point","coordinates":[2977,7638],"properties":{"NAME":"Hartford","POP_MAX":913000}},{"type":"Point","coordinates":[3013,7641],"properties":{"NAME":"Providence","POP_MAX":1277000}},{"type":"Point","coordinates":[2583,7161],"properties":{"NAME":"Birmingham","POP_MAX":1128047}},{"type":"Point","coordinates":[2549,6995],"properties":{"NAME":"Mobile","POP_MAX":253466}},{"type":"Point","coordinates":[2572,6980],"properties":{"NAME":"Pensacola","POP_MAX":234384}},{"type":"Point","coordinates":[2699,6827],"properties":{"NAME":"St. Petersburg","POP_MAX":800313}},{"type":"Point","coordinates":[2526,6979],"properties":{"NAME":"Biloxi","POP_MAX":50644}},{"type":"Point","coordinates":[2505,7525],"properties":{"NAME":"Springfield","POP_MAX":134715}},{"type":"Point","coordinates":[2638,7431],"properties":{"NAME":"Frankfort","POP_MAX":36688}},{"type":"Point","coordinates":[2779,7308],"properties":{"NAME":"Greensboro","POP_MAX":388887}},{"type":"Point","coordinates":[2656,7521],"properties":{"NAME":"Dayton","POP_MAX":773000}},{"type":"Point","coordinates":[2885,7353],"properties":{"NAME":"Virginia Beach","POP_MAX":1491000}},{"type":"Point","coordinates":[2512,7714],"properties":{"NAME":"Madison","POP_MAX":327447}},{"type":"Point","coordinates":[2551,7798],"properties":{"NAME":"Green Bay","POP_MAX":198611}},{"type":"Point","coordinates":[2920,7548],"properties":{"NAME":"Trenton","POP_MAX":366513}},{"type":"Point","coordinates":[3242,5782],"properties":{"NAME":"Maturin","POP_MAX":410972}},{"type":"Point","coordinates":[3214,5823],"properties":{"NAME":"Cumana","POP_MAX":317603}},{"type":"Point","coordinates":[2647,7694],"properties":{"NAME":"Lansing","POP_MAX":279952}},{"type":"Point","coordinates":[4828,7335],"properties":{"NAME":"Cadiz","POP_MAX":283157}},{"type":"Point","coordinates":[4902,7371],"properties":{"NAME":"Granada","POP_MAX":388290}},{"type":"Point","coordinates":[4852,7312],"properties":{"NAME":"Gibraltar","POP_MAX":187083}},{"type":"Point","coordinates":[218,8914],"properties":{"NAME":"Gambell","POP_MAX":681}},{"type":"Point","coordinates":[848,8788],"properties":{"NAME":"Palmer","POP_MAX":13111}},{"type":"Point","coordinates":[838,8702],"properties":{"NAME":"Seward","POP_MAX":2900}},{"type":"Point","coordinates":[5396,8566],"properties":{"NAME":"J�nk�ping","POP_MAX":89780}},{"type":"Point","coordinates":[5523,8887],"properties":{"NAME":"�rnsk�ldsvik","POP_MAX":27749}},{"type":"Point","coordinates":[5982,7991],"properties":{"NAME":"Zaporizhzhya","POP_MAX":788000}},{"type":"Point","coordinates":[6646,7754],"properties":{"NAME":"Muynoq","POP_MAX":13000}},{"type":"Point","coordinates":[6876,7375],"properties":{"NAME":"Termiz","POP_MAX":177687}},{"type":"Point","coordinates":[7001,7558],"properties":{"NAME":"Fargona","POP_MAX":750000}},{"type":"Point","coordinates":[6998,7594],"properties":{"NAME":"Namangan","POP_MAX":750000}},{"type":"Point","coordinates":[6995,7390],"properties":{"NAME":"Khorugh","POP_MAX":30000}},{"type":"Point","coordinates":[6941,7553],"properties":{"NAME":"Khujand","POP_MAX":437684}},{"type":"Point","coordinates":[7866,6169],"properties":{"NAME":"Khon Kaen","POP_MAX":251056}},{"type":"Point","coordinates":[7950,6469],"properties":{"NAME":"Thai Nguyen","POP_MAX":500000}},{"type":"Point","coordinates":[7949,6366],"properties":{"NAME":"Thanh Hoa","POP_MAX":197551}},{"type":"Point","coordinates":[7960,6401],"properties":{"NAME":"Nam Dinh","POP_MAX":243186}},{"type":"Point","coordinates":[7946,6301],"properties":{"NAME":"Vinh","POP_MAX":593645}},{"type":"Point","coordinates":[7971,6230],"properties":{"NAME":"Dong Hoi","POP_MAX":189265}},{"type":"Point","coordinates":[5871,3683],"properties":{"NAME":"Lobamba","POP_MAX":9782}},{"type":"Point","coordinates":[2584,6131],"properties":{"NAME":"La Ceiba","POP_MAX":145926}},{"type":"Point","coordinates":[2550,6115],"properties":{"NAME":"San Pedro Sula","POP_MAX":680091}},{"type":"Point","coordinates":[3379,5564],"properties":{"NAME":"Linden","POP_MAX":44690}},{"type":"Point","coordinates":[4578,8943],"properties":{"NAME":"Hofn","POP_MAX":1695}},{"type":"Point","coordinates":[4970,7419],"properties":{"NAME":"Murcia","POP_MAX":406807}},{"type":"Point","coordinates":[4854,7297],"properties":{"NAME":"Ceuta","POP_MAX":78674}},{"type":"Point","coordinates":[4767,7729],"properties":{"NAME":"La Coru�a","POP_MAX":370610}},{"type":"Point","coordinates":[4783,7671],"properties":{"NAME":"Ourense","POP_MAX":118107}},{"type":"Point","coordinates":[2990,6362],"properties":{"NAME":"Cap-Haitien","POP_MAX":281487}},{"type":"Point","coordinates":[4912,8460],"properties":{"NAME":"Edinburgh","POP_MAX":504966}},{"type":"Point","coordinates":[4957,8405],"properties":{"NAME":"Newcastle","POP_MAX":882000}},{"type":"Point","coordinates":[4921,8314],"properties":{"NAME":"Liverpool","POP_MAX":811000}},{"type":"Point","coordinates":[4912,8202],"properties":{"NAME":"Cardiff","POP_MAX":861400}},{"type":"Point","coordinates":[5849,7582],"properties":{"NAME":"Adapazari","POP_MAX":260109}},{"type":"Point","coordinates":[6108,7593],"properties":{"NAME":"Trabzon","POP_MAX":764714}},{"type":"Point","coordinates":[7237,5566],"properties":{"NAME":"Galle","POP_MAX":99478}},{"type":"Point","coordinates":[8540,7377],"properties":{"NAME":"Suwon","POP_MAX":1078000}},{"type":"Point","coordinates":[4916,8604],"properties":{"NAME":"Wick","POP_MAX":7147}},{"type":"Point","coordinates":[4958,8338],"properties":{"NAME":"Leeds","POP_MAX":1529000}},{"type":"Point","coordinates":[6082,7372],"properties":{"NAME":"Sanliurfa","POP_MAX":449549}},{"type":"Point","coordinates":[5837,5230],"properties":{"NAME":"Kasese","POP_MAX":67269}},{"type":"Point","coordinates":[4956,7699],"properties":{"NAME":"Pamplona","POP_MAX":274545}},{"type":"Point","coordinates":[5408,9172],"properties":{"NAME":"Svolv�r","POP_MAX":4197}},{"type":"Point","coordinates":[5396,9061],"properties":{"NAME":"Mo i Rana","POP_MAX":20409}},{"type":"Point","coordinates":[5483,9181],"properties":{"NAME":"Narvik","POP_MAX":20000}},{"type":"Point","coordinates":[5403,9115],"properties":{"NAME":"Bod�","POP_MAX":34073}},{"type":"Point","coordinates":[2778,4825],"properties":{"NAME":"Chiclayo","POP_MAX":596792}},{"type":"Point","coordinates":[3048,4318],"properties":{"NAME":"Juliaca","POP_MAX":245675}},{"type":"Point","coordinates":[2877,4597],"properties":{"NAME":"Cerro de Pasco","POP_MAX":137232}},{"type":"Point","coordinates":[2872,4839],"properties":{"NAME":"Tarapoto","POP_MAX":936}},{"type":"Point","coordinates":[2935,4453],"properties":{"NAME":"Ayacucho","POP_MAX":166314}},{"type":"Point","coordinates":[2853,4517],"properties":{"NAME":"Callao","POP_MAX":876877}},{"type":"Point","coordinates":[3402,3860],"properties":{"NAME":"Concepcion","POP_MAX":59118}},{"type":"Point","coordinates":[3430,3724],"properties":{"NAME":"Villarrica","POP_MAX":41157}},{"type":"Point","coordinates":[2679,6030],"properties":{"NAME":"Puerto Cabezas","POP_MAX":43001}},{"type":"Point","coordinates":[2582,5938],"properties":{"NAME":"Leon","POP_MAX":164441}},{"type":"Point","coordinates":[4754,7450],"properties":{"NAME":"Setubal","POP_MAX":117974}},{"type":"Point","coordinates":[4762,7602],"properties":{"NAME":"Porto","POP_MAX":1337000}},{"type":"Point","coordinates":[6146,6326],"properties":{"NAME":"Al Qunfudhah","POP_MAX":157}},{"type":"Point","coordinates":[5435,9751],"properties":{"NAME":"Longyearbyen","POP_MAX":1232}},{"type":"Point","coordinates":[5127,8227],"properties":{"NAME":"Rotterdam","POP_MAX":1005000}},{"type":"Point","coordinates":[5173,8093],"properties":{"NAME":"Luxembourg","POP_MAX":107260}},{"type":"Point","coordinates":[5149,8661],"properties":{"NAME":"Haugesund","POP_MAX":40321}},{"type":"Point","coordinates":[5160,8635],"properties":{"NAME":"Stavanger","POP_MAX":173132}},{"type":"Point","coordinates":[5269,8649],"properties":{"NAME":"Skien","POP_MAX":73330}},{"type":"Point","coordinates":[5322,8955],"properties":{"NAME":"Namsos","POP_MAX":9035}},{"type":"Point","coordinates":[5587,8493],"properties":{"NAME":"Liepaga","POP_MAX":85132}},{"type":"Point","coordinates":[5649,9273],"properties":{"NAME":"Alta","POP_MAX":12077}},{"type":"Point","coordinates":[5831,9280],"properties":{"NAME":"Vads�","POP_MAX":5139}},{"type":"Point","coordinates":[6383,6686],"properties":{"NAME":"Al Hufuf","POP_MAX":637389}},{"type":"Point","coordinates":[6853,7010],"properties":{"NAME":"Chaman","POP_MAX":88568}},{"type":"Point","coordinates":[6759,6724],"properties":{"NAME":"Turbat","POP_MAX":147791}},{"type":"Point","coordinates":[7038,7038],"properties":{"NAME":"Faisalabad","POP_MAX":2617000}},{"type":"Point","coordinates":[7036,7165],"properties":{"NAME":"Rawalpindi","POP_MAX":1858000}},{"type":"Point","coordinates":[6998,6921],"properties":{"NAME":"Bahawalpur","POP_MAX":552607}},{"type":"Point","coordinates":[6924,6697],"properties":{"NAME":"Mirput Khas","POP_MAX":356435}},{"type":"Point","coordinates":[6920,6823],"properties":{"NAME":"Sukkur","POP_MAX":417767}},{"type":"Point","coordinates":[7185,7680],"properties":{"NAME":"Karakol","POP_MAX":70171}},{"type":"Point","coordinates":[7017,7231],"properties":{"NAME":"Saidu","POP_MAX":1860310}},{"type":"Point","coordinates":[7891,5303],"properties":{"NAME":"Johor Bahru","POP_MAX":875000}},{"type":"Point","coordinates":[7830,5392],"properties":{"NAME":"Kelang","POP_MAX":956000}},{"type":"Point","coordinates":[5791,3701],"properties":{"NAME":"Benoni","POP_MAX":2986000}},{"type":"Point","coordinates":[5781,3672],"properties":{"NAME":"Vereeniging","POP_MAX":1074000}},{"type":"Point","coordinates":[2777,5760],"properties":{"NAME":"Colon","POP_MAX":204000}},{"type":"Point","coordinates":[2786,5736],"properties":{"NAME":"Balboa","POP_MAX":62882}},{"type":"Point","coordinates":[7314,8597],"properties":{"NAME":"Kolpashevo","POP_MAX":27876}},{"type":"Point","coordinates":[9473,8999],"properties":{"NAME":"Omolon","POP_MAX":1050}},{"type":"Point","coordinates":[9746,9257],"properties":{"NAME":"Pevek","POP_MAX":4837}},{"type":"Point","coordinates":[5959,9082],"properties":{"NAME":"Umba","POP_MAX":6128}},{"type":"Point","coordinates":[5917,9083],"properties":{"NAME":"Kovda","POP_MAX":20}},{"type":"Point","coordinates":[5875,8608],"properties":{"NAME":"Velikiy Novgorod","POP_MAX":218717}},{"type":"Point","coordinates":[5852,8482],"properties":{"NAME":"Velikiye Luki","POP_MAX":103149}},{"type":"Point","coordinates":[5970,8957],"properties":{"NAME":"Belomorsk","POP_MAX":12165}},{"type":"Point","coordinates":[5965,8982],"properties":{"NAME":"Kem","POP_MAX":13829}},{"type":"Point","coordinates":[6518,9317],"properties":{"NAME":"Krasino","POP_MAX":10}},{"type":"Point","coordinates":[6574,9464],"properties":{"NAME":"Matochkin Shar","POP_MAX":10}},{"type":"Point","coordinates":[6111,8960],"properties":{"NAME":"Severodvinsk","POP_MAX":194292}},{"type":"Point","coordinates":[6010,8216],"properties":{"NAME":"Kursk","POP_MAX":409431}},{"type":"Point","coordinates":[6050,8359],"properties":{"NAME":"Tula","POP_MAX":489486}},{"type":"Point","coordinates":[6156,8274],"properties":{"NAME":"Tambov","POP_MAX":301482}},{"type":"Point","coordinates":[6561,8326],"properties":{"NAME":"Sterlitamak","POP_MAX":267231}},{"type":"Point","coordinates":[6822,8432],"properties":{"NAME":"Kurgan","POP_MAX":343129}},{"type":"Point","coordinates":[6367,9141],"properties":{"NAME":"Indiga","POP_MAX":10}},{"type":"Point","coordinates":[6231,9151],"properties":{"NAME":"Shoyna","POP_MAX":300}},{"type":"Point","coordinates":[7033,9141],"properties":{"NAME":"Novy Port","POP_MAX":1790}},{"type":"Point","coordinates":[6857,9074],"properties":{"NAME":"Salekhard","POP_MAX":38025}},{"type":"Point","coordinates":[7188,9326],"properties":{"NAME":"Gyda","POP_MAX":10}},{"type":"Point","coordinates":[7194,9128],"properties":{"NAME":"Tazovskiy","POP_MAX":5981}},{"type":"Point","coordinates":[7136,9048],"properties":{"NAME":"Novy Urengoy","POP_MAX":94212}},{"type":"Point","coordinates":[7022,9016],"properties":{"NAME":"Nadym","POP_MAX":46339}},{"type":"Point","coordinates":[7108,8879],"properties":{"NAME":"Noyabrsk","POP_MAX":110572}},{"type":"Point","coordinates":[6417,8791],"properties":{"NAME":"Syktyvkar","POP_MAX":230910}},{"type":"Point","coordinates":[6497,8901],"properties":{"NAME":"Ukhta","POP_MAX":102187}},{"type":"Point","coordinates":[6689,8673],"properties":{"NAME":"Serov","POP_MAX":98438}},{"type":"Point","coordinates":[6318,8471],"properties":{"NAME":"Cheboksary","POP_MAX":446781}},{"type":"Point","coordinates":[6635,8186],"properties":{"NAME":"Orsk","POP_MAX":246836}},{"type":"Point","coordinates":[6333,8233],"properties":{"NAME":"Balakovo","POP_MAX":199572}},{"type":"Point","coordinates":[6796,8880],"properties":{"NAME":"Igrim","POP_MAX":9545}},{"type":"Point","coordinates":[6823,8820],"properties":{"NAME":"Nyagan","POP_MAX":52137}},{"type":"Point","coordinates":[6924,8753],"properties":{"NAME":"Khanty Mansiysk","POP_MAX":67800}},{"type":"Point","coordinates":[7135,8749],"properties":{"NAME":"Nizhenvartovsk","POP_MAX":244937}},{"type":"Point","coordinates":[6989,8908],"properties":{"NAME":"Numto","POP_MAX":10}},{"type":"Point","coordinates":[7074,8515],"properties":{"NAME":"Tara","POP_MAX":26986}},{"type":"Point","coordinates":[6903,8591],"properties":{"NAME":"Tobolsk","POP_MAX":113800}},{"type":"Point","coordinates":[7264,8204],"properties":{"NAME":"Rubtsovsk","POP_MAX":161065}},{"type":"Point","coordinates":[7396,8229],"properties":{"NAME":"Gorno Altaysk","POP_MAX":59868}},{"type":"Point","coordinates":[7417,8341],"properties":{"NAME":"Prokopyevsk","POP_MAX":275615}},{"type":"Point","coordinates":[6508,6204],"properties":{"NAME":"Salalah","POP_MAX":203877}},{"type":"Point","coordinates":[6325,7708],"properties":{"NAME":"Makhachkala","POP_MAX":554981}},{"type":"Point","coordinates":[6582,6629],"properties":{"NAME":"Suhar","POP_MAX":151349}},{"type":"Point","coordinates":[6623,6590],"properties":{"NAME":"As Sib","POP_MAX":237816}},{"type":"Point","coordinates":[8605,7305],"properties":{"NAME":"Pohang","POP_MAX":435266}},{"type":"Point","coordinates":[8604,7278],"properties":{"NAME":"Ulsan","POP_MAX":1061000}},{"type":"Point","coordinates":[8584,7296],"properties":{"NAME":"Daegu","POP_MAX":2460000}},{"type":"Point","coordinates":[8449,5980],"properties":{"NAME":"Legazpi","POP_MAX":320081}},{"type":"Point","coordinates":[8393,6238],"properties":{"NAME":"Tuguegarao","POP_MAX":115105}},{"type":"Point","coordinates":[8355,6236],"properties":{"NAME":"Vigan","POP_MAX":48545}},{"type":"Point","coordinates":[7794,8943],"properties":{"NAME":"Tura","POP_MAX":5444}},{"type":"Point","coordinates":[7543,8955],"properties":{"NAME":"Noginsk","POP_MAX":229731}},{"type":"Point","coordinates":[8004,8717],"properties":{"NAME":"Yerema","POP_MAX":745}},{"type":"Point","coordinates":[7731,8459],"properties":{"NAME":"Tayshet","POP_MAX":52184}},{"type":"Point","coordinates":[7889,8276],"properties":{"NAME":"Usolye Sibirskoye","POP_MAX":85900}},{"type":"Point","coordinates":[7890,8211],"properties":{"NAME":"Slyudyanka","POP_MAX":18809}},{"type":"Point","coordinates":[7873,8299],"properties":{"NAME":"Cheremkhovo","POP_MAX":57395}},{"type":"Point","coordinates":[7844,8343],"properties":{"NAME":"Zima","POP_MAX":60239}},{"type":"Point","coordinates":[7803,8380],"properties":{"NAME":"Tulun","POP_MAX":51330}},{"type":"Point","coordinates":[7760,8399],"properties":{"NAME":"Nizhneudinsk","POP_MAX":43326}},{"type":"Point","coordinates":[7948,8508],"properties":{"NAME":"Ust Kut","POP_MAX":25388}},{"type":"Point","coordinates":[8186,8577],"properties":{"NAME":"Bodaybo","POP_MAX":15933}},{"type":"Point","coordinates":[7488,8803],"properties":{"NAME":"Komsa","POP_MAX":10}},{"type":"Point","coordinates":[7668,8474],"properties":{"NAME":"Kansk","POP_MAX":101502}},{"type":"Point","coordinates":[7523,8479],"properties":{"NAME":"Achinsk","POP_MAX":117634}},{"type":"Point","coordinates":[7569,8605],"properties":{"NAME":"Yeniseysk","POP_MAX":19920}},{"type":"Point","coordinates":[7578,8593],"properties":{"NAME":"Lesosibirsk","POP_MAX":65945}},{"type":"Point","coordinates":[7452,9034],"properties":{"NAME":"Turukhansk","POP_MAX":4774}},{"type":"Point","coordinates":[7330,9373],"properties":{"NAME":"Vorontsovo","POP_MAX":100}},{"type":"Point","coordinates":[7921,9435],"properties":{"NAME":"Starorybnoye","POP_MAX":10}},{"type":"Point","coordinates":[7425,9570],"properties":{"NAME":"Mikhaylova","POP_MAX":10}},{"type":"Point","coordinates":[7404,9241],"properties":{"NAME":"Dudinka","POP_MAX":23619}},{"type":"Point","coordinates":[7515,8175],"properties":{"NAME":"Teli","POP_MAX":3732}},{"type":"Point","coordinates":[8114,8471],"properties":{"NAME":"Novyy Uoyin","POP_MAX":4184}},{"type":"Point","coordinates":[8166,8372],"properties":{"NAME":"Bagdarin","POP_MAX":4676}},{"type":"Point","coordinates":[8047,8442],"properties":{"NAME":"Severobaykalsk","POP_MAX":25800}},{"type":"Point","coordinates":[7967,8136],"properties":{"NAME":"Kyakhta","POP_MAX":18431}},{"type":"Point","coordinates":[8571,8197],"properties":{"NAME":"Svobodnyy","POP_MAX":63620}},{"type":"Point","coordinates":[8547,8333],"properties":{"NAME":"Zeya","POP_MAX":26999}},{"type":"Point","coordinates":[8506,8315],"properties":{"NAME":"Magdagachi","POP_MAX":11739}},{"type":"Point","coordinates":[8559,8231],"properties":{"NAME":"Shimanovsk","POP_MAX":21466}},{"type":"Point","coordinates":[8454,8346],"properties":{"NAME":"Skovorodino","POP_MAX":10007}},{"type":"Point","coordinates":[8476,8415],"properties":{"NAME":"Tynda","POP_MAX":37335}},{"type":"Point","coordinates":[8221,8170],"properties":{"NAME":"Olovyannaya","POP_MAX":8247}},{"type":"Point","coordinates":[8338,8332],"properties":{"NAME":"Mogocha","POP_MAX":12647}},{"type":"Point","coordinates":[8289,8119],"properties":{"NAME":"Krasnokamensk","POP_MAX":54316}},{"type":"Point","coordinates":[8247,8138],"properties":{"NAME":"Borzya","POP_MAX":30421}},{"type":"Point","coordinates":[8078,8194],"properties":{"NAME":"Khilok","POP_MAX":10627}},{"type":"Point","coordinates":[8703,7700],"properties":{"NAME":"Nakhodka","POP_MAX":159551}},{"type":"Point","coordinates":[8679,7756],"properties":{"NAME":"Ussuriysk","POP_MAX":157068}},{"type":"Point","coordinates":[8718,7853],"properties":{"NAME":"Lesozavodsk","POP_MAX":41778}},{"type":"Point","coordinates":[8796,9317],"properties":{"NAME":"Kavache","POP_MAX":-99}},{"type":"Point","coordinates":[8717,9132],"properties":{"NAME":"Verkhoyansk","POP_MAX":1388}},{"type":"Point","coordinates":[9496,9202],"properties":{"NAME":"Cherskiy","POP_MAX":3707}},{"type":"Point","coordinates":[9283,9127],"properties":{"NAME":"Srednekolymsk","POP_MAX":3459}},{"type":"Point","coordinates":[9205,9028],"properties":{"NAME":"Zyryanka","POP_MAX":3627}},{"type":"Point","coordinates":[8767,8742],"properties":{"NAME":"Eldikan","POP_MAX":1516}},{"type":"Point","coordinates":[8732,8701],"properties":{"NAME":"Chagda","POP_MAX":10}},{"type":"Point","coordinates":[8779,8850],"properties":{"NAME":"Khandyga","POP_MAX":6796}},{"type":"Point","coordinates":[8750,8722],"properties":{"NAME":"Ust Maya","POP_MAX":3062}},{"type":"Point","coordinates":[8476,8502],"properties":{"NAME":"Neryungri","POP_MAX":66320}},{"type":"Point","coordinates":[8135,8870],"properties":{"NAME":"Chernyshevskiy","POP_MAX":5137}},{"type":"Point","coordinates":[8360,8949],"properties":{"NAME":"Terbyas","POP_MAX":10}},{"type":"Point","coordinates":[8390,8913],"properties":{"NAME":"Vilyuysk","POP_MAX":9948}},{"type":"Point","coordinates":[8553,8923],"properties":{"NAME":"Sangar","POP_MAX":4633}},{"type":"Point","coordinates":[8438,9158],"properties":{"NAME":"Menkere","POP_MAX":10}},{"type":"Point","coordinates":[8180,9386],"properties":{"NAME":"Saskylakh","POP_MAX":1920}},{"type":"Point","coordinates":[8511,9287],"properties":{"NAME":"Govorovo","POP_MAX":943}},{"type":"Point","coordinates":[8528,9471],"properties":{"NAME":"Sagastyr","POP_MAX":10}},{"type":"Point","coordinates":[8338,9449],"properties":{"NAME":"Ust Olensk","POP_MAX":10}},{"type":"Point","coordinates":[8278,8819],"properties":{"NAME":"Suntar","POP_MAX":8639}},{"type":"Point","coordinates":[8134,9189],"properties":{"NAME":"Olenek","POP_MAX":10}},{"type":"Point","coordinates":[8133,9067],"properties":{"NAME":"Udachnyy","POP_MAX":15266}},{"type":"Point","coordinates":[8705,8046],"properties":{"NAME":"Birobidzhan","POP_MAX":76146}},{"type":"Point","coordinates":[8774,8560],"properties":{"NAME":"Khakhar","POP_MAX":10}},{"type":"Point","coordinates":[8923,8200],"properties":{"NAME":"De Kastri","POP_MAX":3615}},{"type":"Point","coordinates":[8771,8389],"properties":{"NAME":"Chumikan","POP_MAX":1305}},{"type":"Point","coordinates":[8818,8148],"properties":{"NAME":"Komsomolsk na Amure","POP_MAX":275908}},{"type":"Point","coordinates":[8850,8490],"properties":{"NAME":"Ayan","POP_MAX":1286}},{"type":"Point","coordinates":[8922,8298],"properties":{"NAME":"Nikolayevsk na Amure","POP_MAX":27152}},{"type":"Point","coordinates":[8909,8056],"properties":{"NAME":"Savetskaya Gavan","POP_MAX":29740}},{"type":"Point","coordinates":[9437,8808],"properties":{"NAME":"Evensk","POP_MAX":2024}},{"type":"Point","coordinates":[9205,8701],"properties":{"NAME":"Palatka","POP_MAX":21452}},{"type":"Point","coordinates":[9342,8842],"properties":{"NAME":"Omsukchan","POP_MAX":4201}},{"type":"Point","coordinates":[9129,8856],"properties":{"NAME":"Susuman","POP_MAX":7367}},{"type":"Point","coordinates":[8990,8222],"properties":{"NAME":"Nogliki","POP_MAX":10098}},{"type":"Point","coordinates":[8962,8167],"properties":{"NAME":"Aleksandrovsk Sakhalinskiy","POP_MAX":12024}},{"type":"Point","coordinates":[8979,7921],"properties":{"NAME":"Korsakov","POP_MAX":35091}},{"type":"Point","coordinates":[1753,7064],"properties":{"NAME":"Ensenada","POP_MAX":256565}},{"type":"Point","coordinates":[2188,6691],"properties":{"NAME":"Saltillo","POP_MAX":754000}},{"type":"Point","coordinates":[2036,7054],"properties":{"NAME":"Ciudad Ju�rez","POP_MAX":1343000}},{"type":"Point","coordinates":[2063,6852],"properties":{"NAME":"Delicias","POP_MAX":114783}},{"type":"Point","coordinates":[2086,6610],"properties":{"NAME":"Durango","POP_MAX":457140}},{"type":"Point","coordinates":[1966,6712],"properties":{"NAME":"Los Mochis","POP_MAX":249047}},{"type":"Point","coordinates":[2241,6592],"properties":{"NAME":"Ciudad Victoria","POP_MAX":274900}},{"type":"Point","coordinates":[2153,6485],"properties":{"NAME":"Aguascalientes","POP_MAX":869000}},{"type":"Point","coordinates":[2096,6321],"properties":{"NAME":"Manzanillo","POP_MAX":110735}},{"type":"Point","coordinates":[2349,6164],"properties":{"NAME":"Tehuantepec","POP_MAX":42776}},{"type":"Point","coordinates":[2414,6260],"properties":{"NAME":"Villahermosa","POP_MAX":428564}},{"type":"Point","coordinates":[2238,6314],"properties":{"NAME":"Cuernavaca","POP_MAX":834001}},{"type":"Point","coordinates":[2206,6413],"properties":{"NAME":"Queretaro","POP_MAX":961000}},{"type":"Point","coordinates":[2432,6081],"properties":{"NAME":"Tapachula","POP_MAX":221521}},{"type":"Point","coordinates":[2542,6289],"properties":{"NAME":"Chetumal","POP_MAX":154517}},{"type":"Point","coordinates":[2504,6451],"properties":{"NAME":"Progreso","POP_MAX":47124}},{"type":"Point","coordinates":[7920,6176],"properties":{"NAME":"Savannakhet","POP_MAX":84898}},{"type":"Point","coordinates":[8070,7818],"properties":{"NAME":"Buyant-Uhaa","POP_MAX":8776}},{"type":"Point","coordinates":[8496,7464],"properties":{"NAME":"Nampo","POP_MAX":1127000}},{"type":"Point","coordinates":[8617,7639],"properties":{"NAME":"Chongjin","POP_MAX":672614}},{"type":"Point","coordinates":[8601,7575],"properties":{"NAME":"Kimchaek","POP_MAX":187270}},{"type":"Point","coordinates":[8555,7531],"properties":{"NAME":"Hamhung","POP_MAX":773000}},{"type":"Point","coordinates":[8084,7960],"properties":{"NAME":"Ondorhaan","POP_MAX":14723}},{"type":"Point","coordinates":[7815,7901],"properties":{"NAME":"Bayankhongor","POP_MAX":26252}},{"type":"Point","coordinates":[7699,7985],"properties":{"NAME":"Uliastay","POP_MAX":8056}},{"type":"Point","coordinates":[7672,7906],"properties":{"NAME":"Altay","POP_MAX":32488}},{"type":"Point","coordinates":[7792,8095],"properties":{"NAME":"Moron","POP_MAX":27690}},{"type":"Point","coordinates":[7566,8114],"properties":{"NAME":"Ulaangom","POP_MAX":35796}},{"type":"Point","coordinates":[7886,8046],"properties":{"NAME":"Bulgan","POP_MAX":17348}},{"type":"Point","coordinates":[7962,7869],"properties":{"NAME":"Mandalgovi","POP_MAX":2984}},{"type":"Point","coordinates":[7964,8093],"properties":{"NAME":"Darhan","POP_MAX":74738}},{"type":"Point","coordinates":[7967,8050],"properties":{"NAME":"Dzuunharaa","POP_MAX":18830}},{"type":"Point","coordinates":[7864,7898],"properties":{"NAME":"Arvayheer","POP_MAX":28053}},{"type":"Point","coordinates":[8157,7924],"properties":{"NAME":"Baruun Urt","POP_MAX":15805}},{"type":"Point","coordinates":[9893,2878],"properties":{"NAME":"Palmerston North","POP_MAX":75996}},{"type":"Point","coordinates":[9877,2902],"properties":{"NAME":"Wanganui","POP_MAX":40268}},{"type":"Point","coordinates":[9928,2919],"properties":{"NAME":"Hastings","POP_MAX":61696}},{"type":"Point","coordinates":[9960,2977],"properties":{"NAME":"Gisborne","POP_MAX":34274}},{"type":"Point","coordinates":[9911,3006],"properties":{"NAME":"Rotorua","POP_MAX":65901}},{"type":"Point","coordinates":[9906,2974],"properties":{"NAME":"Taupo","POP_MAX":22469}},{"type":"Point","coordinates":[9909,3032],"properties":{"NAME":"Tauranga","POP_MAX":110338}},{"type":"Point","coordinates":[9771,2644],"properties":{"NAME":"Timaru","POP_MAX":28007}},{"type":"Point","coordinates":[9828,2823],"properties":{"NAME":"Nelson","POP_MAX":37133}},{"type":"Point","coordinates":[9857,3146],"properties":{"NAME":"Whangarei","POP_MAX":55699}},{"type":"Point","coordinates":[9700,2606],"properties":{"NAME":"Queenstown","POP_MAX":10442}},{"type":"Point","coordinates":[9692,2526],"properties":{"NAME":"Invercargill","POP_MAX":47287}},{"type":"Point","coordinates":[9606,8843],"properties":{"NAME":"Manily","POP_MAX":10}},{"type":"Point","coordinates":[9354,8270],"properties":{"NAME":"Oktyabrskiy","POP_MAX":67386}},{"type":"Point","coordinates":[9482,8481],"properties":{"NAME":"Klyuchi","POP_MAX":1089}},{"type":"Point","coordinates":[9526,8476],"properties":{"NAME":"Ust Kamchatsk","POP_MAX":4939}},{"type":"Point","coordinates":[4765,8225],"properties":{"NAME":"Cork","POP_MAX":188907}},{"type":"Point","coordinates":[5241,7578],"properties":{"NAME":"Sassari","POP_MAX":120729}},{"type":"Point","coordinates":[5215,7830],"properties":{"NAME":"Turin","POP_MAX":1652000}},{"type":"Point","coordinates":[7696,7131],"properties":{"NAME":"Jyekundo","POP_MAX":23000}},{"type":"Point","coordinates":[8045,6625],"properties":{"NAME":"Liuzhou","POP_MAX":1497000}},{"type":"Point","coordinates":[7923,6671],"properties":{"NAME":"Xingyi","POP_MAX":816000}},{"type":"Point","coordinates":[7952,6739],"properties":{"NAME":"Anshun","POP_MAX":849000}},{"type":"Point","coordinates":[7980,6823],"properties":{"NAME":"Zunyi","POP_MAX":849000}},{"type":"Point","coordinates":[8021,7004],"properties":{"NAME":"Wanzhou","POP_MAX":1680000}},{"type":"Point","coordinates":[8254,7185],"properties":{"NAME":"Huaibei","POP_MAX":913000}},{"type":"Point","coordinates":[8299,7034],"properties":{"NAME":"Wuhu","POP_MAX":810000}},{"type":"Point","coordinates":[8246,7058],"properties":{"NAME":"Luan","POP_MAX":1690000}},{"type":"Point","coordinates":[8270,7127],"properties":{"NAME":"Bengbu","POP_MAX":894000}},{"type":"Point","coordinates":[8262,6985],"properties":{"NAME":"Anqing","POP_MAX":580497}},{"type":"Point","coordinates":[8153,6552],"properties":{"NAME":"Foshan","POP_MAX":943000}},{"type":"Point","coordinates":[8275,5225],"properties":{"NAME":"Bontang","POP_MAX":101691}},{"type":"Point","coordinates":[8211,4715],"properties":{"NAME":"Denpasar","POP_MAX":732344}},{"type":"Point","coordinates":[9638,3926],"properties":{"NAME":"Noumea","POP_MAX":93060}},{"type":"Point","coordinates":[2761,5155],"properties":{"NAME":"Portoviejo","POP_MAX":213601}},{"type":"Point","coordinates":[2897,5584],"properties":{"NAME":"Bello","POP_MAX":519670}},{"type":"Point","coordinates":[2888,5725],"properties":{"NAME":"Monteria","POP_MAX":275198}},{"type":"Point","coordinates":[2965,5630],"properties":{"NAME":"Bucaramanga","POP_MAX":1009000}},{"type":"Point","coordinates":[2671,6516],"properties":{"NAME":"Pinar del Rio","POP_MAX":186990}},{"type":"Point","coordinates":[2832,6456],"properties":{"NAME":"Camaguey","POP_MAX":347562}},{"type":"Point","coordinates":[2907,6385],"properties":{"NAME":"Guantanamo","POP_MAX":272801}},{"type":"Point","coordinates":[2878,6428],"properties":{"NAME":"Holguin","POP_MAX":319102}},{"type":"Point","coordinates":[2832,6287],"properties":{"NAME":"Montego Bay","POP_MAX":126008}},{"type":"Point","coordinates":[2906,5474],"properties":{"NAME":"Ibague","POP_MAX":421685}},{"type":"Point","coordinates":[2868,5357],"properties":{"NAME":"Popayan","POP_MAX":258750}},{"type":"Point","coordinates":[2935,5869],"properties":{"NAME":"Santa Marta","POP_MAX":431781}},{"type":"Point","coordinates":[2982,5676],"properties":{"NAME":"Cucuta","POP_MAX":722146}},{"type":"Point","coordinates":[2951,5458],"properties":{"NAME":"Villavicencio","POP_MAX":374763}},{"type":"Point","coordinates":[2774,6515],"properties":{"NAME":"Santa Clara","POP_MAX":250512}},{"type":"Point","coordinates":[4812,8813],"properties":{"NAME":"T�rshavn","POP_MAX":14398}},{"type":"Point","coordinates":[5871,6957],"properties":{"NAME":"El Giza","POP_MAX":2681863}},{"type":"Point","coordinates":[5258,8045],"properties":{"NAME":"Stuttgart","POP_MAX":2944700}},{"type":"Point","coordinates":[5247,8294],"properties":{"NAME":"Bremen","POP_MAX":724909}},{"type":"Point","coordinates":[5311,8084],"properties":{"NAME":"N�rnberg","POP_MAX":737304}},{"type":"Point","coordinates":[7566,7042],"properties":{"NAME":"Nagchu","POP_MAX":2500}},{"type":"Point","coordinates":[7632,6929],"properties":{"NAME":"Nyingchi","POP_MAX":100}},{"type":"Point","coordinates":[7710,7024],"properties":{"NAME":"Chamdo","POP_MAX":100000}},{"type":"Point","coordinates":[7402,7636],"properties":{"NAME":"Korla","POP_MAX":206373}},{"type":"Point","coordinates":[7312,7636],"properties":{"NAME":"Kuqa","POP_MAX":111499}},{"type":"Point","coordinates":[7312,7927],"properties":{"NAME":"Tacheng","POP_MAX":49796}},{"type":"Point","coordinates":[7398,7785],"properties":{"NAME":"Shihezi","POP_MAX":573182}},{"type":"Point","coordinates":[7366,7860],"properties":{"NAME":"Karamay","POP_MAX":108769}},{"type":"Point","coordinates":[7237,7602],"properties":{"NAME":"Aksu","POP_MAX":340020}},{"type":"Point","coordinates":[8052,6275],"properties":{"NAME":"Sanya","POP_MAX":362689}},{"type":"Point","coordinates":[8075,6379],"properties":{"NAME":"Haikou","POP_MAX":2046189}},{"type":"Point","coordinates":[7983,7137],"properties":{"NAME":"Hanzhong","POP_MAX":145986}},{"type":"Point","coordinates":[7986,7210],"properties":{"NAME":"Baoji","POP_MAX":800000}},{"type":"Point","coordinates":[8039,7250],"properties":{"NAME":"Tongchuan","POP_MAX":282258}},{"type":"Point","coordinates":[8108,7309],"properties":{"NAME":"Linfen","POP_MAX":834000}},{"type":"Point","coordinates":[8142,7401],"properties":{"NAME":"Yuci","POP_MAX":840000}},{"type":"Point","coordinates":[8158,7540],"properties":{"NAME":"Datong","POP_MAX":1873000}},{"type":"Point","coordinates":[8154,6994],"properties":{"NAME":"Jianmen","POP_MAX":1708000}},{"type":"Point","coordinates":[8101,6997],"properties":{"NAME":"Yichang","POP_MAX":875000}},{"type":"Point","coordinates":[8162,6978],"properties":{"NAME":"Xiantao","POP_MAX":1556000}},{"type":"Point","coordinates":[8206,7024],"properties":{"NAME":"Macheng","POP_MAX":126366}},{"type":"Point","coordinates":[8208,6969],"properties":{"NAME":"Huangshi","POP_MAX":688090}},{"type":"Point","coordinates":[8154,6830],"properties":{"NAME":"Zhuzhou","POP_MAX":1080000}},{"type":"Point","coordinates":[8111,6738],"properties":{"NAME":"Yongzhou","POP_MAX":1000000}},{"type":"Point","coordinates":[8131,6875],"properties":{"NAME":"Yiyang","POP_MAX":1352000}},{"type":"Point","coordinates":[8113,6900],"properties":{"NAME":"Changde","POP_MAX":1469000}},{"type":"Point","coordinates":[8099,6782],"properties":{"NAME":"Shaoyang","POP_MAX":45617}},{"type":"Point","coordinates":[7891,6931],"properties":{"NAME":"Leshan","POP_MAX":1157000}},{"type":"Point","coordinates":[7836,6756],"properties":{"NAME":"Panzhihua","POP_MAX":461513}},{"type":"Point","coordinates":[7863,6918],"properties":{"NAME":"Fulin","POP_MAX":1049}},{"type":"Point","coordinates":[7951,7097],"properties":{"NAME":"Guangyuan","POP_MAX":437435}},{"type":"Point","coordinates":[7937,6891],"properties":{"NAME":"Luzhou","POP_MAX":1537000}},{"type":"Point","coordinates":[7915,6885],"properties":{"NAME":"Yibin","POP_MAX":902000}},{"type":"Point","coordinates":[7891,6801],"properties":{"NAME":"Zhaotang","POP_MAX":809000}},{"type":"Point","coordinates":[7795,6770],"properties":{"NAME":"Lijiang","POP_MAX":18445}},{"type":"Point","coordinates":[7859,6630],"properties":{"NAME":"Yuxi","POP_MAX":396325}},{"type":"Point","coordinates":[7792,6707],"properties":{"NAME":"Dali","POP_MAX":156685}},{"type":"Point","coordinates":[8334,7532],"properties":{"NAME":"Qinhuangdao","POP_MAX":1003000}},{"type":"Point","coordinates":[8252,7508],"properties":{"NAME":"Langfang","POP_MAX":810000}},{"type":"Point","coordinates":[8203,7584],"properties":{"NAME":"Zhangjiakou","POP_MAX":1046000}},{"type":"Point","coordinates":[8294,7514],"properties":{"NAME":"Tangshan","POP_MAX":1879000}},{"type":"Point","coordinates":[8187,7309],"properties":{"NAME":"Anyang","POP_MAX":887000}},{"type":"Point","coordinates":[8156,7260],"properties":{"NAME":"Jiaozuo","POP_MAX":857000}},{"type":"Point","coordinates":[8187,7237],"properties":{"NAME":"Kaifeng","POP_MAX":872000}},{"type":"Point","coordinates":[8223,7214],"properties":{"NAME":"Shangqiu","POP_MAX":1753000}},{"type":"Point","coordinates":[8158,7172],"properties":{"NAME":"Pingdingshan","POP_MAX":849000}},{"type":"Point","coordinates":[8179,7080],"properties":{"NAME":"Xinyang","POP_MAX":1541000}},{"type":"Point","coordinates":[8174,7265],"properties":{"NAME":"Xinxiang","POP_MAX":903000}},{"type":"Point","coordinates":[8135,7227],"properties":{"NAME":"Luoyang","POP_MAX":1715000}},{"type":"Point","coordinates":[8433,7610],"properties":{"NAME":"Liaoyang","POP_MAX":794000}},{"type":"Point","coordinates":[8467,7544],"properties":{"NAME":"Dandong","POP_MAX":870000}},{"type":"Point","coordinates":[8408,7575],"properties":{"NAME":"Yingkow","POP_MAX":795000}},{"type":"Point","coordinates":[8375,7601],"properties":{"NAME":"Jinzhou","POP_MAX":956000}},{"type":"Point","coordinates":[8391,7652],"properties":{"NAME":"Fuxin","POP_MAX":770000}},{"type":"Point","coordinates":[8449,7613],"properties":{"NAME":"Benxi","POP_MAX":1012000}},{"type":"Point","coordinates":[8452,7644],"properties":{"NAME":"Fushun","POP_MAX":1470000}},{"type":"Point","coordinates":[8248,7269],"properties":{"NAME":"Jining","POP_MAX":1186000}},{"type":"Point","coordinates":[8319,7346],"properties":{"NAME":"Weifang","POP_MAX":1553000}},{"type":"Point","coordinates":[8264,7316],"properties":{"NAME":"Taian","POP_MAX":1629000}},{"type":"Point","coordinates":[8218,7259],"properties":{"NAME":"Heze","POP_MAX":1338000}},{"type":"Point","coordinates":[8364,7360],"properties":{"NAME":"Laiyang","POP_MAX":250000}},{"type":"Point","coordinates":[8203,6829],"properties":{"NAME":"Xinyu","POP_MAX":913000}},{"type":"Point","coordinates":[8204,6719],"properties":{"NAME":"Ganzhou","POP_MAX":1500000}},{"type":"Point","coordinates":[8232,6940],"properties":{"NAME":"Jiujiang","POP_MAX":545616}},{"type":"Point","coordinates":[8344,7059],"properties":{"NAME":"Changzhou","POP_MAX":1327000}},{"type":"Point","coordinates":[8328,7085],"properties":{"NAME":"Zhenjiang","POP_MAX":854000}},{"type":"Point","coordinates":[8367,7074],"properties":{"NAME":"Nantong","POP_MAX":947000}},{"type":"Point","coordinates":[8365,7001],"properties":{"NAME":"Jiaxing","POP_MAX":988000}},{"type":"Point","coordinates":[8347,7007],"properties":{"NAME":"Huzhou","POP_MAX":1231000}},{"type":"Point","coordinates":[8360,6956],"properties":{"NAME":"Shaoxing","POP_MAX":777000}},{"type":"Point","coordinates":[8335,6905],"properties":{"NAME":"Jinhua","POP_MAX":1092852}},{"type":"Point","coordinates":[8487,7704],"properties":{"NAME":"Liaoyuan","POP_MAX":506548}},{"type":"Point","coordinates":[8618,7708],"properties":{"NAME":"Tumen","POP_MAX":99721}},{"type":"Point","coordinates":[8465,7719],"properties":{"NAME":"Siping","POP_MAX":555609}},{"type":"Point","coordinates":[8423,7862],"properties":{"NAME":"Baicheng","POP_MAX":386861}},{"type":"Point","coordinates":[8639,7048],"properties":{"NAME":"Kagoshima","POP_MAX":555352}},{"type":"Point","coordinates":[8700,7179],"properties":{"NAME":"Matsuyama","POP_MAX":533541}},{"type":"Point","coordinates":[7977,7516],"properties":{"NAME":"Wuhai","POP_MAX":218427}},{"type":"Point","coordinates":[8121,7748],"properties":{"NAME":"Erenhot","POP_MAX":22287}},{"type":"Point","coordinates":[8152,7595],"properties":{"NAME":"Jining","POP_MAX":281716}},{"type":"Point","coordinates":[8343,7952],"properties":{"NAME":"Arxan","POP_MAX":32023}},{"type":"Point","coordinates":[8273,8092],"properties":{"NAME":"Manzhouli","POP_MAX":93620}},{"type":"Point","coordinates":[8234,7764],"properties":{"NAME":"Xilinhot","POP_MAX":120965}},{"type":"Point","coordinates":[8552,8130],"properties":{"NAME":"Heihe","POP_MAX":109427}},{"type":"Point","coordinates":[8647,7872],"properties":{"NAME":"Qitaihe","POP_MAX":450617}},{"type":"Point","coordinates":[8592,7982],"properties":{"NAME":"Yichun","POP_MAX":777000}},{"type":"Point","coordinates":[8633,7965],"properties":{"NAME":"Hegang","POP_MAX":743307}},{"type":"Point","coordinates":[8490,8068],"properties":{"NAME":"Nenjiang","POP_MAX":87236}},{"type":"Point","coordinates":[8480,8028],"properties":{"NAME":"Nehe","POP_MAX":108253}},{"type":"Point","coordinates":[8611,7801],"properties":{"NAME":"Mudangiang","POP_MAX":1244000}},{"type":"Point","coordinates":[8808,7336],"properties":{"NAME":"Kanazawa","POP_MAX":551249}},{"type":"Point","coordinates":[8929,7672],"properties":{"NAME":"Muroran","POP_MAX":155676}},{"type":"Point","coordinates":[8968,7753],"properties":{"NAME":"Asahikawa","POP_MAX":356612}},{"type":"Point","coordinates":[8767,7227],"properties":{"NAME":"Kobe","POP_MAX":1528478}},{"type":"Point","coordinates":[8890,7264],"properties":{"NAME":"Yokohama","POP_MAX":3697894}},{"type":"Point","coordinates":[8904,7519],"properties":{"NAME":"Akita","POP_MAX":320069}},{"type":"Point","coordinates":[8921,7584],"properties":{"NAME":"Aomori","POP_MAX":298394}},{"type":"Point","coordinates":[8915,7569],"properties":{"NAME":"Hirosaki","POP_MAX":174972}},{"type":"Point","coordinates":[8944,7565],"properties":{"NAME":"Hachinohe","POP_MAX":239046}},{"type":"Point","coordinates":[8915,7405],"properties":{"NAME":"Fukushima","POP_MAX":294237}},{"type":"Point","coordinates":[8933,7519],"properties":{"NAME":"Morioka","POP_MAX":295172}},{"type":"Point","coordinates":[8875,7415],"properties":{"NAME":"Niigata","POP_MAX":569797}},{"type":"Point","coordinates":[8659,5167],"properties":{"NAME":"Sorong","POP_MAX":125535}},{"type":"Point","coordinates":[2534,6128],"properties":{"NAME":"Puerto Barrios","POP_MAX":56605}},{"type":"Point","coordinates":[7293,6200],"properties":{"NAME":"Kakinada","POP_MAX":292923}},{"type":"Point","coordinates":[7219,6261],"properties":{"NAME":"Warangal","POP_MAX":1203853}},{"type":"Point","coordinates":[7364,6337],"properties":{"NAME":"Brahmapur","POP_MAX":324726}},{"type":"Point","coordinates":[7111,6193],"properties":{"NAME":"Bijapur","POP_MAX":271064}},{"type":"Point","coordinates":[7039,6339],"properties":{"NAME":"Bhiwandi","POP_MAX":795000}},{"type":"Point","coordinates":[7135,6284],"properties":{"NAME":"Latur","POP_MAX":374394}},{"type":"Point","coordinates":[7084,6325],"properties":{"NAME":"Ahmednagar","POP_MAX":391760}},{"type":"Point","coordinates":[7211,6375],"properties":{"NAME":"Chandrapur","POP_MAX":595118}},{"type":"Point","coordinates":[7168,6431],"properties":{"NAME":"Amravati","POP_MAX":734451}},{"type":"Point","coordinates":[7085,6428],"properties":{"NAME":"Dhule","POP_MAX":479073}},{"type":"Point","coordinates":[7645,6810],"properties":{"NAME":"Dibrugarh","POP_MAX":166366}},{"type":"Point","coordinates":[7619,6655],"properties":{"NAME":"Imphal","POP_MAX":264986}},{"type":"Point","coordinates":[9999,4265],"properties":{"NAME":"Labasa","POP_MAX":24187}},{"type":"Point","coordinates":[4955,8005],"properties":{"NAME":"Rennes","POP_MAX":209375}},{"type":"Point","coordinates":[5204,7751],"properties":{"NAME":"Nice","POP_MAX":927000}},{"type":"Point","coordinates":[5042,7746],"properties":{"NAME":"Toulouse","POP_MAX":847000}},{"type":"Point","coordinates":[5037,7874],"properties":{"NAME":"Limoges","POP_MAX":152199}},{"type":"Point","coordinates":[5088,8153],"properties":{"NAME":"Lille","POP_MAX":1044000}},{"type":"Point","coordinates":[5218,8033],"properties":{"NAME":"Strasbourg","POP_MAX":439972}},{"type":"Point","coordinates":[2977,2585],"properties":{"NAME":"Puerto Aisen","POP_MAX":8067}},{"type":"Point","coordinates":[2982,2219],"properties":{"NAME":"Puerto Natales","POP_MAX":20000}},{"type":"Point","coordinates":[3118,2032],"properties":{"NAME":"Puerto Williams","POP_MAX":2500}},{"type":"Point","coordinates":[2980,2972],"properties":{"NAME":"Temuco","POP_MAX":265901}},{"type":"Point","coordinates":[3966,9018],"properties":{"NAME":"Kulusuk","POP_MAX":286}},{"type":"Point","coordinates":[3619,8811],"properties":{"NAME":"Paamiut","POP_MAX":1862}},{"type":"Point","coordinates":[4390,9303],"properties":{"NAME":"Ittoqqortoormiit","POP_MAX":469}},{"type":"Point","coordinates":[3826,8842],"properties":{"NAME":"Timmiarmiut","POP_MAX":10}},{"type":"Point","coordinates":[3720,8737],"properties":{"NAME":"Qaqortoq","POP_MAX":3224}},{"type":"Point","coordinates":[3589,9102],"properties":{"NAME":"Kangerlussuaq","POP_MAX":556}},{"type":"Point","coordinates":[4506,9954],"properties":{"NAME":"Nord","POP_MAX":10}},{"type":"Point","coordinates":[3510,9231],"properties":{"NAME":"Qeqertasuaq","POP_MAX":10}},{"type":"Point","coordinates":[3412,9514],"properties":{"NAME":"Nuussuaq","POP_MAX":204}},{"type":"Point","coordinates":[3579,9229],"properties":{"NAME":"Ilulissat","POP_MAX":4413}},{"type":"Point","coordinates":[5607,7433],"properties":{"NAME":"Patra","POP_MAX":163360}},{"type":"Point","coordinates":[6161,7628],"properties":{"NAME":"Batumi","POP_MAX":155542}},{"type":"Point","coordinates":[6228,7314],"properties":{"NAME":"Irbil","POP_MAX":926000}},{"type":"Point","coordinates":[5766,9082],"properties":{"NAME":"Kemijarvi","POP_MAX":8883}},{"type":"Point","coordinates":[5646,8917],"properties":{"NAME":"Kokkola","POP_MAX":46714}},{"type":"Point","coordinates":[5717,8753],"properties":{"NAME":"Lahti","POP_MAX":98826}},{"type":"Point","coordinates":[5831,8846],"properties":{"NAME":"Joensuu","POP_MAX":53388}},{"type":"Point","coordinates":[5622,8721],"properties":{"NAME":"Turku","POP_MAX":175945}},{"type":"Point","coordinates":[6630,8131],"properties":{"NAME":"Khromtau","POP_MAX":23715}},{"type":"Point","coordinates":[6865,8129],"properties":{"NAME":"Arqalyq","POP_MAX":55521}},{"type":"Point","coordinates":[6774,8302],"properties":{"NAME":"Oostanay","POP_MAX":236901}},{"type":"Point","coordinates":[6763,7866],"properties":{"NAME":"Baykonur","POP_MAX":36175}},{"type":"Point","coordinates":[6447,7945],"properties":{"NAME":"Balyqshy","POP_MAX":31624}},{"type":"Point","coordinates":[6906,8221],"properties":{"NAME":"Atbasar","POP_MAX":35819}},{"type":"Point","coordinates":[6936,8307],"properties":{"NAME":"Kokshetau","POP_MAX":128873}},{"type":"Point","coordinates":[7034,8119],"properties":{"NAME":"Temirtau","POP_MAX":170600}},{"type":"Point","coordinates":[6890,7987],"properties":{"NAME":"Zhezqazghan","POP_MAX":104357}},{"type":"Point","coordinates":[7104,8082],"properties":{"NAME":"Qarqaraly","POP_MAX":8195}},{"type":"Point","coordinates":[7090,7933],"properties":{"NAME":"Balqash","POP_MAX":81364}},{"type":"Point","coordinates":[6930,8398],"properties":{"NAME":"Petropavlovsk","POP_MAX":228238}},{"type":"Point","coordinates":[7242,7997],"properties":{"NAME":"Ayakoz","POP_MAX":45861}},{"type":"Point","coordinates":[7186,7826],"properties":{"NAME":"Taldyqorghan","POP_MAX":88380}},{"type":"Point","coordinates":[6630,7256],"properties":{"NAME":"Kashmar","POP_MAX":157135}},{"type":"Point","coordinates":[6628,6904],"properties":{"NAME":"Bam","POP_MAX":99268}},{"type":"Point","coordinates":[6592,6973],"properties":{"NAME":"Kerman","POP_MAX":577514}},{"type":"Point","coordinates":[7056,6643],"properties":{"NAME":"Udaipur","POP_MAX":469737}},{"type":"Point","coordinates":[6903,7727],"properties":{"NAME":"Turkistan","POP_MAX":97360}},{"type":"Point","coordinates":[7324,6768],"properties":{"NAME":"Gorakhpur","POP_MAX":674246}},{"type":"Point","coordinates":[7449,6565],"properties":{"NAME":"Barddhaman","POP_MAX":301725}},{"type":"Point","coordinates":[7468,6572],"properties":{"NAME":"Krishnanagar","POP_MAX":145926}},{"type":"Point","coordinates":[7370,6655],"properties":{"NAME":"Gaya","POP_MAX":423692}},{"type":"Point","coordinates":[6942,6473],"properties":{"NAME":"Porbandar","POP_MAX":234684}},{"type":"Point","coordinates":[3384,3343],"properties":{"NAME":"Paysandu","POP_MAX":79016}},{"type":"Point","coordinates":[3387,3397],"properties":{"NAME":"Salto","POP_MAX":105690}},{"type":"Point","coordinates":[2436,7929],"properties":{"NAME":"Duluth","POP_MAX":84800}},{"type":"Point","coordinates":[2359,7969],"properties":{"NAME":"Bemidji","POP_MAX":14796}},{"type":"Point","coordinates":[1947,8031],"properties":{"NAME":"Havre","POP_MAX":11154}},{"type":"Point","coordinates":[1818,8011],"properties":{"NAME":"Kalispell","POP_MAX":32062}},{"type":"Point","coordinates":[1881,7737],"properties":{"NAME":"Idaho Falls","POP_MAX":79399}},{"type":"Point","coordinates":[1742,7908],"properties":{"NAME":"Lewiston","POP_MAX":49289}},{"type":"Point","coordinates":[1645,7918],"properties":{"NAME":"Yakima","POP_MAX":99287}},{"type":"Point","coordinates":[1651,7966],"properties":{"NAME":"Wenatchee","POP_MAX":62625}},{"type":"Point","coordinates":[1950,7035],"properties":{"NAME":"Douglas","POP_MAX":30185}},{"type":"Point","coordinates":[1687,7267],"properties":{"NAME":"Bakersfield","POP_MAX":443129}},{"type":"Point","coordinates":[1597,7406],"properties":{"NAME":"Oakland","POP_MAX":1510271}},{"type":"Point","coordinates":[1711,7228],"properties":{"NAME":"Lancaster","POP_MAX":225799}},{"type":"Point","coordinates":[1608,7520],"properties":{"NAME":"Chico","POP_MAX":95888}},{"type":"Point","coordinates":[1607,7339],"properties":{"NAME":"Monterey","POP_MAX":124288}},{"type":"Point","coordinates":[1614,7343],"properties":{"NAME":"Salinas","POP_MAX":156784}},{"type":"Point","coordinates":[2041,7298],"properties":{"NAME":"Los Alamos","POP_MAX":12233}},{"type":"Point","coordinates":[1573,7770],"properties":{"NAME":"Eugene","POP_MAX":245158}},{"type":"Point","coordinates":[1542,7731],"properties":{"NAME":"Coos Bay","POP_MAX":31976}},{"type":"Point","coordinates":[1623,7772],"properties":{"NAME":"Bend","POP_MAX":75441}},{"type":"Point","coordinates":[1964,7798],"properties":{"NAME":"Cody","POP_MAX":9161}},{"type":"Point","coordinates":[2449,7650],"properties":{"NAME":"Cedar Rapids","POP_MAX":170621}},{"type":"Point","coordinates":[2403,7372],"properties":{"NAME":"Springfield","POP_MAX":210939}},{"type":"Point","coordinates":[2309,7583],"properties":{"NAME":"Lincoln","POP_MAX":246220}},{"type":"Point","coordinates":[2427,7032],"properties":{"NAME":"Alexandria","POP_MAX":76565}},{"type":"Point","coordinates":[2224,7098],"properties":{"NAME":"Abilene","POP_MAX":114247}},{"type":"Point","coordinates":[2286,6719],"properties":{"NAME":"Brownsville","POP_MAX":181399}},{"type":"Point","coordinates":[2347,7092],"properties":{"NAME":"Tyler","POP_MAX":112245}},{"type":"Point","coordinates":[3061,5879],"properties":{"NAME":"Coro","POP_MAX":195227}},{"type":"Point","coordinates":[3046,5896],"properties":{"NAME":"Punto Fijo","POP_MAX":234736}},{"type":"Point","coordinates":[3009,7722],"properties":{"NAME":"Concord","POP_MAX":44606}},{"type":"Point","coordinates":[2589,7230],"properties":{"NAME":"Huntsville","POP_MAX":212733}},{"type":"Point","coordinates":[2724,6640],"properties":{"NAME":"Key West","POP_MAX":29377}},{"type":"Point","coordinates":[2770,6767],"properties":{"NAME":"West Palm Beach","POP_MAX":1250000}},{"type":"Point","coordinates":[2703,6802],"properties":{"NAME":"Sarasota","POP_MAX":589959}},{"type":"Point","coordinates":[2745,6910],"properties":{"NAME":"Daytona Beach","POP_MAX":216890}},{"type":"Point","coordinates":[2709,6936],"properties":{"NAME":"Gainesville","POP_MAX":191097}},{"type":"Point","coordinates":[2722,6761],"properties":{"NAME":"Ft. Myers","POP_MAX":188606}},{"type":"Point","coordinates":[2732,7023],"properties":{"NAME":"Brunswick","POP_MAX":47085}},{"type":"Point","coordinates":[2718,7157],"properties":{"NAME":"Augusta","POP_MAX":262332}},{"type":"Point","coordinates":[2471,7092],"properties":{"NAME":"Vicksburg","POP_MAX":25701}},{"type":"Point","coordinates":[2805,7170],"properties":{"NAME":"Myrtle Beach","POP_MAX":49357}},{"type":"Point","coordinates":[2774,7118],"properties":{"NAME":"Charleston","POP_MAX":411940}},{"type":"Point","coordinates":[2504,7576],"properties":{"NAME":"Peoria","POP_MAX":172308}},{"type":"Point","coordinates":[2563,7418],"properties":{"NAME":"Evansville","POP_MAX":174102}},{"type":"Point","coordinates":[2613,7433],"properties":{"NAME":"Louisville","POP_MAX":948000}},{"type":"Point","coordinates":[2648,7423],"properties":{"NAME":"Lexington","POP_MAX":264578}},{"type":"Point","coordinates":[2750,7258],"properties":{"NAME":"Charlotte","POP_MAX":995000}},{"type":"Point","coordinates":[2755,7599],"properties":{"NAME":"Youngstown","POP_MAX":311990}},{"type":"Point","coordinates":[2735,7582],"properties":{"NAME":"Canton","POP_MAX":258660}},{"type":"Point","coordinates":[2674,7633],"properties":{"NAME":"Toledo","POP_MAX":469924}},{"type":"Point","coordinates":[2690,7535],"properties":{"NAME":"Columbus","POP_MAX":1270000}},{"type":"Point","coordinates":[2627,7250],"properties":{"NAME":"Chattanooga","POP_MAX":257589}},{"type":"Point","coordinates":[2816,7421],"properties":{"NAME":"Charlottesville","POP_MAX":87925}},{"type":"Point","coordinates":[2797,7386],"properties":{"NAME":"Lynchburg","POP_MAX":103893}},{"type":"Point","coordinates":[2505,7823],"properties":{"NAME":"Wausau","POP_MAX":75422}},{"type":"Point","coordinates":[2946,7690],"properties":{"NAME":"Albany","POP_MAX":870716}},{"type":"Point","coordinates":[2871,7677],"properties":{"NAME":"Ithaca","POP_MAX":59930}},{"type":"Point","coordinates":[2860,7552],"properties":{"NAME":"Harrisburg","POP_MAX":528892}},{"type":"Point","coordinates":[3176,5401],"properties":{"NAME":"La Esmeralda","POP_MAX":150}},{"type":"Point","coordinates":[3230,5686],"properties":{"NAME":"Ciudad Bolivar","POP_MAX":338000}},{"type":"Point","coordinates":[3285,5607],"properties":{"NAME":"El Dorado","POP_MAX":2383}},{"type":"Point","coordinates":[3119,5811],"properties":{"NAME":"Maracay","POP_MAX":1007000}},{"type":"Point","coordinates":[3086,7814],"properties":{"NAME":"Bangor","POP_MAX":50213}},{"type":"Point","coordinates":[3045,7749],"properties":{"NAME":"Portland","POP_MAX":135866}},{"type":"Point","coordinates":[2663,7734],"properties":{"NAME":"Saginaw","POP_MAX":121379}},{"type":"Point","coordinates":[5300,7231],"properties":{"NAME":"Sfax","POP_MAX":453050}},{"type":"Point","coordinates":[6223,6199],"properties":{"NAME":"Sadah","POP_MAX":105542}},{"type":"Point","coordinates":[6198,6075],"properties":{"NAME":"Al Hudaydah","POP_MAX":780000}},{"type":"Point","coordinates":[1334,8426],"properties":{"NAME":"Ketchikan","POP_MAX":9070}},{"type":"Point","coordinates":[363,8340],"properties":{"NAME":"Unalaska","POP_MAX":3571}},{"type":"Point","coordinates":[535,8641],"properties":{"NAME":"Togiak","POP_MAX":236}},{"type":"Point","coordinates":[620,8797],"properties":{"NAME":"Red Devil","POP_MAX":25}},{"type":"Point","coordinates":[375,8784],"properties":{"NAME":"Hooper Bay","POP_MAX":1079}},{"type":"Point","coordinates":[544,9312],"properties":{"NAME":"Wainwright","POP_MAX":174}},{"type":"Point","coordinates":[631,8970],"properties":{"NAME":"Galena","POP_MAX":500}},{"type":"Point","coordinates":[1002,9280],"properties":{"NAME":"Kaktovik","POP_MAX":101}},{"type":"Point","coordinates":[1233,8664],"properties":{"NAME":"Skagway","POP_MAX":955}},{"type":"Point","coordinates":[942,8727],"properties":{"NAME":"Cordova","POP_MAX":2257}},{"type":"Point","coordinates":[789,8727],"properties":{"NAME":"Kenai","POP_MAX":7610}},{"type":"Point","coordinates":[955,9076],"properties":{"NAME":"Fort Yukon","POP_MAX":833}},{"type":"Point","coordinates":[5953,7797],"properties":{"NAME":"Yalta","POP_MAX":79509}},{"type":"Point","coordinates":[5840,8196],"properties":{"NAME":"Chernobyl","POP_MAX":0}},{"type":"Point","coordinates":[5971,8169],"properties":{"NAME":"Sumy","POP_MAX":294456}},{"type":"Point","coordinates":[6048,7947],"properties":{"NAME":"Mariupol","POP_MAX":481626}},{"type":"Point","coordinates":[6429,6099],"properties":{"NAME":"Sayhut","POP_MAX":189}},{"type":"Point","coordinates":[6370,6060],"properties":{"NAME":"Al Mukalla","POP_MAX":258132}},{"type":"Point","coordinates":[6672,7642],"properties":{"NAME":"Dasoguz","POP_MAX":201424}},{"type":"Point","coordinates":[6691,7626],"properties":{"NAME":"Urgentch","POP_MAX":150110}},{"type":"Point","coordinates":[7742,5673],"properties":{"NAME":"Phuket","POP_MAX":141618}},{"type":"Point","coordinates":[8010,6027],"properties":{"NAME":"Play Ku","POP_MAX":142900}},{"type":"Point","coordinates":[8043,5927],"properties":{"NAME":"Nha Trang","POP_MAX":411556}},{"type":"Point","coordinates":[8044,5907],"properties":{"NAME":"Cam Ranh","POP_MAX":146771}},{"type":"Point","coordinates":[8043,6016],"properties":{"NAME":"Qui Nhon","POP_MAX":805290}},{"type":"Point","coordinates":[7998,6172],"properties":{"NAME":"Hue","POP_MAX":950000}},{"type":"Point","coordinates":[7978,5853],"properties":{"NAME":"Bien Hoa","POP_MAX":652646}},{"type":"Point","coordinates":[7948,5799],"properties":{"NAME":"Can Tho","POP_MAX":1121000}},{"type":"Point","coordinates":[5807,4568],"properties":{"NAME":"Mansa","POP_MAX":42277}},{"type":"Point","coordinates":[5878,4531],"properties":{"NAME":"Mpika","POP_MAX":28445}},{"type":"Point","coordinates":[5876,4704],"properties":{"NAME":"Mbala","POP_MAX":20570}},{"type":"Point","coordinates":[5793,4456],"properties":{"NAME":"Luanshya","POP_MAX":151993}},{"type":"Point","coordinates":[5800,4463],"properties":{"NAME":"Ndola","POP_MAX":396339}},{"type":"Point","coordinates":[5646,4432],"properties":{"NAME":"Zambezi","POP_MAX":7074}},{"type":"Point","coordinates":[5787,4302],"properties":{"NAME":"Kafue","POP_MAX":47554}},{"type":"Point","coordinates":[5775,4297],"properties":{"NAME":"Mazabuka","POP_MAX":64006}},{"type":"Point","coordinates":[5740,4152],"properties":{"NAME":"Hwange","POP_MAX":33989}},{"type":"Point","coordinates":[5832,4089],"properties":{"NAME":"Gweru","POP_MAX":183358}},{"type":"Point","coordinates":[5911,4117],"properties":{"NAME":"Mutare","POP_MAX":249365}},{"type":"Point","coordinates":[5835,4154],"properties":{"NAME":"Kadoma","POP_MAX":79174}},{"type":"Point","coordinates":[3754,4972],"properties":{"NAME":"Bacabal","POP_MAX":72372}},{"type":"Point","coordinates":[3699,5156],"properties":{"NAME":"Braganca","POP_MAX":57163}},{"type":"Point","coordinates":[3455,5106],"properties":{"NAME":"Obidos","POP_MAX":27587}},{"type":"Point","coordinates":[3182,4591],"properties":{"NAME":"Guajara-Miram","POP_MAX":69586}},{"type":"Point","coordinates":[3653,4597],"properties":{"NAME":"Porto Nacional","POP_MAX":9129}},{"type":"Point","coordinates":[3475,3928],"properties":{"NAME":"Dourados","POP_MAX":162202}},{"type":"Point","coordinates":[3833,4123],"properties":{"NAME":"Governador Valadares","POP_MAX":250878}},{"type":"Point","coordinates":[3750,4212],"properties":{"NAME":"Pirapora","POP_MAX":60164}},{"type":"Point","coordinates":[3794,3955],"properties":{"NAME":"Juiz de Fora","POP_MAX":470193}},{"type":"Point","coordinates":[3503,3496],"properties":{"NAME":"Santa Maria","POP_MAX":249219}},{"type":"Point","coordinates":[3542,3579],"properties":{"NAME":"Passo Fundo","POP_MAX":179529}},{"type":"Point","coordinates":[3536,3646],"properties":{"NAME":"Xapeco","POP_MAX":160157}},{"type":"Point","coordinates":[3641,3691],"properties":{"NAME":"Joinville","POP_MAX":988000}},{"type":"Point","coordinates":[3907,4799],"properties":{"NAME":"Juazeiro do Norte","POP_MAX":225230}},{"type":"Point","coordinates":[3905,4180],"properties":{"NAME":"Nova Vicosa","POP_MAX":55980}},{"type":"Point","coordinates":[3931,4513],"properties":{"NAME":"Alagoinhas","POP_MAX":124070}},{"type":"Point","coordinates":[3874,4671],"properties":{"NAME":"Juazeiro","POP_MAX":95132}},{"type":"Point","coordinates":[3877,4039],"properties":{"NAME":"Vit�ria","POP_MAX":1704000}},{"type":"Point","coordinates":[4030,4805],"properties":{"NAME":"Joao Pessoa","POP_MAX":956000}},{"type":"Point","coordinates":[4002,4798],"properties":{"NAME":"Campina Grande","POP_MAX":417261}},{"type":"Point","coordinates":[3817,3926],"properties":{"NAME":"Nova Friburgo","POP_MAX":171991}},{"type":"Point","coordinates":[2170,8572],"properties":{"NAME":"Brochet","POP_MAX":278}},{"type":"Point","coordinates":[2187,8513],"properties":{"NAME":"Lynn Lake","POP_MAX":482}},{"type":"Point","coordinates":[2364,8484],"properties":{"NAME":"Gillam","POP_MAX":1281}},{"type":"Point","coordinates":[1986,8276],"properties":{"NAME":"North Battleford","POP_MAX":19440}},{"type":"Point","coordinates":[2056,8301],"properties":{"NAME":"Prince Albert","POP_MAX":34609}},{"type":"Point","coordinates":[1520,8097],"properties":{"NAME":"Courtenay","POP_MAX":32793}},{"type":"Point","coordinates":[1674,8110],"properties":{"NAME":"Kelowna","POP_MAX":125109}},{"type":"Point","coordinates":[3170,9051],"properties":{"NAME":"Pangnirtung","POP_MAX":1320}},{"type":"Point","coordinates":[1722,9317],"properties":{"NAME":"Holman","POP_MAX":500}},{"type":"Point","coordinates":[3337,5692],"properties":{"NAME":"Mabaruma","POP_MAX":2972}},{"type":"Point","coordinates":[3399,5579],"properties":{"NAME":"New Amsterdam","POP_MAX":46874}},{"type":"Point","coordinates":[2416,8103],"properties":{"NAME":"Dryden","POP_MAX":7862}},{"type":"Point","coordinates":[2706,8284],"properties":{"NAME":"Attawapiskat","POP_MAX":1802}},{"type":"Point","coordinates":[2778,7724],"properties":{"NAME":"Hamilton","POP_MAX":721053}},{"type":"Point","coordinates":[2689,7671],"properties":{"NAME":"Windsor","POP_MAX":319246}},{"type":"Point","coordinates":[2981,7904],"properties":{"NAME":"Trois-Rivi�res","POP_MAX":119693}},{"type":"Point","coordinates":[3153,8134],"properties":{"NAME":"Sept-�les","POP_MAX":25686}},{"type":"Point","coordinates":[3388,8055],"properties":{"NAME":"Corner Brook","POP_MAX":20791}},{"type":"Point","coordinates":[4357,9048],"properties":{"NAME":"�safj�r�ur","POP_MAX":2534}},{"type":"Point","coordinates":[4498,9024],"properties":{"NAME":"Akureyi","POP_MAX":16563}},{"type":"Point","coordinates":[4373,8928],"properties":{"NAME":"Keflav�k","POP_MAX":7930}},{"type":"Point","coordinates":[3015,2730],"properties":{"NAME":"Esquel","POP_MAX":20048}},{"type":"Point","coordinates":[3050,2962],"properties":{"NAME":"Zapala","POP_MAX":19152}},{"type":"Point","coordinates":[3159,4208],"properties":{"NAME":"Cochabamba","POP_MAX":1000000}},{"type":"Point","coordinates":[3321,3078],"properties":{"NAME":"Olavarria","POP_MAX":86320}},{"type":"Point","coordinates":[3354,3053],"properties":{"NAME":"Tandil","POP_MAX":104325}},{"type":"Point","coordinates":[3247,2852],"properties":{"NAME":"Viedma","POP_MAX":59122}},{"type":"Point","coordinates":[3154,3286],"properties":{"NAME":"San Luis","POP_MAX":432310}},{"type":"Point","coordinates":[3209,3296],"properties":{"NAME":"Rio Cuarto","POP_MAX":153757}},{"type":"Point","coordinates":[3183,3815],"properties":{"NAME":"San Salvador de Jujuy","POP_MAX":305891}},{"type":"Point","coordinates":[3210,3875],"properties":{"NAME":"San Ramon de la Nueva Oran","POP_MAX":74059}},{"type":"Point","coordinates":[3351,3528],"properties":{"NAME":"Goya","POP_MAX":72304}},{"type":"Point","coordinates":[3597,3987],"properties":{"NAME":"Aracatuba","POP_MAX":170024}},{"type":"Point","coordinates":[5125,8186],"properties":{"NAME":"Antwerpen","POP_MAX":920000}},{"type":"Point","coordinates":[6883,7235],"properties":{"NAME":"Bamian","POP_MAX":61863}},{"type":"Point","coordinates":[6915,7312],"properties":{"NAME":"Baghlan","POP_MAX":218748}},{"type":"Point","coordinates":[3132,4175],"properties":{"NAME":"Oruro","POP_MAX":246501}},{"type":"Point","coordinates":[3233,4055],"properties":{"NAME":"Camiri","POP_MAX":27961}},{"type":"Point","coordinates":[5852,7524],"properties":{"NAME":"Eskisehir","POP_MAX":514869}},{"type":"Point","coordinates":[5857,7356],"properties":{"NAME":"Antalya","POP_MAX":783000}},{"type":"Point","coordinates":[5990,7462],"properties":{"NAME":"Kayseri","POP_MAX":592840}},{"type":"Point","coordinates":[5865,8256],"properties":{"NAME":"Homyel","POP_MAX":480951}},{"type":"Point","coordinates":[8740,4078],"properties":{"NAME":"Tennant Creek","POP_MAX":3889}},{"type":"Point","coordinates":[8651,3754],"properties":{"NAME":"Yulara","POP_MAX":930}},{"type":"Point","coordinates":[8712,3754],"properties":{"NAME":"Erldunda","POP_MAX":10}},{"type":"Point","coordinates":[8394,3350],"properties":{"NAME":"Norseman","POP_MAX":1004}},{"type":"Point","coordinates":[8561,4158],"properties":{"NAME":"Halls Creek","POP_MAX":1209}},{"type":"Point","coordinates":[8588,4303],"properties":{"NAME":"Kununurra","POP_MAX":5679}},{"type":"Point","coordinates":[8455,4214],"properties":{"NAME":"Derby","POP_MAX":3199}},{"type":"Point","coordinates":[8208,3961],"properties":{"NAME":"Onslow","POP_MAX":573}},{"type":"Point","coordinates":[8181,3946],"properties":{"NAME":"Exmouth","POP_MAX":1085}},{"type":"Point","coordinates":[8168,3773],"properties":{"NAME":"Carnarvon","POP_MAX":7392}},{"type":"Point","coordinates":[8337,3862],"properties":{"NAME":"Newman","POP_MAX":5138}},{"type":"Point","coordinates":[8302,3675],"properties":{"NAME":"Meekatharra","POP_MAX":654}},{"type":"Point","coordinates":[8226,3505],"properties":{"NAME":"Three Springs","POP_MAX":190}},{"type":"Point","coordinates":[8237,3232],"properties":{"NAME":"Manjimup","POP_MAX":4240}},{"type":"Point","coordinates":[8251,3382],"properties":{"NAME":"Northam","POP_MAX":5855}},{"type":"Point","coordinates":[8397,3254],"properties":{"NAME":"Esperance","POP_MAX":7888}},{"type":"Point","coordinates":[8381,3543],"properties":{"NAME":"Leonara","POP_MAX":227}},{"type":"Point","coordinates":[8411,3557],"properties":{"NAME":"Laverton","POP_MAX":316}},{"type":"Point","coordinates":[8577,4326],"properties":{"NAME":"Wyndham","POP_MAX":800}},{"type":"Point","coordinates":[9094,3126],"properties":{"NAME":"Albury","POP_MAX":104258}},{"type":"Point","coordinates":[9250,3351],"properties":{"NAME":"Forster-Tuncurry","POP_MAX":17591}},{"type":"Point","coordinates":[9261,3394],"properties":{"NAME":"Port Macquarie","POP_MAX":48547}},{"type":"Point","coordinates":[9206,3414],"properties":{"NAME":"Tamworth","POP_MAX":38551}},{"type":"Point","coordinates":[9262,3494],"properties":{"NAME":"Grafton","POP_MAX":9955}},{"type":"Point","coordinates":[9175,3508],"properties":{"NAME":"Moree","POP_MAX":8203}},{"type":"Point","coordinates":[9189,3562],"properties":{"NAME":"Goondiwindi","POP_MAX":4251}},{"type":"Point","coordinates":[9272,3546],"properties":{"NAME":"Lismore","POP_MAX":31430}},{"type":"Point","coordinates":[9205,3222],"properties":{"NAME":"Wollongong","POP_MAX":260914}},{"type":"Point","coordinates":[8725,3356],"properties":{"NAME":"Ceduna","POP_MAX":1586}},{"type":"Point","coordinates":[8923,3024],"properties":{"NAME":"Mount Gambier","POP_MAX":23209}},{"type":"Point","coordinates":[8839,3333],"properties":{"NAME":"Port Augusta","POP_MAX":13897}},{"type":"Point","coordinates":[8970,2992],"properties":{"NAME":"Warrnambool","POP_MAX":29928}},{"type":"Point","coordinates":[8961,3235],"properties":{"NAME":"Mildura","POP_MAX":47867}},{"type":"Point","coordinates":[9024,3004],"properties":{"NAME":"Geelong","POP_MAX":160991}},{"type":"Point","coordinates":[8849,4062],"properties":{"NAME":"Camooweal","POP_MAX":187}},{"type":"Point","coordinates":[9020,3674],"properties":{"NAME":"Quilpie","POP_MAX":560}},{"type":"Point","coordinates":[9076,3686],"properties":{"NAME":"Charleville","POP_MAX":1900}},{"type":"Point","coordinates":[9018,4008],"properties":{"NAME":"Hughenden","POP_MAX":421}},{"type":"Point","coordinates":[9267,3663],"properties":{"NAME":"Caloundra","POP_MAX":38706}},{"type":"Point","coordinates":[9146,3677],"properties":{"NAME":"Roma","POP_MAX":5496}},{"type":"Point","coordinates":[9235,3619],"properties":{"NAME":"Toowoomba","POP_MAX":92800}},{"type":"Point","coordinates":[9000,4156],"properties":{"NAME":"Georgetown","POP_MAX":818}},{"type":"Point","coordinates":[9008,3594],"properties":{"NAME":"Thargomindah","POP_MAX":203}},{"type":"Point","coordinates":[8953,4483],"properties":{"NAME":"Weipa","POP_MAX":2830}},{"type":"Point","coordinates":[8925,4203],"properties":{"NAME":"Karumba","POP_MAX":173}},{"type":"Point","coordinates":[8915,4017],"properties":{"NAME":"Cloncurry","POP_MAX":1202}},{"type":"Point","coordinates":[9256,3736],"properties":{"NAME":"Maryborough","POP_MAX":20678}},{"type":"Point","coordinates":[9246,3775],"properties":{"NAME":"Bundaberg","POP_MAX":52472}},{"type":"Point","coordinates":[9215,3834],"properties":{"NAME":"Gladstone","POP_MAX":30489}},{"type":"Point","coordinates":[9130,4057],"properties":{"NAME":"Bowen","POP_MAX":10983}},{"type":"Point","coordinates":[9070,4201],"properties":{"NAME":"Innisfail","POP_MAX":10143}},{"type":"Point","coordinates":[9156,3991],"properties":{"NAME":"Mackay","POP_MAX":75922}},{"type":"Point","coordinates":[9066,2836],"properties":{"NAME":"Burnie","POP_MAX":19972}},{"type":"Point","coordinates":[9100,2814],"properties":{"NAME":"Launceston","POP_MAX":72458}},{"type":"Point","coordinates":[4970,8704],"properties":{"NAME":"Lerwick","POP_MAX":6594}},{"type":"Point","coordinates":[6043,7366],"properties":{"NAME":"Gaziantep","POP_MAX":1044000}},{"type":"Point","coordinates":[7489,6710],"properties":{"NAME":"Rangpur","POP_MAX":285564}},{"type":"Point","coordinates":[7690,6221],"properties":{"NAME":"Bago","POP_MAX":284318}},{"type":"Point","coordinates":[7688,6288],"properties":{"NAME":"Pyu","POP_MAX":40386}},{"type":"Point","coordinates":[7654,6308],"properties":{"NAME":"Pyay","POP_MAX":135308}},{"type":"Point","coordinates":[7646,6385],"properties":{"NAME":"Magway","POP_MAX":125973}},{"type":"Point","coordinates":[7715,6687],"properties":{"NAME":"Myitkyina","POP_MAX":139100}},{"type":"Point","coordinates":[7652,6498],"properties":{"NAME":"Monywa","POP_MAX":226222}},{"type":"Point","coordinates":[4870,7631],"properties":{"NAME":"Valladolid","POP_MAX":322304}},{"type":"Point","coordinates":[5091,5973],"properties":{"NAME":"Dosso","POP_MAX":49750}},{"type":"Point","coordinates":[6025,7230],"properties":{"NAME":"Hims","POP_MAX":1005000}},{"type":"Point","coordinates":[5765,5725],"properties":{"NAME":"Aweil","POP_MAX":46705}},{"type":"Point","coordinates":[6053,6285],"properties":{"NAME":"Tokar","POP_MAX":73202}},{"type":"Point","coordinates":[5437,8603],"properties":{"NAME":"Link�ping","POP_MAX":96732}},{"type":"Point","coordinates":[5410,8880],"properties":{"NAME":"�stersund","POP_MAX":46178}},{"type":"Point","coordinates":[5565,9150],"properties":{"NAME":"Kiruna","POP_MAX":18154}},{"type":"Point","coordinates":[5566,8917],"properties":{"NAME":"Ume�","POP_MAX":78197}},{"type":"Point","coordinates":[5493,8687],"properties":{"NAME":"Uppsala","POP_MAX":133117}},{"type":"Point","coordinates":[5659,7929],"properties":{"NAME":"Cluj-Napoca","POP_MAX":316748}},{"type":"Point","coordinates":[7786,5704],"properties":{"NAME":"Nakhon Si Thammarat","POP_MAX":232335}},{"type":"Point","coordinates":[7803,5635],"properties":{"NAME":"Songkhla","POP_MAX":48616}},{"type":"Point","coordinates":[7800,5622],"properties":{"NAME":"Hat Yai","POP_MAX":317954}},{"type":"Point","coordinates":[7789,6127],"properties":{"NAME":"Nakhon Sawan","POP_MAX":111915}},{"type":"Point","coordinates":[7922,6101],"properties":{"NAME":"Ubon Ratchathani","POP_MAX":273893}},{"type":"Point","coordinates":[2742,4922],"properties":{"NAME":"Paita","POP_MAX":56151}},{"type":"Point","coordinates":[2738,4951],"properties":{"NAME":"Talara","POP_MAX":99074}},{"type":"Point","coordinates":[2761,5010],"properties":{"NAME":"Tumbes","POP_MAX":109223}},{"type":"Point","coordinates":[3075,4486],"properties":{"NAME":"Puerto Maldonado","POP_MAX":67155}},{"type":"Point","coordinates":[3015,4194],"properties":{"NAME":"Ilo","POP_MAX":53476}},{"type":"Point","coordinates":[3026,4220],"properties":{"NAME":"Moquegua","POP_MAX":54517}},{"type":"Point","coordinates":[2842,4664],"properties":{"NAME":"Huaraz","POP_MAX":86934}},{"type":"Point","coordinates":[2814,4802],"properties":{"NAME":"Cajamarca","POP_MAX":142665}},{"type":"Point","coordinates":[2878,4642],"properties":{"NAME":"Huanuco","POP_MAX":158145}},{"type":"Point","coordinates":[2785,4788],"properties":{"NAME":"Pacasmayo","POP_MAX":39282}},{"type":"Point","coordinates":[2802,4740],"properties":{"NAME":"Salaverry","POP_MAX":10066}},{"type":"Point","coordinates":[2906,5210],"properties":{"NAME":"Gueppi","POP_MAX":10}},{"type":"Point","coordinates":[2912,4791],"properties":{"NAME":"Contamana","POP_MAX":18921}},{"type":"Point","coordinates":[2913,4475],"properties":{"NAME":"Huancavelica","POP_MAX":44388}},{"type":"Point","coordinates":[2879,4422],"properties":{"NAME":"Pisco","POP_MAX":81207}},{"type":"Point","coordinates":[2914,4357],"properties":{"NAME":"Nasca","POP_MAX":23556}},{"type":"Point","coordinates":[3330,3922],"properties":{"NAME":"Filadelfia","POP_MAX":10470}},{"type":"Point","coordinates":[2669,5913],"properties":{"NAME":"Bluefields","POP_MAX":44373}},{"type":"Point","coordinates":[4920,7263],"properties":{"NAME":"Melilla","POP_MAX":141308}},{"type":"Point","coordinates":[4532,7110],"properties":{"NAME":"Funchal","POP_MAX":204767}},{"type":"Point","coordinates":[4675,5679],"properties":{"NAME":"Bo","POP_MAX":174354}},{"type":"Point","coordinates":[4548,5947],"properties":{"NAME":"Ziguinchor","POP_MAX":191716}},{"type":"Point","coordinates":[5206,6308],"properties":{"NAME":"Arlit","POP_MAX":100000}},{"type":"Point","coordinates":[5345,6435],"properties":{"NAME":"Djado","POP_MAX":10}},{"type":"Point","coordinates":[5076,7511],"properties":{"NAME":"Palma","POP_MAX":375773}},{"type":"Point","coordinates":[6018,6738],"properties":{"NAME":"Al Wajh","POP_MAX":43237}},{"type":"Point","coordinates":[5829,5611],"properties":{"NAME":"Rumbek","POP_MAX":32083}},{"type":"Point","coordinates":[5793,5482],"properties":{"NAME":"Yambio","POP_MAX":40382}},{"type":"Point","coordinates":[5881,5577],"properties":{"NAME":"Bor","POP_MAX":26782}},{"type":"Point","coordinates":[5936,6052],"properties":{"NAME":"Medani","POP_MAX":332714}},{"type":"Point","coordinates":[5987,6031],"properties":{"NAME":"Gedaref","POP_MAX":201282}},{"type":"Point","coordinates":[5948,6237],"properties":{"NAME":"EdDamer","POP_MAX":103941}},{"type":"Point","coordinates":[5948,6244],"properties":{"NAME":"Atbara","POP_MAX":168612}},{"type":"Point","coordinates":[5875,6481],"properties":{"NAME":"Wadi Halfa","POP_MAX":17121}},{"type":"Point","coordinates":[5888,6288],"properties":{"NAME":"Merowe","POP_MAX":10234}},{"type":"Point","coordinates":[5912,5980],"properties":{"NAME":"Kosti","POP_MAX":345068}},{"type":"Point","coordinates":[5938,6002],"properties":{"NAME":"Sennar","POP_MAX":130122}},{"type":"Point","coordinates":[5708,6007],"properties":{"NAME":"El Fasher","POP_MAX":252609}},{"type":"Point","coordinates":[5829,5855],"properties":{"NAME":"Kadugli","POP_MAX":176931}},{"type":"Point","coordinates":[6186,6274],"properties":{"NAME":"Abha","POP_MAX":210886}},{"type":"Point","coordinates":[6187,6197],"properties":{"NAME":"Jizan","POP_MAX":105198}},{"type":"Point","coordinates":[5895,5426],"properties":{"NAME":"Nimule","POP_MAX":242}},{"type":"Point","coordinates":[5202,8854],"properties":{"NAME":"Molde","POP_MAX":18594}},{"type":"Point","coordinates":[5294,8761],"properties":{"NAME":"Lillehammer","POP_MAX":19542}},{"type":"Point","coordinates":[5839,9259],"properties":{"NAME":"Kirkenes","POP_MAX":3282}},{"type":"Point","coordinates":[6271,6403],"properties":{"NAME":"As Sulayyil","POP_MAX":24097}},{"type":"Point","coordinates":[5670,3440],"properties":{"NAME":"De Aar","POP_MAX":32318}},{"type":"Point","coordinates":[5462,3558],"properties":{"NAME":"Alexander Bay","POP_MAX":1500}},{"type":"Point","coordinates":[5692,3550],"properties":{"NAME":"Kimberley","POP_MAX":165264}},{"type":"Point","coordinates":[5620,3270],"properties":{"NAME":"Oudtshoorn","POP_MAX":76708}},{"type":"Point","coordinates":[5524,3384],"properties":{"NAME":"Vanhynsdorp","POP_MAX":3331}},{"type":"Point","coordinates":[5501,3303],"properties":{"NAME":"Saldanha","POP_MAX":68284}},{"type":"Point","coordinates":[5618,3236],"properties":{"NAME":"Mossel Bay","POP_MAX":16743}},{"type":"Point","coordinates":[5934,4108],"properties":{"NAME":"Chimoio","POP_MAX":256936}},{"type":"Point","coordinates":[5983,4446],"properties":{"NAME":"Lichinga","POP_MAX":109839}},{"type":"Point","coordinates":[6114,4276],"properties":{"NAME":"Angoche","POP_MAX":57835}},{"type":"Point","coordinates":[6135,4345],"properties":{"NAME":"Mocambique","POP_MAX":54315}},{"type":"Point","coordinates":[5691,3654],"properties":{"NAME":"Vryburg","POP_MAX":49588}},{"type":"Point","coordinates":[5761,3730],"properties":{"NAME":"Rustenburg","POP_MAX":165976}},{"type":"Point","coordinates":[5715,3719],"properties":{"NAME":"Mmabatho","POP_MAX":104428}},{"type":"Point","coordinates":[5743,3659],"properties":{"NAME":"Klerksdorp","POP_MAX":178921}},{"type":"Point","coordinates":[5760,3613],"properties":{"NAME":"Kroonstad","POP_MAX":103992}},{"type":"Point","coordinates":[5822,3832],"properties":{"NAME":"Polokwane","POP_MAX":220045}},{"type":"Point","coordinates":[5851,3886],"properties":{"NAME":"Thohoyandou","POP_MAX":269707}},{"type":"Point","coordinates":[5838,3922],"properties":{"NAME":"Musina","POP_MAX":20191}},{"type":"Point","coordinates":[5860,3608],"properties":{"NAME":"Vryheid","POP_MAX":150012}},{"type":"Point","coordinates":[5848,3500],"properties":{"NAME":"Pietermaritzburg","POP_MAX":750845}},{"type":"Point","coordinates":[9003,5011],"properties":{"NAME":"Wewak","POP_MAX":25143}},{"type":"Point","coordinates":[9063,4914],"properties":{"NAME":"Madang","POP_MAX":62023}},{"type":"Point","coordinates":[9203,5067],"properties":{"NAME":"Kavieng","POP_MAX":19728}},{"type":"Point","coordinates":[2694,5697],"properties":{"NAME":"Puerto Armuelles","POP_MAX":27147}},{"type":"Point","coordinates":[4839,7289],"properties":{"NAME":"Tangier","POP_MAX":750060}},{"type":"Point","coordinates":[4734,6982],"properties":{"NAME":"Agadir","POP_MAX":825467}},{"type":"Point","coordinates":[5986,3834],"properties":{"NAME":"Inhambane","POP_MAX":115776}},{"type":"Point","coordinates":[5804,3386],"properties":{"NAME":"Umtata","POP_MAX":137772}},{"type":"Point","coordinates":[5685,3344],"properties":{"NAME":"Graaff Reinet","POP_MAX":62896}},{"type":"Point","coordinates":[5765,3311],"properties":{"NAME":"Bhisho","POP_MAX":160997}},{"type":"Point","coordinates":[6218,5398],"properties":{"NAME":"Baydhabo","POP_MAX":129839}},{"type":"Point","coordinates":[6251,5320],"properties":{"NAME":"Marka","POP_MAX":1958}},{"type":"Point","coordinates":[177,8952],"properties":{"NAME":"Provideniya","POP_MAX":2536}},{"type":"Point","coordinates":[272,9052],"properties":{"NAME":"Uelen","POP_MAX":776}},{"type":"Point","coordinates":[5905,9110],"properties":{"NAME":"Kandalaksha","POP_MAX":106798}},{"type":"Point","coordinates":[5803,8736],"properties":{"NAME":"Vyborg","POP_MAX":117201}},{"type":"Point","coordinates":[5957,8823],"properties":{"NAME":"Kondopoga","POP_MAX":34360}},{"type":"Point","coordinates":[6572,9310],"properties":{"NAME":"Rusanovo","POP_MAX":10}},{"type":"Point","coordinates":[6234,9034],"properties":{"NAME":"Mezen","POP_MAX":3672}},{"type":"Point","coordinates":[6174,8757],"properties":{"NAME":"Velsk","POP_MAX":26300}},{"type":"Point","coordinates":[6302,8768],"properties":{"NAME":"Kotlas","POP_MAX":59879}},{"type":"Point","coordinates":[6062,8923],"properties":{"NAME":"Onega","POP_MAX":22693}},{"type":"Point","coordinates":[6144,8522],"properties":{"NAME":"Ivanovo","POP_MAX":420839}},{"type":"Point","coordinates":[6142,8566],"properties":{"NAME":"Kostroma","POP_MAX":277656}},{"type":"Point","coordinates":[6292,8740],"properties":{"NAME":"Velikiy Ustyug","POP_MAX":33237}},{"type":"Point","coordinates":[6106,8267],"properties":{"NAME":"Lipetsk","POP_MAX":515655}},{"type":"Point","coordinates":[6007,8288],"properties":{"NAME":"Orel","POP_MAX":334552}},{"type":"Point","coordinates":[6176,7971],"properties":{"NAME":"Volgodonsk","POP_MAX":167731}},{"type":"Point","coordinates":[6021,8152],"properties":{"NAME":"Belgorod","POP_MAX":345289}},{"type":"Point","coordinates":[6054,7810],"properties":{"NAME":"Novorossiysk","POP_MAX":241856}},{"type":"Point","coordinates":[6127,8471],"properties":{"NAME":"Vladimir","POP_MAX":318648}},{"type":"Point","coordinates":[6549,8430],"properties":{"NAME":"Birsk","POP_MAX":41014}},{"type":"Point","coordinates":[6663,8415],"properties":{"NAME":"Zlatoust","POP_MAX":191366}},{"type":"Point","coordinates":[6720,9261],"properties":{"NAME":"Amderma","POP_MAX":282}},{"type":"Point","coordinates":[6480,9138],"properties":{"NAME":"Naryan Mar","POP_MAX":21658}},{"type":"Point","coordinates":[6678,9045],"properties":{"NAME":"Inta","POP_MAX":22921}},{"type":"Point","coordinates":[6601,9038],"properties":{"NAME":"Usinsk","POP_MAX":45000}},{"type":"Point","coordinates":[6595,8994],"properties":{"NAME":"Pechora","POP_MAX":46113}},{"type":"Point","coordinates":[6672,8516],"properties":{"NAME":"Pervouralsk","POP_MAX":133600}},{"type":"Point","coordinates":[6485,8513],"properties":{"NAME":"Izhevsk","POP_MAX":631038}},{"type":"Point","coordinates":[6288,8016],"properties":{"NAME":"Akhtubinsk","POP_MAX":44551}},{"type":"Point","coordinates":[6233,7903],"properties":{"NAME":"Elista","POP_MAX":106971}},{"type":"Point","coordinates":[6275,8174],"properties":{"NAME":"Krasnoarmeysk","POP_MAX":25841}},{"type":"Point","coordinates":[6604,6546],"properties":{"NAME":"Nizwa","POP_MAX":72076}},{"type":"Point","coordinates":[6660,6526],"properties":{"NAME":"Sur","POP_MAX":71152}},{"type":"Point","coordinates":[6319,5435],"properties":{"NAME":"Mereeg","POP_MAX":548}},{"type":"Point","coordinates":[6261,5492],"properties":{"NAME":"Beledweyne","POP_MAX":62945}},{"type":"Point","coordinates":[6372,5871],"properties":{"NAME":"Boosaaso","POP_MAX":46969}},{"type":"Point","coordinates":[6417,5767],"properties":{"NAME":"Bandarbeyla","POP_MAX":13753}},{"type":"Point","coordinates":[6323,5609],"properties":{"NAME":"Gaalkacyo","POP_MAX":61200}},{"type":"Point","coordinates":[6390,5680],"properties":{"NAME":"Eyl","POP_MAX":18904}},{"type":"Point","coordinates":[6353,5704],"properties":{"NAME":"Garoowe","POP_MAX":2568}},{"type":"Point","coordinates":[7241,5701],"properties":{"NAME":"Anuradhapura","POP_MAX":118302}},{"type":"Point","coordinates":[7230,5778],"properties":{"NAME":"Jaffna","POP_MAX":250000}},{"type":"Point","coordinates":[8427,5833],"properties":{"NAME":"Bacolod","POP_MAX":949354}},{"type":"Point","coordinates":[8421,5888],"properties":{"NAME":"Roxas","POP_MAX":102688}},{"type":"Point","coordinates":[8309,5782],"properties":{"NAME":"Puerto Princesa","POP_MAX":157144}},{"type":"Point","coordinates":[8433,6006],"properties":{"NAME":"Naga","POP_MAX":741635}},{"type":"Point","coordinates":[8360,6095],"properties":{"NAME":"Angeles","POP_MAX":314493}},{"type":"Point","coordinates":[8373,6016],"properties":{"NAME":"Batangas","POP_MAX":424508}},{"type":"Point","coordinates":[8463,5635],"properties":{"NAME":"Cotabato","POP_MAX":279519}},{"type":"Point","coordinates":[8473,5916],"properties":{"NAME":"Calbayog","POP_MAX":67921}},{"type":"Point","coordinates":[8475,5707],"properties":{"NAME":"Cagayan de Oro","POP_MAX":1121561}},{"type":"Point","coordinates":[6193,5221],"properties":{"NAME":"Jamaame","POP_MAX":185270}},{"type":"Point","coordinates":[6186,5196],"properties":{"NAME":"Kismaayo","POP_MAX":234852}},{"type":"Point","coordinates":[1941,6544],"properties":{"NAME":"Cabo San Lucas","POP_MAX":42601}},{"type":"Point","coordinates":[2177,6776],"properties":{"NAME":"Monclova","POP_MAX":236244}},{"type":"Point","coordinates":[2260,6184],"properties":{"NAME":"Ometepec","POP_MAX":30271}},{"type":"Point","coordinates":[2580,6406],"properties":{"NAME":"Cozumel","POP_MAX":73934}},{"type":"Point","coordinates":[4542,6146],"properties":{"NAME":"Saint-Louis","POP_MAX":220792}},{"type":"Point","coordinates":[4684,6292],"properties":{"NAME":"Tidjikdja","POP_MAX":19981}},{"type":"Point","coordinates":[5129,5709],"properties":{"NAME":"Ilorin","POP_MAX":771000}},{"type":"Point","coordinates":[5184,5775],"properties":{"NAME":"Minna","POP_MAX":291905}},{"type":"Point","coordinates":[5217,5859],"properties":{"NAME":"Zaria","POP_MAX":889000}},{"type":"Point","coordinates":[5250,5793],"properties":{"NAME":"Jos","POP_MAX":816824}},{"type":"Point","coordinates":[5350,5751],"properties":{"NAME":"Yola","POP_MAX":96006}},{"type":"Point","coordinates":[5544,8218],"properties":{"NAME":"L�dz","POP_MAX":758000}},{"type":"Point","coordinates":[6583,8662],"properties":{"NAME":"Berezniki","POP_MAX":167748}},{"type":"Point","coordinates":[5507,3676],"properties":{"NAME":"Keetmanshoop","POP_MAX":18039}},{"type":"Point","coordinates":[5474,3777],"properties":{"NAME":"Maltah�he","POP_MAX":2329}},{"type":"Point","coordinates":[5407,3903],"properties":{"NAME":"Swakopmund","POP_MAX":29491}},{"type":"Point","coordinates":[5441,4186],"properties":{"NAME":"Ongwediva","POP_MAX":25032}},{"type":"Point","coordinates":[5552,4178],"properties":{"NAME":"Rundu","POP_MAX":58172}},{"type":"Point","coordinates":[5495,4102],"properties":{"NAME":"Tsumeb","POP_MAX":14959}},{"type":"Point","coordinates":[5916,4926],"properties":{"NAME":"Tabora","POP_MAX":146495}},{"type":"Point","coordinates":[6108,4637],"properties":{"NAME":"Lindi","POP_MAX":41912}},{"type":"Point","coordinates":[5995,4598],"properties":{"NAME":"Songea","POP_MAX":126449}},{"type":"Point","coordinates":[6091,4923],"properties":{"NAME":"Tanga","POP_MAX":224876}},{"type":"Point","coordinates":[4977,7631],"properties":{"NAME":"Zaragoza","POP_MAX":649404}},{"type":"Point","coordinates":[5336,8565],"properties":{"NAME":"G�teborg","POP_MAX":537797}},{"type":"Point","coordinates":[4721,6897],"properties":{"NAME":"Goulimine","POP_MAX":115267}},{"type":"Point","coordinates":[4676,6767],"properties":{"NAME":"Smara","POP_MAX":48149}},{"type":"Point","coordinates":[4558,6592],"properties":{"NAME":"Ad Dakhla","POP_MAX":89292}},{"type":"Point","coordinates":[5776,5874],"properties":{"NAME":"Babanusa","POP_MAX":19700}},{"type":"Point","coordinates":[7754,5318],"properties":{"NAME":"Sibolga","POP_MAX":217312}},{"type":"Point","coordinates":[7761,5389],"properties":{"NAME":"Pematangsiantar","POP_MAX":341200}},{"type":"Point","coordinates":[7827,5250],"properties":{"NAME":"Pekanbaru","POP_MAX":799000}},{"type":"Point","coordinates":[8480,5303],"properties":{"NAME":"Manado","POP_MAX":451893}},{"type":"Point","coordinates":[8076,4766],"properties":{"NAME":"Yogyakarta","POP_MAX":636660}},{"type":"Point","coordinates":[8417,4988],"properties":{"NAME":"Kendari","POP_MAX":165377}},{"type":"Point","coordinates":[8340,5164],"properties":{"NAME":"Palu","POP_MAX":612445}},{"type":"Point","coordinates":[8777,5023],"properties":{"NAME":"Nabire","POP_MAX":43898}},{"type":"Point","coordinates":[8913,4725],"properties":{"NAME":"Merauke","POP_MAX":34412}},{"type":"Point","coordinates":[4762,8270],"properties":{"NAME":"Limerick","POP_MAX":90054}},{"type":"Point","coordinates":[4750,5507],"properties":{"NAME":"Greenville","POP_MAX":10374}},{"type":"Point","coordinates":[4722,5560],"properties":{"NAME":"Buchanan","POP_MAX":48315}},{"type":"Point","coordinates":[4685,5608],"properties":{"NAME":"Robertsport","POP_MAX":11969}},{"type":"Point","coordinates":[5441,5463],"properties":{"NAME":"Berberati","POP_MAX":61815}},{"type":"Point","coordinates":[5251,7791],"properties":{"NAME":"Genoa","POP_MAX":647497}},{"type":"Point","coordinates":[5614,5596],"properties":{"NAME":"Bria","POP_MAX":29027}},{"type":"Point","coordinates":[6060,5352],"properties":{"NAME":"Marsabit","POP_MAX":16460}},{"type":"Point","coordinates":[6090,5421],"properties":{"NAME":"Moyale","POP_MAX":24837}},{"type":"Point","coordinates":[6007,5201],"properties":{"NAME":"Nakuru","POP_MAX":364727}},{"type":"Point","coordinates":[5740,8456],"properties":{"NAME":"Daugavpils","POP_MAX":111564}},{"type":"Point","coordinates":[7708,5518],"properties":{"NAME":"Lhokseumawe","POP_MAX":140322}},{"type":"Point","coordinates":[7807,5499],"properties":{"NAME":"Taiping","POP_MAX":237095}},{"type":"Point","coordinates":[7817,5484],"properties":{"NAME":"Ipoh","POP_MAX":673318}},{"type":"Point","coordinates":[7849,5572],"properties":{"NAME":"Kota Baharu","POP_MAX":505583}},{"type":"Point","coordinates":[7850,5345],"properties":{"NAME":"Malacca","POP_MAX":788706}},{"type":"Point","coordinates":[7880,5439],"properties":{"NAME":"Kuantan","POP_MAX":366229}},{"type":"Point","coordinates":[8310,7011],"properties":{"NAME":"Xuanzhou","POP_MAX":866000}},{"type":"Point","coordinates":[8165,6508],"properties":{"NAME":"Zhuhai","POP_MAX":1023000}},{"type":"Point","coordinates":[8265,5188],"properties":{"NAME":"Samarinda","POP_MAX":592228}},{"type":"Point","coordinates":[8286,5464],"properties":{"NAME":"Tawau","POP_MAX":306462}},{"type":"Point","coordinates":[8292,5556],"properties":{"NAME":"Sandakan","POP_MAX":392288}},{"type":"Point","coordinates":[8236,5564],"properties":{"NAME":"Kota Kinabalu","POP_MAX":527671}},{"type":"Point","coordinates":[8117,5350],"properties":{"NAME":"Sibu","POP_MAX":203832}},{"type":"Point","coordinates":[6142,5086],"properties":{"NAME":"Lamu","POP_MAX":24525}},{"type":"Point","coordinates":[6119,5031],"properties":{"NAME":"Malindi","POP_MAX":94016}},{"type":"Point","coordinates":[5970,5212],"properties":{"NAME":"Kisumu","POP_MAX":395615}},{"type":"Point","coordinates":[6312,4066],"properties":{"NAME":"Antsirabe","POP_MAX":307921}},{"type":"Point","coordinates":[6402,4354],"properties":{"NAME":"Antalaha","POP_MAX":47224}},{"type":"Point","coordinates":[6346,4440],"properties":{"NAME":"Andoany","POP_MAX":22680}},{"type":"Point","coordinates":[6334,3894],"properties":{"NAME":"Farafangana","POP_MAX":24764}},{"type":"Point","coordinates":[6348,3987],"properties":{"NAME":"Mananjary","POP_MAX":27686}},{"type":"Point","coordinates":[6228,4170],"properties":{"NAME":"Maintirano","POP_MAX":5925}},{"type":"Point","coordinates":[6378,4163],"properties":{"NAME":"Toamasina","POP_MAX":210226}},{"type":"Point","coordinates":[6387,4322],"properties":{"NAME":"Maroantsetra","POP_MAX":38046}},{"type":"Point","coordinates":[6311,3766],"properties":{"NAME":"Tolanaro","POP_MAX":16818}},{"type":"Point","coordinates":[6210,3957],"properties":{"NAME":"Morombe","POP_MAX":16727}},{"type":"Point","coordinates":[6230,3766],"properties":{"NAME":"Androka","POP_MAX":174}},{"type":"Point","coordinates":[6235,4041],"properties":{"NAME":"Morondava","POP_MAX":36803}},{"type":"Point","coordinates":[8026,4827],"properties":{"NAME":"Cirebon","POP_MAX":254298}},{"type":"Point","coordinates":[8016,4792],"properties":{"NAME":"Tasikmalaya","POP_MAX":271143}},{"type":"Point","coordinates":[7975,4836],"properties":{"NAME":"Bogor","POP_MAX":918000}},{"type":"Point","coordinates":[7851,4997],"properties":{"NAME":"Bengkulu","POP_MAX":426673}},{"type":"Point","coordinates":[8047,5215],"properties":{"NAME":"Pontianak","POP_MAX":607311}},{"type":"Point","coordinates":[7924,4937],"properties":{"NAME":"Kotabumi","POP_MAX":42366}},{"type":"Point","coordinates":[7886,4997],"properties":{"NAME":"Lahat","POP_MAX":65906}},{"type":"Point","coordinates":[7959,5096],"properties":{"NAME":"Pangkalpinang","POP_MAX":125933}},{"type":"Point","coordinates":[8169,4743],"properties":{"NAME":"Jember","POP_MAX":298585}},{"type":"Point","coordinates":[8201,5019],"properties":{"NAME":"Martapura","POP_MAX":198239}},{"type":"Point","coordinates":[8357,4718],"properties":{"NAME":"Ruteng","POP_MAX":53976}},{"type":"Point","coordinates":[2775,5028],"properties":{"NAME":"Machala","POP_MAX":213034}},{"type":"Point","coordinates":[2796,4986],"properties":{"NAME":"Loja","POP_MAX":126368}},{"type":"Point","coordinates":[2753,5160],"properties":{"NAME":"Manta","POP_MAX":183166}},{"type":"Point","coordinates":[2811,5120],"properties":{"NAME":"Riobamba","POP_MAX":172464}},{"type":"Point","coordinates":[3018,6307],"properties":{"NAME":"San Juan","POP_MAX":72950}},{"type":"Point","coordinates":[2807,5322],"properties":{"NAME":"Tumaco","POP_MAX":86713}},{"type":"Point","coordinates":[5601,5341],"properties":{"NAME":"Lisala","POP_MAX":70087}},{"type":"Point","coordinates":[5553,5406],"properties":{"NAME":"Gemena","POP_MAX":198056}},{"type":"Point","coordinates":[5603,6213],"properties":{"NAME":"Fada","POP_MAX":448}},{"type":"Point","coordinates":[5534,6256],"properties":{"NAME":"Faya Largeau","POP_MAX":13400}},{"type":"Point","coordinates":[5428,6035],"properties":{"NAME":"Mao","POP_MAX":18031}},{"type":"Point","coordinates":[5274,5325],"properties":{"NAME":"Bata","POP_MAX":173046}},{"type":"Point","coordinates":[5585,6059],"properties":{"NAME":"Biltine","POP_MAX":11000}},{"type":"Point","coordinates":[5514,5747],"properties":{"NAME":"Sarh","POP_MAX":169196}},{"type":"Point","coordinates":[5567,5856],"properties":{"NAME":"Am Timan","POP_MAX":30443}},{"type":"Point","coordinates":[5713,6910],"properties":{"NAME":"Siwa","POP_MAX":23080}},{"type":"Point","coordinates":[5858,6845],"properties":{"NAME":"El Minya","POP_MAX":500000}},{"type":"Point","coordinates":[5920,6635],"properties":{"NAME":"Kom Ombo","POP_MAX":303962}},{"type":"Point","coordinates":[5853,6692],"properties":{"NAME":"El Kharga","POP_MAX":49991}},{"type":"Point","coordinates":[5944,6795],"properties":{"NAME":"Hurghada","POP_MAX":157204}},{"type":"Point","coordinates":[5691,5380],"properties":{"NAME":"Buta","POP_MAX":45677}},{"type":"Point","coordinates":[5824,5393],"properties":{"NAME":"Watsa","POP_MAX":24516}},{"type":"Point","coordinates":[5771,5377],"properties":{"NAME":"Isiro","POP_MAX":157196}},{"type":"Point","coordinates":[5661,5438],"properties":{"NAME":"Bondo","POP_MAX":23517}},{"type":"Point","coordinates":[5195,8169],"properties":{"NAME":"Cologne","POP_MAX":1004000}},{"type":"Point","coordinates":[5746,8601],"properties":{"NAME":"Tartu","POP_MAX":101092}},{"type":"Point","coordinates":[8030,7208],"properties":{"NAME":"Xianyang","POP_MAX":1126000}},{"type":"Point","coordinates":[8125,7073],"properties":{"NAME":"Xiangfan","POP_MAX":1069000}},{"type":"Point","coordinates":[7941,6987],"properties":{"NAME":"Suining","POP_MAX":1425000}},{"type":"Point","coordinates":[8328,7608],"properties":{"NAME":"Lingyuan","POP_MAX":806000}},{"type":"Point","coordinates":[8403,7391],"properties":{"NAME":"Weihai","POP_MAX":560255}},{"type":"Point","coordinates":[8188,6831],"properties":{"NAME":"Yichun","POP_MAX":982000}},{"type":"Point","coordinates":[8348,7152],"properties":{"NAME":"Yancheng","POP_MAX":839000}},{"type":"Point","coordinates":[8343,6959],"properties":{"NAME":"Fuyang","POP_MAX":771000}},{"type":"Point","coordinates":[5511,5104],"properties":{"NAME":"Inongo","POP_MAX":40113}},{"type":"Point","coordinates":[5580,4845],"properties":{"NAME":"Tshikapa","POP_MAX":267462}},{"type":"Point","coordinates":[5365,4879],"properties":{"NAME":"Boma","POP_MAX":178638}},{"type":"Point","coordinates":[5805,5071],"properties":{"NAME":"Bukavu","POP_MAX":436779}},{"type":"Point","coordinates":[5814,5022],"properties":{"NAME":"Uvira","POP_MAX":170391}},{"type":"Point","coordinates":[5724,5045],"properties":{"NAME":"Kindu","POP_MAX":262914}},{"type":"Point","coordinates":[5655,4811],"properties":{"NAME":"Mwene-Ditu","POP_MAX":189177}},{"type":"Point","coordinates":[5748,4581],"properties":{"NAME":"Likasi","POP_MAX":434408}},{"type":"Point","coordinates":[5766,4794],"properties":{"NAME":"Manono","POP_MAX":46111}},{"type":"Point","coordinates":[5699,4711],"properties":{"NAME":"Kamina","POP_MAX":128803}},{"type":"Point","coordinates":[5980,4257],"properties":{"NAME":"Chiromo","POP_MAX":25235}},{"type":"Point","coordinates":[5985,4325],"properties":{"NAME":"Zomba","POP_MAX":80932}},{"type":"Point","coordinates":[7888,5125],"properties":{"NAME":"Jambi","POP_MAX":457090}},{"type":"Point","coordinates":[8736,5166],"properties":{"NAME":"Manokwari","POP_MAX":74504}},{"type":"Point","coordinates":[3535,5516],"properties":{"NAME":"Kourou","POP_MAX":24029}},{"type":"Point","coordinates":[4956,5605],"properties":{"NAME":"Kumasi","POP_MAX":1646000}},{"type":"Point","coordinates":[4954,5503],"properties":{"NAME":"Sekondi","POP_MAX":286248}},{"type":"Point","coordinates":[5325,5311],"properties":{"NAME":"Oyem","POP_MAX":43423}},{"type":"Point","coordinates":[5685,8601],"properties":{"NAME":"Parnu","POP_MAX":44192}},{"type":"Point","coordinates":[7230,6054],"properties":{"NAME":"Nellore","POP_MAX":678004}},{"type":"Point","coordinates":[7175,6135],"properties":{"NAME":"Kurnool","POP_MAX":424920}},{"type":"Point","coordinates":[7243,6164],"properties":{"NAME":"Guntur","POP_MAX":530577}},{"type":"Point","coordinates":[7149,5990],"properties":{"NAME":"Tumkur","POP_MAX":399606}},{"type":"Point","coordinates":[7117,6056],"properties":{"NAME":"Davangere","POP_MAX":503564}},{"type":"Point","coordinates":[7144,6095],"properties":{"NAME":"Bellary","POP_MAX":445388}},{"type":"Point","coordinates":[7077,6137],"properties":{"NAME":"Belgaum","POP_MAX":608756}},{"type":"Point","coordinates":[5299,5019],"properties":{"NAME":"Mayumba","POP_MAX":3996}},{"type":"Point","coordinates":[5280,5063],"properties":{"NAME":"Gamba","POP_MAX":9928}},{"type":"Point","coordinates":[4970,7893],"properties":{"NAME":"La Rochelle","POP_MAX":76997}},{"type":"Point","coordinates":[4891,6531],"properties":{"NAME":"Taoudenni","POP_MAX":3019}},{"type":"Point","coordinates":[4904,6313],"properties":{"NAME":"Araouane","POP_MAX":4026}},{"type":"Point","coordinates":[5032,6388],"properties":{"NAME":"Tessalit","POP_MAX":6000}},{"type":"Point","coordinates":[5069,6140],"properties":{"NAME":"Menaka","POP_MAX":9110}},{"type":"Point","coordinates":[3047,3936],"properties":{"NAME":"Tocopilla","POP_MAX":24460}},{"type":"Point","coordinates":[3082,3915],"properties":{"NAME":"Calama","POP_MAX":143084}},{"type":"Point","coordinates":[3040,3878],"properties":{"NAME":"Mejillones","POP_MAX":2041}},{"type":"Point","coordinates":[3039,3744],"properties":{"NAME":"Taltal","POP_MAX":10018}},{"type":"Point","coordinates":[3031,3561],"properties":{"NAME":"Vallenar","POP_MAX":44895}},{"type":"Point","coordinates":[3012,3534],"properties":{"NAME":"Chanaral","POP_MAX":13543}},{"type":"Point","coordinates":[3019,3444],"properties":{"NAME":"Ovalle","POP_MAX":77138}},{"type":"Point","coordinates":[2993,3095],"properties":{"NAME":"Chillan","POP_MAX":150396}},{"type":"Point","coordinates":[3031,3236],"properties":{"NAME":"Rancagua","POP_MAX":233268}},{"type":"Point","coordinates":[2964,2865],"properties":{"NAME":"Osorno","POP_MAX":154131}},{"type":"Point","coordinates":[2945,2790],"properties":{"NAME":"Ancud","POP_MAX":28020}},{"type":"Point","coordinates":[3006,3162],"properties":{"NAME":"Talca","POP_MAX":197479}},{"type":"Point","coordinates":[3018,3189],"properties":{"NAME":"Curico","POP_MAX":113711}},{"type":"Point","coordinates":[4679,6680],"properties":{"NAME":"Bir Mogrein","POP_MAX":10}},{"type":"Point","coordinates":[4561,6175],"properties":{"NAME":"Rosso","POP_MAX":47203}},{"type":"Point","coordinates":[4684,6180],"properties":{"NAME":"Kiffa","POP_MAX":73930}},{"type":"Point","coordinates":[4799,6097],"properties":{"NAME":"Nara","POP_MAX":18459}},{"type":"Point","coordinates":[4792,5964],"properties":{"NAME":"Koulikoro","POP_MAX":23919}},{"type":"Point","coordinates":[4885,6057],"properties":{"NAME":"Mopti","POP_MAX":108456}},{"type":"Point","coordinates":[5449,5310],"properties":{"NAME":"Ouesso","POP_MAX":28320}},{"type":"Point","coordinates":[5266,6964],"properties":{"NAME":"Ghadamis","POP_MAX":6623}},{"type":"Point","coordinates":[5618,7364],"properties":{"NAME":"Kalamata","POP_MAX":71823}},{"type":"Point","coordinates":[5446,6905],"properties":{"NAME":"Hun","POP_MAX":18878}},{"type":"Point","coordinates":[5400,6813],"properties":{"NAME":"Birak","POP_MAX":45421}},{"type":"Point","coordinates":[5285,6664],"properties":{"NAME":"Ghat","POP_MAX":24347}},{"type":"Point","coordinates":[5389,6719],"properties":{"NAME":"Marzuq","POP_MAX":55071}},{"type":"Point","coordinates":[5565,7001],"properties":{"NAME":"Ajdabiya","POP_MAX":143833}},{"type":"Point","coordinates":[5595,6904],"properties":{"NAME":"Awjilah","POP_MAX":6610}},{"type":"Point","coordinates":[5464,7026],"properties":{"NAME":"Surt","POP_MAX":128123}},{"type":"Point","coordinates":[5632,7116],"properties":{"NAME":"Darnah","POP_MAX":127974}},{"type":"Point","coordinates":[5669,7077],"properties":{"NAME":"Tubruq","POP_MAX":263527}},{"type":"Point","coordinates":[5702,7265],"properties":{"NAME":"Iraklio","POP_MAX":137154}},{"type":"Point","coordinates":[6144,7711],"properties":{"NAME":"Sukhumi","POP_MAX":81546}},{"type":"Point","coordinates":[6001,7212],"properties":{"NAME":"Trablous","POP_MAX":530000}},{"type":"Point","coordinates":[6053,5816],"properties":{"NAME":"Debre Markos","POP_MAX":70758}},{"type":"Point","coordinates":[6106,5862],"properties":{"NAME":"Dese","POP_MAX":183802}},{"type":"Point","coordinates":[6053,5617],"properties":{"NAME":"Sodo","POP_MAX":65737}},{"type":"Point","coordinates":[6048,5567],"properties":{"NAME":"Arba Minch","POP_MAX":69622}},{"type":"Point","coordinates":[6176,5757],"properties":{"NAME":"Harar","POP_MAX":174994}},{"type":"Point","coordinates":[6115,5623],"properties":{"NAME":"Goba","POP_MAX":34369}},{"type":"Point","coordinates":[6028,5662],"properties":{"NAME":"Jima","POP_MAX":128306}},{"type":"Point","coordinates":[6096,5713],"properties":{"NAME":"Nazret","POP_MAX":476892}},{"type":"Point","coordinates":[6104,5525],"properties":{"NAME":"Nagele","POP_MAX":11772}},{"type":"Point","coordinates":[6212,5562],"properties":{"NAME":"Gode","POP_MAX":75000}},{"type":"Point","coordinates":[6174,5459],"properties":{"NAME":"Dolo Bay","POP_MAX":11810}},{"type":"Point","coordinates":[5687,9027],"properties":{"NAME":"Kemi","POP_MAX":22641}},{"type":"Point","coordinates":[5711,8985],"properties":{"NAME":"Oulu","POP_MAX":136752}},{"type":"Point","coordinates":[6662,7990],"properties":{"NAME":"Shalqar","POP_MAX":27256}},{"type":"Point","coordinates":[6732,7870],"properties":{"NAME":"Qazaly","POP_MAX":6582}},{"type":"Point","coordinates":[6720,7930],"properties":{"NAME":"Aral","POP_MAX":33017}},{"type":"Point","coordinates":[6506,7941],"properties":{"NAME":"Qulsary","POP_MAX":37103}},{"type":"Point","coordinates":[6432,8189],"properties":{"NAME":"Oral","POP_MAX":209788}},{"type":"Point","coordinates":[6418,6893],"properties":{"NAME":"Bandar-e Bushehr","POP_MAX":169060}},{"type":"Point","coordinates":[6347,6975],"properties":{"NAME":"Abadan","POP_MAX":370180}},{"type":"Point","coordinates":[6347,7434],"properties":{"NAME":"Ardabil","POP_MAX":414603}},{"type":"Point","coordinates":[6421,7226],"properties":{"NAME":"Qom","POP_MAX":973000}},{"type":"Point","coordinates":[6395,7319],"properties":{"NAME":"Qazvin","POP_MAX":464551}},{"type":"Point","coordinates":[6537,7836],"properties":{"NAME":"Beyneu","POP_MAX":32452}},{"type":"Point","coordinates":[6429,7746],"properties":{"NAME":"Aqtau","POP_MAX":4479}},{"type":"Point","coordinates":[6313,7210],"properties":{"NAME":"Kermanshah","POP_MAX":828313}},{"type":"Point","coordinates":[6384,7379],"properties":{"NAME":"Rasht","POP_MAX":594590}},{"type":"Point","coordinates":[6651,7123],"properties":{"NAME":"Birjand","POP_MAX":324703}},{"type":"Point","coordinates":[6607,7317],"properties":{"NAME":"Sabzewar","POP_MAX":226183}},{"type":"Point","coordinates":[6714,7015],"properties":{"NAME":"Zabol","POP_MAX":233968}},{"type":"Point","coordinates":[6696,6927],"properties":{"NAME":"Zahedan","POP_MAX":598887}},{"type":"Point","coordinates":[7178,5728],"properties":{"NAME":"Tuticorin","POP_MAX":436094}},{"type":"Point","coordinates":[7175,5819],"properties":{"NAME":"Dindigul","POP_MAX":200797}},{"type":"Point","coordinates":[5286,8472],"properties":{"NAME":"�rhus","POP_MAX":237551}},{"type":"Point","coordinates":[4845,5765],"properties":{"NAME":"Korhogo","POP_MAX":177711}},{"type":"Point","coordinates":[4659,5873],"properties":{"NAME":"Labe","POP_MAX":140575}},{"type":"Point","coordinates":[4604,5851],"properties":{"NAME":"Boke","POP_MAX":116270}},{"type":"Point","coordinates":[4643,5800],"properties":{"NAME":"Kindia","POP_MAX":117062}},{"type":"Point","coordinates":[4822,5616],"properties":{"NAME":"Daloa","POP_MAX":255168}},{"type":"Point","coordinates":[5761,3488],"properties":{"NAME":"Mafetang","POP_MAX":57059}},{"type":"Point","coordinates":[3086,4578],"properties":{"NAME":"Cobija","POP_MAX":44437}},{"type":"Point","coordinates":[3089,4691],"properties":{"NAME":"Sena Madureira","POP_MAX":26192}},{"type":"Point","coordinates":[3161,5071],"properties":{"NAME":"Fonte Boa","POP_MAX":16060}},{"type":"Point","coordinates":[3056,4831],"properties":{"NAME":"Eirunepe","POP_MAX":21750}},{"type":"Point","coordinates":[3294,4880],"properties":{"NAME":"Manicore","POP_MAX":21549}},{"type":"Point","coordinates":[3249,5160],"properties":{"NAME":"Barcelos","POP_MAX":12584}},{"type":"Point","coordinates":[3113,5050],"properties":{"NAME":"Tonantins","POP_MAX":4561}},{"type":"Point","coordinates":[3200,5022],"properties":{"NAME":"Tefe","POP_MAX":51437}},{"type":"Point","coordinates":[3243,4980],"properties":{"NAME":"Coari","POP_MAX":53305}},{"type":"Point","coordinates":[3133,5209],"properties":{"NAME":"Sao Cabriel da Cachoeira","POP_MAX":15231}},{"type":"Point","coordinates":[3304,5065],"properties":{"NAME":"Novo Airao","POP_MAX":9049}},{"type":"Point","coordinates":[3374,5035],"properties":{"NAME":"Itacoatiara","POP_MAX":51509}},{"type":"Point","coordinates":[3421,5066],"properties":{"NAME":"Parintins","POP_MAX":64428}},{"type":"Point","coordinates":[3323,4812],"properties":{"NAME":"Natal","POP_MAX":980588}},{"type":"Point","coordinates":[3246,4784],"properties":{"NAME":"Crato","POP_MAX":273883}},{"type":"Point","coordinates":[3679,4897],"properties":{"NAME":"Imperatriz","POP_MAX":218106}},{"type":"Point","coordinates":[3719,4781],"properties":{"NAME":"Balsas","POP_MAX":68056}},{"type":"Point","coordinates":[3596,5119],"properties":{"NAME":"Breves","POP_MAX":47164}},{"type":"Point","coordinates":[3396,4854],"properties":{"NAME":"Jacareacanga","POP_MAX":31661}},{"type":"Point","coordinates":[3617,5004],"properties":{"NAME":"Tucurui","POP_MAX":76337}},{"type":"Point","coordinates":[3444,4970],"properties":{"NAME":"Itaituba","POP_MAX":92308}},{"type":"Point","coordinates":[3629,4739],"properties":{"NAME":"Conceicao do Araguaia","POP_MAX":27115}},{"type":"Point","coordinates":[3640,5117],"properties":{"NAME":"Abaetetuba","POP_MAX":79420}},{"type":"Point","coordinates":[3208,4497],"properties":{"NAME":"Principe da Beira","POP_MAX":956}},{"type":"Point","coordinates":[3659,4800],"properties":{"NAME":"Araguaina","POP_MAX":50444}},{"type":"Point","coordinates":[3657,4623],"properties":{"NAME":"Palmas","POP_MAX":235315}},{"type":"Point","coordinates":[3846,4181],"properties":{"NAME":"Teofilo Otoni","POP_MAX":101170}},{"type":"Point","coordinates":[3666,4070],"properties":{"NAME":"Uberaba","POP_MAX":260843}},{"type":"Point","coordinates":[3766,4319],"properties":{"NAME":"Januaria","POP_MAX":34811}},{"type":"Point","coordinates":[3332,4347],"properties":{"NAME":"Mato Grosso","POP_MAX":1612}},{"type":"Point","coordinates":[3313,4685],"properties":{"NAME":"Aripuana","POP_MAX":26983}},{"type":"Point","coordinates":[3457,4530],"properties":{"NAME":"Sinop","POP_MAX":8961}},{"type":"Point","coordinates":[3515,3329],"properties":{"NAME":"Jaguarao","POP_MAX":29613}},{"type":"Point","coordinates":[3495,3401],"properties":{"NAME":"Bage","POP_MAX":106098}},{"type":"Point","coordinates":[3576,3866],"properties":{"NAME":"Londrina","POP_MAX":520238}},{"type":"Point","coordinates":[3626,3554],"properties":{"NAME":"Criciuma","POP_MAX":204217}},{"type":"Point","coordinates":[3950,4953],"properties":{"NAME":"Aracati","POP_MAX":44293}},{"type":"Point","coordinates":[3920,4846],"properties":{"NAME":"Ico","POP_MAX":28323}},{"type":"Point","coordinates":[3838,5048],"properties":{"NAME":"Parnaiba","POP_MAX":138008}},{"type":"Point","coordinates":[3848,4806],"properties":{"NAME":"Picos","POP_MAX":57495}},{"type":"Point","coordinates":[3980,4652],"properties":{"NAME":"Arapiraca","POP_MAX":187668}},{"type":"Point","coordinates":[3885,4414],"properties":{"NAME":"Jequie","POP_MAX":135574}},{"type":"Point","coordinates":[3914,4360],"properties":{"NAME":"Ilheus","POP_MAX":230622}},{"type":"Point","coordinates":[3917,4310],"properties":{"NAME":"Canavieiras","POP_MAX":26375}},{"type":"Point","coordinates":[3770,4441],"properties":{"NAME":"Santa Maria da Vitoria","POP_MAX":23488}},{"type":"Point","coordinates":[3836,4562],"properties":{"NAME":"Irece","POP_MAX":63626}},{"type":"Point","coordinates":[3812,4590],"properties":{"NAME":"Xique-Xique","POP_MAX":35433}},{"type":"Point","coordinates":[3886,4093],"properties":{"NAME":"Linhares","POP_MAX":105075}},{"type":"Point","coordinates":[3851,3956],"properties":{"NAME":"Campos","POP_MAX":387417}},{"type":"Point","coordinates":[3962,4916],"properties":{"NAME":"Mossoro","POP_MAX":202583}},{"type":"Point","coordinates":[3968,4585],"properties":{"NAME":"Aracaju","POP_MAX":685356}},{"type":"Point","coordinates":[2277,8345],"properties":{"NAME":"Norway House","POP_MAX":6000}},{"type":"Point","coordinates":[2164,8392],"properties":{"NAME":"Flin Flon","POP_MAX":6393}},{"type":"Point","coordinates":[2215,8182],"properties":{"NAME":"Dauphin","POP_MAX":9077}},{"type":"Point","coordinates":[2182,8337],"properties":{"NAME":"The Pas","POP_MAX":6055}},{"type":"Point","coordinates":[1976,8670],"properties":{"NAME":"Uranium City","POP_MAX":89}},{"type":"Point","coordinates":[2062,8139],"properties":{"NAME":"Moose Jaw","POP_MAX":32166}},{"type":"Point","coordinates":[1713,8283],"properties":{"NAME":"Jasper","POP_MAX":3907}},{"type":"Point","coordinates":[1919,8117],"properties":{"NAME":"Medicine Hat","POP_MAX":63138}},{"type":"Point","coordinates":[1832,8247],"properties":{"NAME":"Red Deer","POP_MAX":74857}},{"type":"Point","coordinates":[1783,8184],"properties":{"NAME":"Banff","POP_MAX":7502}},{"type":"Point","coordinates":[1693,8415],"properties":{"NAME":"Grand Prairie","POP_MAX":41462}},{"type":"Point","coordinates":[1460,8392],"properties":{"NAME":"Smithers","POP_MAX":6245}},{"type":"Point","coordinates":[1650,8154],"properties":{"NAME":"Kamloops","POP_MAX":68714}},{"type":"Point","coordinates":[1599,8238],"properties":{"NAME":"Williams Lake","POP_MAX":14168}},{"type":"Point","coordinates":[1582,8342],"properties":{"NAME":"Prince George","POP_MAX":65558}},{"type":"Point","coordinates":[1589,8627],"properties":{"NAME":"Fort Nelson","POP_MAX":6315}},{"type":"Point","coordinates":[2829,9430],"properties":{"NAME":"Pond Inlet","POP_MAX":1549}},{"type":"Point","coordinates":[2870,8945],"properties":{"NAME":"Cape Dorset","POP_MAX":1326}},{"type":"Point","coordinates":[3055,8860],"properties":{"NAME":"Kimmirut","POP_MAX":385}},{"type":"Point","coordinates":[2330,9196],"properties":{"NAME":"Gjoa Haven","POP_MAX":1109}},{"type":"Point","coordinates":[2691,9648],"properties":{"NAME":"Grise Fiord","POP_MAX":23}},{"type":"Point","coordinates":[3268,9999],"properties":{"NAME":"Alert","POP_MAX":125}},{"type":"Point","coordinates":[2192,8761],"properties":{"NAME":"Ennadai","POP_MAX":0}},{"type":"Point","coordinates":[2437,8858],"properties":{"NAME":"Rankin Inlet","POP_MAX":2472}},{"type":"Point","coordinates":[1835,8763],"properties":{"NAME":"Fort Resolution","POP_MAX":448}},{"type":"Point","coordinates":[1622,8802],"properties":{"NAME":"Fort Simpson","POP_MAX":283}},{"type":"Point","coordinates":[1278,9179],"properties":{"NAME":"Inuvik","POP_MAX":3022}},{"type":"Point","coordinates":[1296,9243],"properties":{"NAME":"Tuktoyaktuk","POP_MAX":929}},{"type":"Point","coordinates":[1414,8702],"properties":{"NAME":"Watson Lake","POP_MAX":802}},{"type":"Point","coordinates":[3540,5168],"properties":{"NAME":"Laranjal do Jari","POP_MAX":45000}},{"type":"Point","coordinates":[3587,5336],"properties":{"NAME":"Amapa","POP_MAX":1947}},{"type":"Point","coordinates":[3575,5403],"properties":{"NAME":"Vila Velha","POP_MAX":1209091}},{"type":"Point","coordinates":[2554,8244],"properties":{"NAME":"Lansdowne House","POP_MAX":120}},{"type":"Point","coordinates":[2755,8190],"properties":{"NAME":"Moosonee","POP_MAX":1725}},{"type":"Point","coordinates":[2747,7913],"properties":{"NAME":"Sudbury","POP_MAX":157857}},{"type":"Point","coordinates":[2371,8102],"properties":{"NAME":"Kenora","POP_MAX":10852}},{"type":"Point","coordinates":[3205,8048],"properties":{"NAME":"Gaspe","POP_MAX":3677}},{"type":"Point","coordinates":[3219,8133],"properties":{"NAME":"Mingan","POP_MAX":588}},{"type":"Point","coordinates":[2990,8050],"properties":{"NAME":"Dolbeau","POP_MAX":13337}},{"type":"Point","coordinates":[2836,8006],"properties":{"NAME":"Val d'Or","POP_MAX":20625}},{"type":"Point","coordinates":[2832,8835],"properties":{"NAME":"Ivugivik","POP_MAX":156}},{"type":"Point","coordinates":[2825,8606],"properties":{"NAME":"Inukjuak","POP_MAX":1597}},{"type":"Point","coordinates":[3022,8025],"properties":{"NAME":"Chicoutimi","POP_MAX":53940}},{"type":"Point","coordinates":[3198,7888],"properties":{"NAME":"Moncton","POP_MAX":90635}},{"type":"Point","coordinates":[3146,7881],"properties":{"NAME":"Fredericton","POP_MAX":52337}},{"type":"Point","coordinates":[3173,7976],"properties":{"NAME":"Bathurst","POP_MAX":6111}},{"type":"Point","coordinates":[3160,7758],"properties":{"NAME":"Yarmouth","POP_MAX":7500}},{"type":"Point","coordinates":[3482,8055],"properties":{"NAME":"Gander","POP_MAX":3345}},{"type":"Point","coordinates":[3414,8330],"properties":{"NAME":"Cartwright","POP_MAX":505}},{"type":"Point","coordinates":[3374,8358],"properties":{"NAME":"Rigolet","POP_MAX":124}},{"type":"Point","coordinates":[3199,8711],"properties":{"NAME":"Port Burwell","POP_MAX":2762}},{"type":"Point","coordinates":[5436,5562],"properties":{"NAME":"Bouar","POP_MAX":34372}},{"type":"Point","coordinates":[3116,2359],"properties":{"NAME":"Puerto San Julian","POP_MAX":2347}},{"type":"Point","coordinates":[3026,2515],"properties":{"NAME":"Perito Moreno","POP_MAX":3766}},{"type":"Point","coordinates":[3116,2099],"properties":{"NAME":"Rio Grande","POP_MAX":31095}},{"type":"Point","coordinates":[3099,2041],"properties":{"NAME":"Ushuaia","POP_MAX":58028}},{"type":"Point","coordinates":[3078,2573],"properties":{"NAME":"Sarmiento","POP_MAX":5185}},{"type":"Point","coordinates":[3098,3211],"properties":{"NAME":"San Rafael","POP_MAX":109163}},{"type":"Point","coordinates":[3365,2982],"properties":{"NAME":"Necochea","POP_MAX":80478}},{"type":"Point","coordinates":[3217,2958],"properties":{"NAME":"Rio Colorado","POP_MAX":11499}},{"type":"Point","coordinates":[3170,3566],"properties":{"NAME":"Catamarca","POP_MAX":188812}},{"type":"Point","coordinates":[3140,3512],"properties":{"NAME":"La Rioja","POP_MAX":162620}},{"type":"Point","coordinates":[3212,3606],"properties":{"NAME":"Santiago del Estero","POP_MAX":354692}},{"type":"Point","coordinates":[3359,3625],"properties":{"NAME":"Resistencia","POP_MAX":387158}},{"type":"Point","coordinates":[3372,3303],"properties":{"NAME":"Gualeguaychu","POP_MAX":78676}},{"type":"Point","coordinates":[3711,3828],"properties":{"NAME":"Santos","POP_MAX":1709000}},{"type":"Point","coordinates":[3635,3922],"properties":{"NAME":"Bauru","POP_MAX":335024}},{"type":"Point","coordinates":[3677,3784],"properties":{"NAME":"Iguape","POP_MAX":23784}},{"type":"Point","coordinates":[3682,4027],"properties":{"NAME":"Franca","POP_MAX":305041}},{"type":"Point","coordinates":[3985,4702],"properties":{"NAME":"Garanhuns","POP_MAX":110085}},{"type":"Point","coordinates":[4000,4737],"properties":{"NAME":"Caruaru","POP_MAX":242094}},{"type":"Point","coordinates":[6732,7095],"properties":{"NAME":"Farah","POP_MAX":73647}},{"type":"Point","coordinates":[5582,4789],"properties":{"NAME":"Dundo","POP_MAX":11985}},{"type":"Point","coordinates":[5367,4762],"properties":{"NAME":"Ambriz","POP_MAX":17000}},{"type":"Point","coordinates":[5404,4655],"properties":{"NAME":"Dondo","POP_MAX":2353}},{"type":"Point","coordinates":[5388,4567],"properties":{"NAME":"Sumbe","POP_MAX":33277}},{"type":"Point","coordinates":[5421,4775],"properties":{"NAME":"Uige","POP_MAX":60008}},{"type":"Point","coordinates":[5474,4499],"properties":{"NAME":"Kuito","POP_MAX":114286}},{"type":"Point","coordinates":[5379,4500],"properties":{"NAME":"Lobito","POP_MAX":207932}},{"type":"Point","coordinates":[5419,4246],"properties":{"NAME":"Xangongo","POP_MAX":447}},{"type":"Point","coordinates":[5556,4533],"properties":{"NAME":"Luena","POP_MAX":21115}},{"type":"Point","coordinates":[5332,4301],"properties":{"NAME":"T�mbua","POP_MAX":40000}},{"type":"Point","coordinates":[3375,4268],"properties":{"NAME":"San Matias","POP_MAX":6352}},{"type":"Point","coordinates":[3309,4182],"properties":{"NAME":"San Jos�","POP_MAX":9211}},{"type":"Point","coordinates":[4994,6833],"properties":{"NAME":"Adrar","POP_MAX":56910}},{"type":"Point","coordinates":[5007,6765],"properties":{"NAME":"Reggane","POP_MAX":32974}},{"type":"Point","coordinates":[4940,7049],"properties":{"NAME":"Bechar","POP_MAX":143382}},{"type":"Point","coordinates":[4775,6821],"properties":{"NAME":"Tindouf","POP_MAX":18270}},{"type":"Point","coordinates":[5238,6752],"properties":{"NAME":"Illizi","POP_MAX":7957}},{"type":"Point","coordinates":[5106,6682],"properties":{"NAME":"Arak","POP_MAX":423251}},{"type":"Point","coordinates":[5071,6795],"properties":{"NAME":"I-n-Salah","POP_MAX":49223}},{"type":"Point","coordinates":[5082,6989],"properties":{"NAME":"El Golea","POP_MAX":32049}},{"type":"Point","coordinates":[5082,7177],"properties":{"NAME":"Laghouat","POP_MAX":113872}},{"type":"Point","coordinates":[5171,7136],"properties":{"NAME":"Touggourt","POP_MAX":133954}},{"type":"Point","coordinates":[5151,7070],"properties":{"NAME":"Ouargla","POP_MAX":176271}},{"type":"Point","coordinates":[5161,7238],"properties":{"NAME":"Biskra","POP_MAX":202103}},{"type":"Point","coordinates":[5092,7227],"properties":{"NAME":"Djelfa","POP_MAX":170901}},{"type":"Point","coordinates":[5152,7314],"properties":{"NAME":"Setif","POP_MAX":274744}},{"type":"Point","coordinates":[5174,7279],"properties":{"NAME":"Batna","POP_MAX":280798}},{"type":"Point","coordinates":[5767,7681],"properties":{"NAME":"Burgas","POP_MAX":195966}},{"type":"Point","coordinates":[5843,8416],"properties":{"NAME":"Vitsyebsk","POP_MAX":342700}},{"type":"Point","coordinates":[5712,3802],"properties":{"NAME":"Molepolole","POP_MAX":63248}},{"type":"Point","coordinates":[7749,5939],"properties":{"NAME":"Myeik","POP_MAX":266720}},{"type":"Point","coordinates":[9407,5618],"properties":{"NAME":"Palikir","POP_MAX":4645}},{"type":"Point","coordinates":[9776,5629],"properties":{"NAME":"Majuro","POP_MAX":25400}},{"type":"Point","coordinates":[9034,5998],"properties":{"NAME":"Agana","POP_MAX":122411}},{"type":"Point","coordinates":[3143,6286],"properties":{"NAME":"Arecibo","POP_MAX":69307}},{"type":"Point","coordinates":[9994,4723],"properties":{"NAME":"Funafuti","POP_MAX":4749}},{"type":"Point","coordinates":[8752,5651],"properties":{"NAME":"Melekeok","POP_MAX":7026}},{"type":"Point","coordinates":[4733,6731],"properties":{"NAME":"Bir Lehlou","POP_MAX":500}},{"type":"Point","coordinates":[5208,7752],"properties":{"NAME":"Monaco","POP_MAX":36371}},{"type":"Point","coordinates":[9821,5294],"properties":{"NAME":"Tarawa","POP_MAX":28802}},{"type":"Point","coordinates":[3954,9020],"properties":{"NAME":"Tasiilaq","POP_MAX":1829}},{"type":"Point","coordinates":[6206,4538],"properties":{"NAME":"Moroni","POP_MAX":128698}},{"type":"Point","coordinates":[8165,6504],"properties":{"NAME":"Macau","POP_MAX":568700}},{"type":"Point","coordinates":[5044,7681],"properties":{"NAME":"Andorra","POP_MAX":53998}},{"type":"Point","coordinates":[3188,9624],"properties":{"NAME":"Savissivik","POP_MAX":66}},{"type":"Point","coordinates":[3455,9413],"properties":{"NAME":"Kangersuatsiaq","POP_MAX":200}},{"type":"Point","coordinates":[3550,9314],"properties":{"NAME":"Uummannaq","POP_MAX":1299}},{"type":"Point","coordinates":[4549,6867],"properties":{"NAME":"Santa Cruz de Tenerife","POP_MAX":336061}},{"type":"Point","coordinates":[552,3985],"properties":{"NAME":"Rarotonga","POP_MAX":2525}},{"type":"Point","coordinates":[1603,7360],"properties":{"NAME":"Santa Cruz","POP_MAX":148444}},{"type":"Point","coordinates":[8389,6607],"properties":{"NAME":"Hualien","POP_MAX":350468}},{"type":"Point","coordinates":[8385,6667],"properties":{"NAME":"New Taipei","POP_MAX":3893740}},{"type":"Point","coordinates":[8350,6550],"properties":{"NAME":"Tainan","POP_MAX":1876312}},{"type":"Point","coordinates":[8376,6536],"properties":{"NAME":"Taitung","POP_MAX":175000}},{"type":"Point","coordinates":[1734,7195],"properties":{"NAME":"San Bernardino","POP_MAX":1745000}},{"type":"Point","coordinates":[2963,7604],"properties":{"NAME":"Bridgeport","POP_MAX":1018000}},{"type":"Point","coordinates":[2840,7720],"properties":{"NAME":"Rochester","POP_MAX":755000}},{"type":"Point","coordinates":[4939,8318],"properties":{"NAME":"Manchester","POP_MAX":2230000}},{"type":"Point","coordinates":[7068,7081],"properties":{"NAME":"Gujranwala","POP_MAX":1513000}},{"type":"Point","coordinates":[8529,7390],"properties":{"NAME":"Incheon","POP_MAX":2550000}},{"type":"Point","coordinates":[5158,5585],"properties":{"NAME":"Benin City","POP_MAX":1190000}},{"type":"Point","coordinates":[8291,6634],"properties":{"NAME":"Xiamen","POP_MAX":2519000}},{"type":"Point","coordinates":[7958,7001],"properties":{"NAME":"Nanchong","POP_MAX":2174000}},{"type":"Point","coordinates":[7928,6932],"properties":{"NAME":"Neijiang","POP_MAX":1466000}},{"type":"Point","coordinates":[8136,7130],"properties":{"NAME":"Nanyang","POP_MAX":1944000}},{"type":"Point","coordinates":[8367,7579],"properties":{"NAME":"Jinxi","POP_MAX":2426000}},{"type":"Point","coordinates":[8383,7393],"properties":{"NAME":"Yantai","POP_MAX":2116000}},{"type":"Point","coordinates":[8277,7239],"properties":{"NAME":"Zaozhuang","POP_MAX":2145000}},{"type":"Point","coordinates":[8362,7032],"properties":{"NAME":"Suzhou","POP_MAX":1650000}},{"type":"Point","coordinates":[8266,7204],"properties":{"NAME":"Xuzhou","POP_MAX":2091000}},{"type":"Point","coordinates":[8353,7048],"properties":{"NAME":"Wuxi","POP_MAX":1749000}},{"type":"Point","coordinates":[8527,7759],"properties":{"NAME":"Jilin","POP_MAX":2396000}},{"type":"Point","coordinates":[7140,6998],"properties":{"NAME":"Chandigarh","POP_MAX":979000}},{"type":"Point","coordinates":[7087,7113],"properties":{"NAME":"Jammu","POP_MAX":791000}},{"type":"Point","coordinates":[7116,6241],"properties":{"NAME":"Sholapur","POP_MAX":1057000}},{"type":"Point","coordinates":[7100,6370],"properties":{"NAME":"Aurangabad","POP_MAX":1113000}},{"type":"Point","coordinates":[7057,6376],"properties":{"NAME":"Nasik","POP_MAX":1473000}},{"type":"Point","coordinates":[7558,6732],"properties":{"NAME":"Dispur","POP_MAX":16140}},{"type":"Point","coordinates":[7107,7033],"properties":{"NAME":"Jullundur","POP_MAX":855000}},{"type":"Point","coordinates":[7281,6693],"properties":{"NAME":"Allahabad","POP_MAX":1201000}},{"type":"Point","coordinates":[7196,6889],"properties":{"NAME":"Moradabad","POP_MAX":787000}},{"type":"Point","coordinates":[7158,6878],"properties":{"NAME":"Ghaziabad","POP_MAX":1341000}},{"type":"Point","coordinates":[7175,6792],"properties":{"NAME":"Agra","POP_MAX":1592000}},{"type":"Point","coordinates":[7176,6834],"properties":{"NAME":"Aligarh","POP_MAX":805000}},{"type":"Point","coordinates":[7166,6898],"properties":{"NAME":"Meerut","POP_MAX":1398000}},{"type":"Point","coordinates":[7409,6597],"properties":{"NAME":"Dhanbad","POP_MAX":1246000}},{"type":"Point","coordinates":[7179,6738],"properties":{"NAME":"Gwalior","POP_MAX":978000}},{"type":"Point","coordinates":[7040,6510],"properties":{"NAME":"Vadodara","POP_MAX":1756000}},{"type":"Point","coordinates":[6974,6510],"properties":{"NAME":"Rajkot","POP_MAX":1260000}},{"type":"Point","coordinates":[3428,3280],"properties":{"NAME":"Durazno","POP_MAX":34037}},{"type":"Point","coordinates":[2400,8034],"properties":{"NAME":"International Falls","POP_MAX":15240}},{"type":"Point","coordinates":[2409,7822],"properties":{"NAME":"St. Paul","POP_MAX":734854}},{"type":"Point","coordinates":[1979,7871],"properties":{"NAME":"Billings","POP_MAX":104552}},{"type":"Point","coordinates":[1902,7971],"properties":{"NAME":"Great Falls","POP_MAX":66558}},{"type":"Point","coordinates":[1827,7934],"properties":{"NAME":"Missoula","POP_MAX":72856}},{"type":"Point","coordinates":[2180,8013],"properties":{"NAME":"Minot","POP_MAX":39439}},{"type":"Point","coordinates":[2306,7934],"properties":{"NAME":"Fargo","POP_MAX":162842}},{"type":"Point","coordinates":[682,6359],"properties":{"NAME":"Hilo","POP_MAX":52391}},{"type":"Point","coordinates":[1579,7944],"properties":{"NAME":"Olympia","POP_MAX":156984}},{"type":"Point","coordinates":[1731,7980],"properties":{"NAME":"Spokane","POP_MAX":347705}},{"type":"Point","coordinates":[1586,7862],"properties":{"NAME":"Vancouver","POP_MAX":525802}},{"type":"Point","coordinates":[1892,7257],"properties":{"NAME":"Flagstaff","POP_MAX":63993}},{"type":"Point","coordinates":[1913,7084],"properties":{"NAME":"Tucson","POP_MAX":823000}},{"type":"Point","coordinates":[1667,7213],"properties":{"NAME":"Santa Barbara","POP_MAX":181632}},{"type":"Point","coordinates":[1666,7347],"properties":{"NAME":"Fresno","POP_MAX":616353}},{"type":"Point","coordinates":[1544,7582],"properties":{"NAME":"Eureka","POP_MAX":42398}},{"type":"Point","coordinates":[2083,7470],"properties":{"NAME":"Colorado Springs","POP_MAX":493654}},{"type":"Point","coordinates":[1664,7508],"properties":{"NAME":"Reno","POP_MAX":328585}},{"type":"Point","coordinates":[1777,7584],"properties":{"NAME":"Elko","POP_MAX":19252}},{"type":"Point","coordinates":[2031,7252],"properties":{"NAME":"Albuquerque","POP_MAX":898642}},{"type":"Point","coordinates":[1575,7821],"properties":{"NAME":"Salem","POP_MAX":229010}},{"type":"Point","coordinates":[2041,7702],"properties":{"NAME":"Casper","POP_MAX":60791}},{"type":"Point","coordinates":[2337,7481],"properties":{"NAME":"Topeka","POP_MAX":132091}},{"type":"Point","coordinates":[2367,7484],"properties":{"NAME":"Kansas City","POP_MAX":1469000}},{"type":"Point","coordinates":[2330,7311],"properties":{"NAME":"Tulsa","POP_MAX":946962}},{"type":"Point","coordinates":[2308,7742],"properties":{"NAME":"Sioux Falls","POP_MAX":155724}},{"type":"Point","coordinates":[2390,7101],"properties":{"NAME":"Shreveport","POP_MAX":248053}},{"type":"Point","coordinates":[2463,6983],"properties":{"NAME":"Baton Rouge","POP_MAX":422072}},{"type":"Point","coordinates":[2291,7115],"properties":{"NAME":"Ft. Worth","POP_MAX":1440454}},{"type":"Point","coordinates":[2289,6825],"properties":{"NAME":"Corpus Christi","POP_MAX":277454}},{"type":"Point","coordinates":[2279,6972],"properties":{"NAME":"Austin","POP_MAX":1161000}},{"type":"Point","coordinates":[2165,7259],"properties":{"NAME":"Amarillo","POP_MAX":181766}},{"type":"Point","coordinates":[2035,7059],"properties":{"NAME":"El Paso","POP_MAX":753000}},{"type":"Point","coordinates":[2230,6811],"properties":{"NAME":"Laredo","POP_MAX":434768}},{"type":"Point","coordinates":[3021,5704],"properties":{"NAME":"Merida","POP_MAX":345489}},{"type":"Point","coordinates":[2963,7795],"properties":{"NAME":"Burlington","POP_MAX":93807}},{"type":"Point","coordinates":[2599,7093],"properties":{"NAME":"Montgomery","POP_MAX":198325}},{"type":"Point","coordinates":[2654,6982],"properties":{"NAME":"Tallahassee","POP_MAX":221222}},{"type":"Point","coordinates":[2735,6870],"properties":{"NAME":"Orlando","POP_MAX":1350000}},{"type":"Point","coordinates":[2727,6975],"properties":{"NAME":"Jacksonville","POP_MAX":988000}},{"type":"Point","coordinates":[2743,7073],"properties":{"NAME":"Savannah","POP_MAX":180187}},{"type":"Point","coordinates":[2748,7190],"properties":{"NAME":"Columbia","POP_MAX":398093}},{"type":"Point","coordinates":[2602,7521],"properties":{"NAME":"Indianapolis","POP_MAX":1436000}},{"type":"Point","coordinates":[2831,7201],"properties":{"NAME":"Wilmington","POP_MAX":161560}},{"type":"Point","coordinates":[2664,7302],"properties":{"NAME":"Knoxville","POP_MAX":655400}},{"type":"Point","coordinates":[2844,7394],"properties":{"NAME":"Richmond","POP_MAX":912000}},{"type":"Point","coordinates":[2728,7440],"properties":{"NAME":"Charleston","POP_MAX":123799}},{"type":"Point","coordinates":[2868,7495],"properties":{"NAME":"Baltimore","POP_MAX":2255000}},{"type":"Point","coordinates":[2881,7713],"properties":{"NAME":"Syracuse","POP_MAX":662577}},{"type":"Point","coordinates":[3118,5545],"properties":{"NAME":"Puerto Ayacucho","POP_MAX":52526}},{"type":"Point","coordinates":[3288,5834],"properties":{"NAME":"Port-of-Spain","POP_MAX":294934}},{"type":"Point","coordinates":[3058,7786],"properties":{"NAME":"Augusta","POP_MAX":24042}},{"type":"Point","coordinates":[2652,7912],"properties":{"NAME":"Sault Ste. Marie","POP_MAX":83805}},{"type":"Point","coordinates":[5033,5653],"properties":{"NAME":"Atakpame","POP_MAX":80683}},{"type":"Point","coordinates":[5298,7294],"properties":{"NAME":"Sousse","POP_MAX":327004}},{"type":"Point","coordinates":[6229,6006],"properties":{"NAME":"Taizz","POP_MAX":751000}},{"type":"Point","coordinates":[1232,8525],"properties":{"NAME":"Sitka","POP_MAX":8931}},{"type":"Point","coordinates":[5671,8106],"properties":{"NAME":"Lvov","POP_MAX":803880}},{"type":"Point","coordinates":[5857,7912],"properties":{"NAME":"Odessa","POP_MAX":991000}},{"type":"Point","coordinates":[5800,8130],"properties":{"NAME":"Zhytomyr","POP_MAX":282192}},{"type":"Point","coordinates":[5977,8027],"properties":{"NAME":"Dnipropetrovsk","POP_MAX":1050000}},{"type":"Point","coordinates":[6056,8000],"properties":{"NAME":"Donetsk","POP_MAX":988000}},{"type":"Point","coordinates":[6012,8116],"properties":{"NAME":"Kharkiv","POP_MAX":1461000}},{"type":"Point","coordinates":[6477,7537],"properties":{"NAME":"Turkmenbasy","POP_MAX":68292}},{"type":"Point","coordinates":[6797,7523],"properties":{"NAME":"Bukhara","POP_MAX":319476}},{"type":"Point","coordinates":[6662,7679],"properties":{"NAME":"Nukus","POP_MAX":230006}},{"type":"Point","coordinates":[6773,7484],"properties":{"NAME":"Turkmenabat","POP_MAX":234817}},{"type":"Point","coordinates":[6724,7397],"properties":{"NAME":"Mary","POP_MAX":178708}},{"type":"Point","coordinates":[7017,7582],"properties":{"NAME":"Andijon","POP_MAX":650000}},{"type":"Point","coordinates":[7973,6425],"properties":{"NAME":"Haiphong","POP_MAX":1969000}},{"type":"Point","coordinates":[8017,6148],"properties":{"NAME":"Da Nang","POP_MAX":1000000}},{"type":"Point","coordinates":[5794,4380],"properties":{"NAME":"Kabwe","POP_MAX":188979}},{"type":"Point","coordinates":[5789,4489],"properties":{"NAME":"Mufulira","POP_MAX":153624}},{"type":"Point","coordinates":[5788,4474],"properties":{"NAME":"Kitwe","POP_MAX":404901}},{"type":"Point","coordinates":[5722,4182],"properties":{"NAME":"Livingstone","POP_MAX":165480}},{"type":"Point","coordinates":[5868,4173],"properties":{"NAME":"Chitungwiza","POP_MAX":340360}},{"type":"Point","coordinates":[5272,5452],"properties":{"NAME":"Douala","POP_MAX":1906000}},{"type":"Point","coordinates":[4948,8259],"properties":{"NAME":"Birmingham","POP_MAX":2285000}},{"type":"Point","coordinates":[4836,8382],"properties":{"NAME":"Belfast","POP_MAX":450406}},{"type":"Point","coordinates":[5758,7445],"properties":{"NAME":"Izmir","POP_MAX":2587000}},{"type":"Point","coordinates":[5812,7547],"properties":{"NAME":"Bursa","POP_MAX":1492000}},{"type":"Point","coordinates":[6014,7610],"properties":{"NAME":"Samsun","POP_MAX":609339}},{"type":"Point","coordinates":[5906,7413],"properties":{"NAME":"Konya","POP_MAX":919000}},{"type":"Point","coordinates":[5986,7362],"properties":{"NAME":"Adana","POP_MAX":1293000}},{"type":"Point","coordinates":[5901,5378],"properties":{"NAME":"Gulu","POP_MAX":146858}},{"type":"Point","coordinates":[5839,5104],"properties":{"NAME":"Kigali","POP_MAX":860000}},{"type":"Point","coordinates":[3491,5440],"properties":{"NAME":"Cottica","POP_MAX":29210}},{"type":"Point","coordinates":[4869,7413],"properties":{"NAME":"Cordoba","POP_MAX":321376}},{"type":"Point","coordinates":[5200,5999],"properties":{"NAME":"Maradi","POP_MAX":232555}},{"type":"Point","coordinates":[5148,6081],"properties":{"NAME":"Tahoua","POP_MAX":115956}},{"type":"Point","coordinates":[5799,7779],"properties":{"NAME":"Constanta","POP_MAX":303399}},{"type":"Point","coordinates":[5619,9020],"properties":{"NAME":"Lule�","POP_MAX":48638}},{"type":"Point","coordinates":[5484,8834],"properties":{"NAME":"Sundsvall","POP_MAX":73389}},{"type":"Point","coordinates":[5770,7951],"properties":{"NAME":"Iasi","POP_MAX":325914}},{"type":"Point","coordinates":[7769,5747],"properties":{"NAME":"Surat Thani","POP_MAX":157627}},{"type":"Point","coordinates":[7759,6307],"properties":{"NAME":"Chiang Mai","POP_MAX":397211}},{"type":"Point","coordinates":[7846,6086],"properties":{"NAME":"Nakhon Ratchasima","POP_MAX":334984}},{"type":"Point","coordinates":[5869,3691],"properties":{"NAME":"Mbabane","POP_MAX":90138}},{"type":"Point","coordinates":[2756,4915],"properties":{"NAME":"Piura","POP_MAX":396932}},{"type":"Point","coordinates":[3009,4265],"properties":{"NAME":"Arequipa","POP_MAX":815000}},{"type":"Point","coordinates":[2813,4691],"properties":{"NAME":"Chimbote","POP_MAX":349846}},{"type":"Point","coordinates":[2926,4732],"properties":{"NAME":"Pucallpa","POP_MAX":310750}},{"type":"Point","coordinates":[2962,4999],"properties":{"NAME":"Iquitos","POP_MAX":458729}},{"type":"Point","coordinates":[2907,4517],"properties":{"NAME":"Huancayo","POP_MAX":412733}},{"type":"Point","coordinates":[3481,3738],"properties":{"NAME":"Ciudad del Este","POP_MAX":320872}},{"type":"Point","coordinates":[4287,7405],"properties":{"NAME":"Ponta Delgada","POP_MAX":61526}},{"type":"Point","coordinates":[4759,7664],"properties":{"NAME":"Vigo","POP_MAX":378952}},{"type":"Point","coordinates":[4920,7724],"properties":{"NAME":"Bilbao","POP_MAX":875552}},{"type":"Point","coordinates":[4553,6037],"properties":{"NAME":"Kaolack","POP_MAX":277812}},{"type":"Point","coordinates":[4626,6153],"properties":{"NAME":"Kaedi","POP_MAX":21656}},{"type":"Point","coordinates":[5627,5997],"properties":{"NAME":"Geneina","POP_MAX":162981}},{"type":"Point","coordinates":[6104,6637],"properties":{"NAME":"Medina","POP_MAX":1010000}},{"type":"Point","coordinates":[6020,6862],"properties":{"NAME":"Tabuk","POP_MAX":547957}},{"type":"Point","coordinates":[5882,5497],"properties":{"NAME":"Juba","POP_MAX":111975}},{"type":"Point","coordinates":[5884,5770],"properties":{"NAME":"Malakal","POP_MAX":160765}},{"type":"Point","coordinates":[5907,6122],"properties":{"NAME":"Omdurman","POP_MAX":2395159}},{"type":"Point","coordinates":[5844,5981],"properties":{"NAME":"El Obeid","POP_MAX":393311}},{"type":"Point","coordinates":[5121,8236],"properties":{"NAME":"The Hague","POP_MAX":1406000}},{"type":"Point","coordinates":[5225,8589],"properties":{"NAME":"Kristiansand","POP_MAX":63814}},{"type":"Point","coordinates":[5406,7887],"properties":{"NAME":"Ljubljana","POP_MAX":314807}},{"type":"Point","coordinates":[5479,8008],"properties":{"NAME":"Bratislava","POP_MAX":423737}},{"type":"Point","coordinates":[5662,9313],"properties":{"NAME":"Hammerfest","POP_MAX":10000}},{"type":"Point","coordinates":[6437,6683],"properties":{"NAME":"Doha","POP_MAX":1450000}},{"type":"Point","coordinates":[6869,6969],"properties":{"NAME":"Quetta","POP_MAX":768000}},{"type":"Point","coordinates":[6902,6815],"properties":{"NAME":"Larkana","POP_MAX":364033}},{"type":"Point","coordinates":[5500,3497],"properties":{"NAME":"Springbok","POP_MAX":10438}},{"type":"Point","coordinates":[5593,3567],"properties":{"NAME":"Upington","POP_MAX":71373}},{"type":"Point","coordinates":[5543,3267],"properties":{"NAME":"Worcester","POP_MAX":127597}},{"type":"Point","coordinates":[5627,3249],"properties":{"NAME":"George","POP_MAX":174582}},{"type":"Point","coordinates":[5937,4279],"properties":{"NAME":"Tete","POP_MAX":129316}},{"type":"Point","coordinates":[6131,4464],"properties":{"NAME":"Pemba","POP_MAX":110643}},{"type":"Point","coordinates":[6096,4339],"properties":{"NAME":"Nampula","POP_MAX":388526}},{"type":"Point","coordinates":[5746,3595],"properties":{"NAME":"Welkom","POP_MAX":431944}},{"type":"Point","coordinates":[5939,3765],"properties":{"NAME":"Xai-Xai","POP_MAX":128805}},{"type":"Point","coordinates":[9052,4864],"properties":{"NAME":"Goroka","POP_MAX":39699}},{"type":"Point","coordinates":[9019,4877],"properties":{"NAME":"Mt. Hagen","POP_MAX":59064}},{"type":"Point","coordinates":[9240,4973],"properties":{"NAME":"Rabaul","POP_MAX":8074}},{"type":"Point","coordinates":[9096,4827],"properties":{"NAME":"Lae","POP_MAX":131052}},{"type":"Point","coordinates":[2706,5706],"properties":{"NAME":"David","POP_MAX":110037}},{"type":"Point","coordinates":[4949,7228],"properties":{"NAME":"Oujda","POP_MAX":409391}},{"type":"Point","coordinates":[4745,7090],"properties":{"NAME":"Safi","POP_MAX":353476}},{"type":"Point","coordinates":[5539,7679],"properties":{"NAME":"Podgorica","POP_MAX":145850}},{"type":"Point","coordinates":[6029,4180],"properties":{"NAME":"Quelimane","POP_MAX":188964}},{"type":"Point","coordinates":[5778,3306],"properties":{"NAME":"East London","POP_MAX":338627}},{"type":"Point","coordinates":[5699,3391],"properties":{"NAME":"Middelburg","POP_MAX":18164}},{"type":"Point","coordinates":[6217,7738],"properties":{"NAME":"Naltchik","POP_MAX":307866}},{"type":"Point","coordinates":[6171,7828],"properties":{"NAME":"Stavropol","POP_MAX":363064}},{"type":"Point","coordinates":[9952,8970],"properties":{"NAME":"Ugolnye Kopi","POP_MAX":3367}},{"type":"Point","coordinates":[5573,8388],"properties":{"NAME":"Kaliningrad","POP_MAX":434954}},{"type":"Point","coordinates":[5791,8569],"properties":{"NAME":"Pskov","POP_MAX":201990}},{"type":"Point","coordinates":[5961,8304],"properties":{"NAME":"Bryansk","POP_MAX":427236}},{"type":"Point","coordinates":[5895,8393],"properties":{"NAME":"Smolensk","POP_MAX":320991}},{"type":"Point","coordinates":[5957,8802],"properties":{"NAME":"Petrozavodsk","POP_MAX":265025}},{"type":"Point","coordinates":[6002,8513],"properties":{"NAME":"Tver","POP_MAX":400212}},{"type":"Point","coordinates":[6114,8649],"properties":{"NAME":"Vologda","POP_MAX":294889}},{"type":"Point","coordinates":[6112,8557],"properties":{"NAME":"Yaroslavl","POP_MAX":606730}},{"type":"Point","coordinates":[6108,7955],"properties":{"NAME":"Rostov","POP_MAX":1052000}},{"type":"Point","coordinates":[6109,7744],"properties":{"NAME":"Sochi","POP_MAX":327608}},{"type":"Point","coordinates":[6088,7827],"properties":{"NAME":"Krasnodar","POP_MAX":649851}},{"type":"Point","coordinates":[6255,8300],"properties":{"NAME":"Penza","POP_MAX":512602}},{"type":"Point","coordinates":[6108,8383],"properties":{"NAME":"Ryazan","POP_MAX":520173}},{"type":"Point","coordinates":[6096,8216],"properties":{"NAME":"Voronezh","POP_MAX":844000}},{"type":"Point","coordinates":[6645,8314],"properties":{"NAME":"Magnitogorsk","POP_MAX":413351}},{"type":"Point","coordinates":[6713,8414],"properties":{"NAME":"Chelyabinsk","POP_MAX":1091000}},{"type":"Point","coordinates":[6785,9130],"properties":{"NAME":"Vorkuta","POP_MAX":80039}},{"type":"Point","coordinates":[6385,8613],"properties":{"NAME":"Kirov","POP_MAX":457437}},{"type":"Point","coordinates":[6672,8575],"properties":{"NAME":"Nizhny Tagil","POP_MAX":381116}},{"type":"Point","coordinates":[6340,7904],"properties":{"NAME":"Astrakhan","POP_MAX":502533}},{"type":"Point","coordinates":[6537,8219],"properties":{"NAME":"Orenburg","POP_MAX":550204}},{"type":"Point","coordinates":[6284,8207],"properties":{"NAME":"Saratov","POP_MAX":843000}},{"type":"Point","coordinates":[6350,8366],"properties":{"NAME":"Ulyanovsk","POP_MAX":640680}},{"type":"Point","coordinates":[7046,8405],"properties":{"NAME":"Omsk","POP_MAX":1135000}},{"type":"Point","coordinates":[6827,8529],"properties":{"NAME":"Tyumen","POP_MAX":519119}},{"type":"Point","coordinates":[7428,8333],"properties":{"NAME":"Novokuznetsk","POP_MAX":539616}},{"type":"Point","coordinates":[7400,8425],"properties":{"NAME":"Kemerovo","POP_MAX":477090}},{"type":"Point","coordinates":[6275,7728],"properties":{"NAME":"Groznyy","POP_MAX":226100}},{"type":"Point","coordinates":[7249,5639],"properties":{"NAME":"Kandy","POP_MAX":111701}},{"type":"Point","coordinates":[7229,5617],"properties":{"NAME":"Sri Jawewardenepura Kotte","POP_MAX":115826}},{"type":"Point","coordinates":[8551,7323],"properties":{"NAME":"Daejeon","POP_MAX":1468000}},{"type":"Point","coordinates":[8537,7256],"properties":{"NAME":"Gwangju","POP_MAX":1440000}},{"type":"Point","coordinates":[8595,7251],"properties":{"NAME":"Busan","POP_MAX":3480000}},{"type":"Point","coordinates":[8402,5618],"properties":{"NAME":"Zamboanga","POP_MAX":773000}},{"type":"Point","coordinates":[8361,6272],"properties":{"NAME":"Laoag","POP_MAX":207048}},{"type":"Point","coordinates":[8360,6169],"properties":{"NAME":"Baguio City","POP_MAX":447824}},{"type":"Point","coordinates":[8489,5571],"properties":{"NAME":"General Santos","POP_MAX":950530}},{"type":"Point","coordinates":[7861,8579],"properties":{"NAME":"Ust-Ulimsk","POP_MAX":100271}},{"type":"Point","coordinates":[7897,8264],"properties":{"NAME":"Angarsk","POP_MAX":243158}},{"type":"Point","coordinates":[7549,8330],"properties":{"NAME":"Abakan","POP_MAX":167289}},{"type":"Point","coordinates":[7459,9237],"properties":{"NAME":"Norilsk","POP_MAX":165873}},{"type":"Point","coordinates":[7856,9393],"properties":{"NAME":"Khatanga","POP_MAX":3205}},{"type":"Point","coordinates":[7631,8214],"properties":{"NAME":"Kyzyl","POP_MAX":108240}},{"type":"Point","coordinates":[8000,8221],"properties":{"NAME":"Ulan Ude","POP_MAX":360278}},{"type":"Point","coordinates":[8554,8131],"properties":{"NAME":"Blagoveshchensk","POP_MAX":221296}},{"type":"Point","coordinates":[8259,8288],"properties":{"NAME":"Bukachacha","POP_MAX":3372}},{"type":"Point","coordinates":[8777,7799],"properties":{"NAME":"Dalnegorsk","POP_MAX":8123}},{"type":"Point","coordinates":[9524,9255],"properties":{"NAME":"Ambarchik","POP_MAX":0}},{"type":"Point","coordinates":[8752,9139],"properties":{"NAME":"Batagay","POP_MAX":4266}},{"type":"Point","coordinates":[9121,9311],"properties":{"NAME":"Chokurdakh","POP_MAX":2506}},{"type":"Point","coordinates":[8991,8960],"properties":{"NAME":"Ust Nera","POP_MAX":9148}},{"type":"Point","coordinates":[8204,8737],"properties":{"NAME":"Lensk","POP_MAX":25589}},{"type":"Point","coordinates":[8495,8614],"properties":{"NAME":"Aldan","POP_MAX":24426}},{"type":"Point","coordinates":[8176,8842],"properties":{"NAME":"Mirnyy","POP_MAX":40308}},{"type":"Point","coordinates":[8438,9088],"properties":{"NAME":"Zhigansk","POP_MAX":3237}},{"type":"Point","coordinates":[8991,8659],"properties":{"NAME":"Okhotsk","POP_MAX":5570}},{"type":"Point","coordinates":[8766,8026],"properties":{"NAME":"Khabarovsk","POP_MAX":579000}},{"type":"Point","coordinates":[8984,8323],"properties":{"NAME":"Okha","POP_MAX":26560}},{"type":"Point","coordinates":[8978,7939],"properties":{"NAME":"Yuzhno Sakhalinsk","POP_MAX":176484}},{"type":"Point","coordinates":[1785,7110],"properties":{"NAME":"Mexicali","POP_MAX":885000}},{"type":"Point","coordinates":[1929,6616],"properties":{"NAME":"La Paz","POP_MAX":189767}},{"type":"Point","coordinates":[2121,6699],"properties":{"NAME":"Torreon","POP_MAX":1144000}},{"type":"Point","coordinates":[2011,6656],"properties":{"NAME":"Culiacan","POP_MAX":809000}},{"type":"Point","coordinates":[1912,7032],"properties":{"NAME":"Nogales","POP_MAX":178097}},{"type":"Point","coordinates":[1911,6904],"properties":{"NAME":"Hermosillo","POP_MAX":595811}},{"type":"Point","coordinates":[1913,6836],"properties":{"NAME":"Guaymas","POP_MAX":103449}},{"type":"Point","coordinates":[2189,6502],"properties":{"NAME":"San Luis Potosi","POP_MAX":992000}},{"type":"Point","coordinates":[2286,6717],"properties":{"NAME":"Matamoros","POP_MAX":538785}},{"type":"Point","coordinates":[2229,6811],"properties":{"NAME":"Nuevo Laredo","POP_MAX":349550}},{"type":"Point","coordinates":[2113,6332],"properties":{"NAME":"Colima","POP_MAX":223287}},{"type":"Point","coordinates":[2481,6366],"properties":{"NAME":"Campeche","POP_MAX":205212}},{"type":"Point","coordinates":[2309,6207],"properties":{"NAME":"Oaxaca","POP_MAX":530728}},{"type":"Point","coordinates":[2169,6443],"properties":{"NAME":"Leon","POP_MAX":1488000}},{"type":"Point","coordinates":[5368,5904],"properties":{"NAME":"Maiduguri","POP_MAX":896000}},{"type":"Point","coordinates":[5197,5496],"properties":{"NAME":"Port Harcourt","POP_MAX":1020000}},{"type":"Point","coordinates":[5239,5665],"properties":{"NAME":"Makurdi","POP_MAX":292645}},{"type":"Point","coordinates":[5111,5645],"properties":{"NAME":"Ibadan","POP_MAX":2628000}},{"type":"Point","coordinates":[5120,5688],"properties":{"NAME":"Ogbomosho","POP_MAX":951000}},{"type":"Point","coordinates":[5162,5537],"properties":{"NAME":"Warri","POP_MAX":830106}},{"type":"Point","coordinates":[5209,5827],"properties":{"NAME":"Kaduna","POP_MAX":1442000}},{"type":"Point","coordinates":[5521,8368],"properties":{"NAME":"Gdansk","POP_MAX":740000}},{"type":"Point","coordinates":[5558,8119],"properties":{"NAME":"Krak�w","POP_MAX":756000}},{"type":"Point","coordinates":[7911,7743],"properties":{"NAME":"Dalandzadgad","POP_MAX":15093}},{"type":"Point","coordinates":[8551,7487],"properties":{"NAME":"Wonsan","POP_MAX":329207}},{"type":"Point","coordinates":[8468,7541],"properties":{"NAME":"Sinuiju","POP_MAX":288112}},{"type":"Point","coordinates":[7554,8000],"properties":{"NAME":"Dund-Us","POP_MAX":30500}},{"type":"Point","coordinates":[8191,8003],"properties":{"NAME":"Choybalsan","POP_MAX":33376}},{"type":"Point","coordinates":[5424,3672],"properties":{"NAME":"L�deritz","POP_MAX":15137}},{"type":"Point","coordinates":[5406,3886],"properties":{"NAME":"Walvis Bay","POP_MAX":52058}},{"type":"Point","coordinates":[5919,5071],"properties":{"NAME":"Mwanza","POP_MAX":493944}},{"type":"Point","coordinates":[6051,4822],"properties":{"NAME":"Morogoro","POP_MAX":250902}},{"type":"Point","coordinates":[5998,4858],"properties":{"NAME":"Dodoma","POP_MAX":218269}},{"type":"Point","coordinates":[6023,5022],"properties":{"NAME":"Arusha","POP_MAX":341136}},{"type":"Point","coordinates":[9930,2928],"properties":{"NAME":"Napier","POP_MAX":56787}},{"type":"Point","coordinates":[9873,3072],"properties":{"NAME":"Manukau","POP_MAX":362000}},{"type":"Point","coordinates":[9885,3027],"properties":{"NAME":"Hamilton","POP_MAX":112145}},{"type":"Point","coordinates":[9847,2810],"properties":{"NAME":"Blenheim","POP_MAX":26550}},{"type":"Point","coordinates":[9751,2557],"properties":{"NAME":"Dunedin","POP_MAX":114347}},{"type":"Point","coordinates":[5210,7937],"properties":{"NAME":"Bern","POP_MAX":275329}},{"type":"Point","coordinates":[5365,8439],"properties":{"NAME":"Malm�","POP_MAX":269349}},{"type":"Point","coordinates":[4634,6791],"properties":{"NAME":"Laayoune","POP_MAX":188084}},{"type":"Point","coordinates":[8550,5263],"properties":{"NAME":"Ternate","POP_MAX":187521}},{"type":"Point","coordinates":[8573,5001],"properties":{"NAME":"Ambon","POP_MAX":355596}},{"type":"Point","coordinates":[8310,4727],"properties":{"NAME":"Raba","POP_MAX":106101}},{"type":"Point","coordinates":[8921,5070],"properties":{"NAME":"Jayapura","POP_MAX":169341}},{"type":"Point","coordinates":[5315,7755],"properties":{"NAME":"Florence","POP_MAX":1500000}},{"type":"Point","coordinates":[5422,7391],"properties":{"NAME":"Catania","POP_MAX":674542}},{"type":"Point","coordinates":[5591,7690],"properties":{"NAME":"Pristina","POP_MAX":465186}},{"type":"Point","coordinates":[6050,5220],"properties":{"NAME":"Meru","POP_MAX":47226}},{"type":"Point","coordinates":[5984,5247],"properties":{"NAME":"Eldoret","POP_MAX":353381}},{"type":"Point","coordinates":[7657,5539],"properties":{"NAME":"Banda Aceh","POP_MAX":513698}},{"type":"Point","coordinates":[7796,5531],"properties":{"NAME":"George Town","POP_MAX":2500000}},{"type":"Point","coordinates":[7800,7474],"properties":{"NAME":"Zhangye","POP_MAX":230728}},{"type":"Point","coordinates":[7861,7416],"properties":{"NAME":"Wuwei","POP_MAX":493092}},{"type":"Point","coordinates":[7639,7544],"properties":{"NAME":"Dunhuang","POP_MAX":140094}},{"type":"Point","coordinates":[7952,7223],"properties":{"NAME":"Tianshui","POP_MAX":1225000}},{"type":"Point","coordinates":[7739,7313],"properties":{"NAME":"Dulan","POP_MAX":100}},{"type":"Point","coordinates":[7645,7328],"properties":{"NAME":"Golmud","POP_MAX":107092}},{"type":"Point","coordinates":[8070,6529],"properties":{"NAME":"Yulin","POP_MAX":1127000}},{"type":"Point","coordinates":[7972,6602],"properties":{"NAME":"Bose","POP_MAX":175282}},{"type":"Point","coordinates":[8103,6578],"properties":{"NAME":"Wuzhou","POP_MAX":442315}},{"type":"Point","coordinates":[7922,6759],"properties":{"NAME":"Lupanshui","POP_MAX":1221000}},{"type":"Point","coordinates":[8305,6660],"properties":{"NAME":"Quanzhou","POP_MAX":1463000}},{"type":"Point","coordinates":[8269,7063],"properties":{"NAME":"Hefei","POP_MAX":2035000}},{"type":"Point","coordinates":[8260,7167],"properties":{"NAME":"Suzhou","POP_MAX":1964000}},{"type":"Point","coordinates":[8076,6446],"properties":{"NAME":"Zhanjiang","POP_MAX":1590000}},{"type":"Point","coordinates":[8166,6655],"properties":{"NAME":"Shaoguan","POP_MAX":720266}},{"type":"Point","coordinates":[8256,5144],"properties":{"NAME":"Balikpapan","POP_MAX":445905}},{"type":"Point","coordinates":[8075,5306],"properties":{"NAME":"Kuching","POP_MAX":570407}},{"type":"Point","coordinates":[6375,4505],"properties":{"NAME":"Antsiranana","POP_MAX":82937}},{"type":"Point","coordinates":[6313,3974],"properties":{"NAME":"Fianarantsoa","POP_MAX":184184}},{"type":"Point","coordinates":[6293,4308],"properties":{"NAME":"Mahajanga","POP_MAX":154657}},{"type":"Point","coordinates":[6219,3863],"properties":{"NAME":"Toliara","POP_MAX":115319}},{"type":"Point","coordinates":[8089,4778],"properties":{"NAME":"Surakarta","POP_MAX":555308}},{"type":"Point","coordinates":[7934,4902],"properties":{"NAME":"Bandar Lampung","POP_MAX":865000}},{"type":"Point","coordinates":[8000,5057],"properties":{"NAME":"Tanjungpandan","POP_MAX":62374}},{"type":"Point","coordinates":[8139,4754],"properties":{"NAME":"Malang","POP_MAX":805000}},{"type":"Point","coordinates":[8444,4627],"properties":{"NAME":"Kupang","POP_MAX":282396}},{"type":"Point","coordinates":[8334,4984],"properties":{"NAME":"Parepare","POP_MAX":87776}},{"type":"Point","coordinates":[2801,5049],"properties":{"NAME":"Cuenca","POP_MAX":286878}},{"type":"Point","coordinates":[2485,5186],"properties":{"NAME":"Santa Cruz","POP_MAX":11262}},{"type":"Point","coordinates":[2689,5797],"properties":{"NAME":"Puerto Limon","POP_MAX":85001}},{"type":"Point","coordinates":[2890,6378],"properties":{"NAME":"Santiago de Cuba","POP_MAX":555865}},{"type":"Point","coordinates":[3033,6347],"properties":{"NAME":"Santiago","POP_MAX":1550753}},{"type":"Point","coordinates":[2898,5510],"properties":{"NAME":"Manizales","POP_MAX":375848}},{"type":"Point","coordinates":[2849,5287],"properties":{"NAME":"Pasto","POP_MAX":382236}},{"type":"Point","coordinates":[2918,5852],"properties":{"NAME":"Barranquilla","POP_MAX":1798000}},{"type":"Point","coordinates":[3292,6104],"properties":{"NAME":"Roseau","POP_MAX":23336}},{"type":"Point","coordinates":[5511,5219],"properties":{"NAME":"Mbandaka","POP_MAX":274996}},{"type":"Point","coordinates":[5450,5713],"properties":{"NAME":"Moundou","POP_MAX":156705}},{"type":"Point","coordinates":[5909,6956],"properties":{"NAME":"Suez","POP_MAX":508335}},{"type":"Point","coordinates":[5901,7029],"properties":{"NAME":"Bur Said","POP_MAX":623864}},{"type":"Point","coordinates":[5861,6916],"properties":{"NAME":"El Faiyum","POP_MAX":316772}},{"type":"Point","coordinates":[5918,6613],"properties":{"NAME":"Aswan","POP_MAX":313442}},{"type":"Point","coordinates":[5870,6793],"properties":{"NAME":"Asyut","POP_MAX":420585}},{"type":"Point","coordinates":[5704,5247],"properties":{"NAME":"Kisangani","POP_MAX":578470}},{"type":"Point","coordinates":[6192,5971],"properties":{"NAME":"Assab","POP_MAX":105496}},{"type":"Point","coordinates":[6204,5889],"properties":{"NAME":"Djibouti","POP_MAX":923000}},{"type":"Point","coordinates":[5385,8176],"properties":{"NAME":"Dresden","POP_MAX":617515}},{"type":"Point","coordinates":[7478,6913],"properties":{"NAME":"Xigaze","POP_MAX":80000}},{"type":"Point","coordinates":[7154,7444],"properties":{"NAME":"Shache","POP_MAX":373492}},{"type":"Point","coordinates":[7268,7762],"properties":{"NAME":"Yining","POP_MAX":403489}},{"type":"Point","coordinates":[7456,7992],"properties":{"NAME":"Altay","POP_MAX":142000}},{"type":"Point","coordinates":[7835,5386],"properties":{"NAME":"Putrajaya","POP_MAX":67964}},{"type":"Point","coordinates":[7976,7491],"properties":{"NAME":"Shizuishan","POP_MAX":136570}},{"type":"Point","coordinates":[8058,7436],"properties":{"NAME":"Yulin","POP_MAX":155960}},{"type":"Point","coordinates":[8039,7111],"properties":{"NAME":"Ankang","POP_MAX":1100000}},{"type":"Point","coordinates":[8100,7282],"properties":{"NAME":"Houma","POP_MAX":102400}},{"type":"Point","coordinates":[8152,6920],"properties":{"NAME":"Yueyang","POP_MAX":826000}},{"type":"Point","coordinates":[8138,6775],"properties":{"NAME":"Hengyang","POP_MAX":1016000}},{"type":"Point","coordinates":[7920,7041],"properties":{"NAME":"Mianyang","POP_MAX":1396000}},{"type":"Point","coordinates":[7851,6833],"properties":{"NAME":"Xichang","POP_MAX":379993}},{"type":"Point","coordinates":[7764,6673],"properties":{"NAME":"Baoshan","POP_MAX":1000000}},{"type":"Point","coordinates":[7875,6572],"properties":{"NAME":"Gejiu","POP_MAX":149105}},{"type":"Point","coordinates":[8191,7423],"properties":{"NAME":"Shijianzhuang","POP_MAX":2417000}},{"type":"Point","coordinates":[8191,7338],"properties":{"NAME":"Handan","POP_MAX":1631000}},{"type":"Point","coordinates":[8426,7600],"properties":{"NAME":"Anshan","POP_MAX":1639000}},{"type":"Point","coordinates":[8390,7473],"properties":{"NAME":"Dalian","POP_MAX":3167000}},{"type":"Point","coordinates":[8354,7309],"properties":{"NAME":"Qingdao","POP_MAX":2866000}},{"type":"Point","coordinates":[8298,7251],"properties":{"NAME":"Linyi","POP_MAX":2082000}},{"type":"Point","coordinates":[8317,7164],"properties":{"NAME":"Huaiyin","POP_MAX":1264000}},{"type":"Point","coordinates":[8362,6841],"properties":{"NAME":"Wenzhou","POP_MAX":2350000}},{"type":"Point","coordinates":[8388,6949],"properties":{"NAME":"Ningbo","POP_MAX":1923000}},{"type":"Point","coordinates":[8634,7165],"properties":{"NAME":"Fukuoka","POP_MAX":2792000}},{"type":"Point","coordinates":[8662,7067],"properties":{"NAME":"Miyazaki","POP_MAX":324384}},{"type":"Point","coordinates":[8558,6736],"properties":{"NAME":"Naha","POP_MAX":905238}},{"type":"Point","coordinates":[8721,7163],"properties":{"NAME":"Kochi","POP_MAX":335570}},{"type":"Point","coordinates":[8430,5249],"properties":{"NAME":"Gorontalo","POP_MAX":365497}},{"type":"Point","coordinates":[8408,7746],"properties":{"NAME":"Tongliao","POP_MAX":884000}},{"type":"Point","coordinates":[8112,7583],"properties":{"NAME":"Hohhot","POP_MAX":1726000}},{"type":"Point","coordinates":[8315,7667],"properties":{"NAME":"Chifeng","POP_MAX":1277000}},{"type":"Point","coordinates":[8402,7888],"properties":{"NAME":"Ulanhot","POP_MAX":241894}},{"type":"Point","coordinates":[8336,8069],"properties":{"NAME":"Hailar","POP_MAX":231171}},{"type":"Point","coordinates":[8633,7932],"properties":{"NAME":"Jiamusi","POP_MAX":1020000}},{"type":"Point","coordinates":[8525,8013],"properties":{"NAME":"Beian","POP_MAX":154936}},{"type":"Point","coordinates":[8484,7917],"properties":{"NAME":"Daqing","POP_MAX":1693000}},{"type":"Point","coordinates":[8650,7843],"properties":{"NAME":"Jixi","POP_MAX":965000}},{"type":"Point","coordinates":[8816,7255],"properties":{"NAME":"Nagoya","POP_MAX":3230000}},{"type":"Point","coordinates":[8851,7342],"properties":{"NAME":"Nagano","POP_MAX":594311}},{"type":"Point","coordinates":[9023,7708],"properties":{"NAME":"Kushiro","POP_MAX":198566}},{"type":"Point","coordinates":[8922,7640],"properties":{"NAME":"Hakodate","POP_MAX":302984}},{"type":"Point","coordinates":[8783,7248],"properties":{"NAME":"Kyoto","POP_MAX":1805000}},{"type":"Point","coordinates":[8930,7437],"properties":{"NAME":"Sendai","POP_MAX":2250000}},{"type":"Point","coordinates":[8897,7473],"properties":{"NAME":"Sakata","POP_MAX":100446}},{"type":"Point","coordinates":[5486,5025],"properties":{"NAME":"Bandundu","POP_MAX":118211}},{"type":"Point","coordinates":[5626,4876],"properties":{"NAME":"Kananga","POP_MAX":765000}},{"type":"Point","coordinates":[5744,4959],"properties":{"NAME":"Kasongo","POP_MAX":63000}},{"type":"Point","coordinates":[5659,4860],"properties":{"NAME":"Mbuji-Mayi","POP_MAX":1295000}},{"type":"Point","coordinates":[5815,4873],"properties":{"NAME":"Kalemie","POP_MAX":206257}},{"type":"Point","coordinates":[5817,5224],"properties":{"NAME":"Butembo","POP_MAX":286403}},{"type":"Point","coordinates":[5816,5120],"properties":{"NAME":"Goma","POP_MAX":144124}},{"type":"Point","coordinates":[5949,4553],"properties":{"NAME":"Mzuzu","POP_MAX":110201}},{"type":"Point","coordinates":[5977,4302],"properties":{"NAME":"Blantyre","POP_MAX":584877}},{"type":"Point","coordinates":[2453,6077],"properties":{"NAME":"Quetzaltenango","POP_MAX":575263}},{"type":"Point","coordinates":[4540,5997],"properties":{"NAME":"Banjul","POP_MAX":43094}},{"type":"Point","coordinates":[7155,6865],"properties":{"NAME":"Faridabad","POP_MAX":1394000}},{"type":"Point","coordinates":[7086,7194],"properties":{"NAME":"Srinagar","POP_MAX":1140000}},{"type":"Point","coordinates":[7248,6175],"properties":{"NAME":"Vijayawada","POP_MAX":1137000}},{"type":"Point","coordinates":[7145,5710],"properties":{"NAME":"Thiruvananthapuram","POP_MAX":954000}},{"type":"Point","coordinates":[7125,5798],"properties":{"NAME":"Kochi","POP_MAX":1519000}},{"type":"Point","coordinates":[7394,6404],"properties":{"NAME":"Cuttack","POP_MAX":580000}},{"type":"Point","coordinates":[7094,6107],"properties":{"NAME":"Hubli","POP_MAX":890000}},{"type":"Point","coordinates":[7087,5965],"properties":{"NAME":"Mangalore","POP_MAX":776632}},{"type":"Point","coordinates":[7137,5931],"properties":{"NAME":"Mysore","POP_MAX":887000}},{"type":"Point","coordinates":[7142,6223],"properties":{"NAME":"Gulbarga","POP_MAX":483615}},{"type":"Point","coordinates":[7069,6185],"properties":{"NAME":"Kolhapur","POP_MAX":750000}},{"type":"Point","coordinates":[7155,6328],"properties":{"NAME":"Nanded","POP_MAX":623708}},{"type":"Point","coordinates":[7147,6417],"properties":{"NAME":"Akola","POP_MAX":503502}},{"type":"Point","coordinates":[7558,6734],"properties":{"NAME":"Guwahati","POP_MAX":983000}},{"type":"Point","coordinates":[5372,4975],"properties":{"NAME":"Kayes","POP_MAX":62521}},{"type":"Point","coordinates":[5380,5122],"properties":{"NAME":"Franceville","POP_MAX":42967}},{"type":"Point","coordinates":[4985,7817],"properties":{"NAME":"Bordeaux","POP_MAX":803000}},{"type":"Point","coordinates":[5152,7727],"properties":{"NAME":"Marseille","POP_MAX":1400000}},{"type":"Point","coordinates":[5005,8087],"properties":{"NAME":"Le Havre","POP_MAX":242124}},{"type":"Point","coordinates":[5000,6160],"properties":{"NAME":"Gao","POP_MAX":116967}},{"type":"Point","coordinates":[2994,2575],"properties":{"NAME":"Coihaique","POP_MAX":45787}},{"type":"Point","coordinates":[3044,4144],"properties":{"NAME":"Arica","POP_MAX":185999}},{"type":"Point","coordinates":[3043,3631],"properties":{"NAME":"Copiapo","POP_MAX":129280}},{"type":"Point","coordinates":[3017,3484],"properties":{"NAME":"La Serena","POP_MAX":154521}},{"type":"Point","coordinates":[2986,3045],"properties":{"NAME":"Los Angeles","POP_MAX":145239}},{"type":"Point","coordinates":[3737,8763],"properties":{"NAME":"Narsarsuaq","POP_MAX":145}},{"type":"Point","coordinates":[3507,9098],"properties":{"NAME":"Sisimiut","POP_MAX":5227}},{"type":"Point","coordinates":[3438,9432],"properties":{"NAME":"Upernavik","POP_MAX":1129}},{"type":"Point","coordinates":[3071,9709],"properties":{"NAME":"Qaanaaq","POP_MAX":616}},{"type":"Point","coordinates":[4527,6428],"properties":{"NAME":"Nouadhibou","POP_MAX":86738}},{"type":"Point","coordinates":[4683,6055],"properties":{"NAME":"Kayes","POP_MAX":77207}},{"type":"Point","coordinates":[4734,6183],"properties":{"NAME":"Ayoun el Atrous","POP_MAX":1423}},{"type":"Point","coordinates":[4828,5996],"properties":{"NAME":"Segou","POP_MAX":122952}},{"type":"Point","coordinates":[5599,7652],"properties":{"NAME":"Skopje","POP_MAX":494087}},{"type":"Point","coordinates":[5651,6620],"properties":{"NAME":"Al Jawf","POP_MAX":24132}},{"type":"Point","coordinates":[5442,6745],"properties":{"NAME":"Tmassah","POP_MAX":500}},{"type":"Point","coordinates":[5422,7094],"properties":{"NAME":"Misratah","POP_MAX":386120}},{"type":"Point","coordinates":[5338,7126],"properties":{"NAME":"Zuwarah","POP_MAX":180310}},{"type":"Point","coordinates":[6238,7273],"properties":{"NAME":"Kirkuk","POP_MAX":601433}},{"type":"Point","coordinates":[6204,7324],"properties":{"NAME":"Mosul","POP_MAX":1316000}},{"type":"Point","coordinates":[6237,7072],"properties":{"NAME":"An Najaf","POP_MAX":665552}},{"type":"Point","coordinates":[6043,5889],"properties":{"NAME":"Bahir Dar","POP_MAX":206748}},{"type":"Point","coordinates":[6101,5999],"properties":{"NAME":"Mekele","POP_MAX":95856}},{"type":"Point","coordinates":[6168,5773],"properties":{"NAME":"Dire Dawa","POP_MAX":252279}},{"type":"Point","coordinates":[5718,9072],"properties":{"NAME":"Rovaniemi","POP_MAX":34781}},{"type":"Point","coordinates":[5604,8875],"properties":{"NAME":"Vaasa","POP_MAX":57014}},{"type":"Point","coordinates":[5663,8782],"properties":{"NAME":"Tampere","POP_MAX":259279}},{"type":"Point","coordinates":[6594,8132],"properties":{"NAME":"Aqtobe","POP_MAX":262457}},{"type":"Point","coordinates":[6760,8287],"properties":{"NAME":"Rudny","POP_MAX":124000}},{"type":"Point","coordinates":[6825,7814],"properties":{"NAME":"Qyzylorda","POP_MAX":300000}},{"type":"Point","coordinates":[6448,7948],"properties":{"NAME":"Atyrau","POP_MAX":182753}},{"type":"Point","coordinates":[7100,8216],"properties":{"NAME":"Ekibastuz","POP_MAX":127868}},{"type":"Point","coordinates":[7145,8249],"properties":{"NAME":"Pavlodar","POP_MAX":329002}},{"type":"Point","coordinates":[7238,8141],"properties":{"NAME":"Semey","POP_MAX":311353}},{"type":"Point","coordinates":[7303,8115],"properties":{"NAME":"Oskemen","POP_MAX":319067}},{"type":"Point","coordinates":[6516,7067],"properties":{"NAME":"Yazd","POP_MAX":477905}},{"type":"Point","coordinates":[6359,7030],"properties":{"NAME":"Ahvaz","POP_MAX":996000}},{"type":"Point","coordinates":[6334,6986],"properties":{"NAME":"Basra","POP_MAX":870000}},{"type":"Point","coordinates":[6569,6794],"properties":{"NAME":"Bandar-e-Abbas","POP_MAX":461499}},{"type":"Point","coordinates":[6353,7234],"properties":{"NAME":"Hamadan","POP_MAX":528256}},{"type":"Point","coordinates":[6292,7425],"properties":{"NAME":"Tabriz","POP_MAX":1413000}},{"type":"Point","coordinates":[7115,7010],"properties":{"NAME":"Ludhiana","POP_MAX":1649000}},{"type":"Point","coordinates":[7114,6677],"properties":{"NAME":"Kota","POP_MAX":827000}},{"type":"Point","coordinates":[7036,6741],"properties":{"NAME":"Jodhpur","POP_MAX":995000}},{"type":"Point","coordinates":[6940,7670],"properties":{"NAME":"Shymkent","POP_MAX":465392}},{"type":"Point","coordinates":[6990,7704],"properties":{"NAME":"Taraz","POP_MAX":358153}},{"type":"Point","coordinates":[7256,6774],"properties":{"NAME":"Lucknow","POP_MAX":2695000}},{"type":"Point","coordinates":[7162,6954],"properties":{"NAME":"Saharanpur","POP_MAX":484873}},{"type":"Point","coordinates":[7379,6572],"properties":{"NAME":"Ranchi","POP_MAX":1044000}},{"type":"Point","coordinates":[7425,6679],"properties":{"NAME":"Bhagalpur","POP_MAX":361548}},{"type":"Point","coordinates":[7276,6448],"properties":{"NAME":"Raipur","POP_MAX":875000}},{"type":"Point","coordinates":[7229,6560],"properties":{"NAME":"Jabalpur","POP_MAX":1285000}},{"type":"Point","coordinates":[7115,6534],"properties":{"NAME":"Indore","POP_MAX":2026000}},{"type":"Point","coordinates":[7225,5909],"properties":{"NAME":"Pondicherry","POP_MAX":227411}},{"type":"Point","coordinates":[7179,5894],"properties":{"NAME":"Salem","POP_MAX":873000}},{"type":"Point","coordinates":[7194,5844],"properties":{"NAME":"Tiruchirappalli","POP_MAX":951000}},{"type":"Point","coordinates":[5333,4940],"properties":{"NAME":"Pointe-Noire","POP_MAX":659084}},{"type":"Point","coordinates":[4743,5819],"properties":{"NAME":"Kankan","POP_MAX":114009}},{"type":"Point","coordinates":[4756,5667],"properties":{"NAME":"Nzerekore","POP_MAX":168121}},{"type":"Point","coordinates":[4862,5663],"properties":{"NAME":"Bouake","POP_MAX":567481}},{"type":"Point","coordinates":[6546,4007],"properties":{"NAME":"St.-Denis","POP_MAX":190047}},{"type":"Point","coordinates":[3113,4639],"properties":{"NAME":"Rio Branco","POP_MAX":257642}},{"type":"Point","coordinates":[3769,5071],"properties":{"NAME":"S�o Lu�s","POP_MAX":1038000}},{"type":"Point","coordinates":[3222,4710],"properties":{"NAME":"Porto Velho","POP_MAX":306180}},{"type":"Point","coordinates":[3635,4494],"properties":{"NAME":"Alvorada","POP_MAX":10232}},{"type":"Point","coordinates":[3396,4115],"properties":{"NAME":"Corumba","POP_MAX":96520}},{"type":"Point","coordinates":[3779,4062],"properties":{"NAME":"Belo Horizonte","POP_MAX":5575000}},{"type":"Point","coordinates":[3780,4248],"properties":{"NAME":"Montes Claros","POP_MAX":332379}},{"type":"Point","coordinates":[3657,4121],"properties":{"NAME":"Uberlandia","POP_MAX":563536}},{"type":"Point","coordinates":[3457,4590],"properties":{"NAME":"Colider","POP_MAX":27139}},{"type":"Point","coordinates":[3445,4643],"properties":{"NAME":"Alta Floresta","POP_MAX":40466}},{"type":"Point","coordinates":[3440,4314],"properties":{"NAME":"Cuiaba","POP_MAX":806000}},{"type":"Point","coordinates":[3544,3376],"properties":{"NAME":"Pelotas","POP_MAX":320674}},{"type":"Point","coordinates":[3577,3525],"properties":{"NAME":"Caxias do Sul","POP_MAX":381270}},{"type":"Point","coordinates":[3605,3762],"properties":{"NAME":"Ponta Grossa","POP_MAX":292177}},{"type":"Point","coordinates":[3810,4922],"properties":{"NAME":"Teresina","POP_MAX":907000}},{"type":"Point","coordinates":[4007,4659],"properties":{"NAME":"Maceio","POP_MAX":1186000}},{"type":"Point","coordinates":[3864,4356],"properties":{"NAME":"Vitoria da Conquista","POP_MAX":308204}},{"type":"Point","coordinates":[3748,4513],"properties":{"NAME":"Barreiras","POP_MAX":158292}},{"type":"Point","coordinates":[3879,4036],"properties":{"NAME":"Vila Velha","POP_MAX":1209091}},{"type":"Point","coordinates":[4020,4882],"properties":{"NAME":"Natal","POP_MAX":1088000}},{"type":"Point","coordinates":[2276,8449],"properties":{"NAME":"Thompson","POP_MAX":13727}},{"type":"Point","coordinates":[2218,8106],"properties":{"NAME":"Brandon","POP_MAX":28418}},{"type":"Point","coordinates":[1885,8695],"properties":{"NAME":"Fort Smith","POP_MAX":518}},{"type":"Point","coordinates":[1899,8506],"properties":{"NAME":"Fort McMurray","POP_MAX":21863}},{"type":"Point","coordinates":[1735,8477],"properties":{"NAME":"Peace River","POP_MAX":5340}},{"type":"Point","coordinates":[1636,8478],"properties":{"NAME":"Fort St. John","POP_MAX":18776}},{"type":"Point","coordinates":[3094,8913],"properties":{"NAME":"Iqaluit","POP_MAX":6124}},{"type":"Point","coordinates":[2076,9224],"properties":{"NAME":"Cambridge Bay","POP_MAX":1477}},{"type":"Point","coordinates":[1795,9147],"properties":{"NAME":"Kugluktuk","POP_MAX":1302}},{"type":"Point","coordinates":[2475,8889],"properties":{"NAME":"Chesterfield Inlet","POP_MAX":374}},{"type":"Point","coordinates":[2382,8759],"properties":{"NAME":"Arviat","POP_MAX":1868}},{"type":"Point","coordinates":[2397,9248],"properties":{"NAME":"Taloyoak","POP_MAX":774}},{"type":"Point","coordinates":[2724,9232],"properties":{"NAME":"Igloolik","POP_MAX":1612}},{"type":"Point","coordinates":[1119,8931],"properties":{"NAME":"Dawson City","POP_MAX":1319}},{"type":"Point","coordinates":[2736,8027],"properties":{"NAME":"Timmins","POP_MAX":34974}},{"type":"Point","coordinates":[2789,7901],"properties":{"NAME":"North Bay","POP_MAX":50170}},{"type":"Point","coordinates":[2836,8422],"properties":{"NAME":"Kuujjuarapik","POP_MAX":1243}},{"type":"Point","coordinates":[3097,8585],"properties":{"NAME":"Kuujjuaq","POP_MAX":1273}},{"type":"Point","coordinates":[3326,7887],"properties":{"NAME":"Sydney","POP_MAX":37538}},{"type":"Point","coordinates":[3138,8286],"properties":{"NAME":"Labrador City","POP_MAX":10313}},{"type":"Point","coordinates":[5312,5385],"properties":{"NAME":"Ebolowa","POP_MAX":87875}},{"type":"Point","coordinates":[5578,5551],"properties":{"NAME":"Bambari","POP_MAX":62098}},{"type":"Point","coordinates":[5345,7851],"properties":{"NAME":"Venice","POP_MAX":270816}},{"type":"Point","coordinates":[2988,2299],"properties":{"NAME":"El Calafate","POP_MAX":8000}},{"type":"Point","coordinates":[3093,3388],"properties":{"NAME":"San Juan","POP_MAX":447048}},{"type":"Point","coordinates":[3189,2707],"properties":{"NAME":"Rawson","POP_MAX":26335}},{"type":"Point","coordinates":[3106,2959],"properties":{"NAME":"Neuquen","POP_MAX":242092}},{"type":"Point","coordinates":[3194,4357],"properties":{"NAME":"Trinidad","POP_MAX":84259}},{"type":"Point","coordinates":[3211,3094],"properties":{"NAME":"Santa Rosa","POP_MAX":111424}},{"type":"Point","coordinates":[3016,2831],"properties":{"NAME":"San Carlos de Bariloche","POP_MAX":95394}},{"type":"Point","coordinates":[3180,3780],"properties":{"NAME":"Salta","POP_MAX":512686}},{"type":"Point","coordinates":[3185,3662],"properties":{"NAME":"Tucum�n","POP_MAX":830000}},{"type":"Point","coordinates":[3381,3700],"properties":{"NAME":"Formosa","POP_MAX":221383}},{"type":"Point","coordinates":[3311,3384],"properties":{"NAME":"Santa Fe","POP_MAX":489505}},{"type":"Point","coordinates":[3312,3307],"properties":{"NAME":"Rosario","POP_MAX":1203000}},{"type":"Point","coordinates":[3690,3889],"properties":{"NAME":"Campinas","POP_MAX":2791000}},{"type":"Point","coordinates":[3680,3855],"properties":{"NAME":"Sorocaba","POP_MAX":563281}},{"type":"Point","coordinates":[3670,3990],"properties":{"NAME":"Ribeirao Preto","POP_MAX":551267}},{"type":"Point","coordinates":[3873,4673],"properties":{"NAME":"Petrolina","POP_MAX":260985}},{"type":"Point","coordinates":[5285,5562],"properties":{"NAME":"Bamenda","POP_MAX":445299}},{"type":"Point","coordinates":[5375,5756],"properties":{"NAME":"Garoua","POP_MAX":436899}},{"type":"Point","coordinates":[6734,7207],"properties":{"NAME":"Herat","POP_MAX":481009}},{"type":"Point","coordinates":[6871,7344],"properties":{"NAME":"Mazar-e Sharif","POP_MAX":458151}},{"type":"Point","coordinates":[7876,5976],"properties":{"NAME":"Battambang","POP_MAX":154773}},{"type":"Point","coordinates":[7895,5992],"properties":{"NAME":"Siem Reap","POP_MAX":109398}},{"type":"Point","coordinates":[5457,4664],"properties":{"NAME":"Malanje","POP_MAX":125856}},{"type":"Point","coordinates":[5375,4488],"properties":{"NAME":"Benguela","POP_MAX":151226}},{"type":"Point","coordinates":[5378,4353],"properties":{"NAME":"Lubango","POP_MAX":125632}},{"type":"Point","coordinates":[5341,4336],"properties":{"NAME":"Namibe","POP_MAX":132900}},{"type":"Point","coordinates":[3198,3970],"properties":{"NAME":"Tarija","POP_MAX":159269}},{"type":"Point","coordinates":[3341,5976],"properties":{"NAME":"Bridgetown","POP_MAX":191152}},{"type":"Point","coordinates":[5218,7357],"properties":{"NAME":"Annaba","POP_MAX":503524}},{"type":"Point","coordinates":[5075,5758],"properties":{"NAME":"Parakou","POP_MAX":188853}},{"type":"Point","coordinates":[5075,5593],"properties":{"NAME":"Porto-Novo","POP_MAX":300000}},{"type":"Point","coordinates":[5186,7325],"properties":{"NAME":"Constantine","POP_MAX":605179}},{"type":"Point","coordinates":[5662,8237],"properties":{"NAME":"Brest","POP_MAX":300715}},{"type":"Point","coordinates":[7496,6541],"properties":{"NAME":"Khulna","POP_MAX":1553000}},{"type":"Point","coordinates":[5768,3990],"properties":{"NAME":"Francistown","POP_MAX":89979}},{"type":"Point","coordinates":[5749,3878],"properties":{"NAME":"Mahalapye","POP_MAX":50744}},{"type":"Point","coordinates":[5746,3919],"properties":{"NAME":"Serowe","POP_MAX":48573}},{"type":"Point","coordinates":[8686,4378],"properties":{"NAME":"Katherine","POP_MAX":10141}},{"type":"Point","coordinates":[8215,3266],"properties":{"NAME":"Busselton","POP_MAX":10214}},{"type":"Point","coordinates":[8226,3331],"properties":{"NAME":"Mandurah","POP_MAX":73356}},{"type":"Point","coordinates":[8407,4176],"properties":{"NAME":"Broome","POP_MAX":13218}},{"type":"Point","coordinates":[8385,3435],"properties":{"NAME":"Kalgoorlie","POP_MAX":36852}},{"type":"Point","coordinates":[8286,3187],"properties":{"NAME":"Albany","POP_MAX":26445}},{"type":"Point","coordinates":[8306,4039],"properties":{"NAME":"Port Hedland","POP_MAX":14288}},{"type":"Point","coordinates":[8257,4015],"properties":{"NAME":"Karratha","POP_MAX":16796}},{"type":"Point","coordinates":[8194,3549],"properties":{"NAME":"Geraldton","POP_MAX":27258}},{"type":"Point","coordinates":[9070,3229],"properties":{"NAME":"Griffith","POP_MAX":15455}},{"type":"Point","coordinates":[9155,3288],"properties":{"NAME":"Orange","POP_MAX":39329}},{"type":"Point","coordinates":[9141,3347],"properties":{"NAME":"Dubbo","POP_MAX":31574}},{"type":"Point","coordinates":[9226,3448],"properties":{"NAME":"Armidale","POP_MAX":22673}},{"type":"Point","coordinates":[8941,3365],"properties":{"NAME":"Broken Hill","POP_MAX":17395}},{"type":"Point","coordinates":[8786,3203],"properties":{"NAME":"Port Lincoln","POP_MAX":13630}},{"type":"Point","coordinates":[8834,3302],"properties":{"NAME":"Whyalla","POP_MAX":22559}},{"type":"Point","coordinates":[8946,2994],"properties":{"NAME":"Portland","POP_MAX":11808}},{"type":"Point","coordinates":[9021,3086],"properties":{"NAME":"Bendigo","POP_MAX":81657}},{"type":"Point","coordinates":[9077,3109],"properties":{"NAME":"Wangaratta","POP_MAX":14022}},{"type":"Point","coordinates":[8975,3742],"properties":{"NAME":"Windorah","POP_MAX":158}},{"type":"Point","coordinates":[8887,4015],"properties":{"NAME":"Mount Isa","POP_MAX":33200}},{"type":"Point","coordinates":[9195,3862],"properties":{"NAME":"Rockhampton","POP_MAX":65850}},{"type":"Point","coordinates":[9062,4238],"properties":{"NAME":"Cairns","POP_MAX":154225}},{"type":"Point","coordinates":[9276,3589],"properties":{"NAME":"Gold Coast","POP_MAX":527660}},{"type":"Point","coordinates":[9078,2829],"properties":{"NAME":"Devonport","POP_MAX":19317}},{"type":"Point","coordinates":[4882,5865],"properties":{"NAME":"Bobo Dioulasso","POP_MAX":360106}},{"type":"Point","coordinates":[7470,6630],"properties":{"NAME":"Rajshahi","POP_MAX":810000}},{"type":"Point","coordinates":[7678,6491],"properties":{"NAME":"Mandalay","POP_MAX":1300000}},{"type":"Point","coordinates":[7589,6384],"properties":{"NAME":"Sittwe","POP_MAX":179032}},{"type":"Point","coordinates":[5820,5021],"properties":{"NAME":"Bujumbura","POP_MAX":331700}},{"type":"Point","coordinates":[247,4389],"properties":{"NAME":"Pago Pago","POP_MAX":12576}},{"type":"Point","coordinates":[3297,5979],"properties":{"NAME":"Kingstown","POP_MAX":49485}},{"type":"Point","coordinates":[3303,6029],"properties":{"NAME":"Castries","POP_MAX":37963}},{"type":"Point","coordinates":[3255,6220],"properties":{"NAME":"Basseterre","POP_MAX":21887}},{"type":"Point","coordinates":[4572,6846],"properties":{"NAME":"Las Palmas","POP_MAX":378495}},{"type":"Point","coordinates":[6256,5822],"properties":{"NAME":"Berbera","POP_MAX":242344}},{"type":"Point","coordinates":[6604,4048],"properties":{"NAME":"Port Louis","POP_MAX":595491}},{"type":"Point","coordinates":[5961,7045],"properties":{"NAME":"Gaza","POP_MAX":505700}},{"type":"Point","coordinates":[3282,5916],"properties":{"NAME":"Saint George's","POP_MAX":33734}},{"type":"Point","coordinates":[836,4200],"properties":{"NAME":"Papeete","POP_MAX":131695}},{"type":"Point","coordinates":[6411,6738],"properties":{"NAME":"Manama","POP_MAX":563920}},{"type":"Point","coordinates":[2810,6755],"properties":{"NAME":"Freeport","POP_MAX":25383}},{"type":"Point","coordinates":[3279,6209],"properties":{"NAME":"Saint John's","POP_MAX":35499}},{"type":"Point","coordinates":[8333,6583],"properties":{"NAME":"Magong","POP_MAX":56435}},{"type":"Point","coordinates":[8363,6617],"properties":{"NAME":"Taichung","POP_MAX":2629323}},{"type":"Point","coordinates":[7112,5869],"properties":{"NAME":"Kozhikode","POP_MAX":953000}},{"type":"Point","coordinates":[7392,6392],"properties":{"NAME":"Bhubaneshwar","POP_MAX":844000}},{"type":"Point","coordinates":[7403,6538],"properties":{"NAME":"Jamshedpur","POP_MAX":1300000}},{"type":"Point","coordinates":[3437,3196],"properties":{"NAME":"Montevideo","POP_MAX":1513000}},{"type":"Point","coordinates":[1881,7918],"properties":{"NAME":"Helena","POP_MAX":38725}},{"type":"Point","coordinates":[2195,7930],"properties":{"NAME":"Bismarck","POP_MAX":63871}},{"type":"Point","coordinates":[1764,7745],"properties":{"NAME":"Boise","POP_MAX":338071}},{"type":"Point","coordinates":[1608,7379],"properties":{"NAME":"San Jose","POP_MAX":1668000}},{"type":"Point","coordinates":[1618,7453],"properties":{"NAME":"Sacramento","POP_MAX":1604000}},{"type":"Point","coordinates":[1792,7316],"properties":{"NAME":"Las Vegas","POP_MAX":1823000}},{"type":"Point","coordinates":[2051,7286],"properties":{"NAME":"Santa Fe","POP_MAX":92681}},{"type":"Point","coordinates":[1585,7856],"properties":{"NAME":"Portland","POP_MAX":1875000}},{"type":"Point","coordinates":[1884,7581],"properties":{"NAME":"Salt Lake City","POP_MAX":966000}},{"type":"Point","coordinates":[2082,7602],"properties":{"NAME":"Cheyenne","POP_MAX":72927}},{"type":"Point","coordinates":[2394,7627],"properties":{"NAME":"Des Moines","POP_MAX":380655}},{"type":"Point","coordinates":[2328,7608],"properties":{"NAME":"Omaha","POP_MAX":877110}},{"type":"Point","coordinates":[2285,7273],"properties":{"NAME":"Oklahoma City","POP_MAX":788000}},{"type":"Point","coordinates":[2207,7789],"properties":{"NAME":"Pierre","POP_MAX":13879}},{"type":"Point","coordinates":[2258,6926],"properties":{"NAME":"San Antonio","POP_MAX":1473000}},{"type":"Point","coordinates":[2989,5667],"properties":{"NAME":"San Cristobal","POP_MAX":438798}},{"type":"Point","coordinates":[3108,5810],"properties":{"NAME":"Valencia","POP_MAX":1770000}},{"type":"Point","coordinates":[2490,7089],"properties":{"NAME":"Jackson","POP_MAX":250902}},{"type":"Point","coordinates":[2811,7293],"properties":{"NAME":"Raleigh","POP_MAX":1163515}},{"type":"Point","coordinates":[2726,7621],"properties":{"NAME":"Cleveland","POP_MAX":1890000}},{"type":"Point","coordinates":[2649,7487],"properties":{"NAME":"Cincinnati","POP_MAX":1636000}},{"type":"Point","coordinates":[2585,7314],"properties":{"NAME":"Nashville","POP_MAX":877000}},{"type":"Point","coordinates":[2495,7253],"properties":{"NAME":"Memphis","POP_MAX":1081000}},{"type":"Point","coordinates":[2877,7353],"properties":{"NAME":"Norfolk","POP_MAX":1047869}},{"type":"Point","coordinates":[2553,7713],"properties":{"NAME":"Milwaukee","POP_MAX":1388000}},{"type":"Point","coordinates":[2805,7703],"properties":{"NAME":"Buffalo","POP_MAX":1016000}},{"type":"Point","coordinates":[2773,7561],"properties":{"NAME":"Pittsburgh","POP_MAX":1838000}},{"type":"Point","coordinates":[3258,5702],"properties":{"NAME":"Ciudad Guayana","POP_MAX":746535}},{"type":"Point","coordinates":[5036,5572],"properties":{"NAME":"Lome","POP_MAX":1452000}},{"type":"Point","coordinates":[5285,7350],"properties":{"NAME":"Tunis","POP_MAX":2412500}},{"type":"Point","coordinates":[757,8567],"properties":{"NAME":"Kodiak","POP_MAX":9461}},{"type":"Point","coordinates":[470,8417],"properties":{"NAME":"Cold Bay","POP_MAX":200}},{"type":"Point","coordinates":[496,8741],"properties":{"NAME":"Bethel","POP_MAX":6228}},{"type":"Point","coordinates":[356,9179],"properties":{"NAME":"Point Hope","POP_MAX":461}},{"type":"Point","coordinates":[635,9350],"properties":{"NAME":"Barrow","POP_MAX":4336}},{"type":"Point","coordinates":[395,8956],"properties":{"NAME":"Nome","POP_MAX":3485}},{"type":"Point","coordinates":[925,8761],"properties":{"NAME":"Valdez","POP_MAX":4036}},{"type":"Point","coordinates":[1258,8597],"properties":{"NAME":"Juneau","POP_MAX":30711}},{"type":"Point","coordinates":[887,8976],"properties":{"NAME":"Fairbanks","POP_MAX":56993}},{"type":"Point","coordinates":[861,9292],"properties":{"NAME":"Prudhoe Bay","POP_MAX":2500}},{"type":"Point","coordinates":[5934,7802],"properties":{"NAME":"Sevastapol","POP_MAX":379200}},{"type":"Point","coordinates":[6516,6635],"properties":{"NAME":"Abu Dhabi","POP_MAX":603492}},{"type":"Point","coordinates":[6628,7417],"properties":{"NAME":"Ashgabat","POP_MAX":727700}},{"type":"Point","coordinates":[6867,7517],"properties":{"NAME":"Samarqand","POP_MAX":708000}},{"type":"Point","coordinates":[5790,4323],"properties":{"NAME":"Lusaka","POP_MAX":1328000}},{"type":"Point","coordinates":[5867,4184],"properties":{"NAME":"Harare","POP_MAX":1572000}},{"type":"Point","coordinates":[5798,4048],"properties":{"NAME":"Bulawayo","POP_MAX":699385}},{"type":"Point","coordinates":[8500,4721],"properties":{"NAME":"Dili","POP_MAX":234331}},{"type":"Point","coordinates":[9690,4189],"properties":{"NAME":"Port Vila","POP_MAX":44040}},{"type":"Point","coordinates":[2572,6034],"properties":{"NAME":"Tegucigalpa","POP_MAX":946000}},{"type":"Point","coordinates":[3382,5611],"properties":{"NAME":"Georgetown","POP_MAX":264350}},{"type":"Point","coordinates":[4390,8936],"properties":{"NAME":"Reykjav�k","POP_MAX":166212}},{"type":"Point","coordinates":[2987,6292],"properties":{"NAME":"Port-au-Prince","POP_MAX":1998000}},{"type":"Point","coordinates":[4883,8456],"properties":{"NAME":"Glasgow","POP_MAX":1160000}},{"type":"Point","coordinates":[5909,5235],"properties":{"NAME":"Kampala","POP_MAX":1420000}},{"type":"Point","coordinates":[6256,5958],"properties":{"NAME":"Aden","POP_MAX":1000000}},{"type":"Point","coordinates":[3465,5555],"properties":{"NAME":"Paramaribo","POP_MAX":254169}},{"type":"Point","coordinates":[4835,7385],"properties":{"NAME":"Seville","POP_MAX":1212045}},{"type":"Point","coordinates":[5252,6017],"properties":{"NAME":"Zinder","POP_MAX":230358}},{"type":"Point","coordinates":[5061,6001],"properties":{"NAME":"Niamey","POP_MAX":915000}},{"type":"Point","coordinates":[6039,6354],"properties":{"NAME":"Port Sudan","POP_MAX":489725}},{"type":"Point","coordinates":[6918,7452],"properties":{"NAME":"Dushanbe","POP_MAX":1086244}},{"type":"Point","coordinates":[2997,4433],"properties":{"NAME":"Cusco","POP_MAX":361182}},{"type":"Point","coordinates":[3045,4173],"properties":{"NAME":"Tacna","POP_MAX":280098}},{"type":"Point","coordinates":[2801,4746],"properties":{"NAME":"Trujillo","POP_MAX":765171}},{"type":"Point","coordinates":[2893,4401],"properties":{"NAME":"Ica","POP_MAX":279420}},{"type":"Point","coordinates":[3396,3751],"properties":{"NAME":"Asuncion","POP_MAX":1870000}},{"type":"Point","coordinates":[2599,5922],"properties":{"NAME":"Managua","POP_MAX":920000}},{"type":"Point","coordinates":[4633,5708],"properties":{"NAME":"Freetown","POP_MAX":827000}},{"type":"Point","coordinates":[5224,6202],"properties":{"NAME":"Agadez","POP_MAX":117770}},{"type":"Point","coordinates":[5695,5916],"properties":{"NAME":"Niyala","POP_MAX":392373}},{"type":"Point","coordinates":[5782,5663],"properties":{"NAME":"Wau","POP_MAX":127384}},{"type":"Point","coordinates":[5851,6328],"properties":{"NAME":"Dongola","POP_MAX":26404}},{"type":"Point","coordinates":[6016,6113],"properties":{"NAME":"Kassala","POP_MAX":401477}},{"type":"Point","coordinates":[5531,9254],"properties":{"NAME":"Troms�","POP_MAX":52436}},{"type":"Point","coordinates":[5292,8893],"properties":{"NAME":"Trondheim","POP_MAX":147139}},{"type":"Point","coordinates":[5150,8718],"properties":{"NAME":"Bergen","POP_MAX":213585}},{"type":"Point","coordinates":[7040,7171],"properties":{"NAME":"Islamabad","POP_MAX":780000}},{"type":"Point","coordinates":[6992,6968],"properties":{"NAME":"Multan","POP_MAX":1522000}},{"type":"Point","coordinates":[6906,6688],"properties":{"NAME":"Hyderabad","POP_MAX":1459000}},{"type":"Point","coordinates":[6994,7188],"properties":{"NAME":"Peshawar","POP_MAX":1303000}},{"type":"Point","coordinates":[7378,6824],"properties":{"NAME":"Kathmandu","POP_MAX":895000}},{"type":"Point","coordinates":[6136,4375],"properties":{"NAME":"Nacala","POP_MAX":224795}},{"type":"Point","coordinates":[5732,3529],"properties":{"NAME":"Bloemfontein","POP_MAX":463064}},{"type":"Point","coordinates":[5788,3727],"properties":{"NAME":"Pretoria","POP_MAX":1338000}},{"type":"Point","coordinates":[9102,4668],"properties":{"NAME":"Port Moresby","POP_MAX":283733}},{"type":"Point","coordinates":[9457,4670],"properties":{"NAME":"Honiara","POP_MAX":76328}},{"type":"Point","coordinates":[2786,5737],"properties":{"NAME":"Panama City","POP_MAX":1281000}},{"type":"Point","coordinates":[4863,7191],"properties":{"NAME":"Fez","POP_MAX":1002000}},{"type":"Point","coordinates":[4811,7189],"properties":{"NAME":"Rabat","POP_MAX":1705000}},{"type":"Point","coordinates":[4779,7051],"properties":{"NAME":"Marrakesh","POP_MAX":872000}},{"type":"Point","coordinates":[5806,7942],"properties":{"NAME":"Chisinau","POP_MAX":688134}},{"type":"Point","coordinates":[5973,4068],"properties":{"NAME":"Beira","POP_MAX":530604}},{"type":"Point","coordinates":[5715,3248],"properties":{"NAME":"Port Elizabeth","POP_MAX":1021000}},{"type":"Point","coordinates":[5910,3712],"properties":{"NAME":"Maputo","POP_MAX":1446000}},{"type":"Point","coordinates":[7369,8492],"properties":{"NAME":"Tomsk","POP_MAX":535479}},{"type":"Point","coordinates":[9945,8970],"properties":{"NAME":"Anadyr","POP_MAX":10332}},{"type":"Point","coordinates":[5924,9215],"properties":{"NAME":"Murmansk","POP_MAX":319263}},{"type":"Point","coordinates":[6131,8960],"properties":{"NAME":"Archangel","POP_MAX":356051}},{"type":"Point","coordinates":[6227,8483],"properties":{"NAME":"Nizhny Novgorod","POP_MAX":1278000}},{"type":"Point","coordinates":[6241,8041],"properties":{"NAME":"Volgograd","POP_MAX":984000}},{"type":"Point","coordinates":[6563,8393],"properties":{"NAME":"Ufa","POP_MAX":1018000}},{"type":"Point","coordinates":[6690,8513],"properties":{"NAME":"Yekaterinburg","POP_MAX":1313000}},{"type":"Point","coordinates":[6399,8301],"properties":{"NAME":"Samara","POP_MAX":1137000}},{"type":"Point","coordinates":[6370,8449],"properties":{"NAME":"Kazan","POP_MAX":1115000}},{"type":"Point","coordinates":[7047,8768],"properties":{"NAME":"Surgut","POP_MAX":400000}},{"type":"Point","coordinates":[7335,8310],"properties":{"NAME":"Barnaul","POP_MAX":599579}},{"type":"Point","coordinates":[7313,8407],"properties":{"NAME":"Novosibirsk","POP_MAX":1389000}},{"type":"Point","coordinates":[6265,5337],"properties":{"NAME":"Mogadishu","POP_MAX":1100000}},{"type":"Point","coordinates":[6634,6586],"properties":{"NAME":"Muscat","POP_MAX":734697}},{"type":"Point","coordinates":[7226,5619],"properties":{"NAME":"Colombo","POP_MAX":217000}},{"type":"Point","coordinates":[8453,5815],"properties":{"NAME":"Cebu","POP_MAX":815000}},{"type":"Point","coordinates":[8415,5837],"properties":{"NAME":"Iloilo","POP_MAX":387681}},{"type":"Point","coordinates":[8501,5629],"properties":{"NAME":"Davao","POP_MAX":1402000}},{"type":"Point","coordinates":[7832,8472],"properties":{"NAME":"Bratsk","POP_MAX":246348}},{"type":"Point","coordinates":[7906,8250],"properties":{"NAME":"Irkutsk","POP_MAX":586695}},{"type":"Point","coordinates":[7589,8464],"properties":{"NAME":"Krasnoyarsk","POP_MAX":925000}},{"type":"Point","coordinates":[7245,9478],"properties":{"NAME":"Dickson","POP_MAX":1113}},{"type":"Point","coordinates":[8162,8235],"properties":{"NAME":"Chita","POP_MAX":308500}},{"type":"Point","coordinates":[8676,7717],"properties":{"NAME":"Vladivostok","POP_MAX":587022}},{"type":"Point","coordinates":[8792,9358],"properties":{"NAME":"Nizhneyansk","POP_MAX":400}},{"type":"Point","coordinates":[8616,8813],"properties":{"NAME":"Yakutsk","POP_MAX":235600}},{"type":"Point","coordinates":[8591,9369],"properties":{"NAME":"Tiksi","POP_MAX":5700}},{"type":"Point","coordinates":[9203,8670],"properties":{"NAME":"Magadan","POP_MAX":95282}},{"type":"Point","coordinates":[1741,7101],"properties":{"NAME":"Tijuana","POP_MAX":1553000}},{"type":"Point","coordinates":[2047,6878],"properties":{"NAME":"Chihuahua","POP_MAX":793000}},{"type":"Point","coordinates":[2038,6563],"properties":{"NAME":"Mazatlan","POP_MAX":368204}},{"type":"Point","coordinates":[2276,6510],"properties":{"NAME":"Tampico","POP_MAX":859419}},{"type":"Point","coordinates":[2219,6194],"properties":{"NAME":"Acapulco","POP_MAX":715584}},{"type":"Point","coordinates":[2323,6329],"properties":{"NAME":"Veracruz","POP_MAX":578963}},{"type":"Point","coordinates":[2407,6188],"properties":{"NAME":"Tuxtla Gutierrez","POP_MAX":481128}},{"type":"Point","coordinates":[2583,6444],"properties":{"NAME":"Cancun","POP_MAX":542043}},{"type":"Point","coordinates":[2506,6432],"properties":{"NAME":"Merida","POP_MAX":965000}},{"type":"Point","coordinates":[5211,5591],"properties":{"NAME":"Enugu","POP_MAX":688862}},{"type":"Point","coordinates":[5148,5974],"properties":{"NAME":"Sokoto","POP_MAX":732178}},{"type":"Point","coordinates":[6569,8579],"properties":{"NAME":"Perm","POP_MAX":997000}},{"type":"Point","coordinates":[7902,8061],"properties":{"NAME":"Erdenet","POP_MAX":79647}},{"type":"Point","coordinates":[7980,7995],"properties":{"NAME":"Ulaanbaatar","POP_MAX":885000}},{"type":"Point","coordinates":[9870,2823],"properties":{"NAME":"Wellington","POP_MAX":393400}},{"type":"Point","coordinates":[5933,4702],"properties":{"NAME":"Mbeya","POP_MAX":291649}},{"type":"Point","coordinates":[5478,3908],"properties":{"NAME":"Windhoek","POP_MAX":268132}},{"type":"Point","coordinates":[5507,4083],"properties":{"NAME":"Grootfontein","POP_MAX":24099}},{"type":"Point","coordinates":[6094,4860],"properties":{"NAME":"Zanzibar","POP_MAX":403658}},{"type":"Point","coordinates":[9810,2693],"properties":{"NAME":"Christchurch","POP_MAX":363926}},{"type":"Point","coordinates":[4991,7506],"properties":{"NAME":"Valencia","POP_MAX":808000}},{"type":"Point","coordinates":[9457,8642],"properties":{"NAME":"Palana","POP_MAX":3671}},{"type":"Point","coordinates":[9420,8293],"properties":{"NAME":"Petropavlovsk Kamchatskiy","POP_MAX":187282}},{"type":"Point","coordinates":[5212,5744],"properties":{"NAME":"Abuja","POP_MAX":1576000}},{"type":"Point","coordinates":[7797,5161],"properties":{"NAME":"Padang","POP_MAX":855000}},{"type":"Point","coordinates":[4567,5905],"properties":{"NAME":"Bissau","POP_MAX":403339}},{"type":"Point","coordinates":[5374,7427],"properties":{"NAME":"Palermo","POP_MAX":863000}},{"type":"Point","coordinates":[6003,7069],"properties":{"NAME":"Amman","POP_MAX":1060000}},{"type":"Point","coordinates":[5707,8387],"properties":{"NAME":"Vilnius","POP_MAX":542366}},{"type":"Point","coordinates":[5673,8518],"properties":{"NAME":"Riga","POP_MAX":742572}},{"type":"Point","coordinates":[7079,7702],"properties":{"NAME":"Bishkek","POP_MAX":837000}},{"type":"Point","coordinates":[7740,7525],"properties":{"NAME":"Jiayuguan","POP_MAX":148279}},{"type":"Point","coordinates":[7837,7340],"properties":{"NAME":"Xining","POP_MAX":1048000}},{"type":"Point","coordinates":[8074,6682],"properties":{"NAME":"Guilin","POP_MAX":987000}},{"type":"Point","coordinates":[8260,7109],"properties":{"NAME":"Huainan","POP_MAX":1451000}},{"type":"Point","coordinates":[8252,6572],"properties":{"NAME":"Shantou","POP_MAX":1601000}},{"type":"Point","coordinates":[8278,5408],"properties":{"NAME":"Tarakan","POP_MAX":193069}},{"type":"Point","coordinates":[6107,4983],"properties":{"NAME":"Mombasa","POP_MAX":882000}},{"type":"Point","coordinates":[5767,3517],"properties":{"NAME":"Maseru","POP_MAX":361324}},{"type":"Point","coordinates":[6325,4120],"properties":{"NAME":"Antananarivo","POP_MAX":1697000}},{"type":"Point","coordinates":[8078,4813],"properties":{"NAME":"Semarang","POP_MAX":1396000}},{"type":"Point","coordinates":[7920,5044],"properties":{"NAME":"Palembang","POP_MAX":1749000}},{"type":"Point","coordinates":[8193,5024],"properties":{"NAME":"Bandjarmasin","POP_MAX":603576}},{"type":"Point","coordinates":[8329,4919],"properties":{"NAME":"Ujungpandang","POP_MAX":1262000}},{"type":"Point","coordinates":[5136,7870],"properties":{"NAME":"Lyon","POP_MAX":1423000}},{"type":"Point","coordinates":[2815,5205],"properties":{"NAME":"Quito","POP_MAX":1701000}},{"type":"Point","coordinates":[2660,5793],"properties":{"NAME":"San Jose","POP_MAX":1284000}},{"type":"Point","coordinates":[2517,6012],"properties":{"NAME":"San Salvador","POP_MAX":1433000}},{"type":"Point","coordinates":[2864,6259],"properties":{"NAME":"Kingston","POP_MAX":937700}},{"type":"Point","coordinates":[2898,5820],"properties":{"NAME":"Cartagena","POP_MAX":887000}},{"type":"Point","coordinates":[3047,5286],"properties":{"NAME":"Mitu","POP_MAX":5917}},{"type":"Point","coordinates":[5627,5344],"properties":{"NAME":"Bumba","POP_MAX":160539}},{"type":"Point","coordinates":[5421,5919],"properties":{"NAME":"Ndjamena","POP_MAX":989000}},{"type":"Point","coordinates":[5582,6019],"properties":{"NAME":"Abeche","POP_MAX":158317}},{"type":"Point","coordinates":[5247,5434],"properties":{"NAME":"Malabo","POP_MAX":155963}},{"type":"Point","coordinates":[5911,6707],"properties":{"NAME":"Luxor","POP_MAX":609248}},{"type":"Point","coordinates":[6086,6106],"properties":{"NAME":"Asmara","POP_MAX":620802}},{"type":"Point","coordinates":[5448,7872],"properties":{"NAME":"Zagreb","POP_MAX":722526}},{"type":"Point","coordinates":[5691,8662],"properties":{"NAME":"Tallinn","POP_MAX":394024}},{"type":"Point","coordinates":[7539,6935],"properties":{"NAME":"Lhasa","POP_MAX":219599}},{"type":"Point","coordinates":[7607,7700],"properties":{"NAME":"Hami","POP_MAX":300848}},{"type":"Point","coordinates":[7228,7368],"properties":{"NAME":"Hotan","POP_MAX":261730}},{"type":"Point","coordinates":[7118,7505],"properties":{"NAME":"Kashgar","POP_MAX":543914}},{"type":"Point","coordinates":[7962,7447],"properties":{"NAME":"Yinchuan","POP_MAX":991000}},{"type":"Point","coordinates":[8173,6818],"properties":{"NAME":"Pingxiang","POP_MAX":961000}},{"type":"Point","coordinates":[8620,7116],"properties":{"NAME":"Nagasaki","POP_MAX":435455}},{"type":"Point","coordinates":[8455,7962],"properties":{"NAME":"Qiqihar","POP_MAX":1641000}},{"type":"Point","coordinates":[5527,4925],"properties":{"NAME":"Kikwit","POP_MAX":637736}},{"type":"Point","coordinates":[5377,4880],"properties":{"NAME":"Matadi","POP_MAX":245862}},{"type":"Point","coordinates":[5711,4596],"properties":{"NAME":"Kolwezi","POP_MAX":418000}},{"type":"Point","coordinates":[5767,4540],"properties":{"NAME":"Lubumbashi","POP_MAX":1352000}},{"type":"Point","coordinates":[5943,4406],"properties":{"NAME":"Lilongwe","POP_MAX":646750}},{"type":"Point","coordinates":[2480,6065],"properties":{"NAME":"Guatemala","POP_MAX":1024000}},{"type":"Point","coordinates":[3544,5503],"properties":{"NAME":"Cayenne","POP_MAX":61550}},{"type":"Point","coordinates":[5265,5239],"properties":{"NAME":"Libreville","POP_MAX":578156}},{"type":"Point","coordinates":[7322,6245],"properties":{"NAME":"Vishakhapatnam","POP_MAX":1529000}},{"type":"Point","coordinates":[9972,4166],"properties":{"NAME":"Suva","POP_MAX":175399}},{"type":"Point","coordinates":[5246,5175],"properties":{"NAME":"Port-Gentil","POP_MAX":116836}},{"type":"Point","coordinates":[4918,6189],"properties":{"NAME":"Timbuktu","POP_MAX":68872}},{"type":"Point","coordinates":[3026,2135],"properties":{"NAME":"Punta Arenas","POP_MAX":117430}},{"type":"Point","coordinates":[3048,4043],"properties":{"NAME":"Iquique","POP_MAX":227499}},{"type":"Point","coordinates":[3041,3846],"properties":{"NAME":"Antofagasta","POP_MAX":309832}},{"type":"Point","coordinates":[3007,3301],"properties":{"NAME":"Valparaiso","POP_MAX":854000}},{"type":"Point","coordinates":[2962,2910],"properties":{"NAME":"Valdivia","POP_MAX":159599}},{"type":"Point","coordinates":[2967,3082],"properties":{"NAME":"Concepcion","POP_MAX":889725}},{"type":"Point","coordinates":[2970,2813],"properties":{"NAME":"Puerto Montt","POP_MAX":174629}},{"type":"Point","coordinates":[3561,8939],"properties":{"NAME":"Nuuk","POP_MAX":14798}},{"type":"Point","coordinates":[4557,6265],"properties":{"NAME":"Nouakchott","POP_MAX":742144}},{"type":"Point","coordinates":[4779,5950],"properties":{"NAME":"Bamako","POP_MAX":1494000}},{"type":"Point","coordinates":[4638,6406],"properties":{"NAME":"Atar","POP_MAX":44265}},{"type":"Point","coordinates":[4875,6023],"properties":{"NAME":"Djenne","POP_MAX":32944}},{"type":"Point","coordinates":[5404,6784],"properties":{"NAME":"Sabha","POP_MAX":100249}},{"type":"Point","coordinates":[5561,7079],"properties":{"NAME":"Banghazi","POP_MAX":1180000}},{"type":"Point","coordinates":[5639,7576],"properties":{"NAME":"Thessaloniki","POP_MAX":828000}},{"type":"Point","coordinates":[5991,7181],"properties":{"NAME":"Beirut","POP_MAX":1846000}},{"type":"Point","coordinates":[6249,7636],"properties":{"NAME":"Tbilisi","POP_MAX":1100000}},{"type":"Point","coordinates":[6045,5948],"properties":{"NAME":"Gonder","POP_MAX":156230}},{"type":"Point","coordinates":[6991,8184],"properties":{"NAME":"Astana","POP_MAX":345604}},{"type":"Point","coordinates":[7038,8109],"properties":{"NAME":"Qaraghandy","POP_MAX":451800}},{"type":"Point","coordinates":[7144,7729],"properties":{"NAME":"Almaty","POP_MAX":1209000}},{"type":"Point","coordinates":[6442,7113],"properties":{"NAME":"Isfahan","POP_MAX":1628000}},{"type":"Point","coordinates":[6466,6935],"properties":{"NAME":"Shiraz","POP_MAX":1240000}},{"type":"Point","coordinates":[7087,7051],"properties":{"NAME":"Amritsar","POP_MAX":1212000}},{"type":"Point","coordinates":[7314,6685],"properties":{"NAME":"Varanasi","POP_MAX":1352000}},{"type":"Point","coordinates":[7425,6590],"properties":{"NAME":"Asansol","POP_MAX":1328000}},{"type":"Point","coordinates":[7270,6447],"properties":{"NAME":"Bhilai","POP_MAX":1097000}},{"type":"Point","coordinates":[7158,6565],"properties":{"NAME":"Bhopal","POP_MAX":1727000}},{"type":"Point","coordinates":[7178,5792],"properties":{"NAME":"Madurai","POP_MAX":1294000}},{"type":"Point","coordinates":[7145,5855],"properties":{"NAME":"Coimbatore","POP_MAX":1696000}},{"type":"Point","coordinates":[7860,6258],"properties":{"NAME":"Vientiane","POP_MAX":754000}},{"type":"Point","coordinates":[5428,4970],"properties":{"NAME":"Brazzaville","POP_MAX":1355000}},{"type":"Point","coordinates":[4621,5770],"properties":{"NAME":"Conakry","POP_MAX":1494000}},{"type":"Point","coordinates":[4855,5612],"properties":{"NAME":"Yamoussoukro","POP_MAX":206499}},{"type":"Point","coordinates":[2978,4775],"properties":{"NAME":"Cruzeiro do Sul","POP_MAX":56862}},{"type":"Point","coordinates":[3053,4973],"properties":{"NAME":"Leticia","POP_MAX":59575}},{"type":"Point","coordinates":[3331,5037],"properties":{"NAME":"Manaus","POP_MAX":1753000}},{"type":"Point","coordinates":[3794,4937],"properties":{"NAME":"Caxias","POP_MAX":134640}},{"type":"Point","coordinates":[3478,5076],"properties":{"NAME":"Santarem","POP_MAX":230428}},{"type":"Point","coordinates":[3634,4907],"properties":{"NAME":"Maraba","POP_MAX":166182}},{"type":"Point","coordinates":[3327,4480],"properties":{"NAME":"Vilhena","POP_MAX":63231}},{"type":"Point","coordinates":[3276,4589],"properties":{"NAME":"Ji-Parana","POP_MAX":65016}},{"type":"Point","coordinates":[3481,4031],"properties":{"NAME":"Campo Grande","POP_MAX":778000}},{"type":"Point","coordinates":[3650,3618],"properties":{"NAME":"Florianopolis","POP_MAX":1023000}},{"type":"Point","coordinates":[3916,4507],"properties":{"NAME":"Feira de Santana","POP_MAX":481911}},{"type":"Point","coordinates":[2295,8109],"properties":{"NAME":"Winnipeg","POP_MAX":632063}},{"type":"Point","coordinates":[2379,8624],"properties":{"NAME":"Churchill","POP_MAX":1000}},{"type":"Point","coordinates":[2088,8142],"properties":{"NAME":"Regina","POP_MAX":176183}},{"type":"Point","coordinates":[2031,8241],"properties":{"NAME":"Saskatoon","POP_MAX":198958}},{"type":"Point","coordinates":[1824,8178],"properties":{"NAME":"Calgary","POP_MAX":1110000}},{"type":"Point","coordinates":[1372,8366],"properties":{"NAME":"Prince Rupert","POP_MAX":14708}},{"type":"Point","coordinates":[1566,8025],"properties":{"NAME":"Victoria","POP_MAX":289625}},{"type":"Point","coordinates":[2630,9451],"properties":{"NAME":"Arctic Bay","POP_MAX":604}},{"type":"Point","coordinates":[2358,9546],"properties":{"NAME":"Resolute","POP_MAX":250}},{"type":"Point","coordinates":[2599,9074],"properties":{"NAME":"Repulse Bay","POP_MAX":1000}},{"type":"Point","coordinates":[1815,8837],"properties":{"NAME":"Yellowknife","POP_MAX":19234}},{"type":"Point","coordinates":[1419,9058],"properties":{"NAME":"Fort Good Hope","POP_MAX":597}},{"type":"Point","coordinates":[1240,8737],"properties":{"NAME":"Whitehorse","POP_MAX":23276}},{"type":"Point","coordinates":[3312,5380],"properties":{"NAME":"Boa Vista","POP_MAX":235150}},{"type":"Point","coordinates":[3580,5219],"properties":{"NAME":"Macap�","POP_MAX":499166}},{"type":"Point","coordinates":[2893,7850],"properties":{"NAME":"Ottawa","POP_MAX":1145000}},{"type":"Point","coordinates":[2560,8462],"properties":{"NAME":"Fort Severn","POP_MAX":125}},{"type":"Point","coordinates":[2515,8025],"properties":{"NAME":"Thunder Bay","POP_MAX":99334}},{"type":"Point","coordinates":[3017,7932],"properties":{"NAME":"Qu�bec","POP_MAX":624177}},{"type":"Point","coordinates":[3230,7805],"properties":{"NAME":"Halifax","POP_MAX":359111}},{"type":"Point","coordinates":[3534,7975],"properties":{"NAME":"St. John�s","POP_MAX":131469}},{"type":"Point","coordinates":[3284,8495],"properties":{"NAME":"Nain","POP_MAX":1151}},{"type":"Point","coordinates":[3243,7898],"properties":{"NAME":"Charlottetown","POP_MAX":42402}},{"type":"Point","coordinates":[5577,5704],"properties":{"NAME":"Ndele","POP_MAX":11764}},{"type":"Point","coordinates":[5572,7815],"properties":{"NAME":"Belgrade","POP_MAX":1099000}},{"type":"Point","coordinates":[5740,5530],"properties":{"NAME":"Obo","POP_MAX":12887}},{"type":"Point","coordinates":[8203,5500],"properties":{"NAME":"Bandar Seri Begawan","POP_MAX":296500}},{"type":"Point","coordinates":[3166,2449],"properties":{"NAME":"Puerto Deseado","POP_MAX":3305}},{"type":"Point","coordinates":[3074,2224],"properties":{"NAME":"Rio Gallegos","POP_MAX":85700}},{"type":"Point","coordinates":[3122,2558],"properties":{"NAME":"Comodoro Rivadavia","POP_MAX":140850}},{"type":"Point","coordinates":[3085,3311],"properties":{"NAME":"Mendoza","POP_MAX":893000}},{"type":"Point","coordinates":[3184,4113],"properties":{"NAME":"Sucre","POP_MAX":224838}},{"type":"Point","coordinates":[3161,4580],"properties":{"NAME":"Riberalta","POP_MAX":74014}},{"type":"Point","coordinates":[3268,2971],"properties":{"NAME":"Bahia Blanca","POP_MAX":281536}},{"type":"Point","coordinates":[3398,3014],"properties":{"NAME":"Mar del Plata","POP_MAX":555897}},{"type":"Point","coordinates":[3214,3397],"properties":{"NAME":"C�rdoba","POP_MAX":1452000}},{"type":"Point","coordinates":[3445,3631],"properties":{"NAME":"Posadas","POP_MAX":357119}},{"type":"Point","coordinates":[2529,6217],"properties":{"NAME":"Belmopan","POP_MAX":15220}},{"type":"Point","coordinates":[5519,5470],"properties":{"NAME":"Bangui","POP_MAX":831925}},{"type":"Point","coordinates":[5401,5831],"properties":{"NAME":"Maroua","POP_MAX":319941}},{"type":"Point","coordinates":[5323,5441],"properties":{"NAME":"Yaounde","POP_MAX":1611000}},{"type":"Point","coordinates":[5554,7613],"properties":{"NAME":"Tirana","POP_MAX":895350}},{"type":"Point","coordinates":[6242,7546],"properties":{"NAME":"Yerevan","POP_MAX":1102000}},{"type":"Point","coordinates":[6391,7559],"properties":{"NAME":"Baku","POP_MAX":2122300}},{"type":"Point","coordinates":[6832,7049],"properties":{"NAME":"Kandahar","POP_MAX":715542}},{"type":"Point","coordinates":[7924,5887],"properties":{"NAME":"Phnom Penh","POP_MAX":1466000}},{"type":"Point","coordinates":[5495,4367],"properties":{"NAME":"Menongue","POP_MAX":13030}},{"type":"Point","coordinates":[5441,4478],"properties":{"NAME":"Huambo","POP_MAX":1100000}},{"type":"Point","coordinates":[3104,4261],"properties":{"NAME":"La Paz","POP_MAX":1590000}},{"type":"Point","coordinates":[3241,4188],"properties":{"NAME":"Santa Cruz","POP_MAX":2102998}},{"type":"Point","coordinates":[4985,7287],"properties":{"NAME":"Oran","POP_MAX":798000}},{"type":"Point","coordinates":[5072,5588],"properties":{"NAME":"Cotonou","POP_MAX":762000}},{"type":"Point","coordinates":[5156,6538],"properties":{"NAME":"Tamanrasset","POP_MAX":76000}},{"type":"Point","coordinates":[5104,7100],"properties":{"NAME":"Ghardaia","POP_MAX":125480}},{"type":"Point","coordinates":[5651,7691],"properties":{"NAME":"Sofia","POP_MAX":1185000}},{"type":"Point","coordinates":[5770,8342],"properties":{"NAME":"Minsk","POP_MAX":1805000}},{"type":"Point","coordinates":[7499,6810],"properties":{"NAME":"Thimphu","POP_MAX":98676}},{"type":"Point","coordinates":[5724,3788],"properties":{"NAME":"Gaborone","POP_MAX":208411}},{"type":"Point","coordinates":[8647,4497],"properties":{"NAME":"Darwin","POP_MAX":93080}},{"type":"Point","coordinates":[8731,3843],"properties":{"NAME":"Alice Springs","POP_MAX":27710}},{"type":"Point","coordinates":[9156,3171],"properties":{"NAME":"Canberra","POP_MAX":327700}},{"type":"Point","coordinates":[9231,3313],"properties":{"NAME":"Newcastle","POP_MAX":1134616}},{"type":"Point","coordinates":[8862,3192],"properties":{"NAME":"Adelaide","POP_MAX":1145000}},{"type":"Point","coordinates":[9090,4101],"properties":{"NAME":"Townsville","POP_MAX":138954}},{"type":"Point","coordinates":[9265,3625],"properties":{"NAME":"Brisbane","POP_MAX":1860000}},{"type":"Point","coordinates":[9105,2733],"properties":{"NAME":"Hobart","POP_MAX":80870}},{"type":"Point","coordinates":[4959,5934],"properties":{"NAME":"Ouagadougou","POP_MAX":1149000}},{"type":"Point","coordinates":[5514,7759],"properties":{"NAME":"Sarajevo","POP_MAX":696731}},{"type":"Point","coordinates":[7679,6363],"properties":{"NAME":"Naypyidaw","POP_MAX":930000}},{"type":"Point","coordinates":[3160,6286],"properties":{"NAME":"San Juan","POP_MAX":2478905}},{"type":"Point","coordinates":[3390,2220],"properties":{"NAME":"Stanley","POP_MAX":2213}},{"type":"Point","coordinates":[3197,7089],"properties":{"NAME":"Hamilton","POP_MAX":52320}},{"type":"Point","coordinates":[121,3991],"properties":{"NAME":"Nukualofa","POP_MAX":42620}},{"type":"Point","coordinates":[6229,5771],"properties":{"NAME":"Hargeysa","POP_MAX":477876}},{"type":"Point","coordinates":[6546,4949],"properties":{"NAME":"Victoria","POP_MAX":33576}},{"type":"Point","coordinates":[5189,5236],"properties":{"NAME":"Sao Tome","POP_MAX":88219}},{"type":"Point","coordinates":[218,4414],"properties":{"NAME":"Apia","POP_MAX":61916}},{"type":"Point","coordinates":[5406,7298],"properties":{"NAME":"Valletta","POP_MAX":368250}},{"type":"Point","coordinates":[7049,5458],"properties":{"NAME":"Male","POP_MAX":112927}},{"type":"Point","coordinates":[5983,7059],"properties":{"NAME":"Jerusalem","POP_MAX":1029300}},{"type":"Point","coordinates":[4347,6082],"properties":{"NAME":"Praia","POP_MAX":113364}},{"type":"Point","coordinates":[2847,6671],"properties":{"NAME":"Nassau","POP_MAX":227940}},{"type":"Point","coordinates":[5931,7256],"properties":{"NAME":"Nicosia","POP_MAX":224300}},{"type":"Point","coordinates":[8352,6529],"properties":{"NAME":"Kaohsiung","POP_MAX":2769072}},{"type":"Point","coordinates":[8181,6524],"properties":{"NAME":"Shenzhen","POP_MAX":7581000}},{"type":"Point","coordinates":[8290,7350],"properties":{"NAME":"Zibo","POP_MAX":3061000}},{"type":"Point","coordinates":[2404,7825],"properties":{"NAME":"Minneapolis","POP_MAX":2616000}},{"type":"Point","coordinates":[605,6452],"properties":{"NAME":"Honolulu","POP_MAX":786000}},{"type":"Point","coordinates":[1594,7975],"properties":{"NAME":"Seattle","POP_MAX":3074000}},{"type":"Point","coordinates":[1880,7161],"properties":{"NAME":"Phoenix","POP_MAX":3551000}},{"type":"Point","coordinates":[1738,7120],"properties":{"NAME":"San Diego","POP_MAX":2916000}},{"type":"Point","coordinates":[2488,7457],"properties":{"NAME":"St. Louis","POP_MAX":2199000}},{"type":"Point","coordinates":[2494,6956],"properties":{"NAME":"New Orleans","POP_MAX":785000}},{"type":"Point","coordinates":[2304,7120],"properties":{"NAME":"Dallas","POP_MAX":4798000}},{"type":"Point","coordinates":[3006,5839],"properties":{"NAME":"Maracaibo","POP_MAX":2072000}},{"type":"Point","coordinates":[3022,7671],"properties":{"NAME":"Boston","POP_MAX":4467000}},{"type":"Point","coordinates":[2705,6837],"properties":{"NAME":"Tampa","POP_MAX":2314000}},{"type":"Point","coordinates":[2908,7536],"properties":{"NAME":"Philadelphia","POP_MAX":5492000}},{"type":"Point","coordinates":[2688,7671],"properties":{"NAME":"Detroit","POP_MAX":4101000}},{"type":"Point","coordinates":[826,8766],"properties":{"NAME":"Anchorage","POP_MAX":260283}},{"type":"Point","coordinates":[7950,6436],"properties":{"NAME":"Hanoi","POP_MAX":4378000}},{"type":"Point","coordinates":[7974,5842],"properties":{"NAME":"Ho Chi Minh City","POP_MAX":5314000}},{"type":"Point","coordinates":[5917,7532],"properties":{"NAME":"Ankara","POP_MAX":3716000}},{"type":"Point","coordinates":[5533,7971],"properties":{"NAME":"Budapest","POP_MAX":1679000}},{"type":"Point","coordinates":[6233,6107],"properties":{"NAME":"Sanaa","POP_MAX":2008000}},{"type":"Point","coordinates":[5063,7616],"properties":{"NAME":"Barcelona","POP_MAX":4920000}},{"type":"Point","coordinates":[5729,7793],"properties":{"NAME":"Bucharest","POP_MAX":1942000}},{"type":"Point","coordinates":[6037,7317],"properties":{"NAME":"Aleppo","POP_MAX":2738000}},{"type":"Point","coordinates":[6013,7159],"properties":{"NAME":"Damascus","POP_MAX":2466000}},{"type":"Point","coordinates":[5240,7964],"properties":{"NAME":"Z�rich","POP_MAX":1108000}},{"type":"Point","coordinates":[4747,7462],"properties":{"NAME":"Lisbon","POP_MAX":2812000}},{"type":"Point","coordinates":[5908,6121],"properties":{"NAME":"Khartoum","POP_MAX":4754000}},{"type":"Point","coordinates":[6094,6464],"properties":{"NAME":"Jeddah","POP_MAX":3012000}},{"type":"Point","coordinates":[6111,6459],"properties":{"NAME":"Makkah","POP_MAX":1385000}},{"type":"Point","coordinates":[5301,8690],"properties":{"NAME":"Oslo","POP_MAX":835000}},{"type":"Point","coordinates":[7073,7047],"properties":{"NAME":"Lahore","POP_MAX":6577000}},{"type":"Point","coordinates":[6868,6659],"properties":{"NAME":"Karachi","POP_MAX":12130000}},{"type":"Point","coordinates":[5865,3486],"properties":{"NAME":"Durban","POP_MAX":2729000}},{"type":"Point","coordinates":[5846,8692],"properties":{"NAME":"St. Petersburg","POP_MAX":4553000}},{"type":"Point","coordinates":[2124,6415],"properties":{"NAME":"Guadalajara","POP_MAX":4198000}},{"type":"Point","coordinates":[2267,6321],"properties":{"NAME":"Puebla","POP_MAX":2195000}},{"type":"Point","coordinates":[5239,5913],"properties":{"NAME":"Kano","POP_MAX":3140000}},{"type":"Point","coordinates":[5587,8246],"properties":{"NAME":"Warsaw","POP_MAX":1707000}},{"type":"Point","coordinates":[8505,7479],"properties":{"NAME":"Pyongyang","POP_MAX":3300000}},{"type":"Point","coordinates":[6096,4823],"properties":{"NAME":"Dar es Salaam","POP_MAX":2930000}},{"type":"Point","coordinates":[7750,5425],"properties":{"NAME":"Medan","POP_MAX":2115000}},{"type":"Point","coordinates":[4828,8309],"properties":{"NAME":"Dublin","POP_MAX":1059000}},{"type":"Point","coordinates":[4701,5583],"properties":{"NAME":"Monrovia","POP_MAX":1041000}},{"type":"Point","coordinates":[5399,7585],"properties":{"NAME":"Naples","POP_MAX":2250000}},{"type":"Point","coordinates":[5258,7853],"properties":{"NAME":"Milan","POP_MAX":2945000}},{"type":"Point","coordinates":[7835,5401],"properties":{"NAME":"Kuala Lumpur","POP_MAX":1448000}},{"type":"Point","coordinates":[7893,7307],"properties":{"NAME":"Lanzhou","POP_MAX":2561000}},{"type":"Point","coordinates":[8019,6540],"properties":{"NAME":"Nanning","POP_MAX":2167000}},{"type":"Point","coordinates":[7974,6758],"properties":{"NAME":"Guiyang","POP_MAX":3662000}},{"type":"Point","coordinates":[7971,6931],"properties":{"NAME":"Chongqing","POP_MAX":6461000}},{"type":"Point","coordinates":[8325,6729],"properties":{"NAME":"Fuzhou","POP_MAX":2606000}},{"type":"Point","coordinates":[8158,6559],"properties":{"NAME":"Guangzhou","POP_MAX":8829000}},{"type":"Point","coordinates":[8170,6553],"properties":{"NAME":"Dongguan","POP_MAX":4528000}},{"type":"Point","coordinates":[7998,4814],"properties":{"NAME":"Bandung","POP_MAX":2394000}},{"type":"Point","coordinates":[8142,4797],"properties":{"NAME":"Surabaya","POP_MAX":2845000}},{"type":"Point","coordinates":[2776,5088],"properties":{"NAME":"Guayaquil","POP_MAX":2514000}},{"type":"Point","coordinates":[2897,5581],"properties":{"NAME":"Medellin","POP_MAX":3297000}},{"type":"Point","coordinates":[2871,5414],"properties":{"NAME":"Cali","POP_MAX":2254000}},{"type":"Point","coordinates":[2708,6558],"properties":{"NAME":"Havana","POP_MAX":2174000}},{"type":"Point","coordinates":[5836,7026],"properties":{"NAME":"Alexandria","POP_MAX":4165000}},{"type":"Point","coordinates":[5244,8121],"properties":{"NAME":"Frankfurt","POP_MAX":2895000}},{"type":"Point","coordinates":[5280,8321],"properties":{"NAME":"Hamburg","POP_MAX":1757000}},{"type":"Point","coordinates":[5324,8007],"properties":{"NAME":"Munich","POP_MAX":1275000}},{"type":"Point","coordinates":[5405,8120],"properties":{"NAME":"Prague","POP_MAX":1162000}},{"type":"Point","coordinates":[6338,6920],"properties":{"NAME":"Kuwait","POP_MAX":2063000}},{"type":"Point","coordinates":[8035,7204],"properties":{"NAME":"Xian","POP_MAX":4009000}},{"type":"Point","coordinates":[8137,7413],"properties":{"NAME":"Taiyuan","POP_MAX":2913000}},{"type":"Point","coordinates":[8185,6990],"properties":{"NAME":"Wuhan","POP_MAX":7243000}},{"type":"Point","coordinates":[8149,6852],"properties":{"NAME":"Changsha","POP_MAX":2604000}},{"type":"Point","coordinates":[7862,6670],"properties":{"NAME":"Kunming","POP_MAX":2931000}},{"type":"Point","coordinates":[8168,7232],"properties":{"NAME":"Zhengzhou","POP_MAX":2636000}},{"type":"Point","coordinates":[8440,7640],"properties":{"NAME":"Shenyeng","POP_MAX":4787000}},{"type":"Point","coordinates":[8261,7343],"properties":{"NAME":"Jinan","POP_MAX":2798000}},{"type":"Point","coordinates":[8266,7485],"properties":{"NAME":"Tianjin","POP_MAX":7180000}},{"type":"Point","coordinates":[8230,6880],"properties":{"NAME":"Nanchang","POP_MAX":2350000}},{"type":"Point","coordinates":[8310,7075],"properties":{"NAME":"Nanjing","POP_MAX":3679000}},{"type":"Point","coordinates":[8349,6971],"properties":{"NAME":"Hangzhou","POP_MAX":3007000}},{"type":"Point","coordinates":[8691,7210],"properties":{"NAME":"Hiroshima","POP_MAX":2045000}},{"type":"Point","coordinates":[8493,7760],"properties":{"NAME":"Changchun","POP_MAX":3183000}},{"type":"Point","coordinates":[8061,7574],"properties":{"NAME":"Baotou","POP_MAX":2036000}},{"type":"Point","coordinates":[8530,7869],"properties":{"NAME":"Harbin","POP_MAX":3621000}},{"type":"Point","coordinates":[8939,7714],"properties":{"NAME":"Sapporo","POP_MAX":2544000}},{"type":"Point","coordinates":[3055,6288],"properties":{"NAME":"Santo Domingo","POP_MAX":2154000}},{"type":"Point","coordinates":[4996,5539],"properties":{"NAME":"Accra","POP_MAX":2121000}},{"type":"Point","coordinates":[7153,6879],"properties":{"NAME":"Delhi","POP_MAX":15926000}},{"type":"Point","coordinates":[7188,6226],"properties":{"NAME":"Hyderabad","POP_MAX":6376000}},{"type":"Point","coordinates":[7059,6291],"properties":{"NAME":"Pune","POP_MAX":4672000}},{"type":"Point","coordinates":[7205,6444],"properties":{"NAME":"Nagpur","POP_MAX":2454000}},{"type":"Point","coordinates":[5369,7124],"properties":{"NAME":"Tripoli","POP_MAX":2189000}},{"type":"Point","coordinates":[5970,7077],"properties":{"NAME":"Tel Aviv-Yafo","POP_MAX":3112000}},{"type":"Point","coordinates":[5696,8705],"properties":{"NAME":"Helsinki","POP_MAX":1115000}},{"type":"Point","coordinates":[6661,7320],"properties":{"NAME":"Mashhad","POP_MAX":2469000}},{"type":"Point","coordinates":[7113,6778],"properties":{"NAME":"Jaipur","POP_MAX":2917000}},{"type":"Point","coordinates":[7239,6751],"properties":{"NAME":"Kanpur","POP_MAX":3162000}},{"type":"Point","coordinates":[7373,6702],"properties":{"NAME":"Patna","POP_MAX":2158000}},{"type":"Point","coordinates":[7238,5976],"properties":{"NAME":"Chennai","POP_MAX":7163000}},{"type":"Point","coordinates":[7023,6552],"properties":{"NAME":"Ahmedabad","POP_MAX":5375000}},{"type":"Point","coordinates":[7031,6446],"properties":{"NAME":"Surat","POP_MAX":3842000}},{"type":"Point","coordinates":[5352,8445],"properties":{"NAME":"K�benhavn","POP_MAX":1085000}},{"type":"Point","coordinates":[4889,5525],"properties":{"NAME":"Abidjan","POP_MAX":3802000}},{"type":"Point","coordinates":[3651,5133],"properties":{"NAME":"Belem","POP_MAX":2167000}},{"type":"Point","coordinates":[3667,4302],"properties":{"NAME":"Brasilia","POP_MAX":3716996}},{"type":"Point","coordinates":[3576,3475],"properties":{"NAME":"Porto Alegre","POP_MAX":3917000}},{"type":"Point","coordinates":[3628,3743],"properties":{"NAME":"Curitiba","POP_MAX":3084000}},{"type":"Point","coordinates":[3927,5000],"properties":{"NAME":"Fortaleza","POP_MAX":3602319}},{"type":"Point","coordinates":[3930,4465],"properties":{"NAME":"Salvador","POP_MAX":3484000}},{"type":"Point","coordinates":[1840,8321],"properties":{"NAME":"Edmonton","POP_MAX":1058000}},{"type":"Point","coordinates":[2952,7855],"properties":{"NAME":"Montr�al","POP_MAX":3678000}},{"type":"Point","coordinates":[3629,4248],"properties":{"NAME":"Goiania","POP_MAX":2022000}},{"type":"Point","coordinates":[4029,4749],"properties":{"NAME":"Recife","POP_MAX":3651000}},{"type":"Point","coordinates":[5123,8164],"properties":{"NAME":"Brussels","POP_MAX":1743000}},{"type":"Point","coordinates":[7520,6592],"properties":{"NAME":"Dhaka","POP_MAX":12797394}},{"type":"Point","coordinates":[5370,4705],"properties":{"NAME":"Luanda","POP_MAX":5172900}},{"type":"Point","coordinates":[5087,7348],"properties":{"NAME":"Algiers","POP_MAX":3354000}},{"type":"Point","coordinates":[7559,6511],"properties":{"NAME":"Chittagong","POP_MAX":4529000}},{"type":"Point","coordinates":[8228,3365],"properties":{"NAME":"Perth","POP_MAX":1532000}},{"type":"Point","coordinates":[7680,6190],"properties":{"NAME":"Rangoon","POP_MAX":4088000}},{"type":"Point","coordinates":[1592,7406],"properties":{"NAME":"San Francisco","POP_MAX":3450000}},{"type":"Point","coordinates":[2078,7521],"properties":{"NAME":"Denver","POP_MAX":2313000}},{"type":"Point","coordinates":[2346,6946],"properties":{"NAME":"Houston","POP_MAX":4459000}},{"type":"Point","coordinates":[2767,6712],"properties":{"NAME":"Miami","POP_MAX":5585000}},{"type":"Point","coordinates":[2651,7178],"properties":{"NAME":"Atlanta","POP_MAX":4506000}},{"type":"Point","coordinates":[2558,7642],"properties":{"NAME":"Chicago","POP_MAX":8990000}},{"type":"Point","coordinates":[3138,5826],"properties":{"NAME":"Caracas","POP_MAX":2985000}},{"type":"Point","coordinates":[5852,8141],"properties":{"NAME":"Kiev","POP_MAX":2709000}},{"type":"Point","coordinates":[6542,6680],"properties":{"NAME":"Dubai","POP_MAX":1379000}},{"type":"Point","coordinates":[6932,7612],"properties":{"NAME":"Tashkent","POP_MAX":2184000}},{"type":"Point","coordinates":[4899,7559],"properties":{"NAME":"Madrid","POP_MAX":5567000}},{"type":"Point","coordinates":[5173,7896],"properties":{"NAME":"Geneva","POP_MAX":1240000}},{"type":"Point","coordinates":[5506,8658],"properties":{"NAME":"Stockholm","POP_MAX":1264000}},{"type":"Point","coordinates":[7802,6014],"properties":{"NAME":"Bangkok","POP_MAX":6704000}},{"type":"Point","coordinates":[2856,4519],"properties":{"NAME":"Lima","POP_MAX":8012000}},{"type":"Point","coordinates":[4515,6070],"properties":{"NAME":"Dakar","POP_MAX":2604000}},{"type":"Point","coordinates":[5783,3700],"properties":{"NAME":"Johannesburg","POP_MAX":3435000}},{"type":"Point","coordinates":[5139,8252],"properties":{"NAME":"Amsterdam","POP_MAX":1031000}},{"type":"Point","coordinates":[4790,7165],"properties":{"NAME":"Casablanca","POP_MAX":3181000}},{"type":"Point","coordinates":[8539,7395],"properties":{"NAME":"Seoul","POP_MAX":9796000}},{"type":"Point","coordinates":[8372,6064],"properties":{"NAME":"Manila","POP_MAX":11100000}},{"type":"Point","coordinates":[2207,6705],"properties":{"NAME":"Monterrey","POP_MAX":3712000}},{"type":"Point","coordinates":[9870,3081],"properties":{"NAME":"Auckland","POP_MAX":1245000}},{"type":"Point","coordinates":[5375,8262],"properties":{"NAME":"Berlin","POP_MAX":3406000}},{"type":"Point","coordinates":[7441,7756],"properties":{"NAME":"Urumqi","POP_MAX":2151000}},{"type":"Point","coordinates":[7901,6995],"properties":{"NAME":"Chengdu","POP_MAX":4123000}},{"type":"Point","coordinates":[8775,7231],"properties":{"NAME":"Osaka","POP_MAX":11294000}},{"type":"Point","coordinates":[5428,4966],"properties":{"NAME":"Kinshasa","POP_MAX":7843000}},{"type":"Point","coordinates":[7152,6875],"properties":{"NAME":"New Delhi","POP_MAX":317797}},{"type":"Point","coordinates":[7162,5969],"properties":{"NAME":"Bangalore","POP_MAX":6787000}},{"type":"Point","coordinates":[5663,7419],"properties":{"NAME":"Athens","POP_MAX":3242000}},{"type":"Point","coordinates":[6238,7150],"properties":{"NAME":"Baghdad","POP_MAX":5054000}},{"type":"Point","coordinates":[6080,5741],"properties":{"NAME":"Addis Ababa","POP_MAX":3100000}},{"type":"Point","coordinates":[6434,7285],"properties":{"NAME":"Tehran","POP_MAX":7873000}},{"type":"Point","coordinates":[1572,8073],"properties":{"NAME":"Vancouver","POP_MAX":2313328}},{"type":"Point","coordinates":[2790,7750],"properties":{"NAME":"Toronto","POP_MAX":5213000}},{"type":"Point","coordinates":[3375,3211],"properties":{"NAME":"Buenos Aires","POP_MAX":12795000}},{"type":"Point","coordinates":[6929,7218],"properties":{"NAME":"Kabul","POP_MAX":3277000}},{"type":"Point","coordinates":[5458,8011],"properties":{"NAME":"Vienna","POP_MAX":2400000}},{"type":"Point","coordinates":[9040,3025],"properties":{"NAME":"Melbourne","POP_MAX":4170000}},{"type":"Point","coordinates":[8388,6668],"properties":{"NAME":"Taipei","POP_MAX":6900273}},{"type":"Point","coordinates":[1710,7187],"properties":{"NAME":"Los Angeles","POP_MAX":12500000}},{"type":"Point","coordinates":[2857,7472],"properties":{"NAME":"Washington, D.C.","POP_MAX":4338000}},{"type":"Point","coordinates":[2941,7579],"properties":{"NAME":"New York","POP_MAX":19040000}},{"type":"Point","coordinates":[4999,8202],"properties":{"NAME":"London","POP_MAX":8567000}},{"type":"Point","coordinates":[5810,7600],"properties":{"NAME":"Istanbul","POP_MAX":10061000}},{"type":"Point","coordinates":[6305,6645],"properties":{"NAME":"Riyadh","POP_MAX":4465000}},{"type":"Point","coordinates":[5515,3251],"properties":{"NAME":"Cape Town","POP_MAX":3215000}},{"type":"Point","coordinates":[6050,8449],"properties":{"NAME":"Moscow","POP_MAX":10452000}},{"type":"Point","coordinates":[2241,6344],"properties":{"NAME":"Mexico City","POP_MAX":19028000}},{"type":"Point","coordinates":[5096,5591],"properties":{"NAME":"Lagos","POP_MAX":9466000}},{"type":"Point","coordinates":[5350,7646],"properties":{"NAME":"Rome","POP_MAX":3339000}},{"type":"Point","coordinates":[8244,7532],"properties":{"NAME":"Beijing","POP_MAX":11106000}},{"type":"Point","coordinates":[6027,5143],"properties":{"NAME":"Nairobi","POP_MAX":3010000}},{"type":"Point","coordinates":[7977,4859],"properties":{"NAME":"Jakarta","POP_MAX":9125000}},{"type":"Point","coordinates":[2938,5483],"properties":{"NAME":"Bogota","POP_MAX":7772000}},{"type":"Point","coordinates":[5872,6959],"properties":{"NAME":"Cairo","POP_MAX":11893000}},{"type":"Point","coordinates":[8384,7027],"properties":{"NAME":"Shanghai","POP_MAX":14987000}},{"type":"Point","coordinates":[8895,7286],"properties":{"NAME":"Tokyo","POP_MAX":35676000}},{"type":"Point","coordinates":[7031,6319],"properties":{"NAME":"Mumbai","POP_MAX":18978000}},{"type":"Point","coordinates":[5067,8050],"properties":{"NAME":"Paris","POP_MAX":9904000}},{"type":"Point","coordinates":[3033,3278],"properties":{"NAME":"Santiago","POP_MAX":5720000}},{"type":"Point","coordinates":[7462,6521],"properties":{"NAME":"Kolkata","POP_MAX":14787000}},{"type":"Point","coordinates":[3798,3888],"properties":{"NAME":"Rio de Janeiro","POP_MAX":11748000}},{"type":"Point","coordinates":[3703,3851],"properties":{"NAME":"Sao Paulo","POP_MAX":18845000}},{"type":"Point","coordinates":[9213,3251],"properties":{"NAME":"Sydney","POP_MAX":4630000}},{"type":"Point","coordinates":[7895,5292],"properties":{"NAME":"Singapore","POP_MAX":5183700}},{"type":"Point","coordinates":[8182,6510],"properties":{"NAME":"Hong Kong","POP_MAX":7206000}}]}},"arcs":[]}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #333;
font-family: Arial, sans-serif;
}
#map_canvas {
width: 100%;
height: 100%;
}
#credits {
margin: 0;
padding: 0px 20px 2px 20px;
white-space: nowrap;
background: rgba(255, 255, 255, .5);
background: -webkit-linear-gradient(
left,
rgba(255, 255, 255, 0),
rgba(255, 255, 255, .5) 15%,
rgba(255, 255, 255, .5) 85%,
rgba(255, 255, 255, 0)
);
background: linear-gradient(
left,
rgba(255, 255, 255, 0),
rgba(255, 255, 255, .5) 15%,
rgba(255, 255, 255, .5) 85%,
rgba(255, 255, 255, 0)
);
}
#credits a {
color: #333;
font-size: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment