Changeset 6018 in ntrip


Ignore:
Timestamp:
Aug 21, 2014, 9:02:57 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppInclude.h

    r6017 r6018  
    3838 public:
    3939  t_frqObs() {
     40    _freqType        = t_frequency::dummy;
    4041    _freq            = 0.0;
    4142    _code            = 0.0;         
     
    5152    _biasJumpCounter = 0;
    5253  }
    53   std::string _rnxType2ch;
    54   double      _freq;
    55   double      _code;         
    56   bool        _codeValid;     
    57   double      _phase;         
    58   bool        _phaseValid;   
    59   double      _doppler;       
    60   bool        _dopplerValid; 
    61   double      _snr;           
    62   bool        _snrValid;     
    63   bool        _slip;         
    64   int         _slipCounter;   
    65   int         _biasJumpCounter;
     54  std::string       _rnxType2ch;
     55  t_frequency::type _freqType;
     56  double            _freq;
     57  double            _code;         
     58  bool              _codeValid;     
     59  double            _phase;         
     60  bool              _phaseValid;   
     61  double            _doppler;       
     62  bool              _dopplerValid; 
     63  double            _snr;           
     64  bool              _snrValid;     
     65  bool              _slip;         
     66  int               _slipCounter;   
     67  int               _biasJumpCounter;
    6668};
    6769
  • trunk/BNC/src/PPP/pppSatObs.cpp

    r6017 r6018  
    9595          if (obs->_rnxType2ch == obsType && obs->_codeValid && obs->_phaseValid) {
    9696            _obs[iFreq] = new t_frqObs(*obs);
     97            _obs[iFreq]->_freqType = t_frequency::type(iFreq);
    9798          }
    9899        }
  • trunk/BNC/src/PPP/pppSatObs.h

    r6017 r6018  
    1616  t_pppSatObs(const t_satObs& satObs);
    1717  ~t_pppSatObs();
     18  bool                isValid() const;
    1819  const t_prn&        prn() const {return _prn;}
    1920  const ColumnVector& xc() const {return _xcSat;}
     
    2829  bool                modelSet() const {return _model._set;}
    2930  void                printModel() const;
    30   double              lc(t_lc::type tLC, double L1, double L2,
    31                          double C1, double C2, ColumnVector* coeff = 0) const;
     31  double              lc(t_lc::type tLC);
    3232  double              lambda(t_lc::type tLC) const;
    3333  double              sigma(t_lc::type tLC) const;
Note: See TracChangeset for help on using the changeset viewer.