How to download my Flightfeeder history

G’day folks.

I’m not very cluey when it comes to using my Flightfeeder (FF). I’d like to download my spotting history so I can use the data in maths classes I teach, and for my own interest in how far I can “see”.

I understand that there is a dump1090 file in the FF. Unfortunately I have no idea what it contains or how to access it so I can use the data on my PC. (eg something that can be used on Excel)

Is anyone able to provide me with some guidance please? Thanks in advance!

What data do you want?

If you run a Raspberry Pi, you can use graphs1090 to collectd data.
(GitHub - wiedehopf/graphs1090: Graphs for readsb / dump1090-fa / dump1090 (based on dump1090-tools by mutability))

You’ll have to point it at the FlightFeeder IP address: GitHub - wiedehopf/graphs1090: Graphs for readsb / dump1090-fa / dump1090 (based on dump1090-tools by mutability)

This is where the graphs get the data:
(address needs to be the IP-address of the FF in your case)
http://address/dump1090-fa/data/stats.json
http://address/dump1090-fa/data/aircraft.json

But the data always changes, so the graphs parse these files every minute.
With the data aggregated by graphs1090, you can get the datapoints as a CSV to use them in excel.
There are CSVs available in /var/lib/graphs1090/scatter/
I made those for this script by caius: GitHub - caiusseverus/adsbcompare: Tools to plot and compare data gathered with graphs1090

They contain for the date in question data in 3 minute intervals:
range in meters | message rate | (message rate in some cases) | number of aircraft seen

This will be a very steep learning curve if you only know Excel.
And you need a Raspberry Pi.

He seem to run FlightFeeder 7.9.2~bpo8+1

The version doesn’t really matter in this case.

I’m aware he can’t use the graphs on the FF.
He needs a separate RPi of his own, maybe that wasn’t clear in my post.

But the separate Pi can run the graphs using the statistics from the FF.

2 Likes

Thanks gents. I only have the Flightaware supplied Flightfeeder and have not got into programming R-Pi computers at all.

I’ll have a go at trying to access the dump1090 data later today if I get the chance.

I very much appreciate the suggestions provided.

Cheers!

Not so much about programming.
Retrieving the files as explained is just using the RPi.

There is lots of online resources on how to set up an RPi.
The json files as i said are unlikely to help you.
I suppose if you can script something in Windows to regularly load them and create your own statistics, that would work as well.

Thanks. Will have a look and see what I can get.