Raspberry Pi NOAA Weather Satellite Receiver

114,406

169

330

Introduction: Raspberry Pi NOAA Weather Satellite Receiver

About: I'm a ham, a tinker, a maker. I like interesting things. I'm a technophile, a wood turner, and a pen maker.

A new pile of parts means a new project is in the works.

I’m building a Raspberry Pi based NOAA weather satellite receiver. I’ve got some experience with receiving signals from NOAA satellites, but will be a little different, as all of the work is going to be done automatically on a Raspberry Pi. This will allow me to place the receiver right at the antenna, which is mounted in my attic. With a very short piece of coax, reducing feed-line loss.

I’ll be using the following list of parts:

  • Raspberry Pi 3 Model B
  • MicroUSB Power Supply
  • Generic Raspberry Pi 3 Case
  • 32 GB Micro SD Card
  • NooElec SDR Dongle
  • QFH Antenna

This project will require some basic Linux skills. If you are not comfortable navigating around the Linux command line, you may need to get some help if you want to follow along.

This instructable is going to focus on getting the Raspberry Pi working to receive images. Details around building a proper antenna can be found from other sources. I even made a video about it: https://youtu.be/KU75FSA6o2M

Step 1: Prepare the Raspberry Pi

The first step is getting the Raspberry Pi up and running. I’m using Raspbian (Jessie 2016-11-25).

There are plenty of tutorials on getting Raspbian set up and booting on the Raspberry Pi. You should have no difficulty in finding one: https://www.raspberrypi.org/documentation/installation/installing-images/README.md

Once you have the Raspbian image copied to your micro SD card, boot the Raspberry Pi. You'll need to get it on the network and enable SSH. You can certainly use either a wired Ethernet connection, or wireless. I'm using wireless, as I don't have a wired connection in my attic.

Enable SSH using the Raspberry Pi Configuration utility in the Preferences menu. You may want to set it to boot to CLI while you are in there. Since this is going to be a headless setup, there is no need to waste resources on a GUI.

Next we want to make sure the Raspberry Pi is fully up-to-date. Issue the following commands:

sudo apt-get update
sudo apt-get upgrade
sudo reboot

Step 2: Install the Necessary Software

The first thing we need is the USB drivers for the RTL dongle:

sudo apt-get install libusb-1.0

Since we need to build the latest version of rtl-sdr to actually make use of the RTL dongle, we'll need to install cmake:

sudo apt-get install cmake

We need to make sure the Raspberry Pi doesn't load any SDR kernel modules that will interfere with the rtl-sdr sofware.

Using your favorite text editor, create a new file named /etc/modprobe.d/no-rtl.conf and put the following text in the file. You need to run that text editor as sudo (i.e. 'sudo vi' or 'sudo nano' etc) to write to the modprobe.d directory:

blacklist dvb_usb_rtl28xxu
blacklist rtl2832
blacklist rtl2830

Install the most recent build of rtl-sdr:

cd ~
git clone https://github.com/keenerd/rtl-sdr.git
cd rtl-sdr/
mkdir build
cd build
cmake ../ -DINSTALL_UDEV_RULES=ON
make
sudo make install
sudo ldconfig
cd ~
sudo cp ./rtl-sdr/rtl-sdr.rules /etc/udev/rules.d/
sudo reboot

We'll need the sox audio toolkit in order to manipulate the received audio stream:

sudo apt-get install sox

We need a way to schedule the captures to happen as the satellites pass overhead. Install the at scheduler:

sudo apt-get install at

We need a way to know when the satellites will pass overhead. We'll use an application called predict:

sudo apt-get install predict

Finally, we'll need wxtoimg to convert the captured audio stream to an actual image:

cd ~
wget http://www.wxtoimg.com/beta/wxtoimg-armhf-2.11.2-beta.deb
sudo dpkg -i wxtoimg-armhf-2.11.2-beta.deb

Step 3: Testing Things Out

Once all the software is installed, make sure your USB dongle is connected and run the following command:

sudo rtl_test

You should see the following output:

Found 1 device(s):
  0:  Realtek, RTL2838UHIDIR, SN: 00000001

Using device 0: Generic RTL2832U OEM
Found Rafael Micro R820T tuner
Supported gain values (29): 0.0 0.9 1.4 2.7 3.7 7.7 8.7 12.5 14.4 15.7 16.6 19.7 20.7 22.9 25.4 28.0 29.7 32.8 33.8 36.4 37.2 38.6 40.2 42.1 43.4 43.9 44.5 48.0 49.6 
Sampling at 2048000 S/s.

Info: This tool will continuously read from the device, and report if
samples get lost. If you observe no further output, everything is fine.

Reading samples in async mode...

If you receive any error messages, you'll need to troubleshoot them before continuing. If your RTL Dongle isn't working at this point, it won't do any good to continue.

You need to run predict one time to set your ground station location. To do that you'll need your latitude and longitude. You can get your latitude and longitude from google maps by searching for your address, the right clicking on the pointer and selecting "What's Here". One thing to note is that Google displays North as positive and East as positive numbers. Predict uses North as positive but WEST as positive. Make sure to adjust accordingly, or your predictions will be no good.

Run predict from the command line, and select option 'G'. Enter your ground station information and exit the program.:

predict
                                      
                           --== PREDICT  v2.2.3 ==--         
                     Released by John A. Magliacane, KD2BD   
                                    May 2006                 
                                                             


                            --==[ Main Menu ]==--


 [P]: Predict Satellite Passes          [I]: Program Information
 [V]: Predict Visible Passes            [G]: Edit Ground Station Information
 [S]: Solar Illumination Predictions    [D]: Display Satellite Orbital Data
 [L]: Lunar Predictions                 [U]: Update Sat Elements From File
 [O]: Solar Predictions                 [E]: Manually Edit Orbital Elements
 [T]: Single Satellite Tracking Mode    [B]: Edit Transponder Database
 [M]: Multi-Satellite Tracking Mode     [Q]: Exit PREDICT

                 *  Ground Station Location Editing Utility  *



                        Station Callsign  : W1AW
                        Station Latitude  : 41.7169 [DegN]
                        Station Longitude : 72.7271 [DegW]
                        Station Altitude  : 25 [m]



            Enter the callsign or identifier of your ground station

You need to run wxtoimg once to accept the terms and conditions.

wxtoimg

You need to tell wxtoimg where your base station is at, so it can properly generate an overlay map. You do so by creating a file in your home directory named ~/.wxtoimgrc. In this file, North is positive, as with predict, however EAST is positive, which is the opposite of what predict uses. Make sure to adjust your values appropriately.

Using your favorite text editor, create a new file named ~/.wxtoimgrc and put the following text in the file, substituting your values:

Latitude: 41.7169
Longitude: -72.7271
Altitude: 25

Step 4: The Scripts

Now that you've got a working RTL dongle on your Raspberry Pi, it's time to actually make it receive some weather maps. Make sure your antenna is connected and located as best as possible. I've got mine mounted in my attic and it works fairly well from there. If you can mount it outside, that would be even better. Get it as high as possible.

We are going to need to create a few scripts to automate everything. This is where that Linux familiarity is going to come in.

First we'll create a couple directories to hold our files:

cd ~
mkdir weather
cd weather
mkdir predict
cd predict

Next we'll make the two scripts that kick off the scheduling. The first is 'schedule_all.sh'. This script will be called nightly at midnight. It downloads satellite pass information from celestrak and creates a TLE file for predict to use. Then it removes all AT jobs from the system, so no passes get double scheduled. Finally, it calls the second script 'schedule_satellite.sh' for each satellite we are interested in.

Using your favorite text editor, create a new file in ~/weather/predict named schedule_all.sh and put the following code in the file:

#!/bin/bash

# Update Satellite Information

wget -qr https://www.celestrak.com/NORAD/elements/weather.txt -O /home/pi/weather/predict/weather.txt
grep "NOAA 15" /home/pi/weather/predict/weather.txt -A 2 > /home/pi/weather/predict/weather.tle
grep "NOAA 18" /home/pi/weather/predict/weather.txt -A 2 >> /home/pi/weather/predict/weather.tle
grep "NOAA 19" /home/pi/weather/predict/weather.txt -A 2 >> /home/pi/weather/predict/weather.tle
grep "METEOR-M 2" /home/pi/weather/predict/weather.txt -A 2 >> /home/pi/weather/predict/weather.tle



#Remove all AT jobs

for i in `atq | awk '{print $1}'`;do atrm $i;done


#Schedule Satellite Passes:

/home/pi/weather/predict/schedule_satellite.sh "NOAA 19" 137.1000
/home/pi/weather/predict/schedule_satellite.sh "NOAA 18" 137.9125
/home/pi/weather/predict/schedule_satellite.sh "NOAA 15" 137.6200

The second script, 'schedule_satellite.sh', recurses through each pass of the given satellite for the current day. It determines if the maximum elevation is 20 degrees or greater. If it is, then it calculates the length of the pass, and schedules the recording and processing of the pass. If the maximum elevation is less than 20 degrees, the pass is ignored, as it generally won't produce a decent image.

Using your favorite text editor, create a new file in ~/weather/predict named schedule_satellite.sh and put the following code in the file:

#!/bin/bash
PREDICTION_START=`/usr/bin/predict -t /home/pi/weather/predict/weather.tle -p "${1}" | head -1`
PREDICTION_END=`/usr/bin/predict -t /home/pi/weather/predict/weather.tle -p "${1}" | tail -1`


var2=`echo $PREDICTION_END | cut -d " " -f 1`

MAXELEV=`/usr/bin/predict -t /home/pi/weather/predict/weather.tle -p "${1}" | awk -v max=0 '{if($5>max){max=$5}}END{print max}'`

while [ `date --date="TZ=\"UTC\" @${var2}" +%D` == `date +%D` ]; do

START_TIME=`echo $PREDICTION_START | cut -d " " -f 3-4`
var1=`echo $PREDICTION_START | cut -d " " -f 1`

var3=`echo $START_TIME | cut -d " " -f 2 | cut -d ":" -f 3`

TIMER=`expr $var2 - $var1 + $var3`

OUTDATE=`date --date="TZ=\"UTC\" $START_TIME" +%Y%m%d-%H%M%S`

if [ $MAXELEV -gt 19 ]
  then
    echo ${1//" "}${OUTDATE} $MAXELEV

    echo "/home/pi/weather/predict/receive_and_process_satellite.sh \"${1}\" $2 /home/pi/weather/${1//" "}${OUTDATE} /home/pi/weather/predict/weather.tle $var1 $TIMER" | at `date --date="TZ=\"UTC\" $START_TIME" +"%H:%M %D"`

fi

nextpredict=`expr $var2 + 60`

PREDICTION_START=`/usr/bin/predict -t /home/pi/weather/predict/weather.tle -p "${1}" $nextpredict | head -1`
PREDICTION_END=`/usr/bin/predict -t /home/pi/weather/predict/weather.tle -p "${1}"  $nextpredict | tail -1`

MAXELEV=`/usr/bin/predict -t /home/pi/weather/predict/weather.tle -p "${1}" $nextpredict | awk -v max=0 '{if($5>max){max=$5}}END{print max}'`

var2=`echo $PREDICTION_END | cut -d " " -f 1`

done

When the time comes for a give pass to be recorded and processed, at kicks off the final script 'receive_and_process_satellite.sh'. When this script is called, it uses rtl_fm to receive the audio from the satellite pass, and sends that audio to sox for processing. Sox saves the audio to a file. Once the pass is complete, wxmap is called to generate an overlay map for the image. Finally, wxtoimg is called to generate the actual image and place the overlay map on it.

Using your favorite text editor, create a new file in ~/weather/predict named receive_and_process_satellite.sh and put the following code in the file:

#!/bin/bash

# $1 = Satellite Name
# $2 = Frequency
# $3 = FileName base
# $4 = TLE File
# $5 = EPOC start time
# $6 = Time to capture

sudo timeout $6 rtl_fm -f ${2}M -s 60k -g 45 -p 55 -E wav -E deemp -F 9 - | sox -t wav - $3.wav rate 11025

PassStart=`expr $5 + 90`

if [ -e $3.wav ]
  then
    /usr/local/bin/wxmap -T "${1}" -H $4 -p 0 -l 0 -o $PassStart ${3}-map.png

    /usr/local/bin/wxtoimg -m ${3}-map.png -e ZA $3.wav $3.png
fi

Once all three scripts have been created, we need to make the executable, by issuing the following commands:

chmod +x schedule_all.sh
chmod +x schedule_satellite.sh
chmod +x receive_and_process_satellite.sh

Now, the last step in automating the reception is to schedule the first script to run just after midnight. Run the following command:

crontab -e

It will open a text editor of your choice to edit the cron file. Simply add the following line to the bottom of this file and save:

1 0 * * * /home/pi/weather/predict/schedule_all.sh

Now, at 00:01 the schedule will start. (if you don't want to wait, simply run the following command once to kick the process off:)

/home/pi/weather/predict/schedule_all.sh

Step 5: Check Things Out

To see upcoming satellite passes that are scheduled to be processed, run the following command:

atq

Check the ~/weather directory for your results. Each pass will generate three files:

NOAA1820170105-181147-map.png  <-- Map overlay file
NOAA1820170105-181147.png      <-- The final image file
NOAA1820170105-181147.wav      <-- The raw audio file

The format of the file name is the satellite name, followed by the date (YYYYMMDD) and time (HHMMSS) of the start of the pass. There are several filters that wxtoimg can use when generating the image file. I've had different luck with different satellites and passes on each filter. Feel free to play around with wxtoimg on the original map and audio files and see what you come up with.

One thing to note, the receiver can only receive one satellite at a time. If two satellites are passing overhead at the same time, the first one to start recording will "win" and be recorded. The second recording will error out and stop.

Step 6: Some of My Results

Epilog Contest 8

Participated in the
Epilog Contest 8

50 People Made This Project!

Recommendations

  • Make It Bridge

    Make It Bridge
  • For the Home Contest

    For the Home Contest
  • Game Design: Student Design Challenge

    Game Design: Student Design Challenge

330 Comments

0
albtrentadue
albtrentadue

2 months ago

The project is well designed and works at the end.
One correction should be done in "receive_and_process_satellite.sh": changed the command that actually runs the capture into:

sudo timeout $6 rtl_fm -f ${2}M -s 48000 -g 45 -E wav -E deemp -F 9 - | sox -t raw -e signed -c 1 -b 16 -r 48000 - -t wav $3.wav rate 11025

The original command refused to execute.

0
Cees73
Cees73

Question 5 months ago on Step 2

Hello, the dpkg command with sudo does not work. How can I solve this. See my dump screen what happened.

dpkg.jpg
0
Andre111
Andre111

8 months ago

Hello! I know it has been a while but while I was implementing the scripts of the project I found an error in the date format
(date: invalid date ‘TZ="UTC" @’
date: invalid date ‘TZ="UTC" @’
date: invalid date ‘TZ="UTC" @’)
I tried a lot of things and searched a lot on the internet, but I seem to not be able to find it the script is exactly the same posted, and I am located in Europe/Paris.
Andre Soares

0
Landot
Landot

Reply 7 months ago

Ah! I have a fix, spent the night on it but have a working code:

#!/bin/bash
PREDICTION_START=$(/usr/local/bin/predict -p ${1} | head -1)
PREDICTION_END=$(/usr/local/bin/predict -p ${1} | tail -1)
var2=$(echo $PREDICTION_END | cut -d " " -f 1)
MAXELEV=$(/usr/local/bin/predict -p "$1" | awk -v max=0 '{if($5>max){max=$5}}END{print max}')
while [ $(date --date="TZ=\"UTC\" @$var2" +'%D') == $(date --date="TZ=\"UTC\"" +'%D') ]; do
START_TIME=$(echo $PREDICTION_START | cut -d " " -f 3-4)
var1=$(echo $PREDICTION_START | cut -d " " -f 1)
var3=$(echo $START_TIME | cut -d " " -f 2 | cut -d ":" -f 3)
TIMER=$(expr "$var2" - "$var1")
OUTDATE=$(date --date="TZ=\"UTC\" @$var1" +'%Y%m%d-%H%M%S')
if [ "$MAXELEV" -gt 40 ]
then
echo ${1//" "}${OUTDATE} $MAXELEV
echo /home/pi/Sat/script/receive_and_process_satellite.sh "$1" "$2" /home/pi/Sat/NOAA/${1//" "}${OUTDATE} /home/pi/Sat/script/weather.tle "$var1" $TIMER | at $(date --date="TZ=\"UTC\" @${var1}" +'%H:%M %D')
fi
nextpredict=$(expr $var2 + 60)
PREDICTION_START=$(/usr/local/bin/predict -p "${1}" "$nextpredict" | head -1)
PREDICTION_END=$(/usr/local/bin/predict -p "${1}" "$nextpredict" | tail -1)
MAXELEV=$(/usr/local/bin/predict -p "${1}" $nextpredict | awk -v max=0 '{if($5>max){max=$5}}END{print max}')
var2=$(echo $PREDICTION_END | cut -d " " -f 1)
done

If any issue i'll try to help :)

0
PebblyWicket
PebblyWicket

Reply 7 months ago

Andre,

I have the same issue. When I try to run schedule_all.sh I get the same error (three times):

date: invalid date ‘TZ="UTC" @’
/home/bill/weather/predict/schedule_satellite.sh: line 10: [: ==: unary operator expected
date: invalid date ‘TZ="UTC" @’
/home/bill/weather/predict/schedule_satellite.sh: line 10: [: ==: unary operator expected
date: invalid date ‘TZ="UTC" @’
/home/bill/weather/predict/schedule_satellite.sh: line 10: [: ==: unary operator expected

I haven't had any luck searching the internet either. Did you find a fix?

I'll let you know if I find a solution.

Thanks,
Bill

0
PebblyWicket
PebblyWicket

Reply 7 months ago

Andre,

It breaks if I run it with sudo. If I don't use sudo it works.

Bill

0
break-fix-repeat
break-fix-repeat

1 year ago

I know this is and older post but I tried the build and everything seems to be in place except that I am getting a "sox WARN wav: Premature EOF on .wav input file" error when the scripts are ran. The pictures show a scan of the edges with the center being black.

Also, I watched the video and it talks about entering West coordinates as positive number but that does not work for me. I have to enter then as negative as the program instructs.

I may try the ima file posted earlier by Stefanie to see how it works for her.

Break-Fix-Repeat

0
Cachivache
Cachivache

1 year ago

Hello
, I have loaded my Raspberry with all the data you provide on your site to download images from weather satellites.
In principle I think it works but I have a doubt and I will appreciate if you can help me.
I uploaded everything to the Raspberry using a wifi connection with Putty and since my knowledge of Linux and Rasp is very low, I would like to know if the system is still working when I disconnect from Putty.
And I would also like to know if when I turn Rasp off and on again, the system boots by itself or what instruction I should place.
Thank you very much for all the help you can give me.
Kind regards
Albert
Chubut Patagonia Argentina

0
m0roj
m0roj

Question 1 year ago

Attempting to download the wxtoimg deb file from wxtoimgrestored but continually receive error saying: The certificate's owner does not match hostname ‘www.wxtoimgrestored.xyz
And the same if I choose tar.gz file.
Has the location changed again, or .............................?
Any thoughts/comments/advice please?

0
vuladedi
vuladedi

Question 1 year ago

This was fantastic and I have it working. Any idea how to script AT jobs only during the day? Its running at night too when there are no visible images.

0
K4DQP
K4DQP

1 year ago

I have a three led traffic light running alongside the code. When the process kicks off and starts recording, the light turns red. After recording and processing the files, it turns green. When updating the satellite predictions aty midnight, it turns red. When finished, it goes back to green.

My question is this...I want to add a second traffic light or group of leds to change color based on the NAME of the satellite being processed. Can anyone assist with this? I believe it would be somewhere in the receive_and_process_satellite.py file.

0
stefanied
stefanied

1 year ago

I managed to get it working and put the img file on my Google Drive if any one wants it, will have to use predict to change location,
I could not get Predict to work properly using Buster, it would open but would not save and was no menu, works using the final version of Raspbian Stretch, also the scripts returned errors, tz time not right or something but I found a fix at a forum which was to change the 3 scripts and then it worked as long as i do not us root, I changed the scripts then followed the instructables page but skipped the line to execute now and rebooted then used the atx command and it just worked.
https://drive.google.com/file/d/17msqV7td5l1GvNrGaRSi8G8OPjHRZvoS/view?usp=sharing login pw is "a"

0
B.C6
B.C6

1 year ago

It's working very nice for me .However is there existing a way to stop the programm to be able to use the key for other purpose ?
in advance thanks

0
blazer91
blazer91

2 years ago on Introduction

i@raspberrypi:~ $ /home/pi/weather/predict/schedule_all.sh
date: extra operand ‘+%D’
Try 'date --help' for more information.
/home/pi/weather/predict/schedule_satellite.sh: line 10: [: ==: unary operator expected
date: extra operand ‘+%D’
Try 'date --help' for more information.
/home/pi/weather/predict/schedule_satellite.sh: line 10: [: ==: unary operator expected
date: extra operand ‘+%D’
Try 'date --help' for more information.
/home/pi/weather/predict/schedule_satellite.sh: line 10: [: ==: unary operator expected

HELP!!!!!! This error message has got me stuck in a loop and nothing is working

0
ynotssor
ynotssor

Reply 2 years ago

blazer91, it appears that you're calling schedule_satellite.sh directly from the command line instead of letting schedule_all.sh provide the needed arguments.

0
AndreB124
AndreB124

Reply 2 years ago

while [ "date --date='TZ="UTC" @${var2}' +%D" == "date +%D" ]; do

0
ynotssor
ynotssor

Reply 2 years ago

AndreB124, your test condition is comparing 2 fixed literal strings instead of the
outputs of the date commands, so your while loop will never execute. To illustrate the difference between the use of your double quotes compared to backticks :

$ echo "date +%D"
date +%D
$ echo `date +%D`
03/01/21