-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
238 lines (168 loc) · 5.55 KB
/
index.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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
---
title: "Load Full Contry Data"
subtitle: "WCS camera trap dataset"
date: "`r Sys.Date()`"
author:
- name: Diego Lizcano
orcid: https://orcid.org/0000-0002-9648-0576
license: CC BY-SA
toc: true
format:
html:
code-fold: true
code-block-bg: true
code-block-border-left: "#31BAE9"
citation: true
google-scholar: true
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
dev = "png",
dev.args = list(type = "cairo-png"),
fig.width = 7,
fig.height = 5,
fig.align = "center",
eval = TRUE,
echo = TRUE,
warning = FALSE,
error = FALSE,
message = FALSE,
cache=TRUE)
```
## Carguemos algunos paquetes y funciones de ayuda
```{r}
#| warning: false
#| message: false
library(readxl)
library(grateful)
library(sf)
library(mapview)
library(maps)
library(ggTimeSeries)
library(tidyverse)
source("C:/CodigoR/WCS-CameraTrap/R/organiza_datos.R")
```
```{r}
#| warning: false
#| message: false
#| eval: false
#| echo: false
#|
world <- sf::st_as_sf(maps::map(database = "world", plot=FALSE, fill=TRUE))
# filter paises
paises <- world[c(9, 32,33,48,63,92,165,189,179,243),]
ggplot() +
geom_sf(data=world, fill="white") +
geom_sf(data= paises, fill="gray75") +
coord_sf(xlim=c(-95.8566, -35.9310), ylim= c(-57.39878, 17.67390))
```
## Carguemos los datos de un pais
En este caso vamos a usar Ecuador como ejemplo.
```{r}
#| warning: false
#| message: false
#| eval: false
#| echo: true
########################
### Paises
########################
carpeta <- "C:/CodigoR/WCS-CameraTrap/data/"
paises <- list.files(carpeta, recursive = FALSE)
Argentina <- data_by_country(country = "Argentina")
Bolivia <- data_by_country(country = "Bolivia")
Brazil <- data_by_country(country = "Brazil")
Colombia <- data_by_country(country = "Colombia")
Ecuador <- data_by_country(country = "Ecuador")
Guatemala <- data_by_country(country = "Guatemala")
Ecuador <- data_by_country(country = "Ecuador")
Paraguay <- data_by_country(country = "Paraguay")
Peru <- data_by_country(country = "Peru")
Venezuela <- data_by_country(country = "Venezuela")
```
### Use la funcion `data_by_country` para cargar todos los datos de un pais y ver un mapa sencillo e interactivo. Note que podemos usar los datos de cualquier otro pais.
```{r}
Ecuador <- data_by_country(country = "Ecuador")
Country_to_map <- Ecuador |> distinct(ExcelFile, year, `Deployment ID`, `Longitude Resolution`, `Latitude Resolution`)
projlatlon <- "+proj=longlat +datum=WGS84 +no_defs +ellps=WGS84 +towgs84=0,0,0"
Country_map <- st_as_sf(x = Country_to_map,
coords = c("Longitude Resolution",
"Latitude Resolution"),
crs = projlatlon)
mapview(Country_map, zcol = c("year"), burst = TRUE) # burst = TRUE prouce uniques
```
## Fotos por tipo de camara
Ahora queremos ver las fotos que se han tomado con los diferentes modelos de camaras.
```{r}
# Creating ggplot graphs
Ecuador |> mutate(CameraType=`Camera Type`) |>
dplyr::count(CameraType,
sort = TRUE,
name = "n_cameraBrand") |>
ggplot2::ggplot() + #plotting the camera models most used
ggplot2::geom_col(ggplot2::aes(x = CameraType,
y = n_cameraBrand))
```
## Veamos todas las fotos en un calendario
```{r}
dtData <- Ecuador |> as.data.frame() |>
mutate(Date_Time=as_date(`Date_Time Captured`)) |>
count(Date_Time) |> na.omit()
# base plot
p1 = ggplot_calendar_heatmap(
dtData,
'Date_Time',
'n',
dayBorderSize = 0.1,
monthBorderSize = 0.7
)
# adding some formatting
p1 +
xlab(NULL) +
ylab(NULL) +
scale_fill_continuous(low = 'cyan', high = 'red') +
facet_wrap(~Year, ncol = 2) # number of columns
```
## Fotos con mas de 100 registros por sitios
Seleccionaremos las especies que tienen mas de 100 registros por cada sitio (Deployment ID).
```{r}
Ecuador |>
dplyr::distinct(`Deployment ID`, `Genus Species`) |>
dplyr::count(`Genus Species`, sort = TRUE) |>
dplyr::filter(n >= 100) |> #change threshold
ggplot2::ggplot() +
ggplot2::geom_col(ggplot2::aes(x = `Genus Species`, y = n)) +
ggplot2::scale_y_continuous(
expand = ggplot2::expansion(mult = 0),
limits = c(0, 1100),
breaks = seq(0, 1100, by = 100)
) +
ggplot2::labs(x = NULL,
y = "Locations") +
ggplot2::coord_flip()
ggplot2::theme(
plot.margin = ggplot2::margin(t = 5,
r = 10,
b = 5,
l = 5,
unit = "pt"),
axis.text.y = ggtext::element_markdown()
)
```
# Y donde estan los Jaguares?
Aca los podemos ver en un mapa, con el tamaño del circulo representando el numero de fotos que se han tomado. Note que podemos cambiar la especie a cualquier otra.
```{r}
Ecuador_cameras <- st_as_sf(x = Ecuador,
coords = c("Longitude Resolution",
"Latitude Resolution"),
crs = projlatlon)
jaguars <- Ecuador_cameras |> filter (Ecuador_cameras$`Genus Species`== "Panthera onca")
jaguars <- jaguars |> mutate(Date_Time=as_date(`Date_Time Captured`)) |> group_by("Deployment ID") |> count(Date_Time) #|> ungroup()
mapview(jaguars, cex = "n")
```
> Se ve facil verdad?. Pero en realidad no lo es tanto. Esto ha sido posible gracias a un duro trabajo de varios años de los equipos de WCS de cada pais.
## Session info in R.
```{r sesion, results='markup'}
sessionInfo()
```