anything
AirNav Radar
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 


Recent Posts

Pages: 1 ... 6 7 [8] 9 10
71
AirNav Radar Discussion / Re: Database Update Requests
« Last post by SkyPi on October 13, 2025, 01:42:29 PM »
Correction:
AE604E = 17-03161 not 17-03180

AE6061 17-03180 is already in the d/b
72
AirNav Radar Discussion / Re: Logos
« Last post by RodBearden on October 13, 2025, 01:39:20 PM »
A replacement:
I noticed that the VAW - Fly2Sky logo has been tweaked a bit since we last did it, so here's the updated version.
73
AirNav Radar Discussion / Re: Logos
« Last post by RodBearden on October 13, 2025, 01:37:11 PM »
Four new ones:

DPA - David Pieris Aviation Ltd (Sri Lanka)
FMK - Fly Mara Airlines (Kenya)
FTS - F2S Ltd (Malta) - just added the Malta flag to the Fly2Sky (VAW) logo.
TKN - Fly Kish Airlines (Iran)
74
AirNav Radar Discussion / Re: Database Update Requests
« Last post by Runway 31 on October 13, 2025, 08:16:22 AM »
Thanks Carlos

Alan
75
AirNav Radar Discussion / Re: Database Update Requests
« Last post by CarlosAbreu on October 13, 2025, 12:20:04 AM »
Alan

12-10-2025 Updyed file in attach.

Carlos
76
AirNav Radar Discussion / Re: Database Update Requests
« Last post by Runway 31 on October 12, 2025, 06:29:21 AM »
Thanks Carlos

Alan
77
AirNav Radar Discussion / Re: Database Update Requests
« Last post by CarlosAbreu on October 12, 2025, 02:09:18 AM »
Alan

11-10-2025 Updated file in attach.

Carlos
78
AirNav Radar Discussion / Re: Database Update Requests
« Last post by Runway 31 on October 11, 2025, 08:47:46 AM »
Thanks Carlos

Alan
79
AirNav Radar Discussion / Re: Database Update Requests
« Last post by CarlosAbreu on October 11, 2025, 12:40:16 AM »
Alan

10-10-2025 Updated file in attach.

Carlos
80
AirNav Radar Discussion / Re: Raspberry Pi OS Trixie (debian 13) Released
« Last post by abcd567 on October 10, 2025, 11:58:05 PM »
The standard method to install rbfeeder on Raspberry Pi is to run following command:
Code: [Select]

sudo bash -c "$(wget -O - http://apt.rb24.com/inst_rbfeeder.sh)"


However as the Radarbox24 feeder is NOT (yet) available for Trixie, the above installation script fails on Trixie.


Temporary Workaround for Installation of rbfeeder on Raspberry Pi OS Trixie
(TESTED , Works OK)


NOTE: This workaround works ok on 64-bit (arm64) OS, but fails on 32-bit (armhf) OS

Following is the workaround for installing rbfeeder on RPi running OS Trixie. It is valid till such time RB24 makes their script & package avaiable for Trixie, in which case above noted installation command will succeed in installing rbfeeder on Trixie also.

(a) Install tools
Code: [Select]

sudo apt install dirmngr gnupg


(b) Set apt
Note: Following three (3) commands are very long. Scroll right to see and copy these in full
Code: [Select]

gpg --keyserver keyserver.ubuntu.com --recv-keys F2A8428D3C354953 

gpg --export --armor F2A8428D3C354953 | sudo gpg --dearmor -o /etc/apt/keyrings/rb24.gpg 

echo "deb [signed-by=/etc/apt/keyrings/rb24.gpg] https://apt.rb24.com/ bookworm main" | sudo tee /etc/apt/sources.list.d/rb24.list


(c) Update apt and install rbfeeder:
Code: [Select]

sudo apt update

sudo apt install rbfeeder


(d) After installation is completed, signup as follows:
Code: [Select]

sudo systemctl restart rbfeeder


After a few seconds, RBFeeder will connect to the AirNav servers and you can view your sharing-key with this command:
Code: [Select]

sudo rbfeeder --showkey 


If you already have a sharing-key from a previous installation, you can set the same key using this command:
Code: [Select]

sudo rbfeeder --setkey ‹your sharing key› 


(e) Activate decoder dump1090-rb
If you are not able to install a decoder such as dump1090-fa or readsb etc, no problem, the rbfeeder installation as above, includes installation of its builtin decoder dump1090-rb. You can check it's existance by following command
Code: [Select]

ls -l /usr/bin/dump1090-rb 


By default this decoder is inactive. However you can activate it by following method:

Open file "rbfeeder.ini" for editing by following command:
Code: [Select]

sudo nano /etc/rbfeeder.ini   


In the file opened,  at top you will see this line:

network_mode=true

Change true to false, so the line becoms like below:

network_mode=false

Save the file (Ctrl+O)

Reboot RPi
Code: [Select]

sudo reboot 


After reboot, check sttatus

Code: [Select]

sudo systemctl status rbfeeder 


(f) Install mlat-client
The installation of mlat-client from RB24 repository by command sudo apt install mlat-client   fails with following error message:
mlat-client:arm64 Depends python3 (< 3.12) but this is not installable (Trixie apt provides python 3.13)

Solution: Build & install mlat-client using source code

Install build tools & dependencies:
Code: [Select]

sudo apt install git build-essential debhelper dh-python python3-dev python3-setuptools

sudo apt install python3-pyasyncore   


Build & install mlat-client:

Code: [Select]

git clone https://github.com/mutability/mlat-client 

cd mlat-client

sudo dpkg-buildpackage -b --no-sign

cd ../ 

sudo dpkg -i mlat-client_0.2.13_*.deb 

sudo apt-mark hold mlat-client

sudo systemctl restart rbfeeder 


VERY IMPORTANT:
The trixie uses python3.13, in which module "asyncore" has been replaced by module "asyncio".

During runtime, the current version (0.2.13) of mlat-client requires the module "asyncore". As this module is missing, rbfeeder gives following error during runtime:

Code: [Select]
from mlat.client.net import ReconnectingConnection
File "/usr/lib/python3/dist-packages/mlat/client/net.py", line 25, in <module>
   import asyncore
ModuleNotFoundError: No module named 'asyncore'


SOLUTION:
To make python3.13 backward-compatible to software which are still using "asyncore" (such as mlat-client), debian developers have provided a package "python3-pyasyncore". This package provides the missing module "asyncore". This package must be installed on user's RPi . For this reason, I have already included it under installation of dependencies in above method.

Code: [Select]
sudo apt install python3-pyasyncore 


Pages: 1 ... 6 7 [8] 9 10