iwa-panda1

Manage Weather Data by International Weather Agency (Version 1)
Log | Files | Refs

commit 3e9c36f4d6818e1897565ccd6b3c13c698ce0bfb
parent eb0b42ad76d54b6a91930c5fc0d1d2fd7d349e67
Author: MoiBaguette <[email protected]>
Date:   Tue, 18 Apr 2023 16:49:46 +0200

added routing

Diffstat:
Dlogic/postWeatherData.php | 44--------------------------------------------
Dweather_data.txt | 10----------
2 files changed, 0 insertions(+), 54 deletions(-)

diff --git a/logic/postWeatherData.php b/logic/postWeatherData.php @@ -1,44 +0,0 @@ -<?php - -// Check if request method is POST -if ($_SERVER['REQUEST_METHOD'] == 'POST') { - // Include data validator function - include 'datavalidator.php'; - - // Retrieve the raw request body data - $request_body = file_get_contents('php://input'); - - // Decode the JSON data into a PHP associative array - $data = json_decode($request_body, true); - - // Access the "WEATHERDATA" array from the decoded data - $weather_data = $data['WEATHERDATA']; - - // Open the text file for writing - $file = fopen('weather_data.txt', 'w'); - - // Loop through each weather data object and write it to the text file - foreach ($weather_data as $weather_obj) { - $stn = $weather_obj['STN']; - $date = $weather_obj['DATE']; - $time = $weather_obj['TIME']; - $temp = $weather_obj['TEMP']; - $dewp = $weather_obj['DEWP']; - $stp = $weather_obj['STP']; - $slp = $weather_obj['SLP']; - $visib = $weather_obj['VISIB']; - $wdsp = $weather_obj['WDSP']; - $prcp = $weather_obj['PRCP']; - $sndp = $weather_obj['SNDP']; - $frshtt = $weather_obj['FRSHTT']; - $cldc = $weather_obj['CLDC']; - $wnddir = $weather_obj['WNDDIR']; - - // Write the weather data to the text file - fwrite($file, "$stn,$date,$time,$temp,$dewp,$stp,$slp,$visib,$wdsp,$prcp,$sndp,$frshtt,$cldc,$wnddir\n"); - } - - // Close the text file - fclose($file); -} -?> diff --git a/weather_data.txt b/weather_data.txt @@ -1,10 +0,0 @@ -75630,2023-04-18,14:40:58,7.6,2,993.1,998.9,27.9,17.8,0,0,000000,5.2,37 -135780,2023-04-18,14:40:58,6.1,2.5,999.4,1002.2,12.1,8.6,0.03,0,010000,59.8,232 -170980,2023-04-18,14:40:58,8.6,2.4,815.6,813.1,10.3,13.3,0.22,0.2,011000,53.4,242 -324080,2023-04-18,14:40:58,-4.4,-8.9,1006.5,1008.3,29,15.3,0.04,19.5,111000,50,274 -725200,2023-04-18,14:40:58,4,-5.1,975.3,1016,17.6,15.9,0.07,0,010000,96.7,235 -725214,2023-04-18,14:40:58,5.8,-2.6,1010,1018.7,14.9,15.5,0,0,000000,98.3,220 -478580,2023-04-18,14:40:58,11.9,3.5,1002.9,996.8,9.7,15.8,0,0,000000,51.3,310 -324090,2023-04-18,14:40:58,-1.4,-5.4,1014,1001.3,40.4,14.3,0,0,100000,69.5,313 -725210,2023-04-18,14:40:58,2.5,-4.2,977.1,1017,15.3,15.1,0.09,0,010000,50,264 -725208,2023-04-18,14:40:58,3.8,-3.9,1018.6,1017.8,15.3,14.8,0.01,0,010000,80,231