Changeset 10385 in ntrip for trunk/BNC/src/PPP


Ignore:
Timestamp:
Mar 12, 2024, 10:29:47 AM (13 months ago)
Author:
stuerze
Message:

changes regarding PPP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/BNC/src/PPP/pppFilter.cpp

    r10384 r10385  
    100100      }
    101101    }
    102     LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num  << endl;
     102    LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num;
     103    if (num < OPT->_minObs) {
     104      LOG << " < OPT->_minObs " << right << setw(2) << OPT->_minObs << endl;
     105      continue;
     106    }
     107    LOG << endl;
    103108    if (processSystem(OPT->LCs(sys), obsVector, epoch->pseudoObsIono()) != success) {
    104109      LOG << "t_pppFilter::processSystem() !=  success: " << sys << endl;
     
    347352
    348353        // Check Pre-Fit Residuals
    349         // -----------------------
     354        /* -----------------------
    350355        else {
    351356          ColumnVector AA(params.size());
     
    362367            resetAmb(obs->prn(), obsVector, tLC);
    363368          }
    364         }
     369        }*/
    365370      }
    366371    }
Note: See TracChangeset for help on using the changeset viewer.