-
Notifications
You must be signed in to change notification settings - Fork 0
/
EstimativasClima-Capitais-Brasil.R
149 lines (117 loc) · 5.42 KB
/
EstimativasClima-Capitais-Brasil.R
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
library(RCurl)
library(XML)
library(glue)
funcGetCitiesInfo <- function() {
list(
#Distrito Federal
"Brasília" = list(WikiName="Brasília",
Region="Centro-Oeste", State="Distrito Federal"),
#Centro-Oeste
"Campo Grande" = list(WikiName="Campo Grande (Mato Grosso do Sul)",
Region="Centro-Oeste", State="Mato Grosso do Sul"),
"Cuiabá" = list(WikiName="Cuiabá",
Region="Centro-Oeste", State="Mato Grosso"),
"Goiânia" = list(WikiName="Goiânia",
Region="Centro-Oeste", State="Goiás"),
#Nordeste
"Aracaju" = list(WikiName="Aracaju",
Region="Nordeste", State="Sergipe"),
"Fortaleza" = list(WikiName="Fortaleza",
Region="Nordeste", State="Ceará"),
"João Pessoa" = list(WikiName="João Pessoa",
Region="Nordeste", State="Paraíba"),
"Maceió" = list(WikiName="Maceió",
Region="Nordeste", State="Alagoas"),
"Natal" = list(WikiName="Natal (Rio Grande do Norte)",
Region="Nordeste", State="Rio Grande do Norte"),
"Recife" = list(WikiName="Recife",
Region="Nordeste", State="Pernambuco"),
"Salvador" = list(WikiName="Salvador (Bahia)",
Region="Nordeste", State="Bahia"),
"São Luís" = list(WikiName="São Luís (Maranhão)",
Region="Nordeste", State="Maranhão"),
"Teresina" = list(WikiName="Teresina",
Region="Nordeste", State="Piauí"),
#Norte
"Belém" = list(WikiName="Belém (Pará)",
Region="Norte", State="Pará"),
"Boa Vista" = list(WikiName="Boa Vista (Roraima)",
Region="Norte", State="Roraima"),
"Macapá" = list(WikiName="Macapá",
Region="Norte", State="Amapá"),
"Manaus" = list(WikiName="Manaus",
Region="Norte", State="Amazonas"),
"Palmas" = list(WikiName="Palmas (Tocantins)",
Region="Norte", State="Tocantins"),
"Porto Velho" = list(WikiName="Porto Velho",
Region="Norte", State="Rondônia"),
"Rio Branco" = list(WikiName="Rio Branco",
Region="Norte", State="Acre"),
#Sudeste
"Belo Horizonte" = list(WikiName="Belo Horizonte",
Region="Sudeste", State="Minas Gerais"),
"Rio de Janeiro" = list(WikiName="Rio de Janeiro (cidade)",
Region="Sudeste", State="Rio de Janeiro"),
"São Paulo" = list(WikiName="São Paulo (cidade)",
Region="Sudeste", State="São Paulo"),
"Vitória" = list(WikiName="Vitória (Espírito Santo)",
Region="Sudeste", State="Espírito Santo"),
# Sul
"Curitiba" = list(WikiName="Curitiba",
Region="Sul", State="Paraná"),
"Florianópolis" = list(WikiName="Florianópolis",
Region="Sul", State="Santa Catarina"),
"Porto Alegre" = list(WikiName="Porto Alegre",
Region="Sul", State="Rio Grande do Sul")
)
}
# função para formatar texto em numérico
funcCharToNum <- function(vctAsChar) {
# remove separador de milhar, espaços
t <- gsub("(*UCP)[\\s\\p{L}]+|\\.|\\W+$", "", vctAsChar, perl=TRUE)
# substitui separador de ponto flutuante para adequação ao formato en
t <- gsub(",", ".", t, fixed=T)
# retorna como tipo numérico
return(as.numeric(t))
}
# função que avalia se uma dada tabela é de dados climatológicos
funcIsWeatherInfoTable <- function(table) {
return (!is.null(table) &
all(table[1,] ==
c("Mês", "Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul",
"Ago", "Set", "Out", "Nov", "Dez", "Ano")))
}
# coleta os dados de uma cidade na wikipedia
funcCollectCityWeatherInfoFromWikipedia <- function (cityInfo) {
print(glue("Processando \"{cityInfo$WikiName}\" ..."))
wikiUrl <- glue("https://pt.wikipedia.org/wiki/", gsub(" ", "_", cityInfo$WikiName))
tablesFromPageWiki <- readHTMLTable(getURL(wikiUrl))
desiredTableIndex <- which(sapply(tablesFromPageWiki, funcIsWeatherInfoTable))
if (length(desiredTableIndex) != 1) {
errMsg <- glue("* Problema encontrado! ", length(desiredTableIndex), " entradas!")
cityInfo[["WeatherTable"]] <- errMsg
print(errMsg)
}
else {
weatherTable <- tablesFromPageWiki[[desiredTableIndex]]
# remove a coluna de rodapé
weatherTable <- weatherTable[-nrow(weatherTable),]
# transformoa as colunas de fatores para tipo caractere
weatherTable <- data.frame(lapply(weatherTable, as.character), stringsAsFactors=FALSE)
# guarda nomes das colunas e linhas antes da transformação numérica
cnames <- weatherTable[1,]
rnames <- weatherTable[,1]
# conversão dos valores da tabela em numérico
weatherTable <- data.frame(apply(weatherTable, 2, funcCharToNum))
# transforma primeira coluna e primeira linha em títulos
colnames(weatherTable) <- cnames
rownames(weatherTable) <- rnames
weatherTable <- weatherTable[-1,-1]
cityInfo[["WeatherTable"]] <- weatherTable
}
return(cityInfo)
}
cities <- funcGetCitiesInfo()
citiesWithWeatherInfo <- lapply(cities, funcCollectCityWeatherInfoFromWikipedia)
# save(citiesWithWeatherInfo, file="data.RData")
# load(file="data.RData")