| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/isvtgr/ |
Upload File : |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="20" />
<title>Untitled Document</title>
</head>
<body style = "text-align: ceneter; background-color: beige;"></body>
<body>
<?php
include "config.php";
include "isvtg_header-sr.php";
$par_sr = "Temperatura vazduha";
$par_en = "Temperature";
include "isvtg_par.php";
include "graph-header-sr.php";
// Draw coordinate system
include "graph-ord.php";
// Multiplicative parameters
$t0 = 0;
$dy = 0;
$h = 4;
//
$dty=-5;
$dtx=160;
$dt0=200;
// Draw line for 0C
echo"<g stroke='blue'>";
echo "<line x1='225' y1='".$dt0."' x2='1025' y2='".$dt0."' />";
echo"</g>";
echo"<g stroke='gray' stroke-width='1'>";
echo "<line x1='225' y1='160' x2='1025' y2='160' />"; // 10 oC
echo "<line x1='225' y1='120' x2='1025' y2='120' />"; // 20 oC
echo "<line x1='225' y1='80' x2='1025' y2='80' />"; // 30 oC
echo "<line x1='225' y1='40' x2='1025' y2='40' />"; // 40 0C
echo "<line x1='225' y1='240' x2='1025' y2='240' />"; // -10 oC
echo "<line x1='225' y1='280' x2='1025' y2='280' />"; // -20 oC
echo "<line x1='225' y1='320' x2='1025' y2='320' />"; // -30 oC
echo "<line x1='225' y1='360' x2='1025' y2='360' />"; // -40 oC
echo "</g>";
// Draw number
echo "<text x='160' y='20' font-size='24' font-weight='bold' fill='green'>T[ºC]</text>";
echo "<text x='208' y='206' font-size='20' font-weight='bold' fill='blue'>0</text>";
echo "<text x='198' y='166' font-size='20' font-weight='bold' fill='green'>10</text>";
echo "<text x='198' y='126' font-size='20' font-weight='bold' fill='green'>20</text>";
echo "<text x='198' y='86' font-size='20' font-weight='bold' fill='green'>30</text>";
echo "<text x='198' y='46' font-size='20' font-weight='bold' fill='green'>40</text>";
echo "<text x='190' y='246' font-size='20' font-weight='bold' fill='green'>-10</text>";
echo "<text x='190' y='286' font-size='20' font-weight='bold' fill='green'>-20</text>";
echo "<text x='190' y='324' font-size='20' font-weight='bold' fill='green'>-30</text>";
echo "<text x='190' y='364' font-size='20' font-weight='bold' fill='green'>-40</text>";
echo "<text x='1030' y='390' font-size='24' font-weight='bold' fill='green'>t</text>";
// Draw graph
echo "<g stroke-width = '2' stroke='red'>";
$k=0;
$row = mysqli_fetch_array($result);
$y1=200-($row['temp']-$dy)*$h;
for ($x = 225; $x < 1025; $x=$x+$xst) {
$k++;
$row = mysqli_fetch_array($result);
$x1=$x;
$x2=$x+$xst;
$y2=200-($row['temp']-$dy)*$h;
if ($k<$numofrows){
echo "<line x1=".$x1." y1=".$y1." x2=".$x2." y2=".$y2." />";
}
$y1=$y2;
}
echo "</g></g>";
//echo "<text x='5' y='439'>AMS ".$ams[$st]." Time ".$ts." # ".$te."</text>";
echo "</svg>";
echo "</table>";
echo "<br>";
// FOOTHER
include "graph-foother-sr.php";
//MIN - MAX
$par_db="temp";
$parameter = "Temperature";
include "graph-minmax-sr.php";
mysqli_close($dbh);
?>
<table>
<tr>
<td style = "width: 100px; text-align: center"><a href = "isvtg.php"><img src = "img/r_ret.png" width = "" height = "48"></a></td>
<td style = "width: 200px; font-size: 12px; text-align: justify; color: blue"><i>Povratak na početnu stranicu</i></td>
<td style = "width: 400px"></td>
<td style = "width: 100px; text-align: center"><a href = "isvtg_is.php"><img src = "img/r_hlp.png" width = "" height = "48"></a></td>
<td style = "width: 200px; font-size: 12px; text-align: justify; color: blue"><i>Ukratko o informacionom sistemu za praćenje rada prototipa vetrogeneratora VTG1</i></td>
</tr>
</table>
<?php include 'foother.php'; ?>
</body>
</html>