Changeset 6122 in ntrip
- Timestamp:
- Sep 11, 2014, 2:24:00 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r6109 r6122 750 750 751 751 const t_rnxObsFile::t_rnxSat& rnxSat = _currEpo->rnxSat[iSat]; 752 753 QString prn = QString("%1%2").arg(rnxSat.satSys) 754 .arg(rnxSat.satNum, 2, 10, QChar('0')); 752 const t_prn& prn = rnxSat.prn; 755 753 756 754 t_eph* eph = 0; 757 755 for (int ie = 0; ie < _ephs.size(); ie++) { 758 if ( QString(_ephs[ie]->prn().toString().c_str()) == prn) {756 if (_ephs[ie]->prn() == prn) { 759 757 eph = _ephs[ie]; 760 758 break;
Note:
See TracChangeset
for help on using the changeset viewer.