ors_export {openrouteservice} | R Documentation |
Openrouteservice Export
Description
Export the base graph for different modes of transport.
Usage
ors_export(
bbox,
profile = ors_profile(),
...,
api_key = ors_api_key(),
output = c("parsed", "text")
)
Arguments
bbox |
List of |
profile |
Route profile, defaults to |
... |
Optional parameters as described here |
api_key |
Character scalar containing openrouteservice API key |
output |
Output format. By default the response is being parsed to a list-based R object |
Value
Lists of graph nodes and edges contained in the provided bounding box and relevant for the given routing profile. The edge property weight
represents travel time in seconds. The response is structured according to output
:
for
"text"
, a character vector of length 1 re-encoded to UTF-8.
for
"parsed"
, a parsed R object.
Author(s)
Andrzej OleÅ› andrzej.oles@gmail.com
Examples
## Not run:
bbox <- list(
c(8.681495, 49.41461),
c(8.686507, 49.41943)
)
res <- ors_export(bbox)
## End(Not run)