Changeset 2107 in ntrip
- Timestamp:
- Dec 13, 2009, 11:02:24 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2084 r2107 263 263 RSW_to_XYZ(xc.Rows(1,3), vv, cc->rao, dx); 264 264 265 xc[0] += dx[0];266 xc[1] += dx[1];267 xc[2] += dx[2];268 xc[3] += cc->dClk;265 xc[0] -= dx[0]; 266 xc[1] -= dx[1]; 267 xc[2] -= dx[2]; 268 xc[3] -= cc->dClk; 269 269 270 270 // Relativistic Correction -
trunk/BNS/bns.cpp
r2047 r2107 512 512 } 513 513 514 ColumnVector dx = x yz - xB.Rows(1,3);514 ColumnVector dx = xB.Rows(1,3) - xyz; 515 515 516 516 ColumnVector rsw(3); 517 517 XYZ_to_RSW(xB.Rows(1,3), vv, dx, rsw); 518 518 519 double dClk = (x x(4) - xB(4)) * 299792458.0;519 double dClk = (xB(4) - xx(4)) * 299792458.0; 520 520 521 521
Note:
See TracChangeset
for help on using the changeset viewer.