From eb6cb40ed5abdd42e084204541587fe976135650 Mon Sep 17 00:00:00 2001 From: Nick White Date: Thu, 7 Apr 2022 11:39:36 +0100 Subject: Show gust by default --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 7e615cc..5121a83 100644 --- a/main.go +++ b/main.go @@ -308,7 +308,7 @@ func main() { desc = fmt.Sprintf("%d", w.weathertype) } fmt.Printf("%18s, Temp: %4.1f°C, ", desc, w.temperatureDegC) - fmt.Printf("Rain: %2d%%, Wind: %4.1fmph\n", w.precipitationPerc, w.windspeedMph) + fmt.Printf("Rain: %2d%%, Wind: %4.1fmph, Gust: %4.1fmph\n", w.precipitationPerc, w.windspeedMph, w.windgustMph) if *verbose { fmt.Printf("%+v\n\n", w) } -- cgit v1.2.3