Changeset 7038 in ntrip


Ignore:
Timestamp:
Jul 13, 2015, 10:21:35 AM (9 years ago)
Author:
stuerze
Message:

small changes which allow to the user to decide whether he wants to use GLONASS code observations in SSR I PPP mode or not

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP_SSR_I/pppFilter.cpp

    r7031 r7038  
    10161016      unsigned nPar = _params.size();
    10171017      unsigned nObs = 0;
    1018       if (iPhase == 0) {
    1019         nObs = epoData->sizeAll() - epoData->sizeSys('R'); // Glonass code not used
    1020       }
    1021       else {
    1022         nObs = epoData->sizeAll();
    1023       }
     1018      nObs = epoData->sizeAll();
    10241019     
    10251020      // Prepare first-design Matrix, vector observed-computed
     
    10341029        it.next();
    10351030        t_satData* satData = it.value();
    1036         if (iPhase == 1 || satData->system() != 'R') {
    1037           QString prn = satData->prn;
    1038           addObs(iPhase, iObs, satData, AA, ll, PP);
    1039         }
     1031        QString prn = satData->prn;
     1032        addObs(iPhase, iObs, satData, AA, ll, PP);
    10401033      }
    10411034
Note: See TracChangeset for help on using the changeset viewer.