latitude
, longitude
, and
elevation
R/utils-dataset.R
compare_latlonelv.Rd
Compare two datasets using latitude
, longitude
, and
elevation
, the
comparison is done using the function fx
, this can be a custom
function or an existing function like round
, trunc
, etc.
compare_latlonelv(x, y, join_method = dplyr::inner_join, fx = tolerance, ...)
Reference dataset.
Target dataset, this will be compared with x
.
Function to be used as the joining method between
x
and y
. Default: dplyr::inner_join
.
Comparison function, it defaults to an internal function called
tolerance
that the drops decimals (using the parameter
digits
) without rounding the numbers. Suggested base functions
are round
, trunc
, floor
, ceiling
and
signif
.
Optional parameters passed to fx
.
Table with records of y
that exist in x.