From 5eaef308377b7b1a25090e0b8d72882e90673285 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 19 Apr 2021 13:56:30 +0200 Subject: [PATCH] Improve list-hourly-weather.ps1 --- Scripts/list-hourly-weather.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/list-hourly-weather.ps1 b/Scripts/list-hourly-weather.ps1 index 07af12f7..4fa398ee 100755 --- a/Scripts/list-hourly-weather.ps1 +++ b/Scripts/list-hourly-weather.ps1 @@ -28,7 +28,7 @@ try { $Visib = $Hourly.visibility $Clouds = $Hourly.cloudcover $Desc = $Hourly.weatherDesc.value - "$($Hour):00: $($Temp)°C $($Precip)mm $($Humidity)% $($Pressure)hPa $WindDir $($WindSpeed)km/h UV$($UV) $($Visib)km $($Clouds)% ($Desc)" + "$($Hour)°°`t$($Temp)°C`t$($Precip)mm $($Humidity)%`t$($WindSpeed)km/h from $WindDir`t$($Pressure)hPa UV$($UV) $($Visib)km $($Clouds)% $Desc" $Hour++ }