- Timestamp:
- Nov 16, 2021, 1:49:21 PM (3 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncgetthread.cpp
r9285 r9544 628 628 if (wrongObservationEpoch) { 629 629 QString prn(obs._prn.toString().c_str()); 630 emit(newMessage(_staID + " (" + prn.toLatin1() + ")" + ": Wrong observation epoch(s)", false)); 630 QString type = QString("%1").arg(obs._type); 631 emit(newMessage(_staID + " (" + prn.toLatin1() + ")" + ": Wrong observation epoch(s)" + "( MT: " + type.toLatin1() + ")", false)); 631 632 continue; 632 633 } -
trunk/BNC/src/satObs.h
r9088 r9544 54 54 _prn = old._prn; 55 55 _time = old._time; 56 _type = old._type; 56 57 for (unsigned ii = 0; ii < old._obs.size(); ii++) { 57 58 _obs.push_back(new t_frqObs(*old._obs[ii])); … … 78 79 _prn.clear(); 79 80 _staID.clear(); 81 _type = 0; 80 82 } 81 83 … … 83 85 t_prn _prn; 84 86 bncTime _time; 87 int _type; 85 88 std::vector<t_frqObs*> _obs; 86 89 };
Note:
See TracChangeset
for help on using the changeset viewer.