cities1000
Version:
lat/lon, names of cities with over 1000 people
38 lines (24 loc) • 737 B
Markdown
This is a dataset with the latitude and longitude of all cities on planet earth
with greater than 1000 people.
You can find the original on
[](http://download.geonames.org/export/dump/).
```
var fs = require('fs');
var cities = require('cities1000');
var lines = fs.readFileSync(cities.file, 'utf8').split('\n');
// ...
```
``` js
var cities = require('cities1000')
```
Open the `cities.file` for reading as a tab-separated text file.
This is the array of fields in the `cities.file` text file.
copyright [geonames.org](http://www.geonames.org/)
creative commons attribution 3.0
([CC-BY](http://creativecommons.org/licenses/by/3.0/))