Changeset 8496 in ntrip for branches/BNC_2.12
- Timestamp:
- Sep 25, 2018, 1:25:55 PM (6 years ago)
- Location:
- branches/BNC_2.12/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/PPP/pppSatObs.cpp
r8027 r8496 106 106 // Compute Satellite Coordinates at Time of Transmission 107 107 // ----------------------------------------------------- 108 _xcSat.ReSize( 4); _xcSat = 0.0;109 _vvSat.ReSize( 4); _vvSat = 0.0;108 _xcSat.ReSize(7); _xcSat = 0.0; 109 _vvSat.ReSize(3); _vvSat = 0.0; 110 110 bool totOK = false; 111 ColumnVector satPosOld( 4); satPosOld = 0.0;111 ColumnVector satPosOld(7); satPosOld = 0.0; 112 112 t_lc::type tLC = isValid(t_lc::cIF) ? t_lc::cIF : t_lc::c1; 113 113 double prange = obsValue(tLC); -
branches/BNC_2.12/src/ephemeris.h
r8481 r8496 151 151 public: 152 152 t_ephGlo() { 153 _xv.ReSize(6); 153 _xv.ReSize(6); _xv = 0.0; 154 154 _gps_utc = 0.0; 155 155 _tau = 0.0; -
branches/BNC_2.12/src/rinex/reqcanalyze.cpp
r8484 r8496 288 288 } 289 289 if (eph) { 290 ColumnVector xSat( 4);290 ColumnVector xSat(7); 291 291 ColumnVector vv(3); 292 292 if (eph->getCrd(_currEpo->tt, xSat, vv, false) == success) {
Note:
See TracChangeset
for help on using the changeset viewer.