Skip to content

Instantly share code, notes, and snippets.

@bsudekum
Last active December 28, 2015 17:49
Show Gist options
  • Save bsudekum/7538461 to your computer and use it in GitHub Desktop.
Save bsudekum/7538461 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>A Simple Map</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<script src='//api.tiles.mapbox.com/mapbox.js/v1.4.2/mapbox.js'></script>
<link href='//api.tiles.mapbox.com/mapbox.js/v1.4.2/mapbox.css' rel='stylesheet' />
<script src='places.js'></script>
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; left; width:50%; }
iframe {
position: absolute;
right: 0;
}
</style>
</head>
<body>
<iframe width='50%' height='100%' frameBorder='0' src='https://a.tiles.mapbox.com/v3/bobbysud.gal48k74.html?secure=1#4/13.068776734357694/-45.439453125'></iframe>
<div id='map'></div>
<script>
var map = L.mapbox.map('map', 'bobbysud.map-n7u3y01e')
.setView([40, -74.50], 3);
var geoJson = L.geoJson(places, {
pointToLayer: function(feature, latlng) {
return L.circleMarker(latlng, {
radius: feature.properties.POP_MAX/210000,
fillColor: "#aa7c7c",
color: "#000",
weight: 1,
opacity: .2,
fillOpacity: 0.3,
color:'#2d2d2d'
})
},
onEachFeature: function (feature, layer) {
layer.bindPopup('<div>Name: ' + feature.properties.NAME + '</div><div>Population: ' + feature.properties.POP_MAX + '</div>');
}
}).addTo(map);
</script>
</body>
</html>
var places = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"NAME": "Mesa",
"POP_MAX": 1085394
},
"geometry": {
"type": "Point",
"coordinates": [
-111.736084434,
33.4239146108
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "National City",
"POP_MAX": 1057405
},
"geometry": {
"type": "Point",
"coordinates": [
-117.09800521,
32.6719450063
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Bernardino",
"POP_MAX": 1745000
},
"geometry": {
"type": "Point",
"coordinates": [
-117.300034222,
34.120383727
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Irvine",
"POP_MAX": 2477759
},
"geometry": {
"type": "Point",
"coordinates": [
-117.829950197,
33.6804105825
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Long Beach",
"POP_MAX": 2036134
},
"geometry": {
"type": "Point",
"coordinates": [
-118.158043866,
33.7869673859
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Barquisimeto",
"POP_MAX": 1116000
},
"geometry": {
"type": "Point",
"coordinates": [
-69.2999666765,
10.0499924916
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bridgeport",
"POP_MAX": 1018000
},
"geometry": {
"type": "Point",
"coordinates": [
-73.1999611833,
41.1799786571
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "New Haven",
"POP_MAX": 1061718
},
"geometry": {
"type": "Point",
"coordinates": [
-72.9000053321,
41.3303829133
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Providence",
"POP_MAX": 1277000
},
"geometry": {
"type": "Point",
"coordinates": [
-71.4149796973,
41.8211023143
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Fort Lauderdale",
"POP_MAX": 2042042
},
"geometry": {
"type": "Point",
"coordinates": [
-80.1417855242,
26.1360648794
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Evanston",
"POP_MAX": 1475870
},
"geometry": {
"type": "Point",
"coordinates": [
-87.699954673,
42.0483494253
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Waukegan",
"POP_MAX": 1014224
},
"geometry": {
"type": "Point",
"coordinates": [
-87.8447261981,
42.3640407502
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Aurora",
"POP_MAX": 1742907
},
"geometry": {
"type": "Point",
"coordinates": [
-88.2999955665,
41.7653951203
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Virginia Beach",
"POP_MAX": 1491000
},
"geometry": {
"type": "Point",
"coordinates": [
-75.9783187273,
36.8532143341
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sharjah",
"POP_MAX": 1103027
},
"geometry": {
"type": "Point",
"coordinates": [
55.4064782296,
25.3713828725
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Qoqon",
"POP_MAX": 1067709
},
"geometry": {
"type": "Point",
"coordinates": [
70.9400003651,
40.5404052928
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nonthaburi",
"POP_MAX": 1849887
},
"geometry": {
"type": "Point",
"coordinates": [
100.483313353,
13.8336891876
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Samut Prakan",
"POP_MAX": 1589568
},
"geometry": {
"type": "Point",
"coordinates": [
100.611470906,
13.6069071645
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Thai Nguyen",
"POP_MAX": 1216445
},
"geometry": {
"type": "Point",
"coordinates": [
105.830015421,
21.5999593292
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Thanh Hoa",
"POP_MAX": 2650616
},
"geometry": {
"type": "Point",
"coordinates": [
105.799991413,
19.8200162953
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ninh Binh",
"POP_MAX": 1971930
},
"geometry": {
"type": "Point",
"coordinates": [
105.97501949,
20.2543050323
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nam Dinh",
"POP_MAX": 4679262
},
"geometry": {
"type": "Point",
"coordinates": [
106.200018676,
20.4200313507
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rach Gia",
"POP_MAX": 1357452
},
"geometry": {
"type": "Point",
"coordinates": [
105.091352497,
10.0153951202
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bac Lieu",
"POP_MAX": 1325748
},
"geometry": {
"type": "Point",
"coordinates": [
105.719996296,
9.28037538547
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Fengshan",
"POP_MAX": 1035592
},
"geometry": {
"type": "Point",
"coordinates": [
120.355847126,
22.630852477
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hsinchu",
"POP_MAX": 1134162
},
"geometry": {
"type": "Point",
"coordinates": [
120.97673946,
24.8167914012
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chungli",
"POP_MAX": 1632616
},
"geometry": {
"type": "Point",
"coordinates": [
121.216776488,
24.9650252472
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yuanlin",
"POP_MAX": 1388355
},
"geometry": {
"type": "Point",
"coordinates": [
120.57335323,
23.9574898468
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chiai",
"POP_MAX": 1454116
},
"geometry": {
"type": "Point",
"coordinates": [
120.435067097,
23.4754520864
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Taichung",
"POP_MAX": 1078000
},
"geometry": {
"type": "Point",
"coordinates": [
120.681667032,
24.1520774526
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Matara",
"POP_MAX": 1260921
},
"geometry": {
"type": "Point",
"coordinates": [
80.5427733957,
5.94897666313
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Moratuwa",
"POP_MAX": 1316727
},
"geometry": {
"type": "Point",
"coordinates": [
79.8800231516,
6.78039878227
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ansan",
"POP_MAX": 3306237
},
"geometry": {
"type": "Point",
"coordinates": [
126.859532836,
37.3480678498
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Suwon",
"POP_MAX": 1078000
},
"geometry": {
"type": "Point",
"coordinates": [
127.010893106,
37.2577891226
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Masan",
"POP_MAX": 1033254
},
"geometry": {
"type": "Point",
"coordinates": [
128.58356197,
35.2191021922
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Leeds",
"POP_MAX": 1529000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.58001753886,
53.8300075471
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Manchester",
"POP_MAX": 2230000
},
"geometry": {
"type": "Point",
"coordinates": [
-2.24798710266,
53.5004152619
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sheffield",
"POP_MAX": 1251028
},
"geometry": {
"type": "Point",
"coordinates": [
-1.49999658345,
53.3666766552
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Butare",
"POP_MAX": 1479606
},
"geometry": {
"type": "Point",
"coordinates": [
29.7300093167,
-2.58962359732
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Lorenzo",
"POP_MAX": 1339736
},
"geometry": {
"type": "Point",
"coordinates": [
-57.5200397152,
-25.3400178845
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Porto",
"POP_MAX": 1337000
},
"geometry": {
"type": "Point",
"coordinates": [
-8.62000126284,
41.1500063264
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rotterdam",
"POP_MAX": 1005000
},
"geometry": {
"type": "Point",
"coordinates": [
4.47997432315,
51.919969095
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Faisalabad",
"POP_MAX": 2617000
},
"geometry": {
"type": "Point",
"coordinates": [
73.1099971099,
31.4099806915
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rahimyar Khan",
"POP_MAX": 1539894
},
"geometry": {
"type": "Point",
"coordinates": [
70.2951818429,
28.4202407013
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Gujranwala",
"POP_MAX": 1513000
},
"geometry": {
"type": "Point",
"coordinates": [
74.1850219308,
32.1604258413
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rawalpindi",
"POP_MAX": 1858000
},
"geometry": {
"type": "Point",
"coordinates": [
73.0400272206,
33.5999762156
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mansehra",
"POP_MAX": 1013383
},
"geometry": {
"type": "Point",
"coordinates": [
73.1968135161,
34.3417914012
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Abbottabad",
"POP_MAX": 1183647
},
"geometry": {
"type": "Point",
"coordinates": [
73.1995006906,
34.1495033966
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Saidu",
"POP_MAX": 1860310
},
"geometry": {
"type": "Point",
"coordinates": [
72.3499918202,
34.7500352163
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nepalganj",
"POP_MAX": 1246295
},
"geometry": {
"type": "Point",
"coordinates": [
81.6166613352,
28.050340799
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lalitpur",
"POP_MAX": 1247479
},
"geometry": {
"type": "Point",
"coordinates": [
85.3333336985,
27.666617451
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Benoni",
"POP_MAX": 2986000
},
"geometry": {
"type": "Point",
"coordinates": [
28.3299397367,
-26.1495808728
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vereeniging",
"POP_MAX": 1074000
},
"geometry": {
"type": "Point",
"coordinates": [
27.9599881579,
-26.6496020317
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Incheon",
"POP_MAX": 2550000
},
"geometry": {
"type": "Point",
"coordinates": [
126.642233438,
37.4761478872
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ulsan",
"POP_MAX": 1061000
},
"geometry": {
"type": "Point",
"coordinates": [
129.316953897,
35.5467307729
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Daegu",
"POP_MAX": 2460000
},
"geometry": {
"type": "Point",
"coordinates": [
128.606971394,
35.8667887563
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dagupan",
"POP_MAX": 1881744
},
"geometry": {
"type": "Point",
"coordinates": [
120.340809285,
16.0478951202
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Quezon City",
"POP_MAX": 9276403
},
"geometry": {
"type": "Point",
"coordinates": [
121.029966186,
14.6504351999
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pasay City",
"POP_MAX": 8248444
},
"geometry": {
"type": "Point",
"coordinates": [
120.999993855,
14.5504413035
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ciudad Juárez",
"POP_MAX": 1343000
},
"geometry": {
"type": "Point",
"coordinates": [
-106.490048057,
31.6903770132
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nezahualcoyotl",
"POP_MAX": 7297054
},
"geometry": {
"type": "Point",
"coordinates": [
-99.0299866148,
19.4100154815
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Toluca",
"POP_MAX": 1531000
},
"geometry": {
"type": "Point",
"coordinates": [
-99.6699992287,
19.3303820994
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zumpango",
"POP_MAX": 1864879
},
"geometry": {
"type": "Point",
"coordinates": [
-99.109981732,
19.8104044789
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ikare",
"POP_MAX": 1099931
},
"geometry": {
"type": "Point",
"coordinates": [
5.75999955102,
7.53043052055
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ado Ekiti",
"POP_MAX": 1626586
},
"geometry": {
"type": "Point",
"coordinates": [
5.21998083357,
7.63037274061
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Benin City",
"POP_MAX": 1190000
},
"geometry": {
"type": "Point",
"coordinates": [
5.62000809594,
6.34047731417
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Katowice",
"POP_MAX": 1423426
},
"geometry": {
"type": "Point",
"coordinates": [
19.0200170478,
50.2603804719
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nampo",
"POP_MAX": 1127000
},
"geometry": {
"type": "Point",
"coordinates": [
125.452433845,
38.7669207818
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Turin",
"POP_MAX": 1652000
},
"geometry": {
"type": "Point",
"coordinates": [
7.66996048853,
45.0703871857
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Como",
"POP_MAX": 1219644
},
"geometry": {
"type": "Point",
"coordinates": [
9.08000362004,
45.8100061229
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bergamo",
"POP_MAX": 1013255
},
"geometry": {
"type": "Point",
"coordinates": [
9.66999344752,
45.70040041
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hechi",
"POP_MAX": 2720379
},
"geometry": {
"type": "Point",
"coordinates": [
109.609112914,
23.0965346466
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Liuzhou",
"POP_MAX": 1497000
},
"geometry": {
"type": "Point",
"coordinates": [
109.250013386,
24.2800024607
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xiamen",
"POP_MAX": 2519000
},
"geometry": {
"type": "Point",
"coordinates": [
118.080017048,
24.4499920847
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zhangzhou",
"POP_MAX": 1338452
},
"geometry": {
"type": "Point",
"coordinates": [
117.670016234,
24.5203753855
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Putian",
"POP_MAX": 2555523
},
"geometry": {
"type": "Point",
"coordinates": [
119.020011352,
25.4303456818
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Luan",
"POP_MAX": 1690000
},
"geometry": {
"type": "Point",
"coordinates": [
116.480011352,
31.7503475128
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shenzhen",
"POP_MAX": 7581000
},
"geometry": {
"type": "Point",
"coordinates": [
114.122123088,
22.5523705111
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Maoming",
"POP_MAX": 3753912
},
"geometry": {
"type": "Point",
"coordinates": [
110.870017862,
21.9204048858
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Cilacap",
"POP_MAX": 2756197
},
"geometry": {
"type": "Point",
"coordinates": [
109.015402383,
-7.71881956089
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pakalongan",
"POP_MAX": 1739075
},
"geometry": {
"type": "Point",
"coordinates": [
109.670039428,
-6.87959430047
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bekasi",
"POP_MAX": 1520119
},
"geometry": {
"type": "Point",
"coordinates": [
106.972322956,
-6.21725746778
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pasuruan",
"POP_MAX": 1477007
},
"geometry": {
"type": "Point",
"coordinates": [
112.900023152,
-7.62957436232
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bucaramanga",
"POP_MAX": 1009000
},
"geometry": {
"type": "Point",
"coordinates": [
-73.1258830177,
7.13009319959
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "El Mansura",
"POP_MAX": 1248527
},
"geometry": {
"type": "Point",
"coordinates": [
31.3800377998,
31.0504419139
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dumyat",
"POP_MAX": 1027507
},
"geometry": {
"type": "Point",
"coordinates": [
31.8200109444,
31.4203934927
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "El Giza",
"POP_MAX": 6413237
},
"geometry": {
"type": "Point",
"coordinates": [
31.1900235583,
30.0099886261
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mallawi",
"POP_MAX": 1295151
},
"geometry": {
"type": "Point",
"coordinates": [
30.8399674059,
27.7304120066
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Girga",
"POP_MAX": 1989969
},
"geometry": {
"type": "Point",
"coordinates": [
31.8800072822,
26.3303682648
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sohag",
"POP_MAX": 3840285
},
"geometry": {
"type": "Point",
"coordinates": [
31.7000182686,
26.5504065135
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Duisburg",
"POP_MAX": 1276757
},
"geometry": {
"type": "Point",
"coordinates": [
6.75001664087,
51.429973164
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Essen",
"POP_MAX": 1742135
},
"geometry": {
"type": "Point",
"coordinates": [
7.01661535506,
51.4499977815
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Düsseldorf",
"POP_MAX": 4948905
},
"geometry": {
"type": "Point",
"coordinates": [
6.77998897159,
51.2203735546
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mannheim",
"POP_MAX": 1114328
},
"geometry": {
"type": "Point",
"coordinates": [
8.47001501327,
49.5003751822
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Stuttgart",
"POP_MAX": 1531113
},
"geometry": {
"type": "Point",
"coordinates": [
9.19999629582,
48.7799798778
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Haikou",
"POP_MAX": 1167268
},
"geometry": {
"type": "Point",
"coordinates": [
110.320025593,
20.0500022573
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Baoji",
"POP_MAX": 2668782
},
"geometry": {
"type": "Point",
"coordinates": [
107.149986531,
34.3800061229
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dali",
"POP_MAX": 1245604
},
"geometry": {
"type": "Point",
"coordinates": [
109.937775023,
34.7952520946
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Changzhi",
"POP_MAX": 1573808
},
"geometry": {
"type": "Point",
"coordinates": [
113.105281941,
36.1838753449
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Datong",
"POP_MAX": 1873000
},
"geometry": {
"type": "Point",
"coordinates": [
113.299998738,
40.0800199575
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shiyan",
"POP_MAX": 3460000
},
"geometry": {
"type": "Point",
"coordinates": [
110.779997517,
32.5700390819
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jianmen",
"POP_MAX": 1708000
},
"geometry": {
"type": "Point",
"coordinates": [
113.160007283,
30.6500529165
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shashi",
"POP_MAX": 1717186
},
"geometry": {
"type": "Point",
"coordinates": [
112.229986531,
30.3200213816
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xiantao",
"POP_MAX": 1556000
},
"geometry": {
"type": "Point",
"coordinates": [
113.440041869,
30.3704059031
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zhuzhou",
"POP_MAX": 1080000
},
"geometry": {
"type": "Point",
"coordinates": [
113.150033731,
27.8299924917
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yongzhou",
"POP_MAX": 1000000
},
"geometry": {
"type": "Point",
"coordinates": [
111.619997924,
26.2303743683
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yiyang",
"POP_MAX": 1352000
},
"geometry": {
"type": "Point",
"coordinates": [
112.330032104,
28.6004105825
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xiangtan",
"POP_MAX": 1437320
},
"geometry": {
"type": "Point",
"coordinates": [
112.900023152,
27.8504305206
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Changde",
"POP_MAX": 1469000
},
"geometry": {
"type": "Point",
"coordinates": [
111.680045938,
29.0299967641
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zigong",
"POP_MAX": 1105000
},
"geometry": {
"type": "Point",
"coordinates": [
104.780001993,
29.4000000193
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nanchong",
"POP_MAX": 2174000
},
"geometry": {
"type": "Point",
"coordinates": [
106.12999711,
30.7804325552
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Neijiang",
"POP_MAX": 1466000
},
"geometry": {
"type": "Point",
"coordinates": [
105.050011352,
29.5803766063
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Leshan",
"POP_MAX": 1157000
},
"geometry": {
"type": "Point",
"coordinates": [
103.733347533,
29.5670957632
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Luzhou",
"POP_MAX": 1537000
},
"geometry": {
"type": "Point",
"coordinates": [
105.380017048,
28.8799800812
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Qinhuangdao",
"POP_MAX": 1003000
},
"geometry": {
"type": "Point",
"coordinates": [
119.620026407,
39.9303650096
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Baoding",
"POP_MAX": 1107000
},
"geometry": {
"type": "Point",
"coordinates": [
115.48002071,
38.8704297069
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zhangjiakou",
"POP_MAX": 1046000
},
"geometry": {
"type": "Point",
"coordinates": [
114.929976765,
40.8300000194
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tangshan",
"POP_MAX": 1879000
},
"geometry": {
"type": "Point",
"coordinates": [
118.194376993,
39.6243371776
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shangqiu",
"POP_MAX": 1753000
},
"geometry": {
"type": "Point",
"coordinates": [
115.650036173,
34.4504152619
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xinyang",
"POP_MAX": 1541000
},
"geometry": {
"type": "Point",
"coordinates": [
114.069977579,
32.1303759959
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nanyang",
"POP_MAX": 1944000
},
"geometry": {
"type": "Point",
"coordinates": [
112.530019896,
33.00040041
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Luoyang",
"POP_MAX": 1715000
},
"geometry": {
"type": "Point",
"coordinates": [
112.470075235,
34.6799878123
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jinxi",
"POP_MAX": 2426000
},
"geometry": {
"type": "Point",
"coordinates": [
120.829978393,
40.750340799
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Benxi",
"POP_MAX": 1012000
},
"geometry": {
"type": "Point",
"coordinates": [
123.750006876,
41.3303829133
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Fushun",
"POP_MAX": 1470000
},
"geometry": {
"type": "Point",
"coordinates": [
123.869999551,
41.8653890168
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rizhao",
"POP_MAX": 1064995
},
"geometry": {
"type": "Point",
"coordinates": [
119.450010945,
35.4303812856
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jining",
"POP_MAX": 1186000
},
"geometry": {
"type": "Point",
"coordinates": [
116.550032917,
35.4004089549
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Weifang",
"POP_MAX": 1553000
},
"geometry": {
"type": "Point",
"coordinates": [
119.100109822,
36.7204059032
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yantai",
"POP_MAX": 2116000
},
"geometry": {
"type": "Point",
"coordinates": [
121.400021117,
37.5304081411
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Taian",
"POP_MAX": 1629000
},
"geometry": {
"type": "Point",
"coordinates": [
117.120075642,
36.1999983918
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zaozhuang",
"POP_MAX": 2145000
},
"geometry": {
"type": "Point",
"coordinates": [
117.570022338,
34.8800014435
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Heze",
"POP_MAX": 1338000
},
"geometry": {
"type": "Point",
"coordinates": [
115.45004838,
35.2299800812
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zibo",
"POP_MAX": 3061000
},
"geometry": {
"type": "Point",
"coordinates": [
118.049993041,
36.7999876089
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shangrao",
"POP_MAX": 1144577
},
"geometry": {
"type": "Point",
"coordinates": [
117.969997924,
28.4703926788
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Changzhou",
"POP_MAX": 1327000
},
"geometry": {
"type": "Point",
"coordinates": [
119.969979206,
31.7799839468
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xinyi",
"POP_MAX": 4108007
},
"geometry": {
"type": "Point",
"coordinates": [
118.350026407,
34.3800061229
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Suzhou",
"POP_MAX": 1650000
},
"geometry": {
"type": "Point",
"coordinates": [
120.620017048,
31.3004783315
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shuyang",
"POP_MAX": 2156278
},
"geometry": {
"type": "Point",
"coordinates": [
118.77335974,
34.1298663524
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lianyungang",
"POP_MAX": 5070313
},
"geometry": {
"type": "Point",
"coordinates": [
119.170028035,
34.6004319448
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xuzhou",
"POP_MAX": 2091000
},
"geometry": {
"type": "Point",
"coordinates": [
117.180020303,
34.2800122264
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Wuxi",
"POP_MAX": 1749000
},
"geometry": {
"type": "Point",
"coordinates": [
120.299984903,
31.5799961538
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jiaojing",
"POP_MAX": 2569294
},
"geometry": {
"type": "Point",
"coordinates": [
121.449992227,
28.6804056997
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Huzhou",
"POP_MAX": 1231000
},
"geometry": {
"type": "Point",
"coordinates": [
120.09999711,
30.8703753856
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jinhua",
"POP_MAX": 1172475
},
"geometry": {
"type": "Point",
"coordinates": [
119.649998738,
29.1200429474
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jilin",
"POP_MAX": 2396000
},
"geometry": {
"type": "Point",
"coordinates": [
126.550042683,
43.8499707225
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kitakyushu",
"POP_MAX": 1622052
},
"geometry": {
"type": "Point",
"coordinates": [
130.820014607,
33.8703989858
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mudangiang",
"POP_MAX": 1244000
},
"geometry": {
"type": "Point",
"coordinates": [
129.590012165,
44.5750169058
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Gifu",
"POP_MAX": 1534464
},
"geometry": {
"type": "Point",
"coordinates": [
136.762752644,
35.4230949087
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kobe",
"POP_MAX": 2720411
},
"geometry": {
"type": "Point",
"coordinates": [
135.169981648,
34.6799878123
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Maebashi",
"POP_MAX": 1024550
},
"geometry": {
"type": "Point",
"coordinates": [
139.072689167,
36.3926998078
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kawasaki",
"POP_MAX": 1306785
},
"geometry": {
"type": "Point",
"coordinates": [
139.705001993,
35.5299876089
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yokohama",
"POP_MAX": 3574443
},
"geometry": {
"type": "Point",
"coordinates": [
139.58004838,
35.3200262645
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pathankot",
"POP_MAX": 1667956
},
"geometry": {
"type": "Point",
"coordinates": [
75.7200186756,
32.2703416128
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Warangal",
"POP_MAX": 1203853
},
"geometry": {
"type": "Point",
"coordinates": [
79.5799897857,
18.0099975779
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Puri",
"POP_MAX": 1449264
},
"geometry": {
"type": "Point",
"coordinates": [
85.900017455,
19.8204297068
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kalyan",
"POP_MAX": 4747692
},
"geometry": {
"type": "Point",
"coordinates": [
73.1601749256,
19.2502319529
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sangli",
"POP_MAX": 1606100
},
"geometry": {
"type": "Point",
"coordinates": [
74.5750239654,
16.8604036651
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sholapur",
"POP_MAX": 1057000
},
"geometry": {
"type": "Point",
"coordinates": [
75.9000076893,
17.6704059031
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Aurangabad",
"POP_MAX": 1113000
},
"geometry": {
"type": "Point",
"coordinates": [
75.3203014719,
19.8956964304
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nasik",
"POP_MAX": 1473000
},
"geometry": {
"type": "Point",
"coordinates": [
73.7799820545,
20.0004187205
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dispur",
"POP_MAX": 1681976
},
"geometry": {
"type": "Point",
"coordinates": [
91.7666361074,
26.1440230499
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lille",
"POP_MAX": 1044000
},
"geometry": {
"type": "Point",
"coordinates": [
3.08000809593,
50.6499690949
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Bernardo",
"POP_MAX": 1829537
},
"geometry": {
"type": "Point",
"coordinates": [
-70.6999845801,
-33.5999788221
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Haifa",
"POP_MAX": 1011000
},
"geometry": {
"type": "Point",
"coordinates": [
34.980024779,
32.8204113963
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hosaina",
"POP_MAX": 1240228
},
"geometry": {
"type": "Point",
"coordinates": [
37.8500304756,
7.55037762342
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Karaj",
"POP_MAX": 1423000
},
"geometry": {
"type": "Point",
"coordinates": [
50.9700048409,
35.8003587026
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Allahabad",
"POP_MAX": 1201000
},
"geometry": {
"type": "Point",
"coordinates": [
81.8400068755,
25.45499534
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ghaziabad",
"POP_MAX": 1341000
},
"geometry": {
"type": "Point",
"coordinates": [
77.4083910715,
28.6603810822
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Agra",
"POP_MAX": 1592000
},
"geometry": {
"type": "Point",
"coordinates": [
78.0150207102,
27.1704203481
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Meerut",
"POP_MAX": 1398000
},
"geometry": {
"type": "Point",
"coordinates": [
77.7000011789,
29.0004120066
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dehra Dun",
"POP_MAX": 1027282
},
"geometry": {
"type": "Point",
"coordinates": [
78.0500056548,
30.3204089549
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dhanbad",
"POP_MAX": 1246000
},
"geometry": {
"type": "Point",
"coordinates": [
86.4199857167,
23.8003934926
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jamshedpur",
"POP_MAX": 1300000
},
"geometry": {
"type": "Point",
"coordinates": [
86.1975186757,
22.7875354197
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Haora",
"POP_MAX": 1027672
},
"geometry": {
"type": "Point",
"coordinates": [
88.3299466542,
22.5803904409
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Alipur Duar",
"POP_MAX": 6123690
},
"geometry": {
"type": "Point",
"coordinates": [
89.5666670318,
26.4837439158
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Haldia",
"POP_MAX": 2927743
},
"geometry": {
"type": "Point",
"coordinates": [
88.0583353261,
22.0256697784
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Medinipur",
"POP_MAX": 5765165
},
"geometry": {
"type": "Point",
"coordinates": [
87.1500186757,
22.3304056996
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nagercoil",
"POP_MAX": 1662951
},
"geometry": {
"type": "Point",
"coordinates": [
77.4299918202,
8.18036500949
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Gandhinagar",
"POP_MAX": 2316849
},
"geometry": {
"type": "Point",
"coordinates": [
72.6399482818,
23.300398172
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vadodara",
"POP_MAX": 1756000
},
"geometry": {
"type": "Point",
"coordinates": [
73.1800186756,
22.3100193471
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rajkot",
"POP_MAX": 1260000
},
"geometry": {
"type": "Point",
"coordinates": [
70.80000891,
22.3100193471
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Montevideo",
"POP_MAX": 1513000
},
"geometry": {
"type": "Point",
"coordinates": [
-56.1710522884,
-34.8580415662
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Minneapolis",
"POP_MAX": 2616000
},
"geometry": {
"type": "Point",
"coordinates": [
-93.2517863381,
44.9799792674
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Seattle",
"POP_MAX": 3074000
},
"geometry": {
"type": "Point",
"coordinates": [
-122.339984987,
47.5700020539
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Phoenix",
"POP_MAX": 3551000
},
"geometry": {
"type": "Point",
"coordinates": [
-112.069991701,
33.5399798778
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Oakland",
"POP_MAX": 1322294
},
"geometry": {
"type": "Point",
"coordinates": [
-122.221103355,
37.7689207144
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Diego",
"POP_MAX": 2916000
},
"geometry": {
"type": "Point",
"coordinates": [
-117.17998987,
32.8200238231
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Jose",
"POP_MAX": 1668000
},
"geometry": {
"type": "Point",
"coordinates": [
-121.849989056,
37.2999829295
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Francisco",
"POP_MAX": 3450000
},
"geometry": {
"type": "Point",
"coordinates": [
-122.459977663,
37.7400077505
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Los Angeles",
"POP_MAX": 12500000
},
"geometry": {
"type": "Point",
"coordinates": [
-118.179980511,
33.9899782502
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sacramento",
"POP_MAX": 1604000
},
"geometry": {
"type": "Point",
"coordinates": [
-121.470038088,
38.5750213817
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Denver",
"POP_MAX": 2313000
},
"geometry": {
"type": "Point",
"coordinates": [
-104.984015952,
39.7391880484
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Las Vegas",
"POP_MAX": 1823000
},
"geometry": {
"type": "Point",
"coordinates": [
-115.220006146,
36.2099977814
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Portland",
"POP_MAX": 1875000
},
"geometry": {
"type": "Point",
"coordinates": [
-122.679990074,
45.5200238231
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "St. Louis",
"POP_MAX": 2199000
},
"geometry": {
"type": "Point",
"coordinates": [
-90.2399805112,
38.6350177196
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kansas City",
"POP_MAX": 1469000
},
"geometry": {
"type": "Point",
"coordinates": [
-94.6040942189,
39.1070885098
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ft. Worth",
"POP_MAX": 1440454
},
"geometry": {
"type": "Point",
"coordinates": [
-97.3400380877,
32.7399770294
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Austin",
"POP_MAX": 1161000
},
"geometry": {
"type": "Point",
"coordinates": [
-97.7427783628,
30.2669496857
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dallas",
"POP_MAX": 4798000
},
"geometry": {
"type": "Point",
"coordinates": [
-96.8400169289,
32.8200238231
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Houston",
"POP_MAX": 4459000
},
"geometry": {
"type": "Point",
"coordinates": [
-95.3399792905,
29.8199743846
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Antonio",
"POP_MAX": 1473000
},
"geometry": {
"type": "Point",
"coordinates": [
-98.5073053404,
29.4873331899
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Maracaibo",
"POP_MAX": 2072000
},
"geometry": {
"type": "Point",
"coordinates": [
-71.6599776628,
10.7299768259
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Valencia",
"POP_MAX": 1770000
},
"geometry": {
"type": "Point",
"coordinates": [
-67.9800214047,
10.2299815053
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Boston",
"POP_MAX": 4467000
},
"geometry": {
"type": "Point",
"coordinates": [
-71.0700136736,
42.3299601431
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Orlando",
"POP_MAX": 1350000
},
"geometry": {
"type": "Point",
"coordinates": [
-81.3800303566,
28.509976826
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tampa",
"POP_MAX": 2314000
},
"geometry": {
"type": "Point",
"coordinates": [
-82.4586208514,
27.9469879344
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Miami",
"POP_MAX": 5585000
},
"geometry": {
"type": "Point",
"coordinates": [
-80.2241060808,
25.7876106964
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Atlanta",
"POP_MAX": 4506000
},
"geometry": {
"type": "Point",
"coordinates": [
-84.3999493833,
33.830013854
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chicago",
"POP_MAX": 8990000
},
"geometry": {
"type": "Point",
"coordinates": [
-87.7500549741,
41.8299906607
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Indianapolis",
"POP_MAX": 1436000
},
"geometry": {
"type": "Point",
"coordinates": [
-86.1700480568,
39.7499884227
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Columbus",
"POP_MAX": 1270000
},
"geometry": {
"type": "Point",
"coordinates": [
-82.9900096046,
39.9799743846
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Cleveland",
"POP_MAX": 1890000
},
"geometry": {
"type": "Point",
"coordinates": [
-81.6949982114,
41.4699867951
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Cincinnati",
"POP_MAX": 1636000
},
"geometry": {
"type": "Point",
"coordinates": [
-84.4569226499,
39.161884785
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Memphis",
"POP_MAX": 1081000
},
"geometry": {
"type": "Point",
"coordinates": [
-89.9999951597,
35.1199867951
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Milwaukee",
"POP_MAX": 1388000
},
"geometry": {
"type": "Point",
"coordinates": [
-87.9199670835,
43.0526550487
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Washington, D.C.",
"POP_MAX": 4338000
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0094185808,
38.8995493765
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Baltimore",
"POP_MAX": 2255000
},
"geometry": {
"type": "Point",
"coordinates": [
-76.6199849871,
39.2999900503
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "New York",
"POP_MAX": 19040000
},
"geometry": {
"type": "Point",
"coordinates": [
-73.9800169288,
40.749979064
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Buffalo",
"POP_MAX": 1016000
},
"geometry": {
"type": "Point",
"coordinates": [
-78.8800020769,
42.8799782502
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Philadelphia",
"POP_MAX": 5492000
},
"geometry": {
"type": "Point",
"coordinates": [
-75.1699959734,
39.9999731639
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pittsburgh",
"POP_MAX": 1838000
},
"geometry": {
"type": "Point",
"coordinates": [
-79.999985394,
40.4299985952
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Maracay",
"POP_MAX": 1007000
},
"geometry": {
"type": "Point",
"coordinates": [
-67.5958071306,
10.2468796986
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Caracas",
"POP_MAX": 2985000
},
"geometry": {
"type": "Point",
"coordinates": [
-66.9170371924,
10.5009985544
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Detroit",
"POP_MAX": 4101000
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0800557879,
42.3299601431
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lome",
"POP_MAX": 1452000
},
"geometry": {
"type": "Point",
"coordinates": [
1.22275711936,
6.13193707166
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tunis",
"POP_MAX": 1838972
},
"geometry": {
"type": "Point",
"coordinates": [
10.1796780992,
36.8027781362
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kiev",
"POP_MAX": 2709000
},
"geometry": {
"type": "Point",
"coordinates": [
30.5166279691,
50.433367329
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dnipropetrovsk",
"POP_MAX": 1050000
},
"geometry": {
"type": "Point",
"coordinates": [
35.0000235583,
48.4799723501
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kharkiv",
"POP_MAX": 1461000
},
"geometry": {
"type": "Point",
"coordinates": [
36.250024779,
49.9999829296
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dubai",
"POP_MAX": 1379000
},
"geometry": {
"type": "Point",
"coordinates": [
55.2799743234,
25.2299961538
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Andijon",
"POP_MAX": 1299851
},
"geometry": {
"type": "Point",
"coordinates": [
72.3399665923,
40.7900024608
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tashkent",
"POP_MAX": 2184000
},
"geometry": {
"type": "Point",
"coordinates": [
69.2949328195,
41.311701883
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Haiphong",
"POP_MAX": 1969000
},
"geometry": {
"type": "Point",
"coordinates": [
106.680092732,
20.8300063263
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hanoi",
"POP_MAX": 4378000
},
"geometry": {
"type": "Point",
"coordinates": [
105.8500142,
21.0333272491
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bien Hoa",
"POP_MAX": 1503440
},
"geometry": {
"type": "Point",
"coordinates": [
106.830057738,
10.9700138539
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ho Chi Minh City",
"POP_MAX": 5314000
},
"geometry": {
"type": "Point",
"coordinates": [
106.695027221,
10.7800254506
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Can Tho",
"POP_MAX": 1142896
},
"geometry": {
"type": "Point",
"coordinates": [
105.770019083,
10.0499924916
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lusaka",
"POP_MAX": 1328000
},
"geometry": {
"type": "Point",
"coordinates": [
28.2833275947,
-15.4166442679
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Harare",
"POP_MAX": 1572000
},
"geometry": {
"type": "Point",
"coordinates": [
31.0447094307,
-17.8177896944
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Canoas",
"POP_MAX": 1206622
},
"geometry": {
"type": "Point",
"coordinates": [
-51.1799874284,
-29.9199967257
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vitória",
"POP_MAX": 1704000
},
"geometry": {
"type": "Point",
"coordinates": [
-40.3659963395,
-20.3239933077
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nova Iguacu",
"POP_MAX": 3873448
},
"geometry": {
"type": "Point",
"coordinates": [
-43.4699670833,
-22.7400215466
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Duque de Caxias",
"POP_MAX": 3380175
},
"geometry": {
"type": "Point",
"coordinates": [
-43.3099768489,
-22.7699938774
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Niteroi",
"POP_MAX": 1500513
},
"geometry": {
"type": "Point",
"coordinates": [
-43.0999896663,
-22.900011781
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Windsor",
"POP_MAX": 1259633
},
"geometry": {
"type": "Point",
"coordinates": [
-83.0333402931,
42.333293273
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Port-au-Prince",
"POP_MAX": 1998000
},
"geometry": {
"type": "Point",
"coordinates": [
-72.3360345883,
18.5410245961
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Douala",
"POP_MAX": 1906000
},
"geometry": {
"type": "Point",
"coordinates": [
9.70999100611,
4.06040976859
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Glasgow",
"POP_MAX": 1160000
},
"geometry": {
"type": "Point",
"coordinates": [
-4.25070723613,
55.8744047232
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Birmingham",
"POP_MAX": 2285000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.9199967869,
52.4749739778
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "London",
"POP_MAX": 8567000
},
"geometry": {
"type": "Point",
"coordinates": [
-0.11672184386,
51.4999947297
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Izmir",
"POP_MAX": 2587000
},
"geometry": {
"type": "Point",
"coordinates": [
27.1517940105,
38.4361496823
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bursa",
"POP_MAX": 1492000
},
"geometry": {
"type": "Point",
"coordinates": [
29.0699979235,
40.1999867951
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Istanbul",
"POP_MAX": 10061000
},
"geometry": {
"type": "Point",
"coordinates": [
29.0100015856,
41.1049961538
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ankara",
"POP_MAX": 3716000
},
"geometry": {
"type": "Point",
"coordinates": [
32.864391641,
39.9272385855
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Gaziantep",
"POP_MAX": 1044000
},
"geometry": {
"type": "Point",
"coordinates": [
37.3849942614,
37.0749837433
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Adana",
"POP_MAX": 1293000
},
"geometry": {
"type": "Point",
"coordinates": [
35.320004027,
36.9949886261
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kampala",
"POP_MAX": 1420000
},
"geometry": {
"type": "Point",
"coordinates": [
32.5833235257,
0.31665895477
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Budapest",
"POP_MAX": 1679000
},
"geometry": {
"type": "Point",
"coordinates": [
19.0833206774,
47.5000063264
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Saidpur",
"POP_MAX": 7067423
},
"geometry": {
"type": "Point",
"coordinates": [
88.9999832753,
25.8004264516
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sanaa",
"POP_MAX": 2008000
},
"geometry": {
"type": "Point",
"coordinates": [
44.2065933826,
15.3547332957
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Madrid",
"POP_MAX": 5567000
},
"geometry": {
"type": "Point",
"coordinates": [
-3.683351686,
40.4000262645
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Barcelona",
"POP_MAX": 4920000
},
"geometry": {
"type": "Point",
"coordinates": [
2.18337031923,
41.3832995799
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bucharest",
"POP_MAX": 1942000
},
"geometry": {
"type": "Point",
"coordinates": [
26.099946654,
44.4333718049
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Aleppo",
"POP_MAX": 2738000
},
"geometry": {
"type": "Point",
"coordinates": [
37.1700203031,
36.2299707225
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hims",
"POP_MAX": 1005000
},
"geometry": {
"type": "Point",
"coordinates": [
36.7200219307,
34.7299589224
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Damascus",
"POP_MAX": 2466000
},
"geometry": {
"type": "Point",
"coordinates": [
36.299995889,
33.5000339956
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zürich",
"POP_MAX": 1108000
},
"geometry": {
"type": "Point",
"coordinates": [
8.55001013046,
47.3799878124
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Stockholm",
"POP_MAX": 1264000
},
"geometry": {
"type": "Point",
"coordinates": [
18.0973347328,
59.3507599543
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dushanbe",
"POP_MAX": 1086244
},
"geometry": {
"type": "Point",
"coordinates": [
68.7738793527,
38.5600352163
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bangkok",
"POP_MAX": 6704000
},
"geometry": {
"type": "Point",
"coordinates": [
100.516644652,
13.7499992055
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lima",
"POP_MAX": 8012000
},
"geometry": {
"type": "Point",
"coordinates": [
-77.0500620948,
-12.0480126761
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Asuncion",
"POP_MAX": 1870000
},
"geometry": {
"type": "Point",
"coordinates": [
-57.6415051693,
-25.2964029757
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lisbon",
"POP_MAX": 2812000
},
"geometry": {
"type": "Point",
"coordinates": [
-9.14486630549,
38.7227228779
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dakar",
"POP_MAX": 2604000
},
"geometry": {
"type": "Point",
"coordinates": [
-17.4731301284,
14.715831725
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Medina",
"POP_MAX": 1010000
},
"geometry": {
"type": "Point",
"coordinates": [
39.5800023995,
24.499989033
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Omdurman",
"POP_MAX": 2183698
},
"geometry": {
"type": "Point",
"coordinates": [
32.4800223376,
15.6166811309
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Khartoum",
"POP_MAX": 4754000
},
"geometry": {
"type": "Point",
"coordinates": [
32.5341792386,
15.5880782257
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jeddah",
"POP_MAX": 3012000
},
"geometry": {
"type": "Point",
"coordinates": [
39.2191975492,
21.5168894643
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Makkah",
"POP_MAX": 1385000
},
"geometry": {
"type": "Point",
"coordinates": [
39.8200394275,
21.4300213816
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "The Hague",
"POP_MAX": 2312867
},
"geometry": {
"type": "Point",
"coordinates": [
4.26996130231,
52.080036844
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Riyadh",
"POP_MAX": 4465000
},
"geometry": {
"type": "Point",
"coordinates": [
46.7727416573,
24.6408331492
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lahore",
"POP_MAX": 6577000
},
"geometry": {
"type": "Point",
"coordinates": [
74.3500247792,
31.5599715363
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Multan",
"POP_MAX": 1522000
},
"geometry": {
"type": "Point",
"coordinates": [
71.4550076893,
30.1999770294
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Karachi",
"POP_MAX": 12130000
},
"geometry": {
"type": "Point",
"coordinates": [
66.99000891,
24.8699922882
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hyderabad",
"POP_MAX": 1459000
},
"geometry": {
"type": "Point",
"coordinates": [
68.3749889718,
25.3799869985
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Peshawar",
"POP_MAX": 1303000
},
"geometry": {
"type": "Point",
"coordinates": [
71.5350028065,
34.0050160919
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kaohsiung",
"POP_MAX": 1538000
},
"geometry": {
"type": "Point",
"coordinates": [
120.266601928,
22.6333071075
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Taipei",
"POP_MAX": 2603000
},
"geometry": {
"type": "Point",
"coordinates": [
121.449992227,
25.0166758413
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Cape Town",
"POP_MAX": 3215000
},
"geometry": {
"type": "Point",
"coordinates": [
18.4349881578,
-33.9200109672
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pretoria",
"POP_MAX": 1338000
},
"geometry": {
"type": "Point",
"coordinates": [
28.2294290758,
-25.7069205538
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Johannesburg",
"POP_MAX": 3435000
},
"geometry": {
"type": "Point",
"coordinates": [
28.0300097236,
-26.17004474
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Durban",
"POP_MAX": 2729000
},
"geometry": {
"type": "Point",
"coordinates": [
30.9800105374,
-29.8650130017
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Amsterdam",
"POP_MAX": 1031000
},
"geometry": {
"type": "Point",
"coordinates": [
4.91664017601,
52.3499686881
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Panama City",
"POP_MAX": 1281000
},
"geometry": {
"type": "Point",
"coordinates": [
-79.5330371518,
8.96801719048
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Fez",
"POP_MAX": 1002000
},
"geometry": {
"type": "Point",
"coordinates": [
-5.00037723939,
34.0545996287
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Casablanca",
"POP_MAX": 3181000
},
"geometry": {
"type": "Point",
"coordinates": [
-7.61636743309,
33.5999762156
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rabat",
"POP_MAX": 1705000
},
"geometry": {
"type": "Point",
"coordinates": [
-6.83613082013,
34.0252990916
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Port Elizabeth",
"POP_MAX": 1021000
},
"geometry": {
"type": "Point",
"coordinates": [
25.600028848,
-33.9700337537
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Maputo",
"POP_MAX": 1446000
},
"geometry": {
"type": "Point",
"coordinates": [
32.5891629626,
-25.9552774874
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "St. Petersburg",
"POP_MAX": 4553000
},
"geometry": {
"type": "Point",
"coordinates": [
30.3160200589,
59.9390145051
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nizhny Novgorod",
"POP_MAX": 1278000
},
"geometry": {
"type": "Point",
"coordinates": [
44.0000943591,
56.3330072216
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Moscow",
"POP_MAX": 10452000
},
"geometry": {
"type": "Point",
"coordinates": [
37.6155228259,
55.7521641226
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rostov",
"POP_MAX": 1052000
},
"geometry": {
"type": "Point",
"coordinates": [
39.7126558012,
47.2346478466
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ufa",
"POP_MAX": 1018000
},
"geometry": {
"type": "Point",
"coordinates": [
56.0400312895,
54.7899747916
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chelyabinsk",
"POP_MAX": 1091000
},
"geometry": {
"type": "Point",
"coordinates": [
61.438668171,
55.1549912711
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yekaterinburg",
"POP_MAX": 1313000
},
"geometry": {
"type": "Point",
"coordinates": [
60.5999596749,
56.8500299267
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Samara",
"POP_MAX": 1137000
},
"geometry": {
"type": "Point",
"coordinates": [
50.1512951241,
53.1950075471
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kazan",
"POP_MAX": 1115000
},
"geometry": {
"type": "Point",
"coordinates": [
49.126344766,
55.749942036
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Omsk",
"POP_MAX": 1135000
},
"geometry": {
"type": "Point",
"coordinates": [
73.3999535715,
54.9899884228
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Novosibirsk",
"POP_MAX": 1389000
},
"geometry": {
"type": "Point",
"coordinates": [
82.960041869,
55.0299601431
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mogadishu",
"POP_MAX": 1100000
},
"geometry": {
"type": "Point",
"coordinates": [
45.3666776111,
2.06668133433
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Seoul",
"POP_MAX": 9796000
},
"geometry": {
"type": "Point",
"coordinates": [
126.999730997,
37.5663490998
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Daejeon",
"POP_MAX": 1468000
},
"geometry": {
"type": "Point",
"coordinates": [
127.425028035,
36.3355456737
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Gwangju",
"POP_MAX": 1440000
},
"geometry": {
"type": "Point",
"coordinates": [
126.910434122,
35.1709655955
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Busan",
"POP_MAX": 3480000
},
"geometry": {
"type": "Point",
"coordinates": [
129.010047566,
35.0950529165
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Angeles",
"POP_MAX": 2151765
},
"geometry": {
"type": "Point",
"coordinates": [
120.545086221,
15.1450561716
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Manila",
"POP_MAX": 11100000
},
"geometry": {
"type": "Point",
"coordinates": [
120.982217162,
14.6041589548
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Davao",
"POP_MAX": 1402000
},
"geometry": {
"type": "Point",
"coordinates": [
125.629995482,
7.11001690564
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tijuana",
"POP_MAX": 1553000
},
"geometry": {
"type": "Point",
"coordinates": [
-117.079995974,
32.5000175161
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Torreon",
"POP_MAX": 1144000
},
"geometry": {
"type": "Point",
"coordinates": [
-103.420002891,
25.5700529165
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Monterrey",
"POP_MAX": 3712000
},
"geometry": {
"type": "Point",
"coordinates": [
-100.329984784,
25.6699951365
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Guadalajara",
"POP_MAX": 4198000
},
"geometry": {
"type": "Point",
"coordinates": [
-103.330034222,
20.6700160919
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Puebla",
"POP_MAX": 2195000
},
"geometry": {
"type": "Point",
"coordinates": [
-98.2000372739,
19.0499599395
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mexico City",
"POP_MAX": 19028000
},
"geometry": {
"type": "Point",
"coordinates": [
-99.1309882017,
19.4424424428
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Leon",
"POP_MAX": 1488000
},
"geometry": {
"type": "Point",
"coordinates": [
-101.700030357,
21.149986795
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Port Harcourt",
"POP_MAX": 1020000
},
"geometry": {
"type": "Point",
"coordinates": [
7.01000077173,
4.8100022572
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lagos",
"POP_MAX": 9466000
},
"geometry": {
"type": "Point",
"coordinates": [
3.39153107121,
6.44326165348
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ibadan",
"POP_MAX": 2628000
},
"geometry": {
"type": "Point",
"coordinates": [
3.92998205427,
7.38002626437
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kaduna",
"POP_MAX": 1442000
},
"geometry": {
"type": "Point",
"coordinates": [
7.44000036483,
10.5200154815
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kano",
"POP_MAX": 3140000
},
"geometry": {
"type": "Point",
"coordinates": [
8.52003779973,
11.9999768259
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Warsaw",
"POP_MAX": 1707000
},
"geometry": {
"type": "Point",
"coordinates": [
20.9999995511,
52.2500006298
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pyongyang",
"POP_MAX": 3300000
},
"geometry": {
"type": "Point",
"coordinates": [
125.754690714,
39.0194386994
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dar es Salaam",
"POP_MAX": 2930000
},
"geometry": {
"type": "Point",
"coordinates": [
39.2683418363,
-6.80001259474
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Auckland",
"POP_MAX": 1245000
},
"geometry": {
"type": "Point",
"coordinates": [
174.764980834,
-36.8500130018
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Abuja",
"POP_MAX": 1576000
},
"geometry": {
"type": "Point",
"coordinates": [
7.53332800155,
9.08333314914
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Medan",
"POP_MAX": 2115000
},
"geometry": {
"type": "Point",
"coordinates": [
98.6500402415,
3.57997397757
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dublin",
"POP_MAX": 1059000
},
"geometry": {
"type": "Point",
"coordinates": [
-6.24890568178,
53.333061136
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Monrovia",
"POP_MAX": 1041000
},
"geometry": {
"type": "Point",
"coordinates": [
-10.8047516291,
6.31055665987
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Naples",
"POP_MAX": 2250000
},
"geometry": {
"type": "Point",
"coordinates": [
14.2450113512,
40.8400252473
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rome",
"POP_MAX": 3339000
},
"geometry": {
"type": "Point",
"coordinates": [
12.4832584215,
41.8959556265
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Amman",
"POP_MAX": 1060000
},
"geometry": {
"type": "Point",
"coordinates": [
35.9332999255,
31.9500252472
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Milan",
"POP_MAX": 2945000
},
"geometry": {
"type": "Point",
"coordinates": [
9.20500890976,
45.4699751984
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kuala Lumpur",
"POP_MAX": 1448000
},
"geometry": {
"type": "Point",
"coordinates": [
101.699983275,
3.1666658721
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lanzhou",
"POP_MAX": 2561000
},
"geometry": {
"type": "Point",
"coordinates": [
103.792000284,
36.0560278514
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tianshui",
"POP_MAX": 1225000
},
"geometry": {
"type": "Point",
"coordinates": [
105.919984089,
34.6000185334
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xining",
"POP_MAX": 1048000
},
"geometry": {
"type": "Point",
"coordinates": [
101.770004841,
36.6199985952
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nanning",
"POP_MAX": 2167000
},
"geometry": {
"type": "Point",
"coordinates": [
108.320044311,
22.8199882192
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yulin",
"POP_MAX": 1127000
},
"geometry": {
"type": "Point",
"coordinates": [
110.150010131,
22.6299739776
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lupanshui",
"POP_MAX": 1221000
},
"geometry": {
"type": "Point",
"coordinates": [
104.833332071,
26.5944348338
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Guiyang",
"POP_MAX": 3662000
},
"geometry": {
"type": "Point",
"coordinates": [
106.720038614,
26.5800429474
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chongqing",
"POP_MAX": 6461000
},
"geometry": {
"type": "Point",
"coordinates": [
106.594981648,
29.5649770294
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Beijing",
"POP_MAX": 11106000
},
"geometry": {
"type": "Point",
"coordinates": [
116.388285684,
39.9288922313
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Fuzhou",
"POP_MAX": 2606000
},
"geometry": {
"type": "Point",
"coordinates": [
119.300045938,
26.0799959503
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Quanzhou",
"POP_MAX": 1463000
},
"geometry": {
"type": "Point",
"coordinates": [
118.579986531,
24.9000162954
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hefei",
"POP_MAX": 2035000
},
"geometry": {
"type": "Point",
"coordinates": [
117.2800142,
31.8500313507
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Huainan",
"POP_MAX": 1451000
},
"geometry": {
"type": "Point",
"coordinates": [
116.979980834,
32.6299837433
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Suzhou",
"POP_MAX": 1964000
},
"geometry": {
"type": "Point",
"coordinates": [
116.9788889,
33.6361111
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zhanjiang",
"POP_MAX": 1590000
},
"geometry": {
"type": "Point",
"coordinates": [
110.380021931,
21.1999837433
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shantou",
"POP_MAX": 1601000
},
"geometry": {
"type": "Point",
"coordinates": [
116.670025593,
23.3700063263
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Guangzhou",
"POP_MAX": 8829000
},
"geometry": {
"type": "Point",
"coordinates": [
113.325010131,
23.1449813019
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zhuhai",
"POP_MAX": 1023000
},
"geometry": {
"type": "Point",
"coordinates": [
113.5677778,
22.2769444
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dongguan",
"POP_MAX": 4528000
},
"geometry": {
"type": "Point",
"coordinates": [
113.7447222,
23.0488889
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nairobi",
"POP_MAX": 3010000
},
"geometry": {
"type": "Point",
"coordinates": [
36.8166568591,
-1.28334674185
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Antananarivo",
"POP_MAX": 1697000
},
"geometry": {
"type": "Point",
"coordinates": [
47.5166239001,
-18.9166373506
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bandung",
"POP_MAX": 2394000
},
"geometry": {
"type": "Point",
"coordinates": [
107.570012572,
-6.95002927768
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Semarang",
"POP_MAX": 1396000
},
"geometry": {
"type": "Point",
"coordinates": [
110.42001949,
-6.96661741245
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jakarta",
"POP_MAX": 9125000
},
"geometry": {
"type": "Point",
"coordinates": [
106.829437621,
-6.17441770541
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Palembang",
"POP_MAX": 1749000
},
"geometry": {
"type": "Point",
"coordinates": [
104.750029662,
-2.98003904329
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Surabaya",
"POP_MAX": 2845000
},
"geometry": {
"type": "Point",
"coordinates": [
112.750833292,
-7.24923582065
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ujungpandang",
"POP_MAX": 1262000
},
"geometry": {
"type": "Point",
"coordinates": [
119.432027546,
-5.13995888379
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lyon",
"POP_MAX": 1423000
},
"geometry": {
"type": "Point",
"coordinates": [
4.83003047549,
45.7700085643
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Guayaquil",
"POP_MAX": 2514000
},
"geometry": {
"type": "Point",
"coordinates": [
-79.9200419532,
-2.22003375357
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Quito",
"POP_MAX": 1701000
},
"geometry": {
"type": "Point",
"coordinates": [
-78.5000511085,
-0.21498818065
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Medellin",
"POP_MAX": 3297000
},
"geometry": {
"type": "Point",
"coordinates": [
-75.5750100115,
6.27500327446
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Jose",
"POP_MAX": 1284000
},
"geometry": {
"type": "Point",
"coordinates": [
-84.0840513527,
9.93501242974
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Salvador",
"POP_MAX": 1433000
},
"geometry": {
"type": "Point",
"coordinates": [
-89.2030412208,
13.7100016469
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bogota",
"POP_MAX": 7772000
},
"geometry": {
"type": "Point",
"coordinates": [
-74.0833439552,
4.59642356253
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Cali",
"POP_MAX": 2254000
},
"geometry": {
"type": "Point",
"coordinates": [
-76.4999664731,
3.39995912568
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Barranquilla",
"POP_MAX": 1798000
},
"geometry": {
"type": "Point",
"coordinates": [
-74.79996688,
10.959988626
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Havana",
"POP_MAX": 2174000
},
"geometry": {
"type": "Point",
"coordinates": [
-82.3641821713,
23.1319588409
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Cairo",
"POP_MAX": 11893000
},
"geometry": {
"type": "Point",
"coordinates": [
31.2499682197,
30.0499603465
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Alexandria",
"POP_MAX": 4165000
},
"geometry": {
"type": "Point",
"coordinates": [
29.949995889,
31.2000193471
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Asyut",
"POP_MAX": 2710919
},
"geometry": {
"type": "Point",
"coordinates": [
31.179946654,
27.1899798777
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Cologne",
"POP_MAX": 1004000
},
"geometry": {
"type": "Point",
"coordinates": [
6.95000443383,
50.9300036815
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Frankfurt",
"POP_MAX": 2067127
},
"geometry": {
"type": "Point",
"coordinates": [
8.67501542017,
50.0999768261
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hamburg",
"POP_MAX": 1757000
},
"geometry": {
"type": "Point",
"coordinates": [
9.99999914413,
53.5500246369
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Munich",
"POP_MAX": 1275000
},
"geometry": {
"type": "Point",
"coordinates": [
11.5749934475,
48.129942036
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Prague",
"POP_MAX": 1162000
},
"geometry": {
"type": "Point",
"coordinates": [
14.4659797757,
50.0833370149
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Berlin",
"POP_MAX": 3406000
},
"geometry": {
"type": "Point",
"coordinates": [
13.4015486233,
52.5218186636
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kuwait",
"POP_MAX": 2063000
},
"geometry": {
"type": "Point",
"coordinates": [
47.9783011462,
29.36971763
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Urumqi",
"POP_MAX": 2151000
},
"geometry": {
"type": "Point",
"coordinates": [
87.5750056549,
43.8050122264
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Putrajaya",
"POP_MAX": 1651113
},
"geometry": {
"type": "Point",
"coordinates": [
101.70194698,
2.91401979462
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xian",
"POP_MAX": 4009000
},
"geometry": {
"type": "Point",
"coordinates": [
108.894996296,
34.2750254507
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xianyang",
"POP_MAX": 1126000
},
"geometry": {
"type": "Point",
"coordinates": [
108.7147222,
34.3455556
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Taiyuan",
"POP_MAX": 2913000
},
"geometry": {
"type": "Point",
"coordinates": [
112.545057738,
37.8750124299
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Wuhan",
"POP_MAX": 7243000
},
"geometry": {
"type": "Point",
"coordinates": [
114.270017048,
30.5800313507
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Xiangfan",
"POP_MAX": 1069000
},
"geometry": {
"type": "Point",
"coordinates": [
112.130044311,
32.0199951365
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Changsha",
"POP_MAX": 2604000
},
"geometry": {
"type": "Point",
"coordinates": [
112.969993041,
28.1999699087
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hengyang",
"POP_MAX": 1016000
},
"geometry": {
"type": "Point",
"coordinates": [
112.590016234,
26.8800246368
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chengdu",
"POP_MAX": 4123000
},
"geometry": {
"type": "Point",
"coordinates": [
104.07001949,
30.6700000193
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mianyang",
"POP_MAX": 1396000
},
"geometry": {
"type": "Point",
"coordinates": [
104.769976765,
31.4699770294
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Suining",
"POP_MAX": 1425000
},
"geometry": {
"type": "Point",
"coordinates": [
105.5333333,
30.5333333
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kunming",
"POP_MAX": 2931000
},
"geometry": {
"type": "Point",
"coordinates": [
102.679975137,
25.0699800812
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shijianzhuang",
"POP_MAX": 2417000
},
"geometry": {
"type": "Point",
"coordinates": [
114.479978393,
38.0500146678
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Handan",
"POP_MAX": 1631000
},
"geometry": {
"type": "Point",
"coordinates": [
114.479978393,
36.5799751984
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Zhengzhou",
"POP_MAX": 2636000
},
"geometry": {
"type": "Point",
"coordinates": [
113.665092732,
34.7549961538
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Anshan",
"POP_MAX": 1639000
},
"geometry": {
"type": "Point",
"coordinates": [
122.940030476,
41.1150213817
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dalian",
"POP_MAX": 3167000
},
"geometry": {
"type": "Point",
"coordinates": [
121.629830838,
38.9228383932
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shenyeng",
"POP_MAX": 4787000
},
"geometry": {
"type": "Point",
"coordinates": [
123.44997351,
41.8049792674
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Qingdao",
"POP_MAX": 2866000
},
"geometry": {
"type": "Point",
"coordinates": [
120.33000891,
36.0899792674
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jinan",
"POP_MAX": 2798000
},
"geometry": {
"type": "Point",
"coordinates": [
116.995018676,
36.6749823192
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Linyi",
"POP_MAX": 2082000
},
"geometry": {
"type": "Point",
"coordinates": [
118.329975951,
35.0799892365
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tianjin",
"POP_MAX": 7180000
},
"geometry": {
"type": "Point",
"coordinates": [
117.200019083,
39.1300262645
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nanchang",
"POP_MAX": 2350000
},
"geometry": {
"type": "Point",
"coordinates": [
115.879996296,
28.6799922882
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nanjing",
"POP_MAX": 3679000
},
"geometry": {
"type": "Point",
"coordinates": [
118.779974324,
32.0500191437
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Huaiyin",
"POP_MAX": 1264000
},
"geometry": {
"type": "Point",
"coordinates": [
119.029984903,
33.5800032746
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shanghai",
"POP_MAX": 14987000
},
"geometry": {
"type": "Point",
"coordinates": [
121.436504678,
31.2164524526
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Wenzhou",
"POP_MAX": 2350000
},
"geometry": {
"type": "Point",
"coordinates": [
120.650092732,
28.019980895
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ningbo",
"POP_MAX": 1923000
},
"geometry": {
"type": "Point",
"coordinates": [
121.5500378,
29.8799707225
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hangzhou",
"POP_MAX": 3007000
},
"geometry": {
"type": "Point",
"coordinates": [
120.170018676,
30.2499739777
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hiroshima",
"POP_MAX": 2045000
},
"geometry": {
"type": "Point",
"coordinates": [
132.442912963,
34.3878351024
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Changchun",
"POP_MAX": 3183000
},
"geometry": {
"type": "Point",
"coordinates": [
125.339987344,
43.8650085643
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Fukuoka",
"POP_MAX": 2792000
},
"geometry": {
"type": "Point",
"coordinates": [
130.410013793,
33.5950152781
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hohhot",
"POP_MAX": 1726000
},
"geometry": {
"type": "Point",
"coordinates": [
111.659995482,
40.8199747915
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Baotou",
"POP_MAX": 2036000
},
"geometry": {
"type": "Point",
"coordinates": [
109.822019815,
40.6522072541
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chifeng",
"POP_MAX": 1277000
},
"geometry": {
"type": "Point",
"coordinates": [
118.949989786,
42.2700154816
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jiamusi",
"POP_MAX": 1020000
},
"geometry": {
"type": "Point",
"coordinates": [
130.350017455,
46.8300213817
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Daqing",
"POP_MAX": 1693000
},
"geometry": {
"type": "Point",
"coordinates": [
125.000008096,
46.5799591259
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Qiqihar",
"POP_MAX": 1641000
},
"geometry": {
"type": "Point",
"coordinates": [
123.989992227,
47.3449770295
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Harbin",
"POP_MAX": 3621000
},
"geometry": {
"type": "Point",
"coordinates": [
126.649984903,
45.7499839468
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nagoya",
"POP_MAX": 3230000
},
"geometry": {
"type": "Point",
"coordinates": [
136.914991414,
35.154997578
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sapporo",
"POP_MAX": 2544000
},
"geometry": {
"type": "Point",
"coordinates": [
141.340044311,
43.0749792674
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kyoto",
"POP_MAX": 1805000
},
"geometry": {
"type": "Point",
"coordinates": [
135.749997924,
35.0299922882
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Osaka",
"POP_MAX": 11294000
},
"geometry": {
"type": "Point",
"coordinates": [
135.460144815,
34.7500352163
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tokyo",
"POP_MAX": 35676000
},
"geometry": {
"type": "Point",
"coordinates": [
139.751407429,
35.6850169058
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sendai",
"POP_MAX": 2250000
},
"geometry": {
"type": "Point",
"coordinates": [
141.021717488,
38.2871061392
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kinshasa",
"POP_MAX": 7843000
},
"geometry": {
"type": "Point",
"coordinates": [
15.3149718818,
-4.32972410189
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mbuji-Mayi",
"POP_MAX": 1295000
},
"geometry": {
"type": "Point",
"coordinates": [
23.599995889,
-6.15002642937
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lubumbashi",
"POP_MAX": 1352000
},
"geometry": {
"type": "Point",
"coordinates": [
27.4800174548,
-11.6800248018
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Guatemala",
"POP_MAX": 1024000
},
"geometry": {
"type": "Point",
"coordinates": [
-90.5269655779,
14.6211346628
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Santo Domingo",
"POP_MAX": 2154000
},
"geometry": {
"type": "Point",
"coordinates": [
-69.9000850847,
18.4700728546
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kumasi",
"POP_MAX": 1646000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.6300144871,
6.68999086398
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Accra",
"POP_MAX": 2121000
},
"geometry": {
"type": "Point",
"coordinates": [
-0.21671574035,
5.55003460583
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Delhi",
"POP_MAX": 15926000
},
"geometry": {
"type": "Point",
"coordinates": [
77.2300040272,
28.6699928986
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Faridabad",
"POP_MAX": 1394000
},
"geometry": {
"type": "Point",
"coordinates": [
77.3166667,
28.4333333
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Srinagar",
"POP_MAX": 1140000
},
"geometry": {
"type": "Point",
"coordinates": [
74.8150093169,
34.0999715363
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vijayawada",
"POP_MAX": 1137000
},
"geometry": {
"type": "Point",
"coordinates": [
80.6300032134,
16.5199593292
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vishakhapatnam",
"POP_MAX": 1529000
},
"geometry": {
"type": "Point",
"coordinates": [
83.3049820546,
17.7300146677
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hyderabad",
"POP_MAX": 6376000
},
"geometry": {
"type": "Point",
"coordinates": [
78.4799535715,
17.3999831329
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kochi",
"POP_MAX": 1519000
},
"geometry": {
"type": "Point",
"coordinates": [
76.2239155669,
10.0150075469
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bangalore",
"POP_MAX": 6787000
},
"geometry": {
"type": "Point",
"coordinates": [
77.5600097238,
12.9699951365
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Pune",
"POP_MAX": 4672000
},
"geometry": {
"type": "Point",
"coordinates": [
73.8500036203,
18.530017516
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Nagpur",
"POP_MAX": 2454000
},
"geometry": {
"type": "Point",
"coordinates": [
79.0899938547,
21.1699597361
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mumbai",
"POP_MAX": 18978000
},
"geometry": {
"type": "Point",
"coordinates": [
72.8569892974,
19.0169903757
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Marseille",
"POP_MAX": 1400000
},
"geometry": {
"type": "Point",
"coordinates": [
5.37501013044,
43.289979064
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Paris",
"POP_MAX": 9904000
},
"geometry": {
"type": "Point",
"coordinates": [
2.33333532574,
48.8666929312
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Santiago",
"POP_MAX": 5720000
},
"geometry": {
"type": "Point",
"coordinates": [
-70.6670408546,
-33.4500138155
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bamako",
"POP_MAX": 1494000
},
"geometry": {
"type": "Point",
"coordinates": [
-8.00003910464,
12.6500146677
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Athens",
"POP_MAX": 3242000
},
"geometry": {
"type": "Point",
"coordinates": [
23.7333210843,
37.9833262319
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tripoli",
"POP_MAX": 2189000
},
"geometry": {
"type": "Point",
"coordinates": [
13.1800117581,
32.8925000194
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Banghazi",
"POP_MAX": 1180000
},
"geometry": {
"type": "Point",
"coordinates": [
20.0667231839,
32.1167334178
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Trablous",
"POP_MAX": 1150989
},
"geometry": {
"type": "Point",
"coordinates": [
35.8699962959,
34.4200036815
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Beirut",
"POP_MAX": 1846000
},
"geometry": {
"type": "Point",
"coordinates": [
35.50970821,
33.871975117
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tbilisi",
"POP_MAX": 1100000
},
"geometry": {
"type": "Point",
"coordinates": [
44.7907954496,
41.7250099885
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mosul",
"POP_MAX": 1316000
},
"geometry": {
"type": "Point",
"coordinates": [
43.145004434,
36.3450024608
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tel Aviv-Yafo",
"POP_MAX": 3112000
},
"geometry": {
"type": "Point",
"coordinates": [
34.7700117582,
32.0799914744
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Baghdad",
"POP_MAX": 5054000
},
"geometry": {
"type": "Point",
"coordinates": [
44.3938687732,
33.3386484975
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sodo",
"POP_MAX": 1070727
},
"geometry": {
"type": "Point",
"coordinates": [
37.7499849027,
6.90000388481
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Addis Ababa",
"POP_MAX": 3100000
},
"geometry": {
"type": "Point",
"coordinates": [
38.700004434,
9.03331036268
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Helsinki",
"POP_MAX": 1115000
},
"geometry": {
"type": "Point",
"coordinates": [
24.9341263415,
60.175563374
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Almaty",
"POP_MAX": 1209000
},
"geometry": {
"type": "Point",
"coordinates": [
76.9150361724,
43.3249898469
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Isfahan",
"POP_MAX": 1628000
},
"geometry": {
"type": "Point",
"coordinates": [
51.7000377999,
32.7000053091
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Shiraz",
"POP_MAX": 1240000
},
"geometry": {
"type": "Point",
"coordinates": [
52.5700105375,
29.629960143
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tehran",
"POP_MAX": 7873000
},
"geometry": {
"type": "Point",
"coordinates": [
51.4243440336,
35.6719427684
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Tabriz",
"POP_MAX": 1413000
},
"geometry": {
"type": "Point",
"coordinates": [
46.3012458891,
38.0862915233
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Mashhad",
"POP_MAX": 2469000
},
"geometry": {
"type": "Point",
"coordinates": [
59.5699967029,
36.2700199575
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ludhiana",
"POP_MAX": 1649000
},
"geometry": {
"type": "Point",
"coordinates": [
75.8722574452,
30.9277620636
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Amritsar",
"POP_MAX": 1212000
},
"geometry": {
"type": "Point",
"coordinates": [
74.8699930409,
31.6399924917
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jaipur",
"POP_MAX": 2917000
},
"geometry": {
"type": "Point",
"coordinates": [
75.8099873443,
26.9211332387
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Lucknow",
"POP_MAX": 2695000
},
"geometry": {
"type": "Point",
"coordinates": [
80.9149987375,
26.8550390818
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Varanasi",
"POP_MAX": 1352000
},
"geometry": {
"type": "Point",
"coordinates": [
83.0000394276,
25.3299900502
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kanpur",
"POP_MAX": 3162000
},
"geometry": {
"type": "Point",
"coordinates": [
80.3199962961,
26.4599985952
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ranchi",
"POP_MAX": 1044000
},
"geometry": {
"type": "Point",
"coordinates": [
85.3300264068,
23.3700063263
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kolkata",
"POP_MAX": 14787000
},
"geometry": {
"type": "Point",
"coordinates": [
88.3246756581,
22.4949692983
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Asansol",
"POP_MAX": 1328000
},
"geometry": {
"type": "Point",
"coordinates": [
86.9833333,
23.6833333
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Patna",
"POP_MAX": 2158000
},
"geometry": {
"type": "Point",
"coordinates": [
85.1300386138,
25.6249591258
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bhilai",
"POP_MAX": 1097000
},
"geometry": {
"type": "Point",
"coordinates": [
81.4333333,
21.2166667
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Bhopal",
"POP_MAX": 1727000
},
"geometry": {
"type": "Point",
"coordinates": [
77.4099930409,
23.2499878123
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jabalpur",
"POP_MAX": 1285000
},
"geometry": {
"type": "Point",
"coordinates": [
79.9550573313,
23.1750569855
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Indore",
"POP_MAX": 2026000
},
"geometry": {
"type": "Point",
"coordinates": [
75.8650227447,
22.7150592234
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chennai",
"POP_MAX": 7163000
},
"geometry": {
"type": "Point",
"coordinates": [
80.2799987375,
13.0899878122
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Madurai",
"POP_MAX": 1294000
},
"geometry": {
"type": "Point",
"coordinates": [
78.1200272206,
9.92002626438
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Coimbatore",
"POP_MAX": 1696000
},
"geometry": {
"type": "Point",
"coordinates": [
76.9500211171,
10.9999603464
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ahmedabad",
"POP_MAX": 5375000
},
"geometry": {
"type": "Point",
"coordinates": [
72.5800036203,
23.0300529164
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Surat",
"POP_MAX": 3842000
},
"geometry": {
"type": "Point",
"coordinates": [
72.8400394276,
21.1999837433
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Brazzaville",
"POP_MAX": 1355000
},
"geometry": {
"type": "Point",
"coordinates": [
15.2846894925,
-4.25918577181
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "København",
"POP_MAX": 1085000
},
"geometry": {
"type": "Point",
"coordinates": [
12.5634857473,
55.6785641904
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Conakry",
"POP_MAX": 1494000
},
"geometry": {
"type": "Point",
"coordinates": [
-13.6802350275,
9.53152284641
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Abidjan",
"POP_MAX": 3802000
},
"geometry": {
"type": "Point",
"coordinates": [
-4.04004825989,
5.31999696749
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Manaus",
"POP_MAX": 1753000
},
"geometry": {
"type": "Point",
"coordinates": [
-60.0000175391,
-3.10003171907
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "São Luís",
"POP_MAX": 1038000
},
"geometry": {
"type": "Point",
"coordinates": [
-44.2659908463,
-2.51598468131
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Belem",
"POP_MAX": 2167000
},
"geometry": {
"type": "Point",
"coordinates": [
-48.4800230322,
-1.45000323599
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Brasilia",
"POP_MAX": 3599000
},
"geometry": {
"type": "Point",
"coordinates": [
-47.9160522884,
-15.7833402315
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Belo Horizonte",
"POP_MAX": 5575000
},
"geometry": {
"type": "Point",
"coordinates": [
-43.9150045182,
-19.9150260225
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Porto Alegre",
"POP_MAX": 3917000
},
"geometry": {
"type": "Point",
"coordinates": [
-51.2000120459,
-30.0500146293
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Curitiba",
"POP_MAX": 3084000
},
"geometry": {
"type": "Point",
"coordinates": [
-49.3199976009,
-25.4200130017
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Florianopolis",
"POP_MAX": 1023000
},
"geometry": {
"type": "Point",
"coordinates": [
-48.5200205908,
-27.5799845186
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Fortaleza",
"POP_MAX": 3389000
},
"geometry": {
"type": "Point",
"coordinates": [
-38.5799813248,
-3.75001788444
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Maceio",
"POP_MAX": 1186000
},
"geometry": {
"type": "Point",
"coordinates": [
-35.7299744075,
-9.6199955049
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Salvador",
"POP_MAX": 3484000
},
"geometry": {
"type": "Point",
"coordinates": [
-38.4799874283,
-12.9699719047
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vila Velha",
"POP_MAX": 1209091
},
"geometry": {
"type": "Point",
"coordinates": [
-40.3179889339,
-20.3676082165
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rio de Janeiro",
"POP_MAX": 11748000
},
"geometry": {
"type": "Point",
"coordinates": [
-43.2250207942,
-22.9250231742
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Natal",
"POP_MAX": 1088000
},
"geometry": {
"type": "Point",
"coordinates": [
-35.2400043147,
-5.78002317416
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Edmonton",
"POP_MAX": 1058000
},
"geometry": {
"type": "Point",
"coordinates": [
-113.499981935,
53.5500246369
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Calgary",
"POP_MAX": 1110000
},
"geometry": {
"type": "Point",
"coordinates": [
-114.079998212,
51.0829917593
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vancouver",
"POP_MAX": 2146000
},
"geometry": {
"type": "Point",
"coordinates": [
-123.121644218,
49.2734165841
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vila Velha",
"POP_MAX": 1209091
},
"geometry": {
"type": "Point",
"coordinates": [
-51.2166518571,
3.21666282034
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ottawa",
"POP_MAX": 1145000
},
"geometry": {
"type": "Point",
"coordinates": [
-75.7000153012,
45.4166967967
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Toronto",
"POP_MAX": 5213000
},
"geometry": {
"type": "Point",
"coordinates": [
-79.4200207944,
43.6999798778
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Montréal",
"POP_MAX": 3678000
},
"geometry": {
"type": "Point",
"coordinates": [
-73.5832969581,
45.4999992056
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Belgrade",
"POP_MAX": 1099000
},
"geometry": {
"type": "Point",
"coordinates": [
20.4679906806,
44.8186454458
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Goiania",
"POP_MAX": 2022000
},
"geometry": {
"type": "Point",
"coordinates": [
-49.3000246598,
-16.7200272432
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Buenos Aires",
"POP_MAX": 12795000
},
"geometry": {
"type": "Point",
"coordinates": [
-58.3975313737,
-34.6025016085
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Córdoba",
"POP_MAX": 1452000
},
"geometry": {
"type": "Point",
"coordinates": [
-64.1822945573,
-31.3999580701
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rosario",
"POP_MAX": 1203000
},
"geometry": {
"type": "Point",
"coordinates": [
-60.6663076188,
-32.9511295382
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Santos",
"POP_MAX": 1709000
},
"geometry": {
"type": "Point",
"coordinates": [
-46.3329426565,
-23.9537239335
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Campinas",
"POP_MAX": 2791000
},
"geometry": {
"type": "Point",
"coordinates": [
-47.1000297461,
-22.900011781
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sao Paulo",
"POP_MAX": 18845000
},
"geometry": {
"type": "Point",
"coordinates": [
-46.6250199804,
-23.558679587
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Recife",
"POP_MAX": 3651000
},
"geometry": {
"type": "Point",
"coordinates": [
-34.915605511,
-8.07564532586
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yaounde",
"POP_MAX": 1611000
},
"geometry": {
"type": "Point",
"coordinates": [
11.5166507555,
3.86670066214
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Brussels",
"POP_MAX": 1743000
},
"geometry": {
"type": "Point",
"coordinates": [
4.3333166083,
50.8333170767
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Yerevan",
"POP_MAX": 1102000
},
"geometry": {
"type": "Point",
"coordinates": [
44.5135513904,
40.1811507355
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Baku",
"POP_MAX": 1892000
},
"geometry": {
"type": "Point",
"coordinates": [
49.8622171619,
40.3952720327
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Kabul",
"POP_MAX": 3277000
},
"geometry": {
"type": "Point",
"coordinates": [
69.1832600493,
34.5166902863
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Phnom Penh",
"POP_MAX": 1466000
},
"geometry": {
"type": "Point",
"coordinates": [
104.91663448,
11.5500301299
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Dhaka",
"POP_MAX": 13485000
},
"geometry": {
"type": "Point",
"coordinates": [
90.4085794667,
23.7230597117
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Luanda",
"POP_MAX": 4000000
},
"geometry": {
"type": "Point",
"coordinates": [
13.2344270413,
-8.83828611363
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "La Paz",
"POP_MAX": 1590000
},
"geometry": {
"type": "Point",
"coordinates": [
-68.1499851905,
-16.4979736137
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Santa Cruz",
"POP_MAX": 1422000
},
"geometry": {
"type": "Point",
"coordinates": [
-63.2259963396,
-17.7539176241
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Algiers",
"POP_MAX": 3354000
},
"geometry": {
"type": "Point",
"coordinates": [
3.05055252952,
36.763064798
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sofia",
"POP_MAX": 1185000
},
"geometry": {
"type": "Point",
"coordinates": [
23.3166540107,
42.6833494253
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Vienna",
"POP_MAX": 2315000
},
"geometry": {
"type": "Point",
"coordinates": [
16.3666389554,
48.2000152782
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Minsk",
"POP_MAX": 1805000
},
"geometry": {
"type": "Point",
"coordinates": [
27.5666271553,
53.8999774364
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Khulna",
"POP_MAX": 1553000
},
"geometry": {
"type": "Point",
"coordinates": [
89.5600007721,
22.8399869985
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Chittagong",
"POP_MAX": 4529000
},
"geometry": {
"type": "Point",
"coordinates": [
91.7999674062,
22.3299922882
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Perth",
"POP_MAX": 1532000
},
"geometry": {
"type": "Point",
"coordinates": [
115.839998738,
-31.9550146293
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Newcastle",
"POP_MAX": 1134616
},
"geometry": {
"type": "Point",
"coordinates": [
151.815012166,
-32.8453478813
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Sydney",
"POP_MAX": 4327000
},
"geometry": {
"type": "Point",
"coordinates": [
151.185179809,
-33.9200109672
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Adelaide",
"POP_MAX": 1145000
},
"geometry": {
"type": "Point",
"coordinates": [
138.600004841,
-34.9349877739
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Melbourne",
"POP_MAX": 3728000
},
"geometry": {
"type": "Point",
"coordinates": [
144.975016235,
-37.8200313123
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Brisbane",
"POP_MAX": 1860000
},
"geometry": {
"type": "Point",
"coordinates": [
153.035092732,
-27.4550309054
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Ouagadougou",
"POP_MAX": 1149000
},
"geometry": {
"type": "Point",
"coordinates": [
-1.5247237563,
12.3703159779
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Rangoon",
"POP_MAX": 4088000
},
"geometry": {
"type": "Point",
"coordinates": [
96.1666776113,
16.7833541046
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Macau",
"POP_MAX": 1443346
},
"geometry": {
"type": "Point",
"coordinates": [
113.54504838,
22.2029974558
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "San Juan",
"POP_MAX": 2690000
},
"geometry": {
"type": "Point",
"coordinates": [
-66.1299792904,
18.4400230092
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Singapore",
"POP_MAX": 4436000
},
"geometry": {
"type": "Point",
"coordinates": [
103.855820678,
1.29303346649
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Jerusalem",
"POP_MAX": 1073782
},
"geometry": {
"type": "Point",
"coordinates": [
35.2066259346,
31.7784078156
]
}
},
{
"type": "Feature",
"properties": {
"NAME": "Hong Kong",
"POP_MAX": 7206000
},
"geometry": {
"type": "Point",
"coordinates": [
114.185009317,
22.304980895
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment