Quantcast
Channel: Flightradar24 Forum
Viewing all 5745 articles
Browse latest View live

No data

$
0
0
Apologies in advance if this is a common problem.

So I'm using win10, nooelec nesdr mini 2 usb, it's rtl2832U

I've downloaded the zadig 2.4 drivers, initially I was getting 'connection terminated' all the time but I read about unchecking the hub part when installing and reinstalled the drivers and got further along.

I've ran dump1090 and it's found the rtl283, when I was first trying to run dump it would just load the page and stop.

Now I'm getting

Eggp169@185. Etc etc
Connecting
Connected via UDP (FD 1060)
Working
Ping 1
Syncing stream result 1
Ping 2
Syncing stream result 2

And it keeps going, any help much appreciated

Thanks and apologies if you keep getting threads like this, I have looked around and seem to have got a little further than 'connection terminated'

How-to Feed Plane Plotter Site directly from Raspberry Pi

$
0
0
This method is applicable to:

  • PI24 image
  • Raspbian image with dump1090-mutability ver 1.15~dev
  • Raspbian image with dump1090-fa
  • Piaware SD Card image


CREDITS:
David Taylor
http://www.satsignal.eu/raspberry-pi/dump1090.html

STEP-BY-STEP METHOD

NOTE:
The PI24 image sometimes refuses to install packages, or save edited files, and gives following error:

"read-only file system"


This problem is often solved by rebooting the Pi.
Code:

sudo reboot
If rebooting does not solve the problem, then give following command
Code:

sudo mount -o remount,rw /
(1) Install packages necessary to build and necessary to fulfil dependencies.

Code:

sudo apt-get update
sudo apt-get install git
sudo apt-get install librtlsdr-dev

sudo apt-get install cmake
sudo apt-get install libusb-1.0-0-dev
sudo apt-get install pkg-config


(2) Build the Planeplotter uploader `ppup1090` from source code of dump1090 (Malcolm Robb)

2.1 - Clone/download the dump1090 source code from Github.

Code:

cd ~
git clone git://github.com/MalcolmRobb/dump1090.git

2.2 - The downloaded directory's name is `dump1090`. To make it clear that this is not dump1090 mut or fa, but is PlanePlotter Uploader, change it's name to "ppup"

Code:

sudo mv dump1090 ppup
2.3 - Enter folder ppup

Code:

cd ppup
2.4 - Obtain Planeplotter Configuration/user key
Go to http://www.coaa.co.uk/rpi-request.htm and enter your details, and your co-ordinates. You will then be e-mailed your own personal copy of a file called `coaa.h`.

2.5 - Add Planeplotter Configuration/user key
In directory `ppup`, you will find dummy file `coaa.h`. Replace it with the `coaa.h` you have received by email. Use any one of following 2 options.

Option-1:
Use FileZilla or WinSCP or similar program to copy file `coaa.h` from your Desktop/Laptop to RPi in folder `ppup`.

The file `coaa.h` cannot be directly copied to folder `ppup` due to permissions problem. To overcome this problem, copy it to folder `/home/pi` which has permission for copying files using SCP or FTP.

Once you have a copy of file `coaa.h` in folder `home/pi`, SSH to Pi, and issue following command to copy it to folder `ppup`:

Code:

cd ~/
sudo cp coaa.h  ppup/


Option-2:
Open file coaa.h received by email using MS Word or Wordpad
It's content will be like this:

Code:

//coaa.h configuration file for ab cd 2018-07-11 05:58:29
#define USER_REGNO xxxxxxx
#define USER_AUTHCODE xxxxxxxxxx
#define USER_LATITUDE xx.xxx
#define USER_LONGITUDE xx.xxx

open file coaa.h in RPi's folder ppup for editing
Code:

cd ~/ppup
sudo nano coaa.h

following will be displayed
Code:

// coaa.h configuration file for Plane Plotter Uploader
//
// You MUST apply via the COAA website for your own personal version of this fi$
// Do not disclose the contents of this file to anyone thereafter as it uniquely
// identifies you to the PlanePlotter system
//

Press (Ctrl+k) to delete all these lines and make this file empty.
Copy-Paste all lines from the file coaa.h which you received by email) in the file coaa.h in RPi.
After pasting, it will become like this

Code:

//coaa.h configuration file for ab cd 2018-07-11 05:58:29
#define USER_REGNO xxxxxx
#define USER_AUTHCODE xxxxxxxxx
#define USER_LATITUDE xx.xxx
#define USER_LONGITUDE xx.xxx

Save (Ctrl+o) and close (Ctrl+x)

2.6 - Compile the ppup1090 (plane plotter uploader) from source code

NOTE: Only the "ppup1090" component of cloned source code needs to be compiled for uploading to Planeplotter. You don't have to compile dump1090 itself because:
- In PI24 image dump1090-mutability is already available.
- In Raspbian image, you have installed dump1090-mutability ver 1.15~dev or dump1090-fa manually.
- In Piaware SD card image, dump1090-fa is already available.


Code:

cd ~/ppup
make -f makeppup1090

2.7 - For Pi24 IMAGE ONLY
Open browser and go to settings page:

IP-OF-PI:8754/settings.html

In this page in field "Process Arguments" add following, if already not there:
Code:

--net
Click Save button, then Restart button. Both these buttons are at bottom-right corner of settings page.

2.8 - TEST

Code:

cd ~/ppup
./ppup1090

The above command generates following output if installation is working OK.

ppup-test.png


(3) Make ppup1090 to auto-start at boot

3.1 - Create a blank file ppup-maint.sh

Code:

cd ppup
sudo touch ppup-maint.sh
sudo chmod +x ppup-maint.sh
sudo nano ppup-maint.sh

3.2 - Copy-paste this code
Then Save (Ctrl+o) and Close (Ctrl+x)

Code:

#! /bin/sh
while true
  do
    sleep 30
    /home/pi/ppup/./ppup1090  > /tmp/ppup.log 2>&1
  done

NOTE:
The log file /tmp/ppup.log grows in size very fast.
After initial testing, you should stop logging by deleting above code from file ppup-maint.sh, and in it's place copy-pasting following code

Code:

! /bin/sh
while true
  do
    sleep 30
    /home/pi/ppup/./ppup1090
  done

Save (Ctrl+o) and Close (Ctrl+x)

3.3 - Open file rc.local to edit
Code:

sudo nano /etc/rc.local
In the file opened, copy-paste following line just above last line (i.e. above exit 0 )

Code:

/home/pi/ppup/ppup-maint.sh &
Save (Ctrl+o) and Close (Ctrl+x)

Now Reboot to start the system
Code:

sudo reboot
(4) CHECKS

4.1 - Check log
Code:

cat /tmp/ppup.log

ppup-log.png


4.2 - Check ppup1090 is running
Code:


top


ppup-top.png
Attached Images

fr24feed Connection Terminated Loop

$
0
0
I am trying to run fr24feed.exe on a Windows 8.1 system, with no luck. I keep getting the dreaded Connection Terminated loop, and never get connected. This same thing happens when I tried installing fr24feed on a Windows 10 PC.

I’ve been through all of the forum messages I could find, and have not been able to clear the problem.

I am using a NooElec receiver marked:
NooElec
R820T SDR & DVB-T
NESDR Mini

I have run zadig-2.4.exe to install the device driver.
Windows device manager lists the DVB-T stick as device RTL2832U, and shows the driver to be ‘libusb-win32’

If I run mr-dump1090 with the –net option, the program returns:
` Capture.JPG

I believe this means a connection to the receiver is not taking place, but I am not sure.

Can anyone offer any guidance on how to get fr24feed running with this DVB-T stick?

Thanks,
Kevin
Attached Images

Custom alerts very delayed or not working at all on Android

$
0
0
Hi,
I'm using the android app and I'm a silver member.
This is running on a Google Pixel 2 and a Fire HD 10

I have set up custom alerts for certain aircraft types to alert me when they are in my area.

99% of the time the alert comes after the plane has left the area or doesn't alert at all.

I've raised 2 support tickets about this neither of them were replied to.

I got a survey request email once and replied about this and got a response that way.
They said reinstall the app and re-create the alerts.

The problem is that this occurs on 2 separate android devices so it can't be the installation.

Surely I can't be the only one with this problem? I've limited it to just to 1 custom alert A330-300 in my area:

Screenshot_20190306-202649.jpg

I'm now resorting to creating my own ADSB receiver and alerting software.
Attached Images

FR24 + Raspi 3 + FlightAware Pro Stick Plus v1.0, no Trafic

$
0
0
Hello,
My FR24 raspi 3 + FlightAware Pro Stick Plus v1.0 configuration worked perfectly for several months, but a power outage destroyed the microSd.
I have reconfigured a new microSD card with the latest version of Stretch Lite and the latest FR24 repository (sudo bash -c "$ (wget -O - http://repo.feed.flightradar24.com/install_fr24_rpi.sh))
But I did not recognize the configuration ... And I'm a little lost to find the right configuration.
Here is what I get with the "FR24 Feeder status":
-------------------------------------------------- ------------
FR24 Link: Connected via UDP
FR24 Radar Code: T-LFOT17
Local IP (s): 192.168.1.28
Aircraft Tracked:
(ModeS & ADS-B) 0
Aircraft Uploaded: N / A
Receiver: beast, Connected
MLAT running: NO
-------------------------------------------------- ------------
The IP address is that of Raspi. For the Port I entered: 10000, but finally I have 0 Aircraft Tracked,
I tested everything from the antenna, the Raspi (with another) the FlightAware Stick has been replaced, and I still get 0 traffic ...
I repeated the reinstallation of the SD Card several times, but no result ...
Can you help me...
Thanks in advance.
Jacky

Vektor stationary at Exeter UK?

Windows feeder to be discontinued

$
0
0
Hi,

I would like to inform you that in about a week's time, we will remove FR24 Windows feeding software from "Share your data" page.
The Windows feeds will keep working for another 5-6 weeks until May 1st, 2019 when we will turn off support for it.
The reason behind the decision is that we see frequent data errors originating from the Windows platform and in order to improve the data quality we have to remove the windows support.
Less than 5% of our feeders are currently using Windows to feed data and we encourage everyone to move to Raspberry Pi. We appreciate everyone who has contributed via this method over the years. If you believe your location provides important coverage then feel free to request an FR24 receiver. We may also reach out to specific users who have been with us for long and provide good coverage.

Cannot see my dump1090 gmap anymore on local network

$
0
0
For the last week or so when I go to the gmap page (http://[local IP]/dump1090/gmap.html) all I see is the basic info/titles on the right, and a big blank page. I have tried different browsers, different computers and mobile devices, I tried a reboot of the Pi, and still nothing. What could I be doing wrong?

UTC Last Update
[ Reset Map ]
DUMP1090

(no aircraft selected)

Aircraft (total): n/a Messages: n/a/sec
(with positions): n/a History: n/a positions
ICAO Flight Squawk Altitude Speed Distance Track Msgs Age

My RPi & DVB stick stopped feeding

$
0
0
My RPi & DVB stick stopped feeding a few days ago. It had been working well (for years).
http://frpi:8754 reports
FR24 Link: Connected via UDP
FR24 Radar Code: T-EGLC11
Local IP(s): 192.168.1.220
Aircraft Tracked:
(ModeS & ADS-B)
0
Aircraft Uploaded: N/A
Receiver: dvbt, Connected
MLAT running: NO
Code:

pi@frrpi:~ $  fr24feed-status
[ ok ] FR24 Feeder/Decoder Process: running.
[ ok ] FR24 Stats Timestamp: 2019-03-21 15:54:02.
[ ok ] FR24 Link: connected [UDP].
[ ok ] FR24 Radar: T-EGLC11.
[ ok ] FR24 Tracked AC:.
[FAIL] Receiver: down ... failed!
[FAIL] FR24 MLAT: not running ... failed!
pi@frrpi:~ $

dump1090-mutability is not running, but if I run it from the command line, it sees aircraft, and lists them until I abort it with ^C

sudo service fr24feed restart does not help.

Code:

pi@frrpi:~ $ cat /etc/fr24feed.ini
receiver="dvbt"
fr24key="xxxxxxx"
host="127.0.0.1:30002"
bs="yes"
raw="yes"
logmode="1"
procargs="--net"
windowmode="0"
logpath="/var/log/fr24feed"
mpx="no"
mlat="yes"
mlat-without-gps="yes"
pi@frrpi:~ $

I am tearing my hair out. Any ideas?
Thanks.

IL-18 on March 17

$
0
0
Hello,
has anybody observed or even seen an IL-18 over Central Europe, especially Germany, on last Sunday, March 17, 2019?

Thanks in advance for any hints.

Cloudhunter

Mode S Beast switch Windows to Raspberry Pi handholding instructions please 😀

$
0
0
Hi

I have a Mode S Beast with external antenna, connected to my Widows computer and feeding FR24. Have had for years, with the occasional break.

I'm wanting to change my setup to use a spare Raspberry Pi that I have hanging around. This is because the Windows feed for FR24 is being depricated. I would also like to keep MLAT available.

I have done a fair bit of reading around the FR24 website including this forum, but have struggled a bit because much of the information is about connecting via a SDR rather than via a Mode-S Beast. Some stuff about connecting via the Mode-S Beast on the Raspberry Pi seems quite old.

I suspect I have missed something somewhere that explains what to do in comparative laypersons terms. I'm not a complete layperson because I am relatively familiar with Linux and have played with my Pi in previous years, but I have no idea whatsoever how to interface the Mode S Beast to the Pi for feeding FR24.

If there is such guidance that I've missed, I'd be very grateful to anybody who can point me to it please? .

Or if not, some pointers would be great.

Thank you!

How does my data contribute?

$
0
0
Couldn't find this exact question in Search, so giving it a shot here...

I'm curious if there's information somewhere about how data from people's feeds to FR24 from dump1090-fa is aggregated/formulated into what you see on the FR24 maps. If so, can someone point me to it, because I would be interested to understand more about how it works?

Reason I ask:

I just watched a C17 military aircraft on my FlightAware PiAware Skyview map that was being picked up by my antenna as it flew fly across Long Island, NY and up into Connecticut for several minutes before my antenna lost it. All during this time I was watching, this plane did not appear on my FR24 map of that area that was open in another browser window. So I was tracking it with my setup and feeding it to FR24, but it was not on their map. I'm curious to know why that was....

Any info would be great!

Thanks, John

CUSTOM ALERTS don't work for VRMM (private jets)

$
0
0
Hello guys,
I am trying to set up custom alerts, by selecting aircarft type for ICAO code.
For exmaple, i try to look any GLF5 and FA7X in VRMM, - aircrafts are coming but i receive no alerts,
Can you help me ?

I run IOS 10.

Kind regards

Problem running feeder on RaspberryPI

$
0
0
Hello,
due to the discontinue of the windows feeder i bought Raspberry PI

after clean new install with only the fr24feed using the FR24 website

i get error:
Quote:

Found 1 device(s):
0: Realtek, RTL2838UHIDIR, SN: 00000001 (currently selected)
usb_claim_interface error -6
Error opening the RTLSDR device: Device or resource busy
also the device shows on lsusb as:
Quote:

Bus 001 Device 006: ID 0bda:2838 Realtek Semiconductor Corp. RTL2838 DVB-T
Thanks!

Feed options for depreciated windows feeder

$
0
0
Sometimes ago, as an experiment, I have Installed Oracle VM on Windows Computer.
Download page: https://www.oracle.com/technetwork/s...ads/index.html
Downloaded & Installed:
(1) Windows Installer
(2) Extension Pack (for USB 2.0 & 3.0 compatibility)

In the Oracle VM, I installed Linux "Debian Stretch with Raspberry Pi Desktop"
Download page: https://www.raspberrypi.org/download...ry-pi-desktop/

As I use DVB-T stick which needs a decoder, on OS Raspbain in VM, I first installed decoder dump1090-mutability.
This decoder is NOT required if you are using other receivers such as Mode S Beast or SBS.

Before installing FR24 linux feeder on Raspbian in VM, I created a blank file fr24feed.ini in folder /etc and changed its permissions to read-write for all (sudo chmod a+rw /etc/fr24feed.ini). I then opened the file fr24feed.ini located inside windows feeder folder, copied its entire contents, and pasted in the linux file /etc/fr24feed.ini and saved the file, transferring entire signup and configuration settings to Linux in Virtual Machine.

After this I installed FR24 feeder using deb package from FR24 download page for Linux.

Download page:
https://www.flightradar24.com/share-your-data (click Linux tab on this page)

Direct download link:
https://repo-feed.flightradar24.com/....18-5_i386.deb

As the config file /etc/fr24feed.ini was already existing, by default the installer retained it instead of creating a brand-new file.

Data issue while trying to switch from windows to mac feeder software

$
0
0
Hi guys,

Due to the announcement that the windows client won't be supported anymore I'm trying to switch from a windows 10 PC to a mac to feed data via Basestation over the network.
Feed is working on windows since years now, but on the mac it says that everything is connected but there are now data pushed at all.
Please find below the configuration and the logs on windows and mac.

I'm using the same settings on both machines (not copied, I generated both with the setup tool)

Code:

receiver="basestation"
fr24key="XXXX"
host="192.168.0.21:30006"
bs="no"
raw="no"
logmode="1"
mlat="no"
mlat-without-gps="no"

working windows log
Code:

[main][e]Could not create monitor file!
[main][i]Reader thread started
[time][i]Synchronizing time via NTP
[master][i]Starting processing thread
[reader][i]Initializing reader
[reader][i]Connecting to SBS1 receiver on 192.168.0.21:30006
[reader][i]Connected to the receiver, authenticating
[reader][i]Authenticated, processing messages
[httpd][i]Server started, listening on 0.0.0.0:8754
[time][i]Time synchronized correctly, offset +0.0001 seconds
[main][i]Feed Network client started
[feed][i]Downloading configuration
[feed][c]Interval: 5s
[feed][c]Latitude: XXX.1065
[feed][c]Longitude: XXX.3996
[feed][c]GND: YES
[feed][c]NonADSB: YES
[feed][c]Timestamps: optional
[feed][c]Max range AIR: 350.0nm
[feed][c]Max range GND: 100.0nm
[feed][i]defined 4 servers
[stats][i]Stats thread started
[feed][n]XXXX@185.218.24.23:8099/UDP
[feed][n]connecting
[feed][n]connected via UDP (fd 764)
[feed][n]working
[feed][i]sent 67 AC in 2 packets
[feed][i]sent 76 AC in 2 packets
[feed][i]sent 80 AC in 2 packets

same config on mac, not getting aircraft data:
Code:

2019-03-23 10:48:58 | [main][i]FR24 Feeder/Decoder
2019-03-23 10:48:58 | [main][i]Version: 1.0.18-8/generic
2019-03-23 10:48:58 | [main][i]Built on Oct 18 2016 11:19:46 (macos_sierra_decoder_fix-fb83ad2.git/MacOSX/)
2019-03-23 10:48:58 | [main][i]Copyright 2012-2016 Flightradar24 AB
2019-03-23 10:48:58 | [main][i]http : // flightradar24.com
2019-03-23 10:48:58 | [main][i]DNS mode: LIBC
2019-03-23 10:48:58 | [main][i]Reader thread started
2019-03-23 10:48:58 | [httpd][i]Server started, listening on 0.0.0.0:8754
2019-03-23 10:48:58 | [time][i]Synchronizing time via NTP
2019-03-23 10:48:58 | [master][i]Starting processing thread
2019-03-23 10:48:58 | [reader][i]Initializing reader
2019-03-23 10:48:58 | [reader][i]Connecting to SBS1 receiver on 192.168.0.21:30006
2019-03-23 10:48:58 | [reader][i]Connected to the receiver, authenticating
2019-03-23 10:48:58 | [reader][i]Authenticated, processing messages
2019-03-23 10:49:01 | [time][i]Time synchronized correctly, offset -0.0020 seconds
2019-03-23 10:49:01 | [main][i]Feed Network client started
2019-03-23 10:49:01 | [feed][i]Downloading configuration
2019-03-23 10:49:01 | [feed][c]Interval: 5s
2019-03-23 10:49:01 | [feed][c]Latitude: XX.1065
2019-03-23 10:49:01 | [feed][c]Longitude: XX.3996
2019-03-23 10:49:01 | [feed][c]GND: YES
2019-03-23 10:49:01 | [feed][c]NonADSB: YES
2019-03-23 10:49:01 | [feed][c]Timestamps: optional
2019-03-23 10:49:01 | [feed][c]Max range AIR: 350.0nm
2019-03-23 10:49:01 | [feed][c]Max range GND: 100.0nm
2019-03-23 10:49:01 | [feed][i]defined 4 servers
2019-03-23 10:49:01 | [stats][i]Stats thread started
2019-03-23 10:49:01 | [feed][n]XXXX@185.218.24.24:8099/UDP
2019-03-23 10:49:01 | [feed][n]connecting
2019-03-23 10:49:01 | [feed][n]connected via UDP (fd 10)
2019-03-23 10:49:01 | [feed][n]working
2019-03-23 10:49:31 | [feed][n]ping 1
2019-03-23 10:49:32 | [feed][n]syncing stream result: 1
2019-03-23 10:50:01 | [feed][n]ping 2
2019-03-23 10:50:02 | [feed][n]syncing stream result: 1
2019-03-23 10:50:31 | [feed][n]ping 3
2019-03-23 10:50:32 | [feed][n]syncing stream result: 1

Anyone an idea what's wrong here? I definitely don't see any issue and I'm already frustrated with the Linux stuff.
Didn't got it running on a virtualized RPI image. Same result as on the mac.

Any help is much appreciated!

Thanks,
phil

Email Alerts Not Working Properly

$
0
0
It looks like as if I have set up alerts on app (android) then the email alerts (web) will not work (it stopped coming in). i.e. it will not work both ways. Only one - either app alerts OR web-based alerts. I have to delete custom alerts from the app and web-based email alerts started coming in. Is it true? :(

FlightRadar24 Down?

Anybody in for testing a "Cantenna on Steroids"?

$
0
0
Hi,
I am looking for experienced antenna builders and testers with good receivers and (hopefully) antenna analyzers who have built some antennas and compared them in the same location over some days/weeks to be able to make conclusions of how they perform.
I have named this brainfart (?) of mine a "Cantenna on Steroids" and you can retrieve the full details by sending me an e-mail at oh6my@sral.fi
It has performed excitingly well here indoors in my Ham-shack on my book-shelf and outperformed a lot of different spiders, cantennas, bi-quads, 6 el. co-co, and geco:s etc.
So I need a second opinion in case I've been seeing things before I go public with this.
-Hans

FR24 and Planeplotter together.

$
0
0
It’s a little hard to actually think where to put this so I hope this is ok. Windows feed is being abandoned. I have an SBS-3. If I myself abandon using Basestation, can the SBS-3 be used to:

1. Directly feed Planeplotter AND
2. Directly feed a Raspberry Pi (for onward feed to FR24).

That’s it. All I need to know is can this work. Otherwise I need to invest in an antenna splitter as well and they are pretty expensive for one with very low loss. Also I imagine I would need another form of receiver such as a DVB-T.
Viewing all 5745 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>