Changeset 9366 in ntrip for trunk/BNC/src/rinex/rnxnavfile.cpp


Ignore:
Timestamp:
Mar 11, 2021, 2:11:05 PM (3 years ago)
Author:
stuerze
Message:

some additions regarding rinexV305: navigation data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r8368 r9366  
    175175    }
    176176    else if (prn[0] == 'R') {
    177       for (int ii = 1; ii < 4; ii++) {
     177      int num = 4;
     178      if (version() >= 3.05) {
     179        num += 1;
     180      }
     181      for (int ii = 1; ii < num; ii++) {
    178182        lines << stream->readLine();
    179183      }
Note: See TracChangeset for help on using the changeset viewer.