Old version cleaned
[weathermon.git] / web / image.php
1 <?php // content="text/plain; charset=utf-8"
2
3 error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE);
4
5 include ('config_local.php');
6
7 require_once ('jpgraph/jpgraph.php');
8 require_once ('jpgraph/jpgraph_line.php');
9 require_once ('jpgraph/jpgraph_date.php');
10 require_once ('jpgraph/jpgraph_scatter.php');
11 require_once ('jpgraph/jpgraph_regstat.php');
12
13 if (! ($db = new PDO("mysql:host=$mysql_host;port=$mysql_port;dbname=$mysql_schema",$mysql_user,$mysql_pwd,array( PDO::ATTR_PERSISTENT => false)))) {
14
15   die('Не могу подключиться к БД');
16
17 }  
18
19 $supported = imagetypes();
20 if( $supported & IMG_PNG )    $img_format="png";
21 elseif( $supported & IMG_GIF ) $img_format="gif";
22 elseif( $supported & IMG_JPG ) $img_format="jpeg";
23 elseif( $supported & IMG_WBMP ) $img_format="wbmp";
24 elseif( $supported & IMG_XPM ) $img_format="xpm";
25
26 $cachefilename = NULL;
27
28 $db -> exec('SET CHARACTER SET utf8');
29   
30 $type = $_REQUEST['type'];
31 $sensor=$_REQUEST['sensor'];
32 $param=$_REQUEST['param'];
33
34 if ($type and $param) {
35   
36   $sensor = intval($sensor);
37   $param = intval($param);
38
39   $q = $db -> prepare(
40     'select s_description from sensors where id='.$sensor
41   );
42   $q -> execute();
43
44   while ($row = $q -> fetch(PDO::FETCH_ASSOC)) {
45     $sensor_name = $row['s_description'];
46   }                                                                
47
48   $q = $db -> prepare(
49     'select st.st_dot_color,st.st_line_color,st.st_description,u.id,u.unit_group from st_parameters st,units u where st.id='.$param.' and st.st_unit=u.id'
50   );
51   $q -> execute();
52
53   while ($row = $q -> fetch(PDO::FETCH_ASSOC)) {
54     $param_name = $row['st_description'];
55     $from_unit = $row['id'];
56     $unit_group = $row['unit_group'];
57     $dot_color = $row['st_dot_color'];
58     $line_color = $row['st_line_color'];
59   }                                                                
60
61   if (!empty($_COOKIE['unit_'.$unit_group])) {
62     $to_unit=intval($_COOKIE['unit_'.$unit_group]);
63   } else {
64     $to_unit=$from_unit;
65   }  
66
67   $q = $db -> prepare(
68     'select u.name_short from units u where u.id='.$to_unit
69   );
70   $q -> execute();
71
72   while ($row = $q -> fetch(PDO::FETCH_ASSOC)) {
73     $param_unit = $row['name_short'];
74   }                                                                
75   
76   $xdata = array();
77   $ydata = array();
78
79   if ($type == 'last24') { 
80
81     $q = $db -> prepare(
82       'select unix_timestamp(timestamp) as x,unitconv(value,'.$from_unit.','.$to_unit.') as y from sensor_values where timestamp>adddate(now(), -1) and sensor_id='.$sensor.' and parameter_id='.$param.' order by timestamp'
83     );
84
85     $bottomheight = 130;
86     $topheight = 40;
87     $sizex = 1000;
88     $sizey = 800;
89     $scale = True;
90     
91   } elseif ($type == 'last24small') {
92
93     $q = $db -> prepare(
94       'select unix_timestamp(timestamp) as x,unitconv(value,'.$from_unit.','.$to_unit.') as y from sensor_values where timestamp>adddate(now(), -1) and sensor_id='.$sensor.' and parameter_id='.$param.' order by timestamp'
95     );
96
97     $bottomheight = 20;
98     $topheight = 20;
99     $sizex = 400;
100     $sizey = 300;
101     $scale = False;
102     
103   } elseif ($type == 'range') {
104
105     $curr = intval(date('YmdHis'));
106
107     $from = intval($_REQUEST['fromdate']);
108     $to = intval($_REQUEST['todate']);
109
110     if ($curr>$to) {
111     
112         $cachefilename='meteo.'.$sensor.'.'.$param.'.'.$to_unit.'.'.$from.'-'.$to.'.'.$img_format;
113     
114     }
115
116     $q = $db -> prepare(
117       'select unix_timestamp(timestamp) as x,unitconv(value,'.$from_unit.','.$to_unit.') as y from sensor_values where timestamp>=str_to_date("'.$from.'","%Y%m%d%H%i%s") and timestamp<=str_to_date("'.$to.'","%Y%m%d%H%i%s") and sensor_id='.$sensor.' and parameter_id='.$param.' order by timestamp'
118     );
119   
120     $bottomheight = 60;
121     $topheight = 40;
122     $sizex = 1000;
123     $sizey = 800;
124     $scale = True;
125   
126   }
127
128   $g = new Graph($sizex,$sizey);
129   
130   if ($cachefilename) {
131       if ($g->cache->IsValid($cachefilename)) {
132   
133           $g->cache->StreamImgFile($g->img,$cachefilename);
134           return;
135   
136       } else {
137       
138           $timeout = 8640000;
139           $g->SetupCache($cachefilename,$timeout);
140       
141       }
142   }
143
144   $q -> execute();
145     
146   while ($row = $q -> fetch(PDO::FETCH_ASSOC)) {
147     
148     $xdata[] = $row['x'];
149     $ydata[] = $row['y'];
150     
151   }                                                                
152
153
154   for ($i = 0; $i < count($xdata); ++$i) {
155
156     $total_weight=0;
157     $sum=0;
158     $maxdelta = 1800;
159     
160     for ($j = $i; $j < count($xdata); ++$j) {
161     
162       $delta = abs($xdata[$i]-$xdata[$j]);
163       if ($delta > $maxdelta) { break; }
164     
165       $weight = 1-$delta/$maxdelta;
166       $total_weight += $weight;
167       $sum += $weight*$ydata[$j];
168       
169     }
170
171     for ($j = $i-1; $j >=0 ; --$j) {
172     
173       $delta = abs($xdata[$i]-$xdata[$j]);
174       if ($delta > $maxdelta) { break; }
175     
176       $weight = 1-$delta/$maxdelta;
177       $total_weight += $weight;
178       $sum += $weight*$ydata[$j];
179       
180     }
181     
182     $new_val = $sum/$total_weight;
183     $f_ydata[$i] = $new_val; 
184     
185   }
186
187   // Create the graph
188   $g->graph_theme = null;
189
190   $g->img->SetAntiAliasing();
191
192   // We need a datlin scale since we provide both
193   // x and y coordinates for the data points, but x is unix timestamp.
194   $g->SetScale('datlin');
195   if ($scale) {
196     $g->xaxis->SetLabelAngle(90);
197   } else {
198     $g->xaxis->HideLabels(True);
199   }
200   $g->xaxis->SetPos("min");
201 #  $g->xaxis->scale->SetTimeAlign( HOURADJ_1 );
202
203   // We use a scatterplot to illustrate the original
204   // contro points.
205   $splot = new ScatterPlot($ydata,$xdata);
206   $g->Add($splot);
207
208   // 
209   $splot->mark->SetFillColor($dot_color);
210   $splot->mark->SetColor($dot_color);
211   $splot->mark->SetType(MARK_FILLEDCIRCLE);
212   $splot->mark->SetSize(2);
213
214   $fplot = new LinePlot($f_ydata,$xdata);
215   $g->Add($fplot);
216   $fplot->SetColor($line_color);
217   $fplot->SetWeight(2);
218
219   $g->SetMargin(50,30,$topheight,$bottomheight);
220   if ($scale) {
221     $g->title->Set($sensor_name.'/'.$param_name.', '.$param_unit);
222     $g->title->SetFont(FF_DV_SANSSERIF,FS_BOLD,12);
223   }  
224   $g->SetMarginColor('lightgray');
225
226   $g->xgrid->Show();
227   $g->xgrid->SetLineStyle('dotted');
228   $g->ygrid->Show();
229   $g->ygrid->SetLineStyle('dotted');
230
231   // Add the plots to the graph and stroke
232   $g->Stroke();
233   
234 } else {
235
236   header("Content-Type: text/html; charset=UTF-8");
237   die('Сенсор не выбран!');
238
239 }  
240
241 ?>