@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