Return tip reaches from a network
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)
Related functions from the same R package