Created
March 20, 2019 03:36
-
-
Save arbo77/f74194615292bdc5fbd8f5645a986f4d to your computer and use it in GitHub Desktop.
Openlayers Cluster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <link rel="stylesheet" href="http://dev.openlayers.org/theme/default/style.css" type="text/css"> | |
| <link rel="stylesheet" href="http://dev.openlayers.org/examples/style.css" type="text/css"> | |
| <script src="http://dev.openlayers.org/OpenLayers.js"></script> | |
| <script src="http://www.acuriousanimal.com/AnimatedCluster/AnimatedCluster.js"></script> | |
| <style> | |
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif | |
| } | |
| .smallmap { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| width: auto; | |
| height: auto; | |
| } | |
| </style> | |
| </head> | |
| <body onload="init()"> | |
| <div id="map" class="smallmap"></div> | |
| <script> | |
| var map; | |
| function init() { | |
| var map1 = new OpenLayers.Map("map"); | |
| var osm1 = new OpenLayers.Layer.OSM(); | |
| map1.addLayer(osm1); | |
| var center = new OpenLayers.LonLat(2, 40); | |
| center.transform(new OpenLayers.Projection("EPSG:4326"), new OpenLayers.Projection("EPSG:900913")); | |
| map1.setCenter(center, 2); | |
| map1.addControl(new OpenLayers.Control.LayerSwitcher()); | |
| var colors = { | |
| low: "rgb(181, 226, 140)", | |
| middle: "rgb(241, 211, 87)", | |
| high: "rgb(253, 156, 115)", | |
| red: "rgb(243, 28, 28)", | |
| }; | |
| var point = { | |
| office: [ | |
| new OpenLayers.Rule({ | |
| filter: new OpenLayers.Filter.Comparison({ | |
| type: OpenLayers.Filter.Comparison.LESS_THAN, | |
| property: "count", | |
| value: 2 | |
| }), | |
| symbolizer: { | |
| fillColor: colors.red, | |
| strokeWidth: 0, | |
| fillOpacity: 0.9, | |
| pointRadius: 5, | |
| } | |
| }), | |
| new OpenLayers.Rule({ | |
| filter: new OpenLayers.Filter.Comparison({ | |
| type: OpenLayers.Filter.Comparison.GREATER_THAN, | |
| property: "count", | |
| value: 1 | |
| }), | |
| symbolizer: { | |
| cursor: 'pointer', | |
| fillColor: colors.high, | |
| fillOpacity: 1, | |
| strokeColor: colors.high, | |
| strokeOpacity: 0.5, | |
| strokeWidth: 12, | |
| pointRadius: 20, | |
| label: "${count}", | |
| labelOutlineWidth: .5, | |
| fontColor: "#ffffff", | |
| fontOpacity: 0.8, | |
| fontSize: "12px" | |
| } | |
| }) | |
| ], | |
| wo: [ | |
| new OpenLayers.Rule({ | |
| filter: new OpenLayers.Filter.Comparison({ | |
| type: OpenLayers.Filter.Comparison.LESS_THAN, | |
| property: "count", | |
| value: 2 | |
| }), | |
| symbolizer: { | |
| fillColor: colors.low, | |
| strokeWidth: 0, | |
| fillOpacity: 0.9, | |
| pointRadius: 5, | |
| } | |
| }), | |
| new OpenLayers.Rule({ | |
| filter: new OpenLayers.Filter.Comparison({ | |
| type: OpenLayers.Filter.Comparison.GREATER_THAN, | |
| property: "count", | |
| value: 1 | |
| }), | |
| symbolizer: { | |
| cursor: 'pointer', | |
| fillColor: colors.low, | |
| fillOpacity: 1, | |
| strokeColor: colors.low, | |
| strokeOpacity: 0.5, | |
| strokeWidth: 12, | |
| pointRadius: 20, | |
| label: "${count}", | |
| labelOutlineWidth: .5, | |
| fontColor: "#ffffff", | |
| fontOpacity: 0.8, | |
| fontSize: "12px" | |
| } | |
| }) | |
| ], | |
| } | |
| function createVector(src, style) { | |
| v = new OpenLayers.Layer.Vector("Features", { | |
| protocol: new OpenLayers.Protocol.HTTP({ | |
| url: src, | |
| format: new OpenLayers.Format.GeoJSON() | |
| }), | |
| eventListeners: { | |
| 'featureselected': function (evt) { | |
| var feature = evt.feature; | |
| console.log(feature.cluster.length); | |
| if (feature.cluster.length === 1) { | |
| alert(JSON.stringify(feature.cluster[0].data)); | |
| } else { | |
| map1.zoomIn(); | |
| } | |
| } | |
| }, | |
| renderers: ['Canvas', 'SVG'], | |
| strategies: [ | |
| new OpenLayers.Strategy.Fixed(), | |
| new OpenLayers.Strategy.Cluster({ | |
| distance: 45, | |
| }), | |
| ], | |
| styleMap: new OpenLayers.StyleMap(style) | |
| }) | |
| var selectControl = new OpenLayers.Control.SelectFeature(v, {}); | |
| map1.addControl(selectControl); | |
| selectControl.activate(); | |
| return v; | |
| } | |
| var vector1 = createVector('others.json', new OpenLayers.Style(null, { | |
| rules: point.office | |
| })); | |
| map1.addLayer(vector1); | |
| var vector2 = createVector('others2.json', new OpenLayers.Style(null, { | |
| rules: point.wo | |
| })); | |
| map1.addLayer(vector2); | |
| } | |
| </script> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "FeatureCollection", | |
| "features": [ | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-SCT", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Scotland", | |
| "STATUS": "Other", | |
| "PORT_ID": 32170, | |
| "CITY_NAME": "Dundee", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -2.966700, | |
| 56.466702 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-SCT", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Scotland", | |
| "STATUS": "Other", | |
| "PORT_ID": 33515, | |
| "CITY_NAME": "Hunterston", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -4.856786, | |
| 55.736744 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-BRN", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bornholm", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 29110, | |
| "CITY_NAME": "Ronne", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.716700, | |
| 55.116699 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-NKZ", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "North Kazakhstan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Petropavlovsk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.216698, | |
| 54.883301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "Other", | |
| "PORT_ID": 31720, | |
| "CITY_NAME": "Teesport", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.166700, | |
| 54.599998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-GDN", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Gdansk", | |
| "STATUS": "Other", | |
| "PORT_ID": 28740, | |
| "CITY_NAME": "Gdynia", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.549999, | |
| 54.533298 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-MKV", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Mecklenburg-Vorpommern", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Schwerin", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.416700, | |
| 53.633301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-BRM", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bremen", | |
| "STATUS": "Other", | |
| "PORT_ID": 30810, | |
| "CITY_NAME": "Bremerhaven", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.583300, | |
| 53.549999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-ZHL", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Zuid-Holland", | |
| "STATUS": "Other", | |
| "PORT_ID": 31085, | |
| "CITY_NAME": "Europoort", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.133300, | |
| 51.950001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-NPC", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Nord-Pas-de-Calais", | |
| "STATUS": "Other", | |
| "PORT_ID": 35730, | |
| "CITY_NAME": "Dunkirk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.350000, | |
| 51.049999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "Other", | |
| "PORT_ID": 35580, | |
| "CITY_NAME": "Southampton", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.400000, | |
| 50.899998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "Other", | |
| "PORT_ID": 35590, | |
| "CITY_NAME": "Fawley", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.333300, | |
| 50.816700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-SLN", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Selenge", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Suchboatar", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 106.199997, | |
| 50.250000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-VKZ", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "East Kazakhstan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ust'-Kamenogorsk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 82.599998, | |
| 50.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-DRH", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Darhan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Darhan", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 106.176331, | |
| 49.902462 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-BNR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Basse-Normandie", | |
| "STATUS": "Other", | |
| "PORT_ID": 35950, | |
| "CITY_NAME": "Cherbourg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.633300, | |
| 49.650002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SVK-VYC", | |
| "FIPS_CNTRY": "LO", | |
| "CNTRY_NAME": "Slovakia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Vychodoslovensky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kosice", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.250000, | |
| 48.700001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-BRT", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bretagne", | |
| "STATUS": "Other", | |
| "PORT_ID": 36460, | |
| "CITY_NAME": "Brest", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -4.500000, | |
| 48.383301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NDA", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "North Dakota", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bismarck", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -100.783302, | |
| 46.799999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-GAL", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Govi-Altay", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Altay", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 96.239334, | |
| 46.327366 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HRV", | |
| "FIPS_CNTRY": "HR", | |
| "CNTRY_NAME": "Croatia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Croatia", | |
| "STATUS": "Other", | |
| "PORT_ID": 41010, | |
| "CITY_NAME": "Rijeka", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.433300, | |
| 45.333302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-NBR", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "New Brunswick", | |
| "STATUS": "Other", | |
| "PORT_ID": 6545, | |
| "CITY_NAME": "Canaport", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -65.967369, | |
| 45.242485 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-SDA", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "South Dakota", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pierre", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -100.349998, | |
| 44.366699 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-IDA", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Idaho", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Boise", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -116.216698, | |
| 43.616699 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-OMN", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Omnogovi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dalandzadgad", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 104.500000, | |
| 43.450001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-DIB", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Dibre", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Peshkopi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.433300, | |
| 41.683300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-THR", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Thraki", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Komatini", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.416700, | |
| 41.133301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-PUG", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Puglia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 40530, | |
| "CITY_NAME": "Bari", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.866699, | |
| 41.099998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NYO", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "New York", | |
| "STATUS": "Other", | |
| "PORT_ID": 7630, | |
| "CITY_NAME": "Brooklyn", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -74.011223, | |
| 40.663960 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-KLN", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kolonje", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Erseke", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.683300, | |
| 40.333302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-PEN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Pennsylvania", | |
| "STATUS": "Other", | |
| "PORT_ID": 8080, | |
| "CITY_NAME": "Chester", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -75.369164, | |
| 39.869167 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TJK-KDZ", | |
| "FIPS_CNTRY": "TI", | |
| "CNTRY_NAME": "Tajikistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Khudzhand", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Leninobod", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.000000, | |
| 39.750000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-CGE", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Central Greece and Evvoia", | |
| "STATUS": "Other", | |
| "PORT_ID": 42230, | |
| "CITY_NAME": "Piraeus", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.688377, | |
| 37.956287 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-CAL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "California", | |
| "STATUS": "Other", | |
| "PORT_ID": 16340, | |
| "CITY_NAME": "Oakland", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -122.271477, | |
| 37.810452 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-AZR", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Azores", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38100, | |
| "CITY_NAME": "Ponta Delgada", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -25.692211, | |
| 37.746300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-PS2", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Melilla", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45710, | |
| "CITY_NAME": "Melilla", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -2.965954, | |
| 35.316483 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-NNG", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Nangarhar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jalabad", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 70.466698, | |
| 34.433300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBN-SAY", | |
| "FIPS_CNTRY": "LE", | |
| "CNTRY_NAME": "Lebanon", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sayda", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45040, | |
| "CITY_NAME": "Sidon", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.416698, | |
| 33.583302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBN-ANB", | |
| "FIPS_CNTRY": "LE", | |
| "CNTRY_NAME": "Lebanon", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "An Nabatiyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nabatiyet et Tahta", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.450001, | |
| 33.383301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-PKT", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Paktika", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zareh Sharan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.416702, | |
| 32.849998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ISR-HEF", | |
| "FIPS_CNTRY": "IS", | |
| "CNTRY_NAME": "Israel", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Hefa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45080, | |
| "CITY_NAME": "Haifa", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.000000, | |
| 32.766701 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ISR-HZF", | |
| "FIPS_CNTRY": "IS", | |
| "CNTRY_NAME": "Israel", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Hazafon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nazareth", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.283298, | |
| 32.700001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JOR-AMF", | |
| "FIPS_CNTRY": "JO", | |
| "CNTRY_NAME": "Jordan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Mafraq", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al Mafraq", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.233299, | |
| 32.283298 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JOR-AZR", | |
| "FIPS_CNTRY": "JO", | |
| "CNTRY_NAME": "Jordan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Az Zarqa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Az Zarqa'", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.066700, | |
| 32.083302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ISR-HMR", | |
| "FIPS_CNTRY": "IS", | |
| "CNTRY_NAME": "Israel", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hamerkaz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ramla", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.866699, | |
| 31.916700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-AQR", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Qurayyat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "An Nabk", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.333302, | |
| 31.333300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ISR-HDR", | |
| "FIPS_CNTRY": "IS", | |
| "CNTRY_NAME": "Israel", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Hadarom", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Beersheba", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.799999, | |
| 31.250000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-SSI", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Shamal Sina'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "El'Arish", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.799999, | |
| 31.133301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-AHA", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Hudud ash Shamaliyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ar'ar", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.033298, | |
| 30.983299 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JOR-ATF", | |
| "FIPS_CNTRY": "JO", | |
| "CNTRY_NAME": "Jordan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "At Tafilah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "At Tafilah", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.599998, | |
| 30.833334 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ALB", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Alabama", | |
| "STATUS": "Other", | |
| "PORT_ID": 8770, | |
| "CITY_NAME": "Mobile", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -88.116699, | |
| 30.683300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-AJA", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Jawf", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sakakah", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.133301, | |
| 30.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-TEX", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Texas", | |
| "STATUS": "Other", | |
| "PORT_ID": 9150, | |
| "CITY_NAME": "Galveston", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -94.783302, | |
| 29.316700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NPL-KRN", | |
| "FIPS_CNTRY": "NP", | |
| "CNTRY_NAME": "Nepal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Karnali", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jumla", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 82.216698, | |
| 29.250000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-JSI", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Janub Sina'", | |
| "STATUS": "Other", | |
| "PORT_ID": 48065, | |
| "CITY_NAME": "Abu Zenima", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.223736, | |
| 28.807247 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-CNR", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Canarias", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38160, | |
| "CITY_NAME": "Santa Cruz de Tenerife", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -16.250000, | |
| 28.466700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-TAB", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Tabuk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tabuk", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.599998, | |
| 28.383301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-JSI", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Janub Sina'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "El Tur", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.616699, | |
| 28.233299 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-CNR", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Canarias", | |
| "STATUS": "Other", | |
| "PORT_ID": 38170, | |
| "CITY_NAME": "Las Palmas", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -15.416700, | |
| 28.150000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-HAI", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ha'il", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ha'il", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.750000, | |
| 27.466700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-AQA", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Al Qasim", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Buraydah", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.133301, | |
| 26.333300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-ASH", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ash Sharqiyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 48335, | |
| "CITY_NAME": "Ad Damman", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 50.083302, | |
| 26.333300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IND-MZR", | |
| "FIPS_CNTRY": "IN", | |
| "CNTRY_NAME": "India", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Mizoram", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aizawl", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 92.733299, | |
| 23.666700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-GNG", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Guangxi", | |
| "STATUS": "Other", | |
| "PORT_ID": 57745, | |
| "CITY_NAME": "Fangcheng Gang", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 108.349998, | |
| 21.750000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "VNM-TBI", | |
| "FIPS_CNTRY": "VM", | |
| "CNTRY_NAME": "Vietnam", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Thai Binh", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Thai Binh", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 106.333031, | |
| 20.450300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IND-DAD", | |
| "FIPS_CNTRY": "IN", | |
| "CNTRY_NAME": "India", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Daman & Diu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Daman", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 72.849998, | |
| 20.416367 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DOM-PER", | |
| "FIPS_CNTRY": "DR", | |
| "CNTRY_NAME": "Dominican Republic", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Peravia", | |
| "STATUS": "Other", | |
| "PORT_ID": 11046, | |
| "CITY_NAME": "Punta Palenque", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -70.177391, | |
| 18.238380 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JAM-SND", | |
| "FIPS_CNTRY": "JM", | |
| "CNTRY_NAME": "Jamaica", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Saint Andrew", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Halfway Tree", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -76.800003, | |
| 18.033300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-NJR", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Najran", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Najran", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.133301, | |
| 17.483299 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "THA-NPH", | |
| "FIPS_CNTRY": "TH", | |
| "CNTRY_NAME": "Thailand", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nakhon Phanom", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nakhom Phanom", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 104.716698, | |
| 17.383301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SAU-JIZ", | |
| "FIPS_CNTRY": "SA", | |
| "CNTRY_NAME": "Saudi Arabia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Jizan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jaizan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 42.570965, | |
| 16.848522 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SEN-LOU", | |
| "FIPS_CNTRY": "SG", | |
| "CNTRY_NAME": "Senegal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Louga", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Louga", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -16.083300, | |
| 15.750000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "THA-KNC", | |
| "FIPS_CNTRY": "TH", | |
| "CNTRY_NAME": "Thailand", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kanchanaburi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kanchanaburi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 99.516701, | |
| 14.033300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LCA", | |
| "FIPS_CNTRY": "ST", | |
| "CNTRY_NAME": "St. Lucia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "St. Lucia", | |
| "STATUS": "Other", | |
| "PORT_ID": 11625, | |
| "CITY_NAME": "Cul De Sac", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -61.000000, | |
| 14.016700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SLV-CSC", | |
| "FIPS_CNTRY": "ES", | |
| "CNTRY_NAME": "El Salvador", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Cuscatlan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Cojutepeque", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -88.933296, | |
| 13.716700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "COL-SAY", | |
| "FIPS_CNTRY": "CO", | |
| "CNTRY_NAME": "Colombia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "San Andres y Providencia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "San Andres", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -81.690331, | |
| 12.562140 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NIC-RSJ", | |
| "FIPS_CNTRY": "NU", | |
| "CNTRY_NAME": "Nicaragua", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Rio San Juan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "San Carlos", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -84.833298, | |
| 11.200000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ETH-WEO", | |
| "FIPS_CNTRY": "ET", | |
| "CNTRY_NAME": "Ethiopia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Welo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dese", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.683300, | |
| 11.083300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "VEN-ANZ", | |
| "FIPS_CNTRY": "VE", | |
| "CNTRY_NAME": "Venezuela", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Anzoategui", | |
| "STATUS": "Other", | |
| "PORT_ID": 12185, | |
| "CITY_NAME": "Puerto La Cruz", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -64.633301, | |
| 10.232700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ETH-HRR", | |
| "FIPS_CNTRY": "ET", | |
| "CNTRY_NAME": "Ethiopia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Harerge", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Harar", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 42.133301, | |
| 9.300000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SOM-SOL", | |
| "FIPS_CNTRY": "SO", | |
| "CNTRY_NAME": "Somalia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sool", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Laascaanood", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 47.316700, | |
| 8.433300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MHL", | |
| "FIPS_CNTRY": "RM", | |
| "CNTRY_NAME": "Marshall Is.", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Marshall Is.", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dalap-Uliga-Dorrit", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 171.367661, | |
| 7.120980 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FSM", | |
| "FIPS_CNTRY": "FM", | |
| "CNTRY_NAME": "Micronesia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Micronesia", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Palikir", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 158.216705, | |
| 6.966700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SUR-PAR", | |
| "FIPS_CNTRY": "NS", | |
| "CNTRY_NAME": "Suriname", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Para", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Onverwacht", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -55.200001, | |
| 5.600000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MYS-TRN", | |
| "FIPS_CNTRY": "MY", | |
| "CNTRY_NAME": "Malaysia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Terengganu", | |
| "STATUS": "Other", | |
| "PORT_ID": 57416, | |
| "CITY_NAME": "Kemaman Harbor", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 103.466698, | |
| 4.250000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MYS-PHN", | |
| "FIPS_CNTRY": "MY", | |
| "CNTRY_NAME": "Malaysia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Pahang", | |
| "STATUS": "Other", | |
| "PORT_ID": 57410, | |
| "CITY_NAME": "Kuantan New Port", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 103.333298, | |
| 3.800000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KIR", | |
| "FIPS_CNTRY": "KR", | |
| "CNTRY_NAME": "Kiribati", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kiribati", | |
| "STATUS": "National capital", | |
| "PORT_ID": 56450, | |
| "CITY_NAME": "Bairiki", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 172.921112, | |
| 1.340754 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUV", | |
| "FIPS_CNTRY": "TV", | |
| "CNTRY_NAME": "Tuvalu", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tuvalu", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vaiaku", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 179.221893, | |
| -8.536503 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ZMB-NRT", | |
| "FIPS_CNTRY": "ZA", | |
| "CNTRY_NAME": "Zambia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Northern", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kasama", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.150000, | |
| -10.266700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CXR", | |
| "FIPS_CNTRY": "KT", | |
| "CNTRY_NAME": "Christmas I.", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Christmas I.", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 50910, | |
| "CITY_NAME": "The Settlement", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 105.716698, | |
| -10.416700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MYT", | |
| "FIPS_CNTRY": "MF", | |
| "CNTRY_NAME": "Mayotte", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mayotte", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dzaoudzi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.283298, | |
| -12.783300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AGO-CUN", | |
| "FIPS_CNTRY": "AO", | |
| "CNTRY_NAME": "Angola", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Cunene", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Onjiva", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.783300, | |
| -17.049999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ZWE-MNC", | |
| "FIPS_CNTRY": "ZI", | |
| "CNTRY_NAME": "Zimbabwe", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Manicaland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mutare", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.666698, | |
| -18.966700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ZWE-MDL", | |
| "FIPS_CNTRY": "ZI", | |
| "CNTRY_NAME": "Zimbabwe", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Midlands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gweru", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.750000, | |
| -19.466700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "REU", | |
| "FIPS_CNTRY": "RE", | |
| "CNTRY_NAME": "Reunion", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Reunion", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 47680, | |
| "CITY_NAME": "Saint Denis", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 55.450001, | |
| -20.866699 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ZWE-MSV", | |
| "FIPS_CNTRY": "ZI", | |
| "CNTRY_NAME": "Zimbabwe", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Masvingo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Masvingo", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.500000, | |
| -21.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ZAF-KNT", | |
| "FIPS_CNTRY": "SF", | |
| "CNTRY_NAME": "South Africa", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "KwaZulu\/Natal", | |
| "STATUS": "Other", | |
| "PORT_ID": 46855, | |
| "CITY_NAME": "Richards Bay", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.086277, | |
| -28.783966 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ARG-BAI", | |
| "FIPS_CNTRY": "AR", | |
| "CNTRY_NAME": "Argentina", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Buenos Aires", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 13770, | |
| "CITY_NAME": "La Plata", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -57.950001, | |
| -34.916698 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SJM", | |
| "FIPS_CNTRY": "SV", | |
| "CNTRY_NAME": "Svalbard", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Svalbard and Jan Mayen", | |
| "STATUS": "Other", | |
| "PORT_ID": 20570, | |
| "CITY_NAME": "Longyearbyen", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.660000, | |
| 78.199997 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRL-NRD", | |
| "FIPS_CNTRY": "GL", | |
| "CNTRY_NAME": "Greenland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nordgronland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 1000, | |
| "CITY_NAME": "Thule", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -69.345001, | |
| 77.483002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-YAK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Respublika Sakha(Yakutiya)", | |
| "STATUS": "Other", | |
| "PORT_ID": 62670, | |
| "CITY_NAME": "Tiksi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 128.750000, | |
| 71.699997 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRL-OST", | |
| "FIPS_CNTRY": "GL", | |
| "CNTRY_NAME": "Greenland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ostgronland", | |
| "STATUS": "Other", | |
| "PORT_ID": 40, | |
| "CITY_NAME": "Scoresbyund", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -22.996323, | |
| 70.528572 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-FNN", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Finnmark", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 20690, | |
| "CITY_NAME": "Vadso", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.750999, | |
| 70.082001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-TRM", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Troms", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 21310, | |
| "CITY_NAME": "Tromso", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.954000, | |
| 69.667000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TAY", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Taymyrskiy(Dolgano-Nenetskiy) avt.okrug", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Noril`sk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 88.099998, | |
| 69.330002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-MRM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Murmanskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 62950, | |
| "CITY_NAME": "Murmansk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.085999, | |
| 68.963997 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-NRD", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nordland", | |
| "STATUS": "Other", | |
| "PORT_ID": 22030, | |
| "CITY_NAME": "Narvik", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.299999, | |
| 68.349998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-YAK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Respublika Sakha(Yakutiya)", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Uttyakh", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 133.410004, | |
| 67.580002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-NRD", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nordland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 22290, | |
| "CITY_NAME": "Bodo", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.334249, | |
| 67.240807 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-YMN", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Yamalo-Nenetskiy avtonomnyy okrug", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Salekhard", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 66.580002, | |
| 66.570000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-LAP", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Lappi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rovaniemi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.690001, | |
| 66.490997 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRL-OST", | |
| "FIPS_CNTRY": "GL", | |
| "CNTRY_NAME": "Greenland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ostgronland", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Angmagssalik", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -37.707764, | |
| 65.633026 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-NRR", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Norrbottens", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 27220, | |
| "CITY_NAME": "Lulea", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.219999, | |
| 65.579002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-OUL", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Oulu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 27520, | |
| "CITY_NAME": "Oulu", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.334999, | |
| 64.973000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ALK", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Alaska", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fairbanks", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -147.651184, | |
| 64.838745 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ALK", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Alaska", | |
| "STATUS": "Other", | |
| "PORT_ID": 20400, | |
| "CITY_NAME": "Nome", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -165.270004, | |
| 64.586281 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-ARK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Arkhangel'skaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 62800, | |
| "CITY_NAME": "Arkangel'sk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.646160, | |
| 64.520668 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRL-VST", | |
| "FIPS_CNTRY": "GL", | |
| "CNTRY_NAME": "Greenland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vestgronland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 640, | |
| "CITY_NAME": "Godthab", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -51.580002, | |
| 64.271187 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-NTR", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nord-Trondelag", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23055, | |
| "CITY_NAME": "Steinkjer", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.499000, | |
| 64.014000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-VST", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Vasterbottens", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 26890, | |
| "CITY_NAME": "Umea", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.252001, | |
| 63.824001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-STR", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sor-Trondelag", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23090, | |
| "CITY_NAME": "Trondheim", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.412000, | |
| 63.416000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-JMT", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Jamtlands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ostersund", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.650000, | |
| 63.183300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-VAA", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Vaasa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 27650, | |
| "CITY_NAME": "Vaasa", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.608999, | |
| 63.094002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-KUO", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Kuopio", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kuopio", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.691999, | |
| 62.893002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-MOR", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "More Og Romsdal", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23110, | |
| "CITY_NAME": "Molde", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.164000, | |
| 62.736000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-PKR", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Pohjois-Karjala", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Joensuu", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.778999, | |
| 62.598000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-NTR", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Northwest Territories", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yellowknife", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -114.350998, | |
| 62.456001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-KSU", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Keski-Suomi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jyvaskyla", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.747999, | |
| 62.244999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRO", | |
| "FIPS_CNTRY": "FO", | |
| "CNTRY_NAME": "Faroe Is.", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Faeroe Islands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 32690, | |
| "CITY_NAME": "Torshavn", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -6.770000, | |
| 62.021000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-YAK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Respublika Sakha(Yakutiya)", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yakutsk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 129.830002, | |
| 62.009998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-MKK", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mikkeli", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mikkeli", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.285000, | |
| 61.689999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KOM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Respublika Komi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Syktyvkar", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 50.766666, | |
| 61.666668 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-SOF", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sogn Og Fjordane", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hermansverk", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.850000, | |
| 61.183300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-OPP", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Oppland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lillehammer", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.482000, | |
| 61.119999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-HAM", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hame", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hameenlinna", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.472000, | |
| 60.997002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-KYM", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kymi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kouvola", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.709000, | |
| 60.875999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-HDM", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hedmark", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hamar", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.069000, | |
| 60.820000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-YTR", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Yukon Territory", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Whitehorse", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -135.044006, | |
| 60.726002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-GVL", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Gavleborgs", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 25590, | |
| "CITY_NAME": "Gavle", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.183001, | |
| 60.679001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-HRD", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hordaland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vossavangen", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.441000, | |
| 60.630001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-KPP", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kopparbergs", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Falun", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.647000, | |
| 60.612999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-TJP", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Turku Ja Pori", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 27820, | |
| "CITY_NAME": "Turku", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.259001, | |
| 60.449001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-HRD", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Hordaland", | |
| "STATUS": "Other", | |
| "PORT_ID": 23160, | |
| "CITY_NAME": "Bergen", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.490678, | |
| 60.349998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-UUS", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Uusimaa", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 28190, | |
| "CITY_NAME": "Helsinki", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.976700, | |
| 60.196423 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ALK", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Alaska", | |
| "STATUS": "Other", | |
| "PORT_ID": 19760, | |
| "CITY_NAME": "Seward", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -149.449997, | |
| 60.119999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FIN-AHR", | |
| "FIPS_CNTRY": "FI", | |
| "CNTRY_NAME": "Finland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ahvenanmaa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 27920, | |
| "CITY_NAME": "Mariehamn", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.948999, | |
| 60.097000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-OSL", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Oslo", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 23810, | |
| "CITY_NAME": "Oslo", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.712000, | |
| 59.938000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-SPT", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Leningradskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 28370, | |
| "CITY_NAME": "Saint Petersburg", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.250000, | |
| 59.916668 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-AKR", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Akershus", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Baerum", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.347233, | |
| 59.913483 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-UPP", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Uppsala", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Uppsala", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.646999, | |
| 59.854000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-MAG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Magadanskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 62550, | |
| "CITY_NAME": "Magadan", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 150.833298, | |
| 59.633301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-VSM", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Vastmanlands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 25395, | |
| "CITY_NAME": "Vasteras", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.559000, | |
| 59.617001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-OST", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ostfold", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23830, | |
| "CITY_NAME": "Moss", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.669000, | |
| 59.432999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EST", | |
| "FIPS_CNTRY": "EN", | |
| "CNTRY_NAME": "Estonia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Estonia", | |
| "STATUS": "National capital", | |
| "PORT_ID": 28480, | |
| "CITY_NAME": "Tallinn", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.750000, | |
| 59.416668 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-VRM", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Varmlands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Karlstad", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.511000, | |
| 59.388000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KHA", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Khabarovskiy kray", | |
| "STATUS": "Other", | |
| "PORT_ID": 62540, | |
| "CITY_NAME": "Okhotsk", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 143.247421, | |
| 59.382744 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-ORB", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Orebro", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Orebro", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.229000, | |
| 59.279999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-VST", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vestfold", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23720, | |
| "CITY_NAME": "Tonsberg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.421000, | |
| 59.264000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-VLG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Vologodskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vologda", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.876999, | |
| 59.227001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-TLM", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Telemark", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23680, | |
| "CITY_NAME": "Skien", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.615000, | |
| 59.207001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-RGL", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Rogaland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23480, | |
| "CITY_NAME": "Stavanger", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.695969, | |
| 58.973343 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-SDR", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sodermanlands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 25290, | |
| "CITY_NAME": "Nykoping", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.014999, | |
| 58.764000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-MNT", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Manitoba", | |
| "STATUS": "Other", | |
| "PORT_ID": 1090, | |
| "CITY_NAME": "Churchill", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -94.131897, | |
| 58.748466 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-SKR", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Skaraborgs", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mariestad", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.828000, | |
| 58.705002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KRV", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kirovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vyatka", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 49.700001, | |
| 58.633331 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-NVG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Novgorodskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Novgorod", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.278999, | |
| 58.549000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-AAG", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Aust-Agder", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23600, | |
| "CITY_NAME": "Arendal", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.765999, | |
| 58.464756 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-ALV", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Alvsborgs", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vannersborg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.330000, | |
| 58.362999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ALK", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Alaska", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 19580, | |
| "CITY_NAME": "Juneau", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -134.404007, | |
| 58.303001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NOR-VAG", | |
| "FIPS_CNTRY": "NO", | |
| "CNTRY_NAME": "Norway", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Vest-Agder", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 23550, | |
| "CITY_NAME": "Kristiansand", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.928000, | |
| 58.201000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-PER", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Permskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Perm'", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 56.232464, | |
| 58.000237 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-PSK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Pskovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pskov", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.346001, | |
| 57.817001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KST", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kostromskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kostroma", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.945000, | |
| 57.761002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-GOB", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Goteborgs Och Bohus", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 24020, | |
| "CITY_NAME": "Goteborg", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.793000, | |
| 57.741001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-GTL", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Gotlands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 24950, | |
| "CITY_NAME": "Visby", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.299999, | |
| 57.634998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-YRS", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Yaroslavskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yaroslavl", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.858002, | |
| 57.606998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TYU", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tyumenskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tyumen", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.533333, | |
| 57.150002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-NRD", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Nordjylland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 30400, | |
| "CITY_NAME": "Alborg", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.932000, | |
| 57.035000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-IVN", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Ivanovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ivanovo", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.020000, | |
| 57.012001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-KRN", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kronobergs", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vaxjo", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.822000, | |
| 56.883999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LVA", | |
| "FIPS_CNTRY": "LG", | |
| "CNTRY_NAME": "Latvia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Latvia", | |
| "STATUS": "National capital", | |
| "PORT_ID": 28610, | |
| "CITY_NAME": "Riga", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.049999, | |
| 56.880001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TVR", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tverskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tver", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.916668, | |
| 56.866669 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-UDM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Udmurtskaya Respublika", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Izevsk", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 53.233334, | |
| 56.849998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-SVD", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Sverdlovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sverdlovsk", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 60.610130, | |
| 56.846542 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-KLM", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kalmar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 24570, | |
| "CITY_NAME": "Kalmar", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.368999, | |
| 56.667000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-HLL", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Hallands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 24050, | |
| "CITY_NAME": "Halmstad", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.855000, | |
| 56.661999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-MRL", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Respublika Mariy-El", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yaskar-Ola", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 47.866669, | |
| 56.633331 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TOM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Tomskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tomsk", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 84.971001, | |
| 56.478001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-VBR", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Viborg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Viborg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.417000, | |
| 56.452999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-NZN", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Nizhegorodskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gor'kiy", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.940670, | |
| 56.289677 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-BLK", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Blekinge", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 24460, | |
| "CITY_NAME": "Karlskrona", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.296000, | |
| 56.202999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-ARH", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Arhus", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 30260, | |
| "CITY_NAME": "Arhus", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.212777, | |
| 56.154812 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-CHV", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Chuvashskaya Respublika", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ceboksary", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 47.250000, | |
| 56.150002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-VLD", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Vladimirskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vladimir", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.374001, | |
| 56.146999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-RNG", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ringkobing", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 30630, | |
| "CITY_NAME": "Ringkobing", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.254000, | |
| 56.084000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-KRS", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kristianstads", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kristianstad", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.166000, | |
| 56.028999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KRA", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Krasnoyarskiy kray", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Krasnoyarsk", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 92.833336, | |
| 56.016666 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-FRD", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Frederiksborg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hillerod", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.316700, | |
| 55.933300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-SCT", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Scotland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 31930, | |
| "CITY_NAME": "Edinburgh", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -3.250000, | |
| 55.924000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-SCT", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Scotland", | |
| "STATUS": "Other", | |
| "PORT_ID": 33490, | |
| "CITY_NAME": "Glasgow", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -4.269948, | |
| 55.862808 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-MSC", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Moskovskaya oblast'", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Moscow", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.700001, | |
| 55.750000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TRT", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Respublika Tatarstan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kazan'", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 49.145466, | |
| 55.733006 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-VEJ", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vejle", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 30190, | |
| "CITY_NAME": "Vejle", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.535000, | |
| 55.709000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-RSK", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Roskilde", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 29430, | |
| "CITY_NAME": "Roskilde", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.116700, | |
| 55.650002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SWE-MLM", | |
| "FIPS_CNTRY": "SW", | |
| "CNTRY_NAME": "Sweden", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Malmohus", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 24210, | |
| "CITY_NAME": "Malmo", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.023000, | |
| 55.596001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KUR", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kurganskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kurgan", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.333000, | |
| 55.438999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-VST", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vestsjalland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Soro", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.566700, | |
| 55.432999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-FYN", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Fyn", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 29880, | |
| "CITY_NAME": "Odense", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.392000, | |
| 55.398998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KEM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Kemerovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kemerovo", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 86.054001, | |
| 55.384998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-RIB", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ribe", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ribe", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.783300, | |
| 55.333302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BLR-VTB", | |
| "FIPS_CNTRY": "BO", | |
| "CNTRY_NAME": "Belarus", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Vitebsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vitsyebsk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.221001, | |
| 55.198002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-CHL", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Chelyabinskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chelyabinsk", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 61.393002, | |
| 55.145000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-OMS", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Omskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Omsk", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 73.250000, | |
| 55.063000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-SND", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sonderjylland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 30100, | |
| "CITY_NAME": "Abenra", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.414000, | |
| 55.048000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-NOV", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Novosibirskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Novosibirsk", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 82.943001, | |
| 55.032001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-BSK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Respublika Bashkortostan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ufa", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 56.096001, | |
| 54.821999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-SML", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Smolenskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Smolensk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.036999, | |
| 54.789001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DNK-STR", | |
| "FIPS_CNTRY": "DA", | |
| "CNTRY_NAME": "Denmark", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Storstrom", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 29630, | |
| "CITY_NAME": "Nykobing", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.872000, | |
| 54.772999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KNG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Kaliningradskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 28690, | |
| "CITY_NAME": "Kaliningrad", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.503000, | |
| 54.708000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LTU", | |
| "FIPS_CNTRY": "LH", | |
| "CNTRY_NAME": "Lithuania", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Lithuania", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vilnius", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.275967, | |
| 54.688568 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-RYZ", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Ryazanskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ryazan", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.705002, | |
| 54.598999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-NIR", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Northern Ireland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 33770, | |
| "CITY_NAME": "Belfast", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -5.910000, | |
| 54.587002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KLG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kaluzhskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kaluga", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.278000, | |
| 54.523998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-SLP", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Slupsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Slupsk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.033001, | |
| 54.462002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-GDN", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Gdansk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 28710, | |
| "CITY_NAME": "Gdansk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.625000, | |
| 54.366001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-SHL", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Schleswig-Holstein", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 28930, | |
| "CITY_NAME": "Kiel", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.121000, | |
| 54.325001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-ULY", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Ul'yanovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ul'yanovsk", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 48.362000, | |
| 54.305000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TUL", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Tul'skaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tula", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.609001, | |
| 54.210999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-KSZ", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Koszalin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Koszalin", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.184999, | |
| 54.186001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-MRD", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Respublika Mordoviya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saransk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.167000, | |
| 54.186001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-ELB", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Elblag", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Elblag", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.405001, | |
| 54.159000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "XIM", | |
| "FIPS_CNTRY": "IM", | |
| "CNTRY_NAME": "Isle of Man", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Isle of Man", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 33610, | |
| "CITY_NAME": "Douglas", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -4.479178, | |
| 54.151928 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-SWL", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Suwalki", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Suwalki", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.940001, | |
| 54.103001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BLR-MGL", | |
| "FIPS_CNTRY": "BO", | |
| "CNTRY_NAME": "Belarus", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Mogilev", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mahilyow", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.341999, | |
| 53.910999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BLR-MNS", | |
| "FIPS_CNTRY": "BO", | |
| "CNTRY_NAME": "Belarus", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Minsk", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Minsk", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.575567, | |
| 53.899937 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Leeds", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.497527, | |
| 53.808712 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-OLS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Olsztyn", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Olsztyn", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.492001, | |
| 53.778000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KHK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Respublika Khakasiya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Abakan", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 91.443001, | |
| 53.719002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KEM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Kemerovskaya oblast'", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Novokuznetsk", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 87.169998, | |
| 53.700001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BLR-GRD", | |
| "FIPS_CNTRY": "BO", | |
| "CNTRY_NAME": "Belarus", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Grodno", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hrodna", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.841000, | |
| 53.672001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-HMB", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Hamburg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 30780, | |
| "CITY_NAME": "Hamburg", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.028000, | |
| 53.570999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-ALB", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Alberta", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Edmonton", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -113.508003, | |
| 53.556000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "Other", | |
| "PORT_ID": 34700, | |
| "CITY_NAME": "Manchester", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -2.261779, | |
| 53.479664 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-SZC", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Szczecin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 28823, | |
| "CITY_NAME": "Szczecin", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.531000, | |
| 53.438000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sheffield", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.462989, | |
| 53.374043 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-ALT", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Altayskiy kray", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Barnaul", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 83.750000, | |
| 53.349998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRL-LEN", | |
| "FIPS_CNTRY": "EI", | |
| "CNTRY_NAME": "Ireland", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Leinster", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 34480, | |
| "CITY_NAME": "Dublin", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -6.257347, | |
| 53.341560 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-KKC", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kokchetav", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kokshetau", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.403000, | |
| 53.273998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRL-CNN", | |
| "FIPS_CNTRY": "EI", | |
| "CNTRY_NAME": "Ireland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Connacht", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 34060, | |
| "CITY_NAME": "Galway", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -9.065000, | |
| 53.271000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-BRY", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Bryanskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Klintsy", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.448002, | |
| 53.257000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-GRN", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Groningen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Groningen", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.575000, | |
| 53.219002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-KST", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kustanay", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kostanay", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 63.610001, | |
| 53.202000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-SAM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Samarskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kuybyskev", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 50.150002, | |
| 53.200001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KAM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kamchatskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 62600, | |
| "CITY_NAME": "Petropavloski-Kamchatskiy", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 158.720001, | |
| 53.200001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-FRS", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Friesland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Leeuwarden", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.787000, | |
| 53.199001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-PNZ", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Penzenskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Penza", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.002998, | |
| 53.196999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-LOM", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Lomza", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lomza", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.080999, | |
| 53.172001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-PIL", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Pila", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pila", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.745001, | |
| 53.145000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-BLY", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Bialystok", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bialystok", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.159000, | |
| 53.130001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-BYD", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Bydgoszcz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bydgoszcz", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.028999, | |
| 53.112000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-BRM", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Bremen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 30900, | |
| "CITY_NAME": "Bremen", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.858000, | |
| 53.080002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-OST", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Ostroleka", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ostroleca", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.568001, | |
| 53.080002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-TOR", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Torun", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Torun", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.611000, | |
| 53.011002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-DRN", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Drenthe", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Assen", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.550000, | |
| 53.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-ORL", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Orlovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Orel", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.091999, | |
| 52.994999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-CCH", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ciechanow", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ciechanow", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.622000, | |
| 52.882000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-GRZ", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Gorzow", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gorzow Wielkopolski", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.236000, | |
| 52.736000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TMB", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tambovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tambov", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.417000, | |
| 52.722000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-WLC", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Wloclawek", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Wloclawek", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.066999, | |
| 52.646999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-LPT", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Lipetskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lipetsk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.660000, | |
| 52.618999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-PLC", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Plock", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Plock", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.691999, | |
| 52.544998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-OVR", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Overijssel", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zwolle", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.097000, | |
| 52.523998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-BER", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Berlin", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Berlin", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.327573, | |
| 52.516273 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Birmingham", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.863348, | |
| 52.492752 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BLR-GML", | |
| "FIPS_CNTRY": "BO", | |
| "CNTRY_NAME": "Belarus", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Gomel'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Homyel'", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.980000, | |
| 52.444000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-PZN", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Poznan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Poznan", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.886999, | |
| 52.396000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-BRN", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Brandenburg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Potsdam", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.920000, | |
| 52.395000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-NHL", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Noord-Holland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Haarlem", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.632000, | |
| 52.387001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-NDR", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Niedersachsen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hannover", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.729000, | |
| 52.386002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-NHL", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Noord-Holland", | |
| "STATUS": "National capital", | |
| "PORT_ID": 31060, | |
| "CITY_NAME": "Amsterdam", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.894833, | |
| 52.373043 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-IRK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Irkutskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Irkutsk", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 104.248001, | |
| 52.317001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-PVL", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Pavlodar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pavlodar", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 76.962997, | |
| 52.282001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-WRS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Warszawa", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Warsaw", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.011879, | |
| 52.244946 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-KON", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Konin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Konin", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.252001, | |
| 52.200001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-SDL", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Siedlce", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Siedlce", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.278999, | |
| 52.167999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-SCA", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Sachsen-Anhalt", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Magdeburg", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.609000, | |
| 52.130001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-SSK", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Saskatchewan", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saskatoon", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -106.629997, | |
| 52.110001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-UTR", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Utrecht", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Utrecht", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.112000, | |
| 52.099998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BLR-BRS", | |
| "FIPS_CNTRY": "BO", | |
| "CNTRY_NAME": "Belarus", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Brest", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Brest", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.702999, | |
| 52.096001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-ZHL", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Zuid-Holland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "The Hague", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.281000, | |
| 52.076000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-CHI", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Chitinskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chita", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 113.499001, | |
| 52.044998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-BPD", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Biala Podlaska", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Biala Podlaska", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.127001, | |
| 52.029999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-GLD", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Gelderland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Arnhem", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.923000, | |
| 51.987999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-SKR", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Skierniewice", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Skierniewice", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.142000, | |
| 51.959999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-GAL", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Respublika Altay", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gorno-Altaysk", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 85.967003, | |
| 51.953999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-ZGO", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Zielona Gora", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zielona Gora", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.492000, | |
| 51.942001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-ZHL", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Zuid-Holland", | |
| "STATUS": "Other", | |
| "PORT_ID": 31140, | |
| "CITY_NAME": "Rotterdam", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.485152, | |
| 51.925594 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRL-MUN", | |
| "FIPS_CNTRY": "EI", | |
| "CNTRY_NAME": "Ireland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Munster", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 34360, | |
| "CITY_NAME": "Cork", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.491000, | |
| 51.897999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-BUR", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Respublika Buryatiya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ulan Ude", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 107.565002, | |
| 51.846001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-LSZ", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Leszno", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Leszno", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.566000, | |
| 51.844002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-ORB", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Orenburgskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Orenburg", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 55.106998, | |
| 51.782001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-LOD", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Lodz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lodz", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.476000, | |
| 51.778000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-KLS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kalisz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kalisz", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.083000, | |
| 51.757999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KRS", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kurskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kursk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.174000, | |
| 51.742001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-VRN", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Voronezhskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Voronezh", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.269001, | |
| 51.715000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-TUV", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Respublika Tyva", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kyzyl", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 94.386002, | |
| 51.709999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-NBR", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Noord-Brabant", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "'s-Hertogenbosch", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.316667, | |
| 51.683334 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-SRD", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sieradz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sieradz", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.733000, | |
| 51.596001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-NWS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Nordrhein-Westfalen", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dortmund", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.466418, | |
| 51.513813 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-CHH", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Chernigov", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chernihiv", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.312000, | |
| 51.504002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-ZLN", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Zeeland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 31200, | |
| "CITY_NAME": "Middelburg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.610000, | |
| 51.501999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-SRT", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Saratovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saratov", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.952999, | |
| 51.491001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-NWS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Nordrhein-Westfalen", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Duisburg", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.775304, | |
| 51.489338 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-ENG", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "England", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 31470, | |
| "CITY_NAME": "London", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -0.177998, | |
| 51.487911 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GBR-WLS", | |
| "FIPS_CNTRY": "UK", | |
| "CNTRY_NAME": "United Kingdom", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Wales", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 35010, | |
| "CITY_NAME": "Cardiff", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -3.216667, | |
| 51.483334 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-PTR", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Piotrkow", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Piotrkow Trybunalski", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.691000, | |
| 51.409000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-RAD", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Radom", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Radom", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.158001, | |
| 51.396000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-NWS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Nordrhein-Westfalen", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Essen", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.122435, | |
| 51.354042 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-SCH", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Sachsen", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Leipzig", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.398074, | |
| 51.349331 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-ONT", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ontario", | |
| "STATUS": "Other", | |
| "PORT_ID": 1120, | |
| "CITY_NAME": "Moosonee", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -80.730003, | |
| 51.330002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-LBL", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Lublin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lublin", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.577999, | |
| 51.242001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-NWS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Nordrhein-Westfalen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dusseldorf", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.798000, | |
| 51.241001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-URL", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ural'sk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ural'sk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 51.355999, | |
| 51.223000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-WVL", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "West-Vlaanderen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 31290, | |
| "CITY_NAME": "Bruges", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.220000, | |
| 51.209999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-ANT", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Antwerpen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 31250, | |
| "CITY_NAME": "Antwerpen", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.426000, | |
| 51.207001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-LGN", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Legnica", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Legnica", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.158001, | |
| 51.207001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-TSL", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tselinograd", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Astana", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 71.431999, | |
| 51.188999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-CHL", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Chelm", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chelm", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.496000, | |
| 51.132999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-WRC", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Wroclaw", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Wroclaw", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.038000, | |
| 51.122002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-OVL", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Oost-Vlaanderen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 31270, | |
| "CITY_NAME": "Gent", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.736000, | |
| 51.048000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-SCH", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Sachsen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dresden", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.705000, | |
| 51.046001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-ALB", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Alberta", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Calgary", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -114.050003, | |
| 51.029999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-THR", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Thuringen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Erfurt", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.036000, | |
| 50.976002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-LMB", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Limburg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hasselt", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.484000, | |
| 50.964001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-SUM", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sumy", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sumy", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.833302, | |
| 50.950001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-NWS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Nordrhein-Westfalen", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Cologne", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.934872, | |
| 50.942345 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-JGO", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Jelenia Gora", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jelenia Gora", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.727000, | |
| 50.900002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-KIE", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kielce", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kielce", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.632000, | |
| 50.873001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "NLD-LMB", | |
| "FIPS_CNTRY": "NL", | |
| "CNTRY_NAME": "Netherlands", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Limburg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Maastricht", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.677000, | |
| 50.853001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-CZS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Czestochowa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Czestochowa", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.118999, | |
| 50.810001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-WLB", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Walbrzych", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Walbrzych", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.287001, | |
| 50.749001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-NWS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Nordrhein-Westfalen", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bonn", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.099819, | |
| 50.734558 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-VLY", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Volyn", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kovel'", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.333334, | |
| 50.733334 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-ZMS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Zamosc", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zamosc", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.260000, | |
| 50.726002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-OPO", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Opole", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Opole", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.927999, | |
| 50.669998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-RVN", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Rovno", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rivne", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.166700, | |
| 50.666698 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CZE-SVC", | |
| "FIPS_CNTRY": "EZ", | |
| "CNTRY_NAME": "Czech Republic", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Severocesky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Usti Nad Labem", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.081000, | |
| 50.662998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-NPC", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Nord-Pas-de-Calais", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lille", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.063000, | |
| 50.632000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-LIE", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Liege", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Liege", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.569000, | |
| 50.623001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-BLG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Belgorodskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Belgorod", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.610001, | |
| 50.597000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-TRN", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tarnobrzeg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tarnobrzeg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.680000, | |
| 50.581001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-NAM", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Namur", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Namur", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.868000, | |
| 50.465000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-KYV", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kiev", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kiev", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.502111, | |
| 50.448158 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-SSK", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Saskatchewan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Regina", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -104.615997, | |
| 50.448002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-HAI", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Hainaut", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mons", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.939000, | |
| 50.445999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-SMP", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Semipalatinsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Semipalatinsk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 80.236000, | |
| 50.417000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-CHI", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Chitinskaya oblast'", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chatanga", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 110.750000, | |
| 50.330002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-AMU", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Amurskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Blagoveshchensk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 127.533333, | |
| 50.283333 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-QUE", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Quebec", | |
| "STATUS": "Other", | |
| "PORT_ID": 1955, | |
| "CITY_NAME": "Sept-Iles", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -66.402542, | |
| 50.282547 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-AKB", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Aktyubinsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aktyubinsk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 57.230999, | |
| 50.271000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-KTW", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Katowice", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Katowice", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.000000, | |
| 50.266666 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-ZTM", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Zhitomir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zhytomyra", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.663000, | |
| 50.251999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CZE-VYC", | |
| "FIPS_CNTRY": "EZ", | |
| "CNTRY_NAME": "Czech Republic", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Vychodocesky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hradec Kralove", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.812000, | |
| 50.206001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-HSS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Hessen", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Frankfurt", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.668167, | |
| 50.129997 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CZE-STR", | |
| "FIPS_CNTRY": "EZ", | |
| "CNTRY_NAME": "Czech Republic", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Stredocesky", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Prague", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.457000, | |
| 50.105999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-HSS", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Hessen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Wiesbaden", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.241000, | |
| 50.074001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-KRK", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Krakow", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Krakow", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.945000, | |
| 50.062000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-RZS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Rzeszow", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rzeszow", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.016001, | |
| 50.043999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-TRW", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Tarnow", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tarnow", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.993000, | |
| 50.007000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-RPF", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Rheinland-Pfalz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mainz", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.249000, | |
| 50.001999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-KKV", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Khar'kov", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kharkiv", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.208313, | |
| 49.989674 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-UVS", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Uvs", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ulaangom", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 92.069000, | |
| 49.984001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-MNT", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Manitoba", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Winnipeg", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -97.124001, | |
| 49.921001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-PIC", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Picardie", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Amiens", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.302000, | |
| 49.888000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LUX-DKR", | |
| "FIPS_CNTRY": "LU", | |
| "CNTRY_NAME": "Luxembourg", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Diekirch", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Diekirch", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.166700, | |
| 49.883301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-KRG", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Karaganda", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Karaganda", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 73.202637, | |
| 49.879208 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-LVV", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "L'viv", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "L'viv", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.034521, | |
| 49.837311 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-BLS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bielsko", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bielsko-Biala", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.052999, | |
| 49.820999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CZE-SVM", | |
| "FIPS_CNTRY": "EZ", | |
| "CNTRY_NAME": "Czech Republic", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Severomoravsky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ostrava", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.261999, | |
| 49.819000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-PRZ", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Przemysl", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Przemysl", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.778999, | |
| 49.790001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CZE-ZPD", | |
| "FIPS_CNTRY": "EZ", | |
| "CNTRY_NAME": "Czech Republic", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Zapadocesky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Plzen", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.384000, | |
| 49.745998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LUX-GRV", | |
| "FIPS_CNTRY": "LU", | |
| "CNTRY_NAME": "Luxembourg", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Grevenmacher", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Grevenmacher", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.333300, | |
| 49.700001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-KRS", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Krosno", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Krosno", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.754999, | |
| 49.691002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BEL-LXM", | |
| "FIPS_CNTRY": "BE", | |
| "CNTRY_NAME": "Belgium", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Luxembourg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Arlon", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.816700, | |
| 49.683300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-HVS", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hovsgol", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Moron", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 100.157997, | |
| 49.637001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-TRG", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Turgay", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Turgay", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 63.499001, | |
| 49.625999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "POL-NSA", | |
| "FIPS_CNTRY": "PL", | |
| "CNTRY_NAME": "Poland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Nowy Sacz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nowy Sacz", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.702000, | |
| 49.623001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LUX-LXM", | |
| "FIPS_CNTRY": "LU", | |
| "CNTRY_NAME": "Luxembourg", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Luxembourg", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Luxembourg", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.120000, | |
| 49.608002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-PLT", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Poltava", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Poltava", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.550999, | |
| 49.592999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-TRN", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ternopl'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ternopil'", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.604000, | |
| 49.550999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "XGK", | |
| "FIPS_CNTRY": "GK", | |
| "CNTRY_NAME": "Guernsey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Guernsey", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 36000, | |
| "CITY_NAME": "St. Peter Port", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -2.533300, | |
| 49.450001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-CHK", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Cherkassy", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Cherkasy", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.081001, | |
| 49.444000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-HNR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Haute-Normandie", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 35850, | |
| "CITY_NAME": "Rouen", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 1.077000, | |
| 49.431999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-KML", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Khmel'nitskiy", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Khmel'nyts'kyz", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.999001, | |
| 49.417000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-BNR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Basse-Normandie", | |
| "STATUS": "Other", | |
| "PORT_ID": 35840, | |
| "CITY_NAME": "Le Havre", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 0.220000, | |
| 49.324020 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-BCL", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "British Columbia", | |
| "STATUS": "Other", | |
| "PORT_ID": 18150, | |
| "CITY_NAME": "Vancouver", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -122.963066, | |
| 49.274300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-SRL", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Saarland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saarbrucken", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.045000, | |
| 49.271999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-CHA", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Champagne-Ardenne", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Reims", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.030000, | |
| 49.237999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-VNT", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Vinnitsa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vinnytsya", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.482000, | |
| 49.233002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CZE-JHM", | |
| "FIPS_CNTRY": "EZ", | |
| "CNTRY_NAME": "Czech Republic", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Jihomoravsky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Brno", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.615999, | |
| 49.202999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "XJE", | |
| "FIPS_CNTRY": "JE", | |
| "CNTRY_NAME": "Jersey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Jersey", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 36040, | |
| "CITY_NAME": "St. Helier", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -2.100000, | |
| 49.183300 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-BNR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Basse-Normandie", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 35880, | |
| "CITY_NAME": "Caen", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -0.337000, | |
| 49.174999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CZE-JHC", | |
| "FIPS_CNTRY": "EZ", | |
| "CNTRY_NAME": "Czech Republic", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Jihocesky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ceske Budejovice", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.478000, | |
| 48.973999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-BOL", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bayan-Olgiy", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Olgiy", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 89.967003, | |
| 48.962002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-IVF", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ivano-Frankovsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ivano-frankivs'k", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.716667, | |
| 48.916668 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-IDF", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Ile-del-France", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Paris", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.433000, | |
| 48.882000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-BLG", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bulgan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bulgan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 103.555000, | |
| 48.813999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-BWR", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Baden-Wurttemberg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Stuttgart", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.182000, | |
| 48.790001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SVK-STR", | |
| "FIPS_CNTRY": "LO", | |
| "CNTRY_NAME": "Slovakia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Stredoslovensky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Banska Bystrica", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.150000, | |
| 48.720001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-VGG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Volgogradskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Volgograd", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.484001, | |
| 48.709999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-LOR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Lorraine", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nancy", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.178000, | |
| 48.686001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-LHN", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Lugansk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Luhans'k", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.250000, | |
| 48.633301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-ALS", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Alsace", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Strasbourg", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.768000, | |
| 48.583000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-KVG", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kirovograd", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kirovohrad", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.264999, | |
| 48.507999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-BCL", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "British Columbia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 5760, | |
| "CITY_NAME": "Victoria", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -123.371002, | |
| 48.444000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KHA", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Khabarovskiy kray", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60830, | |
| "CITY_NAME": "Khabarovsk", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 135.126999, | |
| 48.431999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-DNP", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Dnepropetrovsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dnipropetrovs'k", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.138000, | |
| 48.423000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AUT-OBR", | |
| "FIPS_CNTRY": "AU", | |
| "CNTRY_NAME": "Austria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Oberosterreich", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Linz", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.294000, | |
| 48.298000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-CHV", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Chernovtsy", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chernivtsi", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.945000, | |
| 48.282001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SVK-BRS", | |
| "FIPS_CNTRY": "LO", | |
| "CNTRY_NAME": "Slovakia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Bratislava", | |
| "STATUS": "National capital and provincial capital enclave", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bratislava", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.129999, | |
| 48.150002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DEU-BYR", | |
| "FIPS_CNTRY": "GM", | |
| "CNTRY_NAME": "Germany", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Bayern", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Munich", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.542953, | |
| 48.140976 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-BRT", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bretagne", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rennes", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.677000, | |
| 48.118999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-NGR", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nograd", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Salgotarjan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.826000, | |
| 48.105000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-BAZ", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Borsod-Abauj-Zemplen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Miskolc", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.799999, | |
| 48.105000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-DRN", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Dornod", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Choybalsan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 114.505997, | |
| 48.060001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-DNT", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Donetsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Donets'k", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.737053, | |
| 48.040146 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-HOV", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hovd", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hovd", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 91.636002, | |
| 48.005001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-SSZ", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Szabolcs-Szatmar-Bereg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nyiregyhaza", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.722000, | |
| 47.957001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-ULN", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Ulaanbaatar", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ulaanbaatar", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 106.912003, | |
| 47.929001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-CEN", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Centre", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Orleans", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 1.906000, | |
| 47.914001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-HEV", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Heves", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Eger", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.382999, | |
| 47.895000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-ZPR", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Zaporozh'ye", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zaporiyhzhya", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.157001, | |
| 47.854000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AUT-BRG", | |
| "FIPS_CNTRY": "AU", | |
| "CNTRY_NAME": "Austria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Burgenland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Eisenstadt", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.533300, | |
| 47.833302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-DZV", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Dzavhan", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Uliastay", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 97.000000, | |
| 47.810001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AUT-SLZ", | |
| "FIPS_CNTRY": "AU", | |
| "CNTRY_NAME": "Austria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Salzburg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Salzburg", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.052000, | |
| 47.807999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-SMA", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Satu Mare", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Satu Mare", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.885000, | |
| 47.792000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-DZK", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Dzhezkazgan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zhezkazgan", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 67.709999, | |
| 47.780998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BTS", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Botosani", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Botosani", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.667000, | |
| 47.745998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-TOV", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tov", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dzuunmod", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 106.946999, | |
| 47.710999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-SCH", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Schaffhausen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Schaffhausen", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.633000, | |
| 47.706001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-GSP", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Gyor-Moson-Sopron", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gyor", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.638000, | |
| 47.678001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-MRM", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Maramures", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Baia Mare", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.591000, | |
| 47.653999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-SUC", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Suceava", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Suceava", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.316668, | |
| 47.650002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-WSH", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Washington", | |
| "STATUS": "Other", | |
| "PORT_ID": 17730, | |
| "CITY_NAME": "Seattle", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -122.316650, | |
| 47.588554 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-THR", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Thurgau", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Frauenfeld", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.108000, | |
| 47.568001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-NWF", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Newfoundland and Labrador", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 1670, | |
| "CITY_NAME": "Saint John's", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -52.734001, | |
| 47.564999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-KMR", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Komarom-Esztergom", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tatabanya", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.433001, | |
| 47.549999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-BST", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Basel-Stadt", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Basel", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.576000, | |
| 47.547001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-HBI", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Hajdu-Bihar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Debrecen", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.641001, | |
| 47.532001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AUT-VRR", | |
| "FIPS_CNTRY": "AU", | |
| "CNTRY_NAME": "Austria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vorarlberg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bregenz", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.766700, | |
| 47.516701 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-BDP", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Budapest", | |
| "STATUS": "National capital and provincial capital enclave", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Budapest", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.094000, | |
| 47.514999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-BLN", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Basel-Landschaft", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Liestal", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.737000, | |
| 47.483002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-ARH", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Arhangay", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tsetserleg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 101.458000, | |
| 47.458000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-SGL", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Sankt Gallen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saint Gallen", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.362000, | |
| 47.423000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-ZRC", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Zurich", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zurich", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.534000, | |
| 47.401001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-AAR", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Aargau", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aarau", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.034000, | |
| 47.389999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-ASR", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Appenzell Ausser-Rhoden", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Herisau", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.283300, | |
| 47.383301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-JUR", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Jura", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Delemont", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.345000, | |
| 47.369999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-HLN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Heilongjiang", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Qiqihar", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 123.964966, | |
| 47.344006 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-AIR", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Appenzell Inner-Rhoden", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Appenzell", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.416700, | |
| 47.333302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-HNT", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hentiy", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ondorhaan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 110.661003, | |
| 47.330002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-BOR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bourgogne", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dijon", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.036000, | |
| 47.318001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AUT-TIR", | |
| "FIPS_CNTRY": "AU", | |
| "CNTRY_NAME": "Austria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Tirol", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Innsbruck", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.350000, | |
| 47.264999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-FRC", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Franche-Comte", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Besancon", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.018000, | |
| 47.248001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-VAS", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Vas", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Szombathely", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.622000, | |
| 47.236000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-RSV", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Rostovskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44070, | |
| "CITY_NAME": "Rostov-on-Don", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.688000, | |
| 47.231998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-PDL", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Pays de la Loire", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 36900, | |
| "CITY_NAME": "Nantes", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.562000, | |
| 47.219002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-SLT", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Solothurn", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Solothurn", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.537000, | |
| 47.212002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-FEJ", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Fejer", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Szekesfehervar", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.410000, | |
| 47.191002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-ZUG", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Zug", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zug", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.487000, | |
| 47.179001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-SAL", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Salaj", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zalau", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.063000, | |
| 47.174999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-SZL", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Jasz-Nagykun-Szolnok", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Szolnok", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.188000, | |
| 47.169998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-IAS", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Iasi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Iasi", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.584000, | |
| 47.169998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LIE", | |
| "FIPS_CNTRY": "LS", | |
| "CNTRY_NAME": "Liechtenstein", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Liechtenstein", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vaduz", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.521000, | |
| 47.143002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BNA", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Bistrita-Nasaud", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bistrita", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.513000, | |
| 47.138000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-GRV", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Gur'yev", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Atyrau", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 51.933334, | |
| 47.116669 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-VSZ", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Veszprem", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Veszprem", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.910999, | |
| 47.091000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AUT-STR", | |
| "FIPS_CNTRY": "AU", | |
| "CNTRY_NAME": "Austria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Steiermark", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Graz", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.431000, | |
| 47.064999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-LZR", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Luzern", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Luzern", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.303000, | |
| 47.057999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BIH", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bihor", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Oradea", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.941999, | |
| 47.057999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-GLR", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Glarus", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Glarus", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.066700, | |
| 47.049999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-WSH", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Washington", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 17660, | |
| "CITY_NAME": "Olympia", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -122.891998, | |
| 47.043999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-SCW", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Schwyz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Schwyz", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.648000, | |
| 47.020000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MDA", | |
| "FIPS_CNTRY": "MD", | |
| "CNTRY_NAME": "Moldova", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Moldova", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chisinau", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.830000, | |
| 47.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-NCH", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Neuchatel", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Neuchatel", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.923000, | |
| 46.999001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-MKL", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nikolayev", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mykolayiv", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.000000, | |
| 46.966702 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-SAK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sakhalinskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yuzhno-Sakhalinsk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 142.750000, | |
| 46.959999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-NDW", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nidwalden", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Stans", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.383300, | |
| 46.950001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-BER", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bern", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bern", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.446000, | |
| 46.948002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-NEA", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Neamt", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Piatra-Neamt", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.382999, | |
| 46.939999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-BKS", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bacs-Kiskun", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kecskemet", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.693001, | |
| 46.905998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-OBW", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Obwalden", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sarnen", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.243000, | |
| 46.898998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-URI", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Uri", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Altdorf", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.638000, | |
| 46.879002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-GRB", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Graubunden", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chur", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.535000, | |
| 46.856998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-ZAL", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Zala", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zalaegerszeg", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.840000, | |
| 46.844002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-QUE", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Quebec", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 2180, | |
| "CITY_NAME": "Quebec", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -71.245003, | |
| 46.801998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-FRB", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Fribourg", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fribourg", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.150000, | |
| 46.799999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SPM", | |
| "FIPS_CNTRY": "SB", | |
| "CNTRY_NAME": "St. Pierre & Miquelon", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "St. Pierre & Miquelon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saint-Pierre", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -56.194000, | |
| 46.785999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-CLU", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Cluj", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Cluj-Napoca", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.600000, | |
| 46.777000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-SHB", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Suhbaatar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Baruun Urt", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 113.279999, | |
| 46.679001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-BEK", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Bekes", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bekescsaba", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.101000, | |
| 46.672001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-VAS", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Vaslui", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vaslui", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.733334, | |
| 46.633331 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AUT-KRN", | |
| "FIPS_CNTRY": "AU", | |
| "CNTRY_NAME": "Austria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Karnten", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Klagenfurt", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.304000, | |
| 46.618000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MNT", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Montana", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Helena", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -112.035004, | |
| 46.596001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-PCH", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Poitou-Charentes", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Poitiers", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 0.340000, | |
| 46.584999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BAC", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bacau", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bacau", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.924999, | |
| 46.570999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-MUR", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Mures", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Targu-Mures", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.566999, | |
| 46.542999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-KRN", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kherson", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43680, | |
| "CITY_NAME": "Kherson", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.541000, | |
| 46.537998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-VAU", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Vaud", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lausanne", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.623000, | |
| 46.525002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UKR-ODS", | |
| "FIPS_CNTRY": "UP", | |
| "CNTRY_NAME": "Ukraine", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Odessa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43650, | |
| "CITY_NAME": "Odesa", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.733334, | |
| 46.466667 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-SMG", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Somogy", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kaposvar", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 17.794001, | |
| 46.361000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-HRG", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Harghita", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Miercurea-Cuic", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.524000, | |
| 46.361000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-TOL", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tolna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Szekszard", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.712999, | |
| 46.344002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-OVR", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ovorhangay", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Arvayheer", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 102.772003, | |
| 46.268002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-CSN", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Csongrad", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Szeged", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.157000, | |
| 46.256001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-AST", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Astrakhanskaya oblast'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Astrakhan", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 48.000000, | |
| 46.250000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-PEI", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Prince Edward Island", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 5750, | |
| "CITY_NAME": "Charlottetown", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -63.139442, | |
| 46.240608 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-VAL", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Valais", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sion", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.354000, | |
| 46.238998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-GEN", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Geneve", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Geneva", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.134000, | |
| 46.202000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHE-TIC", | |
| "FIPS_CNTRY": "SZ", | |
| "CNTRY_NAME": "Switzerland", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ticino", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bellinzona", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.020000, | |
| 46.196999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-ARA", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Arad", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Arad", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.326000, | |
| 46.189999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-ALB", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Alba", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Alba Lulia", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.580000, | |
| 46.077000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HUN-BRN", | |
| "FIPS_CNTRY": "HU", | |
| "CNTRY_NAME": "Hungary", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Baranya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pecs", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.225000, | |
| 46.075001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SVN", | |
| "FIPS_CNTRY": "SI", | |
| "CNTRY_NAME": "Slovenia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Slovenia", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ljubljana", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.639612, | |
| 46.068302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-TAA", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Trentino-Alto Adige", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Trento", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.120000, | |
| 46.068001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-NBR", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "New Brunswick", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fredericton", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -66.656998, | |
| 45.945000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-HND", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Hunedoara", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Deva", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.916668, | |
| 45.883331 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-CVS", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Covasna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sfintu-Gheorghe", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.792999, | |
| 45.868000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-LIM", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Limousin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Limoges", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 1.252000, | |
| 45.831001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "HRV", | |
| "FIPS_CNTRY": "HR", | |
| "CNTRY_NAME": "Croatia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Croatia", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zagreb", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.964000, | |
| 45.806999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-SIB", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sibiu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sibiu", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.143000, | |
| 45.786999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-AVR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Auvergne", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Clermont-Ferrand", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.091000, | |
| 45.784000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-DND", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Dundgovi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mandalgovi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 106.264999, | |
| 45.761002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-TIM", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Timis", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Timisoara", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.238001, | |
| 45.756001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-HLN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Heilongjiang", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Harbin", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 126.623001, | |
| 45.755001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-RHA", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Rhone-Alpes", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lyon", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.855000, | |
| 45.747002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-VDA", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Valle d'Aosta", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aosta", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.315000, | |
| 45.737000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-VRN", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Vrancea", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Focsani", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.188999, | |
| 45.701000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BRS", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Brasov", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Brasov", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.611000, | |
| 45.655998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-FVG", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Friuli-Venezia Giulia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 40820, | |
| "CITY_NAME": "Trieste", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.777000, | |
| 45.645000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-QUE", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Quebec", | |
| "STATUS": "Other", | |
| "PORT_ID": 2235, | |
| "CITY_NAME": "Montreal", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -73.653534, | |
| 45.541016 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-LMB", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Lombardia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Milan", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.190000, | |
| 45.473000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ORE", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Oregon", | |
| "STATUS": "Other", | |
| "PORT_ID": 16940, | |
| "CITY_NAME": "Portland", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -122.641678, | |
| 45.442131 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-GAL", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Galati", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43600, | |
| "CITY_NAME": "Galati", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.049999, | |
| 45.433334 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-VEN", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Veneto", | |
| "STATUS": "Other", | |
| "PORT_ID": 40760, | |
| "CITY_NAME": "Venice", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.370720, | |
| 45.424774 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-ONT", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Ontario", | |
| "STATUS": "National capital", | |
| "PORT_ID": 2520, | |
| "CITY_NAME": "Ottawa", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -75.651001, | |
| 45.374001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BRA", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Braila", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43590, | |
| "CITY_NAME": "Braila", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.969000, | |
| 45.292000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-CSV", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Caras-Severin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Resita", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.892000, | |
| 45.291000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-TUL", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Tulcea", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tulcea", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.806000, | |
| 45.180000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BUZ", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Buzau", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Buzau", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.823000, | |
| 45.147999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-VIL", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Vilcea", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rimnicu Vilcea", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.382999, | |
| 45.110001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-PMN", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Piemonte", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Turin", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.666426, | |
| 45.074875 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-STV", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Stavropol'skiy kray", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Stavropol", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.963001, | |
| 45.058998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-GOR", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Gorj", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Targu Jiu", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.274000, | |
| 45.044998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MNN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Minnesota", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saint Paul", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -93.065002, | |
| 45.021000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-TKG", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Taldy Kurgan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Taldykorgan", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 78.377998, | |
| 45.013000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ORE", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Oregon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 7225, | |
| "CITY_NAME": "Salem", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -122.990997, | |
| 44.956001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-DMB", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Dimbovita", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Targoviste", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.459000, | |
| 44.938000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-PRH", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Prahova", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ploiesti", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.037001, | |
| 44.936001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MNN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Minnesota", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Minneapolis", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -93.307793, | |
| 44.924187 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MNG-DRG", | |
| "FIPS_CNTRY": "MG", | |
| "CNTRY_NAME": "Mongolia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Dornogovi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saynshand", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 110.116997, | |
| 44.884998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-KZO", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kzyl-Orda", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kyzylorda", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.483002, | |
| 44.867001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-ARG", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Arges", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pitesti", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.882999, | |
| 44.854000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-AQT", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Aquitaine", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 37190, | |
| "CITY_NAME": "Bordeaux", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -0.599000, | |
| 44.841000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-NSC", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Nova Scotia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 6430, | |
| "CITY_NAME": "Halifax", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -63.651001, | |
| 44.680000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-MHD", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mehedinti", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Drobeta- Turmu Sererin", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.656000, | |
| 44.638000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-ADY", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Respublika Adygeya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Majkop", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.088001, | |
| 44.603001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-ILM", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Ialomita", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Slobozia", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.382000, | |
| 44.570000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-ERM", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Emilia-Romagna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bologna", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.334000, | |
| 44.502998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-OLT", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Olt", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Slatina", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.371000, | |
| 44.435001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-BUC", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Bucuresti", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bucharest", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.122976, | |
| 44.430485 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-LIG", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Liguria", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 39470, | |
| "CITY_NAME": "Genoa", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.883000, | |
| 44.412998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-DOL", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Dolj", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Craiova", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.813000, | |
| 44.325001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MAI", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Maine", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 7120, | |
| "CITY_NAME": "Augusta", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -69.772003, | |
| 44.320999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-VRM", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vermont", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Montpelier", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -72.580002, | |
| 44.262001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-CLR", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Calarasi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Calarasi", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.410999, | |
| 44.203999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-CNS", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Constanta", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43560, | |
| "CITY_NAME": "Constanta", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.631001, | |
| 44.132999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-GIU", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Giurgiu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Giurgiu", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.840000, | |
| 43.930000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SMR", | |
| "FIPS_CNTRY": "SM", | |
| "CNTRY_NAME": "San Marino", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "San Marino", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "San Marino", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.466667, | |
| 43.916668 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ROM-TLR", | |
| "FIPS_CNTRY": "RO", | |
| "CNTRY_NAME": "Romania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Teleorman", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Alexandria", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.286711, | |
| 43.901623 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-JIL", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Jilin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Changchun", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 125.313004, | |
| 43.881001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BIH", | |
| "FIPS_CNTRY": "BK", | |
| "CNTRY_NAME": "Bosnia & Herzegovina", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Bosnia & Herzegovina", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sarajevo", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 18.430000, | |
| 43.869999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-JIL", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Jilin", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jilin", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 126.567062, | |
| 43.850216 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-XNJ", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Xinjiang", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Urumqi", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 87.586998, | |
| 43.783001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-TSC", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Toscana", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Florence", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.207746, | |
| 43.781574 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MCO", | |
| "FIPS_CNTRY": "MN", | |
| "CNTRY_NAME": "Monaco", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Monaco", | |
| "STATUS": "National capital", | |
| "PORT_ID": 39025, | |
| "CITY_NAME": "Monaco Ville", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.424000, | |
| 43.744999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CAN-ONT", | |
| "FIPS_CNTRY": "CA", | |
| "CNTRY_NAME": "Canada", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Ontario", | |
| "STATUS": "Other", | |
| "PORT_ID": 3000, | |
| "CITY_NAME": "Toronto", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -79.412636, | |
| 43.720768 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-MRC", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Marche", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 40660, | |
| "CITY_NAME": "Ancona", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.516000, | |
| 43.620998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-LNR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Languedoc-Roussillon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Montpellier", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.867000, | |
| 43.613998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-MPY", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Midi-Pyrenees", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Toulouse", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 1.438000, | |
| 43.599998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BGR-RZG", | |
| "FIPS_CNTRY": "BU", | |
| "CNTRY_NAME": "Bulgaria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Razgrad", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Razgrad", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.535999, | |
| 43.534000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-KBK", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kabardino-Balkarskaya Resp.", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nal'chik", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.285999, | |
| 43.481998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-CNT", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Cantabria", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 37470, | |
| "CITY_NAME": "Santander", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -3.800538, | |
| 43.462612 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BGR-MKH", | |
| "FIPS_CNTRY": "BU", | |
| "CNTRY_NAME": "Bulgaria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Mikhaylovgrad", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Montana", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.237000, | |
| 43.414001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-AST", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Asturias", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Oviedo", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -5.847000, | |
| 43.368999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-CHG", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Chechenskaya Respublika", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Groznyy", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.683998, | |
| 43.311001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-PAC", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Provence-Alpes-Cote d'Azur", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38810, | |
| "CITY_NAME": "Marseille", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.385000, | |
| 43.285000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-ALA", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Alma-Ata", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Almaty", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 76.912628, | |
| 43.255062 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NYO", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "New York", | |
| "STATUS": "Other", | |
| "PORT_ID": 3200, | |
| "CITY_NAME": "Rochester", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -77.635612, | |
| 43.210464 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NHM", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "New Hampshire", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Concord", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -71.543999, | |
| 43.206001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BGR-VAR", | |
| "FIPS_CNTRY": "BU", | |
| "CNTRY_NAME": "Bulgaria", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Varna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43510, | |
| "CITY_NAME": "Varna", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.907000, | |
| 43.206001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BGR-LVC", | |
| "FIPS_CNTRY": "BU", | |
| "CNTRY_NAME": "Bulgaria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Lovech", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lovec", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 24.719000, | |
| 43.138000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-PRM", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Primorskiy kray", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60610, | |
| "CITY_NAME": "Vladivostok", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 131.960434, | |
| 43.130001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-UMB", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Umbria", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Perugia", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.385000, | |
| 43.112999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-WIS", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Wisconsin", | |
| "STATUS": "Other", | |
| "PORT_ID": 4860, | |
| "CITY_NAME": "Milwaukee", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -87.990738, | |
| 43.067947 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-WIS", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Wisconsin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Madison", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -89.400002, | |
| 43.066666 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-HKK", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Hokkaido", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sapporo", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 141.345993, | |
| 43.055000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-NOS", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Respublika Severnaya Osetiya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vladikavkaz", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.666668, | |
| 43.049999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GEO-ABK", | |
| "FIPS_CNTRY": "GG", | |
| "CNTRY_NAME": "Georgia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Abkhazia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sokhumi", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.988998, | |
| 43.007000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "RUS-DGS", | |
| "FIPS_CNTRY": "RS", | |
| "CNTRY_NAME": "Russia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Respublika Dagestan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Machackala", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 47.511002, | |
| 42.976002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NYO", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "New York", | |
| "STATUS": "Other", | |
| "PORT_ID": 3430, | |
| "CITY_NAME": "Buffalo", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -78.848434, | |
| 42.898663 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-GLC", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Galicia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Santiago De Compostela", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.541000, | |
| 42.880001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KGZ-BSK", | |
| "FIPS_CNTRY": "KG", | |
| "CNTRY_NAME": "Kyrgyzstan", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Bishkek", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bishkek", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 74.769997, | |
| 42.880001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-NVR", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Navarra", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pamplona", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.653000, | |
| 42.813000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MCH", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Michigan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lansing", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -84.557999, | |
| 42.726002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NYO", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "New York", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 7720, | |
| "CITY_NAME": "Albany", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -73.768997, | |
| 42.659000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BGR-BRG", | |
| "FIPS_CNTRY": "BU", | |
| "CNTRY_NAME": "Bulgaria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Burgas", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43500, | |
| "CITY_NAME": "Burgas", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.464001, | |
| 42.528000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KGZ-TLS", | |
| "FIPS_CNTRY": "KG", | |
| "CNTRY_NAME": "Kyrgyzstan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Talas", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Talas", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 72.237000, | |
| 42.514999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AND", | |
| "FIPS_CNTRY": "AN", | |
| "CNTRY_NAME": "Andorra", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Andorra", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Andorra La Valla", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 1.516667, | |
| 42.500000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KGZ-ISK", | |
| "FIPS_CNTRY": "KG", | |
| "CNTRY_NAME": "Kyrgyzstan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Issyk-Kul'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Karakol", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 78.389999, | |
| 42.480000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-KRK", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Karakalpakstan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nukus", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 59.616699, | |
| 42.466702 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-LJR", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "La Rioja", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Logrono", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -2.446000, | |
| 42.466000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MCH", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Michigan", | |
| "STATUS": "Other", | |
| "PORT_ID": 3620, | |
| "CITY_NAME": "Detroit", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -83.078926, | |
| 42.394314 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MSS", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Massachusetts", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 7250, | |
| "CITY_NAME": "Boston", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -71.102997, | |
| 42.375000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-ABR", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Abruzzi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aquila", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.410811, | |
| 42.359440 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-TRP", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tropoje", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bajram Curri", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.083300, | |
| 42.333302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KAZ-CHM", | |
| "FIPS_CNTRY": "KZ", | |
| "CNTRY_NAME": "Kazakhstan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Chimkent", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Shymkent", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.572998, | |
| 42.303001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-KUK", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kukes", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kukes", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.434000, | |
| 42.083000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-SHK", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Shkoder", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Shkoder", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.528000, | |
| 42.074001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-PUK", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Puke", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Puke", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.883301, | |
| 42.033298 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-SIN", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sinop", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44460, | |
| "CITY_NAME": "Sinop", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.153000, | |
| 42.022999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MKD", | |
| "FIPS_CNTRY": "MK", | |
| "CNTRY_NAME": "Macedonia", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Macedonia", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Skopje", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.433332, | |
| 41.983334 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "FRA-COR", | |
| "FIPS_CNTRY": "FR", | |
| "CNTRY_NAME": "France", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Corse", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 39100, | |
| "CITY_NAME": "Ajaccio", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.662000, | |
| 41.960999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BGR-KHS", | |
| "FIPS_CNTRY": "BU", | |
| "CNTRY_NAME": "Bulgaria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Khaskovo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kurdzhali", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.568001, | |
| 41.936001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-LAZ", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Lazio", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 39820, | |
| "CITY_NAME": "Rome", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.520000, | |
| 41.880001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-LNN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Liaoning", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fushun", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 123.905998, | |
| 41.859001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TKM-TSH", | |
| "FIPS_CNTRY": "TX", | |
| "CNTRY_NAME": "Turkmenistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Tashauz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dashkhovuz", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 59.957001, | |
| 41.834000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ILL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Illinois", | |
| "STATUS": "Other", | |
| "PORT_ID": 4800, | |
| "CITY_NAME": "Chicago", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -87.641304, | |
| 41.826546 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-RHI", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Rhode Island", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 7420, | |
| "CITY_NAME": "Providence", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -71.426003, | |
| 41.816002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-BRG", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Braganca", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Braganca", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -6.755000, | |
| 41.807999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-LNN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Liaoning", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Shenyang", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 123.383057, | |
| 41.802162 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-LEZ", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Lezhe", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lezhe", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.653999, | |
| 41.787998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-HBU", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Hamgyong-bukto", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60500, | |
| "CITY_NAME": "Ch'ongjin", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 129.783997, | |
| 41.784000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-MRD", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mirdite", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rreshen", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.816700, | |
| 41.783298 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-CNN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Connecticut", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hartford", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -72.703003, | |
| 41.759998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KRK", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kirklareli", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kirklareli", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.226000, | |
| 41.743000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GEO-TBL", | |
| "FIPS_CNTRY": "GG", | |
| "CNTRY_NAME": "Georgia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "T'bilisi", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "T'Bilisi", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.783127, | |
| 41.721809 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-VDC", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Viana do Castelo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 37940, | |
| "CITY_NAME": "Viana Do Castelo", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.844134, | |
| 41.696239 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-EDR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Edirne", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Edirne", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.562000, | |
| 41.681999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-ARG", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Aragon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zaragoza", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -0.878000, | |
| 41.651001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-CYL", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Castilla y Leon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Valladolid", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -4.721000, | |
| 41.650002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GEO-AJR", | |
| "FIPS_CNTRY": "GG", | |
| "CNTRY_NAME": "Georgia", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ajaria", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44350, | |
| "CITY_NAME": "Bat'umi", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.633331, | |
| 41.633331 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-MAT", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Burrel", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.016001, | |
| 41.625999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-IOW", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Iowa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Des Moines", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -93.622002, | |
| 41.598000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-KHR", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Khorezm", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Urgench", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 60.683300, | |
| 41.583302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-MOL", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Molise", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Campobasso", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.656000, | |
| 41.563000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-BRA", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Braga", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Braga", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.427000, | |
| 41.544998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-KRU", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kruje", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kruje", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.797001, | |
| 41.519001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ZNG", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Zonguldak", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44490, | |
| "CITY_NAME": "Zonguldak", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.799000, | |
| 41.456001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KGZ-NRN", | |
| "FIPS_CNTRY": "KG", | |
| "CNTRY_NAME": "Kyrgyzstan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Naryn", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Naryn", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 75.998001, | |
| 41.424999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-OHI", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Ohio", | |
| "STATUS": "Other", | |
| "PORT_ID": 3490, | |
| "CITY_NAME": "Cleveland", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -81.727509, | |
| 41.390717 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-YDO", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Yanggang-do", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hyesan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 128.168793, | |
| 41.389812 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KST", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Kastamonu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kastamonu", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.783001, | |
| 41.389000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-CTL", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Cataluna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38550, | |
| "CITY_NAME": "Barcelona", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.159000, | |
| 41.358002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-TIR", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Tirane", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tirana", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.832001, | |
| 41.332001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-DRR", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Durres", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 41670, | |
| "CITY_NAME": "Durres", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.454000, | |
| 41.327000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-VRE", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vila Real", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Vila Real", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.737000, | |
| 41.293999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-SMS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Samsun", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44450, | |
| "CITY_NAME": "Samsun", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.331001, | |
| 41.292999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-TSK", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Tashkent", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tashkent", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.349869, | |
| 41.247932 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-LBR", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Librazhd", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Librazhd", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.366699, | |
| 41.200001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ART", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Artvin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Coruh", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.818001, | |
| 41.182999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-POR", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Porto", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 37960, | |
| "CITY_NAME": "Porto", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.585000, | |
| 41.166000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-WYM", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Wyoming", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Cheyenne", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -104.814003, | |
| 41.133999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-ELB", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Elbasan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Elbasan", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.093000, | |
| 41.117001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-LNN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Liaoning", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Anshan", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 122.977013, | |
| 41.115246 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-IST", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Istanbul", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43420, | |
| "CITY_NAME": "Istanbul", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.006001, | |
| 41.066002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-RIZ", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Rize", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44380, | |
| "CITY_NAME": "Rize", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.522999, | |
| 41.020000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-TRB", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Trabzon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44390, | |
| "CITY_NAME": "Trabzon", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.717999, | |
| 41.000999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-NMG", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Namangan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Namangan", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 71.680000, | |
| 40.999001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-TKR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Tekirdag", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43390, | |
| "CITY_NAME": "Tekirdag", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.516666, | |
| 40.984692 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ORD", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ordu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44420, | |
| "CITY_NAME": "Ordu", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.875999, | |
| 40.984001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-CDO", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Chagang-do", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kanggye", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 126.596001, | |
| 40.969002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-LSH", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Lushnje", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lushnje", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.716000, | |
| 40.939999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-GRS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Giresun", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44410, | |
| "CITY_NAME": "Giresun", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 38.389999, | |
| 40.912998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-PGR", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Pogradec", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Pogradec", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.664000, | |
| 40.900002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-GRM", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Gramsh", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gramsh", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.200001, | |
| 40.866699 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-CMP", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Campania", | |
| "STATUS": "Other", | |
| "PORT_ID": 39960, | |
| "CITY_NAME": "Naples", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.250025, | |
| 40.833366 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-THO", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tohoku", | |
| "STATUS": "Other", | |
| "PORT_ID": 61270, | |
| "CITY_NAME": "Aomori", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 140.750000, | |
| 40.816666 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-NMN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Nei Mongol", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Huhot", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 111.649002, | |
| 40.813999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NEB", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Nebraska", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lincoln", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -96.681999, | |
| 40.806999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-AND", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Andizhan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Andizhan", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 72.345001, | |
| 40.793999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KOC", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kocaeli", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44620, | |
| "CITY_NAME": "Kocaeli", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.923000, | |
| 40.773998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-SKR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sakarya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sakarya", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.400000, | |
| 40.766666 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-BOL", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Bolu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bolu", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.612000, | |
| 40.738998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-FIE", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Fier", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fier", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.573000, | |
| 40.730000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NJR", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "New Jersey", | |
| "STATUS": "Other", | |
| "PORT_ID": 7810, | |
| "CITY_NAME": "Newark", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -74.199997, | |
| 40.720001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-BER", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Berat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Berat", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.972000, | |
| 40.709999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NYO", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "New York", | |
| "STATUS": "Other", | |
| "PORT_ID": 7640, | |
| "CITY_NAME": "New York", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -73.905235, | |
| 40.707859 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-UTA", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Utah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Salt Lake City", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -111.891998, | |
| 40.693001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-VIS", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Viseu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Viseu", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.910000, | |
| 40.657001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-AMS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Amasya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Amasya", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.834999, | |
| 40.650002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-BSL", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Basilicata", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Potenza", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.799000, | |
| 40.641998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-AVE", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Aveiro", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 37970, | |
| "CITY_NAME": "Aveiro", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.651000, | |
| 40.640999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-MCD", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Macedonia", | |
| "STATUS": "Other", | |
| "PORT_ID": 42530, | |
| "CITY_NAME": "Thessaloniki", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.799999, | |
| 40.630001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-KOR", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Korce", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Korce", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.766666, | |
| 40.616669 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-CNR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Cankiri", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Cankiri", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.620998, | |
| 40.606998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KAR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Kars", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kars", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.077999, | |
| 40.592999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-COR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Corum", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Corum", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.964001, | |
| 40.554001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-GUA", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Guarda", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Guarda", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.262000, | |
| 40.541000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KGZ-OSH", | |
| "FIPS_CNTRY": "KG", | |
| "CNTRY_NAME": "Kyrgyzstan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Osh", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Osh", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 72.799004, | |
| 40.523998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-SKR", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Skrapar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Corovode", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.233299, | |
| 40.516701 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-SRD", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Syrdar'ya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gulistan", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.783302, | |
| 40.516701 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-PEN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Pennsylvania", | |
| "STATUS": "Other", | |
| "PORT_ID": 16510, | |
| "CITY_NAME": "Pittsburgh", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -79.997086, | |
| 40.497204 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-VLO", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Vlore", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 41690, | |
| "CITY_NAME": "Vlore", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.490000, | |
| 40.472000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-GMS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Gumshane", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gumushane", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.484001, | |
| 40.464001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-MDR", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Madrid", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Madrid", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -3.690969, | |
| 40.442219 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-FRG", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Fergana", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fergana", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 71.786003, | |
| 40.386002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-MCD", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Macedonia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Polygyros", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 23.452999, | |
| 40.381001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AZE-BAK", | |
| "FIPS_CNTRY": "AJ", | |
| "CNTRY_NAME": "Azerbaijan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Baku", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Baku", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 49.816002, | |
| 40.324001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-TOK", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Tokat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tokat", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.563000, | |
| 40.306000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-TPL", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tepelene", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tepelene", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.033300, | |
| 40.283298 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-PEN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Pennsylvania", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Harrisburg", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -76.903999, | |
| 40.264999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-PRM", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Permet", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Permet", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.351999, | |
| 40.234001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NJR", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "New Jersey", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 8160, | |
| "CITY_NAME": "Trenton", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -74.780998, | |
| 40.224998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-CMB", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Coimbra", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Coimbra", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.416000, | |
| 40.213001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ARM", | |
| "FIPS_CNTRY": "AM", | |
| "CNTRY_NAME": "Armenia", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Armenia", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yerevan", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.532669, | |
| 40.208023 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-BUR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Bursa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bursa", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.075001, | |
| 40.195999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-CNK", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Canakkale", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44690, | |
| "CITY_NAME": "Canakkale", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.414000, | |
| 40.154999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-BLC", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bilecik", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bilecik", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.983000, | |
| 40.150002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-DZH", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Dzhizak", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dzhizak", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 67.842003, | |
| 40.098999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-PBU", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "P'yongan-bukto", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sinuiju", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 124.402000, | |
| 40.096001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-GJR", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Gjirokaster", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gjirokaster", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.149000, | |
| 40.078999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-NAV", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Navoi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Navoi", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.333298, | |
| 40.066700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-OHI", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Ohio", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Columbus", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -82.992996, | |
| 40.044998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TKM-KRS", | |
| "FIPS_CNTRY": "TX", | |
| "CNTRY_NAME": "Turkmenistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Krasnovodsk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Turkmenbashi", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 52.958000, | |
| 40.025002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ANK", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Ankara", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ankara", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.853001, | |
| 39.929001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-PEN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Pennsylvania", | |
| "STATUS": "Other", | |
| "PORT_ID": 8110, | |
| "CITY_NAME": "Philadelphia", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -75.218224, | |
| 39.927551 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-HNA", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Hamgyong-namdo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hamhung", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 127.557999, | |
| 39.914001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-BJN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Beijing", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Beijing", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 116.388039, | |
| 39.906193 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ERR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Erzurum", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Erzurum", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.292000, | |
| 39.903999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ALB-SRN", | |
| "FIPS_CNTRY": "AL", | |
| "CNTRY_NAME": "Albania", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sarande", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sarande", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.000000, | |
| 39.876999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-CLM", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Castilla-La Mancha", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Toledo", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -4.028000, | |
| 39.859001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-YZG", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Yozgat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yozgat", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.814999, | |
| 39.818001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-IND", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Indiana", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Indianapolis", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -86.135002, | |
| 39.813999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-CBR", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Castelo Branco", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Castelo Branco", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.488000, | |
| 39.811001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ILL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Illinois", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Springfield", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -89.653999, | |
| 39.793999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ESK", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Eskisehir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Eskisehir", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.518999, | |
| 39.784000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-BKH", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bukhara", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bukhara", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 64.421997, | |
| 39.765999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-SIV", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sivas", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sivas", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.018002, | |
| 39.748001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ERZ", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Erzincan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Erzincan", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.505001, | |
| 39.740002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-LEI", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Leiria", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Leiria", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.805000, | |
| 39.738998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-AGR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Agri", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Agri", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.062000, | |
| 39.723999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-IPR", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Ipiros", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ioannina", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.853001, | |
| 39.658001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-SMK", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Samarkand", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Samarkand", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 66.947998, | |
| 39.658001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-BLK", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Balikesir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Balikesir", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.882999, | |
| 39.647999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-THS", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Thessalia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Larisa", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.419001, | |
| 39.639999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-IIS", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ionian Islands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 41720, | |
| "CITY_NAME": "Kerkya", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 19.920000, | |
| 39.619999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-HEB", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Hebei", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tangshan", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 118.180214, | |
| 39.615444 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-COL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Colorado", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Denver", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -105.079002, | |
| 39.577999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-BLR", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Isles Baleares", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38630, | |
| "CITY_NAME": "Palma De Mallorca", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.650000, | |
| 39.566700 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-PNA", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "P'yongan-namdo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sin-Ni", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 125.463997, | |
| 39.487999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-XNJ", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Xinjiang", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kashi", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 76.000000, | |
| 39.480000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-VLN", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Valenciana", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38480, | |
| "CITY_NAME": "Valencia", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -0.367000, | |
| 39.471001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KTH", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kutahya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kutahya", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.980000, | |
| 39.418999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MRY", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Maryland", | |
| "STATUS": "Other", | |
| "PORT_ID": 8210, | |
| "CITY_NAME": "Baltimore", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -76.618378, | |
| 39.321884 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-PRT", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Portalegre", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Portalegre", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.423000, | |
| 39.290001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-SNT", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Santarem", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Santarem", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.682000, | |
| 39.230999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-SRD", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sardegna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 39210, | |
| "CITY_NAME": "Cagliari", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.109000, | |
| 39.224998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AZE-NKH", | |
| "FIPS_CNTRY": "AJ", | |
| "CNTRY_NAME": "Azerbaijan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Nakhichevan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Naxcivian", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.414001, | |
| 39.220001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NEV", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nevada", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Carson City", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -119.765999, | |
| 39.165001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-KDO", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kangwon-do", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60440, | |
| "CITY_NAME": "Wonsan", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 127.460999, | |
| 39.150002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-OHI", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Ohio", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Cincinnati", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -84.477020, | |
| 39.148010 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KRS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Kirsehir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kirsehir", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.171001, | |
| 39.141998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-DEL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Delaware", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dover", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -75.525002, | |
| 39.129002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-TNJ", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Tianjin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60195, | |
| "CITY_NAME": "Tianjin", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 117.184998, | |
| 39.127998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-TNC", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tunceli", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tunceli", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.533298, | |
| 39.116699 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TKM-CHZ", | |
| "FIPS_CNTRY": "TX", | |
| "CNTRY_NAME": "Turkmenistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Chardzhou", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chardzhev", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 63.573002, | |
| 39.088001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-KAN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kansas", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Topeka", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -95.695000, | |
| 39.046001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-LNN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Liaoning", | |
| "STATUS": "Other", | |
| "PORT_ID": 60250, | |
| "CITY_NAME": "Dalian", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 121.598198, | |
| 39.031715 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-PSI", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "P'yongyang-si", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "P'yongyang", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 125.757004, | |
| 39.028999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-KAN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kansas", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kansas City", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -94.626564, | |
| 38.994118 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MRY", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Maryland", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 8225, | |
| "CITY_NAME": "Annapolis", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -76.491997, | |
| 38.959000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-EXT", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Extremadura", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Merida", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -6.338000, | |
| 38.911999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-CLB", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Calabria", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 40430, | |
| "CITY_NAME": "Catanzaro", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 16.591000, | |
| 38.903999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-CGE", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Central Greece and Evvoia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lamia", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.434000, | |
| 38.898998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-DOC", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "District of Columbia", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Washington D.C.", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -76.953835, | |
| 38.890911 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-BNG", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bingol", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bingol", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.498001, | |
| 38.884998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-KSH", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kashkadar'ya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Karshi", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.750000, | |
| 38.883301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-AFY", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Afyon", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Afyon", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.540001, | |
| 38.764000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KYS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kayseri", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kayseri", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.479000, | |
| 38.730999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-LIS", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Lisboa", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 37990, | |
| "CITY_NAME": "Lisbon", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -9.130000, | |
| 38.730000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-MUS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mus", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mus", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.501999, | |
| 38.730000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-USA", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Usak", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Usak", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.408001, | |
| 38.681999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ELZ", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Elazig", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Elazig", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.226002, | |
| 38.681000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MOS", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Missouri", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "St. Louis", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -90.341980, | |
| 38.638885 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TJK-DSH", | |
| "FIPS_CNTRY": "TI", | |
| "CNTRY_NAME": "Tajikistan", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Dushanbe", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dushanbe", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.900002, | |
| 38.630001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-NVS", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Nevsehir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nevsehir", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.723999, | |
| 38.624001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-MAN", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Manisa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Manisa", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.429001, | |
| 38.618999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MOS", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Missouri", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jefferson City", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -92.168999, | |
| 38.580002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-CAL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "California", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 16590, | |
| "CITY_NAME": "Sacramento", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -121.422997, | |
| 38.567001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-EVO", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Evora", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Evora", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.906000, | |
| 38.560001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-STB", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Setubal", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38000, | |
| "CITY_NAME": "Setubal", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.882000, | |
| 38.521000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-HBK", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hwanghae-bukto", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sariwon", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 125.762001, | |
| 38.507000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-VAN", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Van", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Van", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.409000, | |
| 38.488998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-NNG", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Ningxia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yinchuan", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 106.263000, | |
| 38.467999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-IZM", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Izmir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44750, | |
| "CITY_NAME": "Smyrana", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.145000, | |
| 38.432999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-BTL", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bitlis", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bitlis", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 42.123001, | |
| 38.394001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-AIS", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Aegean Islands", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chios", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 26.139000, | |
| 38.373001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-WVR", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "West Virginia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 8500, | |
| "CITY_NAME": "Charleston", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -81.653999, | |
| 38.355000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-MLT", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Malatya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Malatya", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 38.308998, | |
| 38.355000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-THO", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Tohoku", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sendai", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 140.891006, | |
| 38.254002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-KEN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kentucky", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Frankfort", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -84.838997, | |
| 38.201000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-PLP", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Peloponnisos", | |
| "STATUS": "Other", | |
| "PORT_ID": 41850, | |
| "CITY_NAME": "Patras", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 21.883169, | |
| 38.141239 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ITA-SIC", | |
| "FIPS_CNTRY": "IT", | |
| "CNTRY_NAME": "Italy", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Sicilia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 40130, | |
| "CITY_NAME": "Palermo", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.359000, | |
| 38.120998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-AEK", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Azarbayjan-e Khavari", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tabriz", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 46.290001, | |
| 38.081001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-HEB", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Hebei", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Shijiazhuang", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 114.559708, | |
| 38.077095 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-HNM", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Hwanghae-namdo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60310, | |
| "CITY_NAME": "Haeju", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 125.714996, | |
| 38.040001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-BEJ", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Beja", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Beja", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.863000, | |
| 38.014000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-MUR", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Murcia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Murcia", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.134000, | |
| 37.980000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-NIG", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Nigde", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nigde", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.694000, | |
| 37.976002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRK-KSI", | |
| "FIPS_CNTRY": "KN", | |
| "CNTRY_NAME": "North Korea", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kaesong-si", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kaesong", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 126.566002, | |
| 37.969002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TKM-ASH", | |
| "FIPS_CNTRY": "TX", | |
| "CNTRY_NAME": "Turkmenistan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Ashkhabad", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ashgabat", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 58.390133, | |
| 37.950420 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-SII", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Siirt", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Siirt", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 41.932999, | |
| 37.944000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-DYR", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Diyarbakir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Diyarbakir", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.230999, | |
| 37.914001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TJK-KLB", | |
| "FIPS_CNTRY": "TI", | |
| "CNTRY_NAME": "Tajikistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Kulyab", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kulob", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.780998, | |
| 37.911999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-SHX", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Shanxi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Taiyuan", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 112.552002, | |
| 37.893002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KON", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Konya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Konya", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.481998, | |
| 37.877998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KOR-KDO", | |
| "FIPS_CNTRY": "KS", | |
| "CNTRY_NAME": "South Korea", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kangwon-do", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ch'unch'on", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 127.727997, | |
| 37.859001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-AYD", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Aydin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aydin", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.841999, | |
| 37.855999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TJK-KTB", | |
| "FIPS_CNTRY": "TI", | |
| "CNTRY_NAME": "Tajikistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Kurgan Tyube", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Qurghonteppa", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.800003, | |
| 37.833332 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-CAL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "California", | |
| "STATUS": "Other", | |
| "PORT_ID": 16300, | |
| "CITY_NAME": "San Francisco", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -122.380089, | |
| 37.795818 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-DNZ", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Denizli", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Denizli", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.086000, | |
| 37.777000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ISP", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Isparta", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Isparta", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.556999, | |
| 37.764999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ADY", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Adiyaman", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Adiyaman", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 38.278999, | |
| 37.764999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-BRD", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Burdur", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Burdur", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.283333, | |
| 37.716667 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TKM-MRY", | |
| "FIPS_CNTRY": "TX", | |
| "CNTRY_NAME": "Turkmenistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Mary", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mary", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 61.839001, | |
| 37.591000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-KMA", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kahraman Maras", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kahramanmaras", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.937000, | |
| 37.585999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-HKK", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Hakkari", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hakkari", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.750999, | |
| 37.568001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-VRG", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Virginia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 8320, | |
| "CITY_NAME": "Richmond", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -77.473000, | |
| 37.563000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-AEB", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Azarbayjan-e Bakhtari", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Orumiyeh", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.071999, | |
| 37.536999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-PLP", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Peloponnisos", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tripoli", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.368999, | |
| 37.507999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KOR-ICH", | |
| "FIPS_CNTRY": "KS", | |
| "CNTRY_NAME": "South Korea", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Inch'on-jikhalsi", | |
| "STATUS": "Other", | |
| "PORT_ID": 60320, | |
| "CITY_NAME": "Inch`on", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 126.633423, | |
| 37.486248 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ESP-AND", | |
| "FIPS_CNTRY": "SP", | |
| "CNTRY_NAME": "Spain", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Andalucia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38270, | |
| "CITY_NAME": "Seville", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -5.971000, | |
| 37.373001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-CAL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "California", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "San Jose", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -121.847458, | |
| 37.308105 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-MRD", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Mardin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mardin", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.750000, | |
| 37.307999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-BNZ", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Banzart", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45440, | |
| "CITY_NAME": "Bizerte", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.861915, | |
| 37.297455 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-GIL", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Gilan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rasht", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 49.592999, | |
| 37.273998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "UZB-SRK", | |
| "FIPS_CNTRY": "UZ", | |
| "CNTRY_NAME": "Uzbekistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Surkhandar'ya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Termez", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 67.250000, | |
| 37.250000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-MUG", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mugla", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mugla", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 28.367001, | |
| 37.220001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-URF", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Urfa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sanhurfa", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 38.797001, | |
| 37.159000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-BDK", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Badakhshan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Feyzabad", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 70.579002, | |
| 37.120998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-GZN", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Gaziantep", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aintab", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.389999, | |
| 37.069000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-FAR", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Faro", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 38030, | |
| "CITY_NAME": "Faro", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.928000, | |
| 37.019001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ADA", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Adana", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Seyhan", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.324001, | |
| 37.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-ANN", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Annaba", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45490, | |
| "CITY_NAME": "Annaba", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.756000, | |
| 36.903000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ANT", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Antalya", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44820, | |
| "CITY_NAME": "Antalya", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.709000, | |
| 36.893002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-SKK", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Skikda", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45510, | |
| "CITY_NAME": "Skikda", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.908000, | |
| 36.881001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-VRG", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Virginia", | |
| "STATUS": "Other", | |
| "PORT_ID": 8280, | |
| "CITY_NAME": "Norfolk", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -76.268570, | |
| 36.879292 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-DAH", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Dahuk", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dahuk", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.000000, | |
| 36.866699 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-ARY", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Aryanah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "L'Ariana", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.200000, | |
| 36.866669 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-JIJ", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Jijel", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45530, | |
| "CITY_NAME": "Jijel", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.766000, | |
| 36.821999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-TUN", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Tunis", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 45430, | |
| "CITY_NAME": "Tunis", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.166000, | |
| 36.819000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-TOU", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Tizi Ouzou", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tizi-Ouzou", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.033333, | |
| 36.799999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-ICE", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Icel", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44860, | |
| "CITY_NAME": "Mersin", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.646000, | |
| 36.797001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-ALG", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Alger", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 45570, | |
| "CITY_NAME": "Algiers", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.050000, | |
| 36.783298 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-BEJ", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bejaia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45550, | |
| "CITY_NAME": "Bejaia", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.078000, | |
| 36.757000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-TKH", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Takhar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Taloqan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.540001, | |
| 36.730000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-KNZ", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Konduz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Konduz", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.860001, | |
| 36.727001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-BAJ", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bajah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Beja", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.192000, | |
| 36.724998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-BLK", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Balkh", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mazar-E Sharif", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 67.110001, | |
| 36.703999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-ZNJ", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Zanjan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zanjan", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 48.485001, | |
| 36.671001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-JWZ", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Jowzjan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sheberghan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.744003, | |
| 36.661999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-SHD", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Shandong", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jinan", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 116.967003, | |
| 36.655998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-QNG", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Qinghai", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Xining", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 101.764999, | |
| 36.645000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KOR-CBK", | |
| "FIPS_CNTRY": "KS", | |
| "CNTRY_NAME": "South Korea", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Ch'ungch'ong-bukto", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ch'ungju", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 127.498001, | |
| 36.634998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-MZN", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Mazandaran", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sari", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 53.053001, | |
| 36.563999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-JND", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Jundubah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Jendouba", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.750000, | |
| 36.500000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-AHS", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Al Hasakah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al-Hasakah", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.766998, | |
| 36.493000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-BLI", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Blida", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Blida", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.834000, | |
| 36.480999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-GUE", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Guelma", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Guelma", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.428000, | |
| 36.466000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-NAB", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nabul", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nabeul", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.735000, | |
| 36.456001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-ZGH", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Zaghwan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zaghouan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.147000, | |
| 36.400002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-BOU", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bouira", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bouira", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.897000, | |
| 36.381001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-CNS", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Constantine", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Constantine", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.609000, | |
| 36.360001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-NIN", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Ninawa", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al Mawsil", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.137127, | |
| 36.335567 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KOR-CNM", | |
| "FIPS_CNTRY": "KS", | |
| "CNTRY_NAME": "South Korea", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Ch'ungch'ong-namdo", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Taejon", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 127.433998, | |
| 36.324001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-KHR", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Khorasan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mashhad", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 59.597000, | |
| 36.290001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-MED", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Medea", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Medea", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.776000, | |
| 36.266998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-SMN", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Samangan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aybak", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.040001, | |
| 36.261002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUR-HAT", | |
| "FIPS_CNTRY": "TU", | |
| "CNTRY_NAME": "Turkey", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Hatay", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Antioch", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.116669, | |
| 36.233334 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-HAL", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Halab", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Aleppo", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 37.159283, | |
| 36.215546 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-SET", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Setif", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Setif", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.414000, | |
| 36.188999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-IRB", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Arbil", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Arbil", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.015999, | |
| 36.180000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-AKA", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Kaf", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Le Kef", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.666700, | |
| 36.166698 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-SHD", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Shandong", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Qingdao", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 120.434128, | |
| 36.148354 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-TNN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tennessee", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nashville", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -86.818001, | |
| 36.141998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-BGH", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Baghlan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Baghlan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.703003, | |
| 36.132000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GIB", | |
| "FIPS_CNTRY": "GI", | |
| "CNTRY_NAME": "Gibraltar", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Gibraltar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gibraltar", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -5.352000, | |
| 36.129002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-GAN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Gansu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lanzhou", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 103.599998, | |
| 36.112999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-SLY", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Silyanah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Siliana", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.383300, | |
| 36.083302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-BBA", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Bourdj Bou Arrer", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bordj Bou Arreridj", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.630000, | |
| 36.058998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-ARQ", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ar Raqqah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ar Raqqah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 39.036999, | |
| 35.946999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-MST", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Mostaganem", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45620, | |
| "CITY_NAME": "Mostaganem", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 0.090000, | |
| 35.939999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-IDL", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Idlib", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Idlib", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.640999, | |
| 35.932999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-FRY", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Faryab", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Meymaneh", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 64.776001, | |
| 35.919998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MLT", | |
| "FIPS_CNTRY": "MT", | |
| "CNTRY_NAME": "Malta", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Malta", | |
| "STATUS": "National capital", | |
| "PORT_ID": 40330, | |
| "CITY_NAME": "Valletta", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.504000, | |
| 35.912998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-OEB", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Oum el Bouaghi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Oum el Bouaghi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 7.150000, | |
| 35.849998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-SUS", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Susah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45410, | |
| "CITY_NAME": "Sousse", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.635873, | |
| 35.829548 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KOR-CBU", | |
| "FIPS_CNTRY": "KS", | |
| "CNTRY_NAME": "South Korea", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Cholla-bukto", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chonju", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 127.133331, | |
| 35.816666 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NCR", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "North Carolina", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Raleigh", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -78.643997, | |
| 35.791000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-ORA", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Oran", | |
| "STATUS": "Other", | |
| "PORT_ID": 45640, | |
| "CITY_NAME": "Oran", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -0.520000, | |
| 35.750000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-AMN", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Munastir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Monasir", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.767288, | |
| 35.730698 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-MSL", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "M'Sila", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "M'sila", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 4.545000, | |
| 35.700001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-AQY", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Qayrawan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kairouan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.016700, | |
| 35.700001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NME", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "New Mexico", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Santa Fe", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -105.942001, | |
| 35.682999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KNT", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Kanto", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 61380, | |
| "CITY_NAME": "Tokyo", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 139.809006, | |
| 35.682999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-SMN", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Semnan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Semnan", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 53.396000, | |
| 35.571999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-ASL", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "As Sulaymaniyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "As-Sulaymaniyah", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.453999, | |
| 35.558998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-BAT", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Batna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Batna", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 6.172000, | |
| 35.556999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-ALD", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Al Ladhiqiyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45010, | |
| "CITY_NAME": "Al Ladhiqiyah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.792000, | |
| 35.521000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KNT", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kanto", | |
| "STATUS": "Other", | |
| "PORT_ID": 61385, | |
| "CITY_NAME": "Kawasaki", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 139.727219, | |
| 35.504570 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-OKL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Oklahoma", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Oklahoma City", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -97.529999, | |
| 35.490002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-AMH", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Mahdiyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45400, | |
| "CITY_NAME": "Mahdia", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 11.040869, | |
| 35.483910 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-ATA", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "At Ta'min", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kirkuk", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.390999, | |
| 35.469002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KNT", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kanto", | |
| "STATUS": "Other", | |
| "PORT_ID": 61390, | |
| "CITY_NAME": "Yokohama", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 139.619995, | |
| 35.437000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-TBS", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Tebessa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tbessa", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.121000, | |
| 35.407001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-MSC", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Mascara", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mascara", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 0.140000, | |
| 35.400002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-TIA", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Tiaret", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tiaret", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 1.326000, | |
| 35.377998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "GRC-CRT", | |
| "FIPS_CNTRY": "GR", | |
| "CNTRY_NAME": "Greece", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Crete", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 43130, | |
| "CITY_NAME": "Iraklion", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 25.134001, | |
| 35.338001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-DAZ", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Dayr az Zawr", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dayr az Zawr", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 40.153999, | |
| 35.335999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CYP-KYR", | |
| "FIPS_CNTRY": "CY", | |
| "CNTRY_NAME": "Cyprus", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kyrenia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44900, | |
| "CITY_NAME": "Kyrenia", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.333000, | |
| 35.326000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-KRD", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kordestan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sanandaj", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 46.993999, | |
| 35.319000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-AQS", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Qasrayn", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kasserine", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.716700, | |
| 35.216702 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-NCR", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "North Carolina", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Charlotte", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -80.835686, | |
| 35.205814 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-SBA", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Sidi bel Abbes", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sidi-Bel-Abbes", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -0.639000, | |
| 35.196999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CYP-NIC", | |
| "FIPS_CNTRY": "CY", | |
| "CNTRY_NAME": "Cyprus", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Nicosia", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Nicosia", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.368999, | |
| 35.171001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-CHB", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Chubu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 61480, | |
| "CITY_NAME": "Nagoya", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 136.921005, | |
| 35.154999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-HAM", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Hamah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hamah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.751999, | |
| 35.138000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-TNN", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Tennessee", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Memphis", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -90.000328, | |
| 35.114727 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CYP-FMG", | |
| "FIPS_CNTRY": "CY", | |
| "CNTRY_NAME": "Cyprus", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Farmagusta", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44970, | |
| "CITY_NAME": "Ammochostos", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.950001, | |
| 35.105999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-SBZ", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Sidi Bu Zayd", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Sdid Bouzid", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 9.500000, | |
| 35.016701 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-KAP", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Kapisa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mahmud-E Eraqi", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.333298, | |
| 35.016701 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-PRV", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Parvan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Charikar", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.169998, | |
| 35.014000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KIN", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kinki", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kyoto", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 135.755005, | |
| 35.008999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-BDG", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Badghis", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Qal eh-ye", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 63.133301, | |
| 34.983002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CYP-LRN", | |
| "FIPS_CNTRY": "CY", | |
| "CNTRY_NAME": "Cyprus", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Larnaca", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44960, | |
| "CITY_NAME": "Larnaka", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.636002, | |
| 34.917000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-TRT", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Tartus", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45003, | |
| "CITY_NAME": "Tartus", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.897999, | |
| 34.891998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-TLM", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Tlemcen", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tlemcen", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.314000, | |
| 34.882999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-KNR", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Konarha", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Asadabad", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 71.150002, | |
| 34.866001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-BSK", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Biskra", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Biskra", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.727000, | |
| 34.856998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-SAI", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Saida", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Saida", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 0.149000, | |
| 34.841000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-BAM", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bamian", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bamian", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 67.810997, | |
| 34.820000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-HMD", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Hamadan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hamadan", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 48.508999, | |
| 34.792999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ARK", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Arkansas", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Little Rock", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -92.309998, | |
| 34.761002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-HEN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Henan", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zhengzhou", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 113.641777, | |
| 34.757683 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CYP-PPH", | |
| "FIPS_CNTRY": "CY", | |
| "CNTRY_NAME": "Cyprus", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Paphos", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44940, | |
| "CITY_NAME": "Paphos", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.416698, | |
| 34.750000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-SFQ", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Safaqis", | |
| "STATUS": "Other", | |
| "PORT_ID": 45390, | |
| "CITY_NAME": "Sfax", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.759258, | |
| 34.745232 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-HIM", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Hims", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Homs", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.718174, | |
| 34.733875 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KIN", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kinki", | |
| "STATUS": "Other", | |
| "PORT_ID": 61560, | |
| "CITY_NAME": "Kobe", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 135.221207, | |
| 34.690147 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MAR-EST", | |
| "FIPS_CNTRY": "MO", | |
| "CNTRY_NAME": "Morocco", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Eastern", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Oujda", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -1.912000, | |
| 34.688999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CYP-LMS", | |
| "FIPS_CNTRY": "CY", | |
| "CNTRY_NAME": "Cyprus", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Limassol", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 44950, | |
| "CITY_NAME": "Lemesos", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 33.050999, | |
| 34.682999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-DJL", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Djelfa", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Djelfa", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 3.250000, | |
| 34.681000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-HEN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Henan", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Luoyang", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 112.361237, | |
| 34.671349 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-LGH", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Laghman", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mehtar Lam", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 70.166702, | |
| 34.650002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KIN", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kinki", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 61550, | |
| "CITY_NAME": "Osaka", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 135.518997, | |
| 34.636002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-KAB", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kabol", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kabul", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.136757, | |
| 34.530907 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-GHW", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ghowr", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Chaghcharan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.250000, | |
| 34.516701 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-VRD", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Vardak", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mayda Shahr", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.800003, | |
| 34.450001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-QFS", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Qafsah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gafsa", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.787000, | |
| 34.422001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-CGK", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Chugoku", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 61650, | |
| "CITY_NAME": "Hiroshima", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 132.445007, | |
| 34.377998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-HER", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Herat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Herat", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 62.187000, | |
| 34.345001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBN-ASH", | |
| "FIPS_CNTRY": "LE", | |
| "CNTRY_NAME": "Lebanon", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Ash Shamal", | |
| "STATUS": "Other", | |
| "PORT_ID": 45025, | |
| "CITY_NAME": "Tripoli", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.007069, | |
| 34.343758 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-BKH", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Bakhtaran", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kermanshah", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 47.056999, | |
| 34.307999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-SHA", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Shaanxi", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Xi'an", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 108.883362, | |
| 34.265697 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-SAD", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Salah ad Din", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Samarra", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.875000, | |
| 34.194000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IND-JAK", | |
| "FIPS_CNTRY": "IN", | |
| "CNTRY_NAME": "India", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Jammu & Kashmir", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Srinagar", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 74.804001, | |
| 34.081001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MAR-CNR", | |
| "FIPS_CNTRY": "MO", | |
| "CNTRY_NAME": "Morocco", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Centre-North", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fes", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -4.996000, | |
| 34.043999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MAR-NWT", | |
| "FIPS_CNTRY": "MO", | |
| "CNTRY_NAME": "Morocco", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "North-West", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 45787, | |
| "CITY_NAME": "Rabat", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -6.833000, | |
| 34.014999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-SCR", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "South Carolina", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 8370, | |
| "CITY_NAME": "Columbia", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -80.997002, | |
| 34.014000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PAK-NWF", | |
| "FIPS_CNTRY": "PK", | |
| "CNTRY_NAME": "Pakistan", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "North-west Frontier", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Peshawar", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 71.544998, | |
| 34.004002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-CAL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "California", | |
| "STATUS": "Other", | |
| "PORT_ID": 16080, | |
| "CITY_NAME": "Los Angeles", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -118.250000, | |
| 34.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-LWG", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Lowgar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Baraki Barak", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.966698, | |
| 33.966702 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-TWZ", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tawzar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tozeur", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.131000, | |
| 33.924000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MAR-CSO", | |
| "FIPS_CNTRY": "MO", | |
| "CNTRY_NAME": "Morocco", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Centre-South", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Meknes", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -5.557000, | |
| 33.903999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-QAB", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Qabis", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gabes", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.103000, | |
| 33.893002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBN-BYR", | |
| "FIPS_CNTRY": "LE", | |
| "CNTRY_NAME": "Lebanon", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Bayrut", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 45030, | |
| "CITY_NAME": "Beirut", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.500000, | |
| 33.883331 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBN-ABI", | |
| "FIPS_CNTRY": "LE", | |
| "CNTRY_NAME": "Lebanon", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Biqa'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zahle", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.918999, | |
| 33.842999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-SHK", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Shikoku", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 62030, | |
| "CITY_NAME": "Matsuyama", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 132.774994, | |
| 33.834999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBN-JLB", | |
| "FIPS_CNTRY": "LE", | |
| "CNTRY_NAME": "Lebanon", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Jabal Lubnan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "B'abda", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.533298, | |
| 33.833302 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-LGH", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Laghouat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Laghouat", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 2.878000, | |
| 33.806999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-GEO", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Georgia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Atlanta", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -84.348999, | |
| 33.796001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-DIY", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Diyala", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ba qubah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.643002, | |
| 33.743999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PAK-PNJ", | |
| "FIPS_CNTRY": "PK", | |
| "CNTRY_NAME": "Pakistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Punjab", | |
| "STATUS": "National capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Islamabad", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 73.060547, | |
| 33.718151 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-QBL", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Quibili", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kebili", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 8.971000, | |
| 33.689999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KYS", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kyushu", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kita Kyushu", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 130.797455, | |
| 33.681866 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-ILA", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Ilam", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ilam", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 46.423000, | |
| 33.639000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PAK-PNJ", | |
| "FIPS_CNTRY": "PK", | |
| "CNTRY_NAME": "Pakistan", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Punjab", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Rawalpindi", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 73.043747, | |
| 33.605804 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MAR-CEN", | |
| "FIPS_CNTRY": "MO", | |
| "CNTRY_NAME": "Morocco", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Centre", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45793, | |
| "CITY_NAME": "Casablanca", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -7.632000, | |
| 33.605000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-PAK", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Paktia", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gardez", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 69.223999, | |
| 33.598000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KYS", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Kyushu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Fukuoka", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 130.401993, | |
| 33.580002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-GHZ", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ghazni", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ghazni", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 68.419998, | |
| 33.551998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ARZ", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Arizona", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Phoenix", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -112.110001, | |
| 33.508999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "KOR-CDO", | |
| "FIPS_CNTRY": "KS", | |
| "CNTRY_NAME": "South Korea", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Cheju-do", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60350, | |
| "CITY_NAME": "Cheju", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 126.533333, | |
| 33.508198 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-DMS", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Dimashq", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Damascus", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.299999, | |
| 33.500000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-LRS", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Lorestan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Khorramabad", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 48.353001, | |
| 33.484001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-AAN", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Al Anbar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ar-Ramadi", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 43.312000, | |
| 33.431999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-MDN", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Madaniyin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Medemine", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.416700, | |
| 33.400002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-BGH", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Baghdad", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Baghdad", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.397999, | |
| 33.334000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-AQN", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Qunaytirah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al Qunaytirah", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.825001, | |
| 33.119999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "TUN-TTW", | |
| "FIPS_CNTRY": "TS", | |
| "CNTRY_NAME": "Tunisia", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Tatawin", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tataouine", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 10.466700, | |
| 33.000000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBY-TRB", | |
| "FIPS_CNTRY": "LY", | |
| "CNTRY_NAME": "Libya", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Tarabulus", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 45330, | |
| "CITY_NAME": "Tripoli", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.156891, | |
| 32.893131 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JPN-KYS", | |
| "FIPS_CNTRY": "JA", | |
| "CNTRY_NAME": "Japan", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Kyushu", | |
| "STATUS": "Other", | |
| "PORT_ID": 62360, | |
| "CITY_NAME": "Nagasaki", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 129.865997, | |
| 32.764999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-TEX", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Texas", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dallas", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -96.663689, | |
| 32.763729 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-CAL", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "California", | |
| "STATUS": "Other", | |
| "PORT_ID": 16010, | |
| "CITY_NAME": "San Diego", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -117.125496, | |
| 32.761459 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBY-DRN", | |
| "FIPS_CNTRY": "LY", | |
| "CNTRY_NAME": "Libya", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Darnah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45240, | |
| "CITY_NAME": "Darnah", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 22.639000, | |
| 32.754009 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBY-AZW", | |
| "FIPS_CNTRY": "LY", | |
| "CNTRY_NAME": "Libya", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Az Zawiyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Az Zawiyah", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 12.730000, | |
| 32.754002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-ASW", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "As Suwayda'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "As Suwayda", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.566002, | |
| 32.706001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MEX-BCN", | |
| "FIPS_CNTRY": "MX", | |
| "CNTRY_NAME": "Mexico", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Baja California", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Mexicali", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -115.467003, | |
| 32.654999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-ESF", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Esfahan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Esfahan", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 51.679001, | |
| 32.651001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBY-AKH", | |
| "FIPS_CNTRY": "LY", | |
| "CNTRY_NAME": "Libya", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Khums", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al Khums", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 14.269983, | |
| 32.650311 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PRT-MDR", | |
| "FIPS_CNTRY": "PO", | |
| "CNTRY_NAME": "Portugal", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Madeira", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Funchal", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -16.821934, | |
| 32.645161 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-ORZ", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Oruzgan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Tarin Kowt", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.866699, | |
| 32.633301 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "SYR-DAR", | |
| "FIPS_CNTRY": "SY", | |
| "CNTRY_NAME": "Syria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Dar'a", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Dar'a", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 36.105000, | |
| 32.625000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-KRB", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Karbala'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Karbala'", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.025002, | |
| 32.613998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JOR-IRB", | |
| "FIPS_CNTRY": "JO", | |
| "CNTRY_NAME": "Jordan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Irbid", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Irbid", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.861000, | |
| 32.556999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-WAS", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Wasit", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al-Kut", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.819000, | |
| 32.501999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-BAB", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Babil", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al-Hillah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.445999, | |
| 32.497002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-FAR", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Farah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Farah", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 62.116001, | |
| 32.375000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBY-MSR", | |
| "FIPS_CNTRY": "LY", | |
| "CNTRY_NAME": "Libya", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Misratah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45320, | |
| "CITY_NAME": "Misratah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 15.095000, | |
| 32.374001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-ALB", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Alabama", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Montgomery", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -86.299004, | |
| 32.360001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-CMV", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Chahar Mahall va Bakhtiari", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Shahr-E Kord", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 50.854000, | |
| 32.320999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-MSP", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Mississippi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 5090, | |
| "CITY_NAME": "Jackson", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -90.203003, | |
| 32.319000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "BMU", | |
| "FIPS_CNTRY": "BD", | |
| "CNTRY_NAME": "Bermuda", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Bermuda", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 9960, | |
| "CITY_NAME": "Hamilton", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -64.779167, | |
| 32.289028 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBY-GHR", | |
| "FIPS_CNTRY": "LY", | |
| "CNTRY_NAME": "Libya", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Gharyan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Gharyan", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 13.016700, | |
| 32.166000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "LBY-BNG", | |
| "FIPS_CNTRY": "LY", | |
| "CNTRY_NAME": "Libya", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Banghazi", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45280, | |
| "CITY_NAME": "Benghazi", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 20.068001, | |
| 32.122002 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-ZAB", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Zabol", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Qalat", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 66.900002, | |
| 32.105000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-JNS", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Jiangsu", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 60000, | |
| "CITY_NAME": "Nanjing", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 118.768997, | |
| 32.048000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "ISR-TAV", | |
| "FIPS_CNTRY": "IS", | |
| "CNTRY_NAME": "Israel", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tel Aviv", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45090, | |
| "CITY_NAME": "Tel Aviv-Yafo", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 34.770000, | |
| 32.044998 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JOR-ABA", | |
| "FIPS_CNTRY": "JO", | |
| "CNTRY_NAME": "Jordan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Balqa'", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "As-Salt", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.723000, | |
| 32.042999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-AQD", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Al Qadisiyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ad Diwaniyah", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.928001, | |
| 31.987000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-ANA", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "An Najaf", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "An Najaf", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 44.333302, | |
| 31.983299 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-ORG", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Ouargla", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ghardina", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 5.342000, | |
| 31.962999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JOR-AMM", | |
| "FIPS_CNTRY": "JO", | |
| "CNTRY_NAME": "Jordan", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "'Amman", | |
| "STATUS": "National and provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Amman", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.932907, | |
| 31.949383 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-YAZ", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Yazd", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Yazd", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 54.361000, | |
| 31.896999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-ANH", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Anhui", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Hefei", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 117.276001, | |
| 31.861000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-MYS", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Maysan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al 'Amarah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 47.151001, | |
| 31.837000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "USA-TEX", | |
| "FIPS_CNTRY": "US", | |
| "CNTRY_NAME": "United States", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Texas", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "El Paso", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -106.449997, | |
| 31.780001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "MAR-TNF", | |
| "FIPS_CNTRY": "MO", | |
| "CNTRY_NAME": "Morocco", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Tensift", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Marrakech", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -8.012000, | |
| 31.631001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IND-PNJ", | |
| "FIPS_CNTRY": "IN", | |
| "CNTRY_NAME": "India", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Punjab", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Amritsar", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 74.871552, | |
| 31.630890 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-QND", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Quandahar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kandahar", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 65.699997, | |
| 31.611000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "DZA-BCH", | |
| "FIPS_CNTRY": "AG", | |
| "CNTRY_NAME": "Algeria", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Bechar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Bechar", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| -2.220000, | |
| 31.608000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-HLM", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Helmand", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lashkar Gah", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 64.360001, | |
| 31.583000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PAK-PNJ", | |
| "FIPS_CNTRY": "PK", | |
| "CNTRY_NAME": "Pakistan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Punjab", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Lahore", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 74.341003, | |
| 31.545000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-DMY", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Dumyat", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45151, | |
| "CITY_NAME": "Dumyat", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.813000, | |
| 31.422001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "PAK-PNJ", | |
| "FIPS_CNTRY": "PK", | |
| "CNTRY_NAME": "Pakistan", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Punjab", | |
| "STATUS": "Other", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Faisalabad", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 73.083458, | |
| 31.408951 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-MNT", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Marsa Matruh", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45180, | |
| "CITY_NAME": "Marsa Matruh", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 27.237000, | |
| 31.350000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRN-KHZ", | |
| "FIPS_CNTRY": "IR", | |
| "CNTRY_NAME": "Iran", | |
| "POP_RANK": 3, | |
| "ADMIN_NAME": "Khuzestan", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Ahvaz", | |
| "POP_CLASS": "500,000 to 1,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 48.683998, | |
| 31.316999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-AMT", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Al Muthanna", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "As-Samawah", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 45.282001, | |
| 31.315001 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-BSA", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Bur Sa'id", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 45140, | |
| "CITY_NAME": "Port Said", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 32.292000, | |
| 31.257000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "CHN-SHN", | |
| "FIPS_CNTRY": "CH", | |
| "CNTRY_NAME": "China", | |
| "POP_RANK": 1, | |
| "ADMIN_NAME": "Shanghai", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 59970, | |
| "CITY_NAME": "Shanghai", | |
| "POP_CLASS": "5,000,000 and greater" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 121.473000, | |
| 31.247999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-AIS", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 2, | |
| "ADMIN_NAME": "Al Iskandariyah", | |
| "STATUS": "Other", | |
| "PORT_ID": 45165, | |
| "CITY_NAME": "Alexandria", | |
| "POP_CLASS": "1,000,000 to 5,000,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 29.905100, | |
| 31.204487 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "JOR-AKA", | |
| "FIPS_CNTRY": "JO", | |
| "CNTRY_NAME": "Jordan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Al Karak", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Al Karak", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 35.702999, | |
| 31.180000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "AFG-NMR", | |
| "FIPS_CNTRY": "AF", | |
| "CNTRY_NAME": "Afghanistan", | |
| "POP_RANK": 7, | |
| "ADMIN_NAME": "Nimruz", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Zaranj", | |
| "POP_CLASS": "Less than 50,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 61.887001, | |
| 31.112000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-KAS", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Kafr ash Shaykh", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Kafr el Sheikh", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.936001, | |
| 31.108999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IND-HPR", | |
| "FIPS_CNTRY": "IN", | |
| "CNTRY_NAME": "India", | |
| "POP_RANK": 6, | |
| "ADMIN_NAME": "Himachal Pradesh", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Simla", | |
| "POP_CLASS": "50,000 to 100,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 77.166000, | |
| 31.104000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "IRQ-DQA", | |
| "FIPS_CNTRY": "IZ", | |
| "CNTRY_NAME": "Iraq", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Dhi Qar", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "An-Nasiriyah", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 46.256001, | |
| 31.042999 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-ADQ", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 4, | |
| "ADMIN_NAME": "Ad Daqahliyah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "El Mansura", | |
| "POP_CLASS": "250,000 to 500,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 31.379999, | |
| 31.039000 | |
| ] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "GMI_ADMIN": "EGY-ABH", | |
| "FIPS_CNTRY": "EG", | |
| "CNTRY_NAME": "Egypt", | |
| "POP_RANK": 5, | |
| "ADMIN_NAME": "Al Buhayrah", | |
| "STATUS": "Provincial capital", | |
| "PORT_ID": 0, | |
| "CITY_NAME": "Damanhur", | |
| "POP_CLASS": "100,000 to 250,000" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [ | |
| 30.472000, | |
| 31.030001 | |
| ] | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment