-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.Rmd
49 lines (40 loc) · 1.89 KB
/
about.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
---
title: "About D6"
description: ""
output: distill::distill_article
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

<div class='highlightbox'>
<span class='highlight'>
We are scientists of the Department of Ecological Dynamics at the Leibniz Institute for Zoo and Wildlife Research, Berlin, Germany. Our research is focused on understanding ecological dynamics in space and time, at different levels of organisation, from individuals to communities, and across gradients of human altered environments. We investigate how fitness consequences of processes acting at the individual level, such as social behaviour or movements, competition, predator-prey or host-pathogen interactions, shape population and community dynamics, also at evolutionary scales.</span>
</div>
### How to contact us?
Email: <a href="mailto:[email protected]">assist6[at]izw-berlin.de</a>
**Address:**
Leibniz Institute for Zoo and Wildlife Research
Department of Ecological Dynamics
Alfred-Kowalke-Str. 17
D-10315 Berlin, Germany
<br>
```{r, layout="l-screen-inset shaded"}
library(leaflet)
leaflet() %>%
setView(lng = 13.5211, lat = 52.5062, zoom = 14) %>%
#addTiles() %>% # Add default OpenStreetMap map tiles
addProviderTiles(providers$CartoDB.Voyager, group = "Default Map") %>%
addProviderTiles(providers$Stamen.Terrain, group = "Terrain Map") %>%
addProviderTiles(providers$CartoDB.DarkMatter, group = "Dark Map") %>%
addTiles(group = "OpenStreetMap") %>%
addPopups(lng = 13.521167153974313, lat = 52.506286189883994,
popup = "<b>Leibniz Institute for<br>Zoo and Wildlife Research</b>",
options = popupOptions(closeButton = FALSE)) %>%
# Layers control
addLayersControl(
baseGroups = c("Default Map", "Terrain Map", "Dark Map", "OpenStreetMap"),
options = layersControlOptions(collapsed = FALSE)
)
```
<br><br>