-
Notifications
You must be signed in to change notification settings - Fork 1
/
class.climatetable.php
436 lines (362 loc) · 11.5 KB
/
class.climatetable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
<?php
////////////////////////////////////////////////////
//
// WeatherOffice
//
// http://www.sourceforge.net/projects/weatheroffice
//
// Copyright (C) 03/2014
// Lars Hinrichsen
//
//
// See COPYING for license info
//
////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Generates a HTML table for Climate data
// Look & Feel is like climate tables in Wikipedia.
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
class ClimateTable{
private $arrParameters;
private $tabColumns = array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
private $numCols = 12;
/**
* Constructor
*
* @access public
* @return \ClimateTable
*/
public function ClimateTable(){
}
/**
* Set the name of the weather station for the table header
*
* @param string $strStationname Name of the station
* @access public
* @return void
*/
public function setStationname($strStationname){
$this->arrParameters['STATIONNAME'] = $strStationname;
}
/**
* Allow a title to be set
*
* @param string $strCaption title of the diagram
* @access public
* @return void
*/
public function setTitle($strTitle){
$this->arrParameters['TITLE'] = $strTitle;
}
/**
* Set the geographical position of the weather station
*
* @param string $strGeoPosition Should be structured like "N 51° 12.345 E 006° 12.345"
* @access public
* @return void
*/
public function setStationPlace($strStationPlace){
$this->arrParameters['STATIONPLACE'] = $strStationPlace;
}
/**
* Overwrites the column names
*
* @param string $cols Array of Strings contain column names
* @access public
* @return void
*/
public function setColumns($cols){
$this->tabColumns = $cols;
$this->numCols = sizeof($cols);
}
/**
* Add a row with values
*
* @param const TEMP_MIN, TEMP_MAX, TEMP_MIN, RAINFALL_AVG, RAINFALL_MIN,RAINFALL_MAX
* @param string $strRowCaption Any text to be the first column in this row
* @param array $arrTemperature 12 fields with numeric values
* @access public
* @return void
*/
public function addRow($strType, $strRowCaption, $arrTemperature){
$this->arrParameters[$strType] = array("CAPTION" => $strRowCaption,
"VALUES" =>$arrTemperature);
}
/**
* Calculate the background color for temperature
*
* @param double $dblValue Temperature to be converted to color
* @access private
* @return void
*/
private function getBGCOLORTemp($dblValue){
$strBGCOLOR = "#8AB0FF"; # blue
if($dblValue >= -15)
{
$strBGCOLOR = "#B9D3FF"; # lighter blue
}
if($dblValue >= -10)
{
$strBGCOLOR = "#CFE8FF"; # light blue
}
if($dblValue >= -5)
{
$strBGCOLOR = "#FFFFFF"; # white
}
if($dblValue >= 5)
{
$strBGCOLOR = "#FFFF99"; # light yellow
}
if($dblValue >= 10)
{
$strBGCOLOR = "#FFCC66"; # light orange
}
if($dblValue >= 15)
{
$strBGCOLOR = "#FFA500"; # orange
}
if($dblValue >= 20)
{
$strBGCOLOR = "#FF6347"; # lightred
}
if($dblValue >= 25)
{
$strBGCOLOR = "#FF6347"; # red
}
if($dblValue >= 30)
{
$strBGCOLOR = "#FF4040"; # darkred
}
return $strBGCOLOR;
}
/**
* Generate a table row for temperature values
*
* @param string $caption caption of the row (e.g. "Average temperature in °C")
* @param array $arrValues array with 12 numeric temperature values
* @access private
* @return void
*/
private function getRowTemperature($caption, $arrValues){
echo "<tr align=\"center\"><td style=\"height:20px; text-align:left; white-space:nowrap;\">";
echo $caption . "</td>";
$sum=0;
for($i = 0; $i< $this->numCols;$i++)
{
echo "<td style=\"background: " . $this->getBGCOLORTemp($arrValues[$i]) . "\">". $arrValues[$i] . "</td>";
$sum=$sum+$arrValues[$i];
}
echo "<td style=\"border-left: 6px solid #E5E5E5; border-right: 3px solid #E5E5E5; font-size: 110%;\"><b>∅</b></td>";
echo "<td style=\"background: " . $this->getBGCOLORTemp($sum/$this->numCols) . ";width:45px;\"><b>". round($sum/$this->numCols,1) . "</b></td>";
echo "</tr>";
}
/**
* Calculate the background color for raindays
*
* @param double $dblValue Number of raindays to be converted to color
* @access private
* @return void
*/
private function getBGCOLORRaindays($dblValue){
$strBGCOLOR = "#EED8AE"; # light peach
if($dblValue >= 2 )
{
$strBGCOLOR = "#FFF8DC"; # lighter peach
}
if($dblValue >= 3)
{
$strBGCOLOR = "#FFFFFF"; # white
}
if($dblValue >= 4)
{
$strBGCOLOR = "#CFE8FF"; # blued white
}
if($dblValue >= 5)
{
$strBGCOLOR = "#FFFF99"; # lighter blue
}
if($dblValue >= 7)
{
$strBGCOLOR = "#B9D3FF"; # light blue
}
if($dblValue >= 8)
{
$strBGCOLOR = "#8AB0FF"; # blue
}
if($dblValue >= 9)
{
$strBGCOLOR = "#6495ED"; # darker blue
}
if($dblValue >= 10)
{
$strBGCOLOR = "#4169E1"; # dark blue
}
if($dblValue >= 12)
{
$strBGCOLOR = "#828BD9"; # light violet
}
if($dblValue >= 13)
{
$strBGCOLOR = "#607CD2"; # violet
}
return $strBGCOLOR;
}
/**
* Generate a table row for rainfall values
*
* @param string $caption caption of the row (e.g. "Average temperature in °C")
* @param array $arrValues array with 12 numeric rainfall values
* @access private
* @return void
*/
private function getRowRainfall($caption, $arrValues){
echo "<tr align=\"center\"><td style=\"height:20px; text-align:left; white-space:nowrap;\">";
echo $caption . "</td>";
$sum = 0;
for($i = 0; $i< $this->numCols ;$i++)
{
echo "<td style=\"background: " . $this->getBGCOLORRainfall($arrValues[$i]) . "\">". $arrValues[$i] . "</td>";
$sum=$sum+$arrValues[$i];
}
echo "<td style=\"border-left: 6px solid #E5E5E5; border-right: 3px solid #E5E5E5; font-size: 110%;\"><b>∑</b></td>";
echo "<td style=\"background: " . $this->getBGCOLORRainfall($sum/12) . ";width:45px;\"><b>". $sum . "</b></td>";
echo "</tr>";
}
/**
* Generate a table row for rainday values
*
* @param string $caption caption of the row (e.g. "Average temperature in °C")
* @param array $arrValues array with 12 numeric number of raindays per month values
* @access private
* @return void
*/
private function getRowRaindays($caption, $arrValues){
echo "<tr align=\"center\"><td style=\"height:20px; text-align:left; white-space:nowrap;\">";
echo $caption . "</td>";
$sum = 0;
for($i = 0; $i< $this->numCols;$i++)
{
echo "<td style=\"background: " . $this->getBGCOLORRaindays($arrValues[$i]) . "\">". $arrValues[$i] . "</td>";
$sum=$sum+$arrValues[$i];
}
echo "<td style=\"border-left: 6px solid #E5E5E5; border-right: 3px solid #E5E5E5; font-size: 110%;\"><b>∑</b></td>";
echo "<td style=\"background: " . $this->getBGCOLORRaindays($sum/12) . ";width:45px;\"><b>". $sum . "</b></td>";
echo "</tr>";
}
/**
* Calculate the background color for rainfall
*
* @param double $dblValue amount of rain to be converted to color
* @access private
* @return void
*/
private function getBGCOLORRainfall($dblValue){
$strBGCOLOR = "#EED8AE"; # light peach
if($dblValue >= 10 )
{
$strBGCOLOR = "#FFF8DC"; # lighter peach
}
if($dblValue >= 20)
{
$strBGCOLOR = "#FFFFFF"; # white
}
if($dblValue >= 30)
{
$strBGCOLOR = "#F0F8FF"; # blued white
}
if($dblValue >= 40)
{
$strBGCOLOR = "#CFE8FF"; # lighter blue
}
if($dblValue >= 50)
{
$strBGCOLOR = "#B9D3FF"; # light blue
}
if($dblValue >= 60)
{
$strBGCOLOR = "#8AB0FF"; # blue
}
if($dblValue >= 70)
{
$strBGCOLOR = "#6495ED"; # darker blue
}
if($dblValue >= 80)
{
$strBGCOLOR = "#607CD2"; # dark blue
}
return $strBGCOLOR;
}
private function getColumnNames(){
global $text;
echo "<tr align=\"center\"><td style=\"height:15px\"></td>";
foreach($this->tabColumns as $col)
{
if(isset($text[$col]))
{
$value=$text[$col];
}
else
{
$value=$col;
}
echo "<td style=\"width:45px\">$value</td>";
}
echo "</tr>";
}
/**
* Send the climate table to the stdout via echo
* @access public
* @return void
*/
public function getTable(){
echo "<div style=\"font-size:95%; text-align:center; margin-bottom:5px;\">";
echo "<table style=\"border: 5px solid #E5E5E5; font-size:95%; background:#E5E5E5; margin-bottom:10px;\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\">";
echo "<tr align=\"center\"><td colspan=\"13\" height=\"5\"><b>" . $this->arrParameters["TITLE"];
if (isset($this->arrParameters["STATIONNAME"]))
{
echo "<BR>" . $this->arrParameters["STATIONNAME"];
}
if (isset($this->arrParameters["STATIONPLACE"]))
{
echo " (" . $this->arrParameters["STATIONPLACE"] . ")";
}
echo "</b></td></tr>";
#echo "<tbody><tr align=\"center\"><td style=\"height:15px\">";
#echo "<tbody>";
$this->getColumnNames();
if(isset($this->arrParameters["TEMP_AVG"]))
{
$this->getRowTemperature($this->arrParameters["TEMP_AVG"]["CAPTION"],$this->arrParameters["TEMP_AVG"]["VALUES"]);
echo "<tr align=\"center\"><td colspan=\"13\" height=\"5\"></td></tr>"; # horizontal spacer
}
if(isset($this->arrParameters["MEAN_TEMP_MAX"]))
{
$this->getRowTemperature($this->arrParameters["MEAN_TEMP_MAX"]["CAPTION"],$this->arrParameters["MEAN_TEMP_MAX"]["VALUES"]);
}
if(isset($this->arrParameters["MEAN_TEMP_MIN"]))
{
$this->getRowTemperature($this->arrParameters["MEAN_TEMP_MIN"]["CAPTION"],$this->arrParameters["MEAN_TEMP_MIN"]["VALUES"]);
}
if(isset($this->arrParameters["TEMP_MAX"]))
{
$this->getRowTemperature($this->arrParameters["TEMP_MAX"]["CAPTION"],$this->arrParameters["TEMP_MAX"]["VALUES"]);
}
if(isset($this->arrParameters["TEMP_MIN"]))
{
$this->getRowTemperature($this->arrParameters["TEMP_MIN"]["CAPTION"],$this->arrParameters["TEMP_MIN"]["VALUES"]);
}
echo "<tr align=\"center\"><td colspan=\"13\" height=\"5\"></td></tr>"; # horizontal spacer
if(isset($this->arrParameters["RAINFALL_AVG"]))
{
$this->getRowRainfall($this->arrParameters["RAINFALL_AVG"]["CAPTION"],$this->arrParameters["RAINFALL_AVG"]["VALUES"]);
}
if(isset($this->arrParameters["RAINDAYS_AVG"]))
{
$this->getRowRaindays($this->arrParameters["RAINDAYS_AVG"]["CAPTION"],$this->arrParameters["RAINDAYS_AVG"]["VALUES"]);
}
echo "</tbody></table></div>\n";
}
}
?>