ors_export | R Documentation |
Export the base graph for different modes of transport.
ors_export(
bbox,
profile = ors_profile(),
...,
api_key = ors_api_key(),
output = c("parsed", "text")
)
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 |
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.
Andrzej Oleś andrzej.oles@gmail.com
## Not run:
bbox <- list(
c(8.681495, 49.41461),
c(8.686507, 49.41943)
)
res <- ors_export(bbox)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.