tip_reaches | R Documentation |
A tip reach is a stream flowline with no upstream connections.
tip_reaches(network = NA)
network |
sf lines collection. optional. See Details section. |
An sf data frame with LINESTRING geometries
## Not run:
coords <- data.frame(lat = 41.42217, lon = -73.24189)
network <- nhd_plus_query(lon = coords$lon, lat = coords$lat,
dsn = "NHDFlowline", buffer_dist = units::as_units(5, "km"))$sp$NHDFlowline
t_reaches <- tip_reaches(network = network)
plot(network$geometry)
plot(t_reaches$geometry, col = "red", add = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.