eBird is an online tool for recording bird observations. Since its inception, nearly 500 million records of bird sightings (i.e. combinations of location, date, time, and bird species) have been collected, making eBird one of the largest citizen science projects in history and an extremely valuable resource for bird research and conservation. The full eBird database is packaged as a text file and available for download as the eBird Basic Dataset (EBD). Due to the large size of this dataset, it must be filtered to a smaller subset of desired observations before reading into R. This filtering is most efficiently done using AWK, a Unix utility and programming language for processing column formatted text data. This package acts as a front end for AWK, allowing users to filter eBird data before import into R.
This vignette is divided into three sections. The first section provides background on the eBird data and motivation for the development of this package. The second section outlines the use of auk
for filtering text file to produce a presence-only dataset. The final section demonstrates how auk
can be used to produce zero-filled, presence-absence (or more correctly presence–non-detection) data, a necessity for many modeling and analysis applications.
This package uses the command-line program AWK to extract subsets of the eBird Basic Dataset for use in R. This is a multi-step process:
auk_species
to filter by species. At this stage the filters are only set up, no actual filtering is done until the next step.Because the eBird dataset is so large, step 3 typically takes several hours to run. Here’s a simple example that extract all Canada Jay records from within Canada.
library(auk)
# path to the ebird data file, here a sample included in the package
# in practice, provide path to ebd, e.g. input_file <- "data/ebd_relFeb-2018.txt"
<- system.file("extdata/ebd-sample.txt", package = "auk")
input_file # output text file
<- "ebd_filtered_grja.txt"
output_file <- input_file %>%
ebird_data # 1. reference file
auk_ebd() %>%
# 2. define filters
auk_species(species = "Canada Jay") %>%
auk_country(country = "Canada") %>%
# 3. run filtering
auk_filter(file = output_file) %>%
# 4. read text file into r data frame
read_ebd()
For those not familiar with the pipe operator (%>%
), the above code could be rewritten:
<- system.file("extdata/ebd-sample.txt", package = "auk")
input_file <- "ebd_filtered_grja.txt"
output_file <- auk_ebd(input_file)
ebd <- auk_species(ebd, species = "Canada Jay")
ebd_filters <- auk_country(ebd_filters, country = "Canada")
ebd_filters <- auk_filter(ebd_filters, file = output_file)
ebd_filtered <- read_ebd(ebd_filtered) ebd_df
The eBird database currently contains nearly 500 million bird observations, and this rate of increase is accelerating as new users join eBird. These data are an extremely valuable tool both for basic science and conservation; however, given the sheer amount of data, accessing eBird data poses a unique challenge. Currently, access to the complete set of eBird observations is provided via the eBird Basic Dataset (EBD). This is a tab-separated text file, released quarterly, containing all validated bird sightings in the eBird database at the time of release. Each row corresponds to the sighting of a single species within a checklist and, in addition to the species and number of individuals reported, information is provided at the checklist level (location, time, date, search effort, etc.).
In addition, eBird provides a Sampling Event Data file that contains the checklist-level data for every valid checklist submitted to eBird, including checklists for which no species of birds were reported. In this file, each row corresponds to a checklist and only the checklist-level variables are included, not the associated bird data. While the eBird Basic Dataset provides presence-only data, it can be combined with the Sampling Event Data file to produce presence-absence data. This process is described below.
For full metadata on the both datasets, consult the documentation provided when the files are downloaded.
auk
vs. rebird
Those interested in eBird data may also want to consider rebird
, an R package that provides an interface to the eBird APIs. The functions in rebird
are mostly limited to accessing recent (i.e. within the last 30 days) observations, although ebirdfreq()
does provide historical frequency of observation data. In contrast, auk
gives access to the full set of ~ 500 million eBird observations. For most ecological applications, users will require auk
; however, for some use cases, e.g. building tools for birders, rebird
provides a quick and easy way to access data.
To access eBird data, begin by creating an eBird account and signing in. Then visit the Download Data page. eBird data access is free; however, you will need to request access in order to obtain access to the EBD. Filling out the access request form allows eBird to keep track of the number of people using the data and obtain information on the applications for which the data are used
Once you have access to the data, proceed to the download page. There are two download options: prepackage download and custom download. Downloading the prepackaged option gives you access to the full global dataset. If you choose this route, you’ll likely want to download both the EBD (~ 25 GB) and corresponding Sampling Event Data (~ 2.5 GB). If you know you’re likely to only need data for a single species, or a small region, you can request a custom download be prepared consisting of only a subset of the data. This will result in significantly smaller files; however, note that custom requests that would result in huge numbers of checklists (e.g. all records from the US) won’t work. In either case, download and decompress the files.
This package comes with two example datasets. The first is suitable for practicing filtering the EBD and producing presence-only data. It’s a sample of 500 records from the EBD. It contains data from North and Central America from 2010-2012 on 4 jay species: Canada Jay, Blue Jay, Steller’s Jay, and Green Jay. It can be accessed with:
library(auk)
library(dplyr)
system.file("extdata/ebd-sample.txt", package = "auk")
The second is suitable for producing zero-filled, presence-absence data. It contains every sighting from Singapore in 2012 of Collared Kingfisher, White-throated Kingfisher, and Blue-eared Kingfisher. The full Sampling Event Data file is also included, and contains all checklists from Singapore in 2012. These files can be accessed with:
# ebd
system.file("extdata/zerofill-ex_ebd.txt", package = "auk")
# sampling event data
system.file("extdata/zerofill-ex_sampling.txt", package = "auk")
Important note: in this vignette, system.file()
is used to return the path to the example data included in this package. When using auk
in practice, provide the path to the location of the EBD on your computer, this could be a relative path, e.g. "data/ebd_relFeb-2018.txt"
, or an absolute path, e.g. "~/ebird/ebd_relFeb-2018/ebd_relFeb-2018.txt"
.
R typically works with objects in memory and, as a result, there is a hard limit on the size of objects that can be brought into R. Because eBird contains nearly 500 million sightings, the eBird Basic Dataset is an inherently large file (~150 GB uncompressed) and therefore impossible to manipulate directly in R. Thus it is generally necessary to create a subset of the file outside of R, then import this smaller subset for analysis.
AWK is a Unix utility and programming language for processing column formatted text data. It is highly flexible and extremely fast, making it a valuable tool for pre-processing the eBird data in order to create the smaller subset of data that is required. Users of the data can use AWK to produce a smaller file, subsetting the full text file taxonomically, spatially, or temporally, in order to produce a smaller file that can then be loaded in to R for visualization, analysis, and modelling.
Although AWK is a powerful tool, it has three disadvantages: it requires learning the syntax of a new language, it is only accessible via the command line, and it results in a portion of your workflow existing outside of R. This package is a wrapper for AWK specifically designed for filtering eBird data The goal is to ease the use of the this data by removing the hurdle of learning and using AWK.
Linux and Mac users should already have AWK installed on their machines, however, Windows uses will need to install Cygwin to gain access to AWK. Note that Cygwin should be installed in the default location (C:/cygwin/bin/gawk.exe
or C:/cygwin64/bin/gawk.exe
) in order for auk
to work. To check that AWK is installed and can be found run auk_getpath()
.
If AWK is installed in a non-standard location, or can’t be found by auk
, you can manually set the path to AWK. To do so, set the AWK_PATH
environment in your .Renviron
file. For example, Mac and Linux users might add the following line:
AWK_PATH=/usr/bin/awk
while Windows users might add:
AWK_PATH=C:/cygwin64/bin/gawk.exe
This package contains a current (as of the time of package release) version of the bird taxonomy used by eBird. This taxonomy determines the species that can be reported in eBird and therefore the species that users of auk
can extract from the EBD. eBird releases an updated taxonomy once a year, typically in August, at which time auk
will be updated to include the current taxonomy. When using auk
, users should be careful to ensure that the version they’re using is in sync with the EBD file they’re working with. This is most easily accomplished by always using the most recent version of auk
and the most recent release of the eBird Basic Dataset
The most common use of the eBird data is to produce a set of bird sightings, i.e. where and when was a given species seen. For example, this type of data could be used to produce a map of sighting locations, or to determine if a given bird has been seen in an area of interest. For more analytic work, such as species distribution modeling, presence and absence data are likely preferred (see Guillera-Arroita et al. 2015). Producing presence-absence data will be covered in the next section.
auk_ebd
objectThis package uses an auk_ebd
object to keep track of the input data file, any filters defined, and the output file that is produced after filtering has been executed. By keeping everything wrapped up in one object, the user can keep track of exactly what set of input data and filters produced any given output data. To set up the initial auk_ebd
object, use auk_ebd()
:
<- system.file("extdata/ebd-sample.txt", package = "auk") %>%
ebd auk_ebd()
ebd#> Input
#> EBD: /private/var/folders/mg/qh40qmqd7376xn8qxd6hm5lwjyy0h2/T/RtmpO7h3A3/Rinst22f114c07402/auk/extdata/ebd-sample.txt
#>
#> Output
#> Filters not executed
#>
#> Filters
#> Species: all
#> Countries: all
#> States: all
#> Counties: all
#> BCRs: all
#> Bounding box: full extent
#> Years: all
#> Date: all
#> Start time: all
#> Last edited date: all
#> Protocol: all
#> Project code: all
#> Duration: all
#> Distance travelled: all
#> Records with breeding codes only: no
#> Complete checklists only: no
auk
uses a pipeline-based workflow for defining filters, which can then be compiled into an AWK script. Any of the following filters can be applied:
auk_species()
: filter by species using common or scientific names.auk_country()
: filter by country using the standard English names or ISO 2-letter country codes.auk_state()
: filter by state using the eBird state codes, see ?ebird_states
.auk_bcr()
: filter by Bird Conservation Region (BCR) using BCR codes, see ?bcr_codes
.auk_bbox()
: filter by spatial bounding box, i.e. a range of latitudes and longitudes in decimal degrees.auk_date()
: filter to checklists from a range of dates. To extract observations from a range of dates, regardless of year, use the wildcard “*
” in place of the year, e.g. date = c("*-05-01", "*-06-30")
for observations from May and June of any year.auk_last_edited()
: filter to checklists from a range of last edited dates, useful for extracting just new or recently edited data.auk_protocol()
: filter to checklists that following a specific search protocol, either stationary, traveling, or casual.auk_project()
: filter to checklists collected as part of a specific project (e.g. a breeding bird survey).auk_time()
: filter to checklists started during a range of times-of-day.auk_duration()
: filter to checklists with observation durations within a given range.auk_distance()
: filter to checklists with distances travelled within a given range.auk_breeding()
: only retain observations that have an associate breeding bird atlas code.auk_complete()
: only retain checklists in which the observer has specified that they recorded all species seen or heard. It is necessary to retain only complete records for the creation of presence-absence data, because the “absence” information is inferred by the lack of reporting of a species on checklists.Note that all of the functions listed above only modify the auk_ebd
object, in order to define the filters. Once the filters have been defined, the filtering is actually conducted using auk_filter()
.
<- ebd %>%
ebd_filters # species: common and scientific names can be mixed
auk_species(species = c("Canada Jay", "Cyanocitta cristata")) %>%
# country: codes and names can be mixed; case insensitive
auk_country(country = c("US", "Canada", "mexico")) %>%
# bbox: long and lat in decimal degrees
# formatted as `c(lng_min, lat_min, lng_max, lat_max)`
auk_bbox(bbox = c(-100, 37, -80, 52)) %>%
# date: use standard ISO date format `"YYYY-MM-DD"`
auk_date(date = c("2012-01-01", "2012-12-31")) %>%
# time: 24h format
auk_time(start_time = c("06:00", "09:00")) %>%
# duration: length in minutes of checklists
auk_duration(duration = c(0, 60)) %>%
# complete: all species seen or heard are recorded
auk_complete()
ebd_filters#> Input
#> EBD: /private/var/folders/mg/qh40qmqd7376xn8qxd6hm5lwjyy0h2/T/RtmpO7h3A3/Rinst22f114c07402/auk/extdata/ebd-sample.txt
#>
#> Output
#> Filters not executed
#>
#> Filters
#> Species: Cyanocitta cristata, Perisoreus canadensis
#> Countries: CA, MX, US
#> States: all
#> Counties: all
#> BCRs: all
#> Bounding box: Lon -100 - -80; Lat 37 - 52
#> Years: all
#> Date: 2012-01-01 - 2012-12-31
#> Start time: 06:00-09:00
#> Last edited date: all
#> Protocol: all
#> Project code: all
#> Duration: 0-60 minutes
#> Distance travelled: all
#> Records with breeding codes only: no
#> Complete checklists only: yes
In all cases, extensive checks are performed to ensure filters are valid. For example, species are checked against the official eBird taxonomy and countries are checked using the countrycode
package. This is particularly important because filtering is a time consuming process, so catching errors in advance can avoid several hours of wasted time.
Each of the functions described in the Defining filters section only defines a filter. Once all of the required filters have been set, auk_filter()
should be used to compile them into an AWK script and execute it to produce an output file. So, as an example of bringing all of these steps together, the following commands will extract all Canada Jay and Blue Jay records from Canada and save the results to a tab-separated text file for subsequent use:
<- "ebd_filtered_blja-grja.txt"
output_file <- system.file("extdata/ebd-sample.txt", package = "auk") %>%
ebd_jays auk_ebd() %>%
auk_species(species = c("Canada Jay", "Cyanocitta cristata")) %>%
auk_country(country = "Canada") %>%
auk_filter(file = output_file)
Filtering the full EBD typically takes at least a couple hours, so set it running then go grab lunch!
eBird Basic Dataset files can be read with read_ebd()
. This is a wrapper around readr::read_delim()
. read_ebd()
uses stringsAsFactors = FALSE
, quote = ""
, sets column classes, and converts variable names to snake_case
.
system.file("extdata/ebd-sample.txt", package = "auk") %>%
read_ebd() %>%
glimpse()
#> Rows: 494
#> Columns: 45
#> $ checklist_id <chr> "S6852862", "S14432467", "S39033556", "S3830…
#> $ global_unique_identifier <chr> "URN:CornellLabOfOrnithology:EBIRD:OBS979359…
#> $ last_edited_date <chr> "2016-02-22 14:59:49", "2013-06-16 17:34:19"…
#> $ taxonomic_order <dbl> 20145, 20145, 20145, 20145, 20145, 20145, 20…
#> $ category <chr> "species", "species", "species", "species", …
#> $ common_name <chr> "Green Jay", "Green Jay", "Green Jay", "Gree…
#> $ scientific_name <chr> "Cyanocorax yncas", "Cyanocorax yncas", "Cya…
#> $ observation_count <chr> "4", "2", "1", "1", "2", "X", "6", "3", "3",…
#> $ breeding_code <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ breeding_category <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ age_sex <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ country <chr> "Mexico", "Mexico", "Mexico", "Mexico", "Mex…
#> $ country_code <chr> "MX", "MX", "MX", "MX", "MX", "MX", "MX", "M…
#> $ state <chr> "Yucatan", "Chiapas", "Chiapas", "Chiapas", …
#> $ state_code <chr> "MX-YUC", "MX-CHP", "MX-CHP", "MX-CHP", "MX-…
#> $ county <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ county_code <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ iba_code <chr> NA, NA, NA, NA, "MX_169", NA, NA, NA, "MX_17…
#> $ bcr_code <int> 56, 60, 60, 60, 60, 55, 55, 60, 56, 55, 55, …
#> $ usfws_code <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ atlas_block <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ locality <chr> "Yuc. Hacienda Chichen", "Berlin2_Punto_06",…
#> $ locality_id <chr> "L989845", "L2224225", "L6247542", "L6120049…
#> $ locality_type <chr> "P", "P", "P", "P", "P", "H", "P", "P", "P",…
#> $ latitude <dbl> 20.67682, 15.77522, 15.77360, 15.82947, 15.7…
#> $ longitude <dbl> -88.56896, -92.96472, -93.00260, -92.92293, …
#> $ observation_date <date> 2010-09-05, 2011-08-18, 2012-02-02, 2011-12…
#> $ time_observations_started <chr> "06:30:00", "08:00:00", "09:13:00", "06:40:0…
#> $ observer_id <chr> "obsr55719", "obsr313215", "obsr313215", "ob…
#> $ sampling_event_identifier <chr> "S6852862", "S14432467", "S39033556", "S3830…
#> $ protocol_type <chr> "Traveling", "Traveling", "Stationary", "Sta…
#> $ protocol_code <chr> "P22", "P22", "P21", "P21", "P22", "P62", "P…
#> $ project_code <chr> "EBIRD", "EBIRD_MEX", "EBIRD_MEX", "EBIRD", …
#> $ duration_minutes <int> 90, 10, 10, 10, 10, 120, 30, 10, 80, 30, 30,…
#> $ effort_distance_km <dbl> 1.000, 0.257, NA, NA, 0.257, NA, NA, NA, 1.2…
#> $ effort_area_ha <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ number_observers <int> 3, 1, 1, 1, 1, 2, 2, 1, 13, 2, 1, 1, 1, 1, 1…
#> $ all_species_reported <lgl> TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TR…
#> $ group_identifier <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ has_media <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
#> $ approved <lgl> TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TR…
#> $ reviewed <lgl> FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, FA…
#> $ reason <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ trip_comments <chr> NA, "Alonso Gomez Hdz Monitoreo Comunitario,…
#> $ species_comments <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
auk_filter()
returns an auk_ebd
object with the output file paths stored in it. This auk_ebd
object can then be passed directly to auk_read()
, allowing for a complete pipeline. For example, we can create an auk_ebd
object, define filters, filter with AWK, and read in the results all at once.
<- "ebd_filtered_blja-grja.txt"
output_file <- system.file("extdata/ebd-sample.txt", package = "auk") %>%
ebd_df auk_ebd() %>%
auk_species(species = c("Canada Jay", "Cyanocitta cristata")) %>%
auk_country(country = "Canada") %>%
auk_filter(file = output_file) %>%
read_ebd()
The AWK script can be saved for future reference by providing an output filename to awk_file
. In addition, by setting execute = FALSE
the AWK script will be generated but not run.
<- system.file("extdata/ebd-sample.txt", package = "auk") %>%
awk_script auk_ebd() %>%
auk_species(species = c("Canada Jay", "Cyanocitta cristata")) %>%
auk_country(country = "Canada") %>%
auk_filter(awk_file = "awk-script.txt", execute = FALSE)
# read back in and prepare for printing
<- readLines(awk_script)
awk_file unlink("awk-script.txt")
!grepl("^[[:space:]]*$", awk_file)] %>%
awk_file[paste0(collapse = "\n") %>%
cat()
#> BEGIN {
#> FS = OFS = " "
#> split("Cyanocitta cristata Perisoreus canadensis", speciesValues, " ")
#> for (i in speciesValues) species[speciesValues[i]] = 1
#> split("CA", countryValues, " ")
#> for (i in countryValues) countries[countryValues[i]] = 1
#> }
#> {
#> keep = 1
#> # filters
#> if (keep == 1 && ($6 in species)) {
#> keep = 1
#> } else {
#> keep = 0
#> }
#> if (keep == 1 && ($14 in countries)) {
#> keep = 1
#> } else {
#> keep = 0
#> }
#> # keeps header
#> if (NR == 1) {
#> keep = 1
#> }
#> if (keep == 1) {
#> print $0
#> }
#> }
eBird allows observers birding together to share checklists. This process creates a new copy of the original checklist for each observer with whom the original checklist was shared; these copies can then be tweaked to add or remove some species that weren’t seen by the entire group, or altering the sampling-event data. For most applications, it’s best to remove these duplicate (or near-duplicate) checklists. auk_unique()
removes duplicates resulting from group checklists by selecting the observation with the lowest sampling_event_identifier
(a unique ID for each checklist); this is the original checklists from which shared copies were generated. In addition to removing duplicates, a checklist_id
field is added, which is equal to the sampling_event_identifier
for non-group checklists and the group_identifier
for grouped checklists. After running auk_unique()
, every species will have a single entry for each checklist_id
.
read_ebd()
automatically runs auk_unique()
, however, we can use unique = FALSE
then manually run auk_unique()
.
# read in an ebd file and don't automatically remove duplicates
<- system.file("extdata/ebd-sample.txt", package = "auk") %>%
ebd_dupes read_ebd(unique = FALSE)
# remove duplicates
<- auk_unique(ebd_dupes)
ebd_unique # compare number of rows
nrow(ebd_dupes)
#> [1] 500
nrow(ebd_unique)
#> [1] 494
The eBird Basic Dataset includes both true species and other taxa, including domestics, hybrids, subspecies, “spuhs”, and recognizable forms. In some cases, a checklist may contain multiple records for the same species, for example, both Audubon’s and Myrtle Yellow-rumped Warblers, as well as some records that are not resolvable to species, for example, “warbler sp.”. For most use cases, a single record for each species on each checklist is desired. The function ebd_rollup()
addresses these cases by removing taxa not identifiable to species and rolling up taxa identified below species level to a single record for each species in each checklist.
# read in sample data without rolling up
<- system.file("extdata/ebd-rollup-ex.txt", package = "auk") %>%
ebd read_ebd(rollup = FALSE)
# apply roll up
<- auk_rollup(ebd)
ebd_ru
# all taxa not identifiable to species are dropped
# taxa below species have been rolled up to species
unique(ebd$category)
#> [1] "domestic" "form" "hybrid" "intergrade" "slash"
#> [6] "spuh" "species" "issf"
unique(ebd_ru$category)
#> [1] "species"
# yellow-rump warbler subspecies rollup
# without rollup, there are three observations
%>%
ebd filter(common_name == "Yellow-rumped Warbler") %>%
select(checklist_id, category, common_name, subspecies_common_name,
observation_count)#> # A tibble: 3 × 5
#> checklist_id category common_name subspecies_commo… observation_cou…
#> <chr> <chr> <chr> <chr> <chr>
#> 1 S8949407 species Yellow-rumped Warbler <NA> 1
#> 2 S8949407 issf Yellow-rumped Warbler Yellow-rumped Wa… 13
#> 3 S8949407 issf Yellow-rumped Warbler Yellow-rumped Wa… 17
# with rollup, they have been combined
%>%
ebd_ru filter(common_name == "Yellow-rumped Warbler") %>%
select(checklist_id, category, common_name, observation_count)
#> # A tibble: 1 × 4
#> checklist_id category common_name observation_count
#> <chr> <chr> <chr> <chr>
#> 1 S8949407 species Yellow-rumped Warbler 31
By default, read_ebd()
calls ebd_rollup()
when importing an eBird Basic Dataset file. To avoid this, and retain subspecies, use read_ebd(rollup = FALSE)
.
For many applications, presence-only data are sufficient; however, for modeling and analysis, presence-absence data are required. eBird observers only explicitly collect presence data, but they have the option of flagging their checklist as “complete” meaning that they are reporting all the species they saw or heard, and identified. Therefore, given a list of positive sightings (the basic dataset) and a list of all checklists (the sampling event data) it is possible to infer absences by filling zeros for all species not explicitly reported. This section of the vignette describes functions for producing zero-filled, presence-absence data.
When preparing to create zero-filled data, the eBird Basic Dataset and sampling event data must be filtered to the same set of checklists to ensure consistency. To ensure these two datasets are synced, provide both to auk_ebd
, then filter as described in the previous section. This will ensure that all the filters applied to the ebd (except species) will be applied to the sampling event data so that we’ll be working with the same set of checklists. It is critical that auk_compete()
is called, since complete checklists are a requirement for zero-filling.
For example, the following filters to only include sightings of Collared Kingfisher between 6 and 10am:
# to produce zero-filled data, provide an EBD and sampling event data file
<- system.file("extdata/zerofill-ex_ebd.txt", package = "auk")
f_ebd <- system.file("extdata/zerofill-ex_sampling.txt", package = "auk")
f_smp <- auk_ebd(f_ebd, file_sampling = f_smp) %>%
filters auk_species("Collared Kingfisher") %>%
auk_time(c("06:00", "10:00")) %>%
auk_complete()
filters#> Input
#> EBD: /private/var/folders/mg/qh40qmqd7376xn8qxd6hm5lwjyy0h2/T/RtmpO7h3A3/Rinst22f114c07402/auk/extdata/zerofill-ex_ebd.txt
#> Sampling events: /private/var/folders/mg/qh40qmqd7376xn8qxd6hm5lwjyy0h2/T/RtmpO7h3A3/Rinst22f114c07402/auk/extdata/zerofill-ex_sampling.txt
#>
#> Output
#> Filters not executed
#>
#> Filters
#> Species: Todiramphus chloris
#> Countries: all
#> States: all
#> Counties: all
#> BCRs: all
#> Bounding box: full extent
#> Years: all
#> Date: all
#> Start time: 06:00-10:00
#> Last edited date: all
#> Protocol: all
#> Project code: all
#> Duration: all
#> Distance travelled: all
#> Records with breeding codes only: no
#> Complete checklists only: yes
As with presence-only data, call auk_filter()
to actually run AWK. Output files must be provided for both the EBD and sampling event data.
## ebd_sed_filtered <- auk_filter(filters,
## file = "ebd-filtered.txt",
## file_sampling = "sampling-filtered.txt")
ebd_sed_filtered#> Input
#> EBD: /private/var/folders/mg/qh40qmqd7376xn8qxd6hm5lwjyy0h2/T/RtmpO7h3A3/Rinst22f114c07402/auk/extdata/zerofill-ex_ebd.txt
#> Sampling events: /private/var/folders/mg/qh40qmqd7376xn8qxd6hm5lwjyy0h2/T/RtmpO7h3A3/Rinst22f114c07402/auk/extdata/zerofill-ex_sampling.txt
#>
#> Output
#> EBD: ebd-filtered.txt
#> Sampling events: sampling-filtered.txt
#>
#> Filters
#> Species: Todiramphus chloris
#> Countries: all
#> States: all
#> Counties: all
#> BCRs: all
#> Bounding box: full extent
#> Years: all
#> Date: all
#> Start time: 06:00-10:00
#> Last edited date: all
#> Protocol: all
#> Project code: all
#> Duration: all
#> Distance travelled: all
#> Records with breeding codes only: no
#> Complete checklists only: yes
The filtered datasets can now be combined into a zero-filled, presence-absence dataset using auk_zerofill()
.
## ebd_zf <- auk_zerofill(ebd_sed_filtered)
ebd_zf#> Zero-filled EBD: 168 unique checklists, for 1 species.
Filenames or data frames of the basic dataset and sampling event data can also be passed to auk_zerofill()
; see the documentation for these cases. By default, auk_zerofill()
returns an auk_zerofill
object consisting of two data frames that can be linked by a common checklist_id
field:
ebd_zf$sampling_events
contains the checklist informationebd_zf$observations
contains the species counts and a binary presence-absence variablehead(ebd_zf$observations)
#> # A tibble: 6 × 4
#> checklist_id scientific_name observation_count species_observed
#> <chr> <chr> <chr> <lgl>
#> 1 G1733362 Todiramphus chloris X TRUE
#> 2 G2469935 Todiramphus chloris 0 FALSE
#> 3 G2469959 Todiramphus chloris 0 FALSE
#> 4 G2469960 Todiramphus chloris 1 TRUE
#> 5 G2469973 Todiramphus chloris 1 TRUE
#> 6 G2470208 Todiramphus chloris 0 FALSE
glimpse(ebd_zf$sampling_events)
#> Rows: 168
#> Columns: 31
#> $ checklist_id <chr> "S11332512", "S13581013", "S38296538", "S382…
#> $ last_edited_date <chr> "2017-05-27 10:25:40", "2017-05-27 09:21:26"…
#> $ country <chr> "Singapore", "Singapore", "Singapore", "Sing…
#> $ country_code <chr> "SG", "SG", "SG", "SG", "SG", "SG", "SG", "S…
#> $ state <chr> "Singapore", "Singapore", "Singapore", "Sing…
#> $ state_code <chr> "SG-", "SG-", "SG-", "SG-", "SG-", "SG-", "S…
#> $ county <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ county_code <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ iba_code <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ bcr_code <int> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ usfws_code <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ atlas_block <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ locality <chr> "Singapore - Esplanade", "Boat Quay, Singapo…
#> $ locality_id <chr> "L1654642", "L2090485", "L3901781", "L399969…
#> $ locality_type <chr> "P", "P", "H", "P", "H", "H", "H", "H", "H",…
#> $ latitude <dbl> 1.289548, 1.287985, 1.395726, 1.407224, 1.37…
#> $ longitude <dbl> 103.8632, 103.8506, 103.9257, 103.8595, 103.…
#> $ observation_date <date> 2012-08-12, 2012-01-15, 2012-07-11, 2012-12…
#> $ time_observations_started <chr> "09:30:00", "09:00:00", "07:30:00", "07:00:0…
#> $ observer_id <chr> "obs160139", "obs286526", "obs524811", "obs5…
#> $ sampling_event_identifier <chr> "S11332512", "S13581013", "S38296538", "S382…
#> $ protocol_type <chr> "Traveling", "Traveling", "Stationary", "Sta…
#> $ protocol_code <chr> "P22", "P22", "P21", "P21", "P22", "P22", "P…
#> $ project_code <chr> "EBIRD", "EBIRD", "EBIRD", "EBIRD", "EBIRD",…
#> $ duration_minutes <int> 90, 60, 60, 90, 300, 300, 75, 300, 420, 510,…
#> $ effort_distance_km <dbl> 1.609, 3.219, NA, NA, 3.219, 3.219, 0.805, 4…
#> $ effort_area_ha <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ number_observers <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3,…
#> $ all_species_reported <lgl> TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TRUE, TR…
#> $ group_identifier <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, …
#> $ trip_comments <chr> NA, NA, NA, NA, "Trip report;--http://redgan…
This format is efficient for storage because the checklist information isn’t duplicated, however, a single flat data frame is often required for analysis. To collapse the two data frames together use collapse_zerofill()
, or call auk_zerofill()
with collapse = TRUE
.
## ebd_zf_df <- auk_zerofill(ebd_filtered, collapse = TRUE)
<- collapse_zerofill(ebd_zf)
ebd_zf_df class(ebd_zf_df)
#> [1] "tbl_df" "tbl" "data.frame"
ebd_zf_df#> # A tibble: 168 × 34
#> checklist_id last_edited_date country country_code state state_code county
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 S11332512 2017-05-27 10:25… Singapo… SG Singa… SG- <NA>
#> 2 S13581013 2017-05-27 09:21… Singapo… SG Singa… SG- <NA>
#> 3 S38296538 2017-08-10 11:26… Singapo… SG Singa… SG- <NA>
#> 4 S38296842 2017-07-27 06:26… Singapo… SG Singa… SG- <NA>
#> 5 S10708009 2017-07-05 13:17… Singapo… SG Singa… SG- <NA>
#> 6 S10708011 2017-07-05 13:17… Singapo… SG Singa… SG- <NA>
#> 7 S10926976 2017-07-05 13:20… Singapo… SG Singa… SG- <NA>
#> 8 S10708018 2018-08-30 12:51… Singapo… SG Singa… SG- <NA>
#> 9 S10708012 2017-05-28 05:54… Singapo… SG Singa… SG- <NA>
#> 10 S16642917 2017-10-19 12:47… Singapo… SG Singa… SG- <NA>
#> # … with 158 more rows, and 27 more variables: county_code <chr>,
#> # iba_code <chr>, bcr_code <int>, usfws_code <chr>, atlas_block <chr>,
#> # locality <chr>, locality_id <chr>, locality_type <chr>, latitude <dbl>,
#> # longitude <dbl>, observation_date <date>, time_observations_started <chr>,
#> # observer_id <chr>, sampling_event_identifier <chr>, protocol_type <chr>,
#> # protocol_code <chr>, project_code <chr>, duration_minutes <int>,
#> # effort_distance_km <dbl>, effort_area_ha <dbl>, number_observers <int>, …
This package is based on the AWK scripts provided in a presentation given by Wesley Hochachka, Daniel Fink, Tom Auer, and Frank La Sorte at the 2016 NAOC eBird Data Workshop on August 15, 2016.
auk
benefited significantly from the rOpenSci review process, including helpful suggestions from Auriel Fournier and Edmund Hart.
eBird Basic Dataset. Version: ebd_relFeb-2018. Cornell Lab of Ornithology, Ithaca, New York. May 2013.
Guillera-Arroita, G., J.J. Lahoz-Monfort, J. Elith, A. Gordon, H. Kujala, P.E. Lentini, M.A. McCarthy, R. Tingley, and B.A. Wintle. 2015. Is my species distribution model fit for purpose? Matching data and models to applications. Global Ecology and Biogeography 24:276-292.