View source: R/lake_distance.R
| get_focal_distance | R Documentation |
Get the network distance between a focal point and other points on a line network
get_focal_distance(lines, lakes, outlet, size_threshold = 4)
lines |
sf lines object |
lakes |
sf polygon object |
outlet |
integer row index of outlet reach relative to lines |
size_threshold |
numeric size above which to consider as a lake |
## Not run:
library(nhdR)
data(nhd_sub_lines)
data(nhd_sub_lakes)
outlet_reach <- terminal_reaches(network = nhd_sub_lines,
approve_all_dl = TRUE)
outlet <- which(outlet_reach[['comid']] == nhd_sub_lines[['comid']])
get_focal_distance(nhd_sub_lines, nhd_sub_lakes, outlet = outlet)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.