Changeset 7003 in ntrip


Ignore:
Timestamp:
Jun 30, 2015, 4:35:05 PM (9 years ago)
Author:
stuerze
Message:

consideration of the eph flag in order to declare the Galileo clock and orbit corrections as to be valid for I/NAV

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/satObs.cpp

    r6878 r7003  
    6464   
    6565    in >> corr._prn >> corr._iod >> corr._dClk >> corr._dotDClk >> corr._dotDotDClk;
     66    if (corr._prn.system() == 'E') {
     67      corr._prn.setFlags(1);// I/NAV
     68    }
    6669
    6770    corr._dClk       /= t_CST::c;
     
    131134    istringstream in(line.c_str());
    132135   
    133     in >> corr._prn      >> corr._iod 
     136    in >> corr._prn      >> corr._iod
    134137       >> corr._xr[0]    >> corr._xr[1]    >> corr._xr[2]   
    135138       >> corr._dotXr[0] >> corr._dotXr[1] >> corr._dotXr[2];
    136139
     140    if (corr._prn.system() == 'E') {
     141      corr._prn.setFlags(1);// I/NAV
     142    }
    137143    corrList.push_back(corr);
    138144  }
Note: See TracChangeset for help on using the changeset viewer.