2023-10-31 12:33:36 +01:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-11-10 13:07:47 +01:00
|
|
|
|
Lists the weather report
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.DESCRIPTION
|
2024-05-14 15:31:57 +02:00
|
|
|
|
This PowerShell script queries the 48h weather report from wttr.in and lists it in a nice table.
|
|
|
|
|
.PARAMETER location
|
|
|
|
|
Specifies the location to use (determined automatically by default)
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2023-08-06 21:35:36 +02:00
|
|
|
|
PS> ./list-weather.ps1
|
2024-05-14 15:31:57 +02:00
|
|
|
|
TODAY 🌡°C ☂️mm 💧 💨km/h ☀️UV ☁️ 👁km at Munich (Bayern, Germany)
|
|
|
|
|
0h 11° 0.0 88% ↖ 7 1 8% 10 🌙 clear
|
2022-12-05 08:19:26 +01:00
|
|
|
|
...
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-29 12:47:46 +01:00
|
|
|
|
.NOTES
|
2022-09-06 21:42:04 +02:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2021-04-19 11:12:21 +02:00
|
|
|
|
#>
|
|
|
|
|
|
2024-05-14 15:31:57 +02:00
|
|
|
|
param([string]$location = "") # empty means determine automatically
|
2021-04-19 11:12:21 +02:00
|
|
|
|
|
2024-05-14 15:31:57 +02:00
|
|
|
|
function GetDescription([string]$text) {
|
|
|
|
|
switch ($text) {
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"Blizzard" { return "❄️ blizzard ⚠️" }
|
2023-01-31 13:31:05 +01:00
|
|
|
|
"Blowing snow" { return "❄️ blowing snow ⚠️" }
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"Clear" { return "🌙 clear" }
|
|
|
|
|
"Cloudy" { return "☁️ cloudy" }
|
|
|
|
|
"Fog" { return "🌫 fog" }
|
2022-12-01 21:02:40 +01:00
|
|
|
|
"Freezing fog" { return "🌫 freezing fog" }
|
2024-05-15 07:32:24 +02:00
|
|
|
|
"Heavy rain" { return "💧 heavy rain ⚠️" }
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"Heavy snow" { return "❄️ heavy snow ⚠️" }
|
2022-11-17 10:45:37 +01:00
|
|
|
|
"Light drizzle" { return "💧 light drizzle" }
|
2022-12-14 12:16:36 +01:00
|
|
|
|
"Light freezing rain" { return "💧 light freezing rain ⚠️" }
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"Light rain" { return "💧 light rain" }
|
2022-11-18 09:56:33 +01:00
|
|
|
|
"Light rain shower" { return "💧 light rain shower" }
|
2022-11-21 09:45:09 +01:00
|
|
|
|
"Light sleet" { return "❄️ light sleet" }
|
2022-12-26 22:48:51 +01:00
|
|
|
|
"Light sleet showers" { return "❄️ light sleet showers" }
|
2022-11-18 17:34:55 +01:00
|
|
|
|
"Light snow" { return "❄️ light snow" }
|
2022-11-28 08:31:53 +01:00
|
|
|
|
"Light snow showers" { return "❄️ light snow showers" }
|
2023-08-14 16:48:45 +02:00
|
|
|
|
"Moderate or heavy freezing rain"{return "💧 moderate or heavy freezing rain ⚠️" }
|
2023-11-24 12:18:31 +01:00
|
|
|
|
"Moderate or heavy sleet" { return "❄️ moderate or heavy sleet ⚠️" }
|
2023-08-14 16:48:45 +02:00
|
|
|
|
"Moderate or heavy rain shower" { return "💧 moderate or heavy rain shower ⚠️" }
|
2024-05-14 15:31:57 +02:00
|
|
|
|
"Moderate or heavy rain in area with thunder" { return "💧 moderate or heavy rain in area with thunder ⚠️" }
|
2022-12-05 08:19:26 +01:00
|
|
|
|
"Moderate or heavy snow showers"{ return "❄️ moderate or heavy snow showers ⚠️" }
|
2024-05-02 12:17:54 +02:00
|
|
|
|
"Moderate or heavy snow in area with thunder" { return "❄️ moderate or heavy snow in area with thunder ⚠️" }
|
2022-12-14 12:16:36 +01:00
|
|
|
|
"Moderate rain" { return "💧 moderate rain" }
|
2023-07-26 16:00:03 +02:00
|
|
|
|
"Moderate rain at times" { return "💧 moderate rain at times" }
|
2022-11-18 17:34:55 +01:00
|
|
|
|
"Moderate snow" { return "❄️ moderate snow" }
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"Mist" { return "🌫 misty" }
|
|
|
|
|
"Overcast" { return "☁️ overcast" }
|
2022-11-17 10:45:37 +01:00
|
|
|
|
"Partly cloudy" { return "⛅️partly cloudy" }
|
2022-12-14 12:16:36 +01:00
|
|
|
|
"Patchy heavy snow" { return "❄️ patchy heavy snow ⚠️" }
|
2022-12-12 08:57:22 +01:00
|
|
|
|
"Patchy light drizzle" { return "💧 patchy light drizzle" }
|
2022-11-17 10:45:37 +01:00
|
|
|
|
"Patchy light rain" { return "💧 patchy light rain" }
|
2024-05-02 12:17:54 +02:00
|
|
|
|
"Patchy light rain in area with thunder" { return "💧 patchy light rain in area with thunder" }
|
2023-04-27 17:55:05 +02:00
|
|
|
|
"Patchy light rain with thunder" { return "💧 patchy light rain with thunder" }
|
2022-12-07 08:09:56 +01:00
|
|
|
|
"Patchy light snow" { return "❄️ patchy light snow" }
|
2023-01-23 09:33:52 +01:00
|
|
|
|
"Patchy moderate snow" { return "❄️ patchy moderate snow" }
|
2022-11-17 10:45:37 +01:00
|
|
|
|
"Patchy rain possible" { return "💧 patchy rain possible" }
|
2024-01-26 13:13:35 +01:00
|
|
|
|
"Patchy rain nearby" { return "💧 patchy rain nearby" }
|
2024-03-23 10:00:46 +01:00
|
|
|
|
"Patchy sleet nearby" { return "❄️ patchy sleet nearby" }
|
2023-01-31 13:31:05 +01:00
|
|
|
|
"Patchy snow possible" { return "❄️ patchy snow possible" }
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"Sunny" { return "☀️ sunny" }
|
2022-11-17 10:45:37 +01:00
|
|
|
|
"Thundery outbreaks possible" { return "⚡️thundery outbreaks possible" }
|
2024-05-13 08:47:00 +02:00
|
|
|
|
"Thundery outbreaks in nearby" { return "⚡️thundery outbreaks in nearby" }
|
|
|
|
|
default { return $text }
|
2022-11-25 15:04:10 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-14 15:31:57 +02:00
|
|
|
|
function GetWindDir([string]$text) {
|
|
|
|
|
switch($text) {
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"NW" { return "↘" }
|
2022-11-25 21:02:41 +01:00
|
|
|
|
"NNW" { return "↓" }
|
2022-11-25 15:04:10 +01:00
|
|
|
|
"N" { return "↓" }
|
2022-11-25 21:02:41 +01:00
|
|
|
|
"NNE" { return "↓" }
|
|
|
|
|
"NE" { return "↙" }
|
|
|
|
|
"ENE" { return "←" }
|
2022-11-25 15:04:10 +01:00
|
|
|
|
"E" { return "←" }
|
2022-11-26 12:04:48 +01:00
|
|
|
|
"ESE" { return "←" }
|
2022-11-25 15:04:10 +01:00
|
|
|
|
"SE" { return "↖" }
|
2022-11-25 21:02:41 +01:00
|
|
|
|
"SSE" { return "↑" }
|
2022-11-25 15:04:10 +01:00
|
|
|
|
"S" { return "↑" }
|
2022-11-25 21:02:41 +01:00
|
|
|
|
"SSW" { return "↑" }
|
2022-11-25 15:04:10 +01:00
|
|
|
|
"SW" { return "↗" }
|
2022-11-25 21:02:41 +01:00
|
|
|
|
"WSW" { return "→" }
|
2022-11-25 15:04:10 +01:00
|
|
|
|
"W" { return "→" }
|
2022-11-25 21:02:41 +01:00
|
|
|
|
"WNW" { return "→" }
|
2024-05-14 15:31:57 +02:00
|
|
|
|
default { return "$text" }
|
2022-11-05 14:50:19 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-19 11:12:21 +02:00
|
|
|
|
try {
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress "Loading weather data from http://wttr.in ..."
|
2024-05-14 15:31:57 +02:00
|
|
|
|
$weather = (Invoke-WebRequest -URI http://wttr.in/${location}?format=j1 -userAgent "curl" -useBasicParsing).Content | ConvertFrom-Json
|
|
|
|
|
$area = $weather.nearest_area.areaName.value
|
|
|
|
|
$region = $weather.nearest_area.region.value
|
|
|
|
|
$country = $weather.nearest_area.country.value
|
|
|
|
|
Write-Progress -completed "Done."
|
|
|
|
|
|
|
|
|
|
[int]$day = 0
|
|
|
|
|
foreach($hourly in $weather.weather.hourly) {
|
|
|
|
|
$hour = $hourly.time / 100
|
|
|
|
|
$tempC = $(($hourly.tempC.toString()).PadLeft(3))
|
2024-05-15 07:32:24 +02:00
|
|
|
|
$precip = $($($hourly.precipMM).PadLeft(4))
|
2024-05-14 15:31:57 +02:00
|
|
|
|
$humidity = $(($hourly.humidity.toString()).PadLeft(3))
|
|
|
|
|
$pressure = $hourly.pressure
|
|
|
|
|
$windSpeed = $(($hourly.windspeedKmph.toString()).PadLeft(2))
|
|
|
|
|
$windDir = GetWindDir $hourly.winddir16Point
|
|
|
|
|
$UV = $hourly.uvIndex
|
|
|
|
|
$clouds = $(($hourly.cloudcover.toString()).PadLeft(3))
|
|
|
|
|
$visib = $(($hourly.visibility.toString()).PadLeft(2))
|
|
|
|
|
$desc = GetDescription $hourly.weatherDesc.value.trim()
|
|
|
|
|
if ($hour -eq 0) {
|
|
|
|
|
if ($day -eq 0) {
|
|
|
|
|
Write-Host "TODAY 🌡°C ☂️mm 💧 💨km/h ☀️UV ☁️ 👁km at $area ($region, $country)" -foregroundColor green
|
|
|
|
|
} elseif ($day -eq 1) {
|
|
|
|
|
$date = (Get-Date).AddDays(1)
|
|
|
|
|
[string]$dayOfWeek = $date.DayOfWeek
|
|
|
|
|
Write-Host "$($dayOfWeek.toUpper())" -foregroundColor green
|
2021-04-20 16:38:04 +02:00
|
|
|
|
} else {
|
2024-05-14 15:31:57 +02:00
|
|
|
|
$date = (Get-Date).AddDays(2)
|
|
|
|
|
[string]$dayOfWeek = $date.DayOfWeek
|
|
|
|
|
Write-Host "$($dayOfWeek.toUpper())" -foregroundColor green
|
2021-04-20 16:38:04 +02:00
|
|
|
|
}
|
2024-05-14 15:31:57 +02:00
|
|
|
|
$day++
|
2021-04-20 16:38:04 +02:00
|
|
|
|
}
|
2024-05-14 15:31:57 +02:00
|
|
|
|
"$(($hour.toString()).PadLeft(2))h $tempC° $precip $humidity% $($windDir)$windSpeed $UV $clouds% $visib $desc"
|
2021-04-19 11:12:21 +02:00
|
|
|
|
}
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-04-19 11:12:21 +02:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2021-04-19 11:12:21 +02:00
|
|
|
|
exit 1
|
2023-08-06 21:35:36 +02:00
|
|
|
|
}
|