Open dirkwa opened 1 month ago
That values are also sent to the windy server.
Could it be that you need to convert m/s to kt here?
case 'environment.wind.speedOverGround': let speed = value.toFixed(2); speed = parseFloat(speed); if ((windGust == null) || (speed > windGust)) { windGust = speed; } windSpeed.push(speed);
Just saw that windy expects m/s in their API
https://community.windy.com/topic/8168/report-your-weather-station-data-to-windy/2
So must be a typo than for the dashboard.
I assume it is line #126
statusMessage +=
Wind speed is ${currentWindSpeed}kts and gust is ${windGust}kts.;
I am sailing atm and noticed that windy plugin shows in the dashboard kt. That values are too low. In the data browser I see m/s.