Changeset 6351 in ntrip for trunk/BNC/src/bncsp3.cpp


Ignore:
Timestamp:
Nov 26, 2014, 6:34:14 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6349 r6351  
    190190
    191191    sp3Sat->_xyz *= 1.e3;
    192     sp3Sat->_clk *= t_CST::c * 1.e-6;
     192    if (sp3Sat->_clk == 999999.999999) {
     193      sp3Sat->_clkValid = false;
     194      sp3Sat->_clk      = 0.0;
     195    }
     196    else {
     197      sp3Sat->_clkValid = true;
     198      sp3Sat->_clk *= t_CST::c * 1.e-6;
     199    }
    193200
    194201    _currEpoch->_sp3Sat.push_back(sp3Sat);
Note: See TracChangeset for help on using the changeset viewer.