-
Notifications
You must be signed in to change notification settings - Fork 0
/
aula16.qmd
113 lines (93 loc) · 2.74 KB
/
aula16.qmd
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
---
title: "Aula16"
author: "Arlam"
format: html
---
## Mapas no R
```{r}
library(tidyverse)
library(readxl)
library(ggplot2)
library(r4pde)
library(rnaturalearth)
library(rnaturalearthhires)
```
Instalar pacote do github:
```{r}
remotes::install_github("ropensci/rnaturalearthhires")
```
Conjunto de dados: Para plotar o mapa do pais, usa-se a função ne_countries
```{r}
sbr <- RustSoybean
BRA <- ne_countries(country = "Brazil",
returnclass = "sf")
ggplot(BRA) +
geom_sf(fill = "white")
```
Para plotar os estados:
```{r}
BRA <- ne_states(country = "Brazil",
returnclass = "sf")
ggplot(BRA) +
geom_sf(color = "white",
fill = "darkgreen") +
theme_void()
```
Para selecionar um estado: Para
```{r}
BRA <- ne_states(country = "Brazil",
returnclass = "sf")
MG <- BRA |> filter(name_en == "Minas Gerais")
ggplot(BRA) +
geom_sf(color = "black",
fill = "white") +
geom_sf(data = MG, color = "black",
fill = "green")
```
Para inserir os pontos especificos dos dados (latitude e longitude): Para plotar os pontos, precisa-se das coordenadas de onde foram coletados os pontos. Ex.: pontos de coleta - precisa-se coletar as coordenadas para plotar em um mapa (no caso de ser só o municipio, pode pegar na internet as coordenadas).
```{r}
BRA <- ne_states(country = "Brazil",
returnclass = "sf")
MG <- BRA |> filter(name_en == "Minas Gerais")
ggplot(BRA) +
geom_sf(color = "black",
fill = "white") +
geom_point(data = sbr, aes(longitude, latitude), alpha = 0.5)
```
Para separar a data em dia, mês e ano:
```{r}
sbr2 <- sbr |>
separate(planting, into =
c("year", "month", "day"), sep = "-", remove = FALSE)
BRA <- ne_states(country = "Brazil",
returnclass = "sf")
MG <- BRA |> filter(name_en == "Minas Gerais")
ggplot(BRA) +
geom_sf(color = "black",
fill = "white") +
geom_point(data = sbr2,
aes(longitude, latitude, color = year), alpha = 0.5)+
facet_wrap(~year)+
theme_void()
```
Como inserir a rosa dos ventos e a escala no mapa:
```{r}
library(ggspatial)
ggplot(BRA) +
annotation_north_arrow(location = "bl")+
annotation_scale(location = "br")+
geom_sf(color = "black",
fill = "white") +
geom_point(data = sbr2,
aes(longitude, latitude, color = year, size = severity), alpha = 0.5)+
labs(color = "Planting Year")+
theme_minimal()+
theme(legend.position = "right")
```
Malha de municipios: Pega o arquivo shape, que baixado dos municipios em um site do IBJE ou outro confiável. Usa o pacote rgdal e executa os eeguintes comandos:
```{r}
library(ggplot2)
ggplot()+
geom_sf(data = MG, fill = "red")+
labs(title = "ESTADO DE MINAS GERAIS")
```