Changeset 3589 in ntrip
- Timestamp:
- Jan 19, 2012, 5:59:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r3588 r3589 1149 1149 t_irc bncComb::mergeOrbitCorr(const cmbCorr* orbitCorr, cmbCorr* clkCorr) { 1150 1150 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; 1151 1166 1152 1167 return success;
Note:
See TracChangeset
for help on using the changeset viewer.