-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Loss of resolution due to using 10 minute gusts #6
Comments
Hi, That are some very interesting thoughts! I have been struggling whit this as well. The reason that there is a 10 min gust value in de UPD, is that Davis is using it in the phone app, but using this 10 minutes gust value in the database is 'less' accurate. I will do some testing as well (unfortunately not much wind today, but I will keep this running for at least a week). To summary: Thanks for this great input! |
I see now why you suggested the 2-minute. The 1-minute is an average and not a high value. |
Nice, is this information from the developers of the wll? |
Yeah, as it turns out they have a Gitter chatroom they’re pretty active in: https://gitter.im/WeatherLink/weatherlink-live-local-api |
I have my weewx archive interval set to the default 5 min. I noticed my wind gust graphs all had "blunted" tops as compared to the more jagged peaks I was seeing with my old station. The issue is that the live UDP updates contain only 10-minute gust info, so every time there is a new highest gust it persists for the next 2 weewx archive cycles.
To try to improve resolution, I changed the driver so the
gust
parameter in the packet is updated only by thewind_speed_hi_last_2_min
data field in the HTTP packet, while the UDP packet updates instantaneous wind speed and direction only.The downside is that it looks like the console only updates the 2-minute gust value every 60 seconds, even if queried every 10 seconds. That results in a lag up to 60 seconds in the reported gust speed, so sometimes I see a higher wind speed than the listed gust speed for a few seconds. So the graphs are more accurate with better resolution, but the live display is very occasionally out of sync.
I made the change in the code just after sunset--you can see the change in the resolution of the gust chart:
The text was updated successfully, but these errors were encountered: