add_polid | R Documentation |
Sometimes you need to add polygon id into your streets road network.
add_polid
add add_polid id into your road network cropping your
network by.
For instance, you have open street maps road network the you have the polygon of your regions. This function adds the id of your polygon as a new column in the streets network.
add_polid(polyg, street, by)
polyg |
sf object POLYGON or sp |
street |
streets road network class sf or sp |
by |
Character indicating the column with the id in polyg |
emis_to_streets
## Not run:
data(net)
nets <- sf::st_as_sf(net)
bb <- sf::st_as_sf(sf::st_as_sfc(sf::st_bbox(nets)))
bb$id <- "a"
a <- add_polid(polyg = bb, street = nets, by = "id")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.