diff --git a/README.Rmd b/README.Rmd index fce0a0a6..4920509b 100644 --- a/README.Rmd +++ b/README.Rmd @@ -93,7 +93,7 @@ ggplot(lat_longs, aes(longitude, latitude), color = "grey99") + theme_void() ``` -To perform reverse geocoding (obtaining addresses from geographic coordinates), we can use the `reverse_geocode()` function. The arguments are similar to the `geocode()` function, but now we specify the input data columns with the `lat` and `long` arguments. The input dataset used here is from the geocoder query above. +To perform reverse geocoding (obtaining addresses from geographic coordinates), we can use the `reverse_geocode()` function. The arguments are similar to the `geocode()` function, but now we specify the input data columns with the `lat` and `long` arguments. The input dataset used here is the results of the geocoding query above. The single line address is returned in a column named by the `address` argument and all columns from the geocoding service results are returned because `full_results = TRUE`. See the `reverse_geo()` function documentation for more details. diff --git a/README.md b/README.md index 3a30487e..1049a442 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ To perform reverse geocoding (obtaining addresses from geographic coordinates), we can use the `reverse_geocode()` function. The arguments are similar to the `geocode()` function, but now we specify the input data columns with the `lat` and `long` arguments. The input dataset used -here is from the geocoder query above. +here is the results of the geocoding query above. The single line address is returned in a column named by the `address` argument and all columns from the geocoding service results are returned diff --git a/docs/index.html b/docs/index.html index 5eb8b99d..1f723e2d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -212,7 +212,7 @@

ggrepel::geom_label_repel(aes(label = name)) + theme_void()

-

To perform reverse geocoding (obtaining addresses from geographic coordinates), we can use the reverse_geocode() function. The arguments are similar to the geocode() function, but now we specify the input data columns with the lat and long arguments. The input dataset used here is from the geocoder query above.

+

To perform reverse geocoding (obtaining addresses from geographic coordinates), we can use the reverse_geocode() function. The arguments are similar to the geocode() function, but now we specify the input data columns with the lat and long arguments. The input dataset used here is the results of the geocoding query above.

The single line address is returned in a column named by the address argument and all columns from the geocoding service results are returned because full_results = TRUE. See the reverse_geo() function documentation for more details.