View source: R/coord_accuracy.R
coord_accuracy | R Documentation |
convert into degrees minutes seconds and give code from 1 (low accuracy) to 8 (high accuracy) of accuracy
coord_accuracy(.data, col_x, col_y, rounding = TRUE)
.data |
A |
col_x |
Column name containing the longitude. |
col_y |
Column name containing the latitude. |
rounding |
Round or not secondes. |
tibble provided with an additional column calc_accuracy
.
Gilles Dauby, gilles.dauby@ird.fr
test <- dplyr::tibble(x = c(8.8633, 6.2, 4), y = c(0.1321, 0.22, 1))
coord_accuracy(test, col_x = "x", col_y = "y")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.