find_species_range: Find species distribution range

View source: R/find_species_range.R

find_species_rangeR Documentation

Find species distribution range

Description

Calculates the range of a species, in Km.

Usage

find_species_range(x, lon = "longitude", lat = "latitude")

Arguments

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.

Examples

x <- data.frame(longitude = runif(10, min = -180, max = 180),
  latitude = runif(10, min = -90, max = 90))
find_species_range(x)

jgmv/misctools documentation built on March 24, 2024, 12:05 p.m.