Changeset 2429 in ntrip for trunk/BNC/RTCM3/ephemeris.cpp


Ignore:
Timestamp:
Apr 15, 2010, 1:42:35 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/ephemeris.cpp

    r2285 r2429  
    122122    tc += (GPSweek - _GPSweek) * secPerWeek;
    123123  }
    124   xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc
    125           - 4.442807633e-10 * _e * sqrt(a0) *sin(E);
     124  xc[3] = _clock_bias + _clock_drift*tc + _clock_driftrate*tc*tc;
    126125
    127126  // Velocity
     
    148147
    149148  vv[2]  = sini    *doty  + yp*cosi      *doti;
     149
     150  // Relativistic Correction
     151  // -----------------------
     152  //  xc(4) -= 4.442807633e-10 * _e * sqrt(a0) *sin(E);
     153  xc[3] -= 2.0 * (xc[0]*vv[0] + xc[1]*vv[1] + xc[2]*vv[2]) / t_CST::c / t_CST::c;
    150154}
    151155
Note: See TracChangeset for help on using the changeset viewer.