Last chance! 50% off unlimited learning
Sale ends in
gnr_resolve(names, data_source_ids = NULL, resolve_once = FALSE,
with_context = FALSE, stripauthority = FALSE, highestscore = TRUE,
best_match_only = FALSE, preferred_data_sources = NULL, http = "get",
...)
gnr_datasources
.TRUE
, response is rapid but incomplete.TRUE
a common taxonomic context is calculated for
all supplied names from matches in data sources that have classification
tree paths. Names out of determined context are pGET
gnr_datasources
gnr_resolve(names = c("Helianthus annuus", "Homo sapiens"))
gnr_resolve(names = c("Asteraceae", "Plantae"))
# Using data source 12 (Encyclopedia of Life)
sources <- gnr_datasources()
sources
eol <- sources$id[sources$title == 'EOL']
gnr_resolve(names=c("Helianthos annuus","Homo sapians"), data_source_ids=eol)
# Two species in the NE Brazil catalogue
sps <- c('Justicia brasiliana','Schinopsis brasiliensis')
gnr_resolve(names = sps, data_source_ids = 145)
# Best match only, compare the two
gnr_resolve(names = "Helianthus annuus", best_match_only = FALSE)
gnr_resolve(names = "Helianthus annuus", best_match_only = TRUE)
# Preferred data source
gnr_resolve(names = "Helianthus annuus", preferred_data_sources = c(3,4))
# Strip taxonomic authorities - default is stripauthority=FALSE
head(gnr_resolve(names = "Helianthus annuus")$results)
head(gnr_resolve(names = "Helianthus annuus", stripauthority=TRUE)$results)
Run the code above in your browser using DataLab