intermodal_route {hereR} | R Documentation |
HERE Intermodal Routing API: Calculate Route
Description
Calculates route geometries (LINESTRING
) between given pairs of points using the HERE 'Intermodal Routing' API.
Usage
intermodal_route(
origin,
destination,
datetime = Sys.time(),
results = 3,
transfers = -1,
url_only = FALSE
)
Arguments
origin |
|
destination |
|
datetime |
|
results |
numeric, maximum number of suggested route alternatives (Valid range: 1 and 7, |
transfers |
numeric, maximum number of transfers allowed per route (Valid range: -1 and 6, |
url_only |
boolean, only return the generated URLs ( |
Value
An sf
object containing the requested intermodal routes.
References
HERE Intermodal Routing API: Routes
Examples
# Provide an API Key for a HERE project
set_key("<YOUR API KEY>")
# Intermodal routing
routes <- intermodal_route(
origin = poi[1:3, ],
destination = poi[4:6, ],
url_only = TRUE
)
[Package hereR version 1.0.0 Index]