Get records by single name, optional fuzzy matching
Arguments
- name
(character) a taxonomic name, required.
- fuzzy
(logical) fuzzy search. default:
TRUE
- marine_only
(logical) marine only or not. default:
TRUE
- offset
(integer) record to start at. default: 1
- ...
named curl options. see
curl::curl_options
Note
there is no underscore method like other functions in this package
as there is already a plural version: wm_records_names()
Examples
if (FALSE) { # \dontrun{
wm_records_name(name = 'Leucophaeus')
wm_records_name(name = 'Leucophaeus', fuzzy = FALSE)
wm_records_name(name = 'Leucophaeus', marine_only = FALSE)
wm_records_name(name = 'Platanista', marine_only = FALSE)
wm_records_name(name = 'Platanista', marine_only = FALSE, offset = 5)
} # }