Routing API

Routing directions between locations, travel distance or time origin-destination matrices and isolines for points of interest (POIs) based on the ‘HERE Routing’ API.

Routing directions

In order to calculate route geometries (LINESTRING) between pairs of points using the ‘HERE Routing API’ the function route() is used. The function takes origin and destination locations as sf objects containing geometries of type POINT as input. Routes can be created for various transport modes, as for example car or public transport. Optionally the current or predicted traffic information is considered. For routes using the transport mode "car" a vehicle type can be specified, to obtain an estimate of the energy consumption on the routes.

origin <- poi[1:2, ]
destination <- poi[3:4, ]
routes <- route(
  origin = origin,
  destination = destination
)
id departure origin arrival destination mode traffic distance trafficTime baseTime travelTime co2Emission
1 2020-11-26 19:15:41 Unterwilrain 2020-11-26 21:22:22 Avenue du Temple car disabled 211457 7655 7601 7601 30.704
2 2020-11-26 19:15:41 Via Riviera 2020-11-26 22:05:34 Giessliweg car disabled 265272 10630 10193 10193 38.517

Construct a route label and print the routes on an interactive leaflet map:

routes$label <- paste(origin$city[routes$id],
                      destination$city[routes$id],
                      sep =  " - ")
mapview(routes,
        zcol = "label",
        lwd = routes$travelTime/max(routes$travelTime)*5,
        layer.name = "Route [O-D]",
        map.types = c("Esri.WorldTopoMap"),
        homebutton = FALSE
)

Routing matrix

The function route_matrix() calculates a matrix of route summaries between given POIs. The function takes origin and destination locations as sf objects containing geometries of type POINT as input. If only one sf object is provided as origin an origin-destination matrix, which covers all route combinations, is constructed. Various transport modes and current or predicted traffic information are supported. The requested matrix is split into (sub-)matrices of dimension 15x100 in order to use the maximum allowed matrix size per request. Thereby the number of overall needed requests is minimized. The return value of the function route_matrix is one route summary matrix, that fits the order of the provided POIs: origIndex, destIndex.

# From - to
mat <- route_matrix(
  origin = poi[1:2, ],
  destination = poi[3:4, ]
)

# Construct O-D matrix (all routes between the POIs)
mat <- route_matrix(
  origin = poi
)

Print the first 10 rows of the matrix table, created from the POIs above, where the distance is in meters, the travel time in seconds and the consumption in cost factor units:

origIndex destIndex departure arrival distance travelTime costFactor
1 1 2020-11-26 19:15:41 2020-11-26 19:15:41 0 0 1
1 2 2020-11-26 19:15:41 2020-11-26 21:14:30 172685 7129 7194
1 3 2020-11-26 19:15:41 2020-11-26 21:22:24 211455 7603 7668
1 4 2020-11-26 19:15:41 2020-11-26 20:21:50 99141 3969 4065
1 5 2020-11-26 19:15:41 2020-11-26 20:35:41 117374 4800 4865
1 6 2020-11-26 19:15:41 2020-11-26 20:00:01 55301 2660 2705
1 7 2020-11-26 19:15:41 2020-11-26 21:53:20 265764 9459 9526
1 8 2020-11-26 19:15:41 2020-11-26 20:42:13 132417 5192 5315
2 1 2020-11-26 19:15:41 2020-11-26 21:14:09 171589 7108 7173
2 2 2020-11-26 19:15:41 2020-11-26 19:15:41 0 0 1

Isoline

Isolines are constructed by the function isoline(). The calculated polygons (POLYGON or MULTIPOLYGON) connect the end points of all routes leaving from defined centers (POIs) with either a specified length (isodistance), a specified travel time (isochrone) or consumption (isoconsumption), whereby time is measured in seconds, distance in meters and consumption as costfactor. By default the aggregate parameter is set to TRUE, which means that the isoline polygons are intersected and the minimum range value (time, distance or consumption) is taken in all intersecting areas, then the polyons are aggregated to polygons of geometry type MULTIPOLYGON. Thereby overlapping isolines are avoided.

iso <- isoline(
  poi,
  range = seq(5, 30, 5) * 60,
  range_type = "time",
  type = "fastest",
  mode = "car",
  aggregate = TRUE,
  traffic = FALSE
)

Convert range from seconds to minutes and print the aggregated isolines on an interactive leaflet map:

iso$minutes <- iso$range/60
mapview(iso,
        zcol = "minutes",
        layer.name = "Isoline [min]",
        alpha = 0,
        map.types = c("Esri.WorldTopoMap"),
        homebutton = FALSE
)

API Reference