Changeset 10818 in ntrip


Ignore:
Timestamp:
Mar 12, 2026, 5:24:05 PM (11 days ago)
Author:
stuerze
Message:

bug fixed regarding sign convention of biases

Location:
trunk/BNC/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncbiassinex.cpp

    r10339 r10818  
    6464                                               .arg(dayOfYear, 3, 10, QLatin1Char('0'))
    6565                                               .arg(daysec+_sampl , 5, 10, QLatin1Char('0'));
     66      // change of sign
     67      // --------------
     68      // post-processing convention is to subtract biases
     69      // real-time convention is to add biases.
     70      bias *= -1.0;
    6671      QString biasStr =QString("%1").arg((bias * 1.e9 / t_CST::c), 21, 'f', 4, QLatin1Char(' '));
    6772      _out << " OSB       " << prn.toLatin1().data()
  • trunk/BNC/src/combination/bncbiassnx.cpp

    r10660 r10818  
    148148        continue;
    149149      }
     150      // change of sign
     151      // --------------
     152      // post-processing convention is to subtract biases
     153      // real-time convention is to add biases.
     154      value *= -1.0;
     155
    150156      // conversion of Code Biases
    151157      // -------------------------
Note: See TracChangeset for help on using the changeset viewer.