mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-25 20:22:37 +01:00
Plugins/Wttr: add some more units
This commit is contained in:
parent
2071fe2523
commit
92eb103917
@ -169,12 +169,13 @@ sub get_weather {
|
|||||||
|
|
||||||
when ('conditions') {
|
when ('conditions') {
|
||||||
$result .= "Currently: $c->{'weatherDesc'}->[0]->{'value'}: $c->{'temp_F'}F/$c->{'temp_C'}C (Feels like $c->{'FeelsLikeF'}F/$c->{'FeelsLikeC'}C); ";
|
$result .= "Currently: $c->{'weatherDesc'}->[0]->{'value'}: $c->{'temp_F'}F/$c->{'temp_C'}C (Feels like $c->{'FeelsLikeF'}F/$c->{'FeelsLikeC'}C); ";
|
||||||
$result .= "Cloud cover: $c->{'cloudcover'}; Visibility: $c->{'visibility'}; ";
|
$result .= "Cloud cover: $c->{'cloudcover'}%; Visibility: $c->{'visibility'}km; ";
|
||||||
$result .= "Wind: $c->{'windspeedMiles'}M/$c->{'windspeedKmph'}K $c->{'winddirDegree'}°/$c->{'winddir16Point'}; ";
|
$result .= "Wind: $c->{'windspeedMiles'}M/$c->{'windspeedKmph'}K $c->{'winddirDegree'}°/$c->{'winddir16Point'}; ";
|
||||||
$result .= "Humidity: $c->{'humidity'}; Precip: $c->{'precipMM'}mm; Pressure: $c->{'pressure'}; UV Index: $c->{'uvIndex'}; ";
|
$result .= "Humidity: $c->{'humidity'}%; Precip: $c->{'precipMM'}mm; Pressure: $c->{'pressure'}hPa; UV Index: $c->{'uvIndex'}; ";
|
||||||
}
|
}
|
||||||
|
|
||||||
when ('forecast') {
|
when ('forecast') {
|
||||||
|
$result .= "Hourly forecast: ";
|
||||||
my ($last_temp, $last_condition, $sep) = ('', '', '');
|
my ($last_temp, $last_condition, $sep) = ('', '', '');
|
||||||
foreach my $hour (@{ $wttr->{'weather'}->[0]->{'hourly'} }) {
|
foreach my $hour (@{ $wttr->{'weather'}->[0]->{'hourly'} }) {
|
||||||
my $temp = "$hour->{FeelsLikeF}F/$hour->{FeelsLikeC}C";
|
my $temp = "$hour->{FeelsLikeF}F/$hour->{FeelsLikeC}C";
|
||||||
@ -260,11 +261,11 @@ sub get_weather {
|
|||||||
}
|
}
|
||||||
|
|
||||||
when ('visibility') {
|
when ('visibility') {
|
||||||
$result .= "Visibility: $c->{'visibility'}; ";
|
$result .= "Visibility: $c->{'visibility'}km; ";
|
||||||
}
|
}
|
||||||
|
|
||||||
when ('cloudcover') {
|
when ('cloudcover') {
|
||||||
$result .= "Cloud cover: $c->{'cloudcover'}; ";
|
$result .= "Cloud cover: $c->{'cloudcover'}%; ";
|
||||||
}
|
}
|
||||||
|
|
||||||
default {
|
default {
|
||||||
|
Loading…
Reference in New Issue
Block a user