Skip to contents

Create Wind Speed by Beaufort Scale Plot

Usage

create_plot_wind_beaufort(rogue_conditions, date_caption = NULL)

Arguments

rogue_conditions

Data frame with rogue wave conditions

date_caption

Date range caption

Value

plotly object

Examples

if (FALSE) { # \dontrun{
conditions <- data.frame(
  time = as.POSIXct("2024-01-01") + (1:10) * 3600,
  station_id = rep(c("M2", "M3"), 5),
  wind_speed = runif(10, 5, 35),
  rogue_ratio = runif(10, 2.0, 2.5),
  hmax = runif(10, 8, 15), wave_height = runif(10, 3, 6)
)
create_plot_wind_beaufort(conditions)
} # }