-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathload.py
108 lines (87 loc) · 2.8 KB
/
load.py
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
import sqlite3
import csv
sqlite_file = 'san-jose_california.db' # name of the sqlite database file
conn = sqlite3.connect(sqlite_file) # Connect to the database
cur = conn.cursor() # Get a cursor object
cur.execute('DROP TABLE IF EXISTS nodes')
conn.commit()
# Create the table, specifying schema of database:
cur.execute('''
CREATE TABLE nodes (
id INTEGER PRIMARY KEY NOT NULL,
lat REAL,
lon REAL,
user TEXT,
uid INTEGER,
version INTEGER,
changeset INTEGER,
timestamp TEXT
);
''')
conn.commit()
cur.execute('''
CREATE TABLE nodes_tags (
id INTEGER,
key TEXT,
value TEXT,
type TEXT,
FOREIGN KEY (id) REFERENCES nodes(id)
);
''')
conn.commit()
cur.execute('''
CREATE TABLE ways (
id INTEGER PRIMARY KEY NOT NULL,
user TEXT,
uid INTEGER,
version TEXT,
changeset INTEGER,
timestamp TEXT
);''')
conn.commit()
cur.execute('''
CREATE TABLE ways_tags (
id INTEGER NOT NULL,
key TEXT NOT NULL,
value TEXT NOT NULL,
type TEXT,
FOREIGN KEY (id) REFERENCES ways(id)
);''')
conn.commit()
cur.execute('''
CREATE TABLE ways_nodes (
id INTEGER NOT NULL,
node_id INTEGER NOT NULL,
position INTEGER NOT NULL,
FOREIGN KEY (id) REFERENCES ways(id),
FOREIGN KEY (node_id) REFERENCES nodes(id)
);''')
conn.commit()
# Read in the csv file as a dictionary:
with open('nodes.csv','rb') as fin:
dr = csv.DictReader(fin)
to_db = [(i['id'], i['lat'],i['lon'], i['user'].decode("utf-8"), i['uid'], i['version'], i['changeset'], i['timestamp']) for i in dr]
# insert the formatted data
cur.executemany("INSERT INTO nodes(id,lat,lon,user,uid,version,changeset,timestamp) VALUES (?, ?, ?, ?, ?, ?, ?, ?);", to_db)
conn.commit()
with open('nodes_tags.csv','rb') as fin:
dr = csv.DictReader(fin)
to_db = [(i['id'], i['key'],i['value'].decode("utf-8"), i['type']) for i in dr]
cur.executemany("INSERT INTO nodes_tags(id, key, value,type) VALUES (?, ?, ?, ?);", to_db)
conn.commit()
with open('ways.csv','rb') as fin:
dr = csv.DictReader(fin)
to_db = [(i['id'], i['user'].decode("utf-8"), i['uid'], i['version'], i['changeset'], i['timestamp']) for i in dr]
cur.executemany("INSERT INTO ways(id,user,uid,version,changeset,timestamp) VALUES (?, ?, ?, ?, ?, ?);", to_db)
conn.commit()
with open('ways_tags.csv','rb') as fin:
dr = csv.DictReader(fin)
to_db = [(i['id'], i['key'], i['value'].decode("utf-8"), i['type']) for i in dr]
cur.executemany("INSERT INTO ways_tags(id, key, value,type) VALUES (?, ?, ?, ?);", to_db)
conn.commit()
with open('ways_nodes.csv','rb') as fin:
dr = csv.DictReader(fin)
to_db = [(i['id'], i['node_id'],i['position']) for i in dr]
cur.executemany("INSERT INTO ways_nodes(id, node_id, position) VALUES (?, ?, ?);", to_db)
conn.commit()
conn.close()