#' Get taxon table - A list of fish and non-fish species and their ITIS taxon code
#'
#' This function accesses the api endpoint for taxon records of fish and
#' non-fish species. These records include the ITIS code, common name, scientific
#' name, taxonomic rank, vert/invert classification, and HHFAU code (if applicable).
#' Different taxonomic ranks allow selection of a taxon at different levels of
#' specificity (e.g. 'Turtles/Testudines' vs. 'Eastern painted turtle').
#'
#' Current filter parameters are 'taxon', 'itiscode', 'taxon_name', 'taxon_label',
#' 'taxonomic_rank', 'vertinvert', and 'omnr_provincial_code'.
#'
#'
#' See
#' https://intra.glis.mnr.gov.on.ca/common/api/v1/swagger/
#' and filter by "taxon" for the full list of available filter keys (query parameters)
#'
#' See
#' https://intra.glis.mnr.gov.on.ca/common/taxon/
#' for the full list of taxon codes
#'
#'
#' @param filter_list list
#'
#' @param to_upper - should the names of the dataframe be converted to
#' upper case?
#'
#' @author Rachel Henderson \email{rachel.henderson@@ontario.ca}
#' @return dataframe
#' @export
#' @examples
#'
#' taxa_list <- get_taxon_table()
#' order_list <- get_taxon_table(list(taxonomic_rank = "order"))
get_taxon_table <- function(filter_list = list(), to_upper = TRUE) {
query_string <- build_query_string(filter_list)
# TODO - add examples of new filters if/when they exist (e.g. taxon_label__like)
common_api_url <- get_common_portal_root()
check_filters("taxon", filter_list, "common")
my_url <- sprintf(
"%s/taxon/%s",
common_api_url,
query_string
)
payload <- api_to_dataframe(my_url)
payload <- prepare_payload(payload, to_upper)
return(payload)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.