Description Usage Arguments Value Author(s) Examples
Used by the AAO project.
1 |
c |
An authenticated CURL handle. |
A list of names.
Ed Baker
1 2 3 4 5 6 7 8 9 10 11 12 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
bioacoustica.getOrthopteraNamesNoSubgenus <- function(c) {
ba_names <- unique(read.csv(text = DrupalR::drupalr.get("http://bio.acousti.ca/", "aao/orthoptera", c)))
ba_subspecies <- unique(read.csv(text = DrupalR::drupalr.get("http://bio.acousti.ca/", "aao/orthoptera/subspecies", c)))
ba_names <- rbind(ba_names, ba_subspecies)
ba_names$SupertreeTaxon <- gsub(' ', '_', ba_names$SupertreeTaxon)
return(ba_names)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.