View source: R/get_epbc_birds.R
download_epbc | R Documentation |
Converts the lists shown at https://www.environment.gov.au/cgi-bin/sprat/public/publicthreatenedlist.pl to a table.
download_epbc()
destfile |
The file to save the epbc lists to. |
Requires the packages rvest and xml2. Worked on March 23, 2021.
A data frame of the listed species with columns for Scientific Name, Common Name, Fauna Type, Conservation Status, and a few others columns present on the website. The cell values have been processed as little as possible. So, for example, a 'Common Name' for Pseudocheirus occidentalis is Western Ringtail Possum, Ngwayir, Womp, Woder, Ngoor, Ngoolangit.
constatuses <- download_epbc() destfile = paste0("./private/data/raw/EPBClist_", Sys.Date(), ".tsv") write.table(constatuses, destfile, sep = "\t")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.