Access data from a weather station with the Raspberry Pi
Displaying Data Charts on Websites
Creating charts from the data and then embedding them in a web page can be done several ways. With Gnuplot, for example, a script could generate a graphic file, which is then embedded as an image in the website.
Google Charts provides a way to transmit the data to a web interface and returns an image file. You do not need graphics applications on your own web server in this case. I decided on a third option and used the Highcharts JavaScript library [6] to generate the charts.
Highcharts provides very attractive results. Although use for commercial purposes is a little expensive, private use is licensed free of charge by Highsoft Solutions AS under the "Creative Commons Attribution-NonCommercial 3.0 Unported" license.
Listing 3 creates a graph of a temperature profile over 24 hours. All it takes is to embed the two JavaScript libraries, jQuery and Highcharts. The chart itself is defined as a JavaScript function. The only special feature is the identification of the x-axis as date values and embedding the data values. A data value consists of the time and the temperature. The time data from the weather station previously had to be multiplied by 1,000 because JavaScript expects the values in milliseconds, and the measured data are stated in seconds.
Listing 3
Highcharts JS Graph
All Together Now
The ingredients described thus far make up the core of the application. What is still lacking is essentially regular data updates and interaction between the ingredients described above. A simple web application that reads data from the database and generates the corresponding chart is shown in Listing 4.
Listing 4
Generating the Chart as a Web App
The Sinatra web application is in lines 10 to 16. The call to inherit **:index
embeds the data in the website. The website is then embedded in the script in line 21. Then, inherit
replaces the code in line 32, <% = @data%>
, with the contents of the @data
variable. The result in the browser is shown in Figure 3.
The only question that remains is how to collect the data regularly, which is handled by the previously mentioned cron job with an hourly call to the script in Listing 5.
Listing 5
Cron Job
This script is stored in the directory /etc/cron.hourly
and tagged as executable using:
sudo chmod a+x crontab_pi
The load_data
script, executed as a cron job, acquires the measured data, writes it to a CSV file, and uploads the file to the database.
Listing 4 shows how Sinatra can create a full-fledged web application with relatively little code. The rest of the process is hard work and involves acquiring the other readings from the weather station and cleaning up the code a little. In the end, the code might look like that shown in Figure 4.
Extensible
I have published the preliminary results of my weather application as source code on GitHub.com [7]. To download and test the code with Git, call
git clone git://github.com/rheikvaneyck/rnexus.git
to create a local copy. You can update later with:
git pull
The code needs improvements in many places, but it provides insight into some ways to use your Raspberry Pi to build your own web applications.
Infos
- TFA Nexus Wireless Weather Station: http://tfa-dostmann.de/index.php?id=62&L=1
- Raspbian: http://www.raspberrypi.org/downloads
- te93tool: http://te923.fukz.org/
- rbenv: https://github.com/sstephenson/rbenv
- Code for this article: ftp://ftp.linux-magazin.com/pub/listings/magazine/152
- Highcharts: http://www.highcharts.com/
- rnexus weather web application: https://github.com/rheikvaneyck/rnexus
« Previous 1 2 3
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
-
VirtualBox 7.1.4 Includes Initial Support for Linux kernel 6.12
The latest version of VirtualBox has arrived and it not only adds initial support for kernel 6.12 but another feature that will make using the virtual machine tool much easier.
-
New Slimbook EVO with Raw AMD Ryzen Power
If you're looking for serious power in a 14" ultrabook that is powered by Linux, Slimbook has just the thing for you.
-
The Gnome Foundation Struggling to Stay Afloat
The foundation behind the Gnome desktop environment is having to go through some serious belt-tightening due to continued financial problems.
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.