From 45fd1d23c4b22d0b1bbd070d799ad3e6f274a8e5 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Sun, 2 Jul 2023 02:01:54 +0100 Subject: feat: update lastfm & weather to use internal API --- resources/views/components/weather.blade.php | 32 +++++++++++++++------------- 1 file changed, 17 insertions(+), 15 deletions(-) (limited to 'resources/views/components/weather.blade.php') diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php index 2aa2ebb..a5a041f 100644 --- a/resources/views/components/weather.blade.php +++ b/resources/views/components/weather.blade.php @@ -1,20 +1,22 @@ @php - function degreesToCompassDirection($degrees) { - $cardinalDirections = [ - 'N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', - 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW', 'N' - ]; - return $cardinalDirections[round($degrees*16/360)]; - } +$api_root = app('config')->get('app')['api_root']; - $data = json_decode(file_get_contents('http://weather.diskfloppy.me/data/weatherData.json')); - $updated = gmdate('H:i Y-m-d', intval(rtrim(file_get_contents('http://weather.diskfloppy.me/data/got.txt')))); - $data = $data->data->conditions[0]; +function degreesToCompassDirection($degrees) { + $cardinalDirections = [ + 'N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', + 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW', 'N' + ]; + return $cardinalDirections[round($degrees*16/360)]; +} + +$data = json_decode(file_get_contents($api_root.'/weather')); +$updated = gmdate('H:i Y-m-d', $data->updated); +$data = $data->data; @endphp

Local Weather (Last Update: {{ $updated }})

- Wind Speed:     {{ $data->wind_speed_last }} mph
- Wind Direction: {{ $data->wind_dir_last }}°, {{ degreesToCompassDirection($data->wind_dir_last) }}
- Temperature:    {{ round(($data->temp-32)*(5/9), 1) }}°C
- Rain Rate:      {{ round($data->rain_rate_last*0.2, 2) }} mm/hr
- Humidity:       {{ round($data->hum) }}%
+ Wind Speed:     {{ $data->wind->speed }} mph
+ Wind Direction: {{ $data->wind->direction->degrees }}°, {{ $data->wind->direction->cardinal }}
+ Temperature:    {{ $data->temperature }}°C
+ Rain Rate:      {{ $data->rain_rate }} mm/hr
+ Humidity:       {{ $data->humidity }}%
-- cgit v1.2.3-54-g00ecf