This function removes duplicated points from a dataframe based on specified coordinate columns.
remove_duplicate_points(df, coords = c("decimalLongitude", "decimalLatitude"))
A dataframe without duplicated points.
A dataframe object with each row representing one point.
A character vector specifying the names of the coordinate columns used for identifying duplicate points. Default is c("decimalLongitude", "decimalLatitude").