street_network_to_sf {r5r} | R Documentation |
Extract OpenStreetMap network in sf format from a network.dat file
Description
Extract OpenStreetMap network in sf format from a network.dat file
Usage
street_network_to_sf(r5r_core)
Arguments
r5r_core |
An object to connect with the R5 routing engine, created with
|
Value
A list with two components of a street network in sf format: vertices (POINT) and edges (LINESTRING).
See Also
Other network functions:
find_snap()
,
transit_network_to_sf()
Examples
library(r5r)
# build transport network
path <- system.file("extdata/poa", package = "r5r")
r5r_core <- setup_r5(path)
# extract street network from r5r_core
street_net <- street_network_to_sf(r5r_core)
stop_r5(r5r_core)
[Package r5r version 2.0 Index]