Changeset 6122 in ntrip


Ignore:
Timestamp:
Sep 11, 2014, 2:24:00 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/reqcanalyze.cpp

    r6109 r6122  
    750750
    751751    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;
    755753
    756754    t_eph* eph = 0;
    757755    for (int ie = 0; ie < _ephs.size(); ie++) {
    758       if (QString(_ephs[ie]->prn().toString().c_str()) == prn) {
     756      if (_ephs[ie]->prn() == prn) {
    759757        eph = _ephs[ie];
    760758        break;
Note: See TracChangeset for help on using the changeset viewer.