Remove unused HLJS code and unnecessary components
This commit is contained in:
parent
6f83c77109
commit
0cd22cf82b
7 changed files with 0 additions and 170 deletions
|
@ -1,22 +0,0 @@
|
|||
@php
|
||||
$api_root = app('config')->get('app')['api_root'];
|
||||
|
||||
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);
|
||||
$data = $data->current;
|
||||
@endphp
|
||||
|
||||
<h1>Local Weather <small>(Last Update: {{ $updated }})</small></h1>
|
||||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue