Skip to content
Discussion options

You must be logged in to vote

Hi @ferraragianluigi97-source

Python code?

SPARTN data source?

Assuming you're using an unencrypted PPFlex NTRIP SPARTN source, then if you're not seeing any SF datafields at all it could simply be because you haven't set the decode flag to "True" e.g.

from pyspartn import SPARTNReader, ERRLOG

INFILE = "spartnntrip_20240430192807.log"
with open(INFILE, "rb") as stream:
    spr = SPARTNReader(
        stream,
        quitonerror=ERRLOG,
        decode=True, # <==
    )
    for raw, parsed in spr:
        print(parsed)
"<SPARTN(SPARTN-1X-OCB-BEI, msgType=0, nData=193, eaf=0, crcType=2, frameCrc=3, msgSubtype=3, timeTagtype=1, gnssTimeTag=452200846, solutionId=5, solutionProcId=11, crc=6801…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by semuadmin
Comment options

You must be logged in to vote
1 reply
@semuadmin
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants