<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.satnogs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lange</id>
	<title>SatNOGS Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.satnogs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lange"/>
	<link rel="alternate" type="text/html" href="https://wiki.satnogs.org/Special:Contributions/Lange"/>
	<updated>2026-04-20T14:16:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.satnogs.org/index.php?title=SatNOGS_Monitor&amp;diff=4029</id>
		<title>SatNOGS Monitor</title>
		<link rel="alternate" type="text/html" href="https://wiki.satnogs.org/index.php?title=SatNOGS_Monitor&amp;diff=4029"/>
		<updated>2025-09-22T11:52:55Z</updated>

		<summary type="html">&lt;p&gt;Lange: Update install and build process to ci-based prebuilt packages&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
[[File:Satnogs-monitor.png|800px]]&lt;br /&gt;
&lt;br /&gt;
'''SatNOGS Monitor''' is a terminal ui to monitor your and/or other ground stations of the SatNOGS network. It is written in [https://www.rust-lang.org/ Rust] and runs on Linux and has been reported to run on MacOS[https://community.libre.space/t/satnogs-station-monitor/2802/13]. Windows is currently not supported by the underlying terminal library, but might be added at some point in the future.  '''SatNOGS Monitor''' does not need to be installed on an actual SatNOGS station computer (although there are benefits of doing so as discussed below). &lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
Since version 4.3-pre, there are debian packages available for simple installation.&lt;br /&gt;
&lt;br /&gt;
# Copy the download link Debian package matching your CPU architecture from '''release page'''[https://github.com/wose/satnogs-monitor/releases]&lt;br /&gt;
# Load package to your satnogs-station. I.e.:&lt;br /&gt;
 wget https://github.com/wose/satnogs-monitor/releases/download/0.4.3-pre/satnogs-monitor_0.4.2-1_arm64.deb&lt;br /&gt;
# Install debian package with apt. Dependencies will be fetched automatically.&lt;br /&gt;
 sudo apt install ./satnogs-monitor_0.4.2-1_arm64.deb&lt;br /&gt;
&lt;br /&gt;
=== Building from Source ===&lt;br /&gt;
&lt;br /&gt;
To build the monitor from source you'll need to install the Rust toolchain. Use your package manager or follow [https://www.rust-lang.org/tools/install this site]. Some further dependencies might be needed. Debian based systems, these are:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install libglib2.0-dev cmake build-essential git&lt;br /&gt;
&lt;br /&gt;
After that, you can follow allong this:&lt;br /&gt;
&lt;br /&gt;
 git clone --recursive https://github.com/wose/satnogs-monitor.git&lt;br /&gt;
 cd satnogs-monitor/monitor&lt;br /&gt;
 mkdir -p ~/.config/satnogs-monitor&lt;br /&gt;
 cp examples/config.toml ~/.config/satnogs-monitor/&lt;br /&gt;
 edit ~/.config/satnogs-monitor/config.toml&lt;br /&gt;
 cargo run --release -- -s 175&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Running it==&lt;br /&gt;
You can then run the monitor over any ssh connection to your ground station or view it directly on a display attached to your RPi. See [https://community.libre.space/t/stegoboard-satnogs-ground-station/4640 this thread] for some inspiration.&lt;br /&gt;
&lt;br /&gt;
The monitor makes heavy usage of braille unicode characters so make sure your terminal emulator uses a font which includes those glyphs. The screenshot at the top shows alacritty[https://github.com/jwilm/alacritty] with the tewi-font[https://github.com/lucy/tewi-font]. Take a look at nerd-fonts[https://github.com/ryanoasis/nerd-fonts/] if you're unsure about which font to use. You could also use a forked version of yaft[https://github.com/wose/yaft] created by the same person as SatNOGS Monitor, which uses the Lucy Tewi font by default. &lt;br /&gt;
&lt;br /&gt;
Monitor single station:&lt;br /&gt;
 satnogs-monitor -s 175&lt;br /&gt;
Multiple stations:&lt;br /&gt;
 satnogs-monitor -s 175 -s 227&lt;br /&gt;
Monitor a station on the same machine as the monitor runs (gets you more system infos):&lt;br /&gt;
 satnogs-monitor -l 175&lt;br /&gt;
Monitor a local station and multiple remote stations:&lt;br /&gt;
 satnogs-monitor -l 175 -s 227 -s 2&lt;br /&gt;
&lt;br /&gt;
If satnogs-montor runs on the same machine as satnogs-client (typically a Raspberry Pi) you can set the satnogs client data path and enable the spectrum and/or waterfall plot to get a visualization of the received signal of the current observation.&lt;br /&gt;
 satnogs-monitor -l 175 --data-path /tmp/.satnogs/data/ --waterfall --spectrum&lt;br /&gt;
&lt;br /&gt;
If you have a rotator setup you can monitor the current rotator position by configuring the rotctld address:&lt;br /&gt;
 satnogs-monitor -l 175 --rotctld-address 127.0.0.1:4533&lt;br /&gt;
&lt;br /&gt;
You can also create a config file with all those informations:&lt;br /&gt;
 mkdir ~/config/satnogs-monitor&lt;br /&gt;
 cd ~/config/satnogs-monitor&lt;br /&gt;
 wget https://raw.githubusercontent.com/wose/satnogs-monitor/master/monitor/examples/config.toml&lt;br /&gt;
 edit config.toml&lt;br /&gt;
&lt;br /&gt;
Check the help for more command line arguments:&lt;br /&gt;
 $ satnogs-monitor -h&lt;br /&gt;
 satnogs-monitor 0.4.2&lt;br /&gt;
 Monitors the current and future jobs of SatNOGS ground stations.&lt;br /&gt;
 &lt;br /&gt;
 USAGE:&lt;br /&gt;
     satnogs-monitor [FLAGS] [OPTIONS]&lt;br /&gt;
 &lt;br /&gt;
 FLAGS:&lt;br /&gt;
     -h, --help         Prints help information&lt;br /&gt;
         --spectrum     Enables the spectrum plot&lt;br /&gt;
     -V, --version      Prints version information&lt;br /&gt;
     -v                 Sets the level of log verbosity&lt;br /&gt;
         --waterfall    Enables the waterfall plot&lt;br /&gt;
 &lt;br /&gt;
 OPTIONS:&lt;br /&gt;
     -a, --api &amp;lt;URL&amp;gt;                        Sets the SatNOGS network api endpoint url&lt;br /&gt;
     -c, --config &amp;lt;FILE&amp;gt;                    Sets custom config file&lt;br /&gt;
         --data-path &amp;lt;PATH&amp;gt;&lt;br /&gt;
             Enables the spectrum and waterfall plot if set to the SatNOGS client data path&lt;br /&gt;
             (/tmp/.satnogs/data/)&lt;br /&gt;
         --db-max &amp;lt;DB&amp;gt;&lt;br /&gt;
             Sets the upper dB bound of the spectrum and waterfall plot (0)&lt;br /&gt;
 &lt;br /&gt;
         --db-min &amp;lt;DB&amp;gt;&lt;br /&gt;
             Sets the lower dB bound of the spectrum and waterfall plot (-100)&lt;br /&gt;
 &lt;br /&gt;
         --job-update-interval &amp;lt;SECONDS&amp;gt;    Polls the network for new jobs every SECONDS (600)&lt;br /&gt;
     -l, --local &amp;lt;ID&amp;gt;...&lt;br /&gt;
             Adds a station running on the same machine as this monitor with this SatNOGS network id&lt;br /&gt;
             to to the list of monitored stations&lt;br /&gt;
     -o, --orbits &amp;lt;NUM&amp;gt;                     Sets the number of orbits plotted on the map&lt;br /&gt;
         --rotctld-address &amp;lt;IP:PORT&amp;gt;        Enables rotator monitoring if set to a rotctld address&lt;br /&gt;
         --rotctld-interval &amp;lt;INTERVAL&amp;gt;      Polls the rotator position every INTERVAL seconds (5)&lt;br /&gt;
     -s, --station &amp;lt;ID&amp;gt;...&lt;br /&gt;
             Adds a station with this SatNOGS network id to the list of monitored stations&lt;br /&gt;
 &lt;br /&gt;
         --waterfall-zoom &amp;lt;FACTOR&amp;gt;          Zooms the spectrum and waterfall plot (1.0 - 10.0)&lt;br /&gt;
'''TAB''' key will cycle through available stations while SatNOGS Monitor is running.&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  [[Category:Operate]]&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
  [[Category:Software]]&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
  [[Category:Develop]]&lt;/div&gt;</summary>
		<author><name>Lange</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.satnogs.org/index.php?title=SatNOGS_Monitor&amp;diff=4027</id>
		<title>SatNOGS Monitor</title>
		<link rel="alternate" type="text/html" href="https://wiki.satnogs.org/index.php?title=SatNOGS_Monitor&amp;diff=4027"/>
		<updated>2025-07-15T10:07:26Z</updated>

		<summary type="html">&lt;p&gt;Lange: Update build process and general information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
[[File:Satnogs-monitor.png|800px]]&lt;br /&gt;
&lt;br /&gt;
'''SatNOGS Monitor''' is a terminal ui to monitor your and/or other ground stations of the SatNOGS network. It is written in [https://www.rust-lang.org/ Rust] and runs on Linux and has been reported to run on MacOS[https://community.libre.space/t/satnogs-station-monitor/2802/13]. Windows is currently not supported by the underlying terminal library, but might be added at some point in the future.  '''SatNOGS Monitor''' does not need to be installed on an actual SatNOGS station computer (although there are benefits of doing so as discussed below). &lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
===Dependencies===&lt;br /&gt;
'''SatNOGS Monitor''' uses bindings to '''libgpredict'''[https://github.com/cubehub/libgpredict]. From mid July 2025 on, this library will be compiled by cargo when building satnogs-monitor. Thus it does not need to be compiled manually anymore.&lt;br /&gt;
&lt;br /&gt;
Nonetheless, some dependencies are left:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install libglib2.0-dev cmake build-essential git&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Raspberry Pi (armhf)===&lt;br /&gt;
You can run the SatNOGS Monitor on the same Raspberry Pi as your ground station. You can build the monitor from source (see [#Hacking]) or use the prebuild Raspbian package.&lt;br /&gt;
&lt;br /&gt;
 wget https://github.com/wose/satnogs-monitor/releases/download/0.4.2/satnogs-monitor_0.4.2_armhf.deb&lt;br /&gt;
 sudo dpkg -i satnogs-monitor_0.4.2_armhf.deb&lt;br /&gt;
&lt;br /&gt;
You can then run the monitor over any ssh connection to your ground station or view it directly on a display attached to your RPi. See [https://community.libre.space/t/stegoboard-satnogs-ground-station/4640 this thread] for some inspiration.&lt;br /&gt;
&lt;br /&gt;
===Linux (x86_64)===&lt;br /&gt;
If you're running an Debian like distribution you can install the prebuild package. Please mind to install the dependencies shown above.&lt;br /&gt;
&lt;br /&gt;
 wget https://github.com/wose/satnogs-monitor/releases/download/0.4.2/satnogs-monitor_0.4.2_amd64.deb&lt;br /&gt;
 sudo dpkg -i satnogs-monitor_0.4.2_amd64.deb&lt;br /&gt;
&lt;br /&gt;
See [#Hacking] if you're running another distribution.&lt;br /&gt;
&lt;br /&gt;
==Running it==&lt;br /&gt;
The monitor makes heavy usage of braille unicode characters so make sure your terminal emulator uses a font which includes those glyphs. The screenshot at the top shows alacritty[https://github.com/jwilm/alacritty] with the tewi-font[https://github.com/lucy/tewi-font]. Take a look at nerd-fonts[https://github.com/ryanoasis/nerd-fonts/] if you're unsure about which font to use. You could also use a forked version of yaft[https://github.com/wose/yaft] created by the same person as SatNOGS Monitor, which uses the Lucy Tewi font by default. &lt;br /&gt;
&lt;br /&gt;
Monitor single station:&lt;br /&gt;
 satnogs-monitor -s 175&lt;br /&gt;
Multiple stations:&lt;br /&gt;
 satnogs-monitor -s 175 -s 227&lt;br /&gt;
Monitor a station on the same machine as the monitor runs (gets you more system infos):&lt;br /&gt;
 satnogs-monitor -l 175&lt;br /&gt;
Monitor a local station and multiple remote stations:&lt;br /&gt;
 satnogs-monitor -l 175 -s 227 -s 2&lt;br /&gt;
&lt;br /&gt;
If satnogs-montor runs on the same machine as satnogs-client (typically a Raspberry Pi) you can set the satnogs client data path and enable the spectrum and/or waterfall plot to get a visualization of the received signal of the current observation.&lt;br /&gt;
 satnogs-monitor -l 175 --data-path /tmp/.satnogs/data/ --waterfall --spectrum&lt;br /&gt;
&lt;br /&gt;
If you have a rotator setup you can monitor the current rotator position by configuring the rotctld address:&lt;br /&gt;
 satnogs-monitor -l 175 --rotctld-address 127.0.0.1:4533&lt;br /&gt;
&lt;br /&gt;
You can also create a config file with all those informations:&lt;br /&gt;
 mkdir ~/config/satnogs-monitor&lt;br /&gt;
 cd ~/config/satnogs-monitor&lt;br /&gt;
 wget https://raw.githubusercontent.com/wose/satnogs-monitor/master/monitor/examples/config.toml&lt;br /&gt;
 edit config.toml&lt;br /&gt;
&lt;br /&gt;
Check the help for more command line arguments:&lt;br /&gt;
 $ satnogs-monitor -h&lt;br /&gt;
 satnogs-monitor 0.4.2&lt;br /&gt;
 Monitors the current and future jobs of SatNOGS ground stations.&lt;br /&gt;
 &lt;br /&gt;
 USAGE:&lt;br /&gt;
     satnogs-monitor [FLAGS] [OPTIONS]&lt;br /&gt;
 &lt;br /&gt;
 FLAGS:&lt;br /&gt;
     -h, --help         Prints help information&lt;br /&gt;
         --spectrum     Enables the spectrum plot&lt;br /&gt;
     -V, --version      Prints version information&lt;br /&gt;
     -v                 Sets the level of log verbosity&lt;br /&gt;
         --waterfall    Enables the waterfall plot&lt;br /&gt;
 &lt;br /&gt;
 OPTIONS:&lt;br /&gt;
     -a, --api &amp;lt;URL&amp;gt;                        Sets the SatNOGS network api endpoint url&lt;br /&gt;
     -c, --config &amp;lt;FILE&amp;gt;                    Sets custom config file&lt;br /&gt;
         --data-path &amp;lt;PATH&amp;gt;&lt;br /&gt;
             Enables the spectrum and waterfall plot if set to the SatNOGS client data path&lt;br /&gt;
             (/tmp/.satnogs/data/)&lt;br /&gt;
         --db-max &amp;lt;DB&amp;gt;&lt;br /&gt;
             Sets the upper dB bound of the spectrum and waterfall plot (0)&lt;br /&gt;
 &lt;br /&gt;
         --db-min &amp;lt;DB&amp;gt;&lt;br /&gt;
             Sets the lower dB bound of the spectrum and waterfall plot (-100)&lt;br /&gt;
 &lt;br /&gt;
         --job-update-interval &amp;lt;SECONDS&amp;gt;    Polls the network for new jobs every SECONDS (600)&lt;br /&gt;
     -l, --local &amp;lt;ID&amp;gt;...&lt;br /&gt;
             Adds a station running on the same machine as this monitor with this SatNOGS network id&lt;br /&gt;
             to to the list of monitored stations&lt;br /&gt;
     -o, --orbits &amp;lt;NUM&amp;gt;                     Sets the number of orbits plotted on the map&lt;br /&gt;
         --rotctld-address &amp;lt;IP:PORT&amp;gt;        Enables rotator monitoring if set to a rotctld address&lt;br /&gt;
         --rotctld-interval &amp;lt;INTERVAL&amp;gt;      Polls the rotator position every INTERVAL seconds (5)&lt;br /&gt;
     -s, --station &amp;lt;ID&amp;gt;...&lt;br /&gt;
             Adds a station with this SatNOGS network id to the list of monitored stations&lt;br /&gt;
 &lt;br /&gt;
         --waterfall-zoom &amp;lt;FACTOR&amp;gt;          Zooms the spectrum and waterfall plot (1.0 - 10.0)&lt;br /&gt;
'''TAB''' key will cycle through available stations while SatNOGS Monitor is running.&lt;br /&gt;
&lt;br /&gt;
==Hacking==&lt;br /&gt;
&lt;br /&gt;
To build the monitor from source you'll need to install the Rust toolchain. Use your package manager or follow [https://www.rust-lang.org/tools/install this site]. &lt;br /&gt;
&lt;br /&gt;
 git clone https://github.com/wose/satnogs-monitor.git&lt;br /&gt;
 cd satnogs-monitor/monitor&lt;br /&gt;
 mkdir -p ~/.config/satnogs-monitor&lt;br /&gt;
 cp examples/config.toml ~/.config/satnogs-monitor/&lt;br /&gt;
 edit ~/.config/satnogs-monitor/config.toml&lt;br /&gt;
 cargo run --release -- -s 175&lt;br /&gt;
   &lt;br /&gt;
  [[Category:Operate]]&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
  [[Category:Software]]&lt;br /&gt;
 &lt;br /&gt;
  &lt;br /&gt;
  [[Category:Develop]]&lt;/div&gt;</summary>
		<author><name>Lange</name></author>
		
	</entry>
</feed>