FYI - Weather and Wind Speed

Just a helpful tip....

For some dumb reason, our local International Airport (Orlando/MCO) started sending ZERO for Wind Speed to:

myWX = Weather.getCurrentConditions();
If I rode away from home and Garmin changed to another Weather Station, I'd get valid Wind Speed. This has been a persistent issue for a couple months. I finally got the idea to try something. If I get WindSpeed == 0, I'll also attempt to get Wind Speed from:
myWX = Weather.getHourlyForecast();
This works! I overwrite myWX to save memory. MCO does send a valid Wind Speed to the [0] index (the next hour), which I pull from myWX[0].windSpeed
I'm guessing this is a one-off issue with MCO, but if you encounter a zero Wind Speed you might want to look at this work around for a misbehaving Weather Station.