revgeocode: Reverse geocode

revgeocodeR Documentation

Reverse geocode

Description

Reverse geocodes (looks up the address of) a longitude/latitude location using the Google Geocoding API. Note: To use Google's Geocoding API, you must first enable the API in the Google Cloud Platform Console. See register_google().

Usage

revgeocode(
  location,
  output = c("address", "all"),
  force = FALSE,
  urlonly = FALSE,
  override_limit = FALSE,
  ext = "com",
  inject = "",
  ...
)

Arguments

location

a location in longitude/latitude format

output

"address" or "all"

force

force online query, even if cached (previously downloaded)

urlonly

return only the url?

override_limit

override the current query rate

ext

top level domain extension (e.g. "com", "co.nz")

inject

character string to add to the url

...

...

Value

a character(1) address or a list (the parsed json output from Google)

Author(s)

David Kahle david@kahle.io

See Also

https://developers.google.com/maps/documentation/geocoding/

Examples


## Not run:  requires Google API key, see ?register_google

## basic usage
########################################

( gc <- as.numeric(geocode("the white house")) )
revgeocode(gc)
str(revgeocode(gc, output = "all"), 3)


## End(Not run)


dkahle/ggmap documentation built on March 3, 2024, 8:19 a.m.