X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=templates%2Findex.html.ep;h=1cbb94914967bc115f586934944e9ec2f6e1c852;hb=47f7722750cbac46b82ccbad76a69ed27e1b48d2;hp=1b907ee9ae962b9d7b9d7f449ead6c8d6a357b65;hpb=9b5d862ac17d07b815f9ce05f9adc52ba078be1c;p=dweather.git diff --git a/templates/index.html.ep b/templates/index.html.ep index 1b907ee..1cbb949 100644 --- a/templates/index.html.ep +++ b/templates/index.html.ep @@ -1,5 +1,6 @@ +% use Debug; % my $url = url_for 'weather'; -% my $s; +% my ($s, $lasttemp); @@ -13,6 +14,10 @@ + + + + @@ -30,6 +35,13 @@ var h = new Object(); + var trans = { + "Wind" : function (speed) { return (speed * 2.236936).toFixed(1); }, + "Wind_1m" : function (speed) { return (speed * 2.236936).toFixed(1); }, + "Wind_Max": function (speed) { return (speed * 2.236936).toFixed(1); } + }; + + function do_debug(text) { document.getElementById("do_debug").innerHTML = text; } @@ -41,7 +53,12 @@ function fill_html(key,value) { var d = document.getElementById(key); if (d !== null) { - d.innerHTML = value; + var f = trans[key]; + if (f && typeof(f) === "function") { + d.innerHTML = trans[key](value); + } else { + d.innerHTML = value; + } } } @@ -59,6 +76,7 @@ var lastwind = 0; var lastdir = 0; var lastt = 0; + var lasttemp = -100; function startws() { ws = new WebSocket('<%= $url->to_abs %>'); @@ -108,14 +126,14 @@ zoomType: 'xy' }, title: { - text: 'Five Day Chart' + text: 'Last Five Days' }, xAxis: [{ type: 'datetime', // categories: [], crosshair: true }], - yAxis: [{ // Primary yAxis + yAxis: [{ // Temperature +(ve) labels: { format: '{value}°C', style: { @@ -130,7 +148,7 @@ }, opposite: true - }, { // Secondary yAxis + }, { // Rainfall gridLineWidth: 0, title: { text: 'Rainfall', @@ -145,51 +163,66 @@ } } - }, { // Tertiary yAxis + }, { // Pressure gridLineWidth: 0, title: { text: 'Sea-Level Pressure', style: { - color: Highcharts.getOptions().colors[1] + color: '#008800' } }, labels: { format: '{value} mb', style: { - color: Highcharts.getOptions().colors[1] + color: '#008800' } }, opposite: true - }, { // Tertiary yAxis + }, { // Humidity gridLineWidth: 0, floor: 0, ceiling: 100, title: { text: 'Humidity', style: { - color: '#008800' + color: '#000000' } }, labels: { format: '{value} %', style: { - color: '#008800' + color: '#000000' } }, // opposite: true + }, { // Temperature -(ve) + labels: { + format: '{value}°C', + style: { + color: '#0000ff' + } + }, +// title: { +// text: 'Temperature', +// style: { +// color: '#0000ff' +// } +// }, + opposite: true + }], tooltip: { shared: true }, - legend: { - layout: 'vertical', - align: 'left', - x: 120, - verticalAlign: 'top', - y: 55, - floating: true, - backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF' - }, +// legend: { +// layout: 'vertical', +// align: 'left', +// x: 120, +// verticalAlign: 'top', +// y: 55, +// floating: true, +// backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF' +// }, exporting: { buttons: { contextButton: { @@ -201,6 +234,7 @@ name: 'Rainfall', type: 'column', yAxis: 1, + color: Highcharts.getOptions().colors[0], labels: { // enabled: true, // format: '{point.y:.1f}', // one decimal @@ -224,6 +258,7 @@ name: 'Sea-Level Pressure', type: 'spline', yAxis: 2, + color: '#008800', data: [ <% $s = ""; for (@main::last5daysh) { @@ -241,16 +276,27 @@ valueSuffix: ' mb' } - }, { - name: 'Temperature', + }, { + name: 'Temperature +(ve)', type: 'spline', yAxis: 0, color: '#ff0000', data: [ - <% $s = ""; + <% $s = ""; undef $lasttemp; for (@main::last5daysh) { my $r = $main::json->decode($_); - $s .= "[" . $r->{t}*1000 . "," . $r->{h}->{Temp_Out} . "]," if $r && exists $r->{t} && exists $r->{h}->{Temp_Out}; + if ($r && exists $r->{t} && exists $r->{h}->{Temp_Out}) { + my $temp = $r->{h}->{Temp_Out}; + my $tm = $r->{t}*1000; + $lasttemp = $temp unless defined $lasttemp; + if ($temp > 0) { + $s .= sprintf "[%s,0],", $tm-1 if $lasttemp <= 0; + $s .= sprintf "[%s,%s],", $tm, $temp; + } else { + $s .= sprintf "[%s,%s],", $tm, $lasttemp > 0 ? 0 : "null"; + } + $lasttemp = $temp; + } } chop $s if length $s; %><%= $s %> @@ -261,7 +307,7 @@ }, { name: 'Humidity', type: 'spline', - color: '#008800', + color: '#000000', yAxis: 3, data: [ <% $s = ""; @@ -279,6 +325,34 @@ tooltip: { valueSuffix: ' %' } + }, { + name: 'Temperature -(ve)', + type: 'spline', + yAxis: 0, + color: '#0000ff', + data: [ + <% $s = ""; undef $lasttemp; + for (@main::last5daysh) { + my $r = $main::json->decode($_); + if ($r && exists $r->{t} && exists $r->{h}->{Temp_Out}) { + my $temp = $r->{h}->{Temp_Out}; + my $tm = $r->{t}*1000; + $lasttemp = $temp unless defined $lasttemp; + if ($temp <= 0) { + $s .= sprintf "[%s,0],", $tm-1 if $lasttemp > 0; + $s .= sprintf "[%s,%s],", $tm, $temp; + } else { + $s .= sprintf "[%s,%s],", $tm, $lasttemp <= 0 ? 0 : "null"; + } + $lasttemp = $temp; + } + } + chop $s if length $s; + %><%= $s %> + ], + tooltip: { + valueSuffix: ' °C' + } }] }); } @@ -623,7 +697,8 @@ function fill_daychart(js, days) { var rainfall = daychart.series[0].data.length > (days * 48); var pressure = daychart.series[1].data.length > (days * 48); - var temp = daychart.series[2].data.length > (days * 48); + var temppos = daychart.series[2].data.length > (days * 48); + var tempneg = daychart.series[4].data.length > (days * 48); var humidity = daychart.series[3].data.length > (days * 48); var hr = js.h; @@ -636,7 +711,26 @@ // do_debug(js.tm + " " + t + " " + te + "
"); daychart.series[0].addPoint(ra, true, rainfall); daychart.series[1].addPoint(pr, true, pressure); - daychart.series[2].addPoint(te, true, temp); + if (lasttemp <= -100) { + lasttemp = hr.Temp_Out; + } + if (hr.Temp_Out > 0) { + if (lasttemp <= 0) { + daychart.series[2].addPoint([t, 0], true, temppos); + } + daychart.series[2].addPoint([t, hr.Temp_Out], true, temppos); + } else { + daychart.series[2].addPoint([t, (lasttemp > 0) ? 0 : null], true, temppos); + } + if (hr.Temp_Out <= 0) { + if (lasttemp > 0) { + daychart.series[4].addPoint([t, 0], true, tempneg); + } + daychart.series[4].addPoint([t, hr.Temp_Out], true, tempneg); + } else { + daychart.series[4].addPoint([t, (lasttemp <= 0) ? 0 : null], true, tempneg); + } + lasttemp = hr.Temp_Out; daychart.series[3].addPoint(hu, true, humidity); } @@ -672,6 +766,13 @@ +
+
+

Two Day Forecast

+ meteogram +
+
+
@@ -691,36 +792,37 @@

- - - - - + + + + + - + - - + + - - - - - + + + + + - - - + + + + - - - - - + + + + +
Time: Sunrise: Sunset: Console Volts: TX Battery OK: Time: Sunrise: Sunset: Console Volts: TX Battery OK:
Pressure: Pressure: mb Trend:
Temperature in: Humidity: Temperature in: °CHumidity: %
Temperature out: Min: @ Max: @ Humidity: Dew Point:
Temperature out: °CMin: °C @ Max: °C @ Humidity: %Dew Point: °C
Wind: m/s @ degWind Dir Minute Avg: Wind Speed Minute Avg:
Wind: ° @ mphWind Minute Avg: ° @ mph Day Max Speed: mph @ Wind Chill: °C
Rain 30mins: Day: 24hrs: Month: Year: Rain 30mins: mmDay: mm24hrs: mmMonth: mmYear: mm