2023-06-14 20:48:05 +00:00
|
|
|
@php
|
2023-07-02 01:01:54 +00:00
|
|
|
$api_root = app('config')->get('app')['api_root'];
|
2023-06-14 20:48:05 +00:00
|
|
|
|
2023-07-02 01:01:54 +00:00
|
|
|
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($api_root.'/weather'));
|
|
|
|
$updated = gmdate('H:i Y-m-d', $data->updated);
|
2023-07-03 14:29:54 +00:00
|
|
|
$data = $data->current;
|
2023-06-14 20:48:05 +00:00
|
|
|
@endphp
|
|
|
|
|
|
|
|
<h1>Local Weather <small>(Last Update: {{ $updated }})</small></h1>
|
2023-07-02 01:01:54 +00:00
|
|
|
<b>Wind Speed:</b> {{ $data->wind->speed }} mph<br>
|
|
|
|
<b>Wind Direction:</b> {{ $data->wind->direction->degrees }}°, {{ $data->wind->direction->cardinal }}<br>
|
|
|
|
<b>Temperature:</b> {{ $data->temperature }}°C<br>
|
|
|
|
<b>Rain Rate:</b> {{ $data->rain_rate }} mm/hr<br>
|
|
|
|
<b>Humidity:</b> {{ $data->humidity }}%<br>
|