Changeset 9249 in ntrip for branches/BNC_2.12/src/upload
- Timestamp:
- Nov 12, 2020, 11:49:23 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/upload/bncrtnetuploadcaster.cpp
r9206 r9249 22 22 #include "bncsp3.h" 23 23 #include "gnss.h" 24 #include "bncutils.h" 24 25 25 26 using namespace std; … … 384 385 for (int ii = 1; ii < lines.size(); ii++) { 385 386 QString key; // prn or key VTEC, IND (phase bias indicators) 386 double rtnUra = 0.0; 387 double rtnUra = 0.0; // [m] 387 388 ColumnVector rtnAPC; rtnAPC.ReSize(3); rtnAPC = 0.0; // [m, m, m] 388 389 ColumnVector rtnVel; rtnVel.ReSize(3); rtnVel = 0.0; // [m/s, m/s, m/s] … … 467 468 } 468 469 469 if (eph && 470 eph->checkState() != t_eph::bad && 470 if (eph && !outDatedBcep(eph) && // detected from storage because of no update 471 eph->checkState() != t_eph::bad && 471 472 eph->checkState() != t_eph::unhealthy && 472 eph->checkState() != t_eph::outdated) { 473 eph->checkState() != t_eph::outdated) { // detected during reception (bncephuser) 473 474 QMap<QString, double> codeBiases; 474 475 QList<phaseBiasSignal> phaseBiasList; … … 926 927 927 928 _outBuffer += hlpBufferCo + hlpBufferBias + hlpBufferPhaseBias 928 + hlpBufferVtec + '\0'; ;929 + hlpBufferVtec + '\0'; 929 930 } 930 931
Note:
See TracChangeset
for help on using the changeset viewer.