Changeset 9366 in ntrip for trunk/BNC/src


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

some additions regarding rinexV305: navigation data

Location:
trunk/BNC/src/rinex
Files:
3 edited

Legend:

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

    r8798 r9366  
    522522    }
    523523  }
    524   // TODO: enable user decision 
     524  // TODO: enable user decision
    525525  qStableSort(ephs.begin(), ephs.end(), t_eph::earlierTime);
    526   //qStableSort(ephs.begin(), ephs.end(), t_eph::prnSort); 
     526  //qStableSort(ephs.begin(), ephs.end(), t_eph::prnSort);
    527527}
    528528
  • 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      }
  • trunk/BNC/src/rinex/rnxnavfile.h

    r8640 r9366  
    3737
    3838#define defaultRnxNavVersion2 2.11
    39 #define defaultRnxNavVersion3 3.04
     39#define defaultRnxNavVersion3 3.05
    4040
    4141class t_rnxNavFile {
Note: See TracChangeset for help on using the changeset viewer.