Broadcasting RTCM3 correction data as NTRIP server/caster #70
-
Hi, thank you for amazing work. I have a question about steaming RTCM data as NTRIP server. I want to stream the RTCM data as a NTRIP server and than some other users(clients) to get the data. I use "gnssserver --inport "/dev/tty.ACM0" --hostip 0.0.0.0 --outport 2101 --ntripmode 1 --protfilter 4 --format 2 --ntripuser myuser --ntrippassword mypassword" command to stream the data. Then on another terminal I run "gnssdump --socket 0.0.0.0:2101" command to connect the localhost and get the RTCM data as a client. After connecting the network on the server side it it shows that I am connected but on the client side nothing happend. I cant see any data flow on the terminal. I dont know what it is wrong. Can you help me with this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @HamzaCetin0, If your intention is to run So, based on your example above, you would need to use something like: gnssntripclient --server localhost --mountpoint pygnssutils --ntripuser myuser --ntrippassword mypassword You should then see a stream of incoming RTCM3 data something like this...
NB: Bear in mind that, for all this to work, the receiver at I'm converting this Issue to a DIscussion Q&A topic - if you have any further queries, please add them to the discussion. Hope this helps. |
Beta Was this translation helpful? Give feedback.
-
Thank you so much for your reply. Now everything is ok. I can see the data on the terminal. I have one more question about the output of the data. Is there any way to get the data by typing the local address and the port number on the browser? And how to save this data to a file? |
Beta Was this translation helpful? Give feedback.
Hi @HamzaCetin0,
If your intention is to run
gnssserver
as an NTRIP Caster, you will need to use an NTRIP Client such asgnssntripclient
to receive the data, rather thangnssdump
which is basically just a serial parser.So, based on your example above, you would need to use something like:
You should then see a stream of incoming RTCM3 data something like this...