Learn R Programming

stplanr (version 0.2.4)

viaroute2sldf: Convert json result of OSRM routing query to SpatialLinesDataFrame

Description

Convert json result of OSRM routing query to SpatialLinesDataFrame

Usage

viaroute2sldf(osrmresult, return_sf = FALSE)

Arguments

osrmresult

Single character string or character vector containing encoded json result(s) of OSRM routing queries.

return_sf

Boolean value if this function should return an sf object, if FALSE returns sp object (default FALSE).

Details

Converts the result of a (successful) OSRM routing query and returns a SpatialLinesDataFrame containing the route, route summary and instructions.

Examples

Run this code
# NOT RUN {
 viaroute2sldf(
   viaroute(startlat = 52.503033,
            startlng = 13.420526,
            endlat = 52.516582,
            endlng = 13.429290)
 )
# }

Run the code above in your browser using DataLab