geo_address_lookup: Address Lookup API for OSM objects

View source: R/geo_address_lookup.R

geo_address_lookupR Documentation

Address Lookup API for OSM objects

Description

The lookup API allows to query the address and other details of one or multiple OSM objects like node, way or relation. This function returns the tibble associated with the query, see geo_address_lookup_sf() for retrieving the data as a spatial object (sf format).

Usage

geo_address_lookup(
  osm_ids,
  type = c("N", "W", "R"),
  lat = "lat",
  long = "lon",
  full_results = FALSE,
  return_addresses = TRUE,
  verbose = FALSE,
  custom_query = list()
)

Arguments

osm_ids

vector of OSM identifiers as numeric (c(00000, 11111, 22222)).

type

vector character of the type of the OSM type associated to each osm_ids. Possible values are node ("N"), way ("W") or relation ("R"). If a single value is provided it would be recycled.

lat

latitude column name in the output data (default "lat").

long

longitude column name in the output data (default "long").

full_results

returns all available data from the API service. If FALSE (default) only latitude, longitude and address columns are returned. See also return_addresses.

return_addresses

return input addresses with results if TRUE.

verbose

if TRUE then detailed logs are output to the console.

custom_query

A named list with API-specific parameters to be used (i.e. list(countrycodes = "US")). See Details.

Details

See https://nominatim.org/release-docs/develop/api/Lookup/ for additional parameters to be passed to custom_query.

Value

A tibble with the results found by the query.

See Also

geo_address_lookup_sf()

Address Lookup API: geo_address_lookup_sf()

Geocoding strings: geo_address_lookup_sf(), geo_amenity_sf(), geo_amenity(), geo_lite_sf(), geo_lite()

Examples



ids <- geo_address_lookup(osm_ids = c(46240148, 34633854), type = "W")

ids

several <- geo_address_lookup(c(146656, 240109189), type = c("R", "N"))
several



nominatimlite documentation built on Aug. 15, 2023, 5:08 p.m.