Changeset 10220 in ntrip
- Timestamp:
- Oct 5, 2023, 10:43:25 AM (16 months ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.cpp
r10218 r10220 649 649 // ----------------------- 650 650 if (_filter->processEpoch(_obsPool) != success) { 651 LOG << " filter->processEpoch() != success" << endl;651 LOG << "t_pppFilter::processEpoch() != success" << endl; 652 652 return finish(failure, 5); 653 653 } -
trunk/BNC/src/PPP/pppFilter.cpp
r10219 r10220 104 104 LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num << endl; 105 105 if (processSystem(OPT->LCs(sys), obsVector, epoch->pseudoObsIono()) != success) { 106 LOG << " processSystem!= success: " << sys << endl;106 LOG << "t_pppFilter::processSystem() != success: " << sys << endl; 107 107 return failure; 108 108 } … … 192 192 // Check number of observations 193 193 // ---------------------------- 194 if (nSat < 3) { 195 LOG << "t_pppFilter::processSystem not enough observations " << nSat << "\n"; 194 if (!nSat) { 196 195 return failure; 197 196 } -
trunk/BNC/src/PPP/pppSatObs.cpp
r10219 r10220 33 33 using namespace std; 34 34 35 const double GLO_WEIGHT_FACTOR = 1.0;36 const double BDS_WEIGHT_FACTOR = 1.0;35 const double GLO_WEIGHT_FACTOR = 2.0; 36 const double BDS_WEIGHT_FACTOR = 2.0; 37 37 38 38 // Constructor
Note:
See TracChangeset
for help on using the changeset viewer.