View source: R/find_species_range.R
find_species_range | R Documentation |
Calculates the range of a species, in Km.
find_species_range(x, lon = "longitude", lat = "latitude")
x |
data frame with the coordinates of the species occurrence. |
lon |
name of data frame column with the longitude data. |
lat |
of data frame column with the latitude data. |
x <- data.frame(longitude = runif(10, min = -180, max = 180),
latitude = runif(10, min = -90, max = 90))
find_species_range(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.