I'm using R and library(osrm).
I've calculated a route using osrmRoute
myroute<-osrmRoute(src= c(lonx,laty), dst
= c(lonx_destino, laty_destino), returnclass = "sp" , overview = "full")
Nevertheless, I'm trying to avoid a (lat, long) point in this route, in order to obtain an alternative.
I've read the documentation but I only found exclude = "motorway"
.
I've been surfing the internet looking for more examples, but any of them helps me with something like exclude = c(lat_excl, long_excl)
myroute<-osrmRoute(src= c(lonx,laty), dst
= c(lonx_destino, laty_destino), returnclass = "sp" , overview = "full",
exclude = c(lat_excl, long_excl)????? )
Thanks in advance
question from:
https://stackoverflow.com/questions/66057035/exclude-lat-long-point-from-osrmroute-openstreet-map-in-r 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…