gisd: Check invasive species status for a set of species from GISD...

Description Usage Arguments Value Author(s) Examples

View source: R/gisd.R

Description

This function check which species (both plants and animals) are considered "invaders" somewhere in the world.

For that end, it checks GISD (http://www.iucngisd.org/gisd) and returns a value, either "Not in GISD" or the brief description presented in GISD.

Note that the webpage contains more information. Also note that the function won't tell you if it's exotic in your area, a lot of exotic species are not considered invaders (yet).

As expected, the function is as good as the database is, which I find quite reliable and well maintained. The database is also able to recognize a lot (but not all) of the species synonyms.

Note that eol with source of gisd or gisd100 may end up with different results as this function goes directly to the GISD website, whereas EOL only updates their GISD data occassionally. See notes in eol.

Usage

1
gisd(x, simplify = FALSE, messages = TRUE, ...)

Arguments

x

character; a vector of scientific species names in the form of c("Genus species").

simplify

logical; returns a data.frame with the species name and the values "Invasive", "Not in GISD". I recomend to check first the not simplified version (default), which contains raw information about the level of invasiveness.

messages

logical; If TRUE (default), informative messages printed.

...

curl options passed on to HttpClient

Value

A list with species names, native range countries, and invasive range countries

Author(s)

Ignasi Bartomeus nacho.bartomeus@gmail.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
sp <- c("Carpobrotus edulis", "Rosmarinus officinalis")
## first species is invasive, second one is not.
gisd(sp)
gisd(sp, simplify = TRUE)

sp <- c("Carpobrotus edulis", "Rosmarinus officinalis", "Acacia mangium",
"Archontophoenix cunninghamiana", "Antigonon leptopus")
gisd(sp)
gisd(sp, simplify = TRUE)

## End(Not run)

originr documentation built on July 2, 2020, 2:53 a.m.