world cities database

Discussion in 'Databases' started by siraxi, Jun 20, 2006.

  1. #1
    Hi

    I need a world cities database, with longitude/latitude and timezones. Does anyone have one and would share it or does anyone know where to find one?
    I would very much appreciate any suggestions.

    Thanks!
     
    siraxi, Jun 20, 2006 IP
  2. pelican

    pelican Well-Known Member

    Messages:
    444
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    125
    #2
    pelican, Jun 20, 2006 IP
  3. sam.pl

    sam.pl Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    even try this http://worldcitiesdatabase.com/world-city-latitude-longitude.aspx for latitude and longitude for smallest of small cities
     
    sam.pl, Feb 6, 2010 IP
  4. vntutor

    vntutor Peon

    Messages:
    1,721
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You can take it for free at my site
     
    vntutor, Feb 8, 2010 IP
  5. templeofgroove

    templeofgroove Peon

    Messages:
    23
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
  6. elenana

    elenana Guest

    Messages:
    34
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    elenana, Mar 8, 2010 IP
  7. Josh Fowler

    Josh Fowler Peon

    Messages:
    31
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    I used the one at citydatabase.us

    It has just about everything you need. It even have zip codes and such. Plus it's only $10, cheaper then anyone else
     
    Josh Fowler, Oct 19, 2010 IP
  8. worldcitiesdata

    worldcitiesdata Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    We have Database for sale of all the Countries, broken up to States/Regions, Counties and all the Cities with their Suburbs/Neighbourhoods (in Excel and SQL format).

    Example: United Kingdom has over 44,000 Cities with Suburbs or Neighbourhoods

    United Kingdom > England > Yorkshire & Humberside > West Yorkshire > Leeds > Beeston

    We charge £49 per Country. For extra information please contact us by worldcitiesdata@gmail.com
     
    worldcitiesdata, Feb 7, 2012 IP
  9. Rober

    Rober Well-Known Member

    Messages:
    1,676
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    128
    #9
    Hi..i tried to order on the site..but google says it not handle payment for the site anymore.. Can i order with paypal from you?


     
    Rober, Apr 30, 2012 IP
  10. jyapayne

    jyapayne Peon

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    I found a cities database that is very good, is orderable through paypal and is pretty cheap ($5 - $15 depending on which version you choose). The website is at www.world-database.com
     
    jyapayne, Dec 27, 2012 IP
  11. ChromeTraffic

    ChromeTraffic Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    3
    #11
    You can use fresh 2013 year world cities MSSQL/MySQL Database with PHP script from here -

    http://myip.ms/info/cities_sql_database/World_Cities_SQL_Mysql_Database.html

    SQL script -
    1. /***************************************/;
    2. /* CITIES MySQL Table ~106,000 records */;
    3. /***************************************/;
    4. CREATE TABLE `cities` (
    5. `cityID` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
    6. `cityName` varchar(50) NOT NULL,
    7. `stateID` smallint(5) unsigned NOT NULL DEFAULT '0',
    8. `countryID` varchar(3) NOT NULL DEFAULT '',
    9. `latitude` double NOT NULL DEFAULT '0',
    10. `longitude` double NOT NULL DEFAULT '0',
    11. PRIMARY KEY (`cityID`),
    12. UNIQUE KEY `unq` (`countryID`,`stateID`,`cityID`),
    13. KEY `cityName` (`cityName`),
    14. KEY `stateID` (`stateID`),
    15. KEY `countryID` (`countryID`),
    16. KEY `latitude` (`latitude`),
    17. KEY `longitude` (`longitude`)
    18. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    19. /***************************************/;
     
    ChromeTraffic, Jul 18, 2013 IP
  12. vidisha

    vidisha Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #12
    http://dev.maxmind.com/geoip/legacy/geolite/
     
    Last edited by a moderator: Jul 22, 2013
    vidisha, Jul 22, 2013 IP