Changeset 7288 in ntrip for trunk/BNC/src/PPP_SSR_I


Ignore:
Timestamp:
Sep 20, 2015, 10:39:48 PM (9 years ago)
Author:
stuerze
Message:

phase biases added

Location:
trunk/BNC/src/PPP_SSR_I
Files:
2 edited

Legend:

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

    r7241 r7288  
    3535 * Created:    21-Nov-2009
    3636 *
    37  * Changes:   
     37 * Changes:
    3838 *
    3939 * -----------------------------------------------------------------------*/
     
    7676////////////////////////////////////////////////////////////////////////////
    7777void t_pppClient::processEpoch(const vector<t_satObs*>& satObs, t_output* output) {
    78  
     78
    7979  // Convert and store observations
    8080  // ------------------------------
    8181  _epoData->clear();
    8282  for (unsigned ii = 0; ii < satObs.size(); ii++) {
    83     const t_satObs* obs     = satObs[ii]; 
     83    const t_satObs* obs     = satObs[ii];
    8484    t_prn prn = obs->_prn;
    8585    if (prn.system() == 'E') {prn.setFlags(1);} // force I/NAV usage
     
    145145    QString    prn     = it.key();
    146146    t_satData* satData = it.value();
    147    
     147
    148148    if (cmpToT(satData) != success) {
    149149      delete satData;
     
    211211  // ------------------------
    212212  else if (satData->system() == 'R' && _opt->useSystem('R')) {
    213     if (satData->P1 != 0.0 && satData->P2 != 0.0 && 
     213    if (satData->P1 != 0.0 && satData->P2 != 0.0 &&
    214214        satData->L1 != 0.0 && satData->L2 != 0.0 ) {
    215215
     
    249249  // ------------------------
    250250  else if (satData->system() == 'E' && _opt->useSystem('E')) {
    251     if (satData->P1 != 0.0 && satData->P5 != 0.0 && 
     251    if (satData->P1 != 0.0 && satData->P5 != 0.0 &&
    252252        satData->L1 != 0.0 && satData->L5 != 0.0 ) {
    253253      double f1 = t_CST::freq(t_frequency::E1, 0);
     
    293293}
    294294
    295 // 
     295//
    296296////////////////////////////////////////////////////////////////////////////
    297297void t_pppClient::putOrbCorrections(const std::vector<t_orbCorr*>& corr) {
     
    309309}
    310310
    311 // 
     311//
    312312////////////////////////////////////////////////////////////////////////////
    313313void t_pppClient::putClkCorrections(const std::vector<t_clkCorr*>& corr) {
     
    325325}
    326326
    327 // 
     327//
    328328//////////////////////////////////////////////////////////////////////////////
    329329void t_pppClient::putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias) {
     
    335335//
    336336//////////////////////////////////////////////////////////////////////////////
     337void t_pppClient::putPhaseBiases(const std::vector<t_satPhaseBias*>& /*satPhaseBias*/) {
     338}
     339
     340//
     341//////////////////////////////////////////////////////////////////////////////
    337342void t_pppClient::putTec(const t_vTec* /*vTec*/) {
    338343}
    339344
    340 // 
     345//
    341346//////////////////////////////////////////////////////////////////////////////
    342347void t_pppClient::putEphemeris(const t_eph* eph) {
     
    362367// Satellite Position
    363368////////////////////////////////////////////////////////////////////////////
    364 t_irc t_pppClient::getSatPos(const bncTime& tt, const QString& prn, 
     369t_irc t_pppClient::getSatPos(const bncTime& tt, const QString& prn,
    365370                              ColumnVector& xc, ColumnVector& vv) {
    366371
     
    404409      satData->clk     = clkSat * t_CST::c;
    405410      return success;
    406     } 
     411    }
    407412  }
    408413
  • trunk/BNC/src/PPP_SSR_I/pppClient.h

    r7235 r7288  
    3838
    3939namespace BNC_PPP {
    40  
     40
    4141class t_pppClient : public interface_pppClient {
    4242 public:
     
    4646  void                putEphemeris(const t_eph* eph);
    4747  void                putTec(const t_vTec* vTec);
    48   void                putOrbCorrections(const std::vector<t_orbCorr*>& corr);
    49   void                putClkCorrections(const std::vector<t_clkCorr*>& corr);
    50   void                putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias);   
     48  void                putOrbCorrections(const std::vector<t_orbCorr*>& corr);
     49  void                putClkCorrections(const std::vector<t_clkCorr*>& corr);
     50  void                putCodeBiases(const std::vector<t_satCodeBias*>& satCodeBias);
     51  void                putPhaseBiases(const std::vector<t_satPhaseBias*>& satPhaseBias);
    5152  std::ostringstream& log() {return *_log;}
    5253  const t_pppOptions* opt() const {return _opt;}
     
    6162  t_pppFilter*        _filter;
    6263  t_pppUtils*         _pppUtils;
    63   std::ostringstream* _log; 
     64  std::ostringstream* _log;
    6465};
    6566
Note: See TracChangeset for help on using the changeset viewer.