-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
111 lines (79 loc) · 3.39 KB
/
README.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
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
<!--
rmarkdown::render('README.Rmd')
-->
```{r, echo = FALSE, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/"
)
```
# rangeMapper <img src="man/figures/logo.png" align="right" alt="" width="120" />
<!-- badges: start -->
[](https://github.com/mpio-be/rangeMapper/actions)
[](https://CRAN.R-project.org/package=rangeMapper)
[](https://CRAN.R-project.org/package=rangeMapper)
[](https://codecov.io/gh/mpio-be/rangeMapper?branch=master)
<!-- badges: end -->
<h4>
<a href="https://onlinelibrary.wiley.com/doi/10.1111/j.1466-8238.2011.00739.x" target="_blank">
A framework for the study of macroecological patterns of life-history traits. </a>
</h4>
### `rangeMapper` builds upon three types of data:
1. __Species distribution ranges__
2. __Life-history datasets__
3. __Environmental rasters__
### `rangeMapper` is build on three concepts:
1. __The canvas__ which is a regular grid of squares or hexagons.
2. __The subsets__ which are defined by combinations of life-history datasets and map data.
3. __The maps__ representing one or several variables summarised on the canvas.
```{r, example, echo=FALSE, message=FALSE, fig.height=5}
require(rangeMapper)
require(sf)
require(data.table)
require(ggplot2)
require(patchwork)
con = rmap_connect()
rmap_add_ranges(con, x = wrens, ID = 'sci_name')
rmap_prepare(con, 'hex', cellsize = 500)
rmap_add_bio(con, wrens, 'sci_name')
rmap_save_map(con, fun= 'avg', v = 'clutch_size', src='wrens', dst='cs')
cs = rmap_to_sf(con, 'cs')
cnv = rmap_to_sf(con, 'wkt_canvas')
thm = theme_bw() +theme(plot.margin = unit(c(0,0,0,0), "cm") )
g1 =
ggplot() +
geom_sf(data = wrens, aes(), alpha= 0.2, size = 0.3) +
thm + ggtitle('Distribution ranges') +
scale_y_continuous(position = "right") + ylab('⇧') + theme(axis.title=element_text(size=30, color = "grey60") )
g2 =
ggplot() +
geom_sf(data = cnv, aes(), size = 0.3) +
thm + ggtitle('Canvas') +
scale_y_continuous(position = "right") + ylab('⇧') + theme(axis.title=element_text(size=30, color = "grey60") )
g3 =
ggplot(cs) +
geom_sf(aes(fill = avg_clutch_size), size= 0.05, color = 'grey90', show.legend = FALSE) +
scale_fill_gradientn(colours = viridis::viridis(10, option = 'E') ) +
thm + ggtitle('Map')
x = data.frame(Species = c('S1', 'S2', 'S3', '...', 'Si'), Trait = c('t1', 't2', 't3', '...', 'ti'))
T = ggplot() +
ggpmisc::annotate(geom = "table", x = 0, y = 0, size= 5, label = list(x) ) +
scale_x_continuous(position = "top") + xlab('⇧') +
guides(x = "none", y = "none") + ylab(NULL) +
theme_minimal() + theme(axis.title=element_text(size=30, color = "grey60") )
(g1 + g2 + g3)/(plot_spacer() +T + plot_spacer())
```
### File format
`rangeMapper`'s project containers are `sqlite` files.
### Installation
```{r, eval = FALSE}
# Install release version from CRAN
install.packages("rangeMapper")
# Install development version from GitHub
remotes::install_github("mpio-be/rangeMapper")
```