Creates a visualization of wind speed and direction

raws_windBarbTimeseriesPlot(
  rawsObject = NULL,
  extraBarbLength = 0,
  barbSize = 1,
  barbColor = "blue",
  pointColor = "black",
  barbLocation = "zero",
  xlab = "Time",
  ylab = "Wind Speed",
  xlim = NA,
  ylim = NA,
  ...
)

Arguments

rawsObject

raws_timeseries object for which to create the plot for

extraBarbLength

add length to barbss

barbSize

size of the barbs

barbColor

color of the barbs

pointColor

color of the plotted points

barbLocation

starting location for barbs. Currently accepts 'point' or 'zero'

xlab

x-axis label

ylab

y-axis label

xlim

vector containing minimum and maximum x-axis values

ylim

vector containing minimum and maximum y-axis values

...

additional arguments to be passed to addWindBarbs2

Value

plot of wind speed and direction

Examples

# \donttest{
library(RAWSmet)

rawsObject <- 
 example_cefa_Saddle_Mountain %>%
 raws_filterDate("20170901", "20170902")
  
raws_windBarbTimeseriesPlot(rawsObject, barbSize = 5, barbLocation = "point", barbColor = "blue")

#> NULL
# }