-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.Rmd
198 lines (143 loc) · 7.35 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
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
warning = FALSE,
message = FALSE,
fig.path = "man/figures/README-",
out.width = "100%"
)
Sys.unsetenv("AWS_ACCESS_KEY_ID")
Sys.unsetenv("AWS_SECRET_ACCESS_KEY")
Sys.setenv("GBIF_HOME"="/home/shared-data/gbif")
```
# gbifdb
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/gbifdb)](https://CRAN.R-project.org/package=gbifdb)
[![R-CMD-check](https://github.com/cboettig/gbifdb/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/cboettig/gbifdb/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
The goal of `gbifdb` is to provide a relational database interface to a `parquet` based serializations of `gbif`'s AWS snapshots of its public data [^1].
Instead of requiring custom functions for filtering and selecting data from the central GBIF server (as in `rgbif`), `gbifdb` users can take advantage of the full array of `dplyr` and `tidyr` functions which can be automatically translated to SQL by `dbplyr`.
Users already familiar with SQL can construct SQL queries directly with `DBI` instead.
`gbifdb` sends these queries to [`duckdb`](https://duckdb.org), a high-performance, columnar-oriented database engine which runs entirely inside the client,
(unlike server-client databases such as MySQL or Postgres, no additional setup is needed outside of installing `gbifdb`.)
`duckdb` is able to execute these SQL queries directly on-disk against the Parquet data files, side-stepping limitations of available RAM or the need to import the data.
It's highly optimized implementation can be faster even than in-memory operations in `dplyr`.
`duckdb` supports the full set of SQL instructions, including windowed operations like `group_by`+`summarise` as well as table joins.
[^1]: all CC0 and CC-BY licensed data in GBIF that have coordinates which passed automated quality checks,
[see GBIF docs]https://github.com/gbif/occurrence/blob/master/aws-public-data.md)
`gbifdb` has two mechanisms for providing database connections: one which the Parquet snapshot of GBIF must first be downloaded locally,
and a second where the GBIF parquet snapshot can be accessed directly from an Amazon Public Data Registry S3 bucket without downloading a copy.
The latter approach will be faster for one-off operations and is also suitable when using a cloud-based computing provider in the same region.
## Installation
<!--
You can install the released version of `gbifdb` from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("gbifdb")
```
-->
And the development version from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("ropensci/gbifdb")
```
`gbifdb` has few dependencies: `arrow`, `duckdb` and `DBI` are required.
## Getting Started
```{r message=FALSE}
library(gbifdb)
library(dplyr) # optional, for dplyr-based operations
```
### Remote data access
To begin working with GBIF data directly without downloading the data first, simply establish a remote connection using `gbif_remote()`.
```{r remote1}
gbif <- gbif_remote()
```
We can now perform most `dplyr` operations:
```{r remote2}
gbif %>%
filter(phylum == "Chordata", year > 1990) %>%
count(class, year) %>%
collect()
```
By default, this relies on an `arrow` connection, which currently lacks support for some more complex windowed operations in `dplyr`.
A user can specify the option `to_duckdb = TRUE` in `gbif_remote()` (or simply pass the connection to `arrow::to_duckdb()`) to create
a `duckdb` connection. This is slightly slower at this time.
Keep in mind that as with any database connection, to use non-`dplyr` functions the user will generally need to call `dplyr::collect()`,
which pulls the data into working memory.
Be sure to subset the data appropriately first (e.g. with `filter`, `summarise`, etc), as attempting to `collect()` a large
table will probably exceed available RAM and crash your R session!
When using a `gbif_remote()` connection,
all I/O operations will be conducted over the network storage instead of your local disk,
without downloading the full dataset first.
Consequently, this mechanism will perform best on platforms with faster network connections.
These operations will be considerably slower than they would be if you download the entire dataset first
(see below, unless you are on an AWS cloud instance in the same region as the remote host), but this does
avoid the download step all-together, which may be necessary if you do not have 100+ GB free storage space
or the time to download the whole dataset first (e.g. for one-off queries).
### Local data
For extended analysis of GBIF, users may prefer to download the entire GBIF parquet data first.
This requires over 100 GB free disk space, and will be a time-consuming process the first time.
However, once downloaded, future queries will run much much faster, particularly if you are network-limited.
Users can download the current release of GBIF to local storage like so:
```{r download, eval=FALSE}
gbif_download()
```
By default, this will download to the dir given by `gbif_dir()`.
An alternative directory can be provided by setting the environmental variable, `GBIF_HOME`,
or providing the path to the directory containing the parquet files directly.
Once you have downloaded the parquet-formatted GBIF data,
`gbif_local()` will establish a connection to these local parquet files.
```{r local}
gbif <- gbif_local()
gbif
```
```{r colnames}
colnames(gbif)
```
Now, we can use `dplyr` to perform standard queries:
```{r growth}
growth <- gbif %>%
filter(phylum == "Chordata", year > 1990) %>%
count(class, year) %>% arrange(year)
growth
```
Recall that when database connections in `dplyr`, the data remains in the database (i.e. on disk, not in working RAM).
This is fine for any further operations using `dplyr`/`tidyr` functions which can be translated into SQL.
Using such functions we can usually reduce our resulting table to something much smaller,
which can then be pulled into memory in R for further analysis using `collect()`:
```{r plot}
library(ggplot2)
library(forcats)
# GBIF: the global bird information facility?
growth %>%
collect() %>%
mutate(class = fct_lump_n(class, 6)) %>%
ggplot(aes(year, n, fill=class)) + geom_col() +
ggtitle("GBIF observations of vertebrates by class")
```
## Visualizing all of GBIF
Database operations such as rounding provide an easy way to "rasterize" the data for spatial visualizations.
Here we quickly generate where color intensity reflects the logarithmic occurrence count in that pixel:
```{r}
library(terra)
library(viridisLite)
df <- gbif |>
mutate(latitude = round(decimallatitude,1),
longitude = round(decimallongitude,1)) |>
count(longitude, latitude) |>
collect() |>
mutate(n = log(n)) |>
filter(!is.na(n))
r <- rast(df, crs="epsg:4326")
plot(r, col= viridis(1e3), legend=FALSE, maxcell=6e6, colNA="black", axes=FALSE)
```
## Performance notes
Because `parquet` is a columnar-oriented dataset, performance can be improved by including a `select()` call at the end of a dplyr function chain to only return the columns you actually need. This can be particularly helpful on remote connections using `gbif_remote()`.
```{r include=FALSE}
Sys.unsetenv("GBIF_HOME")
codemeta::write_codemeta()
```