Look up options for parameters passed to each source for occ_names function
occ_names_options(from = "gbif", where = "console")
(character) Data source to get data from, any combination of gbif or bison. Case doesn't matter.
(character) One of console (print to console) or html (opens help page, if in non-interactive R session, prints help to console).
Opens up the documentation for the function that is used internally within the occ function for each source.
Any of the parameters passed to e.g. rgbif::name_lookup()
from the
rgbif
package can be passed in the associated gbifopts list
in occ()
.
Note that the from parameter is lowercased within the function and is
called through match.arg
first, so you can match on unique partial
strings too (e.g., 'rb' for 'rbison').
For ecoengine
, we use internal helper functions and don't import
the package, but see ?ecoengine::ee_search
for help on parameters.
# NOT RUN {
# opens up documentation for this function
occ_names_options()
# Open up documentation for the appropriate search function for each source
occ_names_options('gbif')
occ_names_options('bison')
# Or open in html version
occ_names_options('bison', 'html')
# }
Run the code above in your browser using DataLab