}
+$supported = imagetypes();
+if( $supported & IMG_PNG ) $img_format="png";
+elseif( $supported & IMG_GIF ) $img_format="gif";
+elseif( $supported & IMG_JPG ) $img_format="jpeg";
+elseif( $supported & IMG_WBMP ) $img_format="wbmp";
+elseif( $supported & IMG_XPM ) $img_format="xpm";
+
+$cachefilename = NULL;
+
$db -> exec('SET CHARACTER SET utf8');
$type = $_REQUEST['type'];
if ($month==13) {
$next_year++;
- $month=1;
+ $next_month=1;
+
+ }
+
+ $curr = date("Ym");
+
+ if ($curr>$next_year.$next_month) {
+
+ $cachefilename='meteo.month.'.$sensor.'.'.$param.'.'.$to_unit.'.'.$year.'-'.$month.'.'.$img_format;
}
'
select
x,
- unitconv(min(value),'.$from_unit.','.$to_unit.') min_value,
- unitconv(max(value),'.$from_unit.','.$to_unit.') max_value
+ unitconv(min(min),'.$from_unit.','.$to_unit.') min_value,
+ unitconv(max(max),'.$from_unit.','.$to_unit.') max_value
from (
select
- unix_timestamp(cast(timestamp as date)) x,
- value
+ unix_timestamp(day) x,
+ min,
+ max
from
- sensor_values
+ sensors_ranges
where
- timestamp>=str_to_date(\''.$year.$month.'\',\'%Y%m\')
- and timestamp<str_to_date(\''.$next_year.$next_month.'\',\'%Y%m\')
- and sensor_id='.$sensor.'
- and parameter_id='.$param.'
+ day>=str_to_date(\''.$year.$month.'\',\'%Y%m\')
+ and day<str_to_date(\''.$next_year.$next_month.'\',\'%Y%m\')
+ and sensor='.$sensor.'
+ and parameter='.$param.'
) t group by x
order by x'
);
$next_year = $year+1;
+ $curr = date("Y");
+
+ if ($curr>$next_year) {
+
+ $cachefilename='meteo.year.'.$sensor.'.'.$param.'.'.$year.'.'.$img_format;
+
+ }
+
$q = $db -> prepare(
'
select
x,
- unitconv(min(value),'.$from_unit.','.$to_unit.') min_value,
- unitconv(max(value),'.$from_unit.','.$to_unit.') max_value
+ unitconv(min(min),'.$from_unit.','.$to_unit.') min_value,
+ unitconv(max(max),'.$from_unit.','.$to_unit.') max_value
from (
select
unix_timestamp(
- DATE_SUB(cast(timestamp as date), INTERVAL DAYOFWEEK(cast(timestamp as date))-1 DAY)
+ DATE_SUB(day, INTERVAL DAYOFWEEK(day)-1 DAY)
) x,
- value
+ min,
+ max
from
- sensor_values
+ sensors_ranges
where
- timestamp>=str_to_date(\''.$year.'\',\'%Y\')
- and timestamp<str_to_date(\''.$next_year.'\',\'%Y\')
- and sensor_id='.$sensor.'
- and parameter_id='.$param.'
+ day>=str_to_date(\''.$year.'\',\'%Y\')
+ and day<str_to_date(\''.$next_year.'\',\'%Y\')
+ and sensor='.$sensor.'
+ and parameter='.$param.'
) t group by x
order by x'
);
}
+ $g = new Graph(640,480);
+
+ if ($cachefilename) {
+ if ($g->cache->IsValid($cachefilename)) {
+
+ $g->cache->StreamImgFile($g->img,$cachefilename);
+ return;
+
+ } else {
+
+ $timeout = 8640000;
+ $g->SetupCache($cachefilename,$timeout);
+
+ }
+ }
+
+
$q -> execute();
while ($row = $q -> fetch(PDO::FETCH_ASSOC)) {
// Create the graph
- $g = new Graph(640,480);
$g->graph_theme = null;
//$g->img->SetAntiAliasing();
$g->SetScale('datlin');
$g->xaxis->SetLabelAngle(90);
$g->xaxis->SetPos("min");
+ $g->xaxis->scale->SetTimeAlign( MINADJ_1 );
// We use a scatterplot to illustrate the original
// contro points.
$bplot = new LinePlot($maxdata,$xdata);
$g->Add($bplot);
$bplot->SetColor($fill_color_top);
- $bplot->SetFillGradient($fill_color_top,$fill_color_bottom,100,TRUE);
+ $bplot->SetFillGradient($fill_color_top.'@0.2',$fill_color_bottom.'@0.9',100,TRUE);
$bplot->SetFillFromYMin(TRUE);
$bplot->SetWeight(4);
$aplot = new LinePlot($mindata,$xdata);
$g->Add($aplot);
$aplot->SetColor($fill_color_bottom);
- $aplot->SetFillGradient($fill_color_bottom,'white',100,TRUE);
+ $aplot->SetFillGradient($fill_color_bottom.'@0.2','white@0.9',100,TRUE);
$aplot->SetFillFromYMin(TRUE);
$aplot->SetWeight(4);
$g->subtitle->SetColor('darkred');
$g->SetMarginColor('silver');
+ $g->xgrid->Show();
+ $g->xgrid->SetLineStyle('dotted');
+ $g->ygrid->Show();
+ $g->ygrid->SetLineStyle('dotted');
+
// Add the plots to the graph and stroke
$g->Stroke();