#' @title Calculate wind speed
#' @description helper function to calculate wind speed
#'
#' @param u horizontal (u) wind speed
#' @param v vertical (v) wind speed
#' @return Wind speed in meters per second
#' @export
windSpd <-function(u,v){
sqrt(u^2+v^2)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.