├── README.md ├── data ├── UK │ ├── README.md │ ├── counties.geojson │ ├── counties.topojson │ ├── london_stations.geojson │ ├── london_stations.topojson │ ├── london_tube.geojson │ └── london_tube.topojson ├── USA │ ├── README.md │ ├── california-streams.topojson │ ├── sf-precincts.csv │ ├── sf-precincts.topojson │ └── us-named.topojson └── world │ ├── README.md │ ├── ne_50m_admin_0_countries.geojson │ ├── ne_50m_admin_0_countries.topojson │ ├── ne_50m_populated_places_simple.geojson │ ├── ne_50m_populated_places_simple.topojson │ ├── ne_50m_rivers_lake_centerlines.geojson │ ├── ne_50m_rivers_lake_centerlines.topojson │ └── world-110m.geojson └── img ├── example01.png ├── example02.png ├── example03.png ├── example04.png ├── example05.png ├── example06.png ├── example07.png ├── example08.png ├── example09.png ├── example10.png ├── example11.png ├── example12.png ├── example13.png ├── example14.png ├── example15.png ├── example16.png ├── example17.png ├── example18.png ├── example19.png ├── example20.png ├── example21.png ├── example22.png ├── example23.png └── header.png /README.md: -------------------------------------------------------------------------------- 1 | # Working with spatial data for the web 2 | 3 | ![Working with spatial data](img/header.png) 4 | 5 | ## Introduction 6 | 7 | This workshop is designed to be very hands-on, with many examples that can be 8 | extended as exercises. It would be impossible to touch everything that we could 9 | find [interesting in web mapping](https://hi.stamen.com/an-ode-to-d3-js-projections-9d6477d6da0b#.1hr10rltk), 10 | so the hope is that after going through these three acts you will feel empowered 11 | to swap in your own data and leverage [hundreds of examples](http://blockbuilder.org/search#api=d3.geo.path) in your own data visualization projects! 12 | 13 | ## Tools 14 | 15 | This workshop will cover a collection of Javascript mapping libraries. By the end, you will gain 16 | hands-on experience with each library. We will see first-hand which tool is best for the 17 | job in a variety of different situations. 18 | 19 | * [Leaflet](http://leafletjs.com) 20 | * [Mapbox-gl](https://www.mapbox.com/mapbox-gl-js/examples/) 21 | * [d3.js](http://d3js.org) 22 | * [turf.js](http://turfjs.org/) 23 | 24 | 25 | # Act I: fundamentals 26 | _I've got the whole world, in my hands_ 27 | 28 | This first part of the workshop will focus on understanding the data and quickly getting something on the screen. 29 | 30 | ## Data 31 | 32 | First things first: we will play with basic GeoJSON on [geojson.io](http://geojson.io) to develop intuition for spatial data. 33 | We can look at [this example](http://blockbuilder.org/enjalot/9a51c6ef89a3625684bf) to get a relative sense of the "size" of one degree of longitude or latitude. 34 | [](http://blockbuilder.org/enjalot/9a51c6ef89a3625684bf) 35 | 36 | We will use a collection of datasets curated to cover a variety of locations and scales (world-wide 37 | down to city-level) in the workshop. This way, you won't feel confined to one geographic area 38 | while practicing your new web-mapping skills. Each data folder contains a README that describes where the 39 | data comes from and how it was processed: 40 | 41 | [World data files](data/world) 42 | [UK (London) data files](data/UK) 43 | [USA (SF) data files](data/USA) 44 | 45 | We will explore the three basic GeoJSON data types with these files: 46 | * Polygons - Administrative boundaries like countries, states, and counties 47 | * Lines - Roads, Routes and Rivers 48 | * Points - Cities, Subway stations 49 | 50 | You can find the commands used to process and convert the data in each folder. 51 | If you want to convert your own spatial data from one file type to another, you may want to start with 52 | [Mapshaper](http://www.mapshaper.org/) before diving into the world of command line tools like [ogr2ogr](http://www.gdal.org/ogr2ogr.html). 53 | 54 | I recommend reading [More than you ever wanted to know about GeoJSON](http://www.macwright.org/2015/03/23/geojson-second-bite.html) 55 | before the workshop. It's a concise overview and a great reference. 56 | 57 | 58 | ### Leaflet 59 | **[1) Getting started with Leaflet](https://github.com/enjalot/wwsd/issues/1)** 60 | [](https://github.com/enjalot/wwsd/issues/1) 61 | 62 | **[2) Basic styling & interaction](https://github.com/enjalot/wwsd/issues/2)** 63 | [](https://github.com/enjalot/wwsd/issues/2) 64 | 65 | ### Mapbox-gl 66 | 67 | **[3) Getting started with Mapbox-gl](https://github.com/enjalot/wwsd/issues/3)** 68 | [](https://github.com/enjalot/wwsd/issues/3) 69 | 70 | **[4) Basic styling & interaction](https://github.com/enjalot/wwsd/issues/4)** 71 | [](https://github.com/enjalot/wwsd/issues/4) 72 | 73 | 74 | # Act II: d3.js 75 | _Data driven_ 76 | 77 | This second part of the workshop will focus on understanding projections and using them 78 | with [d3](http://d3js.org) to render custom data-driven maps. 79 | 80 | ## Projections 81 | [Map projections](https://en.wikipedia.org/wiki/Map_projection) are an important concept, and we need at least a basic grasp 82 | of how they work to make the kinds of [custom maps](https://hi.stamen.com/an-ode-to-d3-js-projections-9d6477d6da0b#.bemxsm2j1) we'd like to with d3. 83 | [](https://hi.stamen.com/an-ode-to-d3-js-projections-9d6477d6da0b#.bemxsm2j1) 84 | 85 | One point we need to emphasize is that projections introduce distortion, 86 | to get a sense for how different projections distort the geometry of the earth play with [this example](http://blockbuilder.org/enjalot/bd552e711b8325c64729): 87 | [](http://blockbuilder.org/enjalot/bd552e711b8325c64729) 88 | A fun modification using images to show distortion: 89 | [](http://blockbuilder.org/enjalot/5233898432653069ea8e) 90 | And a [gratuitous animation](http://blockbuilder.org/enjalot/27969219a945e2bd20dc) with a particularly interesting projection. 91 | 92 | If you want to understand projections from a fundamental level, checkout this [thorough presentation](http://lyzidiamond.com/geodesy-pt-1/#0) on where projections come from. 93 | 94 | 95 | 96 | 97 | 98 | ## Rendering with d3.js 99 | 100 | **[5) SVG Paths](https://github.com/enjalot/wwsd/issues/5)** 101 | [](https://github.com/enjalot/wwsd/issues/5) 102 | 103 | **[6) Rendering a map with d3 projections](https://github.com/enjalot/wwsd/issues/6)** 104 | [](https://github.com/enjalot/wwsd/issues/6) 105 | 106 | **[7) Mouse interactions with d3 + SVG](https://github.com/enjalot/wwsd/issues/7)** 107 | [](https://github.com/enjalot/wwsd/issues/7) 108 | 109 | **[8) Data lookups](https://github.com/enjalot/wwsd/issues/8)** 110 | [](https://github.com/enjalot/wwsd/issues/8) 111 | 112 | 113 | 114 | 115 | ### Advanced d3.js usage 116 | 117 | **[9) Zooming with d3](https://github.com/enjalot/wwsd/issues/9)** 118 | [](https://github.com/enjalot/wwsd/issues/9) 119 | 120 | **[10) Leaflet SVG Overlay](https://github.com/enjalot/wwsd/issues/10)** 121 | [](https://github.com/enjalot/wwsd/issues/10) 122 | 123 | **[11) Mapbox-gl SVG Overlay](https://github.com/enjalot/wwsd/issues/11)** 124 | 125 | [](https://github.com/enjalot/wwsd/issues/11) 126 | 127 | 128 | # Act III: performance 129 | _Hella data_ 130 | 131 | This part of the workshop will focus on how we can render our maps with better performance. 132 | We can utilize an extension of GeoJSON called [TopoJSON](https://github.com/mbostock/topojson) as well as other rendering techniques like using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API). 133 | 134 | ### TopoJSON 135 | [TopoJSON](https://github.com/mbostock/topojson) is an extension of GeoJSON that encodes topology. One of the biggest benefits of this is 136 | that file sizes can be significantly smaller. 137 | 138 | A couple tools that can be used to orient yourself with TopoJSON files: 139 | [Inspect TopoJSON](http://blockbuilder.org/enjalot/63d06e2ccadad0cb30dc5f920efd1cdf) 140 | [Preview TopoJSON](http://blockbuilder.org/enjalot/fe2a8ee0ad59a58ce295f035419d9e63) 141 | 142 | 143 | 144 | 145 | **[12) Rendering a map with d3 + TopoJSON + SVG](https://github.com/enjalot/wwsd/issues/12)** 146 | [](https://github.com/enjalot/wwsd/issues/12) 147 | 148 | 149 | 150 | 151 | 152 | ### Canvas 153 | [Canvas](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API) is an HTML5 API for drawing pixel based images in the browser with Javascript. 154 | It is possible to render lots of data quicker with canvas than SVG, but it is less convenient for interaction. 155 | 156 | **[13) Rendering with d3 + Canvas](https://github.com/enjalot/wwsd/issues/13)** 157 | [](https://github.com/enjalot/wwsd/issues/13) 158 | 159 | **[14) Zooming with Canvas](https://github.com/enjalot/wwsd/issues/13)** 160 | [](https://github.com/enjalot/wwsd/issues/14) 161 | 162 | **[15) Mapbox-gl Canvas Overlay](https://github.com/enjalot/wwsd/issues/13)** 163 | [](https://github.com/enjalot/wwsd/issues/15) 164 | 165 | ## turf.js 166 | 167 | [TurfJS](http://turfjs.org) is a Javascript library for geospatial calculations and analysis. 168 | It provides many features which can come in handy when dealing with spatial data. 169 | 170 | **[16) Measuring areas and lengths]()** 171 | [](https://github.com/enjalot/wwsd/issues/16) 172 | 173 | **[17) Buffering and contracting features]()** 174 | [](https://github.com/enjalot/wwsd/issues/17) 175 | 176 | # Encore: advanced techniques 177 | We may not have time to explore these examples in depth, but they should provide 178 | inspiration and exercises for those who wish to venture deeper into the technical 179 | possibilities of the tools covered in this workshop. 180 | 181 | **It's a map, sort of** 182 | Using geospatial properties or locations to add context: 183 | For example [Circle counties](http://bl.ocks.org/mbostock/4206975), 184 | Try doing this with the [world populations](http://enjalot.github.io/wwsd/data/world/ne_50m_admin_0_countries.topojson). 185 | You can calculate the centroids of each country using d3 or turf. 186 | [Example answer](http://blockbuilder.org/eesur/14e16ab00342ea44e46f3fa45a2bbf08) 187 | [](http://blockbuilder.org/eesur/14e16ab00342ea44e46f3fa45a2bbf08) 188 | 189 | **Advanced canvas interaction** 190 | [Selecting countries on a canvas globe](http://bl.ocks.org/syntagmatic/6645345) 191 | [](http://bl.ocks.org/syntagmatic/6645345) 192 | 193 | **Clipping** 194 | [Clipping geometry data](http://blockbuilder.org/mbostock/6301872) 195 | [Clipping raster tiles](http://bl.ocks.org/enjalot/985de8fcd65d37583949edbf280f2632) 196 | [](http://bl.ocks.org/enjalot/985de8fcd65d37583949edbf280f2632) 197 | 198 | **Voronoi** 199 | [](http://blockbuilder.org/mbostock/4360892) 200 | [More examples](http://blockbuilder.org/search#text=voronoi;api=d3.geo.path) 201 | 202 | **Quadtrees** 203 | [Features near mouse in canvas](http://blockbuilder.org/enjalot/534c925aa109f526d37937dcfda58fc4) 204 | Circular selection area: 205 | [](http://blockbuilder.org/enjalot/eb331a84b3ef877aa6b0004308abfac9) 206 | 207 | **Animated paths** 208 | [Timer & Mapbox-gl](http://bl.ocks.org/enjalot/4ff31e96860f38d4fd58) 209 | [Transitions & Canvas](http://blockbuilder.org/rveciana/502db152b70cddfd554e9d48ee23e279) 210 | [Point-along-path & SVG](http://blockbuilder.org/wboykinm/5689397a1236ec79c0e94a162bd4d566) 211 | -------------------------------------------------------------------------------- /data/UK/README.md: -------------------------------------------------------------------------------- 1 | # UK Geometries 2 | 3 | ## Counties (Local Authority Districts) 4 | Type: MultiPolygon 5 | Source: http://martinjc.github.io/UK-GeoJSON/ 6 | 7 | [GeoJSON](counties.geojson) 8 | [TopoJSON](counties.topojson) 9 | 10 | These files came preprocessed (GeoJSON and TopoJSON) 11 | 12 | NOTE: 13 | ``` 14 | "counties" in the United Kingdom are not really straightforward. There seem to be a few different ways 15 | to subdivide England, and counties don't cover all of the country. For the purpose of our workshop, 16 | we just want some more detailed administrative boundaries somewhere besides San Francisco. If you are 17 | interested in getting into the finer points, see these links: 18 | ``` 19 | https://en.wikipedia.org/wiki/Subdivisions_of_England 20 | http://gis.stackexchange.com/questions/132105/where-could-i-find-geojson-data-for-all-counties-of-the-uk 21 | 22 | 23 | ## Tube lines 24 | Type: MultiLineString 25 | Source: https://github.com/oobrien/vis [specifically](https://github.com/oobrien/vis/blob/master/tube/data/tfl_lines.json) 26 | 27 | [GeoJSON](london_tube.geojson) 28 | [TopoJSON](london_tube.topojson) 29 | 30 | Download the geojson file from the link and rename to `london_tube.geojson`. 31 | convert the geojson to topojson and preserve only a couple key properties: 32 | ```shell 33 | geo2topo london_tube.geojson -p id -p lines -o london_tube.topojson 34 | ``` 35 | 36 | 37 | ## Tube stations 38 | Type: Point 39 | Source: https://github.com/oobrien/vis [specifically](https://github.com/oobrien/vis/blob/master/tube/data/tfl_stations.json) 40 | 41 | [GeoJSON](london_stations.geojson) 42 | [TopoJSON](london_stations.topojson) 43 | 44 | Download the geojson file from the link and rename to `london_tube.geojson`. 45 | convert the geojson to topojson and preserve only a couple key properties: 46 | ```shell 47 | geo2topo london_stations.geojson -p id -p name -p lines -o london_stations.topojson 48 | ``` 49 | -------------------------------------------------------------------------------- /data/UK/london_stations.topojson: -------------------------------------------------------------------------------- 1 | {"type":"Topology","objects":{"london_stations":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"Point","properties":{"id":"940GZZDLALL","lines":[{"name":"DLR"}]},"coordinates":[7363,4635]},{"type":"Point","properties":{"id":"940GZZDLBEC","lines":[{"name":"DLR"}]},"coordinates":[7931,4733]},{"type":"Point","properties":{"id":"940GZZDLBLA","lines":[{"name":"DLR"}]},"coordinates":[7408,4559]},{"type":"Point","properties":{"id":"940GZZDLBOW","lines":[{"name":"DLR"}]},"coordinates":[7303,5104]},{"type":"Point","properties":{"id":"940GZZDLBPK","lines":[{"name":"DLR"}]},"coordinates":[7885,4580]},{"type":"Point","properties":{"id":"940GZZDLCAN","lines":[{"name":"DLR"}]},"coordinates":[7303,4482]},{"type":"Point","properties":{"id":"940GZZLUCGT","lines":[{"name":"Jubilee"},{"name":"DLR"}]},"coordinates":[7526,4727]},{"type":"Point","properties":{"id":"940GZZDLCLA","lines":[{"name":"DLR"}]},"coordinates":[7352,4225]},{"type":"Point","properties":{"id":"940GZZDLCUS","lines":[{"name":"DLR"},{"name":"Crossrail","opened":2018}]},"coordinates":[7665,4607]},{"type":"Point","properties":{"id":"940GZZDLCUT","lines":[{"name":"DLR"}]},"coordinates":[7381,3837]},{"type":"Point","properties":{"id":"940GZZDLCYP","lines":[{"name":"DLR"}]},"coordinates":[7954,4572]},{"type":"Point","properties":{"id":"940GZZDLDEP","lines":[{"name":"DLR"}]},"coordinates":[7291,3626]},{"type":"Point","properties":{"id":"940GZZDLDEV","lines":[{"name":"DLR"}]},"coordinates":[7329,4959]},{"type":"Point","properties":{"id":"940GZZDLEIN","lines":[{"name":"DLR"}]},"coordinates":[7446,4598]},{"type":"Point","properties":{"id":"940GZZDLELV","lines":[{"name":"DLR"}]},"coordinates":[7334,3488]},{"type":"Point","properties":{"id":"940GZZDLGAL","lines":[{"name":"DLR"}]},"coordinates":[8014,4587]},{"type":"Point","properties":{"id":"940GZZDLGRE","lines":[{"name":"DLR"}]},"coordinates":[7344,3735]},{"type":"Point","properties":{"id":"940GZZDLHEQ","lines":[{"name":"DLR"}]},"coordinates":[7299,4430]},{"type":"Point","properties":{"id":"940GZZDLISL","lines":[{"name":"DLR"}]},"coordinates":[7384,4007]},{"type":"Point","properties":{"id":"940GZZDLKGV","lines":[{"name":"DLR","opened":2005}]},"coordinates":[7940,4394]},{"type":"Point","properties":{"id":"940GZZDLLCA","lines":[{"name":"DLR","opened":2005}]},"coordinates":[7831,4441]},{"type":"Point","properties":{"id":"940GZZDLLDP","lines":[{"name":"DLR","opened":2007}]},"coordinates":[7355,4757]},{"type":"Point","properties":{"id":"940GZZDLLEW","lines":[{"name":"DLR"}]},"coordinates":[7364,3368]},{"type":"Point","properties":{"id":"940GZZDLLIM","lines":[{"name":"DLR"}]},"coordinates":[7159,4681]},{"type":"Point","properties":{"id":"940GZZDLMUD","lines":[{"name":"DLR"}]},"coordinates":[7348,4111]},{"type":"Point","properties":{"id":"940GZZDLPDK","lines":[{"name":"DLR","opened":2005}]},"coordinates":[7714,4401]},{"type":"Point","properties":{"id":"940GZZDLPOP","lines":[{"name":"DLR"}]},"coordinates":[7329,4556]},{"type":"Point","properties":{"id":"940GZZDLPRE","lines":[{"name":"DLR"}]},"coordinates":[7721,4601]},{"type":"Point","properties":{"id":"940GZZDLPUD","lines":[{"name":"DLR"}]},"coordinates":[7359,5272]},{"type":"Point","properties":{"id":"940GZZDLRAL","lines":[{"name":"DLR"}]},"coordinates":[7813,4570]},{"type":"Point","properties":{"id":"940GZZDLRVC","lines":[{"name":"DLR"}]},"coordinates":[7601,4592]},{"type":"Point","properties":{"id":"940GZZDLSHA","lines":[{"name":"DLR"},{"name":"London Overground","opened":2010},{"name":"East London","closed":2007}]},"coordinates":[7027,4662]},{"type":"Point","properties":{"id":"940GZZDLSOQ","lines":[{"name":"DLR"}]},"coordinates":[7339,4340]},{"type":"Point","properties":{"id":"940GZZDLTWG","lines":[{"name":"DLR"}]},"coordinates":[6892,4633]},{"type":"Point","properties":{"id":"940GZZDLWFE","lines":[{"name":"DLR"}]},"coordinates":[7258,4600]},{"type":"Point","properties":{"id":"940GZZDLWIQ","lines":[{"name":"DLR"}]},"coordinates":[7306,4530]},{"type":"Point","properties":{"id":"940GZZDLWLA","lines":[{"name":"DLR","opened":2009}]},"coordinates":[7995,4072]},{"type":"Point","properties":{"id":"940GZZDLWSV","lines":[{"name":"DLR","opened":2005}]},"coordinates":[7633,4420]},{"type":"Point","properties":{"id":"940GZZLUACT","lines":[{"name":"District"},{"name":"Piccadilly"}]},"coordinates":[5316,4413]},{"type":"Point","properties":{"id":"940GZZLUACY","lines":[{"name":"Northern"}]},"coordinates":[6429,6141]},{"type":"Point","properties":{"id":"940GZZLUADE","lines":[{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[6912,4757]},{"type":"Point","properties":{"id":"940GZZLUAGL","lines":[{"name":"Northern"}]},"coordinates":[6649,5217]},{"type":"Point","properties":{"id":"940GZZLUALD","lines":[{"name":"Circle"},{"name":"Metropolitan"}]},"coordinates":[6882,4728]},{"type":"Point","properties":{"id":"940GZZLUALP","lines":[{"name":"Piccadilly"}]},"coordinates":[5166,5457]},{"type":"Point","properties":{"id":"940GZZLUAMS","lines":[{"name":"Metropolitan"}]},"coordinates":[2796,9140]},{"type":"Point","properties":{"id":"940GZZLUASG","lines":[{"name":"Piccadilly"}]},"coordinates":[6441,7549]},{"type":"Point","properties":{"id":"940GZZLUASL","lines":[{"name":"Piccadilly"}]},"coordinates":[6634,5933]},{"type":"Point","properties":{"id":"940GZZLUBBB","lines":[{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[7374,5021]},{"type":"Point","properties":{"id":"940GZZLUBBN","lines":[{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Metropolitan"}]},"coordinates":[6713,4897]},{"type":"Point","properties":{"id":"940GZZLUBDS","lines":[{"name":"Piccadilly"}]},"coordinates":[6511,7290]},{"type":"Point","properties":{"id":"940GZZLUBEC","lines":[{"name":"District"}]},"coordinates":[8439,5451]},{"type":"Point","properties":{"id":"940GZZLUBKE","lines":[{"name":"Central"}]},"coordinates":[8142,6700]},{"type":"Point","properties":{"id":"940GZZLUBKF","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6672,4664]},{"type":"Point","properties":{"id":"940GZZLUBKG","lines":[{"name":"District"},{"name":"Hammersmith & City"},{"name":"London Overground","opened":2007}]},"coordinates":[8086,5429]},{"type":"Point","properties":{"id":"940GZZLUBKH","lines":[{"name":"Central"}]},"coordinates":[7822,7810]},{"type":"Point","properties":{"id":"940GZZLUBLG","lines":[{"name":"Central"}]},"coordinates":[7037,5097]},{"type":"Point","properties":{"id":"940GZZLUBLM","lines":[{"name":"Northern"}]},"coordinates":[6289,2774]},{"type":"Point","properties":{"id":"940GZZLUBLR","lines":[{"name":"London Overground","opened":2007},{"name":"Victoria"}]},"coordinates":[7146,6727]},{"type":"Point","properties":{"id":"940GZZLUBMY","lines":[{"name":"Jubilee"}]},"coordinates":[6974,4277]},{"type":"Point","properties":{"id":"940GZZLUBND","lines":[{"name":"Central"},{"name":"Jubilee"},{"name":"Crossrail","opened":2018}]},"coordinates":[6320,4735]},{"type":"Point","properties":{"id":"940GZZLUBOR","lines":[{"name":"Northern"}]},"coordinates":[6746,4370]},{"type":"Point","properties":{"id":"940GZZLUBOS","lines":[{"name":"Piccadilly"}]},"coordinates":[4972,4223]},{"type":"Point","properties":{"id":"940GZZLUBSC","lines":[{"name":"District"},{"name":"Piccadilly"}]},"coordinates":[5823,4071]},{"type":"Point","properties":{"id":"940GZZLUBST","lines":[{"name":"Bakerloo"},{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Jubilee"},{"name":"Metropolitan"}]},"coordinates":[6270,4960]},{"type":"Point","properties":{"id":"940GZZLUBTK","lines":[{"name":"Northern"}]},"coordinates":[5438,7174]},{"type":"Point","properties":{"id":"940GZZLUBTX","lines":[{"name":"Northern"}]},"coordinates":[5825,6453]},{"type":"Point","properties":{"id":"940GZZLUBWR","lines":[{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[7272,5080]},{"type":"Point","properties":{"id":"940GZZLUBWT","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6022,4680]},{"type":"Point","properties":{"id":"940GZZLUBXN","lines":[{"name":"Victoria"}]},"coordinates":[6582,3309]},{"type":"Point","properties":{"id":"940GZZLUBZP","lines":[{"name":"Northern"}]},"coordinates":[6200,5725]},{"type":"Point","properties":{"id":"940GZZLUCAL","lines":[{"name":"Metropolitan"}]},"coordinates":[3161,8970]},{"type":"Point","properties":{"id":"940GZZLUCAR","lines":[{"name":"Piccadilly"}]},"coordinates":[6555,5673]},{"type":"Point","properties":{"id":"940GZZLUCFM","lines":[{"name":"Northern"}]},"coordinates":[6286,5558]},{"type":"Point","properties":{"id":"940GZZLUCGN","lines":[{"name":"Piccadilly"}]},"coordinates":[6510,4700]},{"type":"Point","properties":{"id":"940GZZLUCHL","lines":[{"name":"Central"}]},"coordinates":[6603,4839]},{"type":"Point","properties":{"id":"940GZZLUCHX","lines":[{"name":"Bakerloo"},{"name":"Northern"}]},"coordinates":[6486,4542]},{"type":"Point","properties":{"id":"940GZZLUCKS","lines":[{"name":"Piccadilly"}]},"coordinates":[6317,8517]},{"type":"Point","properties":{"id":"940GZZLUCND","lines":[{"name":"Northern"}]},"coordinates":[5547,6967]},{"type":"Point","properties":{"id":"940GZZLUCPC","lines":[{"name":"Northern"}]},"coordinates":[6408,3292]},{"type":"Point","properties":{"id":"940GZZLUCPK","lines":[{"name":"Jubilee"}]},"coordinates":[5202,7309]},{"type":"Point","properties":{"id":"940GZZLUCPN","lines":[{"name":"Northern"}]},"coordinates":[6467,3379]},{"type":"Point","properties":{"id":"940GZZLUCPS","lines":[{"name":"Northern"}]},"coordinates":[6331,3038]},{"type":"Point","properties":{"id":"940GZZLUCSD","lines":[{"name":"Northern"}]},"coordinates":[6097,2084]},{"type":"Point","properties":{"id":"940GZZLUCSM","lines":[{"name":"Metropolitan"}]},"coordinates":[2777,9999]},{"type":"Point","properties":{"id":"940GZZLUCST","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6770,4654]},{"type":"Point","properties":{"id":"940GZZLUCTN","lines":[{"name":"Northern"}]},"coordinates":[6369,5413]},{"type":"Point","properties":{"id":"940GZZLUCWL","lines":[{"name":"Central"}]},"coordinates":[8036,7586]},{"type":"Point","properties":{"id":"940GZZLUCWP","lines":[{"name":"District"}]},"coordinates":[5406,4190]},{"type":"Point","properties":{"id":"940GZZLUCWR","lines":[{"name":"Jubilee"},{"name":"London Overground","opened":2010},{"name":"East London","closed":2007}]},"coordinates":[7078,4285]},{"type":"Point","properties":{"id":"940GZZLUCXY","lines":[{"name":"Metropolitan"}]},"coordinates":[4075,8394]},{"type":"Point","properties":{"id":"940GZZLUCYD","lines":[{"name":"Metropolitan"}]},"coordinates":[3487,8588]},{"type":"Point","properties":{"id":"940GZZLUCYF","lines":[{"name":"Jubilee"}]},"coordinates":[7320,4437]},{"type":"Point","properties":{"id":"940GZZLUDBN","lines":[{"name":"Central"}]},"coordinates":[8104,8343]},{"type":"Point","properties":{"id":"940GZZLUDGE","lines":[{"name":"District"}]},"coordinates":[8734,5557]},{"type":"Point","properties":{"id":"940GZZLUDGY","lines":[{"name":"District"}]},"coordinates":[8596,5488]},{"type":"Point","properties":{"id":"940GZZLUDOH","lines":[{"name":"Jubilee"}]},"coordinates":[5628,5775]},{"type":"Point","properties":{"id":"940GZZLUEAC","lines":[{"name":"Bakerloo"},{"name":"Northern"}]},"coordinates":[6692,4213]},{"type":"Point","properties":{"id":"940GZZLUEAE","lines":[{"name":"Metropolitan"},{"name":"Piccadily"}]},"coordinates":[4417,6451]},{"type":"Point","properties":{"id":"940GZZLUEAN","lines":[{"name":"Central"}]},"coordinates":[5564,4805]},{"type":"Point","properties":{"id":"940GZZLUEBY","lines":[{"name":"Central"},{"name":"District"},{"name":"Crossrail","opened":2018}]},"coordinates":[5150,4747]},{"type":"Point","properties":{"id":"940GZZLUECM","lines":[{"name":"District"},{"name":"Piccadilly"}]},"coordinates":[5252,4613]},{"type":"Point","properties":{"id":"940GZZLUECT","lines":[{"name":"District"},{"name":"Piccadilly"}]},"coordinates":[5974,4105]},{"type":"Point","properties":{"id":"940GZZLUEFY","lines":[{"name":"Northern"}]},"coordinates":[6196,6753]},{"type":"Point","properties":{"id":"940GZZLUEGW","lines":[{"name":"Northern"}]},"coordinates":[5350,7481]},{"type":"Point","properties":{"id":"940GZZLUEHM","lines":[{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[7862,5421]},{"type":"Point","properties":{"id":"940GZZLUEMB","lines":[{"name":"Bakerloo"},{"name":"District"},{"name":"Circle"},{"name":"Northern"}]},"coordinates":[6523,4533]},{"type":"Point","properties":{"id":"940GZZLUEPG","lines":[{"name":"Central"}]},"coordinates":[8342,9690]},{"type":"Point","properties":{"id":"940GZZLUEPK","lines":[{"name":"District"}]},"coordinates":[8978,5708]},{"type":"Point","properties":{"id":"940GZZLUEPY","lines":[{"name":"District"}]},"coordinates":[5844,3212]},{"type":"Point","properties":{"id":"940GZZLUERB","lines":[{"name":"Bakerloo"}]},"coordinates":[6156,4904]},{"type":"Point","properties":{"id":"940GZZLUERC","lines":[{"name":"District"},{"name":"Hammersmith & City"},{"name":"Circle"}]},"coordinates":[6174,4883]},{"type":"Point","properties":{"id":"940GZZLUESQ","lines":[{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Metropolitan"}]},"coordinates":[6423,5047]},{"type":"Point","properties":{"id":"940GZZLUEUS","lines":[{"name":"Northern"},{"name":"London Overground","opened":2007},{"name":"Victoria"}]},"coordinates":[6433,5123]},{"type":"Point","properties":{"id":"940GZZLUFBY","lines":[{"name":"District"}]},"coordinates":[5965,3794]},{"type":"Point","properties":{"id":"940GZZLUFCN","lines":[{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Metropolitan"},{"name":"Crossrail","opened":2018}]},"coordinates":[6660,4897]},{"type":"Point","properties":{"id":"940GZZLUFLP","lines":[{"name":"Central"}]},"coordinates":[8162,6984]},{"type":"Point","properties":{"id":"940GZZLUFPK","lines":[{"name":"Piccadilly"},{"name":"Victoria"}]},"coordinates":[6647,6121]},{"type":"Point","properties":{"id":"940GZZLUFYC","lines":[{"name":"Northern"}]},"coordinates":[5991,7114]},{"type":"Point","properties":{"id":"940GZZLUFYR","lines":[{"name":"Jubilee"},{"name":"Metropolitan"}]},"coordinates":[6075,5645]},{"type":"Point","properties":{"id":"940GZZLUGBY","lines":[{"name":"District"},{"name":"London Overground","opened":2007}]},"coordinates":[5351,4109]},{"type":"Point","properties":{"id":"940GZZLUGDG","lines":[{"name":"Northern"}]},"coordinates":[6432,4905]},{"type":"Point","properties":{"id":"940GZZLUGFD","lines":[{"name":"Central"}]},"coordinates":[4818,5502]},{"type":"Point","properties":{"id":"940GZZLUGGH","lines":[{"name":"Central"}]},"coordinates":[8173,7457]},{"type":"Point","properties":{"id":"940GZZLUGGN","lines":[{"name":"Northern"}]},"coordinates":[5974,6335]},{"type":"Point","properties":{"id":"940GZZLUGHK","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City"}]},"coordinates":[5724,4393]},{"type":"Point","properties":{"id":"940GZZLUGPK","lines":[{"name":"Jubilee"},{"name":"Piccadilly"},{"name":"Victoria"}]},"coordinates":[6365,4520]},{"type":"Point","properties":{"id":"940GZZLUGPS","lines":[{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Metropolitan"}]},"coordinates":[6359,4997]},{"type":"Point","properties":{"id":"940GZZLUGTH","lines":[{"name":"Central"}]},"coordinates":[7972,6451]},{"type":"Point","properties":{"id":"940GZZLUGTR","lines":[{"name":"District"},{"name":"Circle"},{"name":"Piccadilly"}]},"coordinates":[6056,4187]},{"type":"Point","properties":{"id":"940GZZLUHAI","lines":[{"name":"London Overground","opened":2007},{"name":"Victoria"}]},"coordinates":[6669,5615]},{"type":"Point","properties":{"id":"940GZZLUHAW","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[4890,6884]},{"type":"Point","properties":{"id":"940GZZLUHBN","lines":[{"name":"Central"},{"name":"Piccadilly"}]},"coordinates":[6541,4825]},{"type":"Point","properties":{"id":"940GZZLUHBT","lines":[{"name":"Northern"}]},"coordinates":[5969,8499]},{"type":"Point","properties":{"id":"940GZZLUHCH","lines":[{"name":"District"}]},"coordinates":[9139,5828]},{"type":"Point","properties":{"id":"940GZZLUHCL","lines":[{"name":"Northern"}]},"coordinates":[5729,6630]},{"type":"Point","properties":{"id":"940GZZLUHGD","lines":[{"name":"Metropolitan"},{"name":"Piccadilly"}]},"coordinates":[4010,5820]},{"type":"Point","properties":{"id":"940GZZLUHGR","lines":[{"name":"Central"}]},"coordinates":[5213,5175]},{"type":"Point","properties":{"id":"940GZZLUHGT","lines":[{"name":"Northern"}]},"coordinates":[6345,6479]},{"type":"Point","properties":{"id":"940GZZLUHLT","lines":[{"name":"Central"}]},"coordinates":[8180,7197]},{"type":"Point","properties":{"id":"940GZZLUHNX","lines":[{"name":"Piccadilly"}]},"coordinates":[4217,3423]},{"type":"Point","properties":{"id":"940GZZLUHOH","lines":[{"name":"Metropolitan"}]},"coordinates":[4883,6523]},{"type":"Point","properties":{"id":"940GZZLUHPC","lines":[{"name":"Piccadilly"}]},"coordinates":[6293,4421]},{"type":"Point","properties":{"id":"940GZZLUHPK","lines":[{"name":"Central"}]},"coordinates":[5886,4540]},{"type":"Point","properties":{"id":"940GZZLUHR4","lines":[{"name":"Piccadilly"},{"name":"Crossrail","opened":2018}]},"coordinates":[4046,3201]},{"type":"Point","properties":{"id":"940GZZLUHR5","lines":[{"name":"Piccadilly","opened":2008}]},"coordinates":[3704,3583]},{"type":"Point","properties":{"id":"940GZZLUHRC","lines":[{"name":"Piccadilly"},{"name":"Crossrail","opened":2018}]},"coordinates":[3973,3582]},{"type":"Point","properties":{"id":"940GZZLUHSK","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[5985,4366]},{"type":"Point","properties":{"id":"940GZZLUHSN","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5484,5342]},{"type":"Point","properties":{"id":"940GZZLUHTD","lines":[{"name":"Northern"}]},"coordinates":[6096,5894]},{"type":"Point","properties":{"id":"940GZZLUHWC","lines":[{"name":"Piccadilly"}]},"coordinates":[4652,3549]},{"type":"Point","properties":{"id":"940GZZLUHWE","lines":[{"name":"Piccadilly"}]},"coordinates":[4730,3602]},{"type":"Point","properties":{"id":"940GZZLUHWT","lines":[{"name":"Piccadilly"}]},"coordinates":[4499,3610]},{"type":"Point","properties":{"id":"940GZZLUHWY","lines":[{"name":"Piccadilly"}]},"coordinates":[6596,5793]},{"type":"Point","properties":{"id":"940GZZLUICK","lines":[{"name":"Metropolitan"},{"name":"Piccadilly"}]},"coordinates":[4072,6047]},{"type":"Point","properties":{"id":"940GZZLUKBN","lines":[{"name":"Jubilee"}]},"coordinates":[5888,5635]},{"type":"Point","properties":{"id":"940GZZLUKBY","lines":[{"name":"Jubilee"}]},"coordinates":[5326,6674]},{"type":"Point","properties":{"id":"940GZZLUKEN","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5034,6586]},{"type":"Point","properties":{"id":"940GZZLUKNB","lines":[{"name":"Piccadilly"}]},"coordinates":[6231,4384]},{"type":"Point","properties":{"id":"940GZZLUKNG","lines":[{"name":"Northern"}]},"coordinates":[6653,4032]},{"type":"Point","properties":{"id":"940GZZLUKOY","lines":[{"name":"District"},{"name":"London Overground","opened":2007}]},"coordinates":[5855,4272]},{"type":"Point","properties":{"id":"940GZZLUKPK","lines":[{"name":"Bakerloo"}]},"coordinates":[5974,5308]},{"type":"Point","properties":{"id":"940GZZLUKSH","lines":[{"name":"Northern"}]},"coordinates":[6383,5726]},{"type":"Point","properties":{"id":"940GZZLUKSL","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5740,5182]},{"type":"Point","properties":{"id":"940GZZLUKSX","lines":[{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Metropolitan"},{"name":"Northern"},{"name":"Piccadilly"},{"name":"Victoria"}]},"coordinates":[6520,5183]},{"type":"Point","properties":{"id":"940GZZLUKWG","lines":[{"name":"District"},{"name":"London Overground","opened":2007}]},"coordinates":[5277,3708]},{"type":"Point","properties":{"id":"940GZZLULAD","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City"}]},"coordinates":[5845,4816]},{"type":"Point","properties":{"id":"940GZZLULBN","lines":[{"name":"Bakerloo"}]},"coordinates":[6602,4309]},{"type":"Point","properties":{"id":"940GZZLULGN","lines":[{"name":"Central"}]},"coordinates":[7887,8235]},{"type":"Point","properties":{"id":"940GZZLULGT","lines":[{"name":"Central"}]},"coordinates":[6120,4667]},{"type":"Point","properties":{"id":"940GZZLULNB","lines":[{"name":"Jubilee"},{"name":"Northern"}]},"coordinates":[6775,4478]},{"type":"Point","properties":{"id":"940GZZLULRD","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City"}]},"coordinates":[5791,4709]},{"type":"Point","properties":{"id":"940GZZLULSQ","lines":[{"name":"Northern"},{"name":"Piccadilly"}]},"coordinates":[6477,4649]},{"type":"Point","properties":{"id":"940GZZLULVT","lines":[{"name":"Central"},{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Metropolitan"},{"name":"London Overground","opened":2015},{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[6825,4816]},{"type":"Point","properties":{"id":"940GZZLULYN","lines":[{"name":"Central"}]},"coordinates":[7422,5900]},{"type":"Point","properties":{"id":"940GZZLULYS","lines":[{"name":"Central"}]},"coordinates":[7527,6229]},{"type":"Point","properties":{"id":"940GZZLUMBA","lines":[{"name":"Central"}]},"coordinates":[6252,4713]},{"type":"Point","properties":{"id":"940GZZLUMDN","lines":[{"name":"Northern"}]},"coordinates":[5969,1649]},{"type":"Point","properties":{"id":"940GZZLUMED","lines":[{"name":"Central"},{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[7206,5038]},{"type":"Point","properties":{"id":"940GZZLUMGT","lines":[{"name":"Hammersmith & City"},{"name":"Circle"},{"name":"Metropolitan"},{"name":"Northern"}]},"coordinates":[6786,4839]},{"type":"Point","properties":{"id":"940GZZLUMHL","lines":[{"name":"Northern"}]},"coordinates":[5851,7322]},{"type":"Point","properties":{"id":"940GZZLUMMT","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6800,4635]},{"type":"Point","properties":{"id":"940GZZLUMPK","lines":[{"name":"Metropolitan"}]},"coordinates":[4147,7916]},{"type":"Point","properties":{"id":"940GZZLUMRH","lines":[{"name":"Piccadilly"}]},"coordinates":[6725,6282]},{"type":"Point","properties":{"id":"940GZZLUMSH","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6744,4668]},{"type":"Point","properties":{"id":"940GZZLUMTC","lines":[{"name":"Northern"}]},"coordinates":[6400,5286]},{"type":"Point","properties":{"id":"940GZZLUMVL","lines":[{"name":"Bakerloo"}]},"coordinates":[6038,5161]},{"type":"Point","properties":{"id":"940GZZLUMYB","lines":[{"name":"Bakerloo"}]},"coordinates":[6211,4954]},{"type":"Point","properties":{"id":"940GZZLUNAN","lines":[{"name":"Central"}]},"coordinates":[5471,4990]},{"type":"Point","properties":{"id":"940GZZLUNBP","lines":[{"name":"Central"}]},"coordinates":[8153,6423]},{"type":"Point","properties":{"id":"940GZZLUNDN","lines":[{"name":"Jubilee"}]},"coordinates":[5546,5832]},{"type":"Point","properties":{"id":"940GZZLUNEN","lines":[{"name":"Piccadilly"}]},"coordinates":[5250,4827]},{"type":"Point","properties":{"id":"940GZZLUNFD","lines":[{"name":"Piccadilly"}]},"coordinates":[5061,4329]},{"type":"Point","properties":{"id":"940GZZLUNGW","lines":[{"name":"Jubilee"}]},"coordinates":[7493,4342]},{"type":"Point","properties":{"id":"940GZZLUNHA","lines":[{"name":"Metropolitan"}]},"coordinates":[4680,6682]},{"type":"Point","properties":{"id":"940GZZLUNHG","lines":[{"name":"Central"},{"name":"District"},{"name":"Circle"}]},"coordinates":[5959,4593]},{"type":"Point","properties":{"id":"940GZZLUNHT","lines":[{"name":"Central"}]},"coordinates":[4632,5673]},{"type":"Point","properties":{"id":"940GZZLUNKP","lines":[{"name":"Metropolitan"}]},"coordinates":[5025,6502]},{"type":"Point","properties":{"id":"940GZZLUNOW","lines":[{"name":"Metropolitan"}]},"coordinates":[4213,7392]},{"type":"Point","properties":{"id":"940GZZLUNWH","lines":[{"name":"Metropolitan"}]},"coordinates":[4326,7105]},{"type":"Point","properties":{"id":"910GNWCRELL","lines":[{"name":"London Overground","opened":2010},{"name":"East London","closed":2007}]},"coordinates":[7215,3696]},{"type":"Point","properties":{"id":"940GZZLUNWY","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5132,6059]},{"type":"Point","properties":{"id":"910GNEWXGEL","lines":[{"name":"London Overground","opened":2010},{"name":"East London","closed":2007}]},"coordinates":[7154,3663]},{"type":"Point","properties":{"id":"940GZZLUOAK","lines":[{"name":"Piccadilly"}]},"coordinates":[6454,8401]},{"type":"Point","properties":{"id":"940GZZLUODS","lines":[{"name":"Northern"}]},"coordinates":[6791,5046]},{"type":"Point","properties":{"id":"940GZZLUOSY","lines":[{"name":"Piccadilly"}]},"coordinates":[4761,3820]},{"type":"Point","properties":{"id":"940GZZLUOVL","lines":[{"name":"Northern"}]},"coordinates":[6601,3839]},{"type":"Point","properties":{"id":"940GZZLUOXC","lines":[{"name":"Bakerloo"},{"name":"Central"},{"name":"Victoria"}]},"coordinates":[6373,4762]},{"type":"Point","properties":{"id":"940GZZLUPAC","lines":[{"name":"Bakerloo"},{"name":"District"},{"name":"Circle"},{"name":"Crossrail","opened":2018,"closed":2018}]},"coordinates":[6125,4779]},{"type":"Point","properties":{"id":"940GZZLUPAH","lines":[{"name":"Hammersmith & City"},{"name":"Circle","opened":2009},{"name":"Crossrail","opened":2018}]},"coordinates":[6088,4816]},{"type":"Point","properties":{"id":"940GZZLUPCC","lines":[{"name":"Bakerloo"},{"name":"Piccadilly"}]},"coordinates":[6439,4614]},{"type":"Point","properties":{"id":"940GZZLUPCO","lines":[{"name":"Victoria"}]},"coordinates":[6443,4034]},{"type":"Point","properties":{"id":"940GZZLUPKR","lines":[{"name":"Piccadilly"}]},"coordinates":[5285,5071]},{"type":"Point","properties":{"id":"940GZZLUPLW","lines":[{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[7590,5198]},{"type":"Point","properties":{"id":"940GZZLUPNR","lines":[{"name":"Metropolitan"}]},"coordinates":[4542,6894]},{"type":"Point","properties":{"id":"940GZZLUPRD","lines":[{"name":"Metropolitan"}]},"coordinates":[5199,6326]},{"type":"Point","properties":{"id":"940GZZLUPSG","lines":[{"name":"District"}]},"coordinates":[5921,3659]},{"type":"Point","properties":{"id":"940GZZLUPVL","lines":[{"name":"Central"}]},"coordinates":[4981,5352]},{"type":"Point","properties":{"id":"940GZZLUPYB","lines":[{"name":"District"}]},"coordinates":[5861,3468]},{"type":"Point","properties":{"id":"940GZZLUQBY","lines":[{"name":"Jubilee"}]},"coordinates":[5268,6935]},{"type":"Point","properties":{"id":"940GZZLUQPS","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5887,5276]},{"type":"Point","properties":{"id":"940GZZLUQWY","lines":[{"name":"Central"}]},"coordinates":[6027,4629]},{"type":"Point","properties":{"id":"940GZZLURBG","lines":[{"name":"Central"}]},"coordinates":[7811,6444]},{"type":"Point","properties":{"id":"940GZZLURGP","lines":[{"name":"Bakerloo"}]},"coordinates":[6339,4986]},{"type":"Point","properties":{"id":"940GZZLURKW","lines":[{"name":"Metropolitan"}]},"coordinates":[3830,8202]},{"type":"Point","properties":{"id":"940GZZLURMD","lines":[{"name":"District"},{"name":"London Overground","opened":2007}]},"coordinates":[5153,3329]},{"type":"Point","properties":{"id":"910GRTHERHI","lines":[{"name":"London Overground","opened":2010},{"name":"East London","closed":2007}]},"coordinates":[7063,4368]},{"type":"Point","properties":{"id":"940GZZLURSG","lines":[{"name":"Central"}]},"coordinates":[4313,6013]},{"type":"Point","properties":{"id":"940GZZLURSM","lines":[{"name":"Metropolitan"},{"name":"Piccadilly"}]},"coordinates":[4300,6360]},{"type":"Point","properties":{"id":"940GZZLURSP","lines":[{"name":"Metropolitan"},{"name":"Piccadilly"}]},"coordinates":[4229,6306]},{"type":"Point","properties":{"id":"940GZZLURSQ","lines":[{"name":"Piccadilly"}]},"coordinates":[6510,4978]},{"type":"Point","properties":{"id":"940GZZLURVP","lines":[{"name":"District"}]},"coordinates":[5654,4178]},{"type":"Point","properties":{"id":"940GZZLURVY","lines":[{"name":"Central"}]},"coordinates":[7800,7566]},{"type":"Point","properties":{"id":"940GZZLURYL","lines":[{"name":"Metropolitan"},{"name":"Piccadilly"}]},"coordinates":[4615,6412]},{"type":"Point","properties":{"id":"940GZZLURYO","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City"}]},"coordinates":[6021,4865]},{"type":"Point","properties":{"id":"940GZZLUSBC","lines":[{"name":"Central"},{"name":"London Overground","opened":2007}]},"coordinates":[5797,4466]},{"type":"Point","properties":{"id":"940GZZLUSBM","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City"}]},"coordinates":[5726,4500]},{"type":"Point","properties":{"id":"910GSHRDHST","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6879,4981]},{"type":"Point","properties":{"id":"940GZZLUSEA","lines":[{"name":"Piccadilly"}]},"coordinates":[5107,4368]},{"type":"Point","properties":{"id":"940GZZLUSFB","lines":[{"name":"District"}]},"coordinates":[5577,4200]},{"type":"Point","properties":{"id":"940GZZLUSFS","lines":[{"name":"District"}]},"coordinates":[5877,2839]},{"type":"Point","properties":{"id":"940GZZLUSGN","lines":[{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[7105,4938]},{"type":"Point","properties":{"id":"940GZZLUSGP","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5348,5549]},{"type":"Point","properties":{"id":"940GZZLUSGT","lines":[{"name":"Piccadilly"}]},"coordinates":[6483,7986]},{"type":"Point","properties":{"id":"940GZZLUSHH","lines":[{"name":"Piccadilly"}]},"coordinates":[4761,6121]},{"type":"Point","properties":{"id":"940GZZLUSJP","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6439,4329]},{"type":"Point","properties":{"id":"940GZZLUSJW","lines":[{"name":"Jubilee"}]},"coordinates":[6128,5300]},{"type":"Point","properties":{"id":"940GZZLUSKS","lines":[{"name":"District"},{"name":"Circle"},{"name":"Piccadilly"}]},"coordinates":[6137,4176]},{"type":"Point","properties":{"id":"940GZZLUSKT","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5097,6276]},{"type":"Point","properties":{"id":"940GZZLUSKW","lines":[{"name":"Northern"},{"name":"Victoria"}]},"coordinates":[6523,3573]},{"type":"Point","properties":{"id":"940GZZLUSNB","lines":[{"name":"Central"}]},"coordinates":[7628,6564]},{"type":"Point","properties":{"id":"940GZZLUSPU","lines":[{"name":"Central"}]},"coordinates":[6715,4751]},{"type":"Point","properties":{"id":"910GSURREYQ","lines":[{"name":"London Overground","opened":2010},{"name":"East London","closed":2007}]},"coordinates":[7098,4155]},{"type":"Point","properties":{"id":"940GZZLUSRP","lines":[{"name":"Central"}]},"coordinates":[4400,5911]},{"type":"Point","properties":{"id":"940GZZLUSSQ","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6262,4129]},{"type":"Point","properties":{"id":"940GZZLUSTD","lines":[{"name":"Central"},{"name":"Jubilee"},{"name":"DLR"},{"name":"London Overground","opened":2007},{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[7433,5483]},{"type":"Point","properties":{"id":"940GZZLUSTM","lines":[{"name":"Jubilee"}]},"coordinates":[5139,7629]},{"type":"Point","properties":{"id":"940GZZLUSUH","lines":[{"name":"Piccadilly"}]},"coordinates":[4880,5910]},{"type":"Point","properties":{"id":"940GZZLUSUT","lines":[{"name":"Piccadilly"}]},"coordinates":[5041,5741]},{"type":"Point","properties":{"id":"940GZZLUSVS","lines":[{"name":"London Overground","opened":2015},{"name":"Victoria"}]},"coordinates":[6887,6612]},{"type":"Point","properties":{"id":"940GZZLUSWC","lines":[{"name":"Jubilee"}]},"coordinates":[6123,5534]},{"type":"Point","properties":{"id":"940GZZLUSWF","lines":[{"name":"Central"}]},"coordinates":[7673,6873]},{"type":"Point","properties":{"id":"940GZZLUSWK","lines":[{"name":"Jubilee"}]},"coordinates":[6656,4452]},{"type":"Point","properties":{"id":"940GZZLUSWN","lines":[{"name":"Northern"}]},"coordinates":[5989,2007]},{"type":"Point","properties":{"id":"940GZZLUTAW","lines":[{"name":"Northern"}]},"coordinates":[6089,7932]},{"type":"Point","properties":{"id":"940GZZLUTBC","lines":[{"name":"Northern"}]},"coordinates":[6238,2565]},{"type":"Point","properties":{"id":"940GZZLUTBY","lines":[{"name":"Northern"}]},"coordinates":[6173,2349]},{"type":"Point","properties":{"id":"940GZZLUTCR","lines":[{"name":"Central"},{"name":"Northern"},{"name":"Crossrail","opened":2018}]},"coordinates":[6462,4794]},{"type":"Point","properties":{"id":"940GZZLUTFP","lines":[{"name":"Northern"}]},"coordinates":[6401,5905]},{"type":"Point","properties":{"id":"940GZZLUTHB","lines":[{"name":"Central"}]},"coordinates":[8255,9072]},{"type":"Point","properties":{"id":"940GZZLUTMH","lines":[{"name":"Victoria"}]},"coordinates":[7002,6775]},{"type":"Point","properties":{"id":"940GZZLUTMP","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6590,4645]},{"type":"Point","properties":{"id":"940GZZLUTNG","lines":[{"name":"District"},{"name":"Piccadilly"}]},"coordinates":[5511,4206]},{"type":"Point","properties":{"id":"940GZZLUTPN","lines":[{"name":"Piccadilly"}]},"coordinates":[6674,6829]},{"type":"Point","properties":{"id":"940GZZLUTWH","lines":[{"name":"District"},{"name":"Circle"}]},"coordinates":[6867,4610]},{"type":"Point","properties":{"id":"940GZZLUUPB","lines":[{"name":"District"}]},"coordinates":[9263,5947]},{"type":"Point","properties":{"id":"940GZZLUUPK","lines":[{"name":"District"},{"name":"Hammersmith & City"}]},"coordinates":[7727,5310]},{"type":"Point","properties":{"id":"940GZZLUUPM","lines":[{"name":"District"},{"name":"London Overground","opened":2015}]},"coordinates":[9404,5966]},{"type":"Point","properties":{"id":"940GZZLUUPY","lines":[{"name":"District"}]},"coordinates":[8228,5394]},{"type":"Point","properties":{"id":"940GZZLUUXB","lines":[{"name":"Metropolitan"},{"name":"Piccadilly"}]},"coordinates":[3793,5619]},{"type":"Point","properties":{"id":"940GZZLUVIC","lines":[{"name":"District"},{"name":"Circle"},{"name":"Victoria"}]},"coordinates":[6364,4239]},{"type":"Point","properties":{"id":"940GZZLUVXL","lines":[{"name":"Victoria"}]},"coordinates":[6519,3926]},{"type":"Point","properties":{"id":"940GZZLUWAF","lines":[{"name":"Metropolitan","closed":2019}]},"coordinates":[4261,8676]},{"type":"Point","properties":{"id":"940GZZLUWBN","lines":[{"name":"District"},{"name":"London Overground","opened":2007}]},"coordinates":[5963,3982]},{"type":"Point","properties":{"id":"940GZZLUWCY","lines":[{"name":"Central"}]},"coordinates":[5742,4672]},{"type":"Point","properties":{"id":"940GZZLUWFN","lines":[{"name":"Northern"}]},"coordinates":[6019,7357]},{"type":"Point","properties":{"id":"940GZZLUWHM","lines":[{"name":"District"},{"name":"Hammersmith & City"},{"name":"Jubilee"},{"name":"DLR","opened":2011}]},"coordinates":[7497,5121]},{"type":"Point","properties":{"id":"940GZZLUWHP","lines":[{"name":"Jubilee"},{"name":"London Overground","opened":2007}]},"coordinates":[5999,5631]},{"type":"Point","properties":{"id":"940GZZLUWHW","lines":[{"name":"Metropolitan"}]},"coordinates":[4749,6527]},{"type":"Point","properties":{"id":"940GZZLUWIG","lines":[{"name":"Jubilee"}]},"coordinates":[5761,5699]},{"type":"Point","properties":{"id":"940GZZLUWIM","lines":[{"name":"District"},{"name":"Tramlink"}]},"coordinates":[5882,2181]},{"type":"Point","properties":{"id":"940GZZLUWIP","lines":[{"name":"District"}]},"coordinates":[5932,2534]},{"type":"Point","properties":{"id":"940GZZLUWJN","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5598,5228]},{"type":"Point","properties":{"id":"940GZZLUWKA","lines":[{"name":"Bakerloo"}]},"coordinates":[6052,4982]},{"type":"Point","properties":{"id":"940GZZLUWKN","lines":[{"name":"District"}]},"coordinates":[5883,4083]},{"type":"Point","properties":{"id":"940GZZLUWLA","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City","opened":2008}]},"coordinates":[5747,4617]},{"type":"Point","properties":{"id":"940GZZLUWLO","lines":[{"name":"Bakerloo"},{"name":"Jubilee"},{"name":"Northern"},{"name":"Waterloo & City"}]},"coordinates":[6586,4424]},{"type":"Point","properties":{"id":"940GZZLUWOF","lines":[{"name":"Central"}]},"coordinates":[7723,7279]},{"type":"Point","properties":{"id":"940GZZLUWOG","lines":[{"name":"Piccadilly"}]},"coordinates":[6621,7024]},{"type":"Point","properties":{"id":"940GZZLUWOP","lines":[{"name":"Northern"}]},"coordinates":[6039,7585]},{"type":"Point","properties":{"id":"910GWAPPING","lines":[{"name":"London Overground","opened":2010},{"name":"East London","closed":2007}]},"coordinates":[7034,4459]},{"type":"Point","properties":{"id":"940GZZLUWPL","lines":[{"name":"District"},{"name":"Hammersmith & City"},{"name":"London Overground","opened":2010},{"name":"Crossrail","opened":2018},{"name":"East London","closed":2007}]},"coordinates":[7002,4885]},{"type":"Point","properties":{"id":"940GZZLUWRP","lines":[{"name":"Central"}]},"coordinates":[4106,6258]},{"type":"Point","properties":{"id":"940GZZLUWRR","lines":[{"name":"Northern"},{"name":"Victoria"}]},"coordinates":[6404,5019]},{"type":"Point","properties":{"id":"940GZZLUWSD","lines":[{"name":"Central"}]},"coordinates":[7683,6425]},{"type":"Point","properties":{"id":"940GZZLUWSM","lines":[{"name":"District"},{"name":"Circle"},{"name":"Jubilee"}]},"coordinates":[6497,4364]},{"type":"Point","properties":{"id":"940GZZLUWSP","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City"}]},"coordinates":[5917,4917]},{"type":"Point","properties":{"id":"940GZZLUWTA","lines":[{"name":"Central"}]},"coordinates":[5311,4841]},{"type":"Point","properties":{"id":"940GZZLUWWL","lines":[{"name":"London Overground","opened":2015},{"name":"Victoria"}]},"coordinates":[7310,6625]},{"type":"Point","properties":{"id":"940GZZLUWYC","lines":[{"name":"Bakerloo"},{"name":"London Overground","opened":2007}]},"coordinates":[5193,5756]},{"type":"Point","properties":{"id":"940GZZLUWYP","lines":[{"name":"Jubilee"},{"name":"Metropolitan"}]},"coordinates":[5315,6097]},{"type":"Point","properties":{"id":"910GHOXTON","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6883,5207]},{"type":"Point","properties":{"id":"910GHAGGERS","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6884,5412]},{"type":"Point","properties":{"id":"910GDALS","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6888,5611]},{"type":"Point","properties":{"id":"910GBRBY","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[5911,5583]},{"type":"Point","properties":{"id":"910GBRBYPK","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[5851,5461]},{"type":"Point","properties":{"id":"910GCLDNNRB","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6581,5541]},{"type":"Point","properties":{"id":"910GCMDNRD","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6393,5496]},{"type":"Point","properties":{"id":"910GCNNB","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6752,5681]},{"type":"Point","properties":{"id":"910GCROUCHH","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6564,6304]},{"type":"Point","properties":{"id":"910GCSEAH","lines":[{"name":"London Overground","opened":2009}]},"coordinates":[6058,3659]},{"type":"Point","properties":{"id":"910GDALSKLD","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6881,5667]},{"type":"Point","properties":{"id":"910GFNCHLYR","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6052,5717]},{"type":"Point","properties":{"id":"910GGOSPLOK","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6296,5874]},{"type":"Point","properties":{"id":"910GHACKNYC","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7023,5637]},{"type":"Point","properties":{"id":"910GHACKNYW","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7272,5536]},{"type":"Point","properties":{"id":"910GHMPSTDH","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6195,5862]},{"type":"Point","properties":{"id":"910GHOMRTON","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7137,5637]},{"type":"Point","properties":{"id":"910GHRGYGL","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6713,6468]},{"type":"Point","properties":{"id":"910GKENR","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[5774,5288]},{"type":"Point","properties":{"id":"910GKNTSHTW","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6337,5637]},{"type":"Point","properties":{"id":"910GLEYTNMR","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7407,6256]},{"type":"Point","properties":{"id":"910GLYTNSHR","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7522,6100]},{"type":"Point","properties":{"id":"910GSACTON","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[5391,4328]},{"type":"Point","properties":{"id":"910GSTOTNHM","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6913,6558]},{"type":"Point","properties":{"id":"910GUPRHLWY","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6470,6093]},{"type":"Point","properties":{"id":"910GWDGRNPK","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7805,5695]},{"type":"Point","properties":{"id":"910GWLTHQRD","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7281,6586]},{"type":"Point","properties":{"id":"910GWNSTDPK","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[7665,5764]},{"type":"Point","properties":{"id":"910GCLPHMJ1","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6144,3370]},{"type":"Point","properties":{"id":"910GWCROYDN","lines":[{"name":"London Overground","opened":2010},{"name":"Tramlink"}]},"coordinates":[6678,990]},{"type":"Point","properties":{"id":"910GNORWDJ","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6891,1506]},{"type":"Point","properties":{"id":"910GANERLEY","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6958,1922]},{"type":"Point","properties":{"id":"910GSYDENHM","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[7046,2336]},{"type":"Point","properties":{"id":"910GPENEW","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6998,2066]},{"type":"Point","properties":{"id":"910GHONROPK","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[7115,2962]},{"type":"Point","properties":{"id":"910GFORESTH","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[7058,2680]},{"type":"Point","properties":{"id":"910GCRYSTLP","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[6909,2079]},{"type":"Point","properties":{"id":"910GBROCKLY","lines":[{"name":"London Overground","opened":2010}]},"coordinates":[7176,3365]},{"type":"Point","properties":{"id":"910GHEDSTNL","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[4727,7162]},{"type":"Point","properties":{"id":"910GHTCHEND","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[4635,7356]},{"type":"Point","properties":{"id":"910GCRPNDPK","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[4505,7878]},{"type":"Point","properties":{"id":"910GBUSHEY","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[4508,8356]},{"type":"Point","properties":{"id":"910GWATFDHS","lines":[{"name":"London Overground","opened":2007},{"name":"Metropolitan","opened":2020}]},"coordinates":[4455,8536]},{"type":"Point","properties":{"id":"910GWATFDJ","lines":[{"name":"London Overground","opened":2007},{"name":"Metropolitan","opened":2020}]},"coordinates":[4426,8844]},{"type":"Point","properties":{"id":"910GKLBRNHR","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[5994,5378]},{"type":"Point","properties":{"id":"910GSHMPSTD","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[6091,5479]},{"type":"Point","properties":{"id":"910GACTNCTL","lines":[{"name":"London Overground","opened":2007}]},"coordinates":[5447,4580]},{"type":"Point","properties":{"id":"940GZZLUHSD","lines":[{"name":"District"},{"name":"Piccadilly"}]},"coordinates":[5750,4123]},{"type":"Point","properties":{"id":"940GZZLUBNK","lines":[{"name":"Central"},{"name":"Northern"},{"name":"DLR"},{"name":"Waterloo & City"}]},"coordinates":[6780,4710]},{"type":"Point","properties":{"id":"910GPCKHMQD","lines":[{"name":"London Overground","opened":2012}]},"coordinates":[7026,3625]},{"type":"Point","properties":{"id":"910GPCKHMRY","lines":[{"name":"London Overground","opened":2012}]},"coordinates":[6923,3498]},{"type":"Point","properties":{"id":"910GDENMRKH","lines":[{"name":"London Overground","opened":2012}]},"coordinates":[6780,3463]},{"type":"Point","properties":{"id":"910GCLPHHS","lines":[{"name":"London Overground","opened":2012}]},"coordinates":[6447,3389]},{"type":"Point","properties":{"id":"910GWNDSWRD","lines":[{"name":"London Overground","opened":2012}]},"coordinates":[6403,3504]},{"type":"Point","properties":{"id":"940GZZDLSTL","lines":[{"name":"DLR","opened":2011}]},"coordinates":[7495,4906]},{"type":"Point","properties":{"id":"940GZZDLABR","lines":[{"name":"DLR","opened":2011}]},"coordinates":[7490,5232]},{"type":"Point","properties":{"id":"940GZZDLSHS","lines":[{"name":"DLR","opened":2011}]},"coordinates":[7460,5379]},{"type":"Point","properties":{"id":"940GZZDLSIT","lines":[{"name":"DLR","opened":2011}]},"coordinates":[7395,5601]},{"type":"Point","properties":{"id":"910GSHENFLD","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[9999,7953]},{"type":"Point","properties":{"id":"910GBRTWOOD","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[9763,7468]},{"type":"Point","properties":{"id":"910GHRLDWOD","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[9250,6893]},{"type":"Point","properties":{"id":"910GGIDEAPK","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[9038,6589]},{"type":"Point","properties":{"id":"910GROMFORD","lines":[{"name":"London Overground","opened":2015},{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[8870,6404]},{"type":"Point","properties":{"id":"910GCHDWLHT","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[8453,6212]},{"type":"Point","properties":{"id":"910GGODMAYS","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[8314,6145]},{"type":"Point","properties":{"id":"910GSVNKNGS","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[8208,6100]},{"type":"Point","properties":{"id":"910GILFORD","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[7999,5967]},{"type":"Point","properties":{"id":"910GMANRPK","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[7814,5785]},{"type":"Point","properties":{"id":"910GFRSTGT","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[7648,5705]},{"type":"Point","properties":{"id":"910GMRYLAND","lines":[{"name":"TfL Rail","opened":2015,"closed":2017},{"name":"Crossrail","opened":2018}]},"coordinates":[7511,5613]},{"type":"Point","properties":{"id":"940GZZLUHSC","lines":[{"name":"Circle","opened":2009},{"name":"Hammersmith & City"}]},"coordinates":[5736,4177]},{"type":"Point","properties":{"id":"910GBTHNLGR","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7007,4999]},{"type":"Point","properties":{"id":"910GWDST","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7445,6727]},{"type":"Point","properties":{"id":"910GEDMNGRN","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6993,7783]},{"type":"Point","properties":{"id":"910GBHILLPK","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6933,8231]},{"type":"Point","properties":{"id":"910GHGHMSPK","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7461,7341]},{"type":"Point","properties":{"id":"910GSTJMSST","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7211,6571]},{"type":"Point","properties":{"id":"910GHAKNYNM","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6994,5692]},{"type":"Point","properties":{"id":"910GLONFLDS","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7019,5474]},{"type":"Point","properties":{"id":"910GCAMHTH","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7021,5233]},{"type":"Point","properties":{"id":"910GTHBLDSG","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7190,9630]},{"type":"Point","properties":{"id":"910GCLAPTON","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7027,6039]},{"type":"Point","properties":{"id":"910GSTMFDHL","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6875,6391]},{"type":"Point","properties":{"id":"910GRCTRYRD","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6938,5955]},{"type":"Point","properties":{"id":"910GBRUCGRV","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6925,6922]},{"type":"Point","properties":{"id":"910GSBURY","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7060,8436]},{"type":"Point","properties":{"id":"910GSTKNWNG","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6905,6133]},{"type":"Point","properties":{"id":"910GWHHRTLA","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6919,7219]},{"type":"Point","properties":{"id":"910GCHINGFD","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7540,8011]},{"type":"Point","properties":{"id":"910GCHESHNT","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7279,9930]},{"type":"Point","properties":{"id":"910GTURKYST","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[7101,9097]},{"type":"Point","properties":{"id":"910GSIVRST","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6947,7505]},{"type":"Point","properties":{"id":"910GENFLDTN","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[6854,8527]},{"type":"Point","properties":{"id":"910GEMRSPKH","lines":[{"name":"London Overground","opened":2015}]},"coordinates":[9153,6230]},{"type":"Point","properties":{"id":"940GZZCRDDR","lines":[{"name":"Tramlink"}]},"coordinates":[5870,2067]},{"type":"Point","properties":{"id":"940GZZCRMTP","lines":[{"name":"Tramlink"}]},"coordinates":[5918,1964]},{"type":"Point","properties":{"id":"940GZZCRMDN","lines":[{"name":"Tramlink"}]},"coordinates":[5983,1829]},{"type":"Point","properties":{"id":"940GZZCRPHI","lines":[{"name":"Tramlink"}]},"coordinates":[6066,1676]},{"type":"Point","properties":{"id":"940GZZCRBGV","lines":[{"name":"Tramlink"}]},"coordinates":[6095,1611]},{"type":"Point","properties":{"id":"940GZZCRMCH","lines":[{"name":"Tramlink"}]},"coordinates":[6150,1517]},{"type":"Point","properties":{"id":"940GZZCRMJT","lines":[{"name":"Tramlink"}]},"coordinates":[6256,1382]},{"type":"Point","properties":{"id":"940GZZCRBED","lines":[{"name":"Tramlink"}]},"coordinates":[6367,1294]},{"type":"Point","properties":{"id":"940GZZCRTPA","lines":[{"name":"Tramlink"}]},"coordinates":[6473,1190]},{"type":"Point","properties":{"id":"940GZZCRAMP","lines":[{"name":"Tramlink"}]},"coordinates":[6514,1098]},{"type":"Point","properties":{"id":"940GZZCRWAD","lines":[{"name":"Tramlink"}]},"coordinates":[6559,951]},{"type":"Point","properties":{"id":"940GZZCRWAN","lines":[{"name":"Tramlink"}]},"coordinates":[6593,854]},{"type":"Point","properties":{"id":"940GZZCRRVC","lines":[{"name":"Tramlink"}]},"coordinates":[6647,892]},{"type":"Point","properties":{"id":"940GZZCRCHR","lines":[{"name":"Tramlink"}]},"coordinates":[6665,857]},{"type":"Point","properties":{"id":"940GZZCRCEN","lines":[{"name":"Tramlink"}]},"coordinates":[6706,866]},{"type":"Point","properties":{"id":"940GZZCRWEL","lines":[{"name":"Tramlink"}]},"coordinates":[6714,913]},{"type":"Point","properties":{"id":"940GZZCRECR","lines":[{"name":"Tramlink"}]},"coordinates":[6752,890]},{"type":"Point","properties":{"id":"940GZZCRLEB","lines":[{"name":"Tramlink"}]},"coordinates":[6815,900]},{"type":"Point","properties":{"id":"940GZZCRSAN","lines":[{"name":"Tramlink"}]},"coordinates":[6867,894]},{"type":"Point","properties":{"id":"940GZZCRADD","lines":[{"name":"Tramlink"}]},"coordinates":[6901,1032]},{"type":"Point","properties":{"id":"940GZZCRBLA","lines":[{"name":"Tramlink"}]},"coordinates":[6922,1166]},{"type":"Point","properties":{"id":"940GZZCRWOD","lines":[{"name":"Tramlink"}]},"coordinates":[6959,1224]},{"type":"Point","properties":{"id":"940GZZCRARA","lines":[{"name":"Tramlink"}]},"coordinates":[7016,1353]},{"type":"Point","properties":{"id":"940GZZCRELM","lines":[{"name":"Tramlink"}]},"coordinates":[7082,1536]},{"type":"Point","properties":{"id":"940GZZCRHAR","lines":[{"name":"Tramlink"}]},"coordinates":[6999,1575]},{"type":"Point","properties":{"id":"940GZZCRBIR","lines":[{"name":"Tramlink"}]},"coordinates":[7035,1688]},{"type":"Point","properties":{"id":"940GZZCRAVE","lines":[{"name":"Tramlink"}]},"coordinates":[7087,1779]},{"type":"Point","properties":{"id":"940GZZCRBRD","lines":[{"name":"Tramlink"}]},"coordinates":[7132,1850]},{"type":"Point","properties":{"id":"940GZZCRBEK","lines":[{"name":"Tramlink"}]},"coordinates":[7262,1880]},{"type":"Point","properties":{"id":"940GZZCRLOY","lines":[{"name":"Tramlink"}]},"coordinates":[6844,597]},{"type":"Point","properties":{"id":"9400ZZCRCOO","lines":[{"name":"Tramlink"}]},"coordinates":[7002,476]},{"type":"Point","properties":{"id":"940GZZCRGRA","lines":[{"name":"Tramlink"}]},"coordinates":[7134,332]},{"type":"Point","properties":{"id":"940GZZCRADV","lines":[{"name":"Tramlink"}]},"coordinates":[7214,378]},{"type":"Point","properties":{"id":"940GZZCRFLD","lines":[{"name":"Tramlink"}]},"coordinates":[7277,233]},{"type":"Point","properties":{"id":"9400ZZCRKGH","lines":[{"name":"Tramlink"}]},"coordinates":[7307,83]},{"type":"Point","properties":{"id":"940GZZCRNWA","lines":[{"name":"Tramlink"}]},"coordinates":[7330,0]},{"type":"Point","properties":{"id":"940GZZCRCTR","lines":[{"name":"Tramlink","opened":2005}]},"coordinates":[6667,920]},{"type":"Point","properties":{"id":"910GBATRSPK","lines":[{"name":"London Overground","opened":2012}]},"coordinates":[6332,3735]},{"type":"Point","properties":{"id":"910GACTONML","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[5414,4811]},{"type":"Point","properties":{"id":"910GWEALING","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[5005,4712]},{"type":"Point","properties":{"id":"910GHANWELL","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[4866,4665]},{"type":"Point","properties":{"id":"910GSTHALL","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[4568,4510]},{"type":"Point","properties":{"id":"910GHAYESAH","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[4244,4422]},{"type":"Point","properties":{"id":"910GWDRYTON","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[3843,4610]},{"type":"Point","properties":{"id":"910GIVER","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[3577,4578]},{"type":"Point","properties":{"id":"910GLANGLEY","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[3311,4559]},{"type":"Point","properties":{"id":"910GSLOUGH","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[2919,4681]},{"type":"Point","properties":{"id":"910GBNHAM","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[2505,4985]},{"type":"Point","properties":{"id":"910GTAPLOW","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[2234,4986]},{"type":"Point","properties":{"id":"910GMDNHEAD","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[1919,4845]},{"type":"Point","properties":{"id":"910GTWYFORD","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[837,3654]},{"type":"Point","properties":{"id":"910GRDNGSTN","lines":[{"name":"Crossrail","opened":2019}]},"coordinates":[0,3217]},{"type":"Point","properties":{"id":"910GABWD","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[8387,4094]},{"type":"Point","properties":{"id":"910G971","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[8006,4114]},{"type":"Point","properties":{"id":"940GZZALRDK","lines":[{"name":"Emirates Air Line","opened":2012}]},"coordinates":[7602,4554]},{"type":"Point","properties":{"id":"940GZZALGWP","lines":[{"name":"Emirates Air Line","opened":2012}]},"coordinates":[7526,4331]},{"type":"Point","properties":{"id":"940GZZLUSDH","lines":[{"name":"East London","closed":2005}]},"coordinates":[6918,4963]},{"type":"Point","properties":{"id":"910G950","lines":[{"name":"Crossrail","opened":2018}]},"coordinates":[7329,4513]},{"type":"Point","properties":{"id":"940GZZLU960","lines":[{"name":"Metropolitan","opened":2020}]},"coordinates":[4208,8490]},{"type":"Point","properties":{"id":"940GZZLU961","lines":[{"name":"Metropolitan","opened":2020}]},"coordinates":[4328,8384]},{"type":"Point","properties":{"id":"940GZZLU990","lines":[{"name":"Northern","opened":2020}]},"coordinates":[6476,3793]},{"type":"Point","properties":{"id":"940GZZLU991","lines":[{"name":"Northern","opened":2020}]},"coordinates":[6366,3773]}]}},"arcs":[],"transform":{"scale":[0.00013036513651365137,0.00003629303263344896],"translate":[-0.9729138,51.3424955666981]}} -------------------------------------------------------------------------------- /data/USA/README.md: -------------------------------------------------------------------------------- 1 | # USA Geometries 2 | 3 | ## States & Counties 4 | Type: MultiPolygon 5 | Source: [U.S. Atlas](https://github.com/mbostock/us-atlas) 6 | [TopoJSON](us-named.topojson) 7 | 8 | ## California Streams 9 | Type: MultiLineString 10 | Source: [U.S. Atlas](https://github.com/mbostock/us-atlas) 11 | 12 | [TopoJSON](california-streams.topojson) 13 | 14 | ```shell 15 | # clone the us-atlas project and follow instructions for initializing 16 | cd us-atlas 17 | # download the river data 18 | make shp/us/streams-unmerged.shp 19 | # grab california's [region](http://www.horizon-systems.com/nhdplus/NHDPlusV2_data.php) and convert to GeoJSON 20 | ogr2ogr -f GeoJSON topo/us-streams-unmerged-18.geojson shp/us/streams-unmerged.shp -where Region=18 21 | # convert the geojson to topojson (this fails due to lack of memory if tried on the entire country) 22 | geo2topo -o topo/us-streams-unmerged-18.topojson -p Name --no-pre-quantization --post-quantization=1e6 --simplify=7e-7 topo/us-streams-unmerged-18.geojson 23 | ``` 24 | 25 | ## SF Election Precincts 26 | Type: MultiPolygon & Tabular data 27 | Source: [Original](https://data.sfgov.org/Geographic-Locations-and-Boundaries/Election-Precincts-Zipped-Shapefile-Format-/w3ua-z2my) 28 | [Processed](http://bl.ocks.org/rogerfischer/338b7fcd478eea7af0eec61f3c5e8c1b) 29 | 30 | The SF precincts are split out into two files, one for the geometry and one for 31 | some associated metadata. The two can be joined by the id of each feature. 32 | 33 | [TopoJSON](sf-precincts.topojson) 34 | [CSV](sf-precincts.csv) 35 | -------------------------------------------------------------------------------- /data/USA/sf-precincts.csv: -------------------------------------------------------------------------------- 1 | "id","pct_2012","pct_2010","neighborhood","supervisorial_district","BART_district","assembly_district","congressional_district" 2 | "84006075PCT1101","1101","1101","EXCELSIOR",11,9,19,14 3 | "84006075PCT1102","1102","1104","EXCELSIOR",11,9,19,14 4 | "84006075PCT1103","1103","1102","EXCELSIOR",11,9,19,14 5 | "84006075PCT1104","1104","1105","EXCELSIOR",11,9,19,14 6 | "84006075PCT1105","1105","1105","EXCELSIOR",11,9,19,14 7 | "84006075PCT1106","1106","1113","INGLESIDE",11,8,19,14 8 | "84006075PCT1107","1107","1114","INGLESIDE",11,8,19,14 9 | "84006075PCT1108","1108","1115","INGLESIDE",11,8,19,14 10 | "84006075PCT1109","1109","1116","INGLESIDE",11,8,19,14 11 | "84006075PCT1111","1111","1117","INGLESIDE",11,8,19,14 12 | "84006075PCT1112","1112","1118","INGLESIDE",11,8,19,14 13 | "84006075PCT1113","1113","1119","EXCELSIOR",11,9,19,14 14 | "84006075PCT1114","1114","1121","EXCELSIOR",11,9,19,14 15 | "84006075PCT1115","1115","1125","INGLESIDE",11,8,19,14 16 | "84006075PCT1116","1116","1126","INGLESIDE",11,8,19,14 17 | "84006075PCT1117","1117","1127","INGLESIDE",11,8,19,14 18 | "84006075PCT1118","1118","1128","INGLESIDE",11,8,19,14 19 | "84006075PCT1119","1119","1129","INGLESIDE",11,8,19,14 20 | "84006075PCT1121","1121","1133","EXCELSIOR",11,8,19,14 21 | "84006075PCT1122","1122","1119","EXCELSIOR",11,8,19,14 22 | "84006075PCT1123","1123","1128","INGLESIDE",11,8,19,14 23 | "84006075PCT1124","1124","1131","INGLESIDE",11,8,19,14 24 | "84006075PCT1125","1125","1132","EXCELSIOR",11,8,19,14 25 | "84006075PCT1126","1126","1141","EXCELSIOR",11,8,19,14 26 | "84006075PCT1127","1127","1142","EXCELSIOR",11,8,19,14 27 | "84006075PCT1128","1128","1134","EXCELSIOR",11,8,19,14 28 | "84006075PCT1129","1129","1143","EXCELSIOR",11,8,19,14 29 | "84006075PCT1131","1131","1144","EXCELSIOR",11,8,19,14 30 | "84006075PCT1132","1132","1135","EXCELSIOR",11,8,19,14 31 | "84006075PCT1133","1133","1145","EXCELSIOR",11,8,19,14 32 | "84006075PCT1134","1134","1146","EXCELSIOR",11,8,19,14 33 | "84006075PCT1135","1135","1147","EXCELSIOR",11,8,19,14 34 | "84006075PCT1136","1136","2008","EXCELSIOR",11,8,19,14 35 | "84006075PCT1141","1141","1103","EXCELSIOR",11,9,17,12 36 | "84006075PCT1142","1142","1106","EXCELSIOR",11,9,17,12 37 | "84006075PCT1143","1143","1107","EXCELSIOR",11,9,17,12 38 | "84006075PCT1144","1144","1108","EXCELSIOR",11,9,17,12 39 | "84006075PCT1145","1145","1109","EXCELSIOR",11,9,17,12 40 | "84006075PCT1146","1146","1122","EXCELSIOR",11,9,17,12 41 | "84006075PCT1147","1147","1123","EXCELSIOR",11,9,17,12 42 | "84006075PCT1148","1148","1138","EXCELSIOR",11,9,17,12 43 | "84006075PCT1149","1149","1124","EXCELSIOR",11,9,17,12 44 | "84006075PCT1151","1151","2001","VISITA VLY",11,8,17,12 45 | "84006075PCT1152","1152","1136","EXCELSIOR",11,9,17,12 46 | "84006075PCT1153","1153","1137","EXCELSIOR",11,9,17,12 47 | "84006075PCT1154","1154","1137","EXCELSIOR",11,8,17,12 48 | "84006075PCT7001","7001","3647","MISSION",10,9,17,12 49 | "84006075PCT7002","7002","3001","POTRERO HILL",10,9,17,12 50 | "84006075PCT7003","7003","3001","POTRERO HILL",10,9,17,12 51 | "84006075PCT7004","7004","3002","POTRERO HILL",10,9,17,12 52 | "84006075PCT7005","7005","3002","POTRERO HILL",10,9,17,12 53 | "84006075PCT7006","7006","3003","POTRERO HILL",10,9,17,12 54 | "84006075PCT7007","7007","3004","POTRERO HILL",10,9,17,12 55 | "84006075PCT7008","7008","3005","POTRERO HILL",10,9,17,12 56 | "84006075PCT7009","7009","3010","BAYVW/HTRSPT",10,9,17,12 57 | "84006075PCT7011","7011","3009","POTRERO HILL",10,9,17,12 58 | "84006075PCT7012","7012","3007","POTRERO HILL",10,9,17,12 59 | "84006075PCT7013","7013","3011","POTRERO HILL",10,7,17,12 60 | "84006075PCT7014","7014","3037","POTRERO HILL",10,7,17,12 61 | "84006075PCT7015","7015","3012","BAYVW/HTRSPT",10,7,17,12 62 | "84006075PCT7016","7016","3013","BAYVW/HTRSPT",10,7,17,12 63 | "84006075PCT7017","7017","3014","BAYVW/HTRSPT",10,7,17,12 64 | "84006075PCT7018","7018","3017","BAYVW/HTRSPT",10,7,17,12 65 | "84006075PCT7019","7019","3018","BAYVW/HTRSPT",10,7,17,12 66 | "84006075PCT7021","7021","3019","BAYVW/HTRSPT",10,7,17,12 67 | "84006075PCT7022","7022","3020","BAYVW/HTRSPT",10,7,17,12 68 | "84006075PCT7023","7023","3022","BAYVW/HTRSPT",10,7,17,12 69 | "84006075PCT7024","7024","3016","BAYVW/HTRSPT",10,7,17,12 70 | "84006075PCT7025","7025","3015","BAYVW/HTRSPT",10,7,17,12 71 | "84006075PCT7026","7026","3023","BAYVW/HTRSPT",10,7,17,12 72 | "84006075PCT7027","7027","3024","BAYVW/HTRSPT",10,7,17,12 73 | "84006075PCT7028","7028","3025","BAYVW/HTRSPT",10,7,17,12 74 | "84006075PCT7029","7029","3022","BAYVW/HTRSPT",10,7,17,12 75 | "84006075PCT7030","7030","3028","BAYVW/HTRSPT",10,7,17,12 76 | "84006075PCT7031","7031","3028","BAYVW/HTRSPT",10,7,17,12 77 | "84006075PCT7032","7032","3031","BAYVW/HTRSPT",10,7,17,12 78 | "84006075PCT7033","7033","3032","BAYVW/HTRSPT",10,7,17,12 79 | "84006075PCT7034","7034","3027","BAYVW/HTRSPT",10,7,17,12 80 | "84006075PCT7035","7035","3034","BAYVW/HTRSPT",10,7,17,12 81 | "84006075PCT7036","7036","2011","VISITA VLY",10,8,17,12 82 | "84006075PCT7037","7037","2012","VISITA VLY",10,8,17,12 83 | "84006075PCT7038","7038","2001","VISITA VLY",10,8,17,12 84 | "84006075PCT7039","7039","2006","VISITA VLY",10,8,17,12 85 | "84006075PCT7041","7041","2005","PORTOLA",10,9,17,12 86 | "84006075PCT7042","7042","2005","VISITA VLY",10,7,17,12 87 | "84006075PCT7043","7043","3029","BAYVW/HTRSPT",10,7,17,12 88 | "84006075PCT7044","7044","3035","BAYVW/HTRSPT",10,7,17,12 89 | "84006075PCT7045","7045","2001","VISITA VLY",10,8,17,12 90 | "84006075PCT7046","7046","2007","VISITA VLY",10,7,17,12 91 | "84006075PCT7047","7047","2018","VISITA VLY",10,8,17,12 92 | "84006075PCT7048","7048","2014","VISITA VLY",10,8,17,12 93 | "84006075PCT7049","7049","2016","VISITA VLY",10,8,17,12 94 | "84006075PCT7051","7051","2017","VISITA VLY",10,8,17,12 95 | "84006075PCT7052","7052","2019","BAYVW/HTRSPT",10,8,17,12 96 | "84006075PCT7053","7053","3039","BAYVW/HTRSPT",10,7,17,12 97 | "84006075PCT7054","7054","3036","BAYVW/HTRSPT",10,7,17,12 98 | "84006075PCT7101","7101","3101","HAIGHT ASH",1,9,17,12 99 | "84006075PCT7201","7201","3205","MAR/PAC HTS",2,8,17,12 100 | "84006075PCT7202","7202","3302","MAR/PAC HTS",2,8,17,12 101 | "84006075PCT7203","7203","3229","MAR/PAC HTS",2,8,17,12 102 | "84006075PCT7204","7204","3221","MAR/PAC HTS",2,8,17,12 103 | "84006075PCT7205","7205","3306","MAR/PAC HTS",2,8,17,12 104 | "84006075PCT7206","7206","3502","MAR/PAC HTS",2,9,17,12 105 | "84006075PCT7207","7207","3504","MAR/PAC HTS",2,9,17,12 106 | "84006075PCT7208","7208","3243","MAR/PAC HTS",2,9,17,12 107 | "84006075PCT7209","7209","3242","MAR/PAC HTS",2,9,17,12 108 | "84006075PCT7301","7301","3301","N EMBRCDRO",3,8,17,12 109 | "84006075PCT7302","7302","3305","N EMBRCDRO",3,8,17,12 110 | "84006075PCT7303","7303","3302","CHINA",3,8,17,12 111 | "84006075PCT7304","7304","3303","N EMBRCDRO",3,8,17,12 112 | "84006075PCT7305","7305","3304","N EMBRCDRO",3,8,17,12 113 | "84006075PCT7306","7306","3307","CHINA",3,8,17,12 114 | "84006075PCT7307","7307","3308","N EMBRCDRO",3,8,17,12 115 | "84006075PCT7308","7308","3309","N EMBRCDRO",3,8,17,12 116 | "84006075PCT7309","7309","3312","CHINA",3,8,17,12 117 | "84006075PCT7311","7311","3313","CHINA",3,8,17,12 118 | "84006075PCT7312","7312","3315","CHINA",3,8,17,12 119 | "84006075PCT7313","7313","3316","CHINA",3,8,17,12 120 | "84006075PCT7314","7314","3317","CHINA",3,8,17,12 121 | "84006075PCT7315","7315","3318","CHINA",3,8,17,12 122 | "84006075PCT7316","7316","3319","CHINA",3,8,17,12 123 | "84006075PCT7317","7317","3311","N EMBRCDRO",3,8,17,12 124 | "84006075PCT7318","7318","3314","CHINA",3,8,17,12 125 | "84006075PCT7319","7319","3322","CHINA",3,9,17,12 126 | "84006075PCT7321","7321","3326","CHINA",3,8,17,12 127 | "84006075PCT7322","7322","3326","CHINA",3,8,17,12 128 | "84006075PCT7323","7323","3331","CHINA",3,9,17,12 129 | "84006075PCT7324","7324","3323","CHINA",3,9,17,12 130 | "84006075PCT7325","7325","3324","CHINA",3,8,17,12 131 | "84006075PCT7326","7326","3325","CHINA",3,8,17,12 132 | "84006075PCT7327","7327","3336","CHINA",3,8,17,12 133 | "84006075PCT7328","7328","3337","CVC CTR/DWTN",3,8,17,12 134 | "84006075PCT7329","7329","3328","CVC CTR/DWTN",3,8,17,12 135 | "84006075PCT7331","7331","3329","N EMBRCDRO",3,8,17,12 136 | "84006075PCT7332","7332","3338","CVC CTR/DWTN",3,9,17,12 137 | "84006075PCT7333","7333","3333","CHINA",3,9,17,12 138 | "84006075PCT7334","7334","3332","CVC CTR/DWTN",3,9,17,12 139 | "84006075PCT7335","7335","3333","CVC CTR/DWTN",3,9,17,12 140 | "84006075PCT7336","7336","3343","CVC CTR/DWTN",3,9,17,12 141 | "84006075PCT7337","7337","3335","CVC CTR/DWTN",3,9,17,12 142 | "84006075PCT7338","7338","3344","CVC CTR/DWTN",3,8,17,12 143 | "84006075PCT7339","7339","3338","CVC CTR/DWTN",3,9,17,12 144 | "84006075PCT7341","7341","3339","CVC CTR/DWTN",3,9,17,12 145 | "84006075PCT7342","7342","3342","CVC CTR/DWTN",3,9,17,12 146 | "84006075PCT7343","7343","3345","CVC CTR/DWTN",3,9,17,12 147 | "84006075PCT7344","7344","3351","CVC CTR/DWTN",3,9,17,12 148 | "84006075PCT7345","7345","3346","CVC CTR/DWTN",3,9,17,12 149 | "84006075PCT7346","7346","3349","CVC CTR/DWTN",3,9,17,12 150 | "84006075PCT7347","7347","3603","CVC CTR/DWTN",3,9,17,12 151 | "84006075PCT7348","7348","3347","CVC CTR/DWTN",3,9,17,12 152 | "84006075PCT7349","7349","3348","CVC CTR/DWTN",3,9,17,12 153 | "84006075PCT7501","7501","3502","MAR/PAC HTS",5,9,17,12 154 | "84006075PCT7502","7502","3503","MAR/PAC HTS",5,9,17,12 155 | "84006075PCT7503","7503","3504","MAR/PAC HTS",5,9,17,12 156 | "84006075PCT7504","7504","3505","WST ADDITION",5,9,17,12 157 | "84006075PCT7505","7505","3506","WST ADDITION",5,9,17,12 158 | "84006075PCT7506","7506","3508","WST ADDITION",5,9,17,12 159 | "84006075PCT7507","7507","3509","WST ADDITION",5,9,17,12 160 | "84006075PCT7508","7508","3608","WST ADDITION",5,9,17,12 161 | "84006075PCT7509","7509","3243","MAR/PAC HTS",5,9,17,12 162 | "84006075PCT7511","7511","3609","WST ADDITION",5,9,17,12 163 | "84006075PCT7512","7512","3519","WST ADDITION",5,9,17,12 164 | "84006075PCT7513","7513","3510","WST ADDITION",5,9,17,12 165 | "84006075PCT7514","7514","3522","WST ADDITION",5,9,17,12 166 | "84006075PCT7515","7515","3523","WST ADDITION",5,9,17,12 167 | "84006075PCT7516","7516","3650","WST ADDITION",5,9,17,12 168 | "84006075PCT7517","7517","3524","HAIGHT ASH",5,9,17,12 169 | "84006075PCT7518","7518","3525","HAIGHT ASH",5,9,17,12 170 | "84006075PCT7519","7519","3516","HAIGHT ASH",5,9,17,12 171 | "84006075PCT7521","7521","3526","HAIGHT ASH",5,9,17,12 172 | "84006075PCT7522","7522","3518","WST ADDITION",5,9,17,12 173 | "84006075PCT7523","7523","3527","WST ADDITION",5,9,17,12 174 | "84006075PCT7524","7524","3521","WST ADDITION",5,9,17,12 175 | "84006075PCT7525","7525","3532","WST ADDITION",5,9,17,12 176 | "84006075PCT7526","7526","3533","WST ADDITION",5,9,17,12 177 | "84006075PCT7527","7527","GG Park",NA,5,9,17,12 178 | "84006075PCT7528","7528","3528","WST ADDITION",5,9,17,12 179 | "84006075PCT7529","7529","3529","WST ADDITION",5,9,17,12 180 | "84006075PCT7531","7531","3531","WST ADDITION",5,9,17,12 181 | "84006075PCT7532","7532","3533","WST ADDITION",5,9,17,12 182 | "84006075PCT7533","7533","3534","HAIGHT ASH",5,9,17,12 183 | "84006075PCT7534","7534","3535","HAIGHT ASH",5,9,17,12 184 | "84006075PCT7535","7535","3536","HAIGHT ASH",5,9,17,12 185 | "84006075PCT7536","7536","3537","HAIGHT ASH",5,9,17,12 186 | "84006075PCT7537","7537","3538","HAIGHT ASH",5,9,17,12 187 | "84006075PCT7538","7538","3539","HAIGHT ASH",5,9,17,12 188 | "84006075PCT7539","7539","3541","WST ADDITION",5,9,17,12 189 | "84006075PCT7541","7541","3542","WST ADDITION",5,9,17,12 190 | "84006075PCT7542","7542","3543","WST ADDITION",5,9,17,12 191 | "84006075PCT7543","7543","3803","WST ADDITION",5,9,17,12 192 | "84006075PCT7544","7544","3544","WST ADDITION",5,9,17,12 193 | "84006075PCT7545","7545","3545","WST ADDITION",5,9,17,12 194 | "84006075PCT7546","7546","3548","HAIGHT ASH",5,9,17,12 195 | "84006075PCT7547","7547","3546","HAIGHT ASH",5,9,17,12 196 | "84006075PCT7548","7548","3547","HAIGHT ASH",5,9,17,12 197 | "84006075PCT7549","7549","2515","INNER SUNSET",5,9,17,12 198 | "84006075PCT7551","7551","3551","HAIGHT ASH",5,9,17,12 199 | "84006075PCT7552","7552","3552","HAIGHT ASH",5,9,17,12 200 | "84006075PCT7553","7553","2510","INNER SUNSET",5,9,17,12 201 | "84006075PCT7554","7554","2703","INNER SUNSET",5,9,17,12 202 | "84006075PCT7555","7555","3553","HAIGHT ASH",5,9,17,12 203 | "84006075PCT7556","7556","3554","HAIGHT ASH",5,9,17,12 204 | "84006075PCT7557","7557","3555","HAIGHT ASH",5,9,17,12 205 | "84006075PCT7601","7601","3601","CVC CTR/DWTN",6,9,17,12 206 | "84006075PCT7602","7602","3602","CVC CTR/DWTN",6,9,17,12 207 | "84006075PCT7603","7603","3602","CVC CTR/DWTN",6,9,17,12 208 | "84006075PCT7604","7604","3604","CVC CTR/DWTN",6,9,17,12 209 | "84006075PCT7605","7605","3605","CVC CTR/DWTN",6,9,17,12 210 | "84006075PCT7606","7606","3611","CVC CTR/DWTN",6,9,17,12 211 | "84006075PCT7607","7607","3610","CVC CTR/DWTN",6,9,17,12 212 | "84006075PCT7608","7608","3613","CVC CTR/DWTN",6,9,17,12 213 | "84006075PCT7609","7609","3614","CVC CTR/DWTN",6,9,17,12 214 | "84006075PCT7611","7611","3606","CVC CTR/DWTN",6,9,17,12 215 | "84006075PCT7612","7612","3651","CVC CTR/DWTN",6,9,17,12 216 | "84006075PCT7613","7613","3617","CVC CTR/DWTN",6,9,17,12 217 | "84006075PCT7614","7614","3618","CVC CTR/DWTN",6,9,17,12 218 | "84006075PCT7615","7615","3619","CVC CTR/DWTN",6,9,17,12 219 | "84006075PCT7616","7616","3616","CVC CTR/DWTN",6,9,17,12 220 | "84006075PCT7617","7617","3621","CVC CTR/DWTN",6,9,17,12 221 | "84006075PCT7618","7618","3623","MISSION",6,9,17,12 222 | "84006075PCT7619","7619","3624","SOMA",6,9,17,12 223 | "84006075PCT7621","7621","3625","SOMA",6,9,17,12 224 | "84006075PCT7622","7622","3625","SOMA",6,9,17,12 225 | "84006075PCT7623","7623","3636","SOMA",6,9,17,12 226 | "84006075PCT7624","7624","3626","SOMA",6,9,17,12 227 | "84006075PCT7625","7625","3627","SOMA",6,9,17,12 228 | "84006075PCT7626","7626","3657","SOMA",6,9,17,12 229 | "84006075PCT7627","7627","3628","SOMA",6,7,17,12 230 | "84006075PCT7628","7628","3634","MISSION",6,9,17,12 231 | "84006075PCT7629","7629","3620","SOMA",6,9,17,12 232 | "84006075PCT7631","7631","3630","SOMA",6,9,17,12 233 | "84006075PCT7632","7632","3635","SOMA",6,9,17,12 234 | "84006075PCT7633","7633","3637","SOMA",6,9,17,12 235 | "84006075PCT7634","7634","3638","SOMA",6,9,17,12 236 | "84006075PCT7635","7635","3639","SOMA",6,7,17,12 237 | "84006075PCT7636","7636","3641","SOMA",6,7,17,12 238 | "84006075PCT7637","7637","3653","SOMA",6,7,17,12 239 | "84006075PCT7638","7638","3652","SOMA",6,7,17,12 240 | "84006075PCT7639","7639","3640","SOMA",6,7,17,12 241 | "84006075PCT7641","7641","3648","SOMA",6,7,17,12 242 | "84006075PCT7642","7642","3642","SOMA",6,7,17,12 243 | "84006075PCT7643","7643","3658","POTRERO HILL",6,7,17,12 244 | "84006075PCT7644","7644","3654","POTRERO HILL",6,7,17,12 245 | "84006075PCT7645","7645","3654","POTRERO HILL",6,7,17,12 246 | "84006075PCT7646","7646","3643","POTRERO HILL",6,7,17,12 247 | "84006075PCT7647","7647","3631","SOMA",6,7,17,12 248 | "84006075PCT7648","7648","3655","SOMA",6,7,17,12 249 | "84006075PCT7701","7701","2707","W TWIN PKS",7,9,17,12 250 | "84006075PCT7702","7702","2708","W TWIN PKS",7,9,17,12 251 | "84006075PCT7703","7703","2716","W TWIN PKS",7,9,17,12 252 | "84006075PCT7704","7704","2717","W TWIN PKS",7,9,17,12 253 | "84006075PCT7705","7705","2709","W TWIN PKS",7,9,17,12 254 | "84006075PCT7706","7706","2736","W TWIN PKS",7,8,17,12 255 | "84006075PCT7707","7707","2737","W TWIN PKS",7,8,17,12 256 | "84006075PCT7708","7708","2742","W TWIN PKS",7,8,17,12 257 | "84006075PCT7709","7709","2743","W TWIN PKS",7,8,17,12 258 | "84006075PCT7711","7711","3701","W TWIN PKS",7,8,17,12 259 | "84006075PCT7712","7712","3703","W TWIN PKS",7,9,17,12 260 | "84006075PCT7801","7801","3808","UPRMKT/EURKA",8,9,17,12 261 | "84006075PCT7802","7802","3801","UPRMKT/EURKA",8,9,17,12 262 | "84006075PCT7803","7803","3809","UPRMKT/EURKA",8,9,17,12 263 | "84006075PCT7804","7804","3809","UPRMKT/EURKA",8,9,17,12 264 | "84006075PCT7805","7805","3805","UPRMKT/EURKA",8,9,17,12 265 | "84006075PCT7806","7806","3802","UPRMKT/EURKA",8,9,17,12 266 | "84006075PCT7807","7807","3812","UPRMKT/EURKA",8,9,17,12 267 | "84006075PCT7808","7808","3806","UPRMKT/EURKA",8,9,17,12 268 | "84006075PCT7809","7809","3804","UPRMKT/EURKA",8,9,17,12 269 | "84006075PCT7811","7811","3622","MISSION",8,9,17,12 270 | "84006075PCT7812","7812","3807","MISSION",8,9,17,12 271 | "84006075PCT7813","7813","3814","UPRMKT/EURKA",8,9,17,12 272 | "84006075PCT7814","7814","3644","MISSION",8,9,17,12 273 | "84006075PCT7815","7815","3816","UPRMKT/EURKA",8,9,17,12 274 | "84006075PCT7816","7816","3817","UPRMKT/EURKA",8,9,17,12 275 | "84006075PCT7817","7817","3823","UPRMKT/EURKA",8,9,17,12 276 | "84006075PCT7818","7818","3813","UPRMKT/EURKA",8,9,17,12 277 | "84006075PCT7819","7819","3815","MISSION",8,9,17,12 278 | "84006075PCT7821","7821","3819","UPRMKT/EURKA",8,9,17,12 279 | "84006075PCT7822","7822","3821","UPRMKT/EURKA",8,9,17,12 280 | "84006075PCT7823","7823","3822","UPRMKT/EURKA",8,9,17,12 281 | "84006075PCT7824","7824","3823","UPRMKT/EURKA",8,9,17,12 282 | "84006075PCT7825","7825","3824","UPRMKT/EURKA",8,9,17,12 283 | "84006075PCT7826","7826","3825","MISSION",8,9,17,12 284 | "84006075PCT7827","7827","3833","MISSION",8,9,17,12 285 | "84006075PCT7828","7828","3826","UPRMKT/EURKA",8,9,17,12 286 | "84006075PCT7829","7829","3827","UPRMKT/EURKA",8,9,17,12 287 | "84006075PCT7831","7831","3828","UPRMKT/EURKA",8,9,17,12 288 | "84006075PCT7832","7832","3832","UPRMKT/EURKA",8,9,17,12 289 | "84006075PCT7833","7833","3834","MISSION",8,9,17,12 290 | "84006075PCT7834","7834","3833","MISSION",8,9,17,12 291 | "84006075PCT7835","7835","3835","NOE VALLEY",8,9,17,12 292 | "84006075PCT7836","7836","3836","NOE VALLEY",8,9,17,12 293 | "84006075PCT7837","7837","3837","NOE VALLEY",8,9,17,12 294 | "84006075PCT7838","7838","3838","NOE VALLEY",8,9,17,12 295 | "84006075PCT7839","7839","3831","NOE VALLEY",8,9,17,12 296 | "84006075PCT7841","7841","3842","NOE VALLEY",8,9,17,12 297 | "84006075PCT7842","7842","3849","MISSION",8,9,17,12 298 | "84006075PCT7843","7843","3844","MISSION",8,9,17,12 299 | "84006075PCT7844","7844","3843","MISSION",8,9,17,12 300 | "84006075PCT7845","7845","3845","NOE VALLEY",8,9,17,12 301 | "84006075PCT7846","7846","3839","NOE VALLEY",8,9,17,12 302 | "84006075PCT7847","7847","3829","NOE VALLEY",8,9,17,12 303 | "84006075PCT7848","7848","3841","NOE VALLEY",8,9,17,12 304 | "84006075PCT7849","7849","3848","NOE VALLEY",8,9,17,12 305 | "84006075PCT7851","7851","3857","DIAMD HTS",8,9,17,12 306 | "84006075PCT7852","7852","3852","DIAMD HTS",8,9,17,12 307 | "84006075PCT7853","7853","3858","DIAMD HTS",8,9,17,12 308 | "84006075PCT7854","7854","3846","NOE VALLEY",8,9,17,12 309 | "84006075PCT7855","7855","3847","NOE VALLEY",8,9,17,12 310 | "84006075PCT7856","7856","3856","NOE VALLEY",8,9,17,12 311 | "84006075PCT7857","7857","3851","NOE VALLEY",8,9,17,12 312 | "84006075PCT7858","7858","3911","MISSION",8,9,17,12 313 | "84006075PCT7859","7859","3854","DIAMD HTS",8,9,17,12 314 | "84006075PCT7861","7861","3855","DIAMD HTS",8,9,17,12 315 | "84006075PCT7862","7862","3855","NOE VALLEY",8,9,17,12 316 | "84006075PCT7863","7863","3861","NOE VALLEY",8,9,17,12 317 | "84006075PCT7864","7864","3859","NOE VALLEY",8,9,17,12 318 | "84006075PCT7865","7865","3865","NOE VALLEY",8,9,17,12 319 | "84006075PCT7866","7866","3862","DIAMD HTS",8,9,17,12 320 | "84006075PCT7867","7867","3866","DIAMD HTS",8,9,17,12 321 | "84006075PCT7868","7868","3863","DIAMD HTS",8,9,17,12 322 | "84006075PCT7869","7869","3864","S BERNAL HTS",8,9,17,12 323 | "84006075PCT7871","7871","3869","DIAMD HTS",8,9,17,12 324 | "84006075PCT7872","7872","3867","S BERNAL HTS",8,9,17,12 325 | "84006075PCT7873","7873","3868","S BERNAL HTS",8,9,17,12 326 | "84006075PCT7874","7874","3935","S BERNAL HTS",8,9,17,12 327 | "84006075PCT7875","7875","3935","S BERNAL HTS",8,9,17,12 328 | "84006075PCT7901","7901","3632","MISSION",9,9,17,12 329 | "84006075PCT7902","7902","3634","MISSION",9,9,17,12 330 | "84006075PCT7903","7903","3645","MISSION",9,9,17,12 331 | "84006075PCT7904","7904","3646","MISSION",9,9,17,12 332 | "84006075PCT7905","7905","3647","MISSION",9,9,17,12 333 | "84006075PCT7906","7906","3646","MISSION",9,9,17,12 334 | "84006075PCT7907","7907","3902","MISSION",9,9,17,12 335 | "84006075PCT7908","7908","3903","MISSION",9,9,17,12 336 | "84006075PCT7909","7909","3904","MISSION",9,9,17,12 337 | "84006075PCT7911","7911","3905","MISSION",9,9,17,12 338 | "84006075PCT7912","7912","3906","MISSION",9,9,17,12 339 | "84006075PCT7913","7913","3907","MISSION",9,9,17,12 340 | "84006075PCT7914","7914","3908","MISSION",9,9,17,12 341 | "84006075PCT7915","7915","3909","MISSION",9,9,17,12 342 | "84006075PCT7916","7916","3906","MISSION",9,9,17,12 343 | "84006075PCT7917","7917","3912","MISSION",9,9,17,12 344 | "84006075PCT7918","7918","3913","MISSION",9,9,17,12 345 | "84006075PCT7919","7919","3917","MISSION",9,9,17,12 346 | "84006075PCT7921","7921","3913","MISSION",9,9,17,12 347 | "84006075PCT7922","7922","3914","MISSION",9,9,17,12 348 | "84006075PCT7923","7923","3619","MISSION",9,9,17,12 349 | "84006075PCT7924","7924","3916","MISSION",9,9,17,12 350 | "84006075PCT7925","7925","3919","N BERNAL HTS",9,9,17,12 351 | "84006075PCT7926","7926","3921","N BERNAL HTS",9,9,17,12 352 | "84006075PCT7927","7927","3924","N BERNAL HTS",9,9,17,12 353 | "84006075PCT7928","7928","3924","N BERNAL HTS",9,9,17,12 354 | "84006075PCT7929","7929","3923","N BERNAL HTS",9,9,17,12 355 | "84006075PCT7931","7931","3924","N BERNAL HTS",9,9,17,12 356 | "84006075PCT7932","7932","3926","N BERNAL HTS",9,9,17,12 357 | "84006075PCT7933","7933","3012","BAYVW/HTRSPT",9,9,17,12 358 | "84006075PCT7934","7934","3922","N BERNAL HTS",9,9,17,12 359 | "84006075PCT7935","7935","3927","N BERNAL HTS",9,9,17,12 360 | "84006075PCT7936","7936","3928","N BERNAL HTS",9,9,17,12 361 | "84006075PCT7937","7937","3929","N BERNAL HTS",9,9,17,12 362 | "84006075PCT7938","7938","3931","S BERNAL HTS",9,9,17,12 363 | "84006075PCT7939","7939","3932","S BERNAL HTS",9,9,17,12 364 | "84006075PCT7941","7941","3933","S BERNAL HTS",9,9,17,12 365 | "84006075PCT7942","7942","3934","S BERNAL HTS",9,9,17,12 366 | "84006075PCT7943","7943","3936","S BERNAL HTS",9,9,17,12 367 | "84006075PCT7944","7944","3937","S BERNAL HTS",9,9,17,12 368 | "84006075PCT7945","7945","3937","S BERNAL HTS",9,9,17,12 369 | "84006075PCT7946","7946","2901","PORTOLA",9,9,17,12 370 | "84006075PCT7947","7947","2902","PORTOLA",9,9,17,12 371 | "84006075PCT7948","7948","2903","PORTOLA",9,9,17,12 372 | "84006075PCT7949","7949","2905","PORTOLA",9,9,17,12 373 | "84006075PCT7951","7951","2905","PORTOLA",9,9,17,12 374 | "84006075PCT7952","7952","2906","PORTOLA",9,9,17,12 375 | "84006075PCT7953","7953","2904","PORTOLA",9,9,17,12 376 | "84006075PCT7954","7954","2001","VISITA VLY",9,8,17,12 377 | "84006075PCT7955","7955","2002","PORTOLA",9,9,17,12 378 | "84006075PCT7956","7956","2004","PORTOLA",9,9,17,12 379 | "84006075PCT7957","7957","2005","PORTOLA",9,9,17,12 380 | "84006075PCT7958","7958","2004","PORTOLA",9,7,17,12 381 | "84006075PCT9001","9001","2009","VISITA VLY",10,8,19,14 382 | "84006075PCT9101","9101","2101","RICHMOND",1,8,19,12 383 | "84006075PCT9102","9102","2101","RICHMOND",1,8,19,12 384 | "84006075PCT9103","9103","2103","RICHMOND",1,8,19,12 385 | "84006075PCT9104","9104","2104","RICHMOND",1,8,19,12 386 | "84006075PCT9105","9105","2105","SECLF/PREHTS",1,8,19,12 387 | "84006075PCT9106","9106","2106","SECLF/PREHTS",1,8,19,12 388 | "84006075PCT9107","9107","2107","RICHMOND",1,8,19,12 389 | "84006075PCT9108","9108","2108","RICHMOND",1,8,19,12 390 | "84006075PCT9109","9109","2111","RICHMOND",1,8,19,12 391 | "84006075PCT9111","9111","2109","RICHMOND",1,8,19,12 392 | "84006075PCT9112","9112","2112","RICHMOND",1,8,19,12 393 | "84006075PCT9113","9113","2204","SECLF/PREHTS",1,8,19,12 394 | "84006075PCT9114","9114","2113","RICHMOND",1,8,19,12 395 | "84006075PCT9115","9115","2114","RICHMOND",1,8,19,12 396 | "84006075PCT9116","9116","2115","RICHMOND",1,8,19,12 397 | "84006075PCT9117","9117","2118","RICHMOND",1,8,19,12 398 | "84006075PCT9118","9118","2121","RICHMOND",1,8,19,12 399 | "84006075PCT9119","9119","2119","RICHMOND",1,8,19,12 400 | "84006075PCT9121","9121","2121","RICHMOND",1,8,19,12 401 | "84006075PCT9122","9122","2122","RICHMOND",1,8,19,12 402 | "84006075PCT9123","9123","2123","RICHMOND",1,8,19,12 403 | "84006075PCT9124","9124","2124","RICHMOND",1,8,19,12 404 | "84006075PCT9125","9125","2125","RICHMOND",1,8,19,12 405 | "84006075PCT9126","9126","2126","RICHMOND",1,8,19,12 406 | "84006075PCT9127","9127","2127","RICHMOND",1,8,19,12 407 | "84006075PCT9128","9128","2128","RICHMOND",1,8,19,12 408 | "84006075PCT9129","9129","2128","RICHMOND",1,8,19,12 409 | "84006075PCT9131","9131","2129","RICHMOND",1,8,19,12 410 | "84006075PCT9132","9132","2131","RICHMOND",1,8,19,12 411 | "84006075PCT9133","9133","2132","RICHMOND",1,8,19,12 412 | "84006075PCT9134","9134","2133","LRL HTS/ANZA",1,8,19,12 413 | "84006075PCT9135","9135","2117","RICHMOND",1,8,19,12 414 | "84006075PCT9136","9136","2135","RICHMOND",1,8,19,12 415 | "84006075PCT9137","9137","2136","RICHMOND",1,8,19,12 416 | "84006075PCT9138","9138","2137","RICHMOND",1,8,19,12 417 | "84006075PCT9139","9139","2138","RICHMOND",1,8,19,12 418 | "84006075PCT9141","9141","2139","RICHMOND",1,8,19,12 419 | "84006075PCT9142","9142","2141","RICHMOND",1,8,19,12 420 | "84006075PCT9143","9143","2142","RICHMOND",1,8,19,12 421 | "84006075PCT9144","9144","2143","RICHMOND",1,8,19,12 422 | "84006075PCT9145","9145","2145","RICHMOND",1,8,19,12 423 | "84006075PCT9146","9146","2147","RICHMOND",1,8,19,12 424 | "84006075PCT9147","9147","2147","RICHMOND",1,8,19,12 425 | "84006075PCT9148","9148","2149","RICHMOND",1,8,19,12 426 | "84006075PCT9149","9149","2150","LRL HTS/ANZA",1,8,19,12 427 | "84006075PCT9151","9151","2134","LRL HTS/ANZA",1,8,19,12 428 | "84006075PCT9152","9152","2151","LRL HTS/ANZA",1,8,19,12 429 | "84006075PCT9201","9201","3200","MAR/PAC HTS",2,8,19,12 430 | "84006075PCT9202","9202","3201","MAR/PAC HTS",2,8,19,12 431 | "84006075PCT9203","9203","3202","MAR/PAC HTS",2,8,19,12 432 | "84006075PCT9204","9204","3203","MAR/PAC HTS",2,8,19,12 433 | "84006075PCT9205","9205","3204","MAR/PAC HTS",2,8,19,12 434 | "84006075PCT9206","9206","3207","MAR/PAC HTS",2,8,19,12 435 | "84006075PCT9207","9207","3210","MAR/PAC HTS",2,8,19,12 436 | "84006075PCT9208","9208","3208","MAR/PAC HTS",2,8,19,12 437 | "84006075PCT9209","9209","9205","MAR/PAC HTS",2,8,19,12 438 | "84006075PCT9211","9211","3213","MAR/PAC HTS",2,8,19,12 439 | "84006075PCT9212","9212","3209","MAR/PAC HTS",2,8,19,12 440 | "84006075PCT9213","9213","3212","MAR/PAC HTS",2,8,19,12 441 | "84006075PCT9214","9214","3214","MAR/PAC HTS",2,8,19,12 442 | "84006075PCT9215","9215","3215","MAR/PAC HTS",2,8,19,12 443 | "84006075PCT9216","9216","3216","MAR/PAC HTS",2,8,19,12 444 | "84006075PCT9217","9217","3217","MAR/PAC HTS",2,8,19,12 445 | "84006075PCT9218","9218","3218","MAR/PAC HTS",2,8,19,12 446 | "84006075PCT9219","9219","3219","MAR/PAC HTS",2,8,19,12 447 | "84006075PCT9221","9221","3223","MAR/PAC HTS",2,8,19,12 448 | "84006075PCT9222","9222","3224","MAR/PAC HTS",2,8,19,12 449 | "84006075PCT9223","9223","3225","MAR/PAC HTS",2,8,19,12 450 | "84006075PCT9224","9224","3226","MAR/PAC HTS",2,8,19,12 451 | "84006075PCT9225","9225","3228","MAR/PAC HTS",2,8,19,12 452 | "84006075PCT9226","9226","3227","MAR/PAC HTS",2,8,19,12 453 | "84006075PCT9227","9227","2202","SECLF/PREHTS",2,8,19,12 454 | "84006075PCT9228","9228","2200","SECLF/PREHTS",2,8,19,12 455 | "84006075PCT9229","9229","2201","SECLF/PREHTS",2,8,19,12 456 | "84006075PCT9231","9231","2203","SECLF/PREHTS",2,8,19,12 457 | "84006075PCT9232","9232","2205","SECLF/PREHTS",2,8,19,12 458 | "84006075PCT9233","9233","2206","SECLF/PREHTS",2,8,19,12 459 | "84006075PCT9234","9234","2207","SECLF/PREHTS",2,8,19,12 460 | "84006075PCT9235","9235","2208","SECLF/PREHTS",2,8,19,12 461 | "84006075PCT9236","9236","2209","MAR/PAC HTS",2,8,19,12 462 | "84006075PCT9237","9237","3231","MAR/PAC HTS",2,8,19,12 463 | "84006075PCT9238","9238","3232","MAR/PAC HTS",2,8,19,12 464 | "84006075PCT9239","9239","3233","MAR/PAC HTS",2,8,19,12 465 | "84006075PCT9241","9241","3234","MAR/PAC HTS",2,8,19,12 466 | "84006075PCT9242","9242","3239","MAR/PAC HTS",2,8,19,12 467 | "84006075PCT9243","9243","2215","MAR/PAC HTS",2,8,19,12 468 | "84006075PCT9244","9244","3235","MAR/PAC HTS",2,8,19,12 469 | "84006075PCT9245","9245","3236","MAR/PAC HTS",2,8,19,12 470 | "84006075PCT9246","9246","3237","MAR/PAC HTS",2,8,19,12 471 | "84006075PCT9247","9247","3238","MAR/PAC HTS",2,8,19,12 472 | "84006075PCT9248","9248","3241","MAR/PAC HTS",2,8,19,12 473 | "84006075PCT9249","9249","2211","LRL HTS/ANZA",2,8,19,12 474 | "84006075PCT9251","9251","2212","LRL HTS/ANZA",2,8,19,12 475 | "84006075PCT9252","9252","2213","LRL HTS/ANZA",2,8,19,12 476 | "84006075PCT9253","9253","2214","LRL HTS/ANZA",2,8,19,12 477 | "84006075PCT9254","9254","2216","WST ADDITION",2,9,19,12 478 | "84006075PCT9255","9255","2217","LRL HTS/ANZA",2,8,19,12 479 | "84006075PCT9256","9256","3501","WST ADDITION",2,9,19,12 480 | "84006075PCT9257","9257","2219","WST ADDITION",2,9,19,12 481 | "84006075PCT9258","9258","2218","LRL HTS/ANZA",2,8,19,12 482 | "84006075PCT9401","9401","2401","SUNSET",4,8,19,12 483 | "84006075PCT9402","9402","2402","SUNSET",4,8,19,12 484 | "84006075PCT9403","9403","2403","SUNSET",4,8,19,12 485 | "84006075PCT9404","9404","2404","SUNSET",4,8,19,12 486 | "84006075PCT9405","9405","2405","SUNSET",4,8,19,12 487 | "84006075PCT9406","9406","2406","SUNSET",4,8,19,12 488 | "84006075PCT9407","9407","2407","SUNSET",4,8,19,12 489 | "84006075PCT9408","9408","2408","SUNSET",4,8,19,12 490 | "84006075PCT9409","9409","2505","INNER SUNSET",4,9,19,12 491 | "84006075PCT9411","9411","2409","SUNSET",4,8,19,12 492 | "84006075PCT9412","9412","2409","SUNSET",4,8,19,12 493 | "84006075PCT9413","9413","2412","SUNSET",4,8,19,12 494 | "84006075PCT9414","9414","2413","SUNSET",4,8,19,12 495 | "84006075PCT9415","9415","2414","SUNSET",4,8,19,12 496 | "84006075PCT9416","9416","2416","SUNSET",4,8,19,12 497 | "84006075PCT9417","9417","2417","SUNSET",4,8,19,12 498 | "84006075PCT9418","9418","2418","SUNSET",4,8,19,12 499 | "84006075PCT9419","9419","2419","SUNSET",4,8,19,12 500 | "84006075PCT9421","9421","2422","SUNSET",4,8,19,12 501 | "84006075PCT9422","9422","2423","SUNSET",4,8,19,12 502 | "84006075PCT9423","9423","2415","SUNSET",4,8,19,12 503 | "84006075PCT9424","9424","2416","SUNSET",4,8,19,12 504 | "84006075PCT9425","9425","2429","SUNSET",4,8,19,12 505 | "84006075PCT9426","9426","2425","SUNSET",4,8,19,12 506 | "84006075PCT9427","9427","2421","SUNSET",4,8,19,12 507 | "84006075PCT9428","9428","2427","SUNSET",4,8,19,12 508 | "84006075PCT9429","9429","2431","SUNSET",4,8,19,12 509 | "84006075PCT9431","9431","2432","SUNSET",4,8,19,12 510 | "84006075PCT9432","9432","2426","SUNSET",4,8,19,12 511 | "84006075PCT9433","9433","2434","SUNSET",4,8,19,12 512 | "84006075PCT9434","9434","2428","SUNSET",4,8,19,12 513 | "84006075PCT9435","9435","2436","SUNSET",4,8,19,12 514 | "84006075PCT9436","9436","2437","SUNSET",4,8,19,12 515 | "84006075PCT9437","9437","2438","SUNSET",4,8,19,12 516 | "84006075PCT9438","9438","2439","SUNSET",4,8,19,12 517 | "84006075PCT9439","9439","2433","SUNSET",4,8,19,12 518 | "84006075PCT9441","9441","2441","SUNSET",4,8,19,12 519 | "84006075PCT9442","9442","2435","SUNSET",4,8,19,12 520 | "84006075PCT9443","9443","2442","SUNSET",4,8,19,12 521 | "84006075PCT9444","9444","2443","SUNSET",4,8,19,12 522 | "84006075PCT9445","9445","2444","SUNSET",4,8,19,12 523 | "84006075PCT9446","9446","2445","SUNSET",4,8,19,12 524 | "84006075PCT9447","9447","2446","SUNSET",4,8,19,12 525 | "84006075PCT9448","9448","2447","SUNSET",4,8,19,12 526 | "84006075PCT9449","9449","2448","SUNSET",4,8,19,12 527 | "84006075PCT9451","9451","2440","SUNSET",4,8,19,12 528 | "84006075PCT9452","9452","2451","SUNSET",4,8,19,12 529 | "84006075PCT9453","9453","2449","SUNSET",4,8,19,14 530 | "84006075PCT9501","9501","3501","WST ADDITION",5,9,19,12 531 | "84006075PCT9502","9502","2217","LRL HTS/ANZA",5,8,19,12 532 | "84006075PCT9503","9503","3501","WST ADDITION",5,9,19,12 533 | "84006075PCT9504","9504","3500","WST ADDITION",5,9,19,12 534 | "84006075PCT9505","9505","3507","WST ADDITION",5,9,19,12 535 | "84006075PCT9506","9506","3514","WST ADDITION",5,9,19,12 536 | "84006075PCT9507","9507","3512","LRL HTS/ANZA",5,9,19,12 537 | "84006075PCT9508","9508","3513","WST ADDITION",5,9,19,12 538 | "84006075PCT9509","9509","3511","LRL HTS/ANZA",5,9,19,12 539 | "84006075PCT9511","9511","3512","WST ADDITION",5,9,19,12 540 | "84006075PCT9512","9512","3517","WST ADDITION",5,9,19,12 541 | "84006075PCT9513","9513","3515","WST ADDITION",5,9,19,12 542 | "84006075PCT9514","9514","2514",NA,5,9,19,12 543 | "84006075PCT9515","9515","2504","INNER SUNSET",5,9,19,12 544 | "84006075PCT9516","9516","2506","INNER SUNSET",5,9,19,12 545 | "84006075PCT9517","9517","2507","INNER SUNSET",5,9,19,12 546 | "84006075PCT9518","9518","2508","INNER SUNSET",5,9,19,12 547 | "84006075PCT9519","9519","2509","INNER SUNSET",5,9,19,12 548 | "84006075PCT9521","9521","2512","INNER SUNSET",5,9,19,12 549 | "84006075PCT9522","9522","2513","INNER SUNSET",5,9,19,12 550 | "84006075PCT9701","9701","2701","INNER SUNSET",7,9,19,12 551 | "84006075PCT9702","9702","2702","INNER SUNSET",7,9,19,12 552 | "84006075PCT9703","9703","2704","W TWIN PKS",7,8,19,12 553 | "84006075PCT9704","9704","2705","W TWIN PKS",7,8,19,12 554 | "84006075PCT9705","9705","2706","W TWIN PKS",7,8,19,12 555 | "84006075PCT9706","9706","2706","W TWIN PKS",7,9,19,12 556 | "84006075PCT9707","9707","2712","W TWIN PKS",7,8,19,12 557 | "84006075PCT9708","9708","2713","W TWIN PKS",7,8,19,12 558 | "84006075PCT9709","9709","2711","W TWIN PKS",7,8,19,12 559 | "84006075PCT9711","9711","2714","W TWIN PKS",7,8,19,12 560 | "84006075PCT9712","9712","2710","W TWIN PKS",7,8,19,14 561 | "84006075PCT9713","9713","2718","W TWIN PKS",7,8,19,12 562 | "84006075PCT9714","9714","2721","W TWIN PKS",7,8,19,14 563 | "84006075PCT9715","9715","2715","W TWIN PKS",7,8,19,14 564 | "84006075PCT9716","9716","2723","W TWIN PKS",7,8,19,12 565 | "84006075PCT9717","9717","2724","W TWIN PKS",7,8,19,12 566 | "84006075PCT9718","9718","2725","W TWIN PKS",7,8,19,14 567 | "84006075PCT9719","9719","2726","W TWIN PKS",7,8,19,14 568 | "84006075PCT9721","9721","2722","W TWIN PKS",7,8,19,14 569 | "84006075PCT9722","9722","2720","W TWIN PKS",7,8,19,14 570 | "84006075PCT9723","9723","2728","LAKE MERCED",7,8,19,14 571 | "84006075PCT9724","9724","2729","LAKE MERCED",7,8,19,14 572 | "84006075PCT9725","9725","2731","LAKE MERCED",7,8,19,14 573 | "84006075PCT9726","9726","2730","LAKE MERCED",7,8,19,14 574 | "84006075PCT9727","9727","2732","W TWIN PKS",7,8,19,14 575 | "84006075PCT9728","9728","2733","W TWIN PKS",7,8,19,14 576 | "84006075PCT9729","9729","2734","W TWIN PKS",7,8,19,14 577 | "84006075PCT9731","9731","2735","W TWIN PKS",7,8,19,14 578 | "84006075PCT9732","9732","2740","W TWIN PKS",7,8,19,12 579 | "84006075PCT9733","9733","2727","W TWIN PKS",7,8,19,14 580 | "84006075PCT9734","9734","2738","W TWIN PKS",7,8,19,14 581 | "84006075PCT9735","9735","2739","W TWIN PKS",7,8,19,14 582 | "84006075PCT9736","9736","2741","W TWIN PKS",7,8,19,14 583 | "84006075PCT9737","9737","2750","W TWIN PKS",7,8,19,14 584 | "84006075PCT9738","9738","2728","LAKE MERCED",7,8,19,14 585 | "84006075PCT9739","9739","2756","LAKE MERCED",7,8,19,14 586 | "84006075PCT9741","9741","2745","LAKE MERCED",7,8,19,14 587 | "84006075PCT9742","9742","2746","W TWIN PKS",7,8,19,14 588 | "84006075PCT9743","9743","2759","LAKE MERCED",7,8,19,14 589 | "84006075PCT9744","9744","2757","LAKE MERCED",7,8,19,14 590 | "84006075PCT9745","9745","2758","LAKE MERCED",7,8,19,14 591 | "84006075PCT9746","9746","2747","W TWIN PKS",7,8,19,14 592 | "84006075PCT9747","9747","1111","W TWIN PKS",7,8,19,14 593 | "84006075PCT9748","9748","2749","W TWIN PKS",7,8,19,14 594 | "84006075PCT9749","9749","1112","INGLESIDE",7,8,19,14 595 | "84006075PCT9751","9751","2751","W TWIN PKS",7,8,19,14 596 | "84006075PCT9752","9752","2752","W TWIN PKS",7,8,19,14 597 | "84006075PCT9753","9753","2755","W TWIN PKS",7,8,19,14 598 | "84006075PCT9754","9754","2753","W TWIN PKS",7,9,19,14 599 | "84006075PCT9755","9755","3870","W TWIN PKS",7,9,19,14 600 | "84006075PCT9756","9756","2761","EXCELSIOR",7,8,19,14 601 | "84006075PCT9801","9801","1102","EXCELSIOR",8,9,19,14 602 | "84006075PCT9900","9900","4000",NA,NA,NA,17,13 603 | "84006075PCT9901","9901","1102","EXCELSIOR",8,9,17,14 604 | "84006075PCT9902","9902","1101","EXCELSIOR",7,9,17,14 605 | "84006075PCTGGP1","Golden Gate Park","GG Park",NA,1,9,19,12 606 | "84006075PCTGGP2","Golden Gate Park","GG Park",NA,1,8,19,12 607 | -------------------------------------------------------------------------------- /data/world/README.md: -------------------------------------------------------------------------------- 1 | # World Geometries 2 | 3 | ## Admin 0 Country Boundaries 4 | Type: MultiPolygon 5 | Source: [geojson.xyz](http://geojson.xyz) 6 | 7 | 8 | download the geojson file 9 | ```shell 10 | wget https://d2ad6b4ur7yvpq.cloudfront.net/naturalearth-3.3.0/ne_50m_admin_0_countries.geojson 11 | ``` 12 | convert the geojson to topojson (with simplification) and preserve a couple key properties 13 | ```shell 14 | geo2topo -s 1e-6 ne_50m_admin_0_countries.geojson -p name -p pop_est -p continent -o ne_50m_admin_0_countries.topojson 15 | ``` 16 | 17 | ## Populated Places Simple (Cities) 18 | Type: Point 19 | Source: [geojson.xyz](http://geojson.xyz) 20 | 21 | 22 | download the geojson file 23 | ```shell 24 | wget https://d2ad6b4ur7yvpq.cloudfront.net/naturalearth-3.3.0/ne_50m_populated_places_simple.geojson 25 | ``` 26 | convert the geojson to topojson and preserve only a couple key properties 27 | ```shell 28 | geo2topo ne_50m_populated_places_simple.geojson -p name -p adm0name -o ne_50m_populated_places_simple.topojson 29 | ``` 30 | 31 | ## Rivers & Lake centerlines 32 | Type: LineString 33 | source: [geojson.xyz](http://geojson.xyz) 34 | 35 | 36 | download the geojson file 37 | ```shell 38 | wget https://d2ad6b4ur7yvpq.cloudfront.net/naturalearth-3.3.0/ne_50m_rivers_lake_centerlines.geojson 39 | ``` 40 | convert the geojson to topojson and preserve only a couple key properties 41 | ```shell 42 | geo2topo -s 1e-6 ne_50m_rivers_lake_centerlines.geojson -p name -p dissolve -p featureclass -o ne_50m_rivers_lake_centerlines.topojson 43 | ``` 44 | 45 | ## File sizes 46 | Notice how much smaller the topojson files are than the geojson: 47 | 48 | | filesize | filename | 49 | | --- | --- | 50 | | 3.9M | ne_50m_admin_0_countries.geojson | 51 | | 301K | ne_50m_admin_0_countries.topojson | 52 | | 893K | ne_50m_populated_places_simple.geojson | 53 | | 121K | ne_50m_populated_places_simple.topojson | 54 | | 1.0M | ne_50m_rivers_lake_centerlines.geojson | 55 | | 143K | ne_50m_rivers_lake_centerlines.topojson | 56 | 57 | -------------------------------------------------------------------------------- /data/world/ne_50m_populated_places_simple.topojson: -------------------------------------------------------------------------------- 1 | {"type":"Topology","objects":{"ne_50m_populated_places_simple":{"type":"GeometryCollection","geometries":[{"type":"Point","properties":{"name":"Bombo","adm0name":"Uganda"},"coordinates":[5861,5384]},{"type":"Point","properties":{"name":"Fort Portal","adm0name":"Uganda"},"coordinates":[5797,5390]},{"type":"Point","properties":{"name":"Potenza","adm0name":"Italy"},"coordinates":[5389,7766]},{"type":"Point","properties":{"name":"Campobasso","adm0name":"Italy"},"coordinates":[5357,7820]},{"type":"Point","properties":{"name":"Aosta","adm0name":"Italy"},"coordinates":[5150,8068]},{"type":"Point","properties":{"name":"Mariehamn","adm0name":"Aland"},"coordinates":[5506,8922]},{"type":"Point","properties":{"name":"Ramallah","adm0name":"Palestine"},"coordinates":[5936,7246]},{"type":"Point","properties":{"name":"Vatican City","adm0name":"Vatican (Holy Sea)"},"coordinates":[5294,7840]},{"type":"Point","properties":{"name":"Poitier","adm0name":"France"},"coordinates":[4953,8119]},{"type":"Point","properties":{"name":"Clermont-Ferrand","adm0name":"France"},"coordinates":[5030,8071]},{"type":"Point","properties":{"name":"Besancon","adm0name":"France"},"coordinates":[5113,8157]},{"type":"Point","properties":{"name":"Artigas Base","adm0name":"Antarctica"},"coordinates":[3283,1654]},{"type":"Point","properties":{"name":"Chipata","adm0name":"Zambia"},"coordinates":[5864,4540]},{"type":"Point","properties":{"name":"Jinja","adm0name":"Uganda"},"coordinates":[5880,5376]},{"type":"Point","properties":{"name":"Arua","adm0name":"Uganda"},"coordinates":[5815,5529]},{"type":"Point","properties":{"name":"Mbale","adm0name":"Uganda"},"coordinates":[5907,5415]},{"type":"Point","properties":{"name":"Moroto","adm0name":"Uganda"},"coordinates":[5920,5501]},{"type":"Point","properties":{"name":"Masaka","adm0name":"Uganda"},"coordinates":[5838,5330]},{"type":"Point","properties":{"name":"Mbarara","adm0name":"Uganda"},"coordinates":[5808,5314]},{"type":"Point","properties":{"name":"Otjiwarongo","adm0name":"Namibia"},"coordinates":[5413,4134]},{"type":"Point","properties":{"name":"Bologna","adm0name":"Italy"},"coordinates":[5263,7995]},{"type":"Point","properties":{"name":"Cagliari","adm0name":"Italy"},"coordinates":[5200,7681]},{"type":"Point","properties":{"name":"Catanzaro","adm0name":"Italy"},"coordinates":[5411,7662]},{"type":"Point","properties":{"name":"Bari","adm0name":"Italy"},"coordinates":[5419,7794]},{"type":"Point","properties":{"name":"L'Aquila","adm0name":"Italy"},"coordinates":[5321,7867]},{"type":"Point","properties":{"name":"Ancona","adm0name":"Italy"},"coordinates":[5324,7941]},{"type":"Point","properties":{"name":"Perugia","adm0name":"Italy"},"coordinates":[5293,7912]},{"type":"Point","properties":{"name":"Trieste","adm0name":"Italy"},"coordinates":[5332,8063]},{"type":"Point","properties":{"name":"Trento","adm0name":"Italy"},"coordinates":[5257,8089]},{"type":"Point","properties":{"name":"Fort-de-France","adm0name":"France"},"coordinates":[3220,6218]},{"type":"Point","properties":{"name":"Gifu","adm0name":"Japan"},"coordinates":[8801,7455]},{"type":"Point","properties":{"name":"Saint-Laurent-du-Maroni","adm0name":"France"},"coordinates":[3419,5676]},{"type":"Point","properties":{"name":"Caen","adm0name":"France"},"coordinates":[4933,8273]},{"type":"Point","properties":{"name":"Nantes","adm0name":"France"},"coordinates":[4898,8156]},{"type":"Point","properties":{"name":"Ajaccio","adm0name":"France"},"coordinates":[5189,7842]},{"type":"Point","properties":{"name":"Montpellier","adm0name":"France"},"coordinates":[5052,7942]},{"type":"Point","properties":{"name":"Dijon","adm0name":"France"},"coordinates":[5085,8163]},{"type":"Point","properties":{"name":"Orleans","adm0name":"France"},"coordinates":[4997,8197]},{"type":"Point","properties":{"name":"Rouen","adm0name":"France"},"coordinates":[4974,8288]},{"type":"Point","properties":{"name":"Reims","adm0name":"France"},"coordinates":[5057,8277]},{"type":"Point","properties":{"name":"Amiens","adm0name":"France"},"coordinates":[5008,8316]},{"type":"Point","properties":{"name":"Nancy","adm0name":"France"},"coordinates":[5118,8244]},{"type":"Point","properties":{"name":"Basse-terre","adm0name":"France"},"coordinates":[3210,6314]},{"type":"Point","properties":{"name":"Novi Sad","adm0name":"Serbia"},"coordinates":[5503,8039]},{"type":"Point","properties":{"name":"Banja Luka","adm0name":"Bosnia and Herzegovina"},"coordinates":[5428,8012]},{"type":"Point","properties":{"name":"George Town","adm0name":"Cayman Islands"},"coordinates":[2649,6496]},{"type":"Point","properties":{"name":"Grand Turk","adm0name":"Turks and Caicos Islands"},"coordinates":[2936,6626]},{"type":"Point","properties":{"name":"Douglas","adm0name":"Isle of Man"},"coordinates":[4817,8568]},{"type":"Point","properties":{"name":"San Marino","adm0name":"San Marino"},"coordinates":[5294,7961]},{"type":"Point","properties":{"name":"Willemstad","adm0name":"Curacao"},"coordinates":[2996,6075]},{"type":"Point","properties":{"name":"Oranjestad","adm0name":"Aruba"},"coordinates":[2968,6095]},{"type":"Point","properties":{"name":"Vaduz","adm0name":"Liechtenstein"},"coordinates":[5212,8151]},{"type":"Point","properties":{"name":"Capitan Arturo Prat Station","adm0name":"Antarctica"},"coordinates":[3259,1635]},{"type":"Point","properties":{"name":"Marambio Station","adm0name":"Antarctica"},"coordinates":[3345,1532]},{"type":"Point","properties":{"name":"Zucchelli Station","adm0name":"Antarctica"},"coordinates":[9576,914]},{"type":"Point","properties":{"name":"Rothera Station","adm0name":"Antarctica"},"coordinates":[3021,1334]},{"type":"Point","properties":{"name":"Palmer Station","adm0name":"Antarctica"},"coordinates":[3136,1500]},{"type":"Point","properties":{"name":"Base Presidente Montalva","adm0name":"Antarctica"},"coordinates":[3281,1653]},{"type":"Point","properties":{"name":"Carlini Station","adm0name":"Antarctica"},"coordinates":[3289,1651]},{"type":"Point","properties":{"name":"King Sejong Station","adm0name":"Antarctica"},"coordinates":[3285,1651]},{"type":"Point","properties":{"name":"Great Wall Station","adm0name":"Antarctica"},"coordinates":[3280,1652]},{"type":"Point","properties":{"name":"Escudero Base","adm0name":"Antarctica"},"coordinates":[3280,1653]},{"type":"Point","properties":{"name":"Elephant Island","adm0name":"Antarctica"},"coordinates":[3307,1664]},{"type":"Point","properties":{"name":"Scott Base","adm0name":"Antarctica"},"coordinates":[9647,722]},{"type":"Point","properties":{"name":"McMurdo Station","adm0name":"Antarctica"},"coordinates":[9651,729]},{"type":"Point","properties":{"name":"Zhongshan Station","adm0name":"Antarctica"},"coordinates":[7097,1222]},{"type":"Point","properties":{"name":"Vostok","adm0name":"Antarctica"},"coordinates":[7956,686]},{"type":"Point","properties":{"name":"Peter I Island","adm0name":"Antarctica"},"coordinates":[2387,1263]},{"type":"Point","properties":{"name":"Mirny Station","adm0name":"Antarctica"},"coordinates":[7567,1392]},{"type":"Point","properties":{"name":"Mawson Station","adm0name":"Antarctica"},"coordinates":[6717,1331]},{"type":"Point","properties":{"name":"Davis Station","adm0name":"Antarctica"},"coordinates":[7148,1261]},{"type":"Point","properties":{"name":"Concordia Research Station","adm0name":"Antarctica"},"coordinates":[8446,911]},{"type":"Point","properties":{"name":"Casey Station","adm0name":"Antarctica"},"coordinates":[8061,1410]},{"type":"Point","properties":{"name":"Amundsen–Scott South Pole Station","adm0name":"Antarctica"},"coordinates":[9936,0]},{"type":"Point","properties":{"name":"Wasa Station","adm0name":"Antarctica"},"coordinates":[4565,1008]},{"type":"Point","properties":{"name":"Troll Station","adm0name":"Antarctica"},"coordinates":[5015,1069]},{"type":"Point","properties":{"name":"Svea Station","adm0name":"Antarctica"},"coordinates":[4627,916]},{"type":"Point","properties":{"name":"Novolazarevskaya Station","adm0name":"Antarctica"},"coordinates":[4609,1111]},{"type":"Point","properties":{"name":"Neumayer Station III","adm0name":"Antarctica"},"coordinates":[4722,1136]},{"type":"Point","properties":{"name":"Maitri Station","adm0name":"Antarctica"},"coordinates":[5274,1142]},{"type":"Point","properties":{"name":"Halley Station","adm0name":"Antarctica"},"coordinates":[4196,827]},{"type":"Point","properties":{"name":"Belgrano Station","adm0name":"Antarctica"},"coordinates":[3967,721]},{"type":"Point","properties":{"name":"Camp Sobral","adm0name":"Antarctica"},"coordinates":[3801,524]},{"type":"Point","properties":{"name":"Aboa Station","adm0name":"Antarctica"},"coordinates":[4565,889]},{"type":"Point","properties":{"name":"San Martín Station","adm0name":"Antarctica"},"coordinates":[3050,1301]},{"type":"Point","properties":{"name":"Gen. O'Higgins Station","adm0name":"Antarctica"},"coordinates":[3310,1585]},{"type":"Point","properties":{"name":"Esperanza Station","adm0name":"Antarctica"},"coordinates":[3334,1583]},{"type":"Point","properties":{"name":"Orcadas Station","adm0name":"Antarctica"},"coordinates":[3681,1740]},{"type":"Point","properties":{"name":"Signy Research Station","adm0name":"Antarctica"},"coordinates":[3657,1746]},{"type":"Point","properties":{"name":"Dumont d'Urville Station","adm0name":"Antarctica"},"coordinates":[8892,1381]},{"type":"Point","properties":{"name":"Showa Station","adm0name":"Antarctica"},"coordinates":[6064,1246]},{"type":"Point","properties":{"name":"Gibraltar","adm0name":"Gibraltar"},"coordinates":[4791,7497]},{"type":"Point","properties":{"name":"Lobamba","adm0name":"Swaziland"},"coordinates":[5823,3777]},{"type":"Point","properties":{"name":"Edinburgh","adm0name":"United Kingdom"},"coordinates":[4852,8675]},{"type":"Point","properties":{"name":"Cardiff","adm0name":"United Kingdom"},"coordinates":[4852,8411]},{"type":"Point","properties":{"name":"Longyearbyen","adm0name":"Svalbard and Jan Mayen Islands"},"coordinates":[5382,9999]},{"type":"Point","properties":{"name":"Luxembourg","adm0name":"Luxembourg"},"coordinates":[5116,8299]},{"type":"Point","properties":{"name":"Turin","adm0name":"Italy"},"coordinates":[5159,8029]},{"type":"Point","properties":{"name":"Noumea","adm0name":"New Caledonia"},"coordinates":[9639,4026]},{"type":"Point","properties":{"name":"Matsuyama","adm0name":"Japan"},"coordinates":[8689,7362]},{"type":"Point","properties":{"name":"Rennes","adm0name":"France"},"coordinates":[4896,8209]},{"type":"Point","properties":{"name":"Toulouse","adm0name":"France"},"coordinates":[4984,7943]},{"type":"Point","properties":{"name":"Limoges","adm0name":"France"},"coordinates":[4978,8074]},{"type":"Point","properties":{"name":"Lille","adm0name":"France"},"coordinates":[5030,8361]},{"type":"Point","properties":{"name":"Strasbourg","adm0name":"France"},"coordinates":[5162,8237]},{"type":"Point","properties":{"name":"Batumi","adm0name":"Georgia"},"coordinates":[6118,7822]},{"type":"Point","properties":{"name":"Funchal","adm0name":"Portugal"},"coordinates":[4467,7290]},{"type":"Point","properties":{"name":"El Fasher","adm0name":"Sudan"},"coordinates":[5658,6160]},{"type":"Point","properties":{"name":"Keetmanshoop","adm0name":"Namibia"},"coordinates":[5455,3770]},{"type":"Point","properties":{"name":"Swakopmund","adm0name":"Namibia"},"coordinates":[5353,4002]},{"type":"Point","properties":{"name":"Genoa","adm0name":"Italy"},"coordinates":[5195,7989]},{"type":"Point","properties":{"name":"Sukhumi","adm0name":"Georgia"},"coordinates":[6100,7907]},{"type":"Point","properties":{"name":"Palikir","adm0name":"Federated States of Micronesia"},"coordinates":[9405,5761]},{"type":"Point","properties":{"name":"Majuro","adm0name":"Marshall Islands"},"coordinates":[9778,5772]},{"type":"Point","properties":{"name":"Agana","adm0name":"Guam"},"coordinates":[9027,6150]},{"type":"Point","properties":{"name":"Funafuti","adm0name":"Tuvalu"},"coordinates":[9999,4843]},{"type":"Point","properties":{"name":"Melekeok","adm0name":"Palau"},"coordinates":[8741,5795]},{"type":"Point","properties":{"name":"Bir Lehlou","adm0name":"Western Sahara"},"coordinates":[4671,6902]},{"type":"Point","properties":{"name":"Monaco","adm0name":"Monaco"},"coordinates":[5152,7950]},{"type":"Point","properties":{"name":"Tarawa","adm0name":"Kiribati"},"coordinates":[9824,5429]},{"type":"Point","properties":{"name":"Moroni","adm0name":"Comoros"},"coordinates":[6163,4654]},{"type":"Point","properties":{"name":"Macau","adm0name":"Macau S.A.R"},"coordinates":[8146,6669]},{"type":"Point","properties":{"name":"Andorra","adm0name":"Andorra"},"coordinates":[4986,7876]},{"type":"Point","properties":{"name":"San Bernardino","adm0name":"United States of America"},"coordinates":[1634,7378]},{"type":"Point","properties":{"name":"Bridgeport","adm0name":"United States of America"},"coordinates":[2878,7798]},{"type":"Point","properties":{"name":"Rochester","adm0name":"United States of America"},"coordinates":[2753,7916]},{"type":"Point","properties":{"name":"Manchester","adm0name":"United Kingdom"},"coordinates":[4880,8530]},{"type":"Point","properties":{"name":"Gujranwala","adm0name":"Pakistan"},"coordinates":[7036,7261]},{"type":"Point","properties":{"name":"Incheon","adm0name":"South Korea"},"coordinates":[8516,7577]},{"type":"Point","properties":{"name":"Benin City","adm0name":"Nigeria"},"coordinates":[5102,5727]},{"type":"Point","properties":{"name":"Xiamen","adm0name":"China"},"coordinates":[8274,6803]},{"type":"Point","properties":{"name":"Nanchong","adm0name":"China"},"coordinates":[7937,7179]},{"type":"Point","properties":{"name":"Neijiang","adm0name":"China"},"coordinates":[7907,7108]},{"type":"Point","properties":{"name":"Nanyang","adm0name":"China"},"coordinates":[8118,7311]},{"type":"Point","properties":{"name":"Jinxi","adm0name":"China"},"coordinates":[8352,7772]},{"type":"Point","properties":{"name":"Yantai","adm0name":"China"},"coordinates":[8368,7581]},{"type":"Point","properties":{"name":"Zaozhuang","adm0name":"China"},"coordinates":[8260,7423]},{"type":"Point","properties":{"name":"Suzhou","adm0name":"China"},"coordinates":[8346,7210]},{"type":"Point","properties":{"name":"Xuzhou","adm0name":"China"},"coordinates":[8249,7387]},{"type":"Point","properties":{"name":"Wuxi","adm0name":"China"},"coordinates":[8337,7227]},{"type":"Point","properties":{"name":"Jilin","adm0name":"China"},"coordinates":[8513,7956]},{"type":"Point","properties":{"name":"Chandigarh","adm0name":"India"},"coordinates":[7109,7176]},{"type":"Point","properties":{"name":"Jammu","adm0name":"India"},"coordinates":[7055,7294]},{"type":"Point","properties":{"name":"Sholapur","adm0name":"India"},"coordinates":[7084,6400]},{"type":"Point","properties":{"name":"Aurangabad","adm0name":"India"},"coordinates":[7068,6532]},{"type":"Point","properties":{"name":"Nasik","adm0name":"India"},"coordinates":[7024,6539]},{"type":"Point","properties":{"name":"Dispur","adm0name":"India"},"coordinates":[7532,6904]},{"type":"Point","properties":{"name":"Jullundur","adm0name":"India"},"coordinates":[7075,7212]},{"type":"Point","properties":{"name":"Allahabad","adm0name":"India"},"coordinates":[7252,6863]},{"type":"Point","properties":{"name":"Moradabad","adm0name":"India"},"coordinates":[7165,7064]},{"type":"Point","properties":{"name":"Ghaziabad","adm0name":"India"},"coordinates":[7127,7053]},{"type":"Point","properties":{"name":"Agra","adm0name":"India"},"coordinates":[7144,6965]},{"type":"Point","properties":{"name":"Aligarh","adm0name":"India"},"coordinates":[7145,7008]},{"type":"Point","properties":{"name":"Meerut","adm0name":"India"},"coordinates":[7135,7074]},{"type":"Point","properties":{"name":"Dhanbad","adm0name":"India"},"coordinates":[7381,6765]},{"type":"Point","properties":{"name":"Gwalior","adm0name":"India"},"coordinates":[7149,6909]},{"type":"Point","properties":{"name":"Vadodara","adm0name":"India"},"coordinates":[7008,6676]},{"type":"Point","properties":{"name":"Rajkot","adm0name":"India"},"coordinates":[6940,6676]},{"type":"Point","properties":{"name":"Durazno","adm0name":"Uruguay"},"coordinates":[3349,3364]},{"type":"Point","properties":{"name":"International Falls","adm0name":"United States of America"},"coordinates":[2308,8239]},{"type":"Point","properties":{"name":"St. Paul","adm0name":"United States of America"},"coordinates":[2317,8021]},{"type":"Point","properties":{"name":"Billings","adm0name":"United States of America"},"coordinates":[1881,8071]},{"type":"Point","properties":{"name":"Great Falls","adm0name":"United States of America"},"coordinates":[1803,8173]},{"type":"Point","properties":{"name":"Missoula","adm0name":"United States of America"},"coordinates":[1727,8136]},{"type":"Point","properties":{"name":"Minot","adm0name":"United States of America"},"coordinates":[2085,8217]},{"type":"Point","properties":{"name":"Fargo","adm0name":"United States of America"},"coordinates":[2213,8136]},{"type":"Point","properties":{"name":"Hilo","adm0name":"United States of America"},"coordinates":[568,6521]},{"type":"Point","properties":{"name":"Olympia","adm0name":"United States of America"},"coordinates":[1476,8146]},{"type":"Point","properties":{"name":"Spokane","adm0name":"United States of America"},"coordinates":[1631,8183]},{"type":"Point","properties":{"name":"Vancouver","adm0name":"United States of America"},"coordinates":[1483,8062]},{"type":"Point","properties":{"name":"Flagstaff","adm0name":"United States of America"},"coordinates":[1793,7442]},{"type":"Point","properties":{"name":"Tucson","adm0name":"United States of America"},"coordinates":[1815,7264]},{"type":"Point","properties":{"name":"Santa Barbara","adm0name":"United States of America"},"coordinates":[1566,7397]},{"type":"Point","properties":{"name":"Fresno","adm0name":"United States of America"},"coordinates":[1564,7534]},{"type":"Point","properties":{"name":"Eureka","adm0name":"United States of America"},"coordinates":[1441,7775]},{"type":"Point","properties":{"name":"Colorado Springs","adm0name":"United States of America"},"coordinates":[1987,7660]},{"type":"Point","properties":{"name":"Reno","adm0name":"United States of America"},"coordinates":[1563,7699]},{"type":"Point","properties":{"name":"Elko","adm0name":"United States of America"},"coordinates":[1677,7777]},{"type":"Point","properties":{"name":"Albuquerque","adm0name":"United States of America"},"coordinates":[1935,7436]},{"type":"Point","properties":{"name":"Salem","adm0name":"United States of America"},"coordinates":[1473,8020]},{"type":"Point","properties":{"name":"Casper","adm0name":"United States of America"},"coordinates":[1944,7898]},{"type":"Point","properties":{"name":"Topeka","adm0name":"United States of America"},"coordinates":[2244,7671]},{"type":"Point","properties":{"name":"Kansas City","adm0name":"United States of America"},"coordinates":[2274,7674]},{"type":"Point","properties":{"name":"Tulsa","adm0name":"United States of America"},"coordinates":[2237,7497]},{"type":"Point","properties":{"name":"Sioux Falls","adm0name":"United States of America"},"coordinates":[2214,7938]},{"type":"Point","properties":{"name":"Shreveport","adm0name":"United States of America"},"coordinates":[2298,7282]},{"type":"Point","properties":{"name":"Baton Rouge","adm0name":"United States of America"},"coordinates":[2372,7160]},{"type":"Point","properties":{"name":"Ft. Worth","adm0name":"United States of America"},"coordinates":[2197,7296]},{"type":"Point","properties":{"name":"Corpus Christi","adm0name":"United States of America"},"coordinates":[2195,6999]},{"type":"Point","properties":{"name":"Austin","adm0name":"United States of America"},"coordinates":[2186,7149]},{"type":"Point","properties":{"name":"Amarillo","adm0name":"United States of America"},"coordinates":[2070,7444]},{"type":"Point","properties":{"name":"El Paso","adm0name":"United States of America"},"coordinates":[1938,7239]},{"type":"Point","properties":{"name":"Laredo","adm0name":"United States of America"},"coordinates":[2136,6985]},{"type":"Point","properties":{"name":"Merida","adm0name":"Venezuela"},"coordinates":[2936,5849]},{"type":"Point","properties":{"name":"Burlington","adm0name":"United States of America"},"coordinates":[2878,7993]},{"type":"Point","properties":{"name":"Montgomery","adm0name":"United States of America"},"coordinates":[2509,7273]},{"type":"Point","properties":{"name":"Tallahassee","adm0name":"United States of America"},"coordinates":[2566,7160]},{"type":"Point","properties":{"name":"Orlando","adm0name":"United States of America"},"coordinates":[2647,7044]},{"type":"Point","properties":{"name":"Jacksonville","adm0name":"United States of America"},"coordinates":[2639,7153]},{"type":"Point","properties":{"name":"Savannah","adm0name":"United States of America"},"coordinates":[2655,7253]},{"type":"Point","properties":{"name":"Columbia","adm0name":"United States of America"},"coordinates":[2661,7373]},{"type":"Point","properties":{"name":"Indianapolis","adm0name":"United States of America"},"coordinates":[2512,7713]},{"type":"Point","properties":{"name":"Wilmington","adm0name":"United States of America"},"coordinates":[2744,7384]},{"type":"Point","properties":{"name":"Knoxville","adm0name":"United States of America"},"coordinates":[2576,7488]},{"type":"Point","properties":{"name":"Richmond","adm0name":"United States of America"},"coordinates":[2758,7582]},{"type":"Point","properties":{"name":"Charleston","adm0name":"United States of America"},"coordinates":[2640,7629]},{"type":"Point","properties":{"name":"Baltimore","adm0name":"United States of America"},"coordinates":[2782,7686]},{"type":"Point","properties":{"name":"Syracuse","adm0name":"United States of America"},"coordinates":[2795,7909]},{"type":"Point","properties":{"name":"Puerto Ayacucho","adm0name":"Venezuela"},"coordinates":[3035,5686]},{"type":"Point","properties":{"name":"Port-of-Spain","adm0name":"Trinidad and Tobago"},"coordinates":[3208,5983]},{"type":"Point","properties":{"name":"Augusta","adm0name":"United States of America"},"coordinates":[2975,7984]},{"type":"Point","properties":{"name":"Sault Ste. Marie","adm0name":"United States of America"},"coordinates":[2564,8113]},{"type":"Point","properties":{"name":"Atakpame","adm0name":"Togo"},"coordinates":[4975,5797]},{"type":"Point","properties":{"name":"Sousse","adm0name":"Tunisia"},"coordinates":[5243,7479]},{"type":"Point","properties":{"name":"Taizz","adm0name":"Yemen"},"coordinates":[6185,6158]},{"type":"Point","properties":{"name":"Sitka","adm0name":"United States of America"},"coordinates":[1125,8741]},{"type":"Point","properties":{"name":"Lvov","adm0name":"Ukraine"},"coordinates":[5621,8312]},{"type":"Point","properties":{"name":"Odessa","adm0name":"Ukraine"},"coordinates":[5809,8113]},{"type":"Point","properties":{"name":"Zhytomyr","adm0name":"Ukraine"},"coordinates":[5752,8336]},{"type":"Point","properties":{"name":"Dnipropetrovsk","adm0name":"Ukraine"},"coordinates":[5930,8232]},{"type":"Point","properties":{"name":"Donetsk","adm0name":"Ukraine"},"coordinates":[6010,8203]},{"type":"Point","properties":{"name":"Kharkiv","adm0name":"Ukraine"},"coordinates":[5966,8322]},{"type":"Point","properties":{"name":"Turkmenbasy","adm0name":"Turkmenistan"},"coordinates":[6437,7729]},{"type":"Point","properties":{"name":"Bukhara","adm0name":"Uzbekistan"},"coordinates":[6761,7714]},{"type":"Point","properties":{"name":"Nukus","adm0name":"Uzbekistan"},"coordinates":[6625,7874]},{"type":"Point","properties":{"name":"Turkmenabat","adm0name":"Turkmenistan"},"coordinates":[6737,7674]},{"type":"Point","properties":{"name":"Mary","adm0name":"Turkmenistan"},"coordinates":[6688,7585]},{"type":"Point","properties":{"name":"Andijon","adm0name":"Uzbekistan"},"coordinates":[6984,7774]},{"type":"Point","properties":{"name":"Haiphong","adm0name":"Vietnam"},"coordinates":[7953,6588]},{"type":"Point","properties":{"name":"Da Nang","adm0name":"Vietnam"},"coordinates":[7997,6304]},{"type":"Point","properties":{"name":"Kabwe","adm0name":"Zambia"},"coordinates":[5746,4491]},{"type":"Point","properties":{"name":"Mufulira","adm0name":"Zambia"},"coordinates":[5740,4604]},{"type":"Point","properties":{"name":"Kitwe","adm0name":"Zambia"},"coordinates":[5739,4588]},{"type":"Point","properties":{"name":"Livingstone","adm0name":"Zambia"},"coordinates":[5673,4288]},{"type":"Point","properties":{"name":"Chitungwiza","adm0name":"Zimbabwe"},"coordinates":[5820,4280]},{"type":"Point","properties":{"name":"Douala","adm0name":"Cameroon"},"coordinates":[5217,5591]},{"type":"Point","properties":{"name":"Birmingham","adm0name":"United Kingdom"},"coordinates":[4889,8469]},{"type":"Point","properties":{"name":"Belfast","adm0name":"United Kingdom"},"coordinates":[4775,8595]},{"type":"Point","properties":{"name":"Izmir","adm0name":"Turkey"},"coordinates":[5709,7635]},{"type":"Point","properties":{"name":"Bursa","adm0name":"Turkey"},"coordinates":[5763,7739]},{"type":"Point","properties":{"name":"Samsun","adm0name":"Turkey"},"coordinates":[5968,7803]},{"type":"Point","properties":{"name":"Konya","adm0name":"Turkey"},"coordinates":[5859,7601]},{"type":"Point","properties":{"name":"Adana","adm0name":"Turkey"},"coordinates":[5939,7549]},{"type":"Point","properties":{"name":"Gulu","adm0name":"Uganda"},"coordinates":[5854,5515]},{"type":"Point","properties":{"name":"Kigali","adm0name":"Rwanda"},"coordinates":[5791,5234]},{"type":"Point","properties":{"name":"Cottica","adm0name":"Suriname"},"coordinates":[3413,5579]},{"type":"Point","properties":{"name":"Cordoba","adm0name":"Spain"},"coordinates":[4809,7601]},{"type":"Point","properties":{"name":"Maradi","adm0name":"Niger"},"coordinates":[5143,6152]},{"type":"Point","properties":{"name":"Tahoua","adm0name":"Niger"},"coordinates":[5092,6235]},{"type":"Point","properties":{"name":"Constanta","adm0name":"Romania"},"coordinates":[5750,7977]},{"type":"Point","properties":{"name":"Luleå","adm0name":"Sweden"},"coordinates":[5568,9249]},{"type":"Point","properties":{"name":"Sundsvall","adm0name":"Sweden"},"coordinates":[5432,9059]},{"type":"Point","properties":{"name":"Iasi","adm0name":"Romania"},"coordinates":[5721,8153]},{"type":"Point","properties":{"name":"Surat Thani","adm0name":"Thailand"},"coordinates":[7746,5894]},{"type":"Point","properties":{"name":"Chiang Mai","adm0name":"Thailand"},"coordinates":[7735,6467]},{"type":"Point","properties":{"name":"Nakhon Ratchasima","adm0name":"Thailand"},"coordinates":[7823,6241]},{"type":"Point","properties":{"name":"Mbabane","adm0name":"Swaziland"},"coordinates":[5821,3785]},{"type":"Point","properties":{"name":"Piura","adm0name":"Peru"},"coordinates":[2668,5040]},{"type":"Point","properties":{"name":"Arequipa","adm0name":"Peru"},"coordinates":[2925,4374]},{"type":"Point","properties":{"name":"Chimbote","adm0name":"Peru"},"coordinates":[2727,4811]},{"type":"Point","properties":{"name":"Pucallpa","adm0name":"Peru"},"coordinates":[2840,4852]},{"type":"Point","properties":{"name":"Iquitos","adm0name":"Peru"},"coordinates":[2877,5127]},{"type":"Point","properties":{"name":"Huancayo","adm0name":"Peru"},"coordinates":[2822,4632]},{"type":"Point","properties":{"name":"Ciudad del Este","adm0name":"Paraguay"},"coordinates":[3402,3833]},{"type":"Point","properties":{"name":"Ponta Delgada","adm0name":"Portugal"},"coordinates":[4219,7594]},{"type":"Point","properties":{"name":"Vigo","adm0name":"Spain"},"coordinates":[4697,7859]},{"type":"Point","properties":{"name":"Bilbao","adm0name":"Spain"},"coordinates":[4860,7921]},{"type":"Point","properties":{"name":"Kaolack","adm0name":"Senegal"},"coordinates":[4489,6191]},{"type":"Point","properties":{"name":"Kaedi","adm0name":"Senegal"},"coordinates":[4562,6310]},{"type":"Point","properties":{"name":"Geneina","adm0name":"Sudan"},"coordinates":[5576,6149]},{"type":"Point","properties":{"name":"Medina","adm0name":"Saudi Arabia"},"coordinates":[6060,6806]},{"type":"Point","properties":{"name":"Tabuk","adm0name":"Saudi Arabia"},"coordinates":[5974,7037]},{"type":"Point","properties":{"name":"Juba","adm0name":"South Sudan"},"coordinates":[5834,5637]},{"type":"Point","properties":{"name":"Malakal","adm0name":"South Sudan"},"coordinates":[5836,5917]},{"type":"Point","properties":{"name":"Omdurman","adm0name":"Sudan"},"coordinates":[5859,6278]},{"type":"Point","properties":{"name":"El Obeid","adm0name":"Sudan"},"coordinates":[5796,6133]},{"type":"Point","properties":{"name":"The Hague","adm0name":"Netherlands"},"coordinates":[5064,8445]},{"type":"Point","properties":{"name":"Kristiansand","adm0name":"Norway"},"coordinates":[5169,8807]},{"type":"Point","properties":{"name":"Ljubljana","adm0name":"Slovenia"},"coordinates":[5353,8087]},{"type":"Point","properties":{"name":"Bratislava","adm0name":"Slovakia"},"coordinates":[5426,8212]},{"type":"Point","properties":{"name":"Hammerfest","adm0name":"Norway"},"coordinates":[5611,9550]},{"type":"Point","properties":{"name":"Doha","adm0name":"Qatar"},"coordinates":[6397,6853]},{"type":"Point","properties":{"name":"Quetta","adm0name":"Pakistan"},"coordinates":[6834,7146]},{"type":"Point","properties":{"name":"Larkana","adm0name":"Pakistan"},"coordinates":[6867,6988]},{"type":"Point","properties":{"name":"Springbok","adm0name":"South Africa"},"coordinates":[5448,3586]},{"type":"Point","properties":{"name":"Upington","adm0name":"South Africa"},"coordinates":[5542,3658]},{"type":"Point","properties":{"name":"Worcester","adm0name":"South Africa"},"coordinates":[5492,3350]},{"type":"Point","properties":{"name":"George","adm0name":"South Africa"},"coordinates":[5576,3332]},{"type":"Point","properties":{"name":"Tete","adm0name":"Mozambique"},"coordinates":[5890,4389]},{"type":"Point","properties":{"name":"Pemba","adm0name":"Mozambique"},"coordinates":[6087,4578]},{"type":"Point","properties":{"name":"Nampula","adm0name":"Mozambique"},"coordinates":[6052,4450]},{"type":"Point","properties":{"name":"Welkom","adm0name":"South Africa"},"coordinates":[5697,3687]},{"type":"Point","properties":{"name":"Xai-Xai","adm0name":"Mozambique"},"coordinates":[5892,3861]},{"type":"Point","properties":{"name":"Goroka","adm0name":"Papua New Guinea"},"coordinates":[9045,4988]},{"type":"Point","properties":{"name":"Mt. Hagen","adm0name":"Papua New Guinea"},"coordinates":[9012,5001]},{"type":"Point","properties":{"name":"Rabaul","adm0name":"Papua New Guinea"},"coordinates":[9235,5100]},{"type":"Point","properties":{"name":"Lae","adm0name":"Papua New Guinea"},"coordinates":[9090,4949]},{"type":"Point","properties":{"name":"David","adm0name":"Panama"},"coordinates":[2618,5851]},{"type":"Point","properties":{"name":"Oujda","adm0name":"Morocco"},"coordinates":[4889,7412]},{"type":"Point","properties":{"name":"Safi","adm0name":"Morocco"},"coordinates":[4682,7271]},{"type":"Point","properties":{"name":"Podgorica","adm0name":"Montenegro"},"coordinates":[5487,7874]},{"type":"Point","properties":{"name":"Quelimane","adm0name":"Mozambique"},"coordinates":[5984,4287]},{"type":"Point","properties":{"name":"East London","adm0name":"South Africa"},"coordinates":[5729,3390]},{"type":"Point","properties":{"name":"Middelburg","adm0name":"South Africa"},"coordinates":[5649,3477]},{"type":"Point","properties":{"name":"Naltchik","adm0name":"Russia"},"coordinates":[6174,7935]},{"type":"Point","properties":{"name":"Stavropol","adm0name":"Russia"},"coordinates":[6127,8028]},{"type":"Point","properties":{"name":"Ugolnye Kopi","adm0name":"Russia"},"coordinates":[9956,9198]},{"type":"Point","properties":{"name":"Kaliningrad","adm0name":"Russia"},"coordinates":[5521,8601]},{"type":"Point","properties":{"name":"Pskov","adm0name":"Russia"},"coordinates":[5742,8787]},{"type":"Point","properties":{"name":"Bryansk","adm0name":"Russia"},"coordinates":[5914,8516]},{"type":"Point","properties":{"name":"Smolensk","adm0name":"Russia"},"coordinates":[5847,8606]},{"type":"Point","properties":{"name":"Petrozavodsk","adm0name":"Russia"},"coordinates":[5910,9026]},{"type":"Point","properties":{"name":"Tver","adm0name":"Russia"},"coordinates":[5956,8730]},{"type":"Point","properties":{"name":"Vologda","adm0name":"Russia"},"coordinates":[6069,8869]},{"type":"Point","properties":{"name":"Yaroslavl","adm0name":"Russia"},"coordinates":[6068,8775]},{"type":"Point","properties":{"name":"Rostov","adm0name":"Russia"},"coordinates":[6063,8158]},{"type":"Point","properties":{"name":"Sochi","adm0name":"Russia"},"coordinates":[6064,7941]},{"type":"Point","properties":{"name":"Krasnodar","adm0name":"Russia"},"coordinates":[6043,8026]},{"type":"Point","properties":{"name":"Penza","adm0name":"Russia"},"coordinates":[6213,8511]},{"type":"Point","properties":{"name":"Ryazan","adm0name":"Russia"},"coordinates":[6064,8596]},{"type":"Point","properties":{"name":"Voronezh","adm0name":"Russia"},"coordinates":[6051,8425]},{"type":"Point","properties":{"name":"Magnitogorsk","adm0name":"Russia"},"coordinates":[6607,8525]},{"type":"Point","properties":{"name":"Chelyabinsk","adm0name":"Russia"},"coordinates":[6676,8628]},{"type":"Point","properties":{"name":"Vorkuta","adm0name":"Russia"},"coordinates":[6749,9362]},{"type":"Point","properties":{"name":"Kirov","adm0name":"Russia"},"coordinates":[6344,8832]},{"type":"Point","properties":{"name":"Nizhny Tagil","adm0name":"Russia"},"coordinates":[6635,8793]},{"type":"Point","properties":{"name":"Astrakhan","adm0name":"Russia"},"coordinates":[6299,8105]},{"type":"Point","properties":{"name":"Orenburg","adm0name":"Russia"},"coordinates":[6498,8428]},{"type":"Point","properties":{"name":"Saratov","adm0name":"Russia"},"coordinates":[6242,8416]},{"type":"Point","properties":{"name":"Ulyanovsk","adm0name":"Russia"},"coordinates":[6309,8579]},{"type":"Point","properties":{"name":"Omsk","adm0name":"Russia"},"coordinates":[7014,8618]},{"type":"Point","properties":{"name":"Tyumen","adm0name":"Russia"},"coordinates":[6792,8746]},{"type":"Point","properties":{"name":"Novokuznetsk","adm0name":"Russia"},"coordinates":[7401,8545]},{"type":"Point","properties":{"name":"Kemerovo","adm0name":"Russia"},"coordinates":[7372,8639]},{"type":"Point","properties":{"name":"Groznyy","adm0name":"Russia"},"coordinates":[6232,7925]},{"type":"Point","properties":{"name":"Kandy","adm0name":"Sri Lanka"},"coordinates":[7219,5782]},{"type":"Point","properties":{"name":"Sri Jawewardenepura Kotte","adm0name":"Sri Lanka"},"coordinates":[7199,5760]},{"type":"Point","properties":{"name":"Daejeon","adm0name":"South Korea"},"coordinates":[8538,7510]},{"type":"Point","properties":{"name":"Gwangju","adm0name":"South Korea"},"coordinates":[8523,7440]},{"type":"Point","properties":{"name":"Busan","adm0name":"South Korea"},"coordinates":[8583,7436]},{"type":"Point","properties":{"name":"Zamboanga","adm0name":"Philippines"},"coordinates":[8387,5761]},{"type":"Point","properties":{"name":"Laoag","adm0name":"Philippines"},"coordinates":[8345,6431]},{"type":"Point","properties":{"name":"Baguio City","adm0name":"Philippines"},"coordinates":[8345,6326]},{"type":"Point","properties":{"name":"General Santos","adm0name":"Philippines"},"coordinates":[8474,5713]},{"type":"Point","properties":{"name":"Ust-Ulimsk","adm0name":"Russia"},"coordinates":[7839,8797]},{"type":"Point","properties":{"name":"Angarsk","adm0name":"Russia"},"coordinates":[7875,8474]},{"type":"Point","properties":{"name":"Abakan","adm0name":"Russia"},"coordinates":[7523,8542]},{"type":"Point","properties":{"name":"Norilsk","adm0name":"Russia"},"coordinates":[7432,9471]},{"type":"Point","properties":{"name":"Khatanga","adm0name":"Russia"},"coordinates":[7834,9632]},{"type":"Point","properties":{"name":"Kyzyl","adm0name":"Russia"},"coordinates":[7606,8423]},{"type":"Point","properties":{"name":"Ulan Ude","adm0name":"Russia"},"coordinates":[7979,8430]},{"type":"Point","properties":{"name":"Blagoveshchensk","adm0name":"Russia"},"coordinates":[8541,8338]},{"type":"Point","properties":{"name":"Bukachacha","adm0name":"Russia"},"coordinates":[8241,8499]},{"type":"Point","properties":{"name":"Dalnegorsk","adm0name":"Russia"},"coordinates":[8766,7997]},{"type":"Point","properties":{"name":"Ambarchik","adm0name":"Russia"},"coordinates":[9523,9490]},{"type":"Point","properties":{"name":"Batagay","adm0name":"Russia"},"coordinates":[8741,9371]},{"type":"Point","properties":{"name":"Chokurdakh","adm0name":"Russia"},"coordinates":[9115,9547]},{"type":"Point","properties":{"name":"Ust Nera","adm0name":"Russia"},"coordinates":[8983,9188]},{"type":"Point","properties":{"name":"Lensk","adm0name":"Russia"},"coordinates":[8186,8959]},{"type":"Point","properties":{"name":"Aldan","adm0name":"Russia"},"coordinates":[8480,8833]},{"type":"Point","properties":{"name":"Mirnyy","adm0name":"Russia"},"coordinates":[8158,9067]},{"type":"Point","properties":{"name":"Zhigansk","adm0name":"Russia"},"coordinates":[8424,9319]},{"type":"Point","properties":{"name":"Okhotsk","adm0name":"Russia"},"coordinates":[8983,8880]},{"type":"Point","properties":{"name":"Khabarovsk","adm0name":"Russia"},"coordinates":[8755,8230]},{"type":"Point","properties":{"name":"Okha","adm0name":"Russia"},"coordinates":[8976,8534]},{"type":"Point","properties":{"name":"Yuzhno Sakhalinsk","adm0name":"Russia"},"coordinates":[8970,8141]},{"type":"Point","properties":{"name":"Mexicali","adm0name":"Mexico"},"coordinates":[1685,7291]},{"type":"Point","properties":{"name":"La Paz","adm0name":"Mexico"},"coordinates":[1831,6785]},{"type":"Point","properties":{"name":"Torreon","adm0name":"Mexico"},"coordinates":[2026,6870]},{"type":"Point","properties":{"name":"Culiacan","adm0name":"Mexico"},"coordinates":[1914,6826]},{"type":"Point","properties":{"name":"Nogales","adm0name":"Mexico"},"coordinates":[1813,7211]},{"type":"Point","properties":{"name":"Hermosillo","adm0name":"Mexico"},"coordinates":[1813,7079]},{"type":"Point","properties":{"name":"Guaymas","adm0name":"Mexico"},"coordinates":[1815,7010]},{"type":"Point","properties":{"name":"San Luis Potosi","adm0name":"Mexico"},"coordinates":[2094,6668]},{"type":"Point","properties":{"name":"Matamoros","adm0name":"Mexico"},"coordinates":[2193,6888]},{"type":"Point","properties":{"name":"Nuevo Laredo","adm0name":"Mexico"},"coordinates":[2135,6984]},{"type":"Point","properties":{"name":"Colima","adm0name":"Mexico"},"coordinates":[2017,6493]},{"type":"Point","properties":{"name":"Campeche","adm0name":"Mexico"},"coordinates":[2390,6528]},{"type":"Point","properties":{"name":"Oaxaca","adm0name":"Mexico"},"coordinates":[2216,6365]},{"type":"Point","properties":{"name":"Leon","adm0name":"Mexico"},"coordinates":[2074,6607]},{"type":"Point","properties":{"name":"Maiduguri","adm0name":"Nigeria"},"coordinates":[5314,6054]},{"type":"Point","properties":{"name":"Port Harcourt","adm0name":"Nigeria"},"coordinates":[5141,5636]},{"type":"Point","properties":{"name":"Makurdi","adm0name":"Nigeria"},"coordinates":[5184,5809]},{"type":"Point","properties":{"name":"Ibadan","adm0name":"Nigeria"},"coordinates":[5054,5789]},{"type":"Point","properties":{"name":"Ogbomosho","adm0name":"Nigeria"},"coordinates":[5063,5833]},{"type":"Point","properties":{"name":"Warri","adm0name":"Nigeria"},"coordinates":[5106,5678]},{"type":"Point","properties":{"name":"Kaduna","adm0name":"Nigeria"},"coordinates":[5153,5975]},{"type":"Point","properties":{"name":"Gdansk","adm0name":"Poland"},"coordinates":[5469,8581]},{"type":"Point","properties":{"name":"Kraków","adm0name":"Poland"},"coordinates":[5506,8325]},{"type":"Point","properties":{"name":"Dalandzadgad","adm0name":"Mongolia"},"coordinates":[7889,7940]},{"type":"Point","properties":{"name":"Wonsan","adm0name":"North Korea"},"coordinates":[8538,7677]},{"type":"Point","properties":{"name":"Sinuiju","adm0name":"North Korea"},"coordinates":[8453,7732]},{"type":"Point","properties":{"name":"Dund-Us","adm0name":"Mongolia"},"coordinates":[7528,8204]},{"type":"Point","properties":{"name":"Choybalsan","adm0name":"Mongolia"},"coordinates":[8173,8207]},{"type":"Point","properties":{"name":"Lüderitz","adm0name":"Namibia"},"coordinates":[5371,3766]},{"type":"Point","properties":{"name":"Walvis Bay","adm0name":"Namibia"},"coordinates":[5352,3985]},{"type":"Point","properties":{"name":"Mwanza","adm0name":"Tanzania"},"coordinates":[5872,5200]},{"type":"Point","properties":{"name":"Morogoro","adm0name":"Tanzania"},"coordinates":[6006,4944]},{"type":"Point","properties":{"name":"Dodoma","adm0name":"Tanzania"},"coordinates":[5952,4982]},{"type":"Point","properties":{"name":"Arusha","adm0name":"Tanzania"},"coordinates":[5978,5150]},{"type":"Point","properties":{"name":"Napier","adm0name":"New Zealand"},"coordinates":[9934,3002]},{"type":"Point","properties":{"name":"Manukau","adm0name":"New Zealand"},"coordinates":[9877,3150]},{"type":"Point","properties":{"name":"Hamilton","adm0name":"New Zealand"},"coordinates":[9889,3105]},{"type":"Point","properties":{"name":"Blenheim","adm0name":"New Zealand"},"coordinates":[9851,2882]},{"type":"Point","properties":{"name":"Dunedin","adm0name":"New Zealand"},"coordinates":[9753,2623]},{"type":"Point","properties":{"name":"Bern","adm0name":"Switzerland"},"coordinates":[5154,8138]},{"type":"Point","properties":{"name":"Malmö","adm0name":"Sweden"},"coordinates":[5311,8654]},{"type":"Point","properties":{"name":"Laayoune","adm0name":"Morocco"},"coordinates":[4571,6964]},{"type":"Point","properties":{"name":"Ternate","adm0name":"Indonesia"},"coordinates":[8536,5397]},{"type":"Point","properties":{"name":"Ambon","adm0name":"Indonesia"},"coordinates":[8560,5129]},{"type":"Point","properties":{"name":"Raba","adm0name":"Indonesia"},"coordinates":[8294,4847]},{"type":"Point","properties":{"name":"Jayapura","adm0name":"Indonesia"},"coordinates":[8912,5199]},{"type":"Point","properties":{"name":"Florence","adm0name":"Italy"},"coordinates":[5261,7952]},{"type":"Point","properties":{"name":"Catania","adm0name":"Italy"},"coordinates":[5369,7579]},{"type":"Point","properties":{"name":"Pristina","adm0name":"Kosovo"},"coordinates":[5540,7886]},{"type":"Point","properties":{"name":"Meru","adm0name":"Kenya"},"coordinates":[6005,5353]},{"type":"Point","properties":{"name":"Eldoret","adm0name":"Kenya"},"coordinates":[5938,5381]},{"type":"Point","properties":{"name":"Banda Aceh","adm0name":"Indonesia"},"coordinates":[7632,5680]},{"type":"Point","properties":{"name":"George Town","adm0name":"Malaysia"},"coordinates":[7774,5672]},{"type":"Point","properties":{"name":"Zhangye","adm0name":"China"},"coordinates":[7777,7664]},{"type":"Point","properties":{"name":"Wuwei","adm0name":"China"},"coordinates":[7839,7604]},{"type":"Point","properties":{"name":"Dunhuang","adm0name":"China"},"coordinates":[7614,7736]},{"type":"Point","properties":{"name":"Tianshui","adm0name":"China"},"coordinates":[7931,7406]},{"type":"Point","properties":{"name":"Dulan","adm0name":"China"},"coordinates":[7715,7499]},{"type":"Point","properties":{"name":"Golmud","adm0name":"China"},"coordinates":[7620,7514]},{"type":"Point","properties":{"name":"Yulin","adm0name":"China"},"coordinates":[8051,6695]},{"type":"Point","properties":{"name":"Bose","adm0name":"China"},"coordinates":[7951,6770]},{"type":"Point","properties":{"name":"Wuzhou","adm0name":"China"},"coordinates":[8084,6745]},{"type":"Point","properties":{"name":"Lupanshui","adm0name":"China"},"coordinates":[7901,6931]},{"type":"Point","properties":{"name":"Quanzhou","adm0name":"China"},"coordinates":[8288,6830]},{"type":"Point","properties":{"name":"Hefei","adm0name":"China"},"coordinates":[8252,7243]},{"type":"Point","properties":{"name":"Suzhou","adm0name":"China"},"coordinates":[8243,7349]},{"type":"Point","properties":{"name":"Zhanjiang","adm0name":"China"},"coordinates":[8057,6610]},{"type":"Point","properties":{"name":"Shaoguan","adm0name":"China"},"coordinates":[8147,6824]},{"type":"Point","properties":{"name":"Balikpapan","adm0name":"Indonesia"},"coordinates":[8239,5275]},{"type":"Point","properties":{"name":"Kuching","adm0name":"Malaysia"},"coordinates":[8056,5441]},{"type":"Point","properties":{"name":"Antsiranana","adm0name":"Madagascar"},"coordinates":[6334,4620]},{"type":"Point","properties":{"name":"Fianarantsoa","adm0name":"Madagascar"},"coordinates":[6271,4076]},{"type":"Point","properties":{"name":"Mahajanga","adm0name":"Madagascar"},"coordinates":[6251,4418]},{"type":"Point","properties":{"name":"Toliara","adm0name":"Madagascar"},"coordinates":[6176,3961]},{"type":"Point","properties":{"name":"Surakarta","adm0name":"Indonesia"},"coordinates":[8070,4900]},{"type":"Point","properties":{"name":"Bandar Lampung","adm0name":"Indonesia"},"coordinates":[7913,5027]},{"type":"Point","properties":{"name":"Tanjungpandan","adm0name":"Indonesia"},"coordinates":[7980,5186]},{"type":"Point","properties":{"name":"Malang","adm0name":"Indonesia"},"coordinates":[8120,4875]},{"type":"Point","properties":{"name":"Kupang","adm0name":"Indonesia"},"coordinates":[8430,4745]},{"type":"Point","properties":{"name":"Parepare","adm0name":"Indonesia"},"coordinates":[8318,5111]},{"type":"Point","properties":{"name":"Cuenca","adm0name":"Ecuador"},"coordinates":[2714,5177]},{"type":"Point","properties":{"name":"Santa Cruz","adm0name":"Ecuador"},"coordinates":[2394,5318]},{"type":"Point","properties":{"name":"Puerto Limon","adm0name":"Costa Rica"},"coordinates":[2601,5944]},{"type":"Point","properties":{"name":"Santiago de Cuba","adm0name":"Cuba"},"coordinates":[2804,6540]},{"type":"Point","properties":{"name":"Santiago","adm0name":"Dominican Republic"},"coordinates":[2949,6509]},{"type":"Point","properties":{"name":"Manizales","adm0name":"Colombia"},"coordinates":[2813,5650]},{"type":"Point","properties":{"name":"Pasto","adm0name":"Colombia"},"coordinates":[2763,5422]},{"type":"Point","properties":{"name":"Barranquilla","adm0name":"Colombia"},"coordinates":[2833,6001]},{"type":"Point","properties":{"name":"Roseau","adm0name":"Dominica"},"coordinates":[3211,6259]},{"type":"Point","properties":{"name":"Mbandaka","adm0name":"Congo (Kinshasa)"},"coordinates":[5458,5352]},{"type":"Point","properties":{"name":"Moundou","adm0name":"Chad"},"coordinates":[5397,5858]},{"type":"Point","properties":{"name":"Suez","adm0name":"Egypt"},"coordinates":[5861,7133]},{"type":"Point","properties":{"name":"Bur Said","adm0name":"Egypt"},"coordinates":[5854,7208]},{"type":"Point","properties":{"name":"El Faiyum","adm0name":"Egypt"},"coordinates":[5813,7092]},{"type":"Point","properties":{"name":"Aswan","adm0name":"Egypt"},"coordinates":[5871,6782]},{"type":"Point","properties":{"name":"Asyut","adm0name":"Egypt"},"coordinates":[5823,6966]},{"type":"Point","properties":{"name":"Kisangani","adm0name":"Congo (Kinshasa)"},"coordinates":[5655,5381]},{"type":"Point","properties":{"name":"Assab","adm0name":"Eritrea"},"coordinates":[6149,6123]},{"type":"Point","properties":{"name":"Djibouti","adm0name":"Djibouti"},"coordinates":[6160,6039]},{"type":"Point","properties":{"name":"Dresden","adm0name":"Germany"},"coordinates":[5331,8384]},{"type":"Point","properties":{"name":"Xigaze","adm0name":"China"},"coordinates":[7451,7088]},{"type":"Point","properties":{"name":"Shache","adm0name":"China"},"coordinates":[7122,7634]},{"type":"Point","properties":{"name":"Yining","adm0name":"China"},"coordinates":[7238,7959]},{"type":"Point","properties":{"name":"Altay","adm0name":"China"},"coordinates":[7429,8195]},{"type":"Point","properties":{"name":"Putrajaya","adm0name":"Malaysia"},"coordinates":[7812,5523]},{"type":"Point","properties":{"name":"Shizuishan","adm0name":"China"},"coordinates":[7955,7682]},{"type":"Point","properties":{"name":"Yulin","adm0name":"China"},"coordinates":[8039,7625]},{"type":"Point","properties":{"name":"Ankang","adm0name":"China"},"coordinates":[8019,7292]},{"type":"Point","properties":{"name":"Houma","adm0name":"China"},"coordinates":[8080,7467]},{"type":"Point","properties":{"name":"Yueyang","adm0name":"China"},"coordinates":[8134,7096]},{"type":"Point","properties":{"name":"Hengyang","adm0name":"China"},"coordinates":[8119,6948]},{"type":"Point","properties":{"name":"Mianyang","adm0name":"China"},"coordinates":[7899,7220]},{"type":"Point","properties":{"name":"Xichang","adm0name":"China"},"coordinates":[7829,7007]},{"type":"Point","properties":{"name":"Baoshan","adm0name":"China"},"coordinates":[7740,6843]},{"type":"Point","properties":{"name":"Gejiu","adm0name":"China"},"coordinates":[7853,6739]},{"type":"Point","properties":{"name":"Shijianzhuang","adm0name":"China"},"coordinates":[8173,7612]},{"type":"Point","properties":{"name":"Handan","adm0name":"China"},"coordinates":[8173,7524]},{"type":"Point","properties":{"name":"Anshan","adm0name":"China"},"coordinates":[8411,7794]},{"type":"Point","properties":{"name":"Dalian","adm0name":"China"},"coordinates":[8374,7663]},{"type":"Point","properties":{"name":"Qingdao","adm0name":"China"},"coordinates":[8338,7495]},{"type":"Point","properties":{"name":"Linyi","adm0name":"China"},"coordinates":[8281,7435]},{"type":"Point","properties":{"name":"Huaiyin","adm0name":"China"},"coordinates":[8301,7346]},{"type":"Point","properties":{"name":"Wenzhou","adm0name":"China"},"coordinates":[8347,7015]},{"type":"Point","properties":{"name":"Ningbo","adm0name":"China"},"coordinates":[8372,7126]},{"type":"Point","properties":{"name":"Fukuoka","adm0name":"Japan"},"coordinates":[8622,7347]},{"type":"Point","properties":{"name":"Miyazaki","adm0name":"Japan"},"coordinates":[8651,7247]},{"type":"Point","properties":{"name":"Naha","adm0name":"Japan"},"coordinates":[8545,6907]},{"type":"Point","properties":{"name":"Kochi","adm0name":"Japan"},"coordinates":[8710,7345]},{"type":"Point","properties":{"name":"Gorontalo","adm0name":"Indonesia"},"coordinates":[8415,5382]},{"type":"Point","properties":{"name":"Tongliao","adm0name":"China"},"coordinates":[8392,7943]},{"type":"Point","properties":{"name":"Hohhot","adm0name":"China"},"coordinates":[8093,7776]},{"type":"Point","properties":{"name":"Chifeng","adm0name":"China"},"coordinates":[8299,7862]},{"type":"Point","properties":{"name":"Ulanhot","adm0name":"China"},"coordinates":[8387,8089]},{"type":"Point","properties":{"name":"Hailar","adm0name":"China"},"coordinates":[8320,8274]},{"type":"Point","properties":{"name":"Jiamusi","adm0name":"China"},"coordinates":[8620,8133]},{"type":"Point","properties":{"name":"Beian","adm0name":"China"},"coordinates":[8511,8217]},{"type":"Point","properties":{"name":"Daqing","adm0name":"China"},"coordinates":[8469,8119]},{"type":"Point","properties":{"name":"Jixi","adm0name":"China"},"coordinates":[8638,8043]},{"type":"Point","properties":{"name":"Nagoya","adm0name":"Japan"},"coordinates":[8806,7439]},{"type":"Point","properties":{"name":"Nagano","adm0name":"Japan"},"coordinates":[8841,7528]},{"type":"Point","properties":{"name":"Kushiro","adm0name":"Japan"},"coordinates":[9016,7904]},{"type":"Point","properties":{"name":"Hakodate","adm0name":"Japan"},"coordinates":[8914,7834]},{"type":"Point","properties":{"name":"Kyoto","adm0name":"Japan"},"coordinates":[8773,7432]},{"type":"Point","properties":{"name":"Sendai","adm0name":"Japan"},"coordinates":[8921,7626]},{"type":"Point","properties":{"name":"Sakata","adm0name":"Japan"},"coordinates":[8888,7663]},{"type":"Point","properties":{"name":"Bandundu","adm0name":"Congo (Kinshasa)"},"coordinates":[5433,5153]},{"type":"Point","properties":{"name":"Kananga","adm0name":"Congo (Kinshasa)"},"coordinates":[5575,5000]},{"type":"Point","properties":{"name":"Kasongo","adm0name":"Congo (Kinshasa)"},"coordinates":[5695,5085]},{"type":"Point","properties":{"name":"Mbuji-Mayi","adm0name":"Congo (Kinshasa)"},"coordinates":[5609,4984]},{"type":"Point","properties":{"name":"Kalemie","adm0name":"Congo (Kinshasa)"},"coordinates":[5767,4997]},{"type":"Point","properties":{"name":"Butembo","adm0name":"Congo (Kinshasa)"},"coordinates":[5769,5357]},{"type":"Point","properties":{"name":"Goma","adm0name":"Congo (Kinshasa)"},"coordinates":[5768,5250]},{"type":"Point","properties":{"name":"Mzuzu","adm0name":"Malawi"},"coordinates":[5903,4669]},{"type":"Point","properties":{"name":"Blantyre","adm0name":"Malawi"},"coordinates":[5930,4411]},{"type":"Point","properties":{"name":"Quetzaltenango","adm0name":"Guatemala"},"coordinates":[2361,6231]},{"type":"Point","properties":{"name":"Banjul","adm0name":"The Gambia"},"coordinates":[4475,6149]},{"type":"Point","properties":{"name":"Faridabad","adm0name":"India"},"coordinates":[7124,7040]},{"type":"Point","properties":{"name":"Srinagar","adm0name":"India"},"coordinates":[7054,7377]},{"type":"Point","properties":{"name":"Vijayawada","adm0name":"India"},"coordinates":[7218,6332]},{"type":"Point","properties":{"name":"Thiruvananthapuram","adm0name":"India"},"coordinates":[7114,5855]},{"type":"Point","properties":{"name":"Kochi","adm0name":"India"},"coordinates":[7093,5945]},{"type":"Point","properties":{"name":"Cuttack","adm0name":"India"},"coordinates":[7366,6566]},{"type":"Point","properties":{"name":"Hubli","adm0name":"India"},"coordinates":[7062,6263]},{"type":"Point","properties":{"name":"Mangalore","adm0name":"India"},"coordinates":[7055,6117]},{"type":"Point","properties":{"name":"Mysore","adm0name":"India"},"coordinates":[7106,6082]},{"type":"Point","properties":{"name":"Gulbarga","adm0name":"India"},"coordinates":[7110,6381]},{"type":"Point","properties":{"name":"Kolhapur","adm0name":"India"},"coordinates":[7037,6342]},{"type":"Point","properties":{"name":"Nanded","adm0name":"India"},"coordinates":[7124,6489]},{"type":"Point","properties":{"name":"Akola","adm0name":"India"},"coordinates":[7116,6581]},{"type":"Point","properties":{"name":"Guwahati","adm0name":"India"},"coordinates":[7532,6905]},{"type":"Point","properties":{"name":"Kayes","adm0name":"Congo (Brazzaville)"},"coordinates":[5318,5101]},{"type":"Point","properties":{"name":"Franceville","adm0name":"Gabon"},"coordinates":[5326,5253]},{"type":"Point","properties":{"name":"Bordeaux","adm0name":"France"},"coordinates":[4926,8016]},{"type":"Point","properties":{"name":"Marseille","adm0name":"France"},"coordinates":[5095,7923]},{"type":"Point","properties":{"name":"Le Havre","adm0name":"France"},"coordinates":[4946,8292]},{"type":"Point","properties":{"name":"Gao","adm0name":"Mali"},"coordinates":[4942,6317]},{"type":"Point","properties":{"name":"Coihaique","adm0name":"Chile"},"coordinates":[2910,2641]},{"type":"Point","properties":{"name":"Arica","adm0name":"Chile"},"coordinates":[2960,4250]},{"type":"Point","properties":{"name":"Copiapo","adm0name":"Chile"},"coordinates":[2959,3723]},{"type":"Point","properties":{"name":"La Serena","adm0name":"Chile"},"coordinates":[2933,3572]},{"type":"Point","properties":{"name":"Los Angeles","adm0name":"Chile"},"coordinates":[2902,3123]},{"type":"Point","properties":{"name":"Narsarsuaq","adm0name":"Greenland"},"coordinates":[3662,8986]},{"type":"Point","properties":{"name":"Sisimiut","adm0name":"Greenland"},"coordinates":[3429,9329]},{"type":"Point","properties":{"name":"Upernavik","adm0name":"Greenland"},"coordinates":[3359,9672]},{"type":"Point","properties":{"name":"Qaanaaq","adm0name":"Greenland"},"coordinates":[2987,9955]},{"type":"Point","properties":{"name":"Nouadhibou","adm0name":"Mauritania"},"coordinates":[4462,6592]},{"type":"Point","properties":{"name":"Kayes","adm0name":"Mali"},"coordinates":[4620,6209]},{"type":"Point","properties":{"name":"Ayoun el Atrous","adm0name":"Mauritania"},"coordinates":[4672,6340]},{"type":"Point","properties":{"name":"Segou","adm0name":"Mali"},"coordinates":[4767,6149]},{"type":"Point","properties":{"name":"Skopje","adm0name":"Macedonia"},"coordinates":[5548,7846]},{"type":"Point","properties":{"name":"Al Jawf","adm0name":"Libya"},"coordinates":[5600,6788]},{"type":"Point","properties":{"name":"Tmassah","adm0name":"Libya"},"coordinates":[5389,6917]},{"type":"Point","properties":{"name":"Misratah","adm0name":"Libya"},"coordinates":[5369,7274]},{"type":"Point","properties":{"name":"Zuwarah","adm0name":"Libya"},"coordinates":[5284,7307]},{"type":"Point","properties":{"name":"Kirkuk","adm0name":"Iraq"},"coordinates":[6195,7458]},{"type":"Point","properties":{"name":"Mosul","adm0name":"Iraq"},"coordinates":[6160,7510]},{"type":"Point","properties":{"name":"An Najaf","adm0name":"Iraq"},"coordinates":[6194,7252]},{"type":"Point","properties":{"name":"Bahir Dar","adm0name":"Ethiopia"},"coordinates":[5998,6039]},{"type":"Point","properties":{"name":"Mekele","adm0name":"Ethiopia"},"coordinates":[6057,6152]},{"type":"Point","properties":{"name":"Dire Dawa","adm0name":"Ethiopia"},"coordinates":[6124,5920]},{"type":"Point","properties":{"name":"Rovaniemi","adm0name":"Finland"},"coordinates":[5669,9303]},{"type":"Point","properties":{"name":"Vaasa","adm0name":"Finland"},"coordinates":[5552,9100]},{"type":"Point","properties":{"name":"Tampere","adm0name":"Finland"},"coordinates":[5613,9005]},{"type":"Point","properties":{"name":"Aqtobe","adm0name":"Kazakhstan"},"coordinates":[6556,8338]},{"type":"Point","properties":{"name":"Rudny","adm0name":"Kazakhstan"},"coordinates":[6724,8497]},{"type":"Point","properties":{"name":"Qyzylorda","adm0name":"Kazakhstan"},"coordinates":[6790,8013]},{"type":"Point","properties":{"name":"Atyrau","adm0name":"Kazakhstan"},"coordinates":[6408,8150]},{"type":"Point","properties":{"name":"Ekibastuz","adm0name":"Kazakhstan"},"coordinates":[7068,8425]},{"type":"Point","properties":{"name":"Pavlodar","adm0name":"Kazakhstan"},"coordinates":[7114,8458]},{"type":"Point","properties":{"name":"Semey","adm0name":"Kazakhstan"},"coordinates":[7208,8348]},{"type":"Point","properties":{"name":"Oskemen","adm0name":"Kazakhstan"},"coordinates":[7274,8321]},{"type":"Point","properties":{"name":"Yazd","adm0name":"Iran"},"coordinates":[6477,7247]},{"type":"Point","properties":{"name":"Ahvaz","adm0name":"Iran"},"coordinates":[6318,7209]},{"type":"Point","properties":{"name":"Basra","adm0name":"Iraq"},"coordinates":[6292,7164]},{"type":"Point","properties":{"name":"Bandar-e-Abbas","adm0name":"Iran"},"coordinates":[6531,6967]},{"type":"Point","properties":{"name":"Hamadan","adm0name":"Iran"},"coordinates":[6312,7418]},{"type":"Point","properties":{"name":"Tabriz","adm0name":"Iran"},"coordinates":[6249,7614]},{"type":"Point","properties":{"name":"Ludhiana","adm0name":"India"},"coordinates":[7084,7188]},{"type":"Point","properties":{"name":"Kota","adm0name":"India"},"coordinates":[7082,6847]},{"type":"Point","properties":{"name":"Jodhpur","adm0name":"India"},"coordinates":[7003,6913]},{"type":"Point","properties":{"name":"Shymkent","adm0name":"Kazakhstan"},"coordinates":[6906,7865]},{"type":"Point","properties":{"name":"Taraz","adm0name":"Kazakhstan"},"coordinates":[6956,7900]},{"type":"Point","properties":{"name":"Lucknow","adm0name":"India"},"coordinates":[7226,6946]},{"type":"Point","properties":{"name":"Saharanpur","adm0name":"India"},"coordinates":[7131,7131]},{"type":"Point","properties":{"name":"Ranchi","adm0name":"India"},"coordinates":[7350,6739]},{"type":"Point","properties":{"name":"Bhagalpur","adm0name":"India"},"coordinates":[7397,6849]},{"type":"Point","properties":{"name":"Raipur","adm0name":"India"},"coordinates":[7246,6612]},{"type":"Point","properties":{"name":"Jabalpur","adm0name":"India"},"coordinates":[7199,6727]},{"type":"Point","properties":{"name":"Indore","adm0name":"India"},"coordinates":[7083,6700]},{"type":"Point","properties":{"name":"Pondicherry","adm0name":"India"},"coordinates":[7195,6059]},{"type":"Point","properties":{"name":"Salem","adm0name":"India"},"coordinates":[7149,6044]},{"type":"Point","properties":{"name":"Tiruchirappalli","adm0name":"India"},"coordinates":[7163,5992]},{"type":"Point","properties":{"name":"Pointe-Noire","adm0name":"Congo (Brazzaville)"},"coordinates":[5278,5066]},{"type":"Point","properties":{"name":"Kankan","adm0name":"Guinea"},"coordinates":[4680,5967]},{"type":"Point","properties":{"name":"Nzerekore","adm0name":"Guinea"},"coordinates":[4694,5811]},{"type":"Point","properties":{"name":"Bouake","adm0name":"Ivory Coast"},"coordinates":[4801,5807]},{"type":"Point","properties":{"name":"St.-Denis","adm0name":"France"},"coordinates":[6507,4109]},{"type":"Point","properties":{"name":"Rio Branco","adm0name":"Brazil"},"coordinates":[3030,4757]},{"type":"Point","properties":{"name":"São Luís","adm0name":"Brazil"},"coordinates":[3694,5200]},{"type":"Point","properties":{"name":"Porto Velho","adm0name":"Brazil"},"coordinates":[3140,4830]},{"type":"Point","properties":{"name":"Alvorada","adm0name":"Brazil"},"coordinates":[3558,4608]},{"type":"Point","properties":{"name":"Corumba","adm0name":"Brazil"},"coordinates":[3317,4219]},{"type":"Point","properties":{"name":"Belo Horizonte","adm0name":"Brazil"},"coordinates":[3704,4166]},{"type":"Point","properties":{"name":"Montes Claros","adm0name":"Brazil"},"coordinates":[3706,4356]},{"type":"Point","properties":{"name":"Uberlandia","adm0name":"Brazil"},"coordinates":[3581,4226]},{"type":"Point","properties":{"name":"Colider","adm0name":"Brazil"},"coordinates":[3379,4707]},{"type":"Point","properties":{"name":"Alta Floresta","adm0name":"Brazil"},"coordinates":[3366,4761]},{"type":"Point","properties":{"name":"Cuiaba","adm0name":"Brazil"},"coordinates":[3361,4424]},{"type":"Point","properties":{"name":"Pelotas","adm0name":"Brazil"},"coordinates":[3467,3462]},{"type":"Point","properties":{"name":"Caxias do Sul","adm0name":"Brazil"},"coordinates":[3500,3615]},{"type":"Point","properties":{"name":"Ponta Grossa","adm0name":"Brazil"},"coordinates":[3528,3858]},{"type":"Point","properties":{"name":"Teresina","adm0name":"Brazil"},"coordinates":[3736,5047]},{"type":"Point","properties":{"name":"Maceio","adm0name":"Brazil"},"coordinates":[3935,4778]},{"type":"Point","properties":{"name":"Vitoria da Conquista","adm0name":"Brazil"},"coordinates":[3791,4467]},{"type":"Point","properties":{"name":"Barreiras","adm0name":"Brazil"},"coordinates":[3674,4628]},{"type":"Point","properties":{"name":"Vila Velha","adm0name":"Brazil"},"coordinates":[3806,4139]},{"type":"Point","properties":{"name":"Natal","adm0name":"Brazil"},"coordinates":[3949,5006]},{"type":"Point","properties":{"name":"Thompson","adm0name":"Canada"},"coordinates":[2182,8664]},{"type":"Point","properties":{"name":"Brandon","adm0name":"Canada"},"coordinates":[2123,8312]},{"type":"Point","properties":{"name":"Fort Smith","adm0name":"Canada"},"coordinates":[1787,8916]},{"type":"Point","properties":{"name":"Fort McMurray","adm0name":"Canada"},"coordinates":[1801,8722]},{"type":"Point","properties":{"name":"Peace River","adm0name":"Canada"},"coordinates":[1634,8692]},{"type":"Point","properties":{"name":"Fort St. John","adm0name":"Canada"},"coordinates":[1534,8693]},{"type":"Point","properties":{"name":"Iqaluit","adm0name":"Canada"},"coordinates":[3011,9139]},{"type":"Point","properties":{"name":"Cambridge Bay","adm0name":"Canada"},"coordinates":[1980,9458]},{"type":"Point","properties":{"name":"Kugluktuk","adm0name":"Canada"},"coordinates":[1695,9380]},{"type":"Point","properties":{"name":"Chesterfield Inlet","adm0name":"Canada"},"coordinates":[2384,9115]},{"type":"Point","properties":{"name":"Arviat","adm0name":"Canada"},"coordinates":[2290,8982]},{"type":"Point","properties":{"name":"Taloyoak","adm0name":"Canada"},"coordinates":[2304,9483]},{"type":"Point","properties":{"name":"Igloolik","adm0name":"Canada"},"coordinates":[2636,9466]},{"type":"Point","properties":{"name":"Dawson City","adm0name":"Canada"},"coordinates":[1010,9158]},{"type":"Point","properties":{"name":"Timmins","adm0name":"Canada"},"coordinates":[2649,8231]},{"type":"Point","properties":{"name":"North Bay","adm0name":"Canada"},"coordinates":[2702,8102]},{"type":"Point","properties":{"name":"Kuujjuarapik","adm0name":"Canada"},"coordinates":[2749,8636]},{"type":"Point","properties":{"name":"Kuujjuaq","adm0name":"Canada"},"coordinates":[3014,8803]},{"type":"Point","properties":{"name":"Sydney","adm0name":"Canada"},"coordinates":[3245,8088]},{"type":"Point","properties":{"name":"Labrador City","adm0name":"Canada"},"coordinates":[3055,8497]},{"type":"Point","properties":{"name":"Ebolowa","adm0name":"Cameroon"},"coordinates":[5258,5522]},{"type":"Point","properties":{"name":"Bambari","adm0name":"Central African Republic"},"coordinates":[5526,5692]},{"type":"Point","properties":{"name":"Venice","adm0name":"Italy"},"coordinates":[5291,8051]},{"type":"Point","properties":{"name":"El Calafate","adm0name":"Argentina"},"coordinates":[2903,2358]},{"type":"Point","properties":{"name":"San Juan","adm0name":"Argentina"},"coordinates":[3010,3474]},{"type":"Point","properties":{"name":"Rawson","adm0name":"Argentina"},"coordinates":[3107,2776]},{"type":"Point","properties":{"name":"Neuquen","adm0name":"Argentina"},"coordinates":[3023,3034]},{"type":"Point","properties":{"name":"Trinidad","adm0name":"Bolivia"},"coordinates":[3112,4468]},{"type":"Point","properties":{"name":"Santa Rosa","adm0name":"Argentina"},"coordinates":[3129,3173]},{"type":"Point","properties":{"name":"San Carlos de Bariloche","adm0name":"Argentina"},"coordinates":[2932,2904]},{"type":"Point","properties":{"name":"Salta","adm0name":"Argentina"},"coordinates":[3098,3877]},{"type":"Point","properties":{"name":"Tucumán","adm0name":"Argentina"},"coordinates":[3103,3756]},{"type":"Point","properties":{"name":"Formosa","adm0name":"Argentina"},"coordinates":[3302,3794]},{"type":"Point","properties":{"name":"Santa Fe","adm0name":"Argentina"},"coordinates":[3231,3470]},{"type":"Point","properties":{"name":"Rosario","adm0name":"Argentina"},"coordinates":[3232,3391]},{"type":"Point","properties":{"name":"Campinas","adm0name":"Brazil"},"coordinates":[3614,3989]},{"type":"Point","properties":{"name":"Sorocaba","adm0name":"Brazil"},"coordinates":[3604,3953]},{"type":"Point","properties":{"name":"Ribeirao Preto","adm0name":"Brazil"},"coordinates":[3594,4091]},{"type":"Point","properties":{"name":"Petrolina","adm0name":"Brazil"},"coordinates":[3800,4792]},{"type":"Point","properties":{"name":"Bamenda","adm0name":"Cameroon"},"coordinates":[5229,5704]},{"type":"Point","properties":{"name":"Garoua","adm0name":"Cameroon"},"coordinates":[5321,5903]},{"type":"Point","properties":{"name":"Herat","adm0name":"Afghanistan"},"coordinates":[6697,7390]},{"type":"Point","properties":{"name":"Mazar-e Sharif","adm0name":"Afghanistan"},"coordinates":[6836,7531]},{"type":"Point","properties":{"name":"Battambang","adm0name":"Cambodia"},"coordinates":[7855,6128]},{"type":"Point","properties":{"name":"Siem Reap","adm0name":"Cambodia"},"coordinates":[7873,6144]},{"type":"Point","properties":{"name":"Malanje","adm0name":"Angola"},"coordinates":[5404,4783]},{"type":"Point","properties":{"name":"Benguela","adm0name":"Angola"},"coordinates":[5321,4602]},{"type":"Point","properties":{"name":"Lubango","adm0name":"Angola"},"coordinates":[5324,4463]},{"type":"Point","properties":{"name":"Namibe","adm0name":"Angola"},"coordinates":[5286,4447]},{"type":"Point","properties":{"name":"Tarija","adm0name":"Bolivia"},"coordinates":[3116,4071]},{"type":"Point","properties":{"name":"Bridgetown","adm0name":"Barbados"},"coordinates":[3261,6129]},{"type":"Point","properties":{"name":"Annaba","adm0name":"Algeria"},"coordinates":[5162,7544]},{"type":"Point","properties":{"name":"Parakou","adm0name":"Benin"},"coordinates":[5017,5905]},{"type":"Point","properties":{"name":"Porto-Novo","adm0name":"Benin"},"coordinates":[5017,5735]},{"type":"Point","properties":{"name":"Constantine","adm0name":"Algeria"},"coordinates":[5129,7511]},{"type":"Point","properties":{"name":"Brest","adm0name":"Belarus"},"coordinates":[5612,8447]},{"type":"Point","properties":{"name":"Khulna","adm0name":"Bangladesh"},"coordinates":[7470,6707]},{"type":"Point","properties":{"name":"Francistown","adm0name":"Botswana"},"coordinates":[5719,4091]},{"type":"Point","properties":{"name":"Mahalapye","adm0name":"Botswana"},"coordinates":[5700,3977]},{"type":"Point","properties":{"name":"Serowe","adm0name":"Botswana"},"coordinates":[5697,4019]},{"type":"Point","properties":{"name":"Katherine","adm0name":"Australia"},"coordinates":[8675,4490]},{"type":"Point","properties":{"name":"Busselton","adm0name":"Australia"},"coordinates":[8197,3349]},{"type":"Point","properties":{"name":"Mandurah","adm0name":"Australia"},"coordinates":[8208,3416]},{"type":"Point","properties":{"name":"Broome","adm0name":"Australia"},"coordinates":[8391,4282]},{"type":"Point","properties":{"name":"Kalgoorlie","adm0name":"Australia"},"coordinates":[8370,3523]},{"type":"Point","properties":{"name":"Albany","adm0name":"Australia"},"coordinates":[8269,3268]},{"type":"Point","properties":{"name":"Port Hedland","adm0name":"Australia"},"coordinates":[8289,4142]},{"type":"Point","properties":{"name":"Karratha","adm0name":"Australia"},"coordinates":[8240,4117]},{"type":"Point","properties":{"name":"Geraldton","adm0name":"Australia"},"coordinates":[8176,3640]},{"type":"Point","properties":{"name":"Griffith","adm0name":"Australia"},"coordinates":[9063,3311]},{"type":"Point","properties":{"name":"Orange","adm0name":"Australia"},"coordinates":[9149,3372]},{"type":"Point","properties":{"name":"Dubbo","adm0name":"Australia"},"coordinates":[9135,3432]},{"type":"Point","properties":{"name":"Armidale","adm0name":"Australia"},"coordinates":[9222,3536]},{"type":"Point","properties":{"name":"Broken Hill","adm0name":"Australia"},"coordinates":[8933,3451]},{"type":"Point","properties":{"name":"Port Lincoln","adm0name":"Australia"},"coordinates":[8776,3285]},{"type":"Point","properties":{"name":"Whyalla","adm0name":"Australia"},"coordinates":[8824,3387]},{"type":"Point","properties":{"name":"Portland","adm0name":"Australia"},"coordinates":[8938,3071]},{"type":"Point","properties":{"name":"Bendigo","adm0name":"Australia"},"coordinates":[9013,3165]},{"type":"Point","properties":{"name":"Wangaratta","adm0name":"Australia"},"coordinates":[9070,3188]},{"type":"Point","properties":{"name":"Windorah","adm0name":"Australia"},"coordinates":[8967,3838]},{"type":"Point","properties":{"name":"Mount Isa","adm0name":"Australia"},"coordinates":[8878,4118]},{"type":"Point","properties":{"name":"Rockhampton","adm0name":"Australia"},"coordinates":[9189,3961]},{"type":"Point","properties":{"name":"Cairns","adm0name":"Australia"},"coordinates":[9055,4346]},{"type":"Point","properties":{"name":"Gold Coast","adm0name":"Australia"},"coordinates":[9272,3681]},{"type":"Point","properties":{"name":"Devonport","adm0name":"Australia"},"coordinates":[9071,2901]},{"type":"Point","properties":{"name":"Bobo Dioulasso","adm0name":"Burkina Faso"},"coordinates":[4822,6014]},{"type":"Point","properties":{"name":"Rajshahi","adm0name":"Bangladesh"},"coordinates":[7443,6799]},{"type":"Point","properties":{"name":"Mandalay","adm0name":"Myanmar"},"coordinates":[7654,6656]},{"type":"Point","properties":{"name":"Sittwe","adm0name":"Myanmar"},"coordinates":[7563,6547]},{"type":"Point","properties":{"name":"Bujumbura","adm0name":"Burundi"},"coordinates":[5771,5149]},{"type":"Point","properties":{"name":"Pago Pago","adm0name":"American Samoa"},"coordinates":[127,4501]},{"type":"Point","properties":{"name":"Kingstown","adm0name":"Saint Vincent and the Grenadines"},"coordinates":[3216,6131]},{"type":"Point","properties":{"name":"Castries","adm0name":"Saint Lucia"},"coordinates":[3222,6182]},{"type":"Point","properties":{"name":"Basseterre","adm0name":"Saint Kitts and Nevis"},"coordinates":[3174,6378]},{"type":"Point","properties":{"name":"Las Palmas","adm0name":"Spain"},"coordinates":[4508,7020]},{"type":"Point","properties":{"name":"Berbera","adm0name":"Somaliland"},"coordinates":[6213,5970]},{"type":"Point","properties":{"name":"Port Louis","adm0name":"Mauritius"},"coordinates":[6565,4151]},{"type":"Point","properties":{"name":"Gaza","adm0name":"Palestine"},"coordinates":[5915,7224]},{"type":"Point","properties":{"name":"Saint George's","adm0name":"Grenada"},"coordinates":[3201,6066]},{"type":"Point","properties":{"name":"Papeete","adm0name":"French Polynesia"},"coordinates":[724,4308]},{"type":"Point","properties":{"name":"Manama","adm0name":"Bahrain"},"coordinates":[6370,6909]},{"type":"Point","properties":{"name":"Freeport","adm0name":"The Bahamas"},"coordinates":[2723,6927]},{"type":"Point","properties":{"name":"Saint John's","adm0name":"Antigua and Barbuda"},"coordinates":[3198,6367]},{"type":"Point","properties":{"name":"Taichung","adm0name":"Taiwan"},"coordinates":[8348,6785]},{"type":"Point","properties":{"name":"Kozhikode","adm0name":"India"},"coordinates":[7081,6019]},{"type":"Point","properties":{"name":"Bhubaneshwar","adm0name":"India"},"coordinates":[7364,6555]},{"type":"Point","properties":{"name":"Jamshedpur","adm0name":"India"},"coordinates":[7375,6704]},{"type":"Point","properties":{"name":"Montevideo","adm0name":"Uruguay"},"coordinates":[3358,3278]},{"type":"Point","properties":{"name":"Helena","adm0name":"United States of America"},"coordinates":[1783,8119]},{"type":"Point","properties":{"name":"Bismarck","adm0name":"United States of America"},"coordinates":[2100,8132]},{"type":"Point","properties":{"name":"Boise","adm0name":"United States of America"},"coordinates":[1664,7942]},{"type":"Point","properties":{"name":"San Jose","adm0name":"United States of America"},"coordinates":[1506,7567]},{"type":"Point","properties":{"name":"Sacramento","adm0name":"United States of America"},"coordinates":[1516,7643]},{"type":"Point","properties":{"name":"Las Vegas","adm0name":"United States of America"},"coordinates":[1693,7502]},{"type":"Point","properties":{"name":"Santa Fe","adm0name":"United States of America"},"coordinates":[1955,7471]},{"type":"Point","properties":{"name":"Portland","adm0name":"United States of America"},"coordinates":[1482,8056]},{"type":"Point","properties":{"name":"Salt Lake City","adm0name":"United States of America"},"coordinates":[1785,7774]},{"type":"Point","properties":{"name":"Cheyenne","adm0name":"United States of America"},"coordinates":[1986,7795]},{"type":"Point","properties":{"name":"Des Moines","adm0name":"United States of America"},"coordinates":[2302,7821]},{"type":"Point","properties":{"name":"Omaha","adm0name":"United States of America"},"coordinates":[2235,7801]},{"type":"Point","properties":{"name":"Oklahoma City","adm0name":"United States of America"},"coordinates":[2192,7458]},{"type":"Point","properties":{"name":"Pierre","adm0name":"United States of America"},"coordinates":[2112,7987]},{"type":"Point","properties":{"name":"San Antonio","adm0name":"United States of America"},"coordinates":[2164,7103]},{"type":"Point","properties":{"name":"San Cristobal","adm0name":"Venezuela"},"coordinates":[2905,5812]},{"type":"Point","properties":{"name":"Valencia","adm0name":"Venezuela"},"coordinates":[3025,5958]},{"type":"Point","properties":{"name":"Jackson","adm0name":"United States of America"},"coordinates":[2399,7270]},{"type":"Point","properties":{"name":"Raleigh","adm0name":"United States of America"},"coordinates":[2724,7479]},{"type":"Point","properties":{"name":"Cleveland","adm0name":"United States of America"},"coordinates":[2638,7815]},{"type":"Point","properties":{"name":"Cincinnati","adm0name":"United States of America"},"coordinates":[2560,7678]},{"type":"Point","properties":{"name":"Nashville","adm0name":"United States of America"},"coordinates":[2495,7500]},{"type":"Point","properties":{"name":"Memphis","adm0name":"United States of America"},"coordinates":[2404,7437]},{"type":"Point","properties":{"name":"Norfolk","adm0name":"United States of America"},"coordinates":[2791,7540]},{"type":"Point","properties":{"name":"Milwaukee","adm0name":"United States of America"},"coordinates":[2463,7909]},{"type":"Point","properties":{"name":"Buffalo","adm0name":"United States of America"},"coordinates":[2718,7899]},{"type":"Point","properties":{"name":"Pittsburgh","adm0name":"United States of America"},"coordinates":[2686,7753]},{"type":"Point","properties":{"name":"Ciudad Guayana","adm0name":"Venezuela"},"coordinates":[3177,5847]},{"type":"Point","properties":{"name":"Lome","adm0name":"Togo"},"coordinates":[4978,5714]},{"type":"Point","properties":{"name":"Tunis","adm0name":"Tunisia"},"coordinates":[5230,7537]},{"type":"Point","properties":{"name":"Kodiak","adm0name":"United States of America"},"coordinates":[644,8785]},{"type":"Point","properties":{"name":"Cold Bay","adm0name":"United States of America"},"coordinates":[353,8631]},{"type":"Point","properties":{"name":"Bethel","adm0name":"United States of America"},"coordinates":[380,8963]},{"type":"Point","properties":{"name":"Point Hope","adm0name":"United States of America"},"coordinates":[237,9412]},{"type":"Point","properties":{"name":"Barrow","adm0name":"United States of America"},"coordinates":[520,9587]},{"type":"Point","properties":{"name":"Nome","adm0name":"United States of America"},"coordinates":[277,9184]},{"type":"Point","properties":{"name":"Valdez","adm0name":"United States of America"},"coordinates":[815,8984]},{"type":"Point","properties":{"name":"Juneau","adm0name":"United States of America"},"coordinates":[1151,8816]},{"type":"Point","properties":{"name":"Fairbanks","adm0name":"United States of America"},"coordinates":[776,9204]},{"type":"Point","properties":{"name":"Prudhoe Bay","adm0name":"United States of America"},"coordinates":[749,9528]},{"type":"Point","properties":{"name":"Sevastapol","adm0name":"Ukraine"},"coordinates":[5887,8001]},{"type":"Point","properties":{"name":"Abu Dhabi","adm0name":"United Arab Emirates"},"coordinates":[6477,6804]},{"type":"Point","properties":{"name":"Ashgabat","adm0name":"Turkmenistan"},"coordinates":[6590,7606]},{"type":"Point","properties":{"name":"Samarqand","adm0name":"Uzbekistan"},"coordinates":[6832,7708]},{"type":"Point","properties":{"name":"Lusaka","adm0name":"Zambia"},"coordinates":[5741,4433]},{"type":"Point","properties":{"name":"Harare","adm0name":"Zimbabwe"},"coordinates":[5819,4291]},{"type":"Point","properties":{"name":"Bulawayo","adm0name":"Zimbabwe"},"coordinates":[5749,4151]},{"type":"Point","properties":{"name":"Dili","adm0name":"East Timor"},"coordinates":[8486,4841]},{"type":"Point","properties":{"name":"Port Vila","adm0name":"Vanuatu"},"coordinates":[9692,4296]},{"type":"Point","properties":{"name":"Tegucigalpa","adm0name":"Honduras"},"coordinates":[2483,6188]},{"type":"Point","properties":{"name":"Georgetown","adm0name":"Guyana"},"coordinates":[3302,5754]},{"type":"Point","properties":{"name":"Reykjavík","adm0name":"Iceland"},"coordinates":[4324,9163]},{"type":"Point","properties":{"name":"Port-au-Prince","adm0name":"Haiti"},"coordinates":[2902,6452]},{"type":"Point","properties":{"name":"Glasgow","adm0name":"United Kingdom"},"coordinates":[4823,8671]},{"type":"Point","properties":{"name":"Kampala","adm0name":"Uganda"},"coordinates":[5862,5369]},{"type":"Point","properties":{"name":"Aden","adm0name":"Yemen"},"coordinates":[6213,6109]},{"type":"Point","properties":{"name":"Paramaribo","adm0name":"Suriname"},"coordinates":[3387,5697]},{"type":"Point","properties":{"name":"Seville","adm0name":"Spain"},"coordinates":[4774,7573]},{"type":"Point","properties":{"name":"Zinder","adm0name":"Niger"},"coordinates":[5197,6170]},{"type":"Point","properties":{"name":"Niamey","adm0name":"Niger"},"coordinates":[5003,6153]},{"type":"Point","properties":{"name":"Port Sudan","adm0name":"Sudan"},"coordinates":[5993,6516]},{"type":"Point","properties":{"name":"Dushanbe","adm0name":"Tajikistan"},"coordinates":[6883,7642]},{"type":"Point","properties":{"name":"Cusco","adm0name":"Peru"},"coordinates":[2913,4546]},{"type":"Point","properties":{"name":"Tacna","adm0name":"Peru"},"coordinates":[2961,4280]},{"type":"Point","properties":{"name":"Trujillo","adm0name":"Peru"},"coordinates":[2714,4867]},{"type":"Point","properties":{"name":"Ica","adm0name":"Peru"},"coordinates":[2807,4513]},{"type":"Point","properties":{"name":"Asuncion","adm0name":"Paraguay"},"coordinates":[3317,3846]},{"type":"Point","properties":{"name":"Managua","adm0name":"Nicaragua"},"coordinates":[2509,6072]},{"type":"Point","properties":{"name":"Freetown","adm0name":"Sierra Leone"},"coordinates":[4570,5853]},{"type":"Point","properties":{"name":"Agadez","adm0name":"Niger"},"coordinates":[5168,6360]},{"type":"Point","properties":{"name":"Niyala","adm0name":"Sudan"},"coordinates":[5645,6067]},{"type":"Point","properties":{"name":"Wau","adm0name":"South Sudan"},"coordinates":[5733,5807]},{"type":"Point","properties":{"name":"Dongola","adm0name":"Sudan"},"coordinates":[5803,6489]},{"type":"Point","properties":{"name":"Kassala","adm0name":"Sudan"},"coordinates":[5970,6269]},{"type":"Point","properties":{"name":"Tromsø","adm0name":"Norway"},"coordinates":[5479,9489]},{"type":"Point","properties":{"name":"Trondheim","adm0name":"Norway"},"coordinates":[5237,9119]},{"type":"Point","properties":{"name":"Bergen","adm0name":"Norway"},"coordinates":[5093,8939]},{"type":"Point","properties":{"name":"Islamabad","adm0name":"Pakistan"},"coordinates":[7007,7353]},{"type":"Point","properties":{"name":"Multan","adm0name":"Pakistan"},"coordinates":[6959,7145]},{"type":"Point","properties":{"name":"Hyderabad","adm0name":"Pakistan"},"coordinates":[6872,6858]},{"type":"Point","properties":{"name":"Peshawar","adm0name":"Pakistan"},"coordinates":[6961,7371]},{"type":"Point","properties":{"name":"Kathmandu","adm0name":"Nepal"},"coordinates":[7350,6997]},{"type":"Point","properties":{"name":"Nacala","adm0name":"Mozambique"},"coordinates":[6092,4487]},{"type":"Point","properties":{"name":"Bloemfontein","adm0name":"South Africa"},"coordinates":[5683,3619]},{"type":"Point","properties":{"name":"Pretoria","adm0name":"South Africa"},"coordinates":[5739,3822]},{"type":"Point","properties":{"name":"Port Moresby","adm0name":"Papua New Guinea"},"coordinates":[9096,4787]},{"type":"Point","properties":{"name":"Honiara","adm0name":"Solomon Islands"},"coordinates":[9455,4789]},{"type":"Point","properties":{"name":"Panama City","adm0name":"Panama"},"coordinates":[2699,5883]},{"type":"Point","properties":{"name":"Fez","adm0name":"Morocco"},"coordinates":[4802,7374]},{"type":"Point","properties":{"name":"Rabat","adm0name":"Morocco"},"coordinates":[4750,7372]},{"type":"Point","properties":{"name":"Marrakesh","adm0name":"Morocco"},"coordinates":[4717,7230]},{"type":"Point","properties":{"name":"Chisinau","adm0name":"Moldova"},"coordinates":[5757,8144]},{"type":"Point","properties":{"name":"Beira","adm0name":"Mozambique"},"coordinates":[5927,4172]},{"type":"Point","properties":{"name":"Port Elizabeth","adm0name":"South Africa"},"coordinates":[5665,3331]},{"type":"Point","properties":{"name":"Maputo","adm0name":"Mozambique"},"coordinates":[5862,3807]},{"type":"Point","properties":{"name":"Tomsk","adm0name":"Russia"},"coordinates":[7340,8708]},{"type":"Point","properties":{"name":"Anadyr","adm0name":"Russia"},"coordinates":[9950,9198]},{"type":"Point","properties":{"name":"Murmansk","adm0name":"Russia"},"coordinates":[5877,9449]},{"type":"Point","properties":{"name":"Archangel","adm0name":"Russia"},"coordinates":[6087,9188]},{"type":"Point","properties":{"name":"Nizhny Novgorod","adm0name":"Russia"},"coordinates":[6184,8698]},{"type":"Point","properties":{"name":"Volgograd","adm0name":"Russia"},"coordinates":[6198,8245]},{"type":"Point","properties":{"name":"Ufa","adm0name":"Russia"},"coordinates":[6524,8607]},{"type":"Point","properties":{"name":"Yekaterinburg","adm0name":"Russia"},"coordinates":[6653,8729]},{"type":"Point","properties":{"name":"Samara","adm0name":"Russia"},"coordinates":[6358,8512]},{"type":"Point","properties":{"name":"Kazan","adm0name":"Russia"},"coordinates":[6329,8664]},{"type":"Point","properties":{"name":"Surgut","adm0name":"Russia"},"coordinates":[7015,8991]},{"type":"Point","properties":{"name":"Barnaul","adm0name":"Russia"},"coordinates":[7306,8521]},{"type":"Point","properties":{"name":"Novosibirsk","adm0name":"Russia"},"coordinates":[7283,8621]},{"type":"Point","properties":{"name":"Mogadishu","adm0name":"Somalia"},"coordinates":[6223,5473]},{"type":"Point","properties":{"name":"Muscat","adm0name":"Oman"},"coordinates":[6596,6753]},{"type":"Point","properties":{"name":"Colombo","adm0name":"Sri Lanka"},"coordinates":[7196,5762]},{"type":"Point","properties":{"name":"Cebu","adm0name":"Philippines"},"coordinates":[8438,5963]},{"type":"Point","properties":{"name":"Iloilo","adm0name":"Philippines"},"coordinates":[8400,5986]},{"type":"Point","properties":{"name":"Davao","adm0name":"Philippines"},"coordinates":[8487,5772]},{"type":"Point","properties":{"name":"Bratsk","adm0name":"Russia"},"coordinates":[7810,8688]},{"type":"Point","properties":{"name":"Irkutsk","adm0name":"Russia"},"coordinates":[7884,8460]},{"type":"Point","properties":{"name":"Krasnoyarsk","adm0name":"Russia"},"coordinates":[7563,8679]},{"type":"Point","properties":{"name":"Dickson","adm0name":"Russia"},"coordinates":[7215,9719]},{"type":"Point","properties":{"name":"Chita","adm0name":"Russia"},"coordinates":[8144,8444]},{"type":"Point","properties":{"name":"Vladivostok","adm0name":"Russia"},"coordinates":[8664,7913]},{"type":"Point","properties":{"name":"Nizhneyansk","adm0name":"Russia"},"coordinates":[8782,9596]},{"type":"Point","properties":{"name":"Yakutsk","adm0name":"Russia"},"coordinates":[8603,9037]},{"type":"Point","properties":{"name":"Tiksi","adm0name":"Russia"},"coordinates":[8578,9607]},{"type":"Point","properties":{"name":"Magadan","adm0name":"Russia"},"coordinates":[9198,8891]},{"type":"Point","properties":{"name":"Tijuana","adm0name":"Mexico"},"coordinates":[1640,7282]},{"type":"Point","properties":{"name":"Chihuahua","adm0name":"Mexico"},"coordinates":[1950,7053]},{"type":"Point","properties":{"name":"Mazatlan","adm0name":"Mexico"},"coordinates":[1941,6730]},{"type":"Point","properties":{"name":"Tampico","adm0name":"Mexico"},"coordinates":[2182,6675]},{"type":"Point","properties":{"name":"Acapulco","adm0name":"Mexico"},"coordinates":[2124,6351]},{"type":"Point","properties":{"name":"Veracruz","adm0name":"Mexico"},"coordinates":[2230,6490]},{"type":"Point","properties":{"name":"Tuxtla Gutierrez","adm0name":"Mexico"},"coordinates":[2315,6345]},{"type":"Point","properties":{"name":"Cancun","adm0name":"Mexico"},"coordinates":[2494,6608]},{"type":"Point","properties":{"name":"Merida","adm0name":"Mexico"},"coordinates":[2415,6596]},{"type":"Point","properties":{"name":"Enugu","adm0name":"Nigeria"},"coordinates":[5155,5733]},{"type":"Point","properties":{"name":"Sokoto","adm0name":"Nigeria"},"coordinates":[5091,6126]},{"type":"Point","properties":{"name":"Perm","adm0name":"Russia"},"coordinates":[6530,8797]},{"type":"Point","properties":{"name":"Erdenet","adm0name":"Mongolia"},"coordinates":[7880,8265]},{"type":"Point","properties":{"name":"Ulaanbaatar","adm0name":"Mongolia"},"coordinates":[7959,8198]},{"type":"Point","properties":{"name":"Wellington","adm0name":"New Zealand"},"coordinates":[9874,2895]},{"type":"Point","properties":{"name":"Mbeya","adm0name":"Tanzania"},"coordinates":[5886,4821]},{"type":"Point","properties":{"name":"Windhoek","adm0name":"Namibia"},"coordinates":[5425,4008]},{"type":"Point","properties":{"name":"Grootfontein","adm0name":"Namibia"},"coordinates":[5454,4187]},{"type":"Point","properties":{"name":"Zanzibar","adm0name":"Tanzania"},"coordinates":[6049,4984]},{"type":"Point","properties":{"name":"Christchurch","adm0name":"New Zealand"},"coordinates":[9813,2762]},{"type":"Point","properties":{"name":"Valencia","adm0name":"Spain"},"coordinates":[4932,7697]},{"type":"Point","properties":{"name":"Palana","adm0name":"Russia"},"coordinates":[9455,8862]},{"type":"Point","properties":{"name":"Petropavlovsk Kamchatskiy","adm0name":"Russia"},"coordinates":[9418,8504]},{"type":"Point","properties":{"name":"Abuja","adm0name":"Nigeria"},"coordinates":[5156,5890]},{"type":"Point","properties":{"name":"Padang","adm0name":"Indonesia"},"coordinates":[7774,5293]},{"type":"Point","properties":{"name":"Bissau","adm0name":"Guinea Bissau"},"coordinates":[4503,6055]},{"type":"Point","properties":{"name":"Palermo","adm0name":"Italy"},"coordinates":[5320,7616]},{"type":"Point","properties":{"name":"Amman","adm0name":"Jordan"},"coordinates":[5957,7249]},{"type":"Point","properties":{"name":"Vilnius","adm0name":"Lithuania"},"coordinates":[5657,8600]},{"type":"Point","properties":{"name":"Riga","adm0name":"Latvia"},"coordinates":[5623,8735]},{"type":"Point","properties":{"name":"Bishkek","adm0name":"Kyrgyzstan"},"coordinates":[7047,7898]},{"type":"Point","properties":{"name":"Jiayuguan","adm0name":"China"},"coordinates":[7716,7717]},{"type":"Point","properties":{"name":"Xining","adm0name":"China"},"coordinates":[7814,7527]},{"type":"Point","properties":{"name":"Guilin","adm0name":"China"},"coordinates":[8054,6853]},{"type":"Point","properties":{"name":"Huainan","adm0name":"China"},"coordinates":[8243,7289]},{"type":"Point","properties":{"name":"Shantou","adm0name":"China"},"coordinates":[8234,6739]},{"type":"Point","properties":{"name":"Tarakan","adm0name":"Indonesia"},"coordinates":[8262,5546]},{"type":"Point","properties":{"name":"Mombasa","adm0name":"Kenya"},"coordinates":[6063,5110]},{"type":"Point","properties":{"name":"Maseru","adm0name":"Lesotho"},"coordinates":[5718,3607]},{"type":"Point","properties":{"name":"Antananarivo","adm0name":"Madagascar"},"coordinates":[6284,4225]},{"type":"Point","properties":{"name":"Semarang","adm0name":"Indonesia"},"coordinates":[8058,4936]},{"type":"Point","properties":{"name":"Palembang","adm0name":"Indonesia"},"coordinates":[7898,5173]},{"type":"Point","properties":{"name":"Bandjarmasin","adm0name":"Indonesia"},"coordinates":[8176,5152]},{"type":"Point","properties":{"name":"Ujungpandang","adm0name":"Indonesia"},"coordinates":[8312,5044]},{"type":"Point","properties":{"name":"Lyon","adm0name":"France"},"coordinates":[5079,8070]},{"type":"Point","properties":{"name":"Quito","adm0name":"Ecuador"},"coordinates":[2729,5337]},{"type":"Point","properties":{"name":"San Jose","adm0name":"Costa Rica"},"coordinates":[2571,5940]},{"type":"Point","properties":{"name":"San Salvador","adm0name":"El Salvador"},"coordinates":[2427,6165]},{"type":"Point","properties":{"name":"Kingston","adm0name":"Jamaica"},"coordinates":[2777,6418]},{"type":"Point","properties":{"name":"Cartagena","adm0name":"Colombia"},"coordinates":[2813,5968]},{"type":"Point","properties":{"name":"Mitu","adm0name":"Colombia"},"coordinates":[2963,5421]},{"type":"Point","properties":{"name":"Bumba","adm0name":"Congo (Kinshasa)"},"coordinates":[5577,5480]},{"type":"Point","properties":{"name":"Ndjamena","adm0name":"Chad"},"coordinates":[5368,6070]},{"type":"Point","properties":{"name":"Abeche","adm0name":"Chad"},"coordinates":[5531,6172]},{"type":"Point","properties":{"name":"Malabo","adm0name":"Equatorial Guinea"},"coordinates":[5191,5573]},{"type":"Point","properties":{"name":"Luxor","adm0name":"Egypt"},"coordinates":[5864,6877]},{"type":"Point","properties":{"name":"Asmara","adm0name":"Eritrea"},"coordinates":[6041,6261]},{"type":"Point","properties":{"name":"Zagreb","adm0name":"Croatia"},"coordinates":[5395,8072]},{"type":"Point","properties":{"name":"Tallinn","adm0name":"Estonia"},"coordinates":[5641,8883]},{"type":"Point","properties":{"name":"Lhasa","adm0name":"China"},"coordinates":[7513,7112]},{"type":"Point","properties":{"name":"Hami","adm0name":"China"},"coordinates":[7581,7895]},{"type":"Point","properties":{"name":"Hotan","adm0name":"China"},"coordinates":[7198,7555]},{"type":"Point","properties":{"name":"Kashgar","adm0name":"China"},"coordinates":[7086,7696]},{"type":"Point","properties":{"name":"Yinchuan","adm0name":"China"},"coordinates":[7941,7636]},{"type":"Point","properties":{"name":"Pingxiang","adm0name":"China"},"coordinates":[8155,6992]},{"type":"Point","properties":{"name":"Nagasaki","adm0name":"Japan"},"coordinates":[8607,7297]},{"type":"Point","properties":{"name":"Qiqihar","adm0name":"China"},"coordinates":[8441,8164]},{"type":"Point","properties":{"name":"Kikwit","adm0name":"Congo (Kinshasa)"},"coordinates":[5475,5051]},{"type":"Point","properties":{"name":"Matadi","adm0name":"Congo (Kinshasa)"},"coordinates":[5323,5004]},{"type":"Point","properties":{"name":"Kolwezi","adm0name":"Congo (Kinshasa)"},"coordinates":[5662,4713]},{"type":"Point","properties":{"name":"Lubumbashi","adm0name":"Congo (Kinshasa)"},"coordinates":[5718,4656]},{"type":"Point","properties":{"name":"Lilongwe","adm0name":"Malawi"},"coordinates":[5896,4519]},{"type":"Point","properties":{"name":"Guatemala","adm0name":"Guatemala"},"coordinates":[2389,6219]},{"type":"Point","properties":{"name":"Cayenne","adm0name":"France"},"coordinates":[3467,5643]},{"type":"Point","properties":{"name":"Libreville","adm0name":"Gabon"},"coordinates":[5210,5373]},{"type":"Point","properties":{"name":"Vishakhapatnam","adm0name":"India"},"coordinates":[7293,6404]},{"type":"Point","properties":{"name":"Suva","adm0name":"Fiji"},"coordinates":[9977,4272]},{"type":"Point","properties":{"name":"Port-Gentil","adm0name":"Gabon"},"coordinates":[5191,5307]},{"type":"Point","properties":{"name":"Timbuktu","adm0name":"Mali"},"coordinates":[4858,6346]},{"type":"Point","properties":{"name":"Punta Arenas","adm0name":"Chile"},"coordinates":[2942,2190]},{"type":"Point","properties":{"name":"Iquique","adm0name":"Chile"},"coordinates":[2965,4146]},{"type":"Point","properties":{"name":"Antofagasta","adm0name":"Chile"},"coordinates":[2957,3944]},{"type":"Point","properties":{"name":"Valparaiso","adm0name":"Chile"},"coordinates":[2923,3385]},{"type":"Point","properties":{"name":"Valdivia","adm0name":"Chile"},"coordinates":[2877,2984]},{"type":"Point","properties":{"name":"Concepcion","adm0name":"Chile"},"coordinates":[2882,3160]},{"type":"Point","properties":{"name":"Puerto Montt","adm0name":"Chile"},"coordinates":[2886,2885]},{"type":"Point","properties":{"name":"Nuuk","adm0name":"Greenland"},"coordinates":[3484,9166]},{"type":"Point","properties":{"name":"Nouakchott","adm0name":"Mauritania"},"coordinates":[4492,6425]},{"type":"Point","properties":{"name":"Bamako","adm0name":"Mali"},"coordinates":[4717,6102]},{"type":"Point","properties":{"name":"Atar","adm0name":"Mauritania"},"coordinates":[4575,6569]},{"type":"Point","properties":{"name":"Djenne","adm0name":"Mali"},"coordinates":[4815,6176]},{"type":"Point","properties":{"name":"Sabha","adm0name":"Libya"},"coordinates":[5350,6957]},{"type":"Point","properties":{"name":"Banghazi","adm0name":"Libya"},"coordinates":[5509,7259]},{"type":"Point","properties":{"name":"Thessaloniki","adm0name":"Greece"},"coordinates":[5589,7769]},{"type":"Point","properties":{"name":"Beirut","adm0name":"Lebanon"},"coordinates":[5945,7363]},{"type":"Point","properties":{"name":"Tbilisi","adm0name":"Georgia"},"coordinates":[6207,7830]},{"type":"Point","properties":{"name":"Gonder","adm0name":"Ethiopia"},"coordinates":[6000,6099]},{"type":"Point","properties":{"name":"Astana","adm0name":"Kazakhstan"},"coordinates":[6958,8392]},{"type":"Point","properties":{"name":"Qaraghandy","adm0name":"Kazakhstan"},"coordinates":[7006,8315]},{"type":"Point","properties":{"name":"Almaty","adm0name":"Kazakhstan"},"coordinates":[7113,7925]},{"type":"Point","properties":{"name":"Isfahan","adm0name":"Iran"},"coordinates":[6402,7294]},{"type":"Point","properties":{"name":"Shiraz","adm0name":"Iran"},"coordinates":[6426,7111]},{"type":"Point","properties":{"name":"Amritsar","adm0name":"India"},"coordinates":[7055,7231]},{"type":"Point","properties":{"name":"Varanasi","adm0name":"India"},"coordinates":[7285,6855]},{"type":"Point","properties":{"name":"Asansol","adm0name":"India"},"coordinates":[7397,6758]},{"type":"Point","properties":{"name":"Bhilai","adm0name":"India"},"coordinates":[7240,6611]},{"type":"Point","properties":{"name":"Bhopal","adm0name":"India"},"coordinates":[7127,6732]},{"type":"Point","properties":{"name":"Madurai","adm0name":"India"},"coordinates":[7147,5939]},{"type":"Point","properties":{"name":"Coimbatore","adm0name":"India"},"coordinates":[7114,6004]},{"type":"Point","properties":{"name":"Vientiane","adm0name":"Laos"},"coordinates":[7838,6418]},{"type":"Point","properties":{"name":"Brazzaville","adm0name":"Congo (Brazzaville)"},"coordinates":[5374,5097]},{"type":"Point","properties":{"name":"Conakry","adm0name":"Guinea"},"coordinates":[4557,5916]},{"type":"Point","properties":{"name":"Yamoussoukro","adm0name":"Ivory Coast"},"coordinates":[4794,5755]},{"type":"Point","properties":{"name":"Cruzeiro do Sul","adm0name":"Brazil"},"coordinates":[2893,4896]},{"type":"Point","properties":{"name":"Leticia","adm0name":"Colombia"},"coordinates":[2970,5100]},{"type":"Point","properties":{"name":"Manaus","adm0name":"Brazil"},"coordinates":[3250,5166]},{"type":"Point","properties":{"name":"Caxias","adm0name":"Brazil"},"coordinates":[3720,5062]},{"type":"Point","properties":{"name":"Santarem","adm0name":"Brazil"},"coordinates":[3400,5205]},{"type":"Point","properties":{"name":"Maraba","adm0name":"Brazil"},"coordinates":[3558,5032]},{"type":"Point","properties":{"name":"Vilhena","adm0name":"Brazil"},"coordinates":[3247,4594]},{"type":"Point","properties":{"name":"Ji-Parana","adm0name":"Brazil"},"coordinates":[3195,4706]},{"type":"Point","properties":{"name":"Campo Grande","adm0name":"Brazil"},"coordinates":[3402,4134]},{"type":"Point","properties":{"name":"Florianopolis","adm0name":"Brazil"},"coordinates":[3574,3710]},{"type":"Point","properties":{"name":"Feira de Santana","adm0name":"Brazil"},"coordinates":[3844,4622]},{"type":"Point","properties":{"name":"Winnipeg","adm0name":"Canada"},"coordinates":[2202,8315]},{"type":"Point","properties":{"name":"Churchill","adm0name":"Canada"},"coordinates":[2287,8843]},{"type":"Point","properties":{"name":"Regina","adm0name":"Canada"},"coordinates":[1992,8349]},{"type":"Point","properties":{"name":"Saskatoon","adm0name":"Canada"},"coordinates":[1934,8451]},{"type":"Point","properties":{"name":"Calgary","adm0name":"Canada"},"coordinates":[1725,8386]},{"type":"Point","properties":{"name":"Prince Rupert","adm0name":"Canada"},"coordinates":[1266,8578]},{"type":"Point","properties":{"name":"Victoria","adm0name":"Canada"},"coordinates":[1463,8229]},{"type":"Point","properties":{"name":"Arctic Bay","adm0name":"Canada"},"coordinates":[2541,9691]},{"type":"Point","properties":{"name":"Resolute","adm0name":"Canada"},"coordinates":[2266,9789]},{"type":"Point","properties":{"name":"Repulse Bay","adm0name":"Canada"},"coordinates":[2509,9304]},{"type":"Point","properties":{"name":"Yellowknife","adm0name":"Canada"},"coordinates":[1716,9061]},{"type":"Point","properties":{"name":"Fort Good Hope","adm0name":"Canada"},"coordinates":[1314,9289]},{"type":"Point","properties":{"name":"Whitehorse","adm0name":"Canada"},"coordinates":[1133,8959]},{"type":"Point","properties":{"name":"Boa Vista","adm0name":"Brazil"},"coordinates":[3232,5517]},{"type":"Point","properties":{"name":"Macapá","adm0name":"Brazil"},"coordinates":[3503,5352]},{"type":"Point","properties":{"name":"Ottawa","adm0name":"Canada"},"coordinates":[2808,8049]},{"type":"Point","properties":{"name":"Fort Severn","adm0name":"Canada"},"coordinates":[2470,8677]},{"type":"Point","properties":{"name":"Thunder Bay","adm0name":"Canada"},"coordinates":[2425,8229]},{"type":"Point","properties":{"name":"Québec","adm0name":"Canada"},"coordinates":[2933,8134]},{"type":"Point","properties":{"name":"Halifax","adm0name":"Canada"},"coordinates":[3149,8004]},{"type":"Point","properties":{"name":"St. John’s","adm0name":"Canada"},"coordinates":[3457,8178]},{"type":"Point","properties":{"name":"Nain","adm0name":"Canada"},"coordinates":[3203,8711]},{"type":"Point","properties":{"name":"Charlottetown","adm0name":"Canada"},"coordinates":[3162,8099]},{"type":"Point","properties":{"name":"Ndele","adm0name":"Central African Republic"},"coordinates":[5526,5850]},{"type":"Point","properties":{"name":"Belgrade","adm0name":"Serbia"},"coordinates":[5521,8014]},{"type":"Point","properties":{"name":"Obo","adm0name":"Central African Republic"},"coordinates":[5691,5671]},{"type":"Point","properties":{"name":"Bandar Seri Begawan","adm0name":"Brunei"},"coordinates":[8186,5640]},{"type":"Point","properties":{"name":"Puerto Deseado","adm0name":"Argentina"},"coordinates":[3084,2511]},{"type":"Point","properties":{"name":"Rio Gallegos","adm0name":"Argentina"},"coordinates":[2990,2281]},{"type":"Point","properties":{"name":"Comodoro Rivadavia","adm0name":"Argentina"},"coordinates":[3039,2623]},{"type":"Point","properties":{"name":"Mendoza","adm0name":"Argentina"},"coordinates":[3002,3395]},{"type":"Point","properties":{"name":"Sucre","adm0name":"Bolivia"},"coordinates":[3102,4218]},{"type":"Point","properties":{"name":"Riberalta","adm0name":"Bolivia"},"coordinates":[3078,4697]},{"type":"Point","properties":{"name":"Bahia Blanca","adm0name":"Argentina"},"coordinates":[3187,3047]},{"type":"Point","properties":{"name":"Mar del Plata","adm0name":"Argentina"},"coordinates":[3319,3091]},{"type":"Point","properties":{"name":"Córdoba","adm0name":"Argentina"},"coordinates":[3132,3483]},{"type":"Point","properties":{"name":"Posadas","adm0name":"Argentina"},"coordinates":[3367,3724]},{"type":"Point","properties":{"name":"Belmopan","adm0name":"Belize"},"coordinates":[2439,6375]},{"type":"Point","properties":{"name":"Bangui","adm0name":"Central African Republic"},"coordinates":[5467,5609]},{"type":"Point","properties":{"name":"Maroua","adm0name":"Cameroon"},"coordinates":[5347,5980]},{"type":"Point","properties":{"name":"Yaounde","adm0name":"Cameroon"},"coordinates":[5268,5580]},{"type":"Point","properties":{"name":"Tirana","adm0name":"Albania"},"coordinates":[5502,7806]},{"type":"Point","properties":{"name":"Yerevan","adm0name":"Armenia"},"coordinates":[6199,7738]},{"type":"Point","properties":{"name":"Baku","adm0name":"Azerbaijan"},"coordinates":[6350,7751]},{"type":"Point","properties":{"name":"Kandahar","adm0name":"Afghanistan"},"coordinates":[6796,7229]},{"type":"Point","properties":{"name":"Phnom Penh","adm0name":"Cambodia"},"coordinates":[7903,6036]},{"type":"Point","properties":{"name":"Menongue","adm0name":"Angola"},"coordinates":[5442,4478]},{"type":"Point","properties":{"name":"Huambo","adm0name":"Angola"},"coordinates":[5388,4592]},{"type":"Point","properties":{"name":"La Paz","adm0name":"Bolivia"},"coordinates":[3021,4369]},{"type":"Point","properties":{"name":"Santa Cruz","adm0name":"Bolivia"},"coordinates":[3159,4295]},{"type":"Point","properties":{"name":"Oran","adm0name":"Algeria"},"coordinates":[4926,7472]},{"type":"Point","properties":{"name":"Cotonou","adm0name":"Benin"},"coordinates":[5014,5730]},{"type":"Point","properties":{"name":"Tamanrasset","adm0name":"Algeria"},"coordinates":[5099,6704]},{"type":"Point","properties":{"name":"Ghardaia","adm0name":"Algeria"},"coordinates":[5047,7281]},{"type":"Point","properties":{"name":"Sofia","adm0name":"Bulgaria"},"coordinates":[5601,7887]},{"type":"Point","properties":{"name":"Minsk","adm0name":"Belarus"},"coordinates":[5721,8554]},{"type":"Point","properties":{"name":"Thimphu","adm0name":"Bhutan"},"coordinates":[7472,6983]},{"type":"Point","properties":{"name":"Gaborone","adm0name":"Botswana"},"coordinates":[5674,3885]},{"type":"Point","properties":{"name":"Darwin","adm0name":"Australia"},"coordinates":[8635,4611]},{"type":"Point","properties":{"name":"Alice Springs","adm0name":"Australia"},"coordinates":[8720,3941]},{"type":"Point","properties":{"name":"Canberra","adm0name":"Australia"},"coordinates":[9150,3252]},{"type":"Point","properties":{"name":"Newcastle","adm0name":"Australia"},"coordinates":[9226,3397]},{"type":"Point","properties":{"name":"Adelaide","adm0name":"Australia"},"coordinates":[8853,3273]},{"type":"Point","properties":{"name":"Townsville","adm0name":"Australia"},"coordinates":[9084,4205]},{"type":"Point","properties":{"name":"Brisbane","adm0name":"Australia"},"coordinates":[9260,3718]},{"type":"Point","properties":{"name":"Hobart","adm0name":"Australia"},"coordinates":[9098,2803]},{"type":"Point","properties":{"name":"Ouagadougou","adm0name":"Burkina Faso"},"coordinates":[4900,6085]},{"type":"Point","properties":{"name":"Sarajevo","adm0name":"Bosnia and Herzegovina"},"coordinates":[5462,7956]},{"type":"Point","properties":{"name":"Naypyidaw","adm0name":"Myanmar"},"coordinates":[7655,6525]},{"type":"Point","properties":{"name":"San Juan","adm0name":"Puerto Rico"},"coordinates":[3078,6446]},{"type":"Point","properties":{"name":"Stanley","adm0name":"Falkland Islands"},"coordinates":[3311,2277]},{"type":"Point","properties":{"name":"Hamilton","adm0name":"Bermuda"},"coordinates":[3116,7269]},{"type":"Point","properties":{"name":"Nukualofa","adm0name":"Tonga"},"coordinates":[0,4093]},{"type":"Point","properties":{"name":"Hargeysa","adm0name":"Somaliland"},"coordinates":[6186,5918]},{"type":"Point","properties":{"name":"Victoria","adm0name":"Seychelles"},"coordinates":[6507,5075]},{"type":"Point","properties":{"name":"Sao Tome","adm0name":"Sao Tome and Principe"},"coordinates":[5133,5370]},{"type":"Point","properties":{"name":"Apia","adm0name":"Samoa"},"coordinates":[98,4527]},{"type":"Point","properties":{"name":"Valletta","adm0name":"Malta"},"coordinates":[5353,7484]},{"type":"Point","properties":{"name":"Male","adm0name":"Maldives"},"coordinates":[7017,5597]},{"type":"Point","properties":{"name":"Jerusalem","adm0name":"Israel"},"coordinates":[5936,7239]},{"type":"Point","properties":{"name":"Praia","adm0name":"Cape Verde"},"coordinates":[4280,6236]},{"type":"Point","properties":{"name":"Nassau","adm0name":"The Bahamas"},"coordinates":[2761,6841]},{"type":"Point","properties":{"name":"Nicosia","adm0name":"Cyprus"},"coordinates":[5884,7440]},{"type":"Point","properties":{"name":"Kaohsiung","adm0name":"Taiwan"},"coordinates":[8336,6695]},{"type":"Point","properties":{"name":"Shenzhen","adm0name":"China"},"coordinates":[8163,6690]},{"type":"Point","properties":{"name":"Zibo","adm0name":"China"},"coordinates":[8273,7537]},{"type":"Point","properties":{"name":"Minneapolis","adm0name":"United States of America"},"coordinates":[2312,8023]},{"type":"Point","properties":{"name":"Honolulu","adm0name":"United States of America"},"coordinates":[490,6616]},{"type":"Point","properties":{"name":"Seattle","adm0name":"United States of America"},"coordinates":[1492,8177]},{"type":"Point","properties":{"name":"Phoenix","adm0name":"United States of America"},"coordinates":[1781,7343]},{"type":"Point","properties":{"name":"San Diego","adm0name":"United States of America"},"coordinates":[1637,7301]},{"type":"Point","properties":{"name":"St. Louis","adm0name":"United States of America"},"coordinates":[2397,7646]},{"type":"Point","properties":{"name":"New Orleans","adm0name":"United States of America"},"coordinates":[2403,7133]},{"type":"Point","properties":{"name":"Dallas","adm0name":"United States of America"},"coordinates":[2211,7301]},{"type":"Point","properties":{"name":"Maracaibo","adm0name":"Venezuela"},"coordinates":[2921,5988]},{"type":"Point","properties":{"name":"Boston","adm0name":"United States of America"},"coordinates":[2938,7866]},{"type":"Point","properties":{"name":"Tampa","adm0name":"United States of America"},"coordinates":[2617,7011]},{"type":"Point","properties":{"name":"Philadelphia","adm0name":"United States of America"},"coordinates":[2822,7727]},{"type":"Point","properties":{"name":"Detroit","adm0name":"United States of America"},"coordinates":[2599,7866]},{"type":"Point","properties":{"name":"Anchorage","adm0name":"United States of America"},"coordinates":[714,8989]},{"type":"Point","properties":{"name":"Hanoi","adm0name":"Vietnam"},"coordinates":[7929,6600]},{"type":"Point","properties":{"name":"Ho Chi Minh City","adm0name":"Vietnam"},"coordinates":[7953,5991]},{"type":"Point","properties":{"name":"Ankara","adm0name":"Turkey"},"coordinates":[5870,7723]},{"type":"Point","properties":{"name":"Budapest","adm0name":"Hungary"},"coordinates":[5481,8173]},{"type":"Point","properties":{"name":"Sanaa","adm0name":"Yemen"},"coordinates":[6190,6263]},{"type":"Point","properties":{"name":"Barcelona","adm0name":"Spain"},"coordinates":[5005,7810]},{"type":"Point","properties":{"name":"Bucharest","adm0name":"Romania"},"coordinates":[5679,7991]},{"type":"Point","properties":{"name":"Aleppo","adm0name":"Syria"},"coordinates":[5992,7503]},{"type":"Point","properties":{"name":"Damascus","adm0name":"Syria"},"coordinates":[5967,7341]},{"type":"Point","properties":{"name":"Zürich","adm0name":"Switzerland"},"coordinates":[5184,8166]},{"type":"Point","properties":{"name":"Lisbon","adm0name":"Portugal"},"coordinates":[4685,7652]},{"type":"Point","properties":{"name":"Khartoum","adm0name":"Sudan"},"coordinates":[5861,6276]},{"type":"Point","properties":{"name":"Jeddah","adm0name":"Saudi Arabia"},"coordinates":[6049,6629]},{"type":"Point","properties":{"name":"Makkah","adm0name":"Saudi Arabia"},"coordinates":[6066,6624]},{"type":"Point","properties":{"name":"Oslo","adm0name":"Norway"},"coordinates":[5246,8911]},{"type":"Point","properties":{"name":"Lahore","adm0name":"Pakistan"},"coordinates":[7041,7226]},{"type":"Point","properties":{"name":"Karachi","adm0name":"Pakistan"},"coordinates":[6833,6828]},{"type":"Point","properties":{"name":"Durban","adm0name":"South Africa"},"coordinates":[5817,3575]},{"type":"Point","properties":{"name":"St. Petersburg","adm0name":"Russia"},"coordinates":[5798,8913]},{"type":"Point","properties":{"name":"Guadalajara","adm0name":"Mexico"},"coordinates":[2028,6578]},{"type":"Point","properties":{"name":"Puebla","adm0name":"Mexico"},"coordinates":[2173,6482]},{"type":"Point","properties":{"name":"Kano","adm0name":"Nigeria"},"coordinates":[5183,6063]},{"type":"Point","properties":{"name":"Warsaw","adm0name":"Poland"},"coordinates":[5536,8456]},{"type":"Point","properties":{"name":"Pyongyang","adm0name":"North Korea"},"coordinates":[8491,7669]},{"type":"Point","properties":{"name":"Dar es Salaam","adm0name":"Tanzania"},"coordinates":[6051,4946]},{"type":"Point","properties":{"name":"Medan","adm0name":"Indonesia"},"coordinates":[7726,5563]},{"type":"Point","properties":{"name":"Dublin","adm0name":"Ireland"},"coordinates":[4767,8520]},{"type":"Point","properties":{"name":"Monrovia","adm0name":"Liberia"},"coordinates":[4638,5725]},{"type":"Point","properties":{"name":"Naples","adm0name":"Italy"},"coordinates":[5345,7777]},{"type":"Point","properties":{"name":"Milan","adm0name":"Italy"},"coordinates":[5203,8053]},{"type":"Point","properties":{"name":"Kuala Lumpur","adm0name":"Malaysia"},"coordinates":[7812,5538]},{"type":"Point","properties":{"name":"Lanzhou","adm0name":"China"},"coordinates":[7871,7493]},{"type":"Point","properties":{"name":"Nanning","adm0name":"China"},"coordinates":[7999,6706]},{"type":"Point","properties":{"name":"Guiyang","adm0name":"China"},"coordinates":[7954,6930]},{"type":"Point","properties":{"name":"Chongqing","adm0name":"China"},"coordinates":[7950,7107]},{"type":"Point","properties":{"name":"Fuzhou","adm0name":"China"},"coordinates":[8309,6900]},{"type":"Point","properties":{"name":"Guangzhou","adm0name":"China"},"coordinates":[8140,6726]},{"type":"Point","properties":{"name":"Dongguan","adm0name":"China"},"coordinates":[8152,6720]},{"type":"Point","properties":{"name":"Bandung","adm0name":"Indonesia"},"coordinates":[7978,4937]},{"type":"Point","properties":{"name":"Surabaya","adm0name":"Indonesia"},"coordinates":[8124,4919]},{"type":"Point","properties":{"name":"Guayaquil","adm0name":"Ecuador"},"coordinates":[2688,5218]},{"type":"Point","properties":{"name":"Medellin","adm0name":"Colombia"},"coordinates":[2811,5723]},{"type":"Point","properties":{"name":"Cali","adm0name":"Colombia"},"coordinates":[2785,5552]},{"type":"Point","properties":{"name":"Havana","adm0name":"Cuba"},"coordinates":[2620,6725]},{"type":"Point","properties":{"name":"Alexandria","adm0name":"Egypt"},"coordinates":[5788,7204]},{"type":"Point","properties":{"name":"Frankfurt","adm0name":"Germany"},"coordinates":[5188,8328]},{"type":"Point","properties":{"name":"Hamburg","adm0name":"Germany"},"coordinates":[5225,8533]},{"type":"Point","properties":{"name":"Munich","adm0name":"Germany"},"coordinates":[5270,8211]},{"type":"Point","properties":{"name":"Prague","adm0name":"Czech Republic"},"coordinates":[5351,8327]},{"type":"Point","properties":{"name":"Kuwait","adm0name":"Kuwait"},"coordinates":[6297,7096]},{"type":"Point","properties":{"name":"Xian","adm0name":"China"},"coordinates":[8015,7387]},{"type":"Point","properties":{"name":"Taiyuan","adm0name":"China"},"coordinates":[8118,7601]},{"type":"Point","properties":{"name":"Wuhan","adm0name":"China"},"coordinates":[8167,7168]},{"type":"Point","properties":{"name":"Changsha","adm0name":"China"},"coordinates":[8130,7026]},{"type":"Point","properties":{"name":"Kunming","adm0name":"China"},"coordinates":[7840,6840]},{"type":"Point","properties":{"name":"Zhengzhou","adm0name":"China"},"coordinates":[8150,7416]},{"type":"Point","properties":{"name":"Shenyeng","adm0name":"China"},"coordinates":[8426,7835]},{"type":"Point","properties":{"name":"Jinan","adm0name":"China"},"coordinates":[8244,7530]},{"type":"Point","properties":{"name":"Tianjin","adm0name":"China"},"coordinates":[8249,7676]},{"type":"Point","properties":{"name":"Nanchang","adm0name":"China"},"coordinates":[8212,7055]},{"type":"Point","properties":{"name":"Nanjing","adm0name":"China"},"coordinates":[8294,7255]},{"type":"Point","properties":{"name":"Hangzhou","adm0name":"China"},"coordinates":[8333,7148]},{"type":"Point","properties":{"name":"Hiroshima","adm0name":"Japan"},"coordinates":[8679,7394]},{"type":"Point","properties":{"name":"Changchun","adm0name":"China"},"coordinates":[8479,7957]},{"type":"Point","properties":{"name":"Baotou","adm0name":"China"},"coordinates":[8041,7766]},{"type":"Point","properties":{"name":"Harbin","adm0name":"China"},"coordinates":[8516,8069]},{"type":"Point","properties":{"name":"Sapporo","adm0name":"Japan"},"coordinates":[8930,7910]},{"type":"Point","properties":{"name":"Santo Domingo","adm0name":"Dominican Republic"},"coordinates":[2971,6448]},{"type":"Point","properties":{"name":"Accra","adm0name":"Ghana"},"coordinates":[4937,5680]},{"type":"Point","properties":{"name":"Delhi","adm0name":"India"},"coordinates":[7122,7054]},{"type":"Point","properties":{"name":"Hyderabad","adm0name":"India"},"coordinates":[7157,6384]},{"type":"Point","properties":{"name":"Pune","adm0name":"India"},"coordinates":[7026,6451]},{"type":"Point","properties":{"name":"Nagpur","adm0name":"India"},"coordinates":[7174,6608]},{"type":"Point","properties":{"name":"Tripoli","adm0name":"Libya"},"coordinates":[5315,7305]},{"type":"Point","properties":{"name":"Tel Aviv-Yafo","adm0name":"Israel"},"coordinates":[5924,7257]},{"type":"Point","properties":{"name":"Helsinki","adm0name":"Finland"},"coordinates":[5646,8927]},{"type":"Point","properties":{"name":"Mashhad","adm0name":"Iran"},"coordinates":[6624,7506]},{"type":"Point","properties":{"name":"Jaipur","adm0name":"India"},"coordinates":[7082,6950]},{"type":"Point","properties":{"name":"Kanpur","adm0name":"India"},"coordinates":[7209,6923]},{"type":"Point","properties":{"name":"Patna","adm0name":"India"},"coordinates":[7345,6873]},{"type":"Point","properties":{"name":"Chennai","adm0name":"India"},"coordinates":[7208,6128]},{"type":"Point","properties":{"name":"Ahmedabad","adm0name":"India"},"coordinates":[6991,6719]},{"type":"Point","properties":{"name":"Surat","adm0name":"India"},"coordinates":[6998,6610]},{"type":"Point","properties":{"name":"København","adm0name":"Denmark"},"coordinates":[5298,8659]},{"type":"Point","properties":{"name":"Abidjan","adm0name":"Ivory Coast"},"coordinates":[4829,5666]},{"type":"Point","properties":{"name":"Belem","adm0name":"Brazil"},"coordinates":[3575,5264]},{"type":"Point","properties":{"name":"Brasilia","adm0name":"Brazil"},"coordinates":[3591,4412]},{"type":"Point","properties":{"name":"Porto Alegre","adm0name":"Brazil"},"coordinates":[3499,3564]},{"type":"Point","properties":{"name":"Curitiba","adm0name":"Brazil"},"coordinates":[3552,3839]},{"type":"Point","properties":{"name":"Fortaleza","adm0name":"Brazil"},"coordinates":[3855,5127]},{"type":"Point","properties":{"name":"Salvador","adm0name":"Brazil"},"coordinates":[3858,4579]},{"type":"Point","properties":{"name":"Edmonton","adm0name":"Canada"},"coordinates":[1741,8533]},{"type":"Point","properties":{"name":"Montréal","adm0name":"Canada"},"coordinates":[2867,8054]},{"type":"Point","properties":{"name":"Goiania","adm0name":"Brazil"},"coordinates":[3552,4356]},{"type":"Point","properties":{"name":"Recife","adm0name":"Brazil"},"coordinates":[3958,4870]},{"type":"Point","properties":{"name":"Brussels","adm0name":"Belgium"},"coordinates":[5065,8371]},{"type":"Point","properties":{"name":"Dhaka","adm0name":"Bangladesh"},"coordinates":[7494,6760]},{"type":"Point","properties":{"name":"Luanda","adm0name":"Angola"},"coordinates":[5316,4824]},{"type":"Point","properties":{"name":"Algiers","adm0name":"Algeria"},"coordinates":[5029,7535]},{"type":"Point","properties":{"name":"Chittagong","adm0name":"Bangladesh"},"coordinates":[7533,6677]},{"type":"Point","properties":{"name":"Perth","adm0name":"Australia"},"coordinates":[8211,3450]},{"type":"Point","properties":{"name":"Rangoon","adm0name":"Myanmar"},"coordinates":[7656,6347]},{"type":"Point","properties":{"name":"San Francisco","adm0name":"United States of America"},"coordinates":[1490,7595]},{"type":"Point","properties":{"name":"Denver","adm0name":"United States of America"},"coordinates":[1981,7712]},{"type":"Point","properties":{"name":"Houston","adm0name":"United States of America"},"coordinates":[2253,7122]},{"type":"Point","properties":{"name":"Miami","adm0name":"United States of America"},"coordinates":[2680,6883]},{"type":"Point","properties":{"name":"Atlanta","adm0name":"United States of America"},"coordinates":[2562,7361]},{"type":"Point","properties":{"name":"Chicago","adm0name":"United States of America"},"coordinates":[2468,7836]},{"type":"Point","properties":{"name":"Caracas","adm0name":"Venezuela"},"coordinates":[3055,5974]},{"type":"Point","properties":{"name":"Kiev","adm0name":"Ukraine"},"coordinates":[5804,8348]},{"type":"Point","properties":{"name":"Dubai","adm0name":"United Arab Emirates"},"coordinates":[6503,6850]},{"type":"Point","properties":{"name":"Tashkent","adm0name":"Uzbekistan"},"coordinates":[6898,7805]},{"type":"Point","properties":{"name":"Madrid","adm0name":"Spain"},"coordinates":[4839,7751]},{"type":"Point","properties":{"name":"Geneva","adm0name":"Switzerland"},"coordinates":[5116,8096]},{"type":"Point","properties":{"name":"Stockholm","adm0name":"Sweden"},"coordinates":[5454,8878]},{"type":"Point","properties":{"name":"Bangkok","adm0name":"Thailand"},"coordinates":[7779,6167]},{"type":"Point","properties":{"name":"Lima","adm0name":"Peru"},"coordinates":[2769,4634]},{"type":"Point","properties":{"name":"Dakar","adm0name":"Senegal"},"coordinates":[4450,6225]},{"type":"Point","properties":{"name":"Johannesburg","adm0name":"South Africa"},"coordinates":[5734,3794]},{"type":"Point","properties":{"name":"Amsterdam","adm0name":"Netherlands"},"coordinates":[5082,8462]},{"type":"Point","properties":{"name":"Casablanca","adm0name":"Morocco"},"coordinates":[4728,7347]},{"type":"Point","properties":{"name":"Seoul","adm0name":"South Korea"},"coordinates":[8526,7583]},{"type":"Point","properties":{"name":"Manila","adm0name":"Philippines"},"coordinates":[8356,6218]},{"type":"Point","properties":{"name":"Monterrey","adm0name":"Mexico"},"coordinates":[2113,6876]},{"type":"Point","properties":{"name":"Auckland","adm0name":"New Zealand"},"coordinates":[9873,3159]},{"type":"Point","properties":{"name":"Berlin","adm0name":"Germany"},"coordinates":[5321,8472]},{"type":"Point","properties":{"name":"Urumqi","adm0name":"China"},"coordinates":[7414,7954]},{"type":"Point","properties":{"name":"Chengdu","adm0name":"China"},"coordinates":[7879,7173]},{"type":"Point","properties":{"name":"Osaka","adm0name":"Japan"},"coordinates":[8765,7415]},{"type":"Point","properties":{"name":"Kinshasa","adm0name":"Congo (Kinshasa)"},"coordinates":[5375,5092]},{"type":"Point","properties":{"name":"New Delhi","adm0name":"India"},"coordinates":[7121,7050]},{"type":"Point","properties":{"name":"Bangalore","adm0name":"India"},"coordinates":[7131,6121]},{"type":"Point","properties":{"name":"Athens","adm0name":"Greece"},"coordinates":[5613,7608]},{"type":"Point","properties":{"name":"Baghdad","adm0name":"Iraq"},"coordinates":[6195,7332]},{"type":"Point","properties":{"name":"Addis Ababa","adm0name":"Ethiopia"},"coordinates":[6035,5887]},{"type":"Point","properties":{"name":"Tehran","adm0name":"Iran"},"coordinates":[6394,7470]},{"type":"Point","properties":{"name":"Vancouver","adm0name":"Canada"},"coordinates":[1470,8279]},{"type":"Point","properties":{"name":"Toronto","adm0name":"Canada"},"coordinates":[2703,7947]},{"type":"Point","properties":{"name":"Buenos Aires","adm0name":"Argentina"},"coordinates":[3296,3293]},{"type":"Point","properties":{"name":"Kabul","adm0name":"Afghanistan"},"coordinates":[6895,7402]},{"type":"Point","properties":{"name":"Vienna","adm0name":"Austria"},"coordinates":[5405,8215]},{"type":"Point","properties":{"name":"Melbourne","adm0name":"Australia"},"coordinates":[9033,3102]},{"type":"Point","properties":{"name":"Taipei","adm0name":"Taiwan"},"coordinates":[8373,6838]},{"type":"Point","properties":{"name":"Los Angeles","adm0name":"United States of America"},"coordinates":[1609,7370]},{"type":"Point","properties":{"name":"Washington, D.C.","adm0name":"United States of America"},"coordinates":[2771,7662]},{"type":"Point","properties":{"name":"New York","adm0name":"United States of America"},"coordinates":[2856,7772]},{"type":"Point","properties":{"name":"London","adm0name":"United Kingdom"},"coordinates":[4940,8411]},{"type":"Point","properties":{"name":"Istanbul","adm0name":"Turkey"},"coordinates":[5761,7793]},{"type":"Point","properties":{"name":"Riyadh","adm0name":"Saudi Arabia"},"coordinates":[6263,6815]},{"type":"Point","properties":{"name":"Cape Town","adm0name":"South Africa"},"coordinates":[5463,3334]},{"type":"Point","properties":{"name":"Moscow","adm0name":"Russia"},"coordinates":[6004,8664]},{"type":"Point","properties":{"name":"Mexico City","adm0name":"Mexico"},"coordinates":[2147,6506]},{"type":"Point","properties":{"name":"Lagos","adm0name":"Nigeria"},"coordinates":[5039,5733]},{"type":"Point","properties":{"name":"Rome","adm0name":"Italy"},"coordinates":[5295,7840]},{"type":"Point","properties":{"name":"Beijing","adm0name":"China"},"coordinates":[8227,7723]},{"type":"Point","properties":{"name":"Nairobi","adm0name":"Kenya"},"coordinates":[5982,5274]},{"type":"Point","properties":{"name":"Jakarta","adm0name":"Indonesia"},"coordinates":[7957,4983]},{"type":"Point","properties":{"name":"Bogota","adm0name":"Colombia"},"coordinates":[2853,5623]},{"type":"Point","properties":{"name":"Cairo","adm0name":"Egypt"},"coordinates":[5825,7136]},{"type":"Point","properties":{"name":"Shanghai","adm0name":"China"},"coordinates":[8369,7205]},{"type":"Point","properties":{"name":"Tokyo","adm0name":"Japan"},"coordinates":[8886,7471]},{"type":"Point","properties":{"name":"Mumbai","adm0name":"India"},"coordinates":[6998,6480]},{"type":"Point","properties":{"name":"Paris","adm0name":"France"},"coordinates":[5009,8255]},{"type":"Point","properties":{"name":"Santiago","adm0name":"Chile"},"coordinates":[2950,3362]},{"type":"Point","properties":{"name":"Kolkata","adm0name":"India"},"coordinates":[7435,6687]},{"type":"Point","properties":{"name":"Rio de Janeiro","adm0name":"Brazil"},"coordinates":[3724,3987]},{"type":"Point","properties":{"name":"Sao Paulo","adm0name":"Brazil"},"coordinates":[3628,3949]},{"type":"Point","properties":{"name":"Sydney","adm0name":"Australia"},"coordinates":[9208,3334]},{"type":"Point","properties":{"name":"Singapore","adm0name":"Singapore"},"coordinates":[7873,5427]},{"type":"Point","properties":{"name":"Hong Kong","adm0name":"Hong Kong S.A.R."},"coordinates":[8164,6676]}]}},"arcs":[],"transform":{"scale":[0.03544726588375292,0.01682335077371707],"translate":[-175.22056447761656,-90]}} -------------------------------------------------------------------------------- /img/example01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example01.png -------------------------------------------------------------------------------- /img/example02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example02.png -------------------------------------------------------------------------------- /img/example03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example03.png -------------------------------------------------------------------------------- /img/example04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example04.png -------------------------------------------------------------------------------- /img/example05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example05.png -------------------------------------------------------------------------------- /img/example06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example06.png -------------------------------------------------------------------------------- /img/example07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example07.png -------------------------------------------------------------------------------- /img/example08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example08.png -------------------------------------------------------------------------------- /img/example09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example09.png -------------------------------------------------------------------------------- /img/example10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example10.png -------------------------------------------------------------------------------- /img/example11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example11.png -------------------------------------------------------------------------------- /img/example12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example12.png -------------------------------------------------------------------------------- /img/example13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example13.png -------------------------------------------------------------------------------- /img/example14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example14.png -------------------------------------------------------------------------------- /img/example15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example15.png -------------------------------------------------------------------------------- /img/example16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example16.png -------------------------------------------------------------------------------- /img/example17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example17.png -------------------------------------------------------------------------------- /img/example18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example18.png -------------------------------------------------------------------------------- /img/example19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example19.png -------------------------------------------------------------------------------- /img/example20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example20.png -------------------------------------------------------------------------------- /img/example21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example21.png -------------------------------------------------------------------------------- /img/example22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example22.png -------------------------------------------------------------------------------- /img/example23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/example23.png -------------------------------------------------------------------------------- /img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enjalot/wwsd/8dd28b57ce2b74703575a368b454d9b3e94f29f9/img/header.png --------------------------------------------------------------------------------