Skip to content Skip to sidebar Skip to footer

Receiving Rtcm Data Via Ntrip But Can't Translate The Machincode

I wrote a python script that send and receives data from an NTRIP Server (RTK). But I don't know how to translate the machine code. For example I get this: b'3E\r\n\xd3\x008?]\x0

Solution 1:

RTCM is a binary format. It can not be decoded into text. You will need a binary parser if you want to read the messages in the stream. But the normal use case for RTK positioning is to pass the RTCM stream unmodified to your GNSS receiver.


Post a Comment for "Receiving Rtcm Data Via Ntrip But Can't Translate The Machincode"