From 01c617250ca321fcb59aea416add079b8a556a6d Mon Sep 17 00:00:00 2001 From: Frankie B Date: Sat, 17 Jun 2023 13:58:08 +0100 Subject: fix: correct degreesToCompassDirection function --- resources/views/components/weather.blade.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php index b29ccc9..134ea11 100644 --- a/resources/views/components/weather.blade.php +++ b/resources/views/components/weather.blade.php @@ -1,9 +1,10 @@ @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]; + $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('http://weather.diskfloppy.me/data/weatherData.json')); -- cgit v1.2.3-54-g00ecf