forked from petewarden/dstk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopulate_database.rb
executable file
·234 lines (183 loc) · 5.5 KB
/
populate_database.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
#!/usr/bin/env ruby
require 'rubygems'
require 'postgres'
require 'csv'
# Some hackiness to include the library script, even if invoked from another directory
require File.join(File.expand_path(File.dirname(__FILE__)), 'geodict_lib')
def load_cities(conn)
begin
conn.exec('DROP TABLE cities')
rescue
# ignore errors here
end
conn.exec('CREATE TABLE cities (
city VARCHAR(80),
country CHAR(2),
region_code CHAR(2),
population INT,
lat FLOAT,
lon FLOAT,
last_word VARCHAR(32),
PRIMARY KEY (city, country, region_code));')
conn.exec('CREATE INDEX city_last_word_index ON cities(last_word)')
file_name = DSTKConfig::SOURCE_FOLDER+'worldcitiespop.csv'
File.foreach(file_name) do |line|
begin
row = CSV.parse_line(line)
country = row[0]
city = row[1]
region_code = row[3]
population = row[4]
lat = row[5]
lon = row[6]
rescue
printf(STDERR, 'Problem with '+line)
next
end
if !population or population == ''
population = 0
end
begin
city.strip!
last_word, index, skipped = pull_word_from_end(city, city.length-1, false)
conn.exec("INSERT INTO cities (city, country, region_code, population, lat, lon, last_word)
values ("+
"'"+PGconn.escape(city)+"'"+
", '"+PGconn.escape(country)+"'"+
", '"+PGconn.escape(region_code)+"'"+
", '"+PGconn.escape(population.to_s)+"'"+
", '"+PGconn.escape(lat.to_s)+"'"+
", '"+PGconn.escape(lon.to_s)+"'"+
", '"+PGconn.escape(last_word)+"')"
);
rescue
# do nothing
end
end
end
def load_countries(conn)
begin
conn.exec('DROP TABLE countries')
rescue
# ignore errors here
end
conn.exec('CREATE TABLE countries (
country VARCHAR(64),
PRIMARY KEY(country),
country_code CHAR(2),
lat FLOAT,
lon FLOAT,
last_word VARCHAR(32))')
conn.exec('CREATE INDEX country_last_word_index ON countries(last_word)')
country_positions = {}
file_name = DSTKConfig::SOURCE_FOLDER+'countrypositions.csv'
File.foreach(file_name) do |line|
begin
row = CSV.parse_line(line)
country_code = row[0]
lat = row[1]
lon = row[2]
rescue
printf(STDERR, 'Problem with '+line)
next
end
country_positions[country_code] = { :lat => lat, :lon => lon }
end
file_name = DSTKConfig::SOURCE_FOLDER+'countrynames.csv'
File.foreach(file_name) do |line|
begin
row = CSV.parse_line(line)
country_code = row[0]
country_names = row[1]
rescue
printf(STDERR, 'Problem with '+line)
next
end
country_names_list = country_names.split(' | ')
lat = country_positions[country_code][:lat]
lon = country_positions[country_code][:lon]
country_names_list.each do |country_name|
begin
country_name.strip!
last_word, index, skipped = pull_word_from_end(country_name, country_name.length-1, false)
conn.exec("INSERT INTO countries (country, country_code, lat, lon, last_word)
values ("+
"'"+PGconn.escape(country_name)+"'"+
", '"+PGconn.escape(country_code)+"'"+
", '"+PGconn.escape(lat.to_s)+"'"+
", '"+PGconn.escape(lon.to_s)+"'"+
", '"+PGconn.escape(last_word)+"')"
);
rescue
printf(STDERR, 'Problem with country '+country_name)
end
end
end
end
def load_regions(conn)
begin
conn.exec('DROP TABLE regions')
rescue
# ignore errors here
end
conn.exec('CREATE TABLE regions (
region VARCHAR(64),
PRIMARY KEY(region),
region_code CHAR(4),
country_code CHAR(2),
lat FLOAT,
lon FLOAT,
last_word VARCHAR(32))')
conn.exec('CREATE INDEX region_last_word_index ON regions(last_word)')
us_state_positions = {}
file_name = DSTKConfig::SOURCE_FOLDER+'us_statepositions.csv'
File.foreach(file_name) do |line|
begin
row = CSV.parse_line(line)
region_code = row[0]
lat = row[1]
lon = row[2]
rescue
printf(STDERR, 'Problem with '+line)
next
end
us_state_positions[region_code] = { :lat => lat, :lon => lon }
end
country_code = 'US'
file_name = DSTKConfig::SOURCE_FOLDER+'us_statenames.csv'
File.foreach(file_name) do |line|
begin
row = CSV.parse_line(line)
region_code = row[0]
state_names = row[2]
rescue
printf(STDERR, 'Problem with '+line)
next
end
state_names_list = state_names.split('|')
lat = us_state_positions[region_code][:lat]
lon = us_state_positions[region_code][:lon]
state_names_list.each do |state_name|
begin
state_name.strip!
last_word, index, skipped = pull_word_from_end(state_name, state_name.length-1, false)
conn.exec("INSERT INTO regions (region, region_code, country_code, lat, lon, last_word)
values ("+
"'"+PGconn.escape(state_name)+"'"+
", '"+PGconn.escape(region_code)+"'"+
", '"+PGconn.escape(country_code)+"'"+
", '"+PGconn.escape(lat.to_s)+"'"+
", '"+PGconn.escape(lon.to_s)+"'"+
", '"+PGconn.escape(last_word)+"')"
);
rescue
printf(STDERR, 'Problem with region '+state_name+"\n")
# do nothing
end
end
end
end
conn = get_database_connection()
load_cities(conn)
load_countries(conn)
load_regions(conn)