Changeset 6112 in ntrip for trunk/BNC/src/PPP_free
- Timestamp:
- Sep 8, 2014, 4:32:01 PM (10 years ago)
- Location:
- trunk/BNC/src/PPP_free
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_free/pppClient.cpp
r6110 r6112 139 139 output->_xyzRover[1] = _filter->y(); 140 140 output->_xyzRover[2] = _filter->z(); 141 // copy(&_filter->Q().data()[0], &_filter->Q().data()[6], _output->_covMatrix);141 copy(&_filter->Q().data()[0], &_filter->Q().data()[6], output->_covMatrix); 142 142 output->_neu[0] = 0.0; 143 143 output->_neu[1] = 0.0; -
trunk/BNC/src/PPP_free/pppFilter.cpp
r6111 r6112 172 172 // --------------------------------------------- 173 173 _epoData_sav = new t_epoData(); 174 175 // Some statistics 176 // --------------- 177 _neu.ReSize(3); _neu = 0.0; 178 _numSat = 0; 179 _pDop = 0.0; 174 180 } 175 181 … … 624 630 LOG << endl << endl; 625 631 632 // Compute dilution of precision 633 // ----------------------------- 634 cmpDOP(epoData); 635 626 636 // Final Message (both log file and screen) 627 637 // ---------------------------------------- … … 645 655 double ellRef[3]; 646 656 xyz2ell(OPT->_xyzAprRover.data(), ellRef); 647 double neu[3]; 648 xyz2neu(ellRef, xyz, neu); 657 xyz2neu(ellRef, xyz, _neu.data()); 649 658 650 659 LOG << " NEU " 651 << setw(8) << setprecision(3) << neu[0] << " "652 << setw(8) << setprecision(3) << neu[1] << " "653 << setw(8) << setprecision(3) << neu[2] << endl << endl;660 << setw(8) << setprecision(3) << _neu[0] << " " 661 << setw(8) << setprecision(3) << _neu[1] << " " 662 << setw(8) << setprecision(3) << _neu[2] << endl << endl; 654 663 } 655 664 else { -
trunk/BNC/src/PPP_free/pppFilter.h
r6111 r6112 148 148 t_irc update(t_epoData* epoData); 149 149 bncTime time() const {return _time;} 150 const SymmetricMatrix& Q() const {return _QQ;} 151 const ColumnVector& neu() const {return _neu;} 152 int numSat() const {return _numSat;} 153 double PDOP() const {return _pDop;} 150 154 double x() const {return _params[0]->xx;} 151 155 double y() const {return _params[1]->xx;} … … 235 239 bncAntex* _antex; 236 240 t_tides* _tides; 241 ColumnVector _neu; 237 242 int _numSat; 238 243 double _pDop;
Note:
See TracChangeset
for help on using the changeset viewer.