Changeset 10220 in ntrip


Ignore:
Timestamp:
Oct 5, 2023, 10:43:25 AM (7 months ago)
Author:
stuerze
Message:

minor changes regarding ppp

Location:
trunk/BNC/src/PPP
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppClient.cpp

    r10218 r10220  
    649649    // -----------------------
    650650    if (_filter->processEpoch(_obsPool) != success) {
    651       LOG << "filter->processEpoch() != success" << endl;
     651      LOG << "t_pppFilter::processEpoch() != success" << endl;
    652652      return finish(failure, 5);
    653653    }
  • trunk/BNC/src/PPP/pppFilter.cpp

    r10219 r10220  
    104104    LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num  << endl;
    105105    if (processSystem(OPT->LCs(sys), obsVector, epoch->pseudoObsIono()) != success) {
    106       LOG << "processSystem !=  success: " << sys << endl;
     106      LOG << "t_pppFilter::processSystem() !=  success: " << sys << endl;
    107107      return failure;
    108108    }
     
    192192    // Check number of observations
    193193    // ----------------------------
    194     if (nSat < 3) {
    195       LOG << "t_pppFilter::processSystem not enough observations " << nSat << "\n";
     194    if (!nSat) {
    196195      return failure;
    197196    }
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r10219 r10220  
    3333using namespace std;
    3434
    35 const double   GLO_WEIGHT_FACTOR = 1.0;
    36 const double   BDS_WEIGHT_FACTOR = 1.0;
     35const double   GLO_WEIGHT_FACTOR = 2.0;
     36const double   BDS_WEIGHT_FACTOR = 2.0;
    3737
    3838// Constructor
Note: See TracChangeset for help on using the changeset viewer.