- Timestamp:
- Dec 31, 2009, 10:46:56 AM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncmodel.cpp
r2134 r2143 431 431 _log = "Precise Point Positioning"; 432 432 433 _time = epoData->tt; 434 433 435 SymmetricMatrix QQsav; 434 436 ColumnVector dx; -
trunk/BNC/bncmodel.h
r2130 r2143 30 30 31 31 #include "bncconst.h" 32 #include "bnctime.h" 32 33 33 34 class t_epoData; … … 57 58 t_irc cmpBancroft(t_epoData* epoData); 58 59 t_irc update(t_epoData* epoData); 60 bncTime time() const {return _time;} 59 61 double x() const {return _params[0]->xx;} 60 62 double y() const {return _params[1]->xx;} … … 75 77 void writeNMEAstr(const QString& nmStr); 76 78 79 bncTime _time; 77 80 QByteArray _staID; 78 81 QVector<bncParam*> _params; -
trunk/BNC/bncpppclient.cpp
r2123 r2143 333 333 // Filter Solution 334 334 // --------------- 335 if (_model->update(_epoData) != success) { 336 return; 337 } 338 } 339 335 if (_model->update(_epoData) == success) { 336 double xyz[3]; 337 xyz[0] = _model->x(); 338 xyz[1] = _model->y(); 339 xyz[2] = _model->z(); 340 emit newPosition(_model->time(), xyz); 341 } 342 } 343
Note:
See TracChangeset
for help on using the changeset viewer.