-
Notifications
You must be signed in to change notification settings - Fork 7
/
aptdat2pg.py
executable file
·175 lines (134 loc) · 4.3 KB
/
aptdat2pg.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
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 Martin Herweg [email protected]
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
#I
#1000 Version - data cycle 2013.10, build 20131335, metadata AptXP1000.
#
#1 1906 1 0 LOWI Innsbruck Kranebitten
#01234567890123456789
# 1 ^
# "2015" file:
#A
#1000 Generated by WorldEditor
#
#1 1470 0 0 0B7 Warren-Sugarbush
#01234567890123456789
# 1 ^
#XP10 custom cenery pack:
#A
#1000 Generated by WorldEditor
#
#1 1906 1 0 LOWI Innsbruck Kranebitten
#01234567890123456789
# 1 ^
# elev 0 0 ICAO Name
#known bugs:
# LOWI
#invalid byte sequence for encoding "UTF8": 0xf6 0x64 0x20 0x74
# EDRZ
#invalid byte sequence for encoding "UTF8": 0xfc
# fix:
# iconv...
import os, sys, getopt
import psycopg2
from lxml import etree
from settings import *
helptext = './aptdat2pg.py -f INPUTFILE'
def fn_pgexec(cur,sql):
try:
cur.execute(sql)
except psycopg2.Error, e:
print e
#print sql
return cur
def insert_or_update(cur,icao,linearray):
cur.execute("SELECT icao FROM apt_dat WHERE icao LIKE '%s'" % icao)
#print icao, cur.rowcount
if cur.rowcount == 1:
sql = cur.mogrify("UPDATE apt_dat SET layout = %s WHERE icao LIKE %s;" ,(linearray, icao))
print "UPDATE", icao
fn_pgexec(cur,sql)
else:
sql = cur.mogrify("INSERT INTO apt_dat(icao,layout) VALUES (%s,%s)", (icao,linearray))
#print "sql:" , sql
fn_pgexec(cur,sql)
print "INSERT" , icao
def main(argv):
icao=""
counter = 0
filename = "apt.dat.lowi-in"
try:
opts, args = getopt.getopt(argv,"hf:")
except getopt.GetoptError:
print helptext
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print helptext
sys.exit()
elif opt == "-f":
filename = arg
try:
conn = psycopg2.connect(**db_params)
except:
print "Cannot connect to database.", db_params
sys.exit()
cur = conn.cursor()
try:
infile = open(filename, 'r')
except:
print "input file ", filename, "not found"
sys.exit()
# main loop
for line in infile:
line = line.strip()
# 1 for airports, 16 for seaports, ....
if line.startswith("1 ") or line.startswith("16 ") or line.startswith("17 "):
#the previous icao:
if icao != "":
#for testing
#if icao == "LOWI":
# write previous airport to DB
print icao, counter
counter = counter +1
insert_or_update(cur,icao, linearray)
if (counter%1000 == 0):
conn.commit()
print "=============COMMIT=============="
#the next airport:
apt_header = line.split()
icao = apt_header[4]
name = ' '.join(apt_header[5:])
#print icao, name
linearray = []
linearray.append(line)
else:
#read all the lines of that airport
if icao != "" and line != "" and line != "99":
linearray.append(line)
# last airport in apt.dat:
if icao != "":
insert_or_update(cur,icao, linearray)
print icao, counter
conn.commit()
cur.close()
conn.close()
if __name__ == "__main__":
main(sys.argv[1:])
#EOF