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 spatial object associated with the query using list("sf"), see geo_address_lookup() for retrieving the data in tibble
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.
full_results: Returns all available data from the API service. If FALSE (default) only 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.
nominatim_server: The URL of the Nominatim server to use. Defaults to "https://nominatim.openstreetmap.org/".
custom_query: A named list with API-specific parameters to be used (i.e. list(countrycodes = "US")). See Details .
points_only: Logical TRUE/FALSE. Whether to return only spatial points (TRUE, which is the default) or potentially other shapes as provided by the Nominatim API (FALSE). See About Geometry Types .
The parameter points_only specifies whether the function results will be points (all Nominatim results are guaranteed to have at least point geometry) or possibly other spatial objects.
Note that the type of geometry returned in case of points_only = FALSE
will depend on the object being geocoded:
Administrative areas, major buildings and the like will be returned as polygons.
Rivers, roads and their like as lines.
Amenities may be points even in case of a points_only = FALSE call.
The function is vectorized, allowing for multiple addresses to be geocoded; in case of points_only = FALSE multiple geometry types may be returned.
Examples
# Notre Dame Cathedral, ParisNotreDame <- geo_address_lookup_sf(osm_ids =201611261, type ="W")# Need at least one non-empty objectif(any(!sf::st_is_empty(NotreDame))){ library(ggplot2) ggplot(NotreDame)+ geom_sf()}NotreDame_poly <- geo_address_lookup_sf(201611261, type ="W", points_only =FALSE)if(any(!sf::st_is_empty(NotreDame_poly))){ ggplot(NotreDame_poly)+ geom_sf()}# It is vectorizedseveral <- geo_address_lookup_sf(c(146656,240109189), type = c("R","N"))several