NMEA txt file input #246
-
Is it possible to feed the catcher with a local txt file with NMEA sentences to view it in the web viewer? |
Beta Was this translation helpful? Give feedback.
Answered by
jvde-github
Mar 2, 2024
Replies: 1 comment
-
Yes, the documented approach would be: AIS-catcher -r txt filename -N 8100 However, this stops the program at the end of the file. I always avoid that with a little trick to read additionally from stdin: AIS-catcher -r txt filename -r txt . -N 8100 hope that works for you |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DMoenning
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, the documented approach would be:
AIS-catcher -r txt filename -N 8100
However, this stops the program at the end of the file. I always avoid that with a little trick to read additionally from stdin:
AIS-catcher -r txt filename -r txt . -N 8100
hope that works for you