Calculates the hydraulic geometry metrics bankfull (width, depth, area, elevation), floodprone (width, depth, area, elevation), width-depth ratio, entrenchment ratio, and water surface elevation for the input cross section.
xs_metrics(xs_points, stream, xs_number, bankfull_elevation)
A data frame of hydraulic dimensions for the specified cross section at the specified detrended bankfull elevation.
character; The name of the stream.
numeric; The cross section unique identifier. Seq is only unique within a reach.
character; A string indicating how the cross section was derived. "DEM derived cross section" denotes dimensions calculated from the DEM and "<Region Name>" denotes that the dimensions were calculated from that regions regional curve.
numeric; The detrended bankfull elevation (in feet) that is used to calculate hydraulic geometry.
numeric; The area of the watershed upstream from this cross section, units: square miles.
numeric; The cross sectional area at the specified detrended bankfull elevation, units: square feet.
numeric; The cross section width at the specified detrended bankfull elevation, units: feet.
numeric; The maximum depth at the specified detrended bankfull elevation, units: detrended feet.
numeric; The estimated discharge at the specified drainage area.
numeric; The cross sectional area at the flood prone elevation, units: square feet.
numeric; The cross section width at the flood prone elevation, units: feet.
numeric; The maximum depth at the flood prone elevation, units: feet.
numeric; The bankfull width to bankfull depth ratio.
numeric; The entrenchment ratio (flood prone width) / (bankfull width).
numeric; The water surface elevation, units: NAVD88 feet.
numeric; The bankfull elevation, units: NAVD88 feet.
numeric; The flood prone elevation, units: NAVD88 feet.
Add methods description for calculating flood prone, width-depth
ratio, and entrenchment ratio. Calls xs_geometry()
.
The xs_metrics
function calls the xs_geometry
function. The xs_metrics
function is called by the
xs_regional_metrics
function, which is called by the
xs_dimensions
function.
# Extract attribute data from the fluvgeo::sin_riffle_floodplain_points_sf
# sf
sin_xs_points_df <- fluvgeo::sin_riffle_floodplain_points_sf
# Call the xs_metrics function
sin_4 <- xs_metrics(xs_points = sin_xs_points_df,
stream = "Sinsinawa",
xs_number = 4,
bankfull_elevation = 103.5)