tip_reaches function

Return tip reaches from a network

Return tip reaches from a network

A tip reach is a stream flowline with no upstream connections.

tip_reaches(network = NA)

Arguments

  • network: sf lines collection. optional. See Details section.

Returns

An sf data frame with LINESTRING geometries

Examples

## 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)

Other functions in nhdR

Related functions from the same R package

  • Maintainer: Jemma Stachelek
  • License: GPL
  • Last published: 2023-08-12