Changeset 8718 in ntrip
- Timestamp:
- May 2, 2019, 2:56:41 PM (6 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnctime.cpp
r8417 r8718 313 313 _sec+=sec; 314 314 315 while ( _sec >= 86400 ) {316 _sec-=86400 ;315 while ( _sec >= 86400.0 ) { 316 _sec-=86400.0; 317 317 _mjd++; 318 318 } 319 while ( _sec < 0 ) {320 _sec+=86400 ;319 while ( _sec < 0.0 ) { 320 _sec+=86400.0; 321 321 _mjd--; 322 322 } -
trunk/BNC/src/rinex/rnxobsfile.cpp
r8682 r8718 348 348 << "C3I" << "L3I" << "S3I" 349 349 << "C4X" << "L4X" << "S4X" 350 << "C6X" << "L6X" << "S 5X";350 << "C6X" << "L6X" << "S6X"; 351 351 352 352 _obsTypes['E'] << "C1X" << "L1X" << "S1X" … … 533 533 hlp1.removeFirst(); 534 534 QString satStr = hlp1.join(" "); 535 hlp1 = satStr.split(" "); 535 hlp1 = satStr.split(" "); 536 536 QStringList &satList = hlp1; 537 537 QMap<QString, QPair<double, QStringList> >::iterator it = _phaseShifts.find(type);
Note:
See TracChangeset
for help on using the changeset viewer.