Converts an edge list to an sf spatial object of type LINESTRING with one row per edge.
edges_to_sf(edges, sites)
Arguments
edges: a data.frame with the following two columns: from (the first node of the edge) and to (the second node of the edge). The output of the functions create_edge_list() or append_edge_lists().
sites: an sf object of type POINT. A spatial object with coordinates of sites (nodes). Note that the first column must be the node labels.
Returns
An sf spatial object of type LINESTRING where the number of rows correspond to the number of edges.