Does anyone how to import a geonames.org data into my database? The one i'm trying to import is http://download.geonames.org/export/dump/DO.zip, and my DB its a MySQL db.

link|improve this question

78% accept rate
are you try to import zip ? if not what is file structure ? – bensiu Mar 13 '11 at 2:10
feedback

1 Answer

up vote 3 down vote accepted

I found the following by looking in the readme file included in the zip file you linked to in the section called "The main 'geoname' table has the following fields :"

First create the database and table on your MySQL instance. The type of fields are given in each row of the section I just quoted the title of above.

CREATE DATABSE DO_test;
CREATE TABLE `DO_test`.`DO_table` (
  `geonameid` INT,
  `name` varchar(200),
  `asciiname` varchar(200),
  `alternatenames` varchar(5000),
  `latitude` DECIMAL(10,7),
  `longitude` DECIMAL(10,7),
  `feature class` char(1),
  `feature code` varchar(10),
  `country code` char(2),
  `cc2` char(60),
  `admin1 code` varchar(20),
  `admin2 code` varchar(80),
  `admin3 code` varchar(20),
  `admin4 code` varchar(20),
  `population` bigint,
  `elevation` INT,
  `gtopo30` INT,
  `timezone` varchar(100),
  `modification date` date
)
CHARACTER SET utf8;

After the table is created you can import the data from the file. The fields are delimited by tabs, rows as newlines.

LOAD DATA INFILE '/path/to/your/file/DO.txt' INTO TABLE `DO_test`.`DO_table`;
link|improve this answer
Oops, you're gonna need to do something different with latitude & longitude. I'm working on fixing that. I think they should be "POINT" instead of DECIMAL. – wilbbe01 Mar 13 '11 at 2:58
For some reason I'm getting: Error Code: 29 File '/home/blueprint/DO.txt' not found (Errcode: 13) I'm pretty sure the file is there. – Luis D Urraca Mar 13 '11 at 2:59
@LuisDUrraca: Are you on a mac? Errorcode 13 means that MySQL is not able to see the file. I have a mac and I put my DO.txt file in the Mac's mysql directory. Easier than figuring out why MySQL couldn't see a file that was full read for everyone. On my machine this is in /usr/local/mysql. – wilbbe01 Mar 13 '11 at 3:10
I'm on Linux Ubuntu 10.10. my MySQL dir is var/lib/mysql but cannot access that either. Let me keep trying. – Luis D Urraca Mar 13 '11 at 3:16
1  
@LuisDUrraca: Did you try putting it in /tmp and loading it from there? – wilbbe01 Mar 13 '11 at 3:36
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.