## ----include = FALSE---------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>", warning = FALSE ) ## ----setup, warning=FALSE, message=FALSE-------------------------------------- library(rcrisp) library(sf) bucharest_osm <- get_osm_example_data() bucharest_dem <- get_dem_example_data() ## ----variables---------------------------------------------------------------- city_name <- "Bucharest" river_name <- "Dâmbovița" ## ----delineate, fig.alt="Delineation of the corridor of River Dâmbovița in Bucharest"---- bucharest_dambovita <- delineate( city_name, river_name, segments = TRUE, riverspace = TRUE ) # Plot all layers within the extent of the delineated corridor bbox <- st_bbox(bucharest_dambovita$corridor) plot(bucharest_dambovita$valley, col = "grey", border = NA, xlim = c(bbox["xmin"], bbox["xmax"]), ylim = c(bbox["ymin"], bbox["ymax"])) plot(bucharest_dambovita$riverspace, col = "lightgreen", border = NA, add = TRUE) plot(bucharest_osm$river_centerline, col = "blue", add = TRUE) plot(bucharest_dambovita$segments, border = "lightblue", add = TRUE) plot(bucharest_dambovita$corridor, border = "red", wt = 2, add = TRUE)