This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
<script language="javascript" type="text/javascript" src="http://people.iola.dk/olau/flot/jquery.flot.js"></script> | |
</head> | |
<body> | |
<h2>Temperature</h2> | |
<center><div id="temp" style="width:600px;height:300px;"></div></center> | |
<h2>Humidity</h2> | |
<center><div id="humidity" style="width:600px;height:300px;"></div></center> | |
<script id="source"> | |
$(function () { | |
var d = [ | |
[1327449645,58.01],[1327449654,58.01],[1327449941,58.51],[1327449971,58.81] | |
] | |
for(var i=0; i<d.length;i++){ | |
var obj = d[i][0]; | |
obj = (d[i][0]*1000)-18000000000; | |
} | |
$.plot($("#temp"), [d], { xaxis: { mode: "time" } }); | |
var h = [ | |
[1327449645,32.0],[1327449654,32.0],[1327449941,33.0],[1327449971,33.5], | |
] | |
for(var i=0; i<h.length;i++){ | |
var obj = h[i][0]; | |
obj = (h[i][0]*1000)-18000000000; | |
} | |
$.plot($("#humidity"), [h], { xaxis: { mode: "time" } }); | |
}); | |
</script> | |
</body> | |
</html> |
As you can see, this example creates two flot objects for Temperature and Humidity. We can use the Google App Engine templating engine to populate the flot data - we'll do this in the example below:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | |
<script language="javascript" type="text/javascript" src="http://people.iola.dk/olau/flot/jquery.flot.js"></script> | |
</head> | |
<body> | |
<h2>Temperature</h2> | |
<center><div id="temp" style="width:600px;height:300px;"></div></center> | |
<h2>Humidity</h2> | |
<center><div id="humidity" style="width:600px;height:300px;"></div></center> | |
<script id="source"> | |
$(function () { | |
var d = [ | |
{% for entry in weather reversed %} | |
{{entry.temp_entry}} | |
{% endfor %} | |
] | |
for(var i=0; i<d.length;i++){ | |
var obj = d[i][0]; | |
obj = (d[i][0]*1000)-18000000000; | |
} | |
$.plot($("#temp"), [d], { xaxis: { mode: "time" } }); | |
var h = [ | |
{% for entry in weather reversed %} | |
{{entry.humidity_entry}} | |
{% endfor %} | |
] | |
for(var i=0; i<h.length;i++){ | |
var obj = h[i][0]; | |
obj = (h[i][0]*1000)-18000000000; | |
} | |
$.plot($("#humidity"), [h], { xaxis: { mode: "time" } }); | |
}); | |
</script> | |
</body> | |
</html> |
Here, you can see that we iterate through the list of weather entries backwards to account for query selecting entries by date desc (newest first). For flot, we want to plot the points with newest last. Additionally, there is some funky-time handling present because Flot accepts time in ms.
To re-iterate, notice how the format of entries is stored in Google App Engine in a way that makes it super-simple to use with Flot. This is certainly not the most useful format for the data, but works and keeps within the free quota limits (a requirement for this project).