aboutsummaryrefslogtreecommitdiff
path: root/resources/views/components/weather.blade.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-06-14 21:48:05 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-06-14 22:15:44 +0100
commit5142133f16cb085d46fbfd9514ab423b684f41aa (patch)
tree05064ec281c5a9baf2d4b8376764415e569585fc /resources/views/components/weather.blade.php
parentcb78df544c7155edc0826079818a6c6509cf852d (diff)
Made weatherdata less painful to look at
Diffstat (limited to 'resources/views/components/weather.blade.php')
-rw-r--r--resources/views/components/weather.blade.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php
new file mode 100644
index 0000000..b29ccc9
--- /dev/null
+++ b/resources/views/components/weather.blade.php
@@ -0,0 +1,19 @@
+@php
+ function degreesToCompassDirection($degrees) {
+ $cardinalDirections = array('N', 'NNE', 'NE', 'ENE', 'E', 'ESE', 'SE', 'SSE', 'S', 'SSW', 'SW', 'WSW', 'W', 'WNW', 'NW', 'NNW', 'N');
+ $degreesPerDirection = 360 / count($cardinalDirections);
+ $index = round($degrees / $degreesPerDirection);
+ return $cardinalDirections[$index];
+ }
+
+ $data = json_decode(file_get_contents('http://weather.diskfloppy.me/data/weatherData.json'));
+ $updated = gmdate('H:i Y-m-d', intval(rtrim(file_get_contents('http://weather.diskfloppy.me/data/got.txt'))));
+ $data = $data->data->conditions[0];
+@endphp
+
+<h1>Local Weather <small>(Last Update: {{ $updated }})</small></h1>
+ <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>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>Humidity:</b> {{ round($data->hum) }}%<br>