aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/weather.blade.php
blob: 40a89f58995fc14abe0e049427cf4df785dd86ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
<table class="infotable">
    <tr>
        <td colspan="2">
            <h1>Local Weather</h1>
        </td>
    </tr>
    <tr>
        <td colspan="2">
            <hr>
        </td>
    </tr>
    <tr>
        <td><b>Wind Speed:</b></td>
        <td>{{ $data->wind->speed }} mph</td>
    </tr>
    <tr>
        <td><b>Wind Direction:</b></td>
        <td>{{ $data->wind->direction->degrees }}°, {{ $data->wind->direction->cardinal }}</td>
    </tr>
    <tr>
        <td><b>Temperature:</b></td>
        <td>{{ $data->temperature }}°C</td>
    </tr>
    <tr>
        <td><b>Rain Rate:</b></td>
        <td>{{ $data->rain_rate }} mm/hr</td>
    </tr>
    <tr>
        <td><b>Humidity:</b></td>
        <td>{{ $data->humidity }}%</td>
    </tr>
</table>
<br>
<small><i>(Last Update: {{ $updated }})</i></small>
@stop