@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

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) }}%