From 5142133f16cb085d46fbfd9514ab423b684f41aa Mon Sep 17 00:00:00 2001 From: Frankie B Date: Wed, 14 Jun 2023 21:48:05 +0100 Subject: Made weatherdata less painful to look at --- resources/views/components/weather.blade.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 resources/views/components/weather.blade.php (limited to 'resources/views/components/weather.blade.php') diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php new file mode 100644 index 0000000..b29ccc9 --- /dev/null +++ b/resources/views/components/weather.blade.php @@ -0,0 +1,19 @@ +@php + function degreesToCompassDirection($degrees) { + $cardinalDirections = array('N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW', 'N'); + $degreesPerDirection = 360 / count($cardinalDirections); + $index = round($degrees / $degreesPerDirection); + return $cardinalDirections[$index]; + } + + $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]; +@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) }}%
-- cgit v1.2.3-54-g00ecf