diff options
author | Frankie B <git@diskfloppy.me> | 2024-01-22 01:18:12 +0000 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2024-01-22 01:19:24 +0000 |
commit | 42bb5228d50e212208a610a7dbf8b8726a17d2ed (patch) | |
tree | 5f788f9c3998d8bc4d0a37c3a6e83644bca65d04 /resources/views/components/weather.blade.php | |
parent | 6fa9efcc74a9c36f9e2178ee5427eafb8d470d99 (diff) |
Remove unused HLJS code and unnecessary components
Diffstat (limited to 'resources/views/components/weather.blade.php')
-rw-r--r-- | resources/views/components/weather.blade.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php deleted file mode 100644 index 29f925d..0000000 --- a/resources/views/components/weather.blade.php +++ /dev/null @@ -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> |