Geocode with the OpenCage API, either from place name to longitude and latitude (forward geocoding) or from longitude and latitude to the name and address of the location (reverse geocoding).
Install the package with:
install.packages("opencage")
Or install the development version using remotes with:
remotes::install_github("ropensci/opencage")
For the best experience, we recommend that you read through the
“Introduction to opencage” vignette (vignette("opencage")
), but if you
are in a hurry:
OPENCAGE_KEY=yourkey
in .Renviron
. See help(oc_config)
for
alternative ways to set your OpenCage API key.Now you are ready to turn place names into latitude and longitude coordinates:
library(opencage)
oc_forward_df(placename = "Sarzeau")
## # A tibble: 1 x 4
## placename oc_lat oc_lng oc_formatted
## <chr> <dbl> <dbl> <chr>
## 1 Sarzeau 47.5 -2.76 56370 Sarzeau, France
Or turn a set of coordinates into the name and address of the location:
oc_reverse_df(latitude = 51.5034070, longitude = -0.1275920)
## # A tibble: 1 x 3
## latitude longitude oc_formatted
## <dbl> <dbl> <chr>
## 1 51.5 -0.128 Prime Minister’s Office, Westminster, 10 Downing Street, L~
But remember, the vignettes are really great! We have:
vignette("opencage")
vignette("customise_query")
vignette("output_options")
The OpenCage API supports forward and reverse geocoding. Sources of OpenCage are open geospatial data including OpenStreetMap, DataScienceToolkit, Yahoo! GeoPlanet, Natural Earth Data, libpostal, GeoNames, and Flickr’s shapefiles plus a whole lot more besides. Refer to the current full list of credits.
opencage
in R doing
citation(package = 'opencage')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.