-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestado.py
61 lines (59 loc) · 2.49 KB
/
estado.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
def define_map(estado):
map_info = ''
if estado == 'PB':
map_info = ['Paraiba','ChIJz8iY7rZMpQcRtAE8MiSbKB8']
elif estado == 'DF':
map_info = ['Distrito Federal','ChIJ1wSIEPI6WpMRVlAUyZAjuj4']
elif estado == 'ES':
map_info = ['Espirito Santo','ChIJWWNkeZUGtwARmfdQPCTVG04']
elif estado == 'RJ':
map_info = ['Rio de janeiro','ChIJW6AIkVXemwARTtIvZ2xC3FA']
elif estado == 'MG':
map_info = ['Minas Gerais','ChIJiUIyZaGQpgARs-edN8lwIRE']
elif estado == 'SP':
map_info = ['Sao Paulo','ChIJ0WGkg4FEzpQRrlsz_whLqZs']
elif estado == 'RS':
map_info = ['Rio Grande do Sul','ChIJA1i0QAxyBJUR3nOfr9uzn60']
elif estado == 'SC':
map_info = ['Santa Catarina','ChIJ-f9SwCVN2ZQRK6t_7YB1Jys']
elif estado == 'PR':
map_info = ['Parana','ChIJnWK4MJQL25QRYfDOY1D9k-g']
elif estado == 'GO':
map_info = ['Goias','ChIJ9SC5hmO5XZMR0_CMzfjYxgg']
elif estado == 'MS':
map_info = ['Mato grosso do sul','ChIJg3Of4tuRfpQRrBBUaenYHDUChIJg3Of4tuRfpQRrBBUaenYHDU']
elif estado == 'MT':
map_info = ['Mato groso','ChIJGQM3SOexnZMR-4EhfeJoYsY']
elif estado == 'RO':
map_info = ['rondonia','ChIJV2tRb9lcMpIR3SEGNNVjN3M']
elif estado == 'AC':
map_info = ['Acre','ChIJuQaRTqqNf5ERwQc2CMUK7CU']
elif estado == 'AM':
map_info = ['Amazonas','ChIJ0W4di1w_GJIR-i48a_ZqbRc']
elif estado == 'RR':
map_info = ['Roraima','ChIJW_TM33EGk40RFHqcnvIAX2k']
elif estado == 'PA':
map_info = ['Para','ChIJlwksrJn5iJIRCvNV5z7IXjE']
elif estado == 'AP':
map_info = ['Amapa','ChIJIXuZzXM9ZY0R1Lz2dkVhGpE']
elif estado == 'MA':
map_info = ['Maranhao','ChIJ5RzMm3rX7QcRNCls2aOrdmI']
elif estado == 'PI':
map_info = ['Piaui','ChIJj7KAcHzlggcRpZT2BFRx51o']
elif estado == 'CE':
map_info = ['Ceara','ChIJxYbmJxizvQcRQniVr-A1tDs']
elif estado == 'RN':
map_info = ['Rio Grande do Norte','ChIJreroSfVNsAcRxJ5NHKwJJak']
elif estado == 'AL':
map_info = ['Alagoas','ChIJreroSfVNsAcRxJ5NHKwJJak']
elif estado == 'PE':
map_info = ['Pernambuco','ChIJxYYck518AAcRJhdAk2oZ4B0']
elif estado == 'SE':
map_info = ['Sergipe','ChIJIRZgFj-9BQcR2fH-ZmvKyqw']
elif estado == 'BA':
map_info = ['Bahia','ChIJs6U8onwDFgcRBe2RtF9vkn4']
elif estado == 'TO':
map_info = ['Tocantins','ChIJlzmxUh9QI5MRbDnMRWKG1OM']
else:
map_info = ['Ops... =|','ChIJq7dMA7UaRYkRTcp63_PsALY']
return map_info