diff --git a/resources/views/pages/weather.blade.php b/resources/views/pages/weather.blade.php new file mode 100644 index 0000000..40a89f5 --- /dev/null +++ b/resources/views/pages/weather.blade.php @@ -0,0 +1,54 @@ +@extends('layouts.default') +@section('title', 'Weather') +@section('description', 'Data from my weather station') +@section('content') +@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 +
+ Local Weather+ |
+ |
+ + |
+ |
Wind Speed: | +{{ $data->wind->speed }} mph | +
Wind Direction: | +{{ $data->wind->direction->degrees }}°, {{ $data->wind->direction->cardinal }} | +
Temperature: | +{{ $data->temperature }}°C | +
Rain Rate: | +{{ $data->rain_rate }} mm/hr | +
Humidity: | +{{ $data->humidity }}% | +