Search statuses based on a list of criteria
rt_status_search(
id = NULL,
opgroup_id = NULL,
location_id = NULL,
latitude = NULL,
longitude = NULL,
page = 1,
size = 2000,
detail = FALSE
)integer(1) [required]
an integer giving the id of the taxon in TAXREF (also called
cdNom)
integer(1) [required]
identifier of the operational group (see the list of
operational groups rt_operational_groups())
NULL or character(1) [default = NULL]
a string identifying a location
NULL or numeric(1) [default = NULL]
a latitude value
NULL or numeric(1) [default = NULL]
a longitude value
integer(1) [default = 1]
The page number returned
integer(1) [default = 2000]
The number of lines returned per page (maximum = 2000)
logical(1) [default = FALSE]
Should the table be a long table detailing all the statuses or
a compact table?
list of operational groups rt_operational_groups()
if (FALSE) { # \dontrun{
rt_status_search(id = 443800, detail = FALSE)
rt_status_search(id = 443800, detail = TRUE)
} # }