-
Notifications
You must be signed in to change notification settings - Fork 232
Description
Hi, i'm trying to make a script where i recieve raw data from a ntripclient and convert it to RINEX files, however, when mounting the cmd code i'm noticing some weird behaviour and inconsistencies.
First, this is a snippet of the command i'm building :
input_file = 'C:\Users\Hugen\Documents\output.rtcm'
output_file = 'C:\Users\Hugen\Documents\output.20o'
nav_file = 'C:\Users\Hugen\Documents\navfile.nav'
gnav_file = 'C:\Users\Hugen\Documents\gnavfile.25g'
qnav_file = 'C:\Users\Hugen\Documents\qnavfile.25q'
command = [
rtklib_path,
'-v', '3.04',
'-r', 'rtcm3',
'-os',
'-od',
'-o', output_file,
'-n', nav_file,
'-g', gnav_file,
'-q', qnav_file,
input_file
], this command does create the output.20O and the navfile.nav, but does not create the gnav and qnav files for some reason, i researched everywhere and found no answer to my problem, i noticed if i use the -v 2.11 the gnav file appear, but it doesnt otherwise, i didnt have these problems using the RTKCONV GUI, but the problem is that i want to use convbin since i want to automate the script, i noticed that if im using -v 3.04 the gnav files appears very briefly, but again, no luck with the qnav file, here is a reference on what option i am using on RTKCONV interface and how i want to generate the files in CONVBIN, for reference:
could you please tell me if i am doing some mistake with the cmd command and how would i be able to generate the exact files i am creating on rtkconv?

