check_redbook {redbookperu}R Documentation

Check Species Names in the Red Book of Endemic Plants of Peru

Description

This function checks a list of species names against the Red Book of Endemic Plants of Peru database and provides information about whether a species was recorded as endemic, its current taxonomic status, and checks for misspelling typos (fuzzy match).

Usage

check_redbook(splist, tax_status = FALSE, max_distance = 0.1)

Arguments

splist

A character vector containing the species names to be checked.

tax_status

Logical value indicating whether to provide taxonomic status information. If TRUE, it will provide taxonomic status information. If FALSE, it will provide endemism information.

max_distance

Maximum allowed distance for fuzzy matching of species names.

Details

This function checks each species name in the provided list against the Red Book of Endemic Plants of Peru database. It performs fuzzy matching based on the specified maximum distance. The output could inform about taxonomic status: a) "Accepted name" if the input names recorded are valid, b) "Updated name", when the input name is currently a synonym, c) "No opinion", if the current taxonomic status of the input name is undefined, and d) "No info. available" for species names recorded in the Red Book that couldn't be found in the WCVP database for name status validation. The output name for this group of species is the name recorded in the original publication.

     The output also returns information about possible misspelling,
     adding "fuzzy match" to the output when a typo is found.

Value

A character vector with information about the taxonomic status or endemism of the provided species names.

References

Red Book of Endemic Plants of Peru The World Checklist of Vascular Plants, a continuously updated resource for exploring global plant diversity. Taxonomic Name Resolution Service - TNRS Plants of the World Online - Facilitated by the Royal Botanic Gardens - Kew.

Examples


# Example usage of the function
splist <- c("Aphelandra cuscoenses", "Sanchezia capitata",
            "Sanchezia ovata", "Piper stevensi",
            "Verbesina andinaa", "Verbesina andina")

result_tax <- check_redbook(splist, tax_status = TRUE)
print(result_tax)

result_endemism <- check_redbook(splist, tax_status = FALSE)
print(result_endemism)



[Package redbookperu version 0.0.2 Index]