-
Notifications
You must be signed in to change notification settings - Fork 0
/
decea_downloader.py
224 lines (147 loc) · 6.45 KB
/
decea_downloader.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
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
import urllib.request
import xml.etree.ElementTree as ET
from time import sleep
import os, errno
import tkinter
from tkinter import *
import tkinter.messagebox
import sys
# Preencher com chave e senha da API DECEA (Deverá ser solicitada via AIS WEB)
apiKey = ""
apiPass = ""
# Início do tkinter
top = tkinter.Tk()
# Definição da Função de Download
def download():
global aeroportos
global CartasIFR
global CartasEmrotaIFR
global CartasVFR
global tipos
global apiKey
global apiPass
# Tratar Variáveis
aeroportos = aeroportos.get()
arrayAeroportos = aeroportos.split(',')
lenAeroportos = len(arrayAeroportos)
CartasIFR = CartasIFR.get()
CartasEmrotaIFR = CartasEmrotaIFR.get()
CartasVFR = CartasVFR.get()
tipos = tipos.get()
arrayTipos = tipos.split(',')
# CARTAS IFR
if CartasIFR:
urllib.request.urlretrieve('http://www.aisweb.aer.mil.br/api/?apiKey=' + apiKey + '&apiPass=' + apiPass + '&area=cartas', 'cycle.xml')
sleep(5)
tree = ET.parse('cycle.xml')
root = tree.getroot()
if lenAeroportos > 0 and aeroportos != '':
for x in root.iter('item'):
if x.find('IcaoCode').text in arrayAeroportos:
if x.find('tipo').text in arrayTipos:
directory = 'cartas/' + x.find('IcaoCode').text + '/' + x.find('tipo').text + '';
try:
os.makedirs(directory)
except OSError as e:
if e.errno != errno.EEXIST:
raise
filename = x.find('nome').text;
filename = filename.replace("/", "-")
print ('Baixando.. ' + x.find('IcaoCode').text + ' - ' + filename + '')
urllib.request.urlretrieve(x.find('link').text, '' + directory + '/' + filename + '.pdf')
else:
for x in root.iter('item'):
if x.find('tipo').text in arrayTipos:
directory = 'cartas/' + x.find('IcaoCode').text + '/' + x.find('tipo').text + '';
try:
os.makedirs(directory)
except OSError as e:
if e.errno != errno.EEXIST:
raise
filename = x.find('nome').text;
filename = filename.replace("/", "-")
print ('Baixando.. ' + x.find('IcaoCode').text + ' - ' + filename + '')
urllib.request.urlretrieve(x.find('link').text, '' + directory + '/' + filename + '.pdf')
else:
print("Pular Cartas IFR")
# CARTAS EM ROTA IFR
if CartasEmrotaIFR:
urllib.request.urlretrieve('http://www.aisweb.aer.mil.br/api/?apiKey=' + apiKey + '&apiPass=' + apiPass + '&area=cartas&especie=rota', 'cycle_rota.xml')
sleep(5)
tree = ET.parse('cycle_rota.xml')
root = tree.getroot()
for x in root.iter('item'):
directory = 'cartas_emrota/';
try:
os.makedirs(directory)
except OSError as e:
if e.errno != errno.EEXIST:
raise
filename = x.find('nome').text;
try:
filename = filename.replace("/", "-")
except (TypeError, AttributeError):
filename = x.find('IcaoCode').text;
filename = filename.replace("/", "-")
print ('Baixando.. ' + filename + '')
urllib.request.urlretrieve(x.find('link').text, '' + directory + '/' + filename + '.pdf')
else:
print("Pular Cartas Em Rota")
# CARTAS VFR
if CartasVFR:
urllib.request.urlretrieve('http://www.aisweb.aer.mil.br/api/?apiKey=' + apiKey + '&apiPass=' + apiPass + '&area=cartas&especie=VFR', 'cycle_vfr.xml')
sleep(5)
tree = ET.parse('cycle_vfr.xml')
root = tree.getroot()
for x in root.iter('item'):
directory = 'cartas_vfr/' + x.find('tipo').text + '';
try:
os.makedirs(directory)
except OSError as e:
if e.errno != errno.EEXIST:
raise
filename = x.find('nome').text;
try:
filename = filename.replace("/", "-")
except (TypeError, AttributeError):
filename = x.find('IcaoCode').text;
filename = filename.replace("/", "-")
print ('Baixando.. ' + filename + '')
urllib.request.urlretrieve(x.find('link').text, '' + directory + '/' + filename + '.pdf')
else:
print("Pular Cartas VFR")
# Mensagem
tkinter.messagebox.showinfo("DECEA Downloader", "Cartas baixadas com sucesso!")
sys.exit()
# Objetos tKinter
# Aeroportos
aeroportosLabel = Label(top, text="Aeroportos (Separados por Vírgula):")
aeroportosLabel.grid(row=1,column=0)
aeroportos = Entry(top, bd =5)
aeroportos.grid(row=1,column=1)
# Cartas IFR Desejadas
CartasIFR = IntVar()
C1 = Checkbutton(top, text = "Cartas IFR (SID, STAR, etc)", variable = CartasIFR)
C1.grid(sticky="W",row=0,column=0)
# Tipos de Cartas IFR Desejadas
tiposLabel = Label(top, text="Tipo de Cartas (Separados por Vírgula):")
tiposLabel.grid(row=2,column=0)
tipos = Entry(top, bd =5)
tipos.grid(row=2,column=1)
tipos.insert(END, 'ADC,AOC,GMC,IAC,PATC,PDC,SID,STAR,VAC')
# Cartas Emrota IFR
CartasEmrotaIFR = IntVar()
C2 = Checkbutton(top, text = "Cartas Em Rota (ENRC H1, ENRC H2)", variable = CartasEmrotaIFR)
C2.grid(sticky="W",row=3,column=0)
# Cartas VFR
CartasVFR = IntVar()
C3 = Checkbutton(top, text = "Cartas VFR (WAC,REA)", variable = CartasVFR)
C3.grid(sticky="W",row=4,column=0)
# Botão de Download
B = tkinter.Button(top, text ="Download", command = download)
B.grid(row=5,column=0)
# Configurações da Janela
top.title("DECEA Downloader")
top.iconbitmap('dom-decea.ico')
# Main Loop
top.mainloop()