Changeset 5776 in ntrip for trunk/BNC/src/rinex


Ignore:
Timestamp:
Aug 4, 2014, 11:34:04 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/rinex
Files:
2 edited

Legend:

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

    r5368 r5776  
    247247        if (obs.satSys == 'R') {
    248248          for (int ie = 0; ie < _ephs.size(); ie++) {
    249             if (_ephs[ie]->prn() == prn) {
     249            if (QString(_ephs[ie]->prn().toString().c_str()) == prn) {
    250250              ephGlo = dynamic_cast<t_ephGlo*>(_ephs[ie]);
    251251              break;
     
    536536          t_eph* eph = 0;
    537537          for (int ie = 0; ie < _ephs.size(); ie++) {
    538             if (_ephs[ie]->prn() == prn) {
     538            if (QString(_ephs[ie]->prn().toString().c_str()) == prn) {
    539539              eph = _ephs[ie];
    540540              break;
     
    746746    t_eph* eph = 0;
    747747    for (int ie = 0; ie < _ephs.size(); ie++) {
    748       if (_ephs[ie]->prn() == prn) {
     748      if (QString(_ephs[ie]->prn().toString().c_str()) == prn) {
    749749        eph = _ephs[ie];
    750750        break;
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r5738 r5776  
    208208        t_eph* eph = *it;
    209209        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) {
    211211          it = _ephs.erase(it);
    212212          return eph;
Note: See TracChangeset for help on using the changeset viewer.