Gnss monitor: Difference between revisions

From Rsewiki
(Replaced content with "Experiments to extract and display GNSS live or recorded data == Screenshot == 300px 300px 300px Left: Satellite movement in the sky above. Mid: Reported movement of the stationary antenna. Right: Number of tracked satellites over the last ~20 hours. == Installation issues == Weather monitor installation | Instal...")
Tag: Replaced
 
(34 intermediate revisions by the same user not shown)
Line 1: Line 1:
Experiments to extract and display GNSS live or recorded data
Experiments to extract and display GNSS live or recorded data


== Required packages ==
== Screenshot ==


Install Geographic library from https://geographiclib.sourceforge.io/C++/doc/install.html
[[file:Gnss_sat_pos_Screenshot_20250801.png | 300px]]
[[file:gnss_own_pos_Screenshot_20250801.png | 300px]]
[[file:gnss_sat_cnt_hist_Screenshot_20250801.png | 300px]]


sudo apt install libgeographiclib-dev
Left: Satellite movement in the sky above. Mid: Reported movement of the stationary antenna. Right: Number of tracked satellites over the last ~20 hours.


For Python install


pip install geographiclib
== Installation issues ==
or
sudo apt install python3-geographiclib


=== Source code ===
[[Weather monitor installation | Installation issues]] issues.


Code is found here (on SVN)
[[Wearher monitor modules | Modules]]
 
svn co svn://repos.gbar.dtu.dk/jcan/svnjca/projekter/gnss_receiver
 
C++ code is then in the ''monitor directory''.
 
== CMake problem ==
 
=== GeographicLibConfig.cmake ===
 
The find package
find_package(GeographicLib REQUIRED)
in cmake fails, as the file GeographicLibConfig.cmake is not found.
 
This can be fixed by renaming the provided file ''FindGeographicLib.cmake'' by
cd /usr/share/cmake/geographiclib
sudo ln -s FindGeographicLib.cmake GeographicLibConfig.cmake
 
=== XKB ===
 
Missing library, and CMake complains:
 
-- Could NOT find XKB (missing: XKB_LIBRARY XKB_INCLUDE_DIR) (Required is at least version "0.5.0")
 
The solution was to install
 
sudo apt install libxkbcommon-dev
 
This occurred on Raspberry Pi 5 using 64bit default OS.
 
== '''Absolutely not finished''' ==

Latest revision as of 07:50, 14 August 2025

Experiments to extract and display GNSS live or recorded data

Screenshot

Left: Satellite movement in the sky above. Mid: Reported movement of the stationary antenna. Right: Number of tracked satellites over the last ~20 hours.


Installation issues

Installation issues issues.

Modules