Changeset 8718 in ntrip for trunk/BNC


Ignore:
Timestamp:
May 2, 2019, 2:56:41 PM (5 years ago)
Author:
stuerze
Message:

minor changes

Location:
trunk/BNC/src
Files:
2 edited

Legend:

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

    r8417 r8718  
    313313  _sec+=sec;
    314314
    315   while ( _sec >= 86400 ) {
    316     _sec-=86400;
     315  while ( _sec >= 86400.0 ) {
     316    _sec-=86400.0;
    317317    _mjd++;
    318318  }
    319   while ( _sec < 0 ) {
    320     _sec+=86400;
     319  while ( _sec < 0.0 ) {
     320    _sec+=86400.0;
    321321    _mjd--;
    322322  }
  • trunk/BNC/src/rinex/rnxobsfile.cpp

    r8682 r8718  
    348348                   << "C3I" << "L3I" << "S3I"
    349349                   << "C4X" << "L4X" << "S4X"
    350                    << "C6X" << "L6X" << "S5X";
     350                   << "C6X" << "L6X" << "S6X";
    351351
    352352    _obsTypes['E'] << "C1X" << "L1X" << "S1X"
     
    533533        hlp1.removeFirst();
    534534        QString satStr = hlp1.join(" ");
    535         hlp1 = satStr.split(" ");       
     535        hlp1 = satStr.split(" ");
    536536        QStringList &satList = hlp1;
    537537        QMap<QString, QPair<double, QStringList> >::iterator it = _phaseShifts.find(type);
Note: See TracChangeset for help on using the changeset viewer.