Changeset 8905 in ntrip for trunk/BNC/src/pppOptions.h


Ignore:
Timestamp:
Mar 18, 2020, 11:13:50 AM (4 years ago)
Author:
stuerze
Message:

some developments regarding PPP, not completed!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppOptions.h

    r7961 r8905  
    1111class t_pppOptions {
    1212 public:
     13  enum e_type {IF, UncombPPP, PPPRTK, DCMcodeBias, DCMphaseBias};
    1314  t_pppOptions();
    1415  ~t_pppOptions();
     
    1819  std::vector<t_lc::type>        ambLCs(char system) const;
    1920  std::vector<t_lc::type>        codeLCs(char system) const;
     21  std::vector<t_lc::type>        ionoLCs(char system) const;
    2022  bool useSystem(char system) const {return LCs(system).size() > 0;}
    2123  bool useOrbClkCorr() const;
     
    2527  }
    2628
     29  e_type                  _obsModelType;
     30  QStringList             _obsmodelTypeStr = QStringList()
     31      << "IF PPP"
     32      << "Uncombined PPP"
     33      << "PPP-RTK"
     34      << "DCM with Code Biases"
     35      << "DCM with Phase Biases";
    2736  bool                    _realTime;
    2837  std::string             _crdFile;
     
    4352  double                  _maxResC1;
    4453  double                  _maxResL1;
     54  double                  _sigmaGIMdiff;
     55  double                  _maxResGIMdiff;
    4556  bool                    _eleWgtCode;
    4657  bool                    _eleWgtPhase;
     
    5263  double                  _aprSigTrp;
    5364  double                  _noiseTrp;
     65  double                  _aprSigIon;
     66  double                  _noiseIon;
     67  double                  _aprSigCodeBias;
     68  double                  _noiseCodeBias;
     69  double                  _aprSigPhaseBias;
     70  double                  _noisePhaseBias;
    5471  int                     _nmeaPort;
    5572  double                  _aprSigAmb;
     
    5976  std::vector<t_lc::type> _LCsGalileo;
    6077  std::vector<t_lc::type> _LCsBDS;
     78  bool                    _pseudoObsIono;
     79  bool                    _refSatRequired;
    6180};
    6281
Note: See TracChangeset for help on using the changeset viewer.