Get an area of interest (AoI) around a river, cropping to the bounding box of a city
Source:R/osmdata.R
      get_river_aoi.RdGet an area of interest (AoI) around a river, cropping to the bounding box of a city
Value
An sf::sfc_POLYGON object in lat/lon coordinates
Examples
if (FALSE) { # interactive()
bb <- get_osm_bb("Bucharest")
river_centerline <- get_osm_river_centerline(bb, "Dâmbovița")
river_surface <- get_osm_river_surface(bb, "Dâmbovița")
river <- list(centerline = river_centerline, surface = river_surface)
get_river_aoi(river = river, city_bbox = bb, buffer_distance = 100)
}