You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed several differences with the current windRose function:
The argument calm_wind is requested but not used in the function. I would expect that this value would be automatically added as one speed cut, and that windspeeds less than calm_wind would be shown as a transparent bin in the windrose plot.
In the windRose plot, low-speed winds are shown as the outer circle and high-speed winds are shown as the inner circle. Is this specific to New Zealand? Could this be made customizable for users? I have attempted to adjust the speed cut from larger to smaller numbers, but it did not affect how the plot was displayed.
The available color options are limited to those in the RColorBrewer package. Could the colors be made customizable like in any ggplot2 plots? This would allow for the use of user-defined colors and other packages that provide additional color schemes.
Thank you for your attention to these concerns. I appreciate any assistance you can provide in addressing these issues.
The text was updated successfully, but these errors were encountered:
I've updated the documentation for the calm_wind argument in the windrose function. This argument is actually referencing the direction of winds that are considered calm. By default, I follow the National Weather Service convention where winds with a direction of 0 are considered calm. This is also the approach taken in the circularR package.
I've updated clifro. The new (dev) version now has the low-speed winds near the center:
library(clifro)
wind_df=data.frame(wind_speeds= c(rweibull(80, 2, 4), rweibull(20, 3, 9)),
wind_dirs= c(rnorm(80, 135, 55), rnorm(20, 315, 35)) %%360,
station= rep(rep(c("Station A", "Station B"), 2),
rep(c(40, 10), each=2)))
# Plot a simple windrose using all the defaults, ignoring any facet variable
with(wind_df, windrose(wind_speeds, wind_dirs))
Thanks for letting me know user-defined colours would be useful. I'll open up another issue for this.
Hello,
I have noticed several differences with the current windRose function:
The argument calm_wind is requested but not used in the function. I would expect that this value would be automatically added as one speed cut, and that windspeeds less than calm_wind would be shown as a transparent bin in the windrose plot.
In the windRose plot, low-speed winds are shown as the outer circle and high-speed winds are shown as the inner circle. Is this specific to New Zealand? Could this be made customizable for users? I have attempted to adjust the speed cut from larger to smaller numbers, but it did not affect how the plot was displayed.
The available color options are limited to those in the RColorBrewer package. Could the colors be made customizable like in any ggplot2 plots? This would allow for the use of user-defined colors and other packages that provide additional color schemes.
Thank you for your attention to these concerns. I appreciate any assistance you can provide in addressing these issues.
The text was updated successfully, but these errors were encountered: