clean_dup: Function to clean duplicated longitude and latitude data

Description Usage Arguments Value Examples

View source: R/clean_dup.R

Description

Clean duplicated longitude and latitude data using threshold distance which is a distance (in grades) between points to be considered duplicates.

Usage

1
clean_dup(data, longitude, latitude, threshold = 0)

Arguments

data

A data.frame with longitude and latitude data

longitude

A character vector of the column name of longitude.

latitude

A character vector of the column name of latitude.

threshold

A numerc value representig the distance (in grades) between coordinates to be considered as a duplicate.

Value

Returns a data.frame with coordinate data from species

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# Species genus
genus <- "ambystoma"
# Species name
species <- "tigrinum"
# GBIF search
# ambystoma_tigrinum <- searh_gbif_data(genus,species,
#                                        occlim=100,
#                                        writeFile=FALSE)
# ambystoma_tigrinum_clean <- clean_dup(ambystoma_tigrinum,
#                                     longitude = "longitude",
#                                     latitude = "latitude",
#                                     threshold=0.0)
# Check the dimensions of  data
# dim(ambystoma_tigrinum)
# dim(ambystoma_tigrinum_clean)

luismurao/nichetoolbox documentation built on May 21, 2019, 8:56 a.m.