web-mapping-leaflet 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0d85753cbbddf067e6697503f1accec8fb89acd1d3473c573b90176afa88b64f
4
+ data.tar.gz: 432ce0827a159d22815f4817fe1c8da2180b702c7a5dd4cf94c26b62bfa7097e
5
+ SHA512:
6
+ metadata.gz: 67e719b5aa02b2134f09ebe7680a86f35db1e73bf514f7e1f085c2f76bd89ea4c1fdab9ac46c89390276e2b7518e91d9899af086b914c3b48432bef8bdbd98c1
7
+ data.tar.gz: 6e73ee3ee9c8aeab020ca8bef0b3eb9c49416595f8f03fe073369e5f6c1028e7e3c8eb25569642e1e6bba25c8a0f1ea19739db5cb08b97d09fb595c95b70e596
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 wslerry
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # web-mapping-leaflet
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "web-mapping-leaflet"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: web-mapping-leaflet
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install web-mapping-leaflet
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `web-mapping-leaflet.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,18 @@
1
+ <div class="modal fade" id="aboutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
2
+ <div class="modal-dialog" role="document">
3
+ <div class="modal-content">
4
+ <div class="modal-header">
5
+ <h5 class="modal-title" id="exampleModalLabel">About</h5>
6
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
7
+ <span aria-hidden="true">&times;</span>
8
+ </button>
9
+ </div>
10
+ <div class="modal-body">
11
+ {{ site.description }}
12
+ </div>
13
+ <div class="modal-footer">
14
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </div>
@@ -0,0 +1,28 @@
1
+ <div class="modal fade" id="contactModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
2
+ <div class="modal-dialog" role="document">
3
+ <div class="modal-content">
4
+ <div class="modal-header">
5
+ <h5 class="modal-title" id="exampleModalLabel">Contact</h5>
6
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
7
+ <span aria-hidden="true">&times;</span>
8
+ </button>
9
+ </div>
10
+ <div class="modal-body">
11
+ <form method="post">
12
+ <h2 class="text-center">Contact us</h2>
13
+ <p>Keep in touch with us</p>
14
+ <div class="form-group"><input type="text" name="name" placeholder="Name" class="form-control" /></div>
15
+ <div class="form-group">
16
+ <input type="email" name="email" placeholder="Email" class="form-control" />
17
+ <small class="form-text text-danger">Please enter a correct email address.</small>
18
+ </div>
19
+ <div class="form-group"><textarea rows="10" name="message" placeholder="Message" class="form-control"></textarea></div>
20
+ <div class="form-group"><button class="btn btn-primary" type="submit">send </button></div>
21
+ </form>
22
+ </div>
23
+ <div class="modal-footer">
24
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </div>
@@ -0,0 +1,8 @@
1
+ <footer class="footer py-3">
2
+ <div class="container text-center">
3
+ <p>
4
+ &copy; {{ site.time | date: '%Y' }} {{ site.title }} &nbsp;&nbsp;• &nbsp;&nbsp;Powered by <a href="https://jekyllrb.com/">Jekyll</a> &nbsp;&nbsp;•
5
+ &nbsp;&nbsp;Theme by <a href="https://lerryws.xyz">wslerry</a>
6
+ </p>
7
+ </div>
8
+ </footer>
@@ -0,0 +1,21 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
4
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
7
+ <meta name="HandheldFriendly" content="True">
8
+ <meta name="MobileOptimized" content="320">
9
+ <meta name="Robots" content="index, follow">
10
+
11
+ {%- seo -%}
12
+
13
+ {% for css in site.css-baseurl %}
14
+ <link rel="stylesheet" href="{{ css | absolute_url }}">
15
+ {% endfor %}
16
+
17
+ {% for js in site.js-baseurl %}
18
+ <script type="text/javascript" src="{{ js }}"></script>
19
+ {% endfor %}
20
+
21
+ </head>
@@ -0,0 +1,18 @@
1
+ <div class="modal fade" id="aboutLegends" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
2
+ <div class="modal-dialog" role="document">
3
+ <div class="modal-content">
4
+ <div class="modal-header">
5
+ <h5 class="modal-title" id="exampleModalLabel">About</h5>
6
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
7
+ <span aria-hidden="true">&times;</span>
8
+ </button>
9
+ </div>
10
+ <div class="modal-body">
11
+ Legends goes here...
12
+ </div>
13
+ <div class="modal-footer">
14
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </div>
@@ -0,0 +1,68 @@
1
+ <div id="container">
2
+ <div id="map"></div>
3
+ </div>
4
+ <script>
5
+ var OSM = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',{
6
+ attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
7
+ });
8
+
9
+ var coords = [0, 0]; // the geographic center of our map
10
+ var zoomLevel = 3; // the map scale
11
+ // var map = L.map('map', {
12
+ // center: coords,
13
+ // zoom: zoomLevel,
14
+ // layers: OSM
15
+ // });
16
+
17
+ var map = L.map('map',{layers: OSM}).setView(coords, zoomLevel);
18
+
19
+ //Styles
20
+ var geojsonMarkerOptions = {
21
+ radius: 8,
22
+ fillColor: "#ff7800",
23
+ color: "#000",
24
+ weight: 1,
25
+ opacity: 1,
26
+ fillOpacity: 0.8
27
+ };
28
+
29
+ var markerClusters = L.markerClusterGroup({showCoverageOnHover: false});
30
+
31
+ var mydata= L.geoJson(null, {
32
+ // pointToLayer: function (feature, latlng) {
33
+ // return L.circleMarker(latlng, geojsonMarkerOptions);
34
+ // },
35
+
36
+ onEachFeature: function (feature, layer) {
37
+ var popupcontent = [];
38
+ for (var prop in feature.properties) {
39
+ popupcontent.push("<table class='table table-striped table-bordered table-condensed'>" + "<tr><th>" + prop + "</th><td>"+ feature.properties[prop] + "</td></tr>" + "<table>");
40
+ }
41
+ layer.bindPopup(popupcontent.join("<hr />"));
42
+ markerClusters.addLayer( layer )
43
+ } //end onEachFeature
44
+
45
+ });
46
+
47
+
48
+ $.getJSON("assets/cities.geojson", function (data) {
49
+ mydata.addData(data);
50
+ });
51
+
52
+
53
+ // load basemap
54
+ var baseMaps = {
55
+ "OpenStreetMap": OSM,
56
+ };
57
+
58
+ // load overlay
59
+ var overlay = {
60
+ "Cities": markerClusters,
61
+ };
62
+
63
+
64
+ // markerClusters.addLayer( mydata );
65
+
66
+ L.control.layers(baseMaps, overlay, {collapsed: true}).addTo(map);
67
+
68
+ </script>
@@ -0,0 +1,22 @@
1
+ <header>
2
+ <nav class="navbar navbar-expand-md navbar-light fixed-top bg-light">
3
+ <i class="fa fa-globe-asia fa-2x" aria-hidden="true"></i>
4
+ <a class="navbar-brand" href="#">{{ site.title }}</a>
5
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
6
+ <span class="navbar-toggler-icon"></span>
7
+ </button>
8
+ <div class="collapse navbar-collapse" id="navbarCollapse">
9
+ <ul class="nav navbar-nav ml-auto">
10
+ <li class="nav-item" role="presentation">
11
+ <a href="" role="button" class="nav-link active" data-toggle="modal" data-target="#aboutModal">&nbsp;About&nbsp;<i class="fas fa-question-circle"></i></a>
12
+ </li>
13
+ <li class="nav-item" role="presentation">
14
+ <a href="" role="button" class="nav-link active" data-toggle="modal" data-target="#aboutLegends">&nbsp;Map Legends&nbsp;<i class="fas fa-map"></i></a>
15
+ </li>
16
+ <li class="nav-item" role="presentation">
17
+ <a href="" role="button" class="nav-link active" data-toggle="modal" data-target="#contactModal">&nbsp;Contact&nbsp;<i class="fas fa-paper-plane"></i></a>
18
+ </li>
19
+ </ul>
20
+ </div>
21
+ </nav>
22
+ </header>
File without changes
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en" dir="ltr">
3
+ {% include_cached head.html %}
4
+ <body class="d-flex flex-column h-100">
5
+ {% include_cached navbar.html %}
6
+ {% include_cached about.html %}
7
+ {% include_cached map-legends.html %}
8
+ {% include_cached contact.html %}
9
+ {{ content }}
10
+ {% include_cached footer.html %}
11
+ </body>
12
+ </html>
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {{ content }}
@@ -0,0 +1,63 @@
1
+ @import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css";
2
+ @import "https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css";
3
+ @import "https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.5.1/leaflet.css";
4
+ @import "https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.4.1/MarkerCluster.css";
5
+ @import "https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.4.1/MarkerCluster.Default.css";
6
+
7
+
8
+ $background-color : #f8f9fa ;
9
+
10
+ html, body, #container {
11
+ height: 100%;
12
+ width: 100%;
13
+ overflow: hidden;
14
+ }
15
+
16
+ body {
17
+ padding-top: 50px;
18
+ }
19
+
20
+ #map {
21
+ // padding-top: 80px;
22
+ width: inherit;
23
+ height: inherit;
24
+ }
25
+
26
+ h1, h2, h3, h4, h5 ,h6 {
27
+ font-weight: bold;
28
+ }
29
+
30
+ p, ul, ol, pre, blockquote {
31
+ margin-bottom: 1em;
32
+ }
33
+
34
+ .navbar .navbar-light {
35
+ max-height: 50px;
36
+ }
37
+
38
+ .navbar-light .navbar-toggler-icon{
39
+ font-size: 15px !important;
40
+ }
41
+
42
+
43
+ .navbar-light .navbar-brand {
44
+ font-weight: bold;
45
+ text-transform: uppercase;
46
+ }
47
+
48
+ .navbar-light .bg-light {
49
+ background-color: $background-color;
50
+ }
51
+
52
+ .footer {
53
+ background-color: $background-color;
54
+ }
55
+
56
+ .footer > .container {
57
+ padding-right: 15px;
58
+ padding-left: 15px;
59
+ }
60
+
61
+ .footer p {
62
+ font-size: 11px;
63
+ }
@@ -0,0 +1 @@
1
+ {"type":"FeatureCollection","bbox":[-165.27000427246094,-53.150001525878906,177.13018798828125,78.19999694824219],"features":[{"type":"Feature","geometry":{"type":"Point","coordinates":[33.08604049682617,68.96354675292969]},"properties":{"NAME":"Murmansk","COUNTRY":"Russia","POPULATION":"468000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[40.64616012573243,64.52066802978516]},"properties":{"NAME":"Arkhangelsk","COUNTRY":"Russia","POPULATION":"416000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[30.45332717895508,59.95188903808593]},"properties":{"NAME":"Saint Petersburg","COUNTRY":"Russia","POPULATION":"5825000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150.78001403808594,59.57099914550781]},"properties":{"NAME":"Magadan","COUNTRY":"Russia","POPULATION":"152000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[56.23246383666992,58.000236511230476]},"properties":{"NAME":"Perm'","COUNTRY":"Russia","POPULATION":"1160000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[60.6101303100586,56.84654235839844]},"properties":{"NAME":"Yekaterinburg","COUNTRY":"Russia","POPULATION":"1620000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[43.940670013427734,56.289676666259766]},"properties":{"NAME":"Nizhniy Novgorod","COUNTRY":"Russia","POPULATION":"2025000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.269947528839111,55.86280822753906]},"properties":{"NAME":"Glasgow","COUNTRY":"UK","POPULATION":"1800000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[49.14546585083008,55.73300552368164]},"properties":{"NAME":"Kazan'","COUNTRY":"Russia","POPULATION":"1140000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[61.39261245727539,55.14500045776367]},"properties":{"NAME":"Chelyabinsk","COUNTRY":"Russia","POPULATION":"1325000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[73.25028991699219,55.06330490112305]},"properties":{"NAME":"Omsk","COUNTRY":"Russia","POPULATION":"1175000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[82.9428482055664,55.032100677490234]},"properties":{"NAME":"Novosibirsk","COUNTRY":"Russia","POPULATION":"1600000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[56.096126556396484,54.82173538208008]},"properties":{"NAME":"Ufa","COUNTRY":"Russia","POPULATION":"1100000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[25.27596664428711,54.688568115234375]},"properties":{"NAME":"Vilnius","COUNTRY":"Lithuania","POPULATION":"582000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.909660339355469,54.5869255065918]},"properties":{"NAME":"Belfast","COUNTRY":"UK","POPULATION":"685000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[18.624942779541016,54.366203308105476]},"properties":{"NAME":"Gdansk","COUNTRY":"Poland","POPULATION":"909000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[27.5755672454834,53.89993667602539]},"properties":{"NAME":"Minsk","COUNTRY":"Byelarus","POPULATION":"1650000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4975274801254272,53.808712005615234]},"properties":{"NAME":"Leeds","COUNTRY":"UK","POPULATION":"1540000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[10.027606010437012,53.57112121582032]},"properties":{"NAME":"Hamburg","COUNTRY":"Germany","POPULATION":"2225000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.2617785930633545,53.47966384887696]},"properties":{"NAME":"Manchester","COUNTRY":"UK","POPULATION":"2775000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.4629892110824585,53.37404251098633]},"properties":{"NAME":"Sheffield","COUNTRY":"UK","POPULATION":"710000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.2573466300964355,53.34156036376953]},"properties":{"NAME":"Dublin","COUNTRY":"Ireland","POPULATION":"1140000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[50.0961799621582,53.13859558105469]},"properties":{"NAME":"Samara","COUNTRY":"Russia","POPULATION":"1505000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[8.857625961303711,53.08010482788086]},"properties":{"NAME":"Bremen","COUNTRY":"Germany","POPULATION":"800000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.3275728225708,52.516273498535156]},"properties":{"NAME":"Berlin","COUNTRY":"Germany","POPULATION":"5061248","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.8633477687835696,52.49275207519531]},"properties":{"NAME":"Birmingham","COUNTRY":"UK","POPULATION":"2675000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[4.8948330879211435,52.373043060302734]},"properties":{"NAME":"Amsterdam","COUNTRY":"Netherlands","POPULATION":"1860000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[104.24783325195314,52.31743240356445]},"properties":{"NAME":"Irkutsk","COUNTRY":"Russia","POPULATION":"626000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[21.01187896728516,52.24494552612305]},"properties":{"NAME":"Warsaw","COUNTRY":"Poland","POPULATION":"2323000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[4.485152244567871,51.925594329833984]},"properties":{"NAME":"Rotterdam","COUNTRY":"Netherlands","POPULATION":"1110000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[19.4764404296875,51.77790832519531]},"properties":{"NAME":"Lodz","COUNTRY":"Poland","POPULATION":"1061000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.466418266296387,51.51381301879883]},"properties":{"NAME":"Dortmund","COUNTRY":"Germany","POPULATION":"568164","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[6.775304317474365,51.48933792114258]},"properties":{"NAME":"Duisburg","COUNTRY":"Germany","POPULATION":"514628","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.1779981255531311,51.487911224365234]},"properties":{"NAME":"London","COUNTRY":"UK","POPULATION":"11100000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.122435092926025,51.35404205322266]},"properties":{"NAME":"Essen","COUNTRY":"Germany","POPULATION":"3867000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[12.39807415008545,51.34933090209961]},"properties":{"NAME":"Leipzig","COUNTRY":"Germany","POPULATION":"700000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[4.42605447769165,51.20734786987305]},"properties":{"NAME":"Antwerpen","COUNTRY":"Belgium","POPULATION":"1100000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[17.038127899169922,51.12181854248047]},"properties":{"NAME":"Wroclaw","COUNTRY":"Poland","POPULATION":"640200","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[3.7362911701202393,51.04755401611328]},"properties":{"NAME":"Gent","COUNTRY":"Belgium","POPULATION":"465000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.705357551574707,51.04568099975586]},"properties":{"NAME":"Dresden","COUNTRY":"Germany","POPULATION":"670000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.05000305175781,51.029998779296875]},"properties":{"NAME":"Calgary","COUNTRY":"Canada","POPULATION":"671326","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[6.934871673583984,50.942344665527344]},"properties":{"NAME":"Koln","COUNTRY":"Germany","POPULATION":"1760000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[4.367612361907959,50.8370475769043]},"properties":{"NAME":"Bruxelles","COUNTRY":"Belgium","POPULATION":"2385000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.099818706512451,50.73455810546875]},"properties":{"NAME":"Bonn","COUNTRY":"Germany","POPULATION":"570000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[3.0629012584686284,50.632083892822266]},"properties":{"NAME":"Lille","COUNTRY":"France","POPULATION":"1020000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[5.5694355964660645,50.622528076171875]},"properties":{"NAME":"Liege","COUNTRY":"Belgium","POPULATION":"750000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[30.502111434936527,50.448158264160156]},"properties":{"NAME":"Kiev","COUNTRY":"Ukraine","POPULATION":"2900000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[8.668167114257812,50.12999725341797]},"properties":{"NAME":"Frankfurt am Main","COUNTRY":"Germany","POPULATION":"1855000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[14.456520080566408,50.10589599609375]},"properties":{"NAME":"Praha","COUNTRY":"Czech Repub","POPULATION":"1325000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[19.945056915283203,50.06224060058594]},"properties":{"NAME":"Krakow","COUNTRY":"Poland","POPULATION":"828000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.12444305419922,49.92116928100586]},"properties":{"NAME":"Winnipeg","COUNTRY":"Canada","POPULATION":"625304","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[73.20263671875,49.879207611083984]},"properties":{"NAME":"Karaganda","COUNTRY":"Kazakhstan","POPULATION":"614000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[24.034521102905273,49.837310791015625]},"properties":{"NAME":"Lvov","COUNTRY":"Ukraine","POPULATION":"790000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[16.61624526977539,49.202980041503906]},"properties":{"NAME":"Brno","COUNTRY":"Czech Repub","POPULATION":"450000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.432832717895508,48.881553649902344]},"properties":{"NAME":"Paris","COUNTRY":"France","POPULATION":"9775000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[44.4836311340332,48.71024703979492]},"properties":{"NAME":"Volgograd","COUNTRY":"Russia","POPULATION":"1360000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.76799440383911,48.58343505859375]},"properties":{"NAME":"Strasbourg","COUNTRY":"France","POPULATION":"400000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[14.293901443481445,48.2975959777832]},"properties":{"NAME":"Linz","COUNTRY":"Austria","POPULATION":"335000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[16.320985794067383,48.202117919921875]},"properties":{"NAME":"Vienna","COUNTRY":"Austria","POPULATION":"1875000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[11.542953491210938,48.14097595214844]},"properties":{"NAME":"Munchen","COUNTRY":"Germany","POPULATION":"1955000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[37.73705291748047,48.04014587402344]},"properties":{"NAME":"Donets'k","COUNTRY":"Ukraine","POPULATION":"2200000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[106.912353515625,47.92859649658203]},"properties":{"NAME":"Ulaanbaatar","COUNTRY":"Mongolia","POPULATION":"548400","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[19.094249725341797,47.514625549316406]},"properties":{"NAME":"Budapest","COUNTRY":"Hungary","POPULATION":"2565000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123.9649658203125,47.3440055847168]},"properties":{"NAME":"Qiqihar","COUNTRY":"China","POPULATION":"1150000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[11.349982261657715,47.26546096801758]},"properties":{"NAME":"Innsbruck","COUNTRY":"Austria","POPULATION":"185000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[39.68803787231445,47.23209762573242]},"properties":{"NAME":"Rostov-na-Donu","COUNTRY":"Russia","POPULATION":"1165000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.5615612268447876,47.21943283081055]},"properties":{"NAME":"Nantes","COUNTRY":"France","POPULATION":"464857","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[15.431100845336916,47.06492233276367]},"properties":{"NAME":"Graz","COUNTRY":"Austria","POPULATION":"325000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.445736408233643,46.94820785522461]},"properties":{"NAME":"Bern","COUNTRY":"Switzerland","POPULATION":"298800","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.24493408203125,46.80207443237305]},"properties":{"NAME":"Quebec","COUNTRY":"Canada","POPULATION":"603267","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[30.683937072753906,46.572200775146484]},"properties":{"NAME":"Odessa","COUNTRY":"Ukraine","POPULATION":"1185000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126.62263488769533,45.755218505859375]},"properties":{"NAME":"Harbin","COUNTRY":"China","POPULATION":"2670000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[4.855400562286377,45.7470817565918]},"properties":{"NAME":"Lyon","COUNTRY":"France","POPULATION":"1275000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.65353393554688,45.541015625]},"properties":{"NAME":"Montreal","COUNTRY":"Canada","POPULATION":"2921357","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[9.19046401977539,45.47338104248047]},"properties":{"NAME":"Milano","COUNTRY":"Italy","POPULATION":"3750000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[12.37071990966797,45.424774169921875]},"properties":{"NAME":"Venezia","COUNTRY":"Italy","POPULATION":"420000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.65074920654297,45.374217987060554]},"properties":{"NAME":"Ottawa","COUNTRY":"Canada","POPULATION":"819263","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.666426181793214,45.074874877929695]},"properties":{"NAME":"Torino","COUNTRY":"Italy","POPULATION":"1550000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-93.30779266357422,44.92418670654297]},"properties":{"NAME":"Minneapolis","COUNTRY":"US","POPULATION":"2012400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5994987487792969,44.84147262573242]},"properties":{"NAME":"Bordeaux","COUNTRY":"France","POPULATION":"640012","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[20.412555694580078,44.7996826171875]},"properties":{"NAME":"Beograd","COUNTRY":"Serbia","POPULATION":"1400000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[26.122976303100586,44.430484771728516]},"properties":{"NAME":"Bucuresti","COUNTRY":"Romania","POPULATION":"2250000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125.31265258789061,43.881317138671875]},"properties":{"NAME":"Changchung","COUNTRY":"China","POPULATION":"1740000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126.56706237792969,43.850215911865234]},"properties":{"NAME":"Jilin","COUNTRY":"China","POPULATION":"1170000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[87.58651733398438,43.78266525268555]},"properties":{"NAME":"Urumqi","COUNTRY":"China","POPULATION":"1040000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[11.207745552062988,43.78157424926758]},"properties":{"NAME":"Firenze","COUNTRY":"Italy","POPULATION":"640000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.41263580322266,43.720767974853516]},"properties":{"NAME":"Toronto","COUNTRY":"Canada","POPULATION":"3427168","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.4379830360412598,43.59996032714844]},"properties":{"NAME":"Toulouse","COUNTRY":"France","POPULATION":"541271","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.973783254623413,43.28215789794922]},"properties":{"NAME":"Bilbao","COUNTRY":"Spain","POPULATION":"985000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[76.91262817382812,43.25506210327149]},"properties":{"NAME":"Almaty","COUNTRY":"Kazakhstan","POPULATION":"1190000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-77.63561248779297,43.21046447753906]},"properties":{"NAME":"Rochester","COUNTRY":"US","POPULATION":"816200","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.99073791503906,43.06794738769531]},"properties":{"NAME":"Milwaukee","COUNTRY":"US","POPULATION":"1374700","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[141.34547424316406,43.05525207519531]},"properties":{"NAME":"Sapporo","COUNTRY":"Japan","POPULATION":"1900000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.84843444824219,42.89866256713867]},"properties":{"NAME":"Buffalo","COUNTRY":"US","POPULATION":"1483000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[23.331871032714844,42.7072639465332]},"properties":{"NAME":"Sofiya","COUNTRY":"Bulgaria","POPULATION":"1205000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-83.07892608642578,42.39431381225586]},"properties":{"NAME":"Detroit","COUNTRY":"US","POPULATION":"4691900","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.10258483886719,42.37529754638672]},"properties":{"NAME":"Boston","COUNTRY":"US","POPULATION":"3971700","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123.90557098388672,41.85915756225586]},"properties":{"NAME":"Fushun","COUNTRY":"China","POPULATION":"1270000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.64130401611328,41.82654571533203]},"properties":{"NAME":"Chicago","COUNTRY":"US","POPULATION":"7717100","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[123.38305664062499,41.802162170410156]},"properties":{"NAME":"Shenyang","COUNTRY":"China","POPULATION":"3840000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[44.783126831054695,41.72180938720703]},"properties":{"NAME":"T'Bilisi","COUNTRY":"Georgia","POPULATION":"1460000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.8782050609588623,41.65126419067383]},"properties":{"NAME":"Zaragoza","COUNTRY":"Spain","POPULATION":"575317","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.72750854492188,41.390716552734375]},"properties":{"NAME":"Cleveland","COUNTRY":"US","POPULATION":"2218400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[19.831804275512695,41.3316535949707]},"properties":{"NAME":"Tirane","COUNTRY":"Albania","POPULATION":"210800","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[122.97701263427733,41.1152458190918]},"properties":{"NAME":"Anshan","COUNTRY":"China","POPULATION":"1300000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[29.006069183349613,41.065956115722656]},"properties":{"NAME":"Istanbul","COUNTRY":"Turkey","POPULATION":"5750000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-111.89217376708984,40.69392013549805]},"properties":{"NAME":"Salt Lake City","COUNTRY":"US","POPULATION":"682400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.99708557128906,40.4972038269043]},"properties":{"NAME":"Pittsburgh","COUNTRY":"US","POPULATION":"2218800","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.6909694671630864,40.44221878051758]},"properties":{"NAME":"Madrid","COUNTRY":"Spain","POPULATION":"4650000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[49.81623840332031,40.32429885864258]},"properties":{"NAME":"Baku","COUNTRY":"Azerbaijan","POPULATION":"2020000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[44.53266906738281,40.20802307128906]},"properties":{"NAME":"Yerevan","COUNTRY":"Armenia","POPULATION":"1315000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.99270629882812,40.04464340209961]},"properties":{"NAME":"Columbus","COUNTRY":"US","POPULATION":"963600","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[32.853271484375,39.92932891845703]},"properties":{"NAME":"Ankara","COUNTRY":"Turkey","POPULATION":"2400000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.21822357177734,39.92755126953125]},"properties":{"NAME":"Philadelphia","COUNTRY":"US","POPULATION":"5208600","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[116.3880386352539,39.906192779541016]},"properties":{"NAME":"Beijing","COUNTRY":"China","POPULATION":"6450000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[41.29182434082031,39.90445327758789]},"properties":{"NAME":"Erzurum","COUNTRY":"Turkey","POPULATION":"246053","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[66.94760131835938,39.6575813293457]},"properties":{"NAME":"Samarkand","COUNTRY":"Uzbekistan","POPULATION":"366000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[118.18021392822266,39.61544418334961]},"properties":{"NAME":"Tangshan","COUNTRY":"China","POPULATION":"1060000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.3674009442329407,39.470916748046875]},"properties":{"NAME":"Valencia","COUNTRY":"Spain","POPULATION":"1270000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.61837768554689,39.32188415527344]},"properties":{"NAME":"Baltimore","COUNTRY":"US","POPULATION":"1960400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[9.108909606933594,39.22514343261719]},"properties":{"NAME":"Cagliari","COUNTRY":"Italy","POPULATION":"305000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.47702026367188,39.14801025390625]},"properties":{"NAME":"Cincinnati","COUNTRY":"US","POPULATION":"1480100","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[117.18522644042969,39.128414154052734]},"properties":{"NAME":"Tianjin","COUNTRY":"China","POPULATION":"4880000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125.75751495361327,39.02851486206055]},"properties":{"NAME":"Pyongyang","COUNTRY":"Korea D P Rp","POPULATION":"1600000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.6265640258789,38.994117736816406]},"properties":{"NAME":"Kansas City","COUNTRY":"US","POPULATION":"1272400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.9538345336914,38.89091110229492]},"properties":{"NAME":"Washington D.C.","COUNTRY":"US","POPULATION":"3221400","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.34197998046875,38.638885498046875]},"properties":{"NAME":"St. Louis","COUNTRY":"US","POPULATION":"2203000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.42270660400392,38.5670166015625]},"properties":{"NAME":"Sacramento","COUNTRY":"US","POPULATION":"866400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[46.29011917114258,38.08097839355469]},"properties":{"NAME":"Tabriz","COUNTRY":"Iran","POPULATION":"971482","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[114.55970764160156,38.07709503173828]},"properties":{"NAME":"Shijiazhuang","COUNTRY":"China","POPULATION":"1190000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[58.39013290405274,37.95042037963867]},"properties":{"NAME":"Ashkhabad","COUNTRY":"Turkmenistan","POPULATION":"398000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[112.55170440673828,37.8930549621582]},"properties":{"NAME":"Taiyuan","COUNTRY":"China","POPULATION":"1660000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126.9352493286133,37.54235076904297]},"properties":{"NAME":"Seoul","COUNTRY":"Korea Rep","POPULATION":"15850000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-5.970831871032715,37.37264633178711]},"properties":{"NAME":"Sevilla","COUNTRY":"Spain","POPULATION":"945000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[35.324363708496094,36.99998092651367]},"properties":{"NAME":"Adana","COUNTRY":"Turkey","POPULATION":"777554","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.26856994628906,36.87929153442383]},"properties":{"NAME":"Norfolk","COUNTRY":"US","POPULATION":"795600","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[10.165960311889648,36.81881332397461]},"properties":{"NAME":"Tunis","COUNTRY":"Tunisia","POPULATION":"1225000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[118.06204223632812,36.79149627685547]},"properties":{"NAME":"Zibo","COUNTRY":"China","POPULATION":"830000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[116.96705627441408,36.65553665161133]},"properties":{"NAME":"Jinan","COUNTRY":"China","POPULATION":"1460000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[43.13712692260742,36.335567474365234]},"properties":{"NAME":"Mosul","COUNTRY":"Iraq","POPULATION":"570926","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[59.59685134887695,36.290069580078125]},"properties":{"NAME":"Mashhad","COUNTRY":"Iran","POPULATION":"1463508","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[37.15928268432617,36.215545654296875]},"properties":{"NAME":"Aleppo","COUNTRY":"Syria","POPULATION":"1216000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[103.59959411621095,36.11343002319336]},"properties":{"NAME":"Lanzhou","COUNTRY":"China","POPULATION":"1270000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128.5913848876953,35.8635368347168]},"properties":{"NAME":"Taegu","COUNTRY":"Korea Rep","POPULATION":"2206000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[51.44765090942383,35.77447509765625]},"properties":{"NAME":"Tehran","COUNTRY":"Iran","POPULATION":"6400000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139.80918884277344,35.68305587768555]},"properties":{"NAME":"Tokyo","COUNTRY":"Japan","POPULATION":"23620000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139.7272186279297,35.50457000732422]},"properties":{"NAME":"Kawasaki","COUNTRY":"Japan","POPULATION":"1088624","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.5302963256836,35.48958969116211]},"properties":{"NAME":"Oklahoma City","COUNTRY":"US","POPULATION":"742000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[139.61965942382815,35.43738555908203]},"properties":{"NAME":"Yokohama","COUNTRY":"Japan","POPULATION":"2992926","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.83568572998047,35.205814361572266]},"properties":{"NAME":"Charlotte","COUNTRY":"US","POPULATION":"479200","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129.0546875,35.15786743164063]},"properties":{"NAME":"Pusan","COUNTRY":"Korea Rep","POPULATION":"3800000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[136.92059326171875,35.15492248535156]},"properties":{"NAME":"Nagoya","COUNTRY":"Japan","POPULATION":"4800000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.00032806396484,35.11472702026367]},"properties":{"NAME":"Memphis","COUNTRY":"US","POPULATION":"852900","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135.75482177734375,35.00912857055664]},"properties":{"NAME":"Kyoto","COUNTRY":"Japan","POPULATION":"1479218","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[113.64177703857422,34.75768280029297]},"properties":{"NAME":"Zhengzhou","COUNTRY":"China","POPULATION":"1170000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[36.71817398071289,34.7338752746582]},"properties":{"NAME":"Homs","COUNTRY":"Syria","POPULATION":"431000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[112.36123657226562,34.671348571777344]},"properties":{"NAME":"Luoyang","COUNTRY":"China","POPULATION":"740000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135.5191192626953,34.635528564453125]},"properties":{"NAME":"Osaka","COUNTRY":"Japan","POPULATION":"15040000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[69.13675689697266,34.530906677246094]},"properties":{"NAME":"Kabul","COUNTRY":"Afghanistan","POPULATION":"1179000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[132.4447784423828,34.37755584716797]},"properties":{"NAME":"Hiroshima","COUNTRY":"Japan","POPULATION":"1575000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[108.88336181640625,34.26569747924805]},"properties":{"NAME":"Xian","COUNTRY":"China","POPULATION":"2050000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.995547771453857,34.0435676574707]},"properties":{"NAME":"Fes","COUNTRY":"Morocco","POPULATION":"535000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.34922790527344,33.79570007324219]},"properties":{"NAME":"Atlanta","COUNTRY":"US","POPULATION":"1962500","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[73.060546875,33.7181510925293]},"properties":{"NAME":"Islamabad","COUNTRY":"Pakistan","POPULATION":"204364","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[73.04374694824219,33.605804443359375]},"properties":{"NAME":"Rawalpindi","COUNTRY":"Pakistan","POPULATION":"836000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[36.31345367431641,33.51930236816407]},"properties":{"NAME":"Damascus","COUNTRY":"Syria","POPULATION":"1850000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.11026000976562,33.5090217590332]},"properties":{"NAME":"Phoenix","COUNTRY":"US","POPULATION":"1482400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[44.39783477783204,33.33403778076172]},"properties":{"NAME":"Baghdad","COUNTRY":"Iraq","POPULATION":"3841268","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.66368865966797,32.763729095458984]},"properties":{"NAME":"Dallas","COUNTRY":"US","POPULATION":"2727300","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[51.6791877746582,32.651390075683594]},"properties":{"NAME":"Esfahan","COUNTRY":"Iran","POPULATION":"986753","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[118.76890563964844,32.04836654663086]},"properties":{"NAME":"Nanjing","COUNTRY":"China","POPULATION":"2290000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[35.93290710449219,31.949382781982422]},"properties":{"NAME":"Amman","COUNTRY":"Jordan","POPULATION":"1250000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[74.87155151367188,31.630889892578125]},"properties":{"NAME":"Amritsar","COUNTRY":"India","POPULATION":"594844","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[74.3406753540039,31.545053482055664]},"properties":{"NAME":"Lahore","COUNTRY":"Pakistan","POPULATION":"3025000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[73.08345794677734,31.408950805664062]},"properties":{"NAME":"Faisalabad","COUNTRY":"Pakistan","POPULATION":"1104209","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[121.47265625000001,31.24786949157715]},"properties":{"NAME":"Shanghai","COUNTRY":"China","POPULATION":"9300000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[104.07127380371094,30.670068740844727]},"properties":{"NAME":"Chengdu","COUNTRY":"China","POPULATION":"1810000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[114.27922058105469,30.572498321533207]},"properties":{"NAME":"Wuhan","COUNTRY":"China","POPULATION":"3490000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[47.7608642578125,30.503490447998047]},"properties":{"NAME":"Al Basra","COUNTRY":"Iraq","POPULATION":"616700","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[120.16507720947266,30.25262451171875]},"properties":{"NAME":"Hangzhou","COUNTRY":"China","POPULATION":"1270000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[31.25079727172852,30.07791137695313]},"properties":{"NAME":"Cairo","COUNTRY":"Egypt","POPULATION":"9300000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.09868621826172,29.956378936767578]},"properties":{"NAME":"New Orleans","COUNTRY":"US","POPULATION":"1185000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-95.40711212158203,29.771829605102536]},"properties":{"NAME":"Houston","COUNTRY":"US","POPULATION":"2755100","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[91.13208770751953,29.650703430175785]},"properties":{"NAME":"Lhasa","COUNTRY":"China","POPULATION":"84400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[106.52268981933594,29.544103622436527]},"properties":{"NAME":"Chongqing","COUNTRY":"China","POPULATION":"2450000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.52457427978516,29.42992210388184]},"properties":{"NAME":"San Antonio","COUNTRY":"US","POPULATION":"968200","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[115.88941192626953,28.67123985290527]},"properties":{"NAME":"Nanchang","COUNTRY":"China","POPULATION":"1030000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[77.21675109863281,28.5687255859375]},"properties":{"NAME":"New Delhi","COUNTRY":"India","POPULATION":"273036","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[77.22437286376953,28.526458740234375]},"properties":{"NAME":"Delhi","COUNTRY":"India","POPULATION":"7200000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[112.9684829711914,28.197641372680664]},"properties":{"NAME":"Changsha","COUNTRY":"China","POPULATION":"1190000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[85.31295013427734,27.712017059326172]},"properties":{"NAME":"Kathmandu","COUNTRY":"Nepal","POPULATION":"320000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[89.66732788085938,27.442605972290043]},"properties":{"NAME":"Thimbu","COUNTRY":"Bhutan","POPULATION":"12000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[75.80127716064453,26.905113220214844]},"properties":{"NAME":"Jaipur","COUNTRY":"India","POPULATION":"1025000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[80.91972351074219,26.849428176879886]},"properties":{"NAME":"Lucknow","COUNTRY":"India","POPULATION":"1060000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[106.70030212402344,26.571941375732422]},"properties":{"NAME":"Guiyang","COUNTRY":"China","POPULATION":"1010000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[80.31786346435548,26.45783042907715]},"properties":{"NAME":"Kanpur","COUNTRY":"India","POPULATION":"1875000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[119.3035202026367,26.071016311645508]},"properties":{"NAME":"Fuzhou","COUNTRY":"China","POPULATION":"890000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.27021789550781,25.832130432128906]},"properties":{"NAME":"Miami","COUNTRY":"US","POPULATION":"2827300","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-100.31708526611328,25.677352905273438]},"properties":{"NAME":"Monterrey","COUNTRY":"Mexico","POPULATION":"2015000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[85.13534545898439,25.6138973236084]},"properties":{"NAME":"Patna","COUNTRY":"India","POPULATION":"1025000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[68.36647033691406,25.380186080932617]},"properties":{"NAME":"Hyderabad","COUNTRY":"Pakistan","POPULATION":"800000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[82.95633697509766,25.282011032104492]},"properties":{"NAME":"Benares","COUNTRY":"India","POPULATION":"925000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[51.49723434448242,25.203641891479492]},"properties":{"NAME":"Doha","COUNTRY":"Qatar","POPULATION":"310000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[102.7021255493164,25.05103302001953]},"properties":{"NAME":"Kunming","COUNTRY":"China","POPULATION":"1280000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[121.50672912597658,25.035091400146488]},"properties":{"NAME":"Taipei","COUNTRY":"Taiwan","POPULATION":"6130000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[120.67028045654297,24.14364242553711]},"properties":{"NAME":"T`ai-chung","COUNTRY":"Taiwan","POPULATION":"715107","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[90.40714263916016,23.709918975830078]},"properties":{"NAME":"Dhaka","COUNTRY":"Bangladesh","POPULATION":"3430312","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[113.29360961914062,23.096195220947266]},"properties":{"NAME":"Guangzhou","COUNTRY":"China","POPULATION":"3050000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[72.56686401367188,23.039791107177734]},"properties":{"NAME":"Ahmadabad","COUNTRY":"India","POPULATION":"2400000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[89.55824279785156,22.842647552490234]},"properties":{"NAME":"Khulna","COUNTRY":"Bangladesh","POPULATION":"648359","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[88.33422088623047,22.543537139892578]},"properties":{"NAME":"Calcutta","COUNTRY":"India","POPULATION":"11100000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-97.8426284790039,22.243234634399414]},"properties":{"NAME":"Tampico","COUNTRY":"Mexico","POPULATION":"435000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[96.0841522216797,21.97594451904297]},"properties":{"NAME":"Mandalay","COUNTRY":"Burma","POPULATION":"532895","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[39.81483840942383,21.42738151550293]},"properties":{"NAME":"Mecca","COUNTRY":"Saudi Arabia","POPULATION":"550000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[79.089111328125,21.155757904052734]},"properties":{"NAME":"Nagpur","COUNTRY":"India","POPULATION":"1302066","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[105.81990814208984,21.03194808959961]},"properties":{"NAME":"Hanoi","COUNTRY":"Vietnam","POPULATION":"1500000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[106.67979431152344,20.861358642578125]},"properties":{"NAME":"Haiphong","COUNTRY":"Vietnam","POPULATION":"385210","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.55286407470703,20.821868896484375]},"properties":{"NAME":"Merida","COUNTRY":"Mexico","POPULATION":"400142","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-103.34379577636719,20.67359161376953]},"properties":{"NAME":"Guadalajara","COUNTRY":"Mexico","POPULATION":"2325000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[37.219688415527344,19.615713119506836]},"properties":{"NAME":"Bur Sudan","COUNTRY":"Sudan","POPULATION":"206727","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.12757110595703,19.427045822143555]},"properties":{"NAME":"Mexico City","COUNTRY":"Mexico","POPULATION":"14100000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-98.19294738769531,19.04863166809082]},"properties":{"NAME":"Puebla de Zaragoza","COUNTRY":"Mexico","POPULATION":"1055000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[73.8522720336914,18.535747528076172]},"properties":{"NAME":"Pune","COUNTRY":"India","POPULATION":"1775000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.34310913085938,18.5266170501709]},"properties":{"NAME":"Port-au-Prince","COUNTRY":"Haiti","POPULATION":"880000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-66.08175659179688,18.400615692138672]},"properties":{"NAME":"San Juan","COUNTRY":"Puerto Rico","POPULATION":"1775260","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.79730224609375,18.01571273803711]},"properties":{"NAME":"Kingston","COUNTRY":"Jamaica","POPULATION":"770000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[78.48503112792969,17.394546508789062]},"properties":{"NAME":"Hyderabad","COUNTRY":"India","POPULATION":"2750000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[96.12489318847656,16.872222900390625]},"properties":{"NAME":"Rangoon","COUNTRY":"Burma","POPULATION":"2800000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[44.209503173828125,15.361444473266603]},"properties":{"NAME":"Sanaa","COUNTRY":"Yemen","POPULATION":"427150","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-90.52490234375,14.61800765991211]},"properties":{"NAME":"Guatemala","COUNTRY":"Guatemala","POPULATION":"1400000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-87.20309448242188,14.099050521850586]},"properties":{"NAME":"Tegucigalpa","COUNTRY":"Honduras","POPULATION":"551606","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[100.55266571044922,13.74557113647461]},"properties":{"NAME":"Bangkok","COUNTRY":"Thailand","POPULATION":"6450000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-89.20023345947266,13.701412200927734]},"properties":{"NAME":"San Salvador","COUNTRY":"El Salvador","POPULATION":"920000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.0834498405456543,13.604543685913086]},"properties":{"NAME":"Niamey","COUNTRY":"Niger","POPULATION":"398265","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[80.24782562255861,13.061503410339355]},"properties":{"NAME":"Madras","COUNTRY":"India","POPULATION":"4475000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[77.58773040771484,12.974750518798828]},"properties":{"NAME":"Bangalore","COUNTRY":"India","POPULATION":"2950000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.986481666564941,12.652950286865234]},"properties":{"NAME":"Bamako","COUNTRY":"Mali","POPULATION":"646163","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-86.27303314208984,12.151473045349121]},"properties":{"NAME":"Managua","COUNTRY":"Nicaragua","POPULATION":"682000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[104.91319274902344,11.564736366271973]},"properties":{"NAME":"Phnom Penh","COUNTRY":"Cambodia","POPULATION":"700000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[106.6624526977539,10.75918197631836]},"properties":{"NAME":"Ho Chi Minh City","COUNTRY":"Vietnam","POPULATION":"3100000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.63714599609375,10.645043373107912]},"properties":{"NAME":"Maracaibo","COUNTRY":"Venezuela","POPULATION":"890643","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-66.89828491210938,10.496048927307129]},"properties":{"NAME":"Caracas","COUNTRY":"Venezuela","POPULATION":"3600000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69.33919525146484,10.065665245056152]},"properties":{"NAME":"Barquisimeto","COUNTRY":"Venezuela","POPULATION":"497635","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-84.07861328125,9.930476188659668]},"properties":{"NAME":"San Jose","COUNTRY":"Costa Rica","POPULATION":"670000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[78.1217269897461,9.913986206054688]},"properties":{"NAME":"Madurai","COUNTRY":"India","POPULATION":"960000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[3.8952784538269043,7.378840446472169]},"properties":{"NAME":"Ibadan","COUNTRY":"Nigeria","POPULATION":"1144000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[125.61367797851562,7.080080032348633]},"properties":{"NAME":"Davao","COUNTRY":"Philippines","POPULATION":"408775","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.492080211639405,6.450538635253906]},"properties":{"NAME":"Enugu","COUNTRY":"Nigeria","POPULATION":"252500","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-75.59203338623047,6.241146564483643]},"properties":{"NAME":"Medellin","COUNTRY":"Colombia","POPULATION":"2095000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2009236365556717,5.558562755584717]},"properties":{"NAME":"Accra","COUNTRY":"Ghana","POPULATION":"1250000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-4.021886825561523,5.324857234954834]},"properties":{"NAME":"Abidjan","COUNTRY":"Ivory Coast","POPULATION":"1950000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.08051300048828,4.63021993637085]},"properties":{"NAME":"Bogota","COUNTRY":"Colombia","POPULATION":"4260000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[18.562341690063477,4.365856170654297]},"properties":{"NAME":"Bangui","COUNTRY":"Cent Af Rep","POPULATION":"473817","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[11.513641357421875,3.8651230335235596]},"properties":{"NAME":"Yaounde","COUNTRY":"Cameroon","POPULATION":"653670","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[98.67559814453125,3.5852420330047607]},"properties":{"NAME":"Medan","COUNTRY":"Indonesia","POPULATION":"1373747","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.5224380493164,3.456855297088623]},"properties":{"NAME":"Cali","COUNTRY":"Colombia","POPULATION":"1400000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[101.70767211914062,3.150210380554199]},"properties":{"NAME":"Kuala Lumpur","COUNTRY":"Malaysia","POPULATION":"1475000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[45.34414291381836,2.04117751121521]},"properties":{"NAME":"Muqdisho","COUNTRY":"Somalia","POPULATION":"600000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[25.196147918701172,0.5192849040031433]},"properties":{"NAME":"Kisangani","COUNTRY":"Zaire","POPULATION":"282650","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.52428436279297,-0.22949813306331635]},"properties":{"NAME":"Quito","COUNTRY":"Ecuador","POPULATION":"1050000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.19149017333984,-3.752895355224609]},"properties":{"NAME":"Iquitos","COUNTRY":"Peru","POPULATION":"178738","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-38.58890151977539,-3.7833218574523926]},"properties":{"NAME":"Fortaleza","COUNTRY":"Brazil","POPULATION":"1825000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[15.285148620605469,-4.285186767578125]},"properties":{"NAME":"Brazzaville","COUNTRY":"Congo","POPULATION":"585812","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[22.40277862548828,-5.892210960388184]},"properties":{"NAME":"Kananga","COUNTRY":"Zaire","POPULATION":"290898","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[39.25334930419922,-6.81735897064209]},"properties":{"NAME":"Dar es Salaam","COUNTRY":"Tanzania","POPULATION":"1300000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[107.60690307617188,-6.912430286407471]},"properties":{"NAME":"Bandung","COUNTRY":"Indonesia","POPULATION":"1800000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-34.91463851928711,-8.085167884826662]},"properties":{"NAME":"Recife","COUNTRY":"Brazil","POPULATION":"2625000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.464879989624023,-12.717735290527344]},"properties":{"NAME":"Benguela","COUNTRY":"Angola","POPULATION":"155000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-47.89774703979492,-15.792109489440916]},"properties":{"NAME":"Brasilia","COUNTRY":"Brazil","POPULATION":"1567709","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.52274322509766,-16.397539138793945]},"properties":{"NAME":"Arequipa","COUNTRY":"Peru","POPULATION":"446942","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-68.14624786376953,-16.49900627136231]},"properties":{"NAME":"La Paz","COUNTRY":"Bolivia","POPULATION":"992592","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-49.25481033325195,-16.726699829101562]},"properties":{"NAME":"Goiania","COUNTRY":"Brazil","POPULATION":"990000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-63.197418212890625,-17.78879165649414]},"properties":{"NAME":"Santa Cruz de La Sierra","COUNTRY":"Bolivia","POPULATION":"441717","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-65.2558822631836,-19.04213523864746]},"properties":{"NAME":"Sucre","COUNTRY":"Bolivia","POPULATION":"86609","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-43.9090690612793,-19.851720809936523]},"properties":{"NAME":"Belo Horizonte","COUNTRY":"Brazil","POPULATION":"2950000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-43.455177307128906,-22.721572875976562]},"properties":{"NAME":"Rio de Janeiro","COUNTRY":"Brazil","POPULATION":"10150000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-46.62289810180664,-23.5813045501709]},"properties":{"NAME":"Sao Paulo","COUNTRY":"Brazil","POPULATION":"15175000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-46.30949401855469,-23.954700469970703]},"properties":{"NAME":"Santos","COUNTRY":"Brazil","POPULATION":"1065000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[25.794801712036133,-24.661441802978516]},"properties":{"NAME":"Gaborone","COUNTRY":"Botswana","POPULATION":"95163","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-49.284507751464844,-25.430479049682617]},"properties":{"NAME":"Curitiba","COUNTRY":"Brazil","POPULATION":"1700000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[28.218372344970703,-25.731346130371094]},"properties":{"NAME":"Pretoria","COUNTRY":"South Africa","POPULATION":"960000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[32.573692321777344,-25.962154388427734]},"properties":{"NAME":"Maputo","COUNTRY":"Mozambique","POPULATION":"1069727","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[28.004308700561523,-26.178956985473633]},"properties":{"NAME":"Johannesburg","COUNTRY":"South Africa","POPULATION":"3650000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[153.0264892578125,-27.45391273498535]},"properties":{"NAME":"Brisbane","COUNTRY":"Australia","POPULATION":"1149401","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[30.942188262939453,-29.836372375488285]},"properties":{"NAME":"Durban","COUNTRY":"South Africa","POPULATION":"1550000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-51.20798873901367,-30.039533615112305]},"properties":{"NAME":"Porto Alegre","COUNTRY":"Brazil","POPULATION":"2600000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-64.17985534667969,-31.316278457641605]},"properties":{"NAME":"Cordoba","COUNTRY":"Argentina","POPULATION":"1070000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-60.69784164428712,-31.61689758300781]},"properties":{"NAME":"Santa Fe","COUNTRY":"Argentina","POPULATION":"292165","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-68.8297348022461,-32.897438049316406]},"properties":{"NAME":"Mendoza","COUNTRY":"Argentina","POPULATION":"650000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-60.66394042968751,-32.93773651123047]},"properties":{"NAME":"Rosario","COUNTRY":"Argentina","POPULATION":"1045000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.64751434326172,-33.47502517700195]},"properties":{"NAME":"Santiago","COUNTRY":"Chile","POPULATION":"4100000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[25.484298706054688,-33.88157653808594]},"properties":{"NAME":"Port Elizabeth","COUNTRY":"South Africa","POPULATION":"690000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151.0281982421875,-33.889774322509766]},"properties":{"NAME":"Sydney","COUNTRY":"Australia","POPULATION":"3364858","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-58.40959167480469,-34.665401458740234]},"properties":{"NAME":"Buenos Aires","COUNTRY":"Argentina","POPULATION":"10750000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[149.0416259765625,-35.34992599487305]},"properties":{"NAME":"Canberra","COUNTRY":"Australia","POPULATION":"271362","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[174.80105590820312,-36.893253326416016]},"properties":{"NAME":"Auckland","COUNTRY":"New Zealand","POPULATION":"850000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145.07510375976562,-37.85295867919922]},"properties":{"NAME":"Melbourne","COUNTRY":"Australia","POPULATION":"2832893","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-62.27406692504882,-38.72527313232422]},"properties":{"NAME":"Bahia Blanca","COUNTRY":"Argentina","POPULATION":"223818","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[172.68365478515625,-43.54891586303711]},"properties":{"NAME":"Christchurch","COUNTRY":"New Zealand","POPULATION":"320000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[24.976699829101566,60.1964225769043]},"properties":{"NAME":"Helsinki","COUNTRY":"Finland","POPULATION":"900000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[10.759258270263672,34.74523162841797]},"properties":{"NAME":"Sfax","COUNTRY":"Tunisia","POPULATION":"310000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135.1818389892578,34.663841247558594]},"properties":{"NAME":"Kobe","COUNTRY":"Japan","POPULATION":"1410834","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[35.2252197265625,31.773746490478516]},"properties":{"NAME":"Jerusalem","COUNTRY":"Israel","POPULATION":"490000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-68.00311279296875,10.178220748901367]},"properties":{"NAME":"Valencia","COUNTRY":"Venezuela","POPULATION":"616224","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.90939331054688,-2.2038161754608154]},"properties":{"NAME":"Guayaquil","COUNTRY":"Ecuador","POPULATION":"1255000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.30881500244142,37.72751235961914]},"properties":{"NAME":"San Francisco","COUNTRY":"US","POPULATION":"4053800","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.298783302307129,55.87525177001953]},"properties":{"NAME":"Edinburgh","COUNTRY":"UK","POPULATION":"630000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.93283748626709,45.70028305053711]},"properties":{"NAME":"Trieste","COUNTRY":"Italy","POPULATION":"239031","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130.3171844482422,33.309906005859375]},"properties":{"NAME":"Fukuoka","COUNTRY":"Japan","POPULATION":"1750000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130.79745483398438,33.68186569213867]},"properties":{"NAME":"Kita Kyushu","COUNTRY":"Japan","POPULATION":"1525000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[15.240823745727539,12.10413932800293]},"properties":{"NAME":"N'Djamena","COUNTRY":"Chad","POPULATION":"303000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.211822509765625,32.751617431640625]},"properties":{"NAME":"Tripoli","COUNTRY":"Libya","POPULATION":"990697","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[27.205768585205078,38.43891906738281]},"properties":{"NAME":"Izmir","COUNTRY":"Turkey","POPULATION":"1550000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[15.469293594360353,-4.388674736022949]},"properties":{"NAME":"Kinshasa","COUNTRY":"Zaire","POPULATION":"3000000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[138.8706817626953,-34.91853713989258]},"properties":{"NAME":"Adelaide","COUNTRY":"Australia","POPULATION":"977721","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[106.76246643066406,-6.2939043045043945]},"properties":{"NAME":"Jakarta","COUNTRY":"Indonesia","POPULATION":"8600000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[110.44425964355469,-7.027844429016114]},"properties":{"NAME":"Semarang","COUNTRY":"Indonesia","POPULATION":"1024940","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.83563232421875,-12.043540000915527]},"properties":{"NAME":"Callao","COUNTRY":"Peru","POPULATION":"264133","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-48.316276550292976,-1.6053290367126465]},"properties":{"NAME":"Belem","COUNTRY":"Brazil","POPULATION":"1200000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[120.43412780761717,36.148353576660156]},"properties":{"NAME":"Qingdao","COUNTRY":"China","POPULATION":"1270000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[102.68023681640625,18.001731872558594]},"properties":{"NAME":"Vientiane","COUNTRY":"Laos","POPULATION":"377409","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.090898513793945,47.801170349121094]},"properties":{"NAME":"Salzburg","COUNTRY":"Austria","POPULATION":"220000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[15.964385986328127,45.80707550048828]},"properties":{"NAME":"Zagreb","COUNTRY":"Croatia","POPULATION":"697925","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[29.533586502075195,-3.2690837383270264]},"properties":{"NAME":"Bujumbura","COUNTRY":"Burundi","POPULATION":"273000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[33.385162353515625,35.165069580078125]},"properties":{"NAME":"Nicosia","COUNTRY":"Cyprus","POPULATION":"185000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[29.991485595703125,-2.1179351806640625]},"properties":{"NAME":"Kigali","COUNTRY":"Rwanda","POPULATION":"181600","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[14.639612197875978,46.068302154541016]},"properties":{"NAME":"Ljubljana","COUNTRY":"Slovenia","POPULATION":"233200","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[27.890388488769535,-29.25671005249023]},"properties":{"NAME":"Maseru","COUNTRY":"Lesotho","POPULATION":"109382","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[6.273255825042725,49.74040603637695]},"properties":{"NAME":"Luxembourg","COUNTRY":"Luxembourg","POPULATION":"133000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[4.300624370574951,51.903621673583984]},"properties":{"NAME":"The Hague","COUNTRY":"Netherlands","POPULATION":"770000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[17.26980590820313,48.27450942993164]},"properties":{"NAME":"Bratislava","COUNTRY":"Slovakia","POPULATION":"435499","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.62999725341797,52.11000061035156]},"properties":{"NAME":"Saskatoon","COUNTRY":"Canada","POPULATION":"200665","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-104.6500015258789,50.40999984741211]},"properties":{"NAME":"Regina","COUNTRY":"Canada","POPULATION":"186521","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.44999694824219,31.780000686645504]},"properties":{"NAME":"El Paso","COUNTRY":"US","POPULATION":"1037700","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-81.66000366210938,30.32999992370605]},"properties":{"NAME":"Jacksonville","COUNTRY":"US","POPULATION":"635900","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-80.7300033569336,51.33000183105469]},"properties":{"NAME":"Moosonee","COUNTRY":"Canada","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-67.01000213623047,54.86000061035156]},"properties":{"NAME":"Schefferville","COUNTRY":"Canada","POPULATION":"1997","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-60.549999237060554,53.310001373291016]},"properties":{"NAME":"Goose Bay","COUNTRY":"Canada","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-63.9000015258789,-8.75]},"properties":{"NAME":"Porto Velho","COUNTRY":"Brazil","POPULATION":"202011","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.86000061035156,-13.600000381469727]},"properties":{"NAME":"Cuzco","COUNTRY":"Peru","POPULATION":"184550","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-56.04999923706055,-15.550000190734865]},"properties":{"NAME":"Cuiaba","COUNTRY":"Brazil","POPULATION":"279651","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-58.900001525878906,-27.399999618530273]},"properties":{"NAME":"Resistencia","COUNTRY":"Argentina","POPULATION":"220104","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.009999990463257,16.760000228881836]},"properties":{"NAME":"Tombouctoo","COUNTRY":"Mali","POPULATION":"31925","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.260000228881836,11.88000011444092]},"properties":{"NAME":"Maiduguri","COUNTRY":"Niger","POPULATION":"255100","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.449999809265137,-5.809999942779541]},"properties":{"NAME":"Matadi","COUNTRY":"Zaire","POPULATION":"144742","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[15.779999732971193,-12.729999542236328]},"properties":{"NAME":"Huambo","COUNTRY":"Angola","POPULATION":"203000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[24.829999923706055,-28.659999847412113]},"properties":{"NAME":"Kimberley","COUNTRY":"South Africa","POPULATION":"145000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[27.899999618530273,-33.029998779296875]},"properties":{"NAME":"East London","COUNTRY":"South Africa","POPULATION":"320000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[19,-7.329999923706056]},"properties":{"NAME":"Kahemba","COUNTRY":"Zaire","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[35.75,-6.179999828338623]},"properties":{"NAME":"Dodoma","COUNTRY":"Tanzania","POPULATION":"54000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[17.299999237060547,68.3499984741211]},"properties":{"NAME":"Narvik","COUNTRY":"Norway","POPULATION":"19080","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[62.20999908447265,34.459999084472656]},"properties":{"NAME":"Herat","COUNTRY":"Afghanistan","POPULATION":"160000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[37.75,55.880001068115234]},"properties":{"NAME":"Druzba","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[76,39.47999954223633]},"properties":{"NAME":"Kashi","COUNTRY":"China","POPULATION":"146300","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[121.52999877929688,24.979999542236328]},"properties":{"NAME":"Chingmei","COUNTRY":"Taiwan","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[107.69999694824219,16.459999084472656]},"properties":{"NAME":"Hue","COUNTRY":"Vietnam","POPULATION":"165710","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[110.43000030517578,1.5000000000000002]},"properties":{"NAME":"Kuching","COUNTRY":"Malaysia","POPULATION":"72555","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[116.86000061035156,-1.2100000381469727]},"properties":{"NAME":"Balikpapan","COUNTRY":"Indonesia","POPULATION":"208040","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[110.75,50.33000183105469]},"properties":{"NAME":"Chatanga","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[113.58000183105469,52.04999923706055]},"properties":{"NAME":"Chita","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133.41000366210938,67.58000183105469]},"properties":{"NAME":"Verkhoyvensk","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129.8300018310547,62.0099983215332]},"properties":{"NAME":"Yakutsk","COUNTRY":"Russia","POPULATION":"187000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[143.25,59.330001831054695]},"properties":{"NAME":"Okhotsk","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[45.529998779296875,50.08000183105469]},"properties":{"NAME":"Nikolayevsk","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[142.75,46.959999084472656]},"properties":{"NAME":"Yuzhno-Sakhalinsk","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133.92999267578125,-23.6299991607666]},"properties":{"NAME":"Alice Springs","COUNTRY":"Australia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[145.7100067138672,-16.850000381469727]},"properties":{"NAME":"Cairns","COUNTRY":"Australia","POPULATION":"39096","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[146.8300018310547,-19.299999237060547]},"properties":{"NAME":"Townsville","COUNTRY":"Australia","POPULATION":"106416","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[150.47999572753906,-23.43000030517578]},"properties":{"NAME":"Rockhampton","COUNTRY":"Australia","POPULATION":"59056","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[151.91000366210938,-33]},"properties":{"NAME":"Newcastle","COUNTRY":"Australia","POPULATION":"405089","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147.5,-43]},"properties":{"NAME":"Hobart","COUNTRY":"Australia","POPULATION":"175082","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[170.5,-45.86000061035156]},"properties":{"NAME":"Dunedin","COUNTRY":"New Zealand","POPULATION":"109000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-123.56910705566406,48.65456771850586]},"properties":{"NAME":"Victoria","COUNTRY":"Canada","POPULATION":"255547","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.632502794265747,6.601096153259277]},"properties":{"NAME":"Porto Novo","COUNTRY":"Benin","POPULATION":"164000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[9.706374168395996,4.136650085449219]},"properties":{"NAME":"Douala","COUNTRY":"Cameroon","POPULATION":"1029731","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[119.72279357910156,-5.190430164337158]},"properties":{"NAME":"Vjuag Padang","COUNTRY":"Indonesia","POPULATION":"708465","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129.31292724609375,-3.3865532875061035]},"properties":{"NAME":"Ambon","COUNTRY":"Indonesia","POPULATION":"111914","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[126.76744079589845,37.58945083618164]},"properties":{"NAME":"Inch`on","COUNTRY":"Korea Rep","POPULATION":"1604000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[121.59819793701173,39.03171539306641]},"properties":{"NAME":"Dalian","COUNTRY":"China","POPULATION":"1680000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.64167785644531,45.44213104248047]},"properties":{"NAME":"Portland","COUNTRY":"US","POPULATION":"1227200","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-60.014617919921875,-3.122304916381836]},"properties":{"NAME":"Manaus","COUNTRY":"Brazil","POPULATION":"809914","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-54.61000061035156,-2.4600000381469727]},"properties":{"NAME":"Santarem","COUNTRY":"Brazil","POPULATION":"226618","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[168.4499969482422,-46.40999984741211]},"properties":{"NAME":"Invercargill","COUNTRY":"New Zealand","POPULATION":"52807","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[40.18000030517578,-10.260000228881836]},"properties":{"NAME":"Mtwara","COUNTRY":"Tanzania","POPULATION":"48510","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[49.40999984741211,-18.229999542236328]},"properties":{"NAME":"Toamasina","COUNTRY":"Madagascar","POPULATION":"100000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[26.260000228881836,-29.149999618530277]},"properties":{"NAME":"Bloemfontein","COUNTRY":"South Africa","POPULATION":"235000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[28.709999084472656,-20.200000762939453]},"properties":{"NAME":"Bulawayo","COUNTRY":"Zimbabwe","POPULATION":"413814","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[25.8799991607666,-17.829999923706055]},"properties":{"NAME":"Livingstone","COUNTRY":"Zambia","POPULATION":"61296","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[39.70000076293945,24.43000030517578]},"properties":{"NAME":"Al Madinah","COUNTRY":"Saudi Arabia","POPULATION":"290000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[31.28000068664551,21.760000228881836]},"properties":{"NAME":"Wadi Halfa","COUNTRY":"Sudan","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[32.95000076293945,24.079999923706055]},"properties":{"NAME":"Aswan","COUNTRY":"Egypt","POPULATION":"191461","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.90999984741211,25.90999984741211]},"properties":{"NAME":"Murzuq","COUNTRY":"Libya","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-8.15999984741211,27.700000762939453]},"properties":{"NAME":"Tindouf","COUNTRY":"Algeria","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[7.980000019073487,16.959999084472656]},"properties":{"NAME":"Agadez","COUNTRY":"Niger","POPULATION":"50164","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[30.159999847412106,13.180000305175781]},"properties":{"NAME":"El Obeid","COUNTRY":"Sudan","POPULATION":"140000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[18.459999084472656,0.05000000074505806]},"properties":{"NAME":"Mbandaka","COUNTRY":"Zaire","POPULATION":"125263","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-135.00999450683594,60.65000152587891]},"properties":{"NAME":"Whitehorse","COUNTRY":"Canada","POPULATION":"15199","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.80000305175781,-53.150001525878906]},"properties":{"NAME":"Punte Arenas","COUNTRY":"Chile","POPULATION":"95332","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-73,-41.47999954223633]},"properties":{"NAME":"Puerto Montt","COUNTRY":"Chile","POPULATION":"84410","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69.41000366210938,-51.709999084472656]},"properties":{"NAME":"Rio Gallegos","COUNTRY":"Argentina","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-67.5,-45.83000183105469]},"properties":{"NAME":"Comodoro Rivadavia","COUNTRY":"Argentina","POPULATION":"96817","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[32.560001373291016,29.95999908447266]},"properties":{"NAME":"Suez","COUNTRY":"Egypt","POPULATION":"326820","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[29.97780990600586,31.07460403442383]},"properties":{"NAME":"Alexandria","COUNTRY":"Egypt","POPULATION":"3350000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[40.70000076293945,-15.050000190734863]},"properties":{"NAME":"Mocambique","COUNTRY":"Mozambique","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[73.17234802246094,19.045347213745117]},"properties":{"NAME":"Bombay","COUNTRY":"India","POPULATION":"9950000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.9936931133270264,36.596492767333984]},"properties":{"NAME":"Algiers","COUNTRY":"Algeria","POPULATION":"2547983","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[36.20831298828125,49.98967361450195]},"properties":{"NAME":"Kharkov","COUNTRY":"Ukraine","POPULATION":"1940000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[35.13789367675781,48.422889709472656]},"properties":{"NAME":"Dnepropetrovsk","COUNTRY":"Ukraine","POPULATION":"1600000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[24.752056121826172,59.27757263183594]},"properties":{"NAME":"Tallinn","COUNTRY":"Estonia","POPULATION":"482000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[97,47.810001373291016]},"properties":{"NAME":"Uliastay","COUNTRY":"Mongolia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69.91049194335938,18.49972915649414]},"properties":{"NAME":"Santo Domingo","COUNTRY":"Dominican Rp","POPULATION":"1313172","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[114.96700286865233,4.933000087738038]},"properties":{"NAME":"Bandar Seri Begawan","COUNTRY":"Brunei","POPULATION":"64000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-16.49461555480957,13.445272445678711]},"properties":{"NAME":"Banjul","COUNTRY":"Gambia","POPULATION":"95000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-61.49006271362305,10.639734268188477]},"properties":{"NAME":"Port of Spain","COUNTRY":"Trinidad","POPULATION":"370000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-99.9314956665039,16.97438621520996]},"properties":{"NAME":"Acapulco","COUNTRY":"Mexico","POPULATION":"301902","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[177.13018798828125,64.40016174316406]},"properties":{"NAME":"Anadyr","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-37.311866760253906,65.66999816894531]},"properties":{"NAME":"Angmagssalik","COUNTRY":"Greenland","POPULATION":"2618","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-70.22544860839844,-23.832536697387695]},"properties":{"NAME":"Antofagasta","COUNTRY":"Chile","POPULATION":"185486","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[140.6699981689453,40.75]},"properties":{"NAME":"Aomori","COUNTRY":"Japan","POPULATION":"294045","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[20.30867576599121,32.043052673339844]},"properties":{"NAME":"Banghazi","COUNTRY":"Libya","POPULATION":"435886","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[133.22000122070312,-15.75]},"properties":{"NAME":"Birdum","COUNTRY":"Australia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-60.5,2.75]},"properties":{"NAME":"Boa Vista","COUNTRY":"Brazil","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.83000183105469,-6.619999885559083]},"properties":{"NAME":"Chiclayo","COUNTRY":"Peru","POPULATION":"279527","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-78.4531478881836,-8.930100440979004]},"properties":{"NAME":"Chimbote","COUNTRY":"Peru","POPULATION":"223341","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-94.18000030517578,58.71076583862305]},"properties":{"NAME":"Churchill","COUNTRY":"Canada","POPULATION":"1304","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[76.52178192138672,9.987988471984863]},"properties":{"NAME":"Cochin","COUNTRY":"India","POPULATION":"685836","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.85163879394531,-36.883296966552734]},"properties":{"NAME":"Concepcion","COUNTRY":"Chile","POPULATION":"675000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.0199966430664,-31]},"properties":{"NAME":"Coquimbo","COUNTRY":"Chile","POPULATION":"62186","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[130.9945526123047,-12.701499938964844]},"properties":{"NAME":"Darwin","COUNTRY":"Australia","POPULATION":"72937","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[43.099998474121094,11.5]},"properties":{"NAME":"Djibouti","COUNTRY":"Djibouti","POPULATION":"120000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[115.9345703125,-32.044166564941406]},"properties":{"NAME":"Fremantle","COUNTRY":"Australia","POPULATION":"22484","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[100.54714202880861,5.349999904632568]},"properties":{"NAME":"George Town","COUNTRY":"Malaysia","POPULATION":"495000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-53.630001068115234,69.38314056396484]},"properties":{"NAME":"Godhavn","COUNTRY":"Greenland","POPULATION":"1012","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-51.580001831054695,64.27118682861328]},"properties":{"NAME":"Godthab","COUNTRY":"Greenland","POPULATION":"12426","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-63.58000183105468,44.630001068115234]},"properties":{"NAME":"Halifax","COUNTRY":"Canada","POPULATION":"295990","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[23.906341552734375,70.39132690429688]},"properties":{"NAME":"Hammerfest","COUNTRY":"Norway","POPULATION":"7208","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[86.55000305175781,67.3499984741211]},"properties":{"NAME":"Igarka","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.5299999713897705,27.200000762939453]},"properties":{"NAME":"In Salah","COUNTRY":"Algeria","POPULATION":"18800","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-133.6699981689453,68.2699966430664]},"properties":{"NAME":"Inuvik","COUNTRY":"Canada","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[29.999999999999996,-4.949999809265137]},"properties":{"NAME":"Kigoma","COUNTRY":"Tanzania","POPULATION":"50044","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[47,61.150001525878906]},"properties":{"NAME":"Kotlas","COUNTRY":"Russia","POPULATION":"69000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-13.180000305175781,27]},"properties":{"NAME":"Laayoune","COUNTRY":"W Sahara","POPULATION":"93875","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[124.88423919677734,1.420086145401001]},"properties":{"NAME":"Manado","COUNTRY":"Indonesia","POPULATION":"217091","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[75.16088104248047,12.949999809265137]},"properties":{"NAME":"Mangalore","COUNTRY":"India","POPULATION":"306078","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-8,31.149999618530273]},"properties":{"NAME":"Marrakech","COUNTRY":"Morocco","POPULATION":"535000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[31.191297531127933,-26.303380966186523]},"properties":{"NAME":"Mbabne","COUNTRY":"Swaziland","POPULATION":"38290","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[129.8574676513672,32.882747650146484]},"properties":{"NAME":"Nagasaki","COUNTRY":"Japan","POPULATION":"449382","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-35.25,-5.78000020980835]},"properties":{"NAME":"Natal","COUNTRY":"Brazil","POPULATION":"510106","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[173.27000427246094,-41.29999923706055]},"properties":{"NAME":"Nelson","COUNTRY":"New Zealand","POPULATION":"33304","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-165.27000427246094,64.5862808227539]},"properties":{"NAME":"Nome","COUNTRY":"US","POPULATION":"3500","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[88.0999984741211,69.33000183105469]},"properties":{"NAME":"Noril`sk","COUNTRY":"Russia","POPULATION":"174000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-16.825647354125977,20.899999618530273]},"properties":{"NAME":"Nouadnibou","COUNTRY":"Mauritania","POPULATION":"21961","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[87.16999816894531,53.70000076293945]},"properties":{"NAME":"Novokuznetsk","COUNTRY":"Russia","POPULATION":"600000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.87999725341797,46.91999816894531]},"properties":{"NAME":"Olympia","COUNTRY":"US","POPULATION":"97400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[100.47505950927734,-0.9175788164138794]},"properties":{"NAME":"Padang","COUNTRY":"Indonesia","POPULATION":"296675","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[104.83000183105469,-3.0000000000000004]},"properties":{"NAME":"Palembang","COUNTRY":"Indonesia","POPULATION":"786607","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[21.883169174194336,38.141239166259766]},"properties":{"NAME":"Patrai","COUNTRY":"Greece","POPULATION":"154596","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[158.72000122070312,53.20000076293945]},"properties":{"NAME":"Petropavloski-Kamchatskiy","COUNTRY":"Russia","POPULATION":"269000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[19.399999618530273,42.5]},"properties":{"NAME":"Podgorica","COUNTRY":"Montenegro","POPULATION":"82500","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[12.058093070983887,-4.638708114624024]},"properties":{"NAME":"Pointe Noire","COUNTRY":"Congo","POPULATION":"294203","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[9.15334415435791,-0.8199999928474427]},"properties":{"NAME":"Port Gentil","COUNTRY":"Gabon","POPULATION":"124400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-130.04808044433594,54.42028045654297]},"properties":{"NAME":"Prince Rupert","COUNTRY":"Canada","POPULATION":"16197","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-65.64994812011719,45.338134765625]},"properties":{"NAME":"Saint John","COUNTRY":"Canada","POPULATION":"121265","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-16.29783821105957,15.951210021972656]},"properties":{"NAME":"Saint Louis","COUNTRY":"Senegal","POPULATION":"91485","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[66.58000183105469,66.56999969482422]},"properties":{"NAME":"Salekhard","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[36.369998931884766,41.31999969482422]},"properties":{"NAME":"Samsun","COUNTRY":"Turkey","POPULATION":"240674","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-44.430057525634766,-2.5]},"properties":{"NAME":"Sao Luis","COUNTRY":"Brazil","POPULATION":"600000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[18.43000030517578,43.869998931884766]},"properties":{"NAME":"Sarajevo","COUNTRY":"Bosnia/Herz","POPULATION":"341200","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-22.99632263183594,70.52857208251953]},"properties":{"NAME":"Scoresbyund","COUNTRY":"Greenland","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-66.40254211425781,50.28254699707031]},"properties":{"NAME":"Sept-Iles","COUNTRY":"Canada","POPULATION":"29262","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.44999694824222,60.119998931884766]},"properties":{"NAME":"Seward","COUNTRY":"US","POPULATION":"2699","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[21.530000686645508,42]},"properties":{"NAME":"Skopje","COUNTRY":"Macedonia","POPULATION":"444900","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[5.550000190734863,22.829999923706055]},"properties":{"NAME":"Tamanrasset","COUNTRY":"Algeria","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69,77.66999816894531]},"properties":{"NAME":"Thule","COUNTRY":"Greenland","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[128.75,71.69999694824219]},"properties":{"NAME":"Tiksi","COUNTRY":"Russia","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[44.01909255981445,-23.2901554107666]},"properties":{"NAME":"Toliara","COUNTRY":"Madagascar","POPULATION":"55000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79,-7.929999828338624]},"properties":{"NAME":"Trujillo","COUNTRY":"Peru","POPULATION":"354301","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[83.33000183105469,17.75]},"properties":{"NAME":"Vishakhapatnam","COUNTRY":"India","POPULATION":"603630","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[64.33000183105469,67.80000305175781]},"properties":{"NAME":"Vorkuta","COUNTRY":"Russia","POPULATION":"116000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[54.45000076293946,31.969999313354492]},"properties":{"NAME":"Yazd","COUNTRY":"Iran","POPULATION":"230483","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[60.83000183105469,29.600000381469727]},"properties":{"NAME":"Zahedan","COUNTRY":"Iran","POPULATION":"281923","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[45.18000030517578,12.861159324645996]},"properties":{"NAME":"Aden","COUNTRY":"Yemen","POPULATION":"318000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[38.70000076293945,9.029999732971191]},"properties":{"NAME":"Adis Abeba","COUNTRY":"Ethiopia","POPULATION":"1500000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[48.002777099609375,29.19499015808106]},"properties":{"NAME":"Al Kuwayt","COUNTRY":"Kuwait","POPULATION":"1375000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[47.5,-18.8700008392334]},"properties":{"NAME":"Antananarivo","COUNTRY":"Madagascar","POPULATION":"663000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[46.77000045776367,24.649999618530273]},"properties":{"NAME":"Ar Riyad","COUNTRY":"Saudi Arabia","POPULATION":"1250000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[38.970001220703125,15.329999923706055]},"properties":{"NAME":"Asmara","COUNTRY":"Eritrea","POPULATION":"275385","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-57.66999816894532,-25.219999313354492]},"properties":{"NAME":"Asuncion","COUNTRY":"Paraguay","POPULATION":"700000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[23.65486335754395,38.12160110473633]},"properties":{"NAME":"Athinai","COUNTRY":"Greece","POPULATION":"3027331","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[109.9800033569336,40.650001525878906]},"properties":{"NAME":"Baotou","COUNTRY":"China","POPULATION":"1120000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[2.1700000762939453,41.52999877929688]},"properties":{"NAME":"Barcelona","COUNTRY":"Spain","POPULATION":"4040000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.68000030517578,11.014294624328613]},"properties":{"NAME":"Barranquilla","COUNTRY":"Colombia","POPULATION":"1140000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[35.023170471191406,-19.769283294677734]},"properties":{"NAME":"Beira","COUNTRY":"Mozambique","POPULATION":"291604","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[35.65794372558594,33.779998779296875]},"properties":{"NAME":"Beirut","COUNTRY":"Lebanon","POPULATION":"1675000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-88.80000305175781,17.1200008392334]},"properties":{"NAME":"Belmopan","COUNTRY":"Belize","POPULATION":"4500","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[5.490678310394287,60.349998474121094]},"properties":{"NAME":"Bergen","COUNTRY":"Norway","POPULATION":"239000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-15.649999618530273,11.910989761352539]},"properties":{"NAME":"Bissau","COUNTRY":"GuineaBissau","POPULATION":"109486","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[18.690431594848633,-33.80400848388672]},"properties":{"NAME":"Cape Town","COUNTRY":"South Africa","POPULATION":"1790000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-3.1500000953674316,51.5]},"properties":{"NAME":"Cardiff","COUNTRY":"UK","POPULATION":"625000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-7.534091949462891,33.544410705566406]},"properties":{"NAME":"Casablanca","COUNTRY":"Morocco","POPULATION":"2475000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-52.400001525878906,4.920000076293945]},"properties":{"NAME":"Cayenne","COUNTRY":"Fr Guiana","POPULATION":"38091","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[91.83279418945312,22.479999542236328]},"properties":{"NAME":"Chittagong","COUNTRY":"Bangladesh","POPULATION":"1391877","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[80.08833312988281,7.019999980926514]},"properties":{"NAME":"Colombo","COUNTRY":"Sri Lanka","POPULATION":"2050000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-12.800000190734863,9.520000457763672]},"properties":{"NAME":"Conakry","COUNTRY":"Guinea","POPULATION":"800000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-16.848094940185547,14.630000114440918]},"properties":{"NAME":"Dakar","COUNTRY":"Senegal","POPULATION":"1428084","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.06999969482422,39.75]},"properties":{"NAME":"Denver","COUNTRY":"US","POPULATION":"1405300","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[68.9000015258789,38.630001068115234]},"properties":{"NAME":"Dushanfe","COUNTRY":"Tajikistan","POPULATION":"595000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-113.26999664306642,53.56999969482422]},"properties":{"NAME":"Edmonton","COUNTRY":"Canada","POPULATION":"785465","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[30.850000381469727,30.46999931335449]},"properties":{"NAME":"El-Giza","COUNTRY":"Egypt","POPULATION":"1870508","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-12.910276412963867,8.382770538330078]},"properties":{"NAME":"Freetown","COUNTRY":"Sierra Leone","POPULATION":"525000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[74.7699966430664,42.88000106811524]},"properties":{"NAME":"Frunze","COUNTRY":"Kyrgyzstan","POPULATION":"616000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[8.922295570373535,44.4550895690918]},"properties":{"NAME":"Genova","COUNTRY":"Italy","POPULATION":"805000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-58.16999816894531,6.769999980926514]},"properties":{"NAME":"Georgetown","COUNTRY":"Guyana","POPULATION":"188000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[12.000000000000002,57.74999999999999]},"properties":{"NAME":"Goteborg","COUNTRY":"Sweden","POPULATION":"710894","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[31.020000457763672,-17.829999923706055]},"properties":{"NAME":"Harare","COUNTRY":"Zimbabwe","POPULATION":"890000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.41645050048828,23.048952102661133]},"properties":{"NAME":"Havana","COUNTRY":"Cuba","POPULATION":"2125000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[39.37330627441406,21.6200008392334]},"properties":{"NAME":"Jiddah","COUNTRY":"Saudi Arabia","POPULATION":"1300000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[32.58000183105469,0.3199999928474426]},"properties":{"NAME":"Kampala","COUNTRY":"Uganda","POPULATION":"460000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[8.520000457763672,11.920000076293947]},"properties":{"NAME":"Kano","COUNTRY":"Nigeria","POPULATION":"538300","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[120.34148406982423,22.673416137695312]},"properties":{"NAME":"Kao-Hsiung","COUNTRY":"Taiwan","POPULATION":"1845000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[67.02999877929688,24.850000381469727]},"properties":{"NAME":"Karachi","COUNTRY":"Pakistan","POPULATION":"5300000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[135.07000732421875,48.529998779296875]},"properties":{"NAME":"Khabarovsk","COUNTRY":"Russia","POPULATION":"601000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[32.529998779296875,15.550000190734865]},"properties":{"NAME":"Khartoum","COUNTRY":"Sudan","POPULATION":"924000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[28.82999992370606,47]},"properties":{"NAME":"Kishinev","COUNTRY":"Moldova","POPULATION":"665000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[12.550000190734863,55.720001220703125]},"properties":{"NAME":"Kobenhavn","COUNTRY":"Denmark","POPULATION":"1685000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[3.2999999523162846,6.449999809265137]},"properties":{"NAME":"Lagos","COUNTRY":"Nigeria","POPULATION":"3800000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[0.2199999988079071,49.324020385742195]},"properties":{"NAME":"Le Havre","COUNTRY":"France","POPULATION":"254595","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[9.490456581115723,-0.504144549369812]},"properties":{"NAME":"Libreville","COUNTRY":"Gabon","POPULATION":"235700","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[33.81999969482422,-13.920000076293945]},"properties":{"NAME":"Lilongwe","COUNTRY":"Malawi","POPULATION":"233973","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-76.82355499267578,-12.067996025085451]},"properties":{"NAME":"Lima","COUNTRY":"Peru","POPULATION":"4344000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-9.130000114440918,38.72999954223633]},"properties":{"NAME":"Lisboa","COUNTRY":"Portugal","POPULATION":"2250000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-2.766836404800415,53.422687530517585]},"properties":{"NAME":"Liverpool","COUNTRY":"UK","POPULATION":"1525000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[1.350000023841858,6.28000020980835]},"properties":{"NAME":"Lome","COUNTRY":"Togo","POPULATION":"400000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-118.25,34]},"properties":{"NAME":"Los Angeles","COUNTRY":"US","POPULATION":"9763600","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.46177864074707,-9]},"properties":{"NAME":"Luanda","COUNTRY":"Angola","POPULATION":"1459900","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[27.549999237060547,-11.680000305175781]},"properties":{"NAME":"Lumumbashi","COUNTRY":"Zaire","POPULATION":"543268","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[28.170000076293945,-15.430000305175781]},"properties":{"NAME":"Lusaka","COUNTRY":"Zambia","POPULATION":"535830","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[8.819999694824219,3.6446847915649414]},"properties":{"NAME":"Malabo","COUNTRY":"Eq Guinea","POPULATION":"30710","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[121.1734085083008,14.550000190734863]},"properties":{"NAME":"Manila","COUNTRY":"Philippines","POPULATION":"5474000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[5.380000114440918,43.29999923706055]},"properties":{"NAME":"Marseille","COUNTRY":"France","POPULATION":"1225000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[58.62747955322265,23.516639709472656]},"properties":{"NAME":"Masqat","COUNTRY":"Oman","POPULATION":"50000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-106.2699966430664,23.36151123046875]},"properties":{"NAME":"Mazatlan","COUNTRY":"Mexico","POPULATION":"199830","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[39.66999816894531,-4.019999980926514]},"properties":{"NAME":"Mombasa","COUNTRY":"Kenya","POPULATION":"442369","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-10.770000457763672,6.517439365386963]},"properties":{"NAME":"Monrovia","COUNTRY":"Liberia","POPULATION":"465000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-56.16999816894531,-34.91999816894532]},"properties":{"NAME":"Montevideo","COUNTRY":"Uruguay","POPULATION":"1550000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[37.70000076293945,55.75]},"properties":{"NAME":"Moskva","COUNTRY":"Russia","POPULATION":"13100000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[36.83000183105469,-1.1699999570846558]},"properties":{"NAME":"Nairobi","COUNTRY":"Kenya","POPULATION":"1286200","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[14.270000457763672,40.83000183105469]},"properties":{"NAME":"Napoli","COUNTRY":"Italy","POPULATION":"2875000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.0999984741211,40.75]},"properties":{"NAME":"New York","COUNTRY":"US","POPULATION":"16472000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-74.19999694824219,40.720001220703125]},"properties":{"NAME":"Newark","COUNTRY":"US","POPULATION":"329248","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-15.782860755920412,18.030000686645508]},"properties":{"NAME":"Nouakchott","COUNTRY":"Mauritania","POPULATION":"285000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[9.902998924255371,55.57453536987305]},"properties":{"NAME":"Odense","COUNTRY":"Denmark","POPULATION":"138400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[32.47999954223633,15.619999885559084]},"properties":{"NAME":"Omdurman","COUNTRY":"Sudan","POPULATION":"526287","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.5199999809265137,35.75]},"properties":{"NAME":"Oran","COUNTRY":"Algeria","POPULATION":"628558","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[10.72000026702881,59.93000030517579]},"properties":{"NAME":"Oslo","COUNTRY":"Norway","POPULATION":"720000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-1.6699999570846558,12.479999542236328]},"properties":{"NAME":"Ouagadouou","COUNTRY":"Burkina Faso","POPULATION":"441514","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[13.399999618530273,38.130001068115234]},"properties":{"NAME":"Palermo","COUNTRY":"Italy","POPULATION":"723732","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-79.4000015258789,8.949999809265137]},"properties":{"NAME":"Panama","COUNTRY":"Panama","POPULATION":"625000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-55.22999954223633,5.929999828338623]},"properties":{"NAME":"Paramaribo","COUNTRY":"Suriname","POPULATION":"241000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[115.92337036132812,-31.975864410400387]},"properties":{"NAME":"Perth","COUNTRY":"Australia","POPULATION":"994472","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[147.41452026367188,-9.550000190734863]},"properties":{"NAME":"Port Moresby","COUNTRY":"Papua N Guin","POPULATION":"152100","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-8.487948417663574,41.150001525878906]},"properties":{"NAME":"Porto","COUNTRY":"Portugal","POPULATION":"1225000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[65.5,31.60000038146973]},"properties":{"NAME":"Qandahar","COUNTRY":"Afghanistan","POPULATION":"203000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[121.02999877929689,14.649999618530275]},"properties":{"NAME":"Quezon City","COUNTRY":"Philippines","POPULATION":"1326035","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-6.748040676116943,33.920196533203125]},"properties":{"NAME":"Rabat","COUNTRY":"Morocco","POPULATION":"980000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-21.336820602416992,64.31326293945312]},"properties":{"NAME":"Reykjavik","COUNTRY":"Iceland","POPULATION":"137941","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[24.049999237060547,56.880001068115234]},"properties":{"NAME":"Riga","COUNTRY":"Latvia","POPULATION":"1005000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[12.520000457763672,41.880001068115234]},"properties":{"NAME":"Roma","COUNTRY":"Italy","POPULATION":"3175000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-38.47999954223633,-12.60025691986084]},"properties":{"NAME":"Salvador","COUNTRY":"Brazil","POPULATION":"2050000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[52.56999969482422,29.629999160766605]},"properties":{"NAME":"Shiraz","COUNTRY":"Iran","POPULATION":"848289","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[18.08426856994629,59.24463272094727]},"properties":{"NAME":"Stockholm","COUNTRY":"Sweden","POPULATION":"1449972","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[112.68437194824219,-7.400000095367432]},"properties":{"NAME":"Surabaja","COUNTRY":"Indonesia","POPULATION":"2027913","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[120.2300033569336,23.170000076293945]},"properties":{"NAME":"T`ai-nan","COUNTRY":"Taiwan","POPULATION":"656927","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-82.59302520751953,27.997358322143555]},"properties":{"NAME":"Tampa","COUNTRY":"US","POPULATION":"594500","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[34.856834411621094,31.91719818115234]},"properties":{"NAME":"Tel Aviv-Yafo","COUNTRY":"Israel","POPULATION":"1670000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[22.799999237060547,40.63000106811524]},"properties":{"NAME":"Thessaloniki","COUNTRY":"Greece","POPULATION":"706180","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[69.34986877441406,41.24793243408203]},"properties":{"NAME":"Toshkent","COUNTRY":"Uzbekistan","POPULATION":"2325000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[36.0070686340332,34.34375762939453]},"properties":{"NAME":"Tripoli","COUNTRY":"Lebanon","POPULATION":"198000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-71.2993392944336,-32.900001525878906]},"properties":{"NAME":"Valparaiso","COUNTRY":"Chile","POPULATION":"675000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.96306610107423,49.27429962158203]},"properties":{"NAME":"Vancouver","COUNTRY":"Canada","POPULATION":"1380729","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[131.96043395996094,43.130001068115234]},"properties":{"NAME":"Vladivostok","COUNTRY":"Russia","POPULATION":"648000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[14.61710453033447,-23.10186767578125]},"properties":{"NAME":"Walvis Bay","COUNTRY":"Namibia","POPULATION":"16607","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[17.100000381469727,-22.56999969482422]},"properties":{"NAME":"Windhoek","COUNTRY":"Namibia","POPULATION":"114500","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[175.1449432373047,-41.21039581298828]},"properties":{"NAME":"Wellington","COUNTRY":"New Zealand","POPULATION":"350000","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-122.316650390625,47.58855438232422]},"properties":{"NAME":"Seattle","COUNTRY":"US","POPULATION":"2077100","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-117.12549591064452,32.76145935058594]},"properties":{"NAME":"San Diego","COUNTRY":"US","POPULATION":"2098500","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-69.91326141357423,-20.260000228881836]},"properties":{"NAME":"Iquique","COUNTRY":"Chile","POPULATION":"110153","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[54.61927032470703,24.23600769042969]},"properties":{"NAME":"Abu Zaby","COUNTRY":"Untd Arab Em","POPULATION":"242975","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-72.00545501708984,7.576601028442383]},"properties":{"NAME":"San Cristobal","COUNTRY":"Venezuela","POPULATION":"198793","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[48.00000000000001,46.25]},"properties":{"NAME":"Astrakhan","COUNTRY":"Russia","POPULATION":"509000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[9.818350791931152,30.13860321044922]},"properties":{"NAME":"Ghadamis","COUNTRY":"Libya","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-57.70877456665039,-31.305152893066406]},"properties":{"NAME":"Salto","COUNTRY":"Uruguay","POPULATION":"77400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-114.06136322021484,62.520614624023445]},"properties":{"NAME":"Yellowknife","COUNTRY":"Canada","POPULATION":"11753","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-155.06729125976562,19.714815139770508]},"properties":{"NAME":"Hilo","COUNTRY":"US","POPULATION":"43200","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-157.80618286132812,21.321176528930664]},"properties":{"NAME":"Honolulu","COUNTRY":"US","POPULATION":"762600","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-149.1729736328125,61.188648223876946]},"properties":{"NAME":"Anchorage","COUNTRY":"US","POPULATION":"184300","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-147.65118408203128,64.8387451171875]},"properties":{"NAME":"Fairbanks","COUNTRY":"US","POPULATION":"39900","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-134.13247680664062,58.39100646972657]},"properties":{"NAME":"Juneau","COUNTRY":"US","POPULATION":"19528","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-121.84745788574219,37.30810546875]},"properties":{"NAME":"San Jose","COUNTRY":"US","POPULATION":"629400","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-105.96663665771484,28.55813980102539]},"properties":{"NAME":"Chihuaha","COUNTRY":"Mexico","POPULATION":"385603","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.08406066894531,19.009675979614258]},"properties":{"NAME":"Veracruz","COUNTRY":"Mexico","POPULATION":"385000","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[-96.9420394897461,16.92090606689453]},"properties":{"NAME":"Oaxaca","COUNTRY":"Mexico","POPULATION":"154223","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[15.65999984741211,78.19999694824219]},"properties":{"NAME":"Longyearbyen","COUNTRY":"Norway","POPULATION":"-99","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[114.14570617675781,22.428405761718754]},"properties":{"NAME":"Hong Kong","COUNTRY":"UK","POPULATION":"5395997","CAPITAL":"Y"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[114.23011779785156,22.379896163940433]},"properties":{"NAME":"Kowloon","COUNTRY":"UK","POPULATION":"774781","CAPITAL":"N"}},{"type":"Feature","geometry":{"type":"Point","coordinates":[104.17711639404297,1.2297935485839844]},"properties":{"NAME":"Singapore","COUNTRY":"Singapore","POPULATION":"3025000","CAPITAL":"N"}}]}
@@ -0,0 +1,5 @@
1
+ ---
2
+
3
+ ---
4
+
5
+ @import "web-mapping-leaflet";
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: web-mapping-leaflet
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - wslerry
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-07-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - ghostspell89@yahoo.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/about.html
65
+ - _includes/contact.html
66
+ - _includes/footer.html
67
+ - _includes/head.html
68
+ - _includes/map-legends.html
69
+ - _includes/map.html
70
+ - _includes/navbar.html
71
+ - _includes/sidebar.html
72
+ - _layouts/default.html
73
+ - _layouts/page.html
74
+ - _sass/web-mapping-leaflet.scss
75
+ - assets/cities.geojson
76
+ - assets/css/main.scss
77
+ homepage: https://github.com/wslerry/web-mapping-leaflet.git
78
+ licenses:
79
+ - MIT
80
+ metadata: {}
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubygems_version: 3.0.4
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: Web mapping template for Jekyll website powered by leaflet.js
100
+ test_files: []