I would like to export the hourly received reports. Would like to compare the number of planes I see. Of course I could make a print screen or something, but would like to export to Excel if possible.
Does anyone know if this is possible. Or perhaps there is another option to export/save data from my feeder.
Thanks
I used the second script mentioned in the previous post for quite a while.
The problem is that it counts unique aircraft only. If an aircraft passes your receiver twice but with different flight numbers (inbound and outbound), it is still counted only once.
In the first link i suggested to setup a virtualradarserver which can be running on the same raspberry.
This offers a database solution which logs all flights seen by your receiver.
Or you can do the hardcore version:
Get the aircraft.json via cron job every few minutes and write it to a json file
Convert the json to CSV/Excel
Remove the duplicates where registration, flightnumber and datae are identical
I have been “studying” the solutions you gave for the last two days. I am somewhat afraid to make the changes to my SD card. ( Afraid making stupid mistakes)
I found an example of the VRS, but could not see the database example.
As said I am interested in the hourly reports. Would that be possible in the database option in VRS?
Not that i am aware of. The VRS database logs a flight/aircraft whenever it appears on the screen. So it is more a continous stream.
Per default the database format is SQLite. With an appropriate tool you can export the data to e.g. Excel
@foxhunter
To convert the sqlite into Excel would not be a problem. There are great tools for that
But I guess what I would like to “collect” is not possible.
Well I could do it by hand of course. Writing down the details from the hourly reports. Will keep me busy and off the streets😉
The records do have several date/time stamps. You might be able to filter/group by this.
If you’re interested i can share a DB file for testing purposes