-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Identification for ACARS and ADS-C network streams? #45
Comments
For feed are you just using the stuff that comes out the bottom text edit? The bottom text edit parsing is done in https://github.com/jontio/JAERO/blob/master/JAERO/mainwindow.cpp in For feed ID that would be part of the JSON format so would be done in the same section of code. |
Currently in the dev_json branch I've added the JSON formatting (commit 145315f ). You select "JSON" from output format. That should fix the parsing issue. For the source id that is easy enough to do in node red. You could either add the source to the object or use something like mqtt and set the topic name as the source. Here is an example of me doing these things... I'll leave the dev_json branch there for a few days in case someone finds something that needs to be fixed. After that I'll assume it's ok then merge it into the master branch. |
Thanks @jontio this is really a great addition and will help us in the community a lot! Very exciting, thank you for your work on this. Re: feed identification, that works fine for people using Node-RED, but I suspect it adds a lot of overhead for those that don't use it. It would still be fantastic if you could add a flag that allows any arbitrary |
@kevinelliott adding an |
Thanks @jontio ! I can take a stab at it. |
We are using some JAERO feeds to send data to airframes.io (see https://app.airframes.io/about) which is working well. I'd like to thank you for making JAERO because it has made this possible.
I would like to request two features:
As feeders to the site are user-centric, the only way we can currently identify a JAERO feed is by it's source IP address. This is problematic when the source feeder's internet provider changes their IP address. Other feeder software, such as acarsdec/vdlm2dec, will include a user-configurable field, such as
ident
so that they can pass us their "identification". This allows us to not really focus on the IP address as the source of identification.Right now the format that is sent for the ACARS is not very parsable. It is very difficult to properly extract the data so that further processing can be done. Can we have either enhancements to this format sent (say, in JSON), or perhaps a whole new output type that can send the ACARS data as JSON?
The text was updated successfully, but these errors were encountered: