path_velocities_river {rivnet} | R Documentation |
Calculate velocities along paths in a river
Description
Calculate mean water velocities along paths in a river
object.
Usage
path_velocities_river(river, level = c("RN", "AG"),
displayUpdates = FALSE)
Arguments
river |
A |
level |
Aggregation level(s) at which path velocities should be calculated. Possible values are |
displayUpdates |
Logical. State if updates are printed on the console while |
Details
Velocities are calculated by dividing the total distance (length of the downstream path joining two nodes) by the total time (sum of times taken to cover all nodes in between the origin and destination nodes; such times are calculated as length/velocity).
Note that paths may or may not include the downstream node; this is controlled by option includeDownstreamNode
in paths_river
. Path velocities are calculated accordingly.
In both cases, diagonal entries of pathVelocity
are set equal to the respective node velocity. See example.
Value
A river
object. The following element is added to the list indicated by level
:
pathVelocities |
It is a |
See Also
paths_river
, hydro_river
, rivergeometry_OCN
.
Examples
fp <- system.file("extdata/wigger.tif", package="rivnet")
river <- extract_river(outlet=c(637478,237413),
DEM=fp)
river <- aggregate_river(river)
river <- paths_river(river, includePaths = TRUE)
river <- OCNet::rivergeometry_OCN(river) # simplified alternative to hydro_river
# to attribute velocities at all RN and AG nodes
river <- path_velocities_river(river, level = "AG") # downstream nodes are not included in paths
river$AG$pathVelocities[176, 176]
river$AG$pathVelocities[176, 174]
# node 174 is immediately downstream of 176; if downstream nodes are not included
# in paths, the two velocities are equal
river2 <- paths_river(river, includePaths = TRUE, includeDownstreamNode = TRUE)
river2 <- path_velocities_river(river2, level = "AG") # now downstream nodes are included in paths
river2$AG$pathVelocities[176, 176]
river2$AG$pathVelocities[176, 174]