Changeset 3589 in ntrip


Ignore:
Timestamp:
Jan 19, 2012, 5:59:54 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/combination/bnccomb.cpp

    r3588 r3589  
    11491149t_irc bncComb::mergeOrbitCorr(const cmbCorr* orbitCorr, cmbCorr* clkCorr) {
    11501150
     1151  double dt = clkCorr->tt - orbitCorr->tt;
     1152
     1153  clkCorr->iod = orbitCorr->iod; // is it always correct?
     1154  clkCorr->eph = orbitCorr->eph;
     1155
     1156  clkCorr->rao = orbitCorr->rao
     1157               + orbitCorr->dotRao    * dt
     1158               + orbitCorr->dotDotRao * dt * dt;
     1159
     1160  clkCorr->dotRao = orbitCorr->dotRao
     1161                  + orbitCorr->dotDotRao * dt;
     1162
     1163  clkCorr->dotDotRao = orbitCorr->dotDotRao;
     1164
     1165  clkCorr->raoSet = true;
    11511166
    11521167  return success;
Note: See TracChangeset for help on using the changeset viewer.