aboutsummaryrefslogtreecommitdiff
path: root/inc/weatherdata.inc.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-06-13 21:59:16 +0100
committerFrankie B <frankieraybrown@gmail.com>2023-06-14 22:15:44 +0100
commita464ef4c0e3ce235fb1da70dfb282449beeeac80 (patch)
tree4708f5c996376dd94f2cc49f7d16dc80eef1a4df /inc/weatherdata.inc.php
parent44db6ce1d9cfdca7e175cb74ee7d818b94571bc4 (diff)
Initialize laravel app
Diffstat (limited to 'inc/weatherdata.inc.php')
-rw-r--r--inc/weatherdata.inc.php68
1 files changed, 0 insertions, 68 deletions
diff --git a/inc/weatherdata.inc.php b/inc/weatherdata.inc.php
deleted file mode 100644
index cfc6a49..0000000
--- a/inc/weatherdata.inc.php
+++ /dev/null
@@ -1,68 +0,0 @@
-<?php
-
-$curl_current = curl_init();
-
-curl_setopt_array($curl_current, [
- CURLOPT_URL => "http://weather.diskfloppy.me/data/weatherData.json",
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_ENCODING => "",
- CURLOPT_MAXREDIRS => 10,
- CURLOPT_TIMEOUT => 300,
- CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
- CURLOPT_CUSTOMREQUEST => "GET",
-]);
-
-$current_response = curl_exec($curl_current);
-$err = curl_error($curl_current);
-
-curl_close($curl_current);
-
-$curl_current = curl_init();
-
-curl_setopt_array($curl_current, [
- CURLOPT_URL => "http://weather.diskfloppy.me/data/got.txt",
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_ENCODING => "",
- CURLOPT_MAXREDIRS => 10,
- CURLOPT_TIMEOUT => 300,
- CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
- CURLOPT_CUSTOMREQUEST => "GET",
-]);
-
-$last_update = curl_exec($curl_current);
-$err = curl_error($curl_current);
-
-curl_close($curl_current);
-
-if ($err) {
- die("cURL Error: " . $err);
-}
-$current_response = json_decode($current_response, true);
-$weather_data = $current_response['data']['conditions'][0];
-echo '<h1>Local Weather <small>(Last Update: '.gmdate('H:i Y-m-d', intval(rtrim($last_update))).')</small></h1>';
-$windDirDeg = $weather_data['wind_dir_last'];
-$windDir = "";
-// W I N D
-if (349 <= $windDirDeg || $windDirDeg <= 11) { $windDir = "N"; }
-else if (12 <= $windDirDeg && $windDirDeg <= 33) { $windDir = "NNE"; }
-else if (34 <= $windDirDeg && $windDirDeg <= 56) { $windDir = "NE"; }
-else if (57 <= $windDirDeg && $windDirDeg <= 78) { $windDir = "ENE"; }
-else if (79 <= $windDirDeg && $windDirDeg <= 101) { $windDir = "E"; }
-else if (102 <= $windDirDeg && $windDirDeg <= 123) { $windDir = "ESE"; }
-else if (124 <= $windDirDeg && $windDirDeg <= 146) { $windDir = "SE"; }
-else if (147 <= $windDirDeg && $windDirDeg <= 168) { $windDir = "SSE"; }
-else if (169 <= $windDirDeg && $windDirDeg <= 191) { $windDir = "S"; }
-else if (192 <= $windDirDeg && $windDirDeg <= 213) { $windDir = "SSW"; }
-else if (214 <= $windDirDeg && $windDirDeg <= 236) { $windDir = "SW"; }
-else if (237 <= $windDirDeg && $windDirDeg <= 258) { $windDir = "WSW"; }
-else if (259 <= $windDirDeg && $windDirDeg <= 281) { $windDir = "W"; }
-else if (282 <= $windDirDeg && $windDirDeg <= 303) { $windDir = "WNE"; }
-else if (304 <= $windDirDeg && $windDirDeg <= 326) { $windDir = "NW"; }
-else if (327 <= $windDirDeg && $windDirDeg <= 348) { $windDir = "WNW"; }
-
-
-echo '<b>Wind Speed:</b> '.$weather_data['wind_speed_last'].' mph<br>';
-echo '<b>Wind Direction:</b> '.$weather_data['wind_dir_last'].'°, '.$windDir.'<br>';
-echo '<b>Temperature:</b> '.round(($weather_data['temp']-32)*(5/9), 1).'°C<br>';
-echo '<b>Rain Rate:</b> '.round($weather_data['rain_rate_last']*0.2, 2).' mm/hr<br>';
-echo '<b>Humidity:</b> '.round($weather_data['hum']).'%<br>';