@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)]; } $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