PowerShell/Scripts/list-hourly-weather.ps1

50 lines
1.4 KiB
PowerShell
Raw Normal View History

2021-04-19 11:16:43 +02:00
#!/usr/bin/pwsh
2021-04-19 11:12:21 +02:00
<#
.SYNTAX list-hourly-weather.ps1 [<location>]
.DESCRIPTION lists the hourly weather today
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param($Location = "") # empty means determine automatically
try {
$Weather = (Invoke-WebRequest http://wttr.in/${Location}?format=j1 -UserAgent "curl" ).Content | ConvertFrom-Json
$Area = $Weather.nearest_area.areaName.value
$Region = $Weather.nearest_area.region.value
2021-04-20 16:38:04 +02:00
$Country = $Weather.nearest_area.country.value
2021-04-19 11:12:21 +02:00
2021-04-20 16:38:04 +02:00
[int]$Day = 0
2021-04-19 11:12:21 +02:00
foreach ($Hourly in $Weather.weather.hourly) {
2021-04-20 16:38:04 +02:00
$Hour = $Hourly.time / 100
2021-04-19 11:12:21 +02:00
$Temp = $Hourly.tempC
$Precip = $Hourly.precipMM
$Humidity = $Hourly.humidity
$Pressure = $Hourly.pressure
$WindSpeed = $Hourly.windspeedKmph
$WindDir = $Hourly.winddir16Point
$UV = $Hourly.uvIndex
$Visib = $Hourly.visibility
$Clouds = $Hourly.cloudcover
$Desc = $Hourly.weatherDesc.value
2021-04-20 16:38:04 +02:00
if ($Hour -eq 0) {
if ($Day -eq 0) {
"🕗 Today at $Area ($Region, $Country)"
} elseif ($Day -eq 1) {
"🕗 Tomorrow"
} else {
"🕗 Day After Tomorrow"
}
$Day++
}
2021-04-19 13:56:30 +02:00
"$($Hour)°°`t$($Temp)°C`t$($Precip)mm $($Humidity)%`t$($WindSpeed)km/h from $WindDir`t$($Pressure)hPa UV$($UV) $($Visib)km $($Clouds)% $Desc"
2021-04-19 11:12:21 +02:00
$Hour++
}
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}