Changeset 6109 in ntrip for trunk/BNC/src/RTCM
- Timestamp:
- Sep 8, 2014, 3:49:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM/rtcm_utils.cpp
r2492 r6109 36 36 // -------------- 37 37 rho = 0.0; 38 eph->position(GPSWeek, GPSWeeks, xSat, ySat, zSat, clkSat); 38 ColumnVector xc(4); 39 ColumnVector vv(3); 40 eph->getCrd(bncTime(GPSWeek, GPSWeeks), xc, vv, false); 41 xSat = xc(1); 42 ySat = xc(2); 43 zSat = xc(3); 44 clkSat = xc(4); 39 45 40 46 ////cout << "----- cmpRho -----\n"; … … 77 83 } 78 84 79 eph->position(GPSWeek_tot, GPSWeeks_tot, xSat, ySat, zSat, clkSat); 85 eph->getCrd(bncTime(GPSWeek_tot, GPSWeeks_tot), xc, vv, false); 86 xSat = xc(1); 87 ySat = xc(2); 88 zSat = xc(3); 89 clkSat = xc(4); 80 90 81 91 dx = xRec - xSat;
Note:
See TracChangeset
for help on using the changeset viewer.