-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.Rmd
86 lines (58 loc) · 1.98 KB
/
map.Rmd
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
---
title: "WELA mapa"
---
<style type="text/css">
body{
font-size: 12pt;
}
</style>
```{r setup, include = FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
A través de nuestro mapa interactivo puedes buscar por palabras clave, ciudades, instituciones, disciplinas, idiomas, etc., y también filtrar los registros por área de investigación, país o posición (etapa actual de la carrera de la experta).
```{r include=FALSE}
library(knitr)
knitr::opts_chunk$set(echo=FALSE, message = FALSE, warning = FALSE)
```
```{r}
library(dplyr)
library(leaflet)
library(gsheet)
```
```{r}
dat <- gsheet::gsheet2tbl("https://docs.google.com/spreadsheets/d/15sGVstF9ei0qbSUcvLeM0Ao_QmG1hnn8VvKiZgPHo6w/edit?usp=sharing")
datos <- dat %>%
mutate(`Nombre / Nome` = paste(`Apellido /Sobrenome`, `Nombre / Nome`, sep = " ")) %>%
mutate(`Nombre / Nome` = ifelse(!is.na(Website),
paste0('<a href="', Website, '"target="_blank">', `Nombre / Nome`, '</a>'),
`Nombre / Nome`)) %>%
dplyr::select(`Nombre / Nome`, Longitud, Latitud) %>%
mutate(Longitud = as.numeric(Longitud),
Latitud = as.numeric(Latitud))
## jitter coords a bit so that points don't overlap completely in the map
datos <- datos %>%
mutate(Longitud = jitter(Longitud, amount = 0.05),
Latitud = jitter(Latitud, amount = 0.05))
```
```{r}
## could use CoordinateCleaner::cc_coun to check if coords within stated country
# https://rdrr.io/cran/CoordinateCleaner/man/cc_coun.html
```
```{r out.width='100%'}
icon.mw <- makeIcon(
iconUrl = "jaguar_footprint.png",
iconWidth = 12, iconHeight = 12,
iconAnchorX = 6, iconAnchorY = 6
)
leaflet(datos) %>%
fitBounds(-176, -50, 176, 50) %>%
addProviderTiles(providers$CartoDB.Positron,
options = providerTileOptions(noWrap = TRUE)) %>%
addMarkers(
~Longitud, ~Latitud,
popup = ~`Nombre / Nome`,
icon = icon.mw
#clusterOptions = markerClusterOptions()
)
```
Last update: `r Sys.Date()`