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

Login with username, password and session length
 


Author Topic: Radarcape ADS-B Receiver Feeding Radarbox Network  (Read 5631 times)

0 Members and 1 Guest are viewing this topic.

QC91

  • New Member
  • *
  • Posts: 25
Radarcape ADS-B Receiver Feeding Radarbox Network
« on: December 29, 2022, 10:01:19 PM »
I have Radarcape ADS-B Receiver, and I like to feed it to Radarbox Network, would the RBFeeder work for Debian 10 that's the os the Radarcape uses I like to feed directly from Radarcape, any help would be appreciated

abcd567

  • Hero Member
  • *****
  • Posts: 842
  • CYYZ - Toronto
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #1 on: December 30, 2022, 02:28:15 AM »
I have Radarcape ADS-B Receiver, and I like to feed it to Radarbox Network, would the RBFeeder work for Debian 10 that's the os the Radarcape uses I like to feed directly from Radarcape, any help would be appreciated

Radarbox24 have Linux Debian / RaspberryPi OS data feeder for RPi (architectures armhf and arm64/aarch64). They dont have feeder for AMD64/x86_x64 architecture.

For AMD64/x86_x64 architecture, you can install RB24 armhf feeder (for RPi) using Docker.

What is output of following commands on your Debian 10 computer?

Code: [Select]
uname -a

uname -m



QC91

  • New Member
  • *
  • Posts: 25
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #2 on: December 30, 2022, 04:37:20 AM »
Thanks for the reply. Here is the output.

jetvision@radarcape:~$ uname -a
Linux radarcape 5.4.25-1-bone #1 Thu Mar 12 13:28:30 CET 2020 armv7l GNU/Linux
jetvision@radarcape:~$ ^C
jetvision@radarcape:~$ uname -m
armv7l

 

abcd567

  • Hero Member
  • *****
  • Posts: 842
  • CYYZ - Toronto
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #3 on: December 30, 2022, 02:33:03 PM »
Your device's architecture armv7l is suitable for installing RB24's RPi feeder on your device running Debian 10, by following command:
 
Code: [Select]

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


Full instructions are here:

https://www.radarbox.com/sharing-data/guide

.
« Last Edit: December 30, 2022, 04:34:16 PM by abcd567 »

QC91

  • New Member
  • *
  • Posts: 25
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #4 on: December 31, 2022, 10:17:23 PM »
Thanks for the help I did the  sudo bash -c "$(wget -O - http://apt.rb24.com/inst_rbfeeder.sh)" but I see  some errors

Here is the Pastebin  https://pastebin.com/iJSGDSkw


abcd567

  • Hero Member
  • *****
  • Posts: 842
  • CYYZ - Toronto
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #5 on: January 01, 2023, 02:38:59 AM »
while copy-pasting command into terminal, you have broken it into two lines

Line-1 sudo bash -c "$(wget -O - http://apt.rb24.com/inst_rbf
Line-2 eeder.sh)"

You must use it as a single line command like below

Code: [Select]
sudo bash -c "$(wget -O - http://apt.rb24.com/inst_rbfeeder.sh)" 
Please see screenshot below
Click on screenshot to see large size, and scroll right to see the right-most portion
« Last Edit: January 01, 2023, 02:51:13 AM by abcd567 »

QC91

  • New Member
  • *
  • Posts: 25
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #6 on: January 01, 2023, 06:29:15 AM »
 I ran the single-line command   

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

I'm getting this Error Don't know how to install for a distribution named

Here is the Pastebin https://pastebin.com/NMrm4pNE

abcd567

  • Hero Member
  • *****
  • Posts: 842
  • CYYZ - Toronto
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #7 on: January 01, 2023, 07:01:33 AM »

I'm getting this Error Don't know how to install for a distribution named


Issue following commands, and post their outputs
Code: [Select]
lsb_release -c   

lsb_release -sc   

« Last Edit: January 01, 2023, 07:05:32 AM by abcd567 »

QC91

  • New Member
  • *
  • Posts: 25
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #8 on: January 01, 2023, 07:16:57 AM »
I get this errors


jetvision@radarcape:~$ lsb_release -c

-bash: lsb_release: command not found

jetvision@radarcape:~$ lsb_release -sc

-bash: lsb_release: command not found

jetvision@radarcape:~$

abcd567

  • Hero Member
  • *****
  • Posts: 842
  • CYYZ - Toronto
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #9 on: January 01, 2023, 08:48:32 AM »

-bash: lsb_release: command not found


The RB24 feeder installation script uses command "lsb_release -c"
The installation script failed due to missing package "lsb-release" which provides this command.

Install package lsb-release, then run the RB24 installation script. It will work OK
NOTE: The command is lsb_release, but package name is lsb-release. Note the difference _ and -

Code: [Select]

sudo apt install lsb-release   

lsb_release -c 

lsb_release -sc 

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

« Last Edit: January 01, 2023, 09:38:23 AM by abcd567 »

QC91

  • New Member
  • *
  • Posts: 25
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #10 on: January 01, 2023, 07:13:16 PM »
Thanks here is the output.


jetvision@radarcape:~$ lsb_release -c
Codename:       buster
jetvision@radarcape:~$ lsb_release -sc
buster
jetvision@radarcape:~$

I have tried the sudo nano /etc/rbfeeder.ini, but the file is blank

abcd567

  • Hero Member
  • *****
  • Posts: 842
  • CYYZ - Toronto
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #11 on: January 01, 2023, 08:50:11 PM »
Thanks here is the output.

jetvision@radarcape:~$ lsb_release -c
Codename:       buster
jetvision@radarcape:~$ lsb_release -sc
buster
jetvision@radarcape:~$

Great!

I have tried the sudo nano /etc/rbfeeder.ini, but the file is blank


Did you run installation script after installing the package "lsb-release"? What did the script announce when it finished installation?

Please issue following command and post its output. The output will show if the script succeeded or not in installing rbfeeder

Code: [Select]

apt-cache policy rbfeeder   

« Last Edit: January 01, 2023, 08:53:23 PM by abcd567 »

QC91

  • New Member
  • *
  • Posts: 25
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #12 on: January 01, 2023, 09:24:23 PM »
Yes I did run sudo bash -c "$(wget -O - http://apt.rb24.com/inst_rbfeeder.sh)"

I now see the sudo nano /etc/rbfeeder.ini file I will attach screen shot


Here is the Pastebin for rbfeeder https://pastebin.com/4WzzUFGd

Here is the output for
jetvision@radarcape:~$ apt-cache policy rbfeeder
rbfeeder:
  Installed: 1:1.0.8+deb10
  Candidate: 1:1.0.8+deb10
  Version table:
 *** 1:1.0.8+deb10 500
        500 https://apt.rb24.com buster/main armhf Packages
        100 /var/lib/dpkg/status
jetvision@radarcape:~$

QC91

  • New Member
  • *
  • Posts: 25
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #13 on: January 01, 2023, 09:46:41 PM »
should I run sudo rbfeeder --set-network-mode on --set-network-host ‹host› --set-network-port ‹port› --set-network-protocol ‹beast/raw› --no-start ?

abcd567

  • Hero Member
  • *****
  • Posts: 842
  • CYYZ - Toronto
Re: Radarcape ADS-B Receiver Feeding Radarbox Network
« Reply #14 on: January 01, 2023, 10:35:05 PM »
Open configuration file (locate at /etc/rbfeeder.ini)
(1) Make sure option "network_mode" is set to "true" under "[client]" section.

(2) under section "[network]", change the option to following:

mode=raw
External_port=10003
external_host=127.0.0.1

Mode defines protocol to use. It can be "beast" or "raw". Anything else will be ignored.

You may try alk tgree below, but only one at a time:

External_port=10003
External_port=10003
External_port=10004
External_port=10005

NOTE: "external_host" defines the host that feeder will connect to fetch data and "external_port" defines the port to connect on this host.



REFERENCES & GUIDES

======================================
GUIDE 1 of 2: FROM RBFEEDER INSTALLATION WEB PPAGE

https://www.radarbox.com/sharing-data/guide
======================================[

2b
If you want to use the RBFeeder software with an existing decoder program
Open configuration file (locate at /etc/rbfeeder.ini) and change option "network_mode" to "true" under "[client]" section.

Now, under section "[network]", change these options:
"mode", "External_port", "external_host".

Mode defines protocol to use. It can be "BEAST" or "RAW". Anything else will be ignored. "external_host" defines the host that feeder will connect to fetch data and "external_port" defines the port to connect on this host.

≠==========================
GUIDE 2 of 2: FROM JETVISION  RADARCAPE WEPAGE 

https://wiki.jetvision.de/wiki/Radarcape:Software_Features
============================
Raw Data Streaming to Network (TCP and UDP)
The binary and AVR raw data formats are identical to those of the Mode-S Beast and documented in Mode-S_Beast:Data_Output_Formats. For the Radarcape, there is one additional message that contains timestamp and FPGA configuration information, which is triggered by each 1PPS from the GPS module.

TCP or UDP port 10002
This is a CRC-checked mirror of the data as it comes from the FPGA, DF-11, DF-17 and DF-18 are CRC checked if enabled in FPGA. Includes Mode-A/C data with respect to the configuration setting.

TCP or UDP port 10003
Binary formatted raw data with all Modes-S data formats CRC-prechecked (eliminates transmission of the erroneous frames, reduces load on the network). All data from the FPGA is disassembled into messages and verified if correct.

TCP or UDP port 10004
Binary formatted raw data, pre-checked DF-11, DF-17 and DF-18 only: minimum load for the transmission path but contains most information. No Mode-A/C data.

TCP or UDP port 10005
Binary formatted raw data, only raw data frames of those aircraft where the location (latitude and longitude) is unknown. Used for special MLAT purposes. No Mode-A/C data.

Port 30003 Service (TCP, UDP, and USB-serial)
Port 30003 style output (e.g., for use with SBS Plotter) can be provided without the need of an additional application on your PC.

The Radarcape provides this data stream on TCP port 30003, UDP port 30003, and the serial USB interface.
« Last Edit: January 02, 2023, 03:29:10 AM by abcd567 »