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
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.