View source: R/transit_network_to_sf.R
transit_network_to_sf | R Documentation |
Extracts the transit network in sf
format from a routable transport network
built with build_network()
).
transit_network_to_sf(r5r_network, r5r_core = deprecated())
r5r_network |
A routable transport network created with |
r5r_core |
The |
A list with two components of a transit network in sf
format:
route shapes (LINESTRING
) and transit stops (POINT
). The same
route_id
/short_name
might appear with different geometries. This occurs
when the same route is associated to more than one shape_id
s in the GTFS
feed used to create the transit network. Some transit stops might be
returned with geometry POINT EMPTY
(i.e. missing spatial coordinates).
This may occur when a transit stop is not snapped to the road network,
possibly because the GTFS feed used to create the transit network covers an
area larger than the .osm.pbf
input data.
Other network functions:
find_snap()
,
street_network_to_sf()
library(r5r)
# build transport network
path <- system.file("extdata/poa", package = "r5r")
r5r_network <- build_network(path)
# extract transit network from r5r_network
transit_net <- transit_network_to_sf(r5r_network)
stop_r5(r5r_network)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.