ADSB & JSON Config #403
Replies: 5 comments 7 replies
-
Hi and thanks! It is a bit tricky syntax-wise as you essentially want to run the program with multiple input streams. This means that you need to create a receiver array in your JSON that is an array with an object for each input stream, defining the source and the settings. At the moment, you might have put the definitions for the RTL-SDR etc in the root section, that is not possible if you have multiple devices. Have a look at this example. Does that help? {
"config": "aiscatcher",
"version": 1,
"receiver": [
{
"input": "rtltcp",
"verbose": true,
"rtltcp": {
"protocol": "raw1090",
"host": "str",
"port": 30003
}
},
{
"input": "rtlsdr",
"rtlsdr": {
"tuner": "auto"
}
}
]
} |
Beta Was this translation helpful? Give feedback.
-
Thanks so much @jvde-github that's exactly what I needed! |
Beta Was this translation helpful? Give feedback.
-
Would this be the correct syntax for Beast coming out a flightaware flight feeder. I have most of my config done today by the web interface and know I would have to move to JSON config only.
|
Beta Was this translation helpful? Give feedback.
-
Can you point me at what I'm doing wrong here? I keep getting: Invalid JSON: invalid character '"' after object key:value pair
|
Beta Was this translation helpful? Give feedback.
-
Ok got it working. That is cool as can be. Thanks |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Been enjoying AIS-catcher for a few years now (Docker). Thank you!
Moved over to AIS-catcher-control, and noticed that the Docker image is not updated quite as regularly. So I decided to move back to regular AIS-catcher using the JSON Config that was created in AIS-catcher-control.
Is there a way to get the ADSB input when you're using the JSON config file? (
-t basestation X.X.X.X 30003
)I've tried it in the "
command
" stanza of the docker-compose file, but doesn't seem to work in conjunction with "-C /etc/AIS-catcher/config.json
".Thanks!
Beta Was this translation helpful? Give feedback.
All reactions