Changeset 5776 in ntrip for trunk/BNC/src/rinex
- Timestamp:
- Aug 4, 2014, 11:34:04 AM (10 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/reqcanalyze.cpp
r5368 r5776 247 247 if (obs.satSys == 'R') { 248 248 for (int ie = 0; ie < _ephs.size(); ie++) { 249 if ( _ephs[ie]->prn() == prn) {249 if (QString(_ephs[ie]->prn().toString().c_str()) == prn) { 250 250 ephGlo = dynamic_cast<t_ephGlo*>(_ephs[ie]); 251 251 break; … … 536 536 t_eph* eph = 0; 537 537 for (int ie = 0; ie < _ephs.size(); ie++) { 538 if ( _ephs[ie]->prn() == prn) {538 if (QString(_ephs[ie]->prn().toString().c_str()) == prn) { 539 539 eph = _ephs[ie]; 540 540 break; … … 746 746 t_eph* eph = 0; 747 747 for (int ie = 0; ie < _ephs.size(); ie++) { 748 if ( _ephs[ie]->prn() == prn) {748 if (QString(_ephs[ie]->prn().toString().c_str()) == prn) { 749 749 eph = _ephs[ie]; 750 750 break; -
trunk/BNC/src/rinex/rnxnavfile.cpp
r5738 r5776 208 208 t_eph* eph = *it; 209 209 double dt = eph->TOC() - tt; 210 if (dt < 8*3600.0 && eph->prn() == prn && eph->IOD() == iod) {210 if (dt < 8*3600.0 && QString(eph->prn().toString().c_str()) == prn && eph->IOD() == iod) { 211 211 it = _ephs.erase(it); 212 212 return eph;
Note:
See TracChangeset
for help on using the changeset viewer.