Changeset 4803 in ntrip for trunk/BNC/src/upload
- Timestamp:
- Nov 22, 2012, 10:17:58 AM (12 years ago)
- Location:
- trunk/BNC/src/upload
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/upload/bncrtnetuploadcaster.cpp
r4754 r4803 528 528 xyz(3) += xx(8); 529 529 } 530 530 531 double dc = 0.0; 531 532 if (_crdTrafo != "IGS08") { 532 crdTrafo(GPSweek12, xyz );533 crdTrafo(GPSweek12, xyz, dc); 533 534 } 534 535 … … 537 538 if (ii == 1) { 538 539 XYZ_to_RSW(xB.Rows(1,3), vv, dx, rsw); 539 dClk = (xx(4) + xx(5) - xB(4) ) * 299792458.0;540 dClk = (xx(4) + xx(5) - xB(4) + dc) * t_CST::c; 540 541 } 541 542 else { … … 570 571 // Transform Coordinates 571 572 //////////////////////////////////////////////////////////////////////////// 572 void bncRtnetUploadCaster::crdTrafo(int GPSWeek, ColumnVector& xyz) { 573 void bncRtnetUploadCaster::crdTrafo(int GPSWeek, ColumnVector& xyz, 574 double& dc) { 575 576 // Clock Correction 577 // ---------------- 578 dc = 0.0; // TODO 573 579 574 580 // Current epoch minus 2000.0 in years -
trunk/BNC/src/upload/bncrtnetuploadcaster.h
r4176 r4803 34 34 struct ClockOrbit::SatData* sd, 35 35 QString& outLine); 36 void crdTrafo(int GPSWeek, ColumnVector& xyz );36 void crdTrafo(int GPSWeek, ColumnVector& xyz, double& dc); 37 37 38 38 bncEphUser* _ephUser;
Note:
See TracChangeset
for help on using the changeset viewer.