Skip to content

Geographical location (latitude, longitude, altitude) of all main cities of the world

Notifications You must be signed in to change notification settings

0HugoHu/WorldCityLocations

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

World City Locations Database

Geographical location (latitude, longitude, altitude) of all main cities of the world. The data has been scrapped from [Aneki World Cities site] (http://www.aneki.com/cities.html)

The repository contains the location database in below formats:

  • SQL
  • CSV
  • CSV for MS EXCEL, MS EXCEL 2000

All of them are exported from MySQL using phpMyAdmin.

The table has in 10,567 rows (means 10,567 unique cities, their locations and 170 countries).

Structure

The table has 5 fields, id, country, city, latitude, longitude, altitude. From their name, I hope you can understand their significance.

Usage

The sql file contains the schema to reproduce the location table in your designated database (assuming you are using mysql database engine. If you aren’t, you can easily convert the sql schema

Getting all countries of the world (170 countries)

SELECT DISTINCT(country) FROM location

Getting all cities of a country

SELECT city FROM location WHERE country = 'YOUR_COUNTRY_NAME_HERE'

Getting the location of a specific city of a specific country

SELECT latitude,longitude,altitude FROM location WHERE country='COUNTRY_NAME' AND city = 'CITY_NAME'

About

Geographical location (latitude, longitude, altitude) of all main cities of the world

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published