Skip to content

Commit

Permalink
teach rinex ephemeris parser about IOD
Browse files Browse the repository at this point in the history
  • Loading branch information
ahupowerdns committed Jul 29, 2020
1 parent edce290 commit 72f7891
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rinex.cc
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@ G02 2019 12 16 00 00 00-3.670863807201E-04-7.389644451905E-12 0.000000000000E+00
for(int n=1 ; n < 7; ++n) {
if(!gzgets(d_fp, line, sizeof(line)))
return false;
if(n==1) {
entry.iodnav = getRINEXValue(line, 4);
}
if(n==3) {
double toe = getRINEXValue(line, 4);
entry.toe = toe;
Expand Down

0 comments on commit 72f7891

Please sign in to comment.