Search code examples
rshapefilestplanr

Questions regarding the stplanr package in R


I would like your help with the route_local function of the stplanr package (https://cran.r-project.org/web/packages/stplanr/stplanr.pdf), which is on page 89.

You may realize that a map is generated from the example function, showing the path between two points (I left the code and the image generated below). I would like to do the same thing. In my case it is show the path between two points considering my roads. Both are the shapefile file. I managed to generate the roads to show (code below), but I would like to show the route between any two points from these roads. Can someone help me?? I left it at the following site https://github.com/JovaniSouza/JovaniSouza5/blob/master/Example.zip to download the shapefiles.

library(geosphere)
library(sf)
library(stplanr)

roads<-st_read("C:/Users/Jose/Downloads/Example/Roads/Roads.shp")
p <- SpatialLinesNetwork(roads, uselonglat = FALSE, tolerance = 0)
plot(p)

Map generated by code

enter image description here

Example

from <- c(-1.535181, 53.82534)
to <- c(-1.52446, 53.80949)
sln <- SpatialLinesNetwork(route_network_sf)
r <- route_local(sln, from, to)
plot(sln)
plot(r$geometry, add = TRUE, col = "red", lwd = 5)
plot(cents[c(3, 4), ], add = TRUE)
r2 <- route_local(sln = sln, cents_sf[3, ], cents_sf[4, ])
plot(r2$geometry, add = TRUE, col = "blue", lwd = 3)

enter image description here


Solution

  • Try this. To adapt the example to your case you have to convert the coordinate system of the roads to the points shapefile (or the other way around):

    library(geosphere)
    library(sf)
    library(stplanr)
    
    roads <- st_read("Example/Roads/Roads.shp")
    points <- st_read("Example/Points/Points.shp")
    
    # Convert roads to coordinate system of points
    roads_trf <- st_transform(roads, st_crs(points))
    # Convert to points to SpatialPointsDataframe
    points_sp <-  as(points, "Spatial")
    
    from <- c(-49.95058, -24.77502) # Feature 1
    to <- c(-49.91084, -24.75200) # Feature 9
    p <- SpatialLinesNetwork(roads_trf, uselonglat = FALSE, tolerance = 0)
    r <- route_local(p, from, to)
    plot(p)
    plot(r$geometry, add = TRUE, col = "red", lwd = 5)
    plot(points_sp[c(3, 4), ], add = TRUE)
    r2 <- route_local(sln = p, points[3, ], points[4, ])
    plot(r2$geometry, add = TRUE, col = "blue", lwd = 3)
    

    enter image description here