⚠️There's a newer version (1.0.5) of this package. Take me there.

tidygeocoder

Tidygeocoder makes getting data from geocoder services easy. A unified high-level interface is provided for a selection of supported geocoder services and results are returned in tibble (dataframe) format.

Features:

  • Forward geocoding (addresses ⮕ coordinates)
  • Reverse geocoding (coordinates ⮕ addresses)
  • Batch geocoding (geocoding multiple addresses or coordinates in a single query) is automatically used if applicable.
  • Duplicate, NA, and blank input data is handled elegantly; only unique inputs are submitted in queries, but the rows in the original data are preserved by default.
  • The maximum rate of querying is automatically set according to the usage policies of the selected geocoder service.

In addition to the usage examples below, see the Getting Started Vignette and blog posts on tidygeocoder.

Installation

To install the stable version from CRAN (the official R package servers):

install.packages('tidygeocoder')

Alternatively, you can install the latest development version from GitHub:

devtools::install_github("jessecambon/tidygeocoder")

Usage

In this first example we will geocode a few addresses using the geocode() function and plot them on a map with ggplot.

library(dplyr)
library(tibble)
library(tidygeocoder)

# create a dataframe with addresses
some_addresses <- tribble(
~name,                  ~addr,
"White House",          "1600 Pennsylvania Ave NW, Washington, DC",
"Transamerica Pyramid", "600 Montgomery St, San Francisco, CA 94111",     
"Willis Tower",         "233 S Wacker Dr, Chicago, IL 60606"                                  
)

# geocode the addresses
lat_longs <- some_addresses %>%
  geocode(addr, method = 'osm', lat = latitude , long = longitude)

The geocode() function geocodes addresses contained in a dataframe. The Nominatim (“osm”) geocoder service is used here, but other services can be specified with the method argument. Only latitude and longitude are returned from the geocoder service in this example, but full_results = TRUE can be used to return all of the data from the geocoder service. See the geo() function documentation for details.

nameaddrlatitudelongitude
White House1600 Pennsylvania Ave NW, Washington, DC38.89770-77.03655
Transamerica Pyramid600 Montgomery St, San Francisco, CA 9411137.79520-122.40279
Willis Tower233 S Wacker Dr, Chicago, IL 6060641.87887-87.63591

Now that we have the longitude and latitude coordinates, we can use ggplot to plot our addresses on a map.

library(ggplot2)
library(maps)
library(ggrepel)

ggplot(lat_longs, aes(longitude, latitude), color = "grey99") +
  borders("state") + geom_point() +
  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 dataset used here is from the geocoder query above. The single line address is returned in a column named by the address argument and all columns from the geocoder service are returned because full_results = TRUE. See the reverse_geo() function documentation for more details.

reverse <- lat_longs %>%
  reverse_geocode(lat = latitude, long = longitude, method = 'osm',
                  address = address_found, full_results = TRUE) %>%
  select(-addr, -licence)
namelatitudelongitudeaddress_foundplace_idosm_typeosm_idosm_latosm_lonhistorichouse_numberroadcitystatepostcodecountrycountry_codeboundingboxtourismneighbourhoodcountybuildingsuburb
White House38.89770-77.03655White House, 1600, Pennsylvania Avenue Northwest, Washington, District of Columbia, 20500, United States147370893way23824102238.897699700000004-77.03655315White House1600Pennsylvania Avenue NorthwestWashingtonDistrict of Columbia20500United Statesus38.8974908 , 38.897911 , -77.0368537, -77.0362519NANANANANA
Transamerica Pyramid37.79520-122.40279Transamerica Pyramid, 600, Montgomery Street, Financial District, San Francisco, San Francisco City and County, San Francisco, California, 94111, United States95364489way2422297337.795200550000004-122.40279267840137NA600Montgomery StreetSan FranciscoCalifornia94111United Statesus37.7948854 , 37.7954472 , -122.4031399, -122.4024317Transamerica PyramidFinancial DistrictSan FranciscoNANA
Willis Tower41.87887-87.63591Willis Tower, 233, South Wacker Drive, Printer’s Row, Loop, Chicago, Cook County, Illinois, 60606, United States103673983way5852880441.878871700000005-87.63590893936448NA233South Wacker DriveChicagoIllinois60606United Statesus41.8785389 , 41.8791932 , -87.6363362, -87.6354746NAPrinter’s RowCook CountyWillis TowerLoop

In the Wild

For inspiration, here are a few articles (with code) that leverage tidygeocoder:

Contributing

Contributions to the tidygeocoder package are welcome. File an issue for bug fixes or suggested features. If you would like to contribute code such as adding support for a new geocoder service, reference the developer notes for instructions and documentation.

Citing tidygeocoder

Use the citation() function:

citation('tidygeocoder')
To cite tidygeocoder in publications use:

  Jesse Cambon, Diego Hernangómez, Christopher Belanger, Daniel
  Possenriede (2021). tidygeocoder: Geocoding Made Easy. R package
  version 1.0.3. DOI: 10.5281/zenodo.4686074. URL:
  https://CRAN.R-project.org/package=tidygeocoder.

A BibTeX entry for LaTeX users is

  @Misc{,
    title = {tidygeocoder: Geocoding Made Easy},
    author = {Jesse Cambon and Diego Hernangómez and Christopher Belanger and Daniel Possenriede},
    year = {2021},
    publisher = {Zenodo},
    note = {R package version 1.0.3},
    url = {https://CRAN.R-project.org/package=tidygeocoder},
    doi = {10.5281/zenodo.4686074},
  }

Or refer to the citation page.

Copy Link

Version

Down Chevron

Install

install.packages('tidygeocoder')

Monthly Downloads

8,558

Version

1.0.3

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

April 19th, 2021

Functions in tidygeocoder (1.0.3)