Skip to content

Commit 3097353

Browse files
committed
rtkconv: fix for RINEX versions 3.05+
1 parent 93bac73 commit 3097353

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/winapp/rtkconv/convmain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ void __fastcall TMainWindow::ConvertFile(void)
849849
int i,format,sat;
850850
char file[1024]="",*ofile[9],ofile_[9][1024]={""},msg[256],*p;
851851
char buff[256],tstr[40];
852-
int RNXVER[]={210,211,212,300,301,302,303,304};
852+
const int RNXVER[]={210,211,212,300,301,302,303,304,305,400,401,402};
853853
FILE *fp;
854854

855855
for (i=0;i<9;i++) ofile[i]=ofile_[i];

app/winapp/rtkconv/convopt.dfm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ object ConvOptDialog: TConvOptDialog
476476
Style = csDropDownList
477477
ItemIndex = 0
478478
TabOrder = 2
479-
Text = '3.03'
479+
Text = '3.04'
480480
OnChange = RnxVerChange
481481
Items.Strings = (
482482
'2.10'

0 commit comments

Comments
 (0)