Produces a cross section profile plot for the specified cross section and displayes the specified bankfull elevation.
xs_plot(xs_points, stream, xs_number, bankfull_elevation)
A ggplot2 object.
This function is used to plot the cross section profile from a
xs_points
data frame.
The xs_plot
function requires a xs_points
dataframe.
See the sin_xs_points
package dataset for an example of this
format of cross section data produced by the FluvialGeomorph
ArcGIS
toolbox.
# Extract attribute data from the fluvgeo::sin_riffle_channel_points_sf
# sf data frame
sin_xs_points_df <- fluvgeo::sin_riffle_channel_points_sf
# Call the xs_plot function
sin_4_plot <- xs_plot(xs_points = sin_xs_points_df,
stream = "Sinsinawa",
xs_number = 4,
bankfull_elevation = 103.5)
# Print the graph
sin_4_plot