R/xs_dimensions.R
xs_dimensions.Rd
Calculates a data frame of hydraulic geometry dimensions (area, width, depth) for a set of streams, regions, and detrended bankfull elevationsby cross section, xs type, and bankfull elevation.
xs_dimensions(xs_points, streams, regions, bankfull_elevations)
data frame; a data frame of cross section points
character vector; The stream names in the study area.
character; The regions that a dimension will be calculated for. See the regional_curves$region field for a complete list.
numeric vector; The bankfull elevations (units: detrended feet) that are used to calculate hydraulic geometry.
A data frame of cross section hydraulic geometry dimensions (area, width, depth, discharge) by cross section, xs type, and 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.
The xs_dimensions
function calls the
xs_regional_metrics
function, which calls the
xs_metrics
function, which calls the
xs_geometry
function.
# Extract attribute data from the fluvgeo::sin_xs_points sf object
sin_xs_points_df <- fluvgeo::sin_riffle_channel_points_sf
# Call the xs_dimensions function with test data
streams <- c("Sinsinawa")
regions <- c("Eastern United States", "IN Central Till Plain")
bankfull_elevations = seq(103, 104, 0.1)
sin <- xs_dimensions(xs_points = sin_xs_points_df,
streams = streams,
regions = regions,
bankfull_elevations = bankfull_elevations)