R/raws_windBarbTimeseriesPlot.R
raws_windBarbTimeseriesPlot.Rd
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,
...
)
raws_timeseries object for which to create the plot for
add length to barbss
size of the barbs
color of the barbs
color of the plotted points
starting location for barbs. Currently accepts 'point' or 'zero'
x-axis label
y-axis label
vector containing minimum and maximum x-axis values
vector containing minimum and maximum y-axis values
additional arguments to be passed to addWindBarbs2
plot of wind speed and direction
# \donttest{
library(RAWSmet)
rawsObject <-
example_cefa_Saddle_Mountain %>%
raws_filterDate("20170901", "20170902")
raws_windBarbTimeseriesPlot(rawsObject, barbSize = 5, barbLocation = "point", barbColor = "blue")
#> NULL
# }