# NOT RUN {
l = flowlines[2,]
line2route(l)
l = flowlines[2:5,]
rf <- line2route(l = l, "route_cyclestreet", plan = "fastest")
rq <- line2route(l = l, plan = "quietest", silent = TRUE)
plot(rf, col = "red")
plot(rq, col = "green", add = TRUE)
plot(l, add = T)
# Plot for a single line to compare 'fastest' and 'quietest' route
n = 2
plot(l[n,])
lines(rf[n,], col = "red")
lines(rq[n,], col = "green")
# Example with list output
l <- l[1:3,]
rf_list <- line2route(l = l, list_output = TRUE)
class(rf_list) # list output
class(rf_list[[2]]) # but individual elements are spatial
rf_list_of_lists <- line2route(l = l, list_output = TRUE, save_raw = TRUE)
class(rf_list_of_lists) # list output
class(rf_list_of_lists[[2]]) # but individual elements are spatial
# illustration of how the l_id argument works:
rf$id # has id as l has "id" field
l$id <- NULL # remove id field for testing
rf_no_id <- line2route(l)
rf_no_id$id # [1] "1" "2" "3" "4"
rf_with_id = line2route(l, l_id = "All")
rf_with_id$id # [1] 38 10 44
# demo with parallel version spliting route API requests over multiple CPU processes
rf_parr <- line2route(l = l, n_processes = 4)
l = flowlines[1:2,]
rf_with_err = line2route(l, reporterrors = T)
# Now rf_with_err$error[2] has the correct error message
# }
Run the code above in your browser using DataLab