Projects / NOAA Satellites images reception

IT | EN

Ricezione di Immagini dai Satelliti NOAA

Benvenuti! Oggi sono entusiasta di condividere un progetto che combina la ricezione di immagini satellitari, un Raspberry Pi e alcuni componenti hardware a basso costo. Questo progetto permette di ricevere immagini direttamente dai satelliti NOAA (National Oceanic and Atmospheric Administration) utilizzando un Raspberry Pi e il software Raspberry-NOAA-v2.


L'Attrezzatura

Per questo progetto, ho utilizzato i seguenti componenti:


Il Software: Raspberry-NOAA-v2

Il software chiave di questo progetto è Raspberry-NOAA-v2. Si tratta di una significativa revisione del progetto originale Raspberry-NOAA, che consente di configurare facilmente una stazione a terra per ricevere e decodificare le immagini satellitari NOAA.

Raspberry-NOAA-v2 offre notevoli miglioramenti in termini di usabilità, stile e funzionalità generale. Funziona sia su Raspberry Pi che su normali sistemi a 64 bit basati su Debian, offrendo flessibilità a seconda della configurazione. Il software include anche un pannello web che è compatibile con dispositivi mobili, rendendo facile monitorare e gestire le acquisizioni satellitari.

Puoi trovare il repository di Raspberry-NOAA-v2 qui: Repository Raspberry-NOAA-v2 su GitHub.


Guida Passo-Passo

Ecco come ho configurato il sistema:

  1. Installa Raspberry Pi OS:

    Ho iniziato con la versione minima di Raspberry Pi OS (senza ambiente desktop) per mantenere basso l'uso della CPU e della memoria.
  2. Installa il Software:

    Dopo aver aggiornato il sistema e installato Git, ho clonato il repository Raspberry-NOAA-v2:
     
    sudo apt update
    sudo apt full-upgrade -y
    sudo reboot
    sudo apt install git -y
    cd $HOME
    git clone --depth 1 https://github.com/jekhokie/raspberry-noaa-v2.git
    cd raspberry-noaa-v2/
    nano config/settings.yml
    ./install_and_upgrade.sh

    Ho modificato il file "settings.yml" per adattarlo alla mia posizione e configurazione, come regolare il guadagno dell'antenna e selezionare le frequenze satellitari corrette.
  3. Configurazione dell'Antenna:

    L'antenna V-Dipole è stata configurata per ricevere segnali dai satelliti NOAA. Il posizionamento e l'orientamento dell'antenna sono stati fondamentali per garantire una buona ricezione del segnale.
  4. Filtro FM:

    Ho aggiunto il filtro FM Nooelec tra il dongle RTL-SDR e l'antenna per eliminare le interferenze delle stazioni radio FM locali, che possono essere abbastanza forti da distorcere i segnali satellitari.
  5. Acquisizione e Decodifica:

    Una volta configurato il sistema, Raspberry-NOAA-v2 ha automaticamente catturato e decodificato i segnali satellitari NOAA durante ogni passaggio. Il software genera immagini dai segnali, che vengono poi visualizzate nel pannello web.

  6. Ricezione delle Immagini e Risultati

    Le immagini catturate dai satelliti NOAA offrono dati visivi sorprendenti dallo spazio, inclusi modelli meteorologici e condizioni superficiali. Il software Raspberry-NOAA-v2 supporta sia le immagini satellitari NOAA che Meteor-M 2, fornendo un'ampia gamma di dati satellitari da esplorare.


    Perchè Scegliere Raspberry-NOAA-v2?

    Raspberry-NOAA-v2 è uno strumento fantastico per gli appassionati di radio che sono interessati ai dati satellitari. Semplifica il processo di configurazione di una stazione a terra e include un'interfaccia web facile da usare per gestire e visualizzare le acquisizioni. Il software è continuamente aggiornato, e la comunità che lo circonda è attiva e di supporto.


    Risoluzione dei Problemi e Miglioramenti

    Se riscontri problemi come immagini vuote o risultati strani, Raspberry-NOAA-v2 ha un sistema di log integrato per aiutarti nella risoluzione dei problemi. Inoltre, il software consente facili aggiornamenti e modifiche alla configurazione, rendendolo adattabile a diverse configurazioni.


    Conclusione

    Impostare una stazione di ricezione delle immagini satellitari NOAA con un Raspberry Pi e componenti a basso costo è un progetto gratificante che porta la bellezza dei dati spaziali direttamente a casa tua. Che tu stia catturando modelli meteorologici o esplorando altri dati, questa configurazione offre un modo potente e accessibile per interagire con i segnali satellitari.

    Se sei interessato a provare questo progetto, ti consiglio vivamente di immergerti nella comunità di Raspberry-NOAA-v2 e di sperimentare con diverse configurazioni. Puoi trovare il software e tutti i dettagli nel Repository Raspberry-NOAA-v2 su GitHub. Buona caccia ai satelliti!

NOAA Satellites Image Reception

Welcome! Today, I'm excited to share a project that brings together satellite image reception, a Raspberry Pi, and some affordable hardware components. This project involves receiving images directly from NOAA (National Oceanic and Atmospheric Administration) satellites using a Raspberry Pi and the Raspberry-NOAA-v2 software.


The Setup

For this project, I used the following components:


The Software: Raspberry-NOAA-v2

The key software in this project is Raspberry-NOAA-v2. This is a major refactor of the original Raspberry-NOAA project, which allows you to easily set up a ground station to receive and decode NOAA satellite images.

Raspberry-NOAA-v2 offers significant improvements in usability, style, and overall functionality. It runs on both Raspberry Pi and regular Debian-based 64-bit systems, providing flexibility depending on your setup. The software also includes a web panel that is mobile-friendly, making it easy to monitor and manage your satellite captures.

You can find the Raspberry-NOAA-v2 repository here: Raspberry-NOAA-v2 GitHub Repository.


Step-by-Step Guide

Here's how I set up the system:

  1. Install the Raspberry Pi OS:

    I started with the minimal Raspberry Pi OS (without a desktop environment) to keep CPU and memory usage low.
  2. Install the Software:

    After updating the system and installing Git, I cloned the Raspberry-NOAA-v2 repository:
     
    sudo apt update
    sudo apt full-upgrade -y
    sudo reboot
    sudo apt install git -y
    cd $HOME
    git clone --depth 1 https://github.com/jekhokie/raspberry-noaa-v2.git
    cd raspberry-noaa-v2/
    nano config/settings.yml
    ./install_and_upgrade.sh

    I edited the "settings.yml" file to match my location and setup, such as adjusting the antenna gain and selecting the right satellite frequencies.
  3. Antenna Setup:

    The V-Dipole antenna was configured to receive signals from NOAA satellites. Positioning and orientation of the antenna were key to ensuring strong signal reception.
  4. FM Filter:

    I added the Nooelec FM filter between the RTL-SDR dongle and the antenna to eliminate interference from local FM radio stations, which can be strong enough to distort the satellite signals.
  5. Capture and Decode:

    Once the system was set up, Raspberry-NOAA-v2 automatically captured and decoded the NOAA satellite signals during each pass. The software generates images from the signals, which are then displayed on the web panel.

  6. Image Reception and Results

    The images captured from the NOAA satellites provide stunning visual data from space, including weather patterns and surface conditions. The Raspberry-NOAA-v2 software supports both NOAA and Meteor-M 2 satellite imagery capture, providing a broad range of satellite data to work with.


    Why Raspberry-NOAA-v2?

    Raspberry-NOAA-v2 is a fantastic tool for amateur radio enthusiasts interested in satellite data. It simplifies the process of setting up a ground station and includes a user-friendly web interface for managing and viewing captures. The software is continuously updated, and the community around it is active and supportive.


    Troubleshooting and Enhancements

    If you encounter issues like blank images or strange output, Raspberry-NOAA-v2 has a built-in log system to help you troubleshoot. Additionally, the software allows for easy upgrades and configuration changes, making it adaptable to different setups.


    Conclusion

    Setting up a NOAA satellite image reception station with a Raspberry Pi and affordable components is a rewarding project that brings the beauty of space data to your home. Whether you're capturing weather patterns or exploring other data, this setup offers a powerful and accessible way to engage with satellite signals.

    If you're interested in trying this project, I highly recommend diving into the Raspberry-NOAA-v2 community and experimenting with different configurations. You can find the software and all the details in the Raspberry-NOAA-v2 GitHub Repository. Happy satellite hunting!