feat: align weather data
This commit is contained in:
parent
38da18777c
commit
0abb29b5c5
1 changed files with 4 additions and 4 deletions
|
@ -13,8 +13,8 @@ function degreesToCompassDirection($degrees) {
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
<h1>Local Weather <small>(Last Update: {{ $updated }})</small></h1>
|
<h1>Local Weather <small>(Last Update: {{ $updated }})</small></h1>
|
||||||
<b>Wind Speed:</b> {{ $data->wind_speed_last }} mph<br>
|
<b>Wind Speed:</b> {{ $data->wind_speed_last }} mph<br>
|
||||||
<b>Wind Direction:</b> {{ $data->wind_dir_last }}°, {{ degreesToCompassDirection($data->wind_dir_last) }}<br>
|
<b>Wind Direction:</b> {{ $data->wind_dir_last }}°, {{ degreesToCompassDirection($data->wind_dir_last) }}<br>
|
||||||
<b>Temperature:</b> {{ round(($data->temp-32)*(5/9), 1) }}°C<br>
|
<b>Temperature:</b> {{ round(($data->temp-32)*(5/9), 1) }}°C<br>
|
||||||
<b>Rain Rate:</b> {{ round($data->rain_rate_last*0.2, 2) }} mm/hr<br>
|
<b>Rain Rate:</b> {{ round($data->rain_rate_last*0.2, 2) }} mm/hr<br>
|
||||||
<b>Humidity:</b> {{ round($data->hum) }}%<br>
|
<b>Humidity:</b> {{ round($data->hum) }}%<br>
|
||||||
|
|
Loading…
Reference in a new issue