Skip to content

Commit

Permalink
Merge pull request #76 from sebpardo/master
Browse files Browse the repository at this point in the history
Update internal taxonomy file to reflect 2019 Taxonomy update
  • Loading branch information
sebpardo authored Oct 23, 2019
2 parents fb74922 + 65ce423 commit 67c98e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Binary file modified R/sysdata.rda
Binary file not shown.
8 changes: 7 additions & 1 deletion data-raw/tax.R
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# eBird taxonomy to look up species codes
#
# This creates the internal taxonomy data frame used by rebird, which
# is stored ind 'R/sysdata.rda'. We update the package in CRAN when
# the eBird taxonomy update is completed, but in the event you need
# to update the taxonomy yourself you can do so by running the code below.

library(dplyr)

tax <- rebird::ebirdtaxonomy(cat = c("domestic", "form", "hybrid",
"intergrade", "issf", "slash", "species", "spuh")) %>%
tbl_df()

devtools::use_data(tax, overwrite = TRUE, internal = TRUE)
usethis::use_data(tax, overwrite = TRUE, internal = TRUE)

0 comments on commit 67c98e9

Please sign in to comment.