Description Usage Arguments Value Examples
reverse geocode a data frame
1 | reverse_geocode_tbl(tbl, longitude, latitude)
|
tbl |
name of the tibble |
longitude |
name of the longitude column |
latitude |
name of the latitude column |
an augmented tibble with addresses
1 2 3 4 5 6 7 | table_reverse <- tibble::tibble(
x = c(2.279092, 2.375933,2.308332),
y = c(48.84683, 48.84255, 48.85032),
z = rnorm(3)
)
reverse_geocode_tbl(tbl = table_reverse, longitude = x, latitude = y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.