phpvms/resources/views/layouts/default/widgets/weather.blade.php

81 lines
2.8 KiB
PHP
Raw Normal View History

{{--
If you want to edit this, you can reference the CheckWX API docs:
https://api.checkwx.com/#metar-decoded
--}}
@if(!$metar)
2018-05-18 06:03:30 +08:00
<p>@lang('frontend.widgets.weather.metarnotretrieved')</p>
@else
2018-04-04 08:21:42 +08:00
<table class="table table-striped">
<tr>
2018-05-18 06:03:30 +08:00
<td>@lang('frontend.widgets.weather.conditions')</td>
<td>
2018-04-07 22:05:06 +08:00
{{ $metar['category'] }}
{{ $metar['temperature'][$unit_temp] }}
2018-04-07 22:05:06 +08:00
°{{strtoupper($unit_temp)}}
@if($metar['visibility'])
2018-05-18 06:03:30 +08:00
, @lang('frontend.widgets.weather.visibility') {{ $metar['visibility'][$unit_dist] }} {{$unit_dist}}
2018-04-07 22:05:06 +08:00
@endif
@if($metar['humidity'])
2018-05-18 06:03:30 +08:00
, {{ $metar['humidity'] }}% @lang('frontend.widgets.weather.humidity')
2018-04-07 22:05:06 +08:00
@endif
@if($metar['dew_point'])
2018-05-18 06:03:30 +08:00
, @lang('frontend.widgets.weather.dewpoint')
{{ $metar['dew_point'][$unit_temp] }}
°{{strtoupper($unit_temp)}}
@endif
</td>
</tr>
<tr>
2018-05-18 06:03:30 +08:00
<td>@lang('frontend.widgets.weather.barometer')</td>
<td>
{{ number_format($metar['barometer'], 2) }} hPa
/ {{ number_format($metar['barometer_in'], 2) }} inHg
</td>
</tr>
2018-04-07 22:05:06 +08:00
@if($metar['clouds'])
<tr>
2018-05-18 06:03:30 +08:00
<td>@lang('frontend.widgets.weather.clouds')</td>
2018-04-07 22:05:06 +08:00
<td>
@if($unit_alt === 'ft')
{{$metar['clouds_report_ft']}}
@else
{{ $metar['clouds_report'] }}
@endif
</td>
</tr>
@endif
<tr>
2018-05-18 06:03:30 +08:00
<td>@lang('frontend.widgets.weather.wind')</td>
<td>
2018-05-18 06:03:30 +08:00
{{$metar['wind_speed']}} kts @lang('frontend.global.from') {{$metar['wind_direction_label']}}
2018-04-07 22:05:06 +08:00
({{$metar['wind_direction']}}°)
@if($metar['wind_gust_speed'])
@lang('frontend.widgets.weather.guststo') {{ $metar['wind_gust_speed'] }}
@endif
</td>
</tr>
<tr>
2018-05-18 06:03:30 +08:00
<td>@lang('frontend.global.metar')</td>
<td>
<div style="line-height:1.5em;min-height: 3em;">
2018-04-07 22:05:06 +08:00
{{ $metar['raw'] }}
</div>
</td>
</tr>
2018-04-07 22:05:06 +08:00
@if($metar['remarks'])
<tr>
2018-05-18 06:03:30 +08:00
<td>@lang('frontend.widgets.weather.remarks')</td>
2018-04-07 22:05:06 +08:00
<td>
{{ $metar['remarks'] }}
</td>
</tr>
@endif
<tr>
2018-05-18 06:03:30 +08:00
<td>@lang('frontend.widgets.weather.updated')</td>
2018-04-07 22:05:06 +08:00
<td>{{$metar['observed_time']}} ({{$metar['observed_age']}})</td>
</tr>
</table>
@endif