Changeset 5712 in ntrip


Ignore:
Timestamp:
Jul 31, 2014, 11:44:57 AM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/options.cpp

    r5708 r5712  
    5050}
    5151
    52 //
    53 //////////////////////////////////////////////////////////////////////////////
    54 bool t_options::dualFreqRequired() const {
    55   return true;
    56 }
    57 
    58 //
    59 //////////////////////////////////////////////////////////////////////////////
    60 bool t_options::corrRequired() const {
    61   return true;
    62 }
    63 
    64 //
    65 //////////////////////////////////////////////////////////////////////////////
    66 bool t_options::biasRequired() const {
    67   return true;
    68 }
    69 
  • trunk/BNC/src/PPP/options.h

    r5711 r5712  
    1313  t_options();
    1414  ~t_options() {};
     15  bool         _realTime;
     16  std::string  _roverName;     
     17  double       _sigCrd[3];
     18  double       _noiseCrd[3];
     19  double       _sigTropo;
     20  double       _noiseTropo;
     21  std::string  _corrMount;
     22  std::string  _rinexObs;
     23  std::string  _rinexNav;
     24  std::string  _corrFile;
     25  std::string  _crdFile;
     26  std::string  _antexFile;
    1527
    16   const std::string&  roverName()     const {return _roverName;}
    17   const ColumnVector& xyzAprRover()   const {return _xyzAprRover;}
    18   const ColumnVector& ellAprRover()   const {return _ellAprRover;}
    19 
    20   bool xyzAprRoverSet() const {
    21     return (_xyzAprRover[0] != 0.0 || _xyzAprRover[1] != 0.0 || _xyzAprRover[2] != 0.0);
    22   }
    23 
    24   const ColumnVector& neuEccRover()   const {return _neuEccRover;}
    25   const std::string&  antNameRover()  const {return _antNameRover;}
    26   const std::string&  antexFileName() const {return _antexFileName;}
    27   bool                dualFreqRequired() const;
    28   bool                corrRequired() const;
    29   bool                biasRequired() const;
    30   int                 minobs() const {return _minobs;}
    31   double              minEle() const {return _minEle;}
    32   double              maxResPhase() const {return _maxResPhase;}
    33   double              maxResCode() const {return _maxResCode;}
    34   double              sigmaPhase() const {return _sigmaPhase;}
    35   double              sigmaCode() const {return _sigmaCode;}
    36   double              sigmaCrd() const {return _sigmaCrd;}
    37   bool                estTropo() const {return _estTropo;}
    38   double              sigmaTropo() const {return _sigmaTropo;}
    39   double              noiseTropo() const {return _noiseTropo;}
    40   bool                eleWgtPhase() const {return _eleWgtPhase;}
    41   bool                eleWgtCode() const {return _eleWgtCode;}
    42   const std::vector<t_lc::type>& LCs() const {return _LCs;}
    43 
    44  private:
    45   std::string  _roverName;     
    4628  ColumnVector _xyzAprRover;
    4729  ColumnVector _ellAprRover;
     
    5941  double       _sigmaPhase;
    6042  double       _sigmaCode;
    61   double       _sigmaCrd;
    6243  bool         _estTropo;
    63   double       _sigmaTropo;
    64   double       _noiseTropo;
    6544  bool         _estIono;
    6645  double       _sigmaIono;
  • trunk/BNC/src/src.pri

    r5708 r5712  
    5959          RTCM3/ephemeris.h RTCM3/timeutils.h                         \
    6060          GPSS/gpssDecoder.h GPSS/hassDecoder.h                       \
    61           PPP/pppwidgets.h PPP/options.h
     61          PPP/pppwidgets.h PPP/options.h PPP/pppMain.h
    6262
    6363HEADERS       += serial/qextserialbase.h serial/qextserialport.h
     
    8888          RTCM3/ephemeris.cpp RTCM3/timeutils.cpp                     \
    8989          GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp                   \
    90           PPP/pppwidgets.cpp PPP/options.cpp
     90          PPP/pppwidgets.cpp PPP/options.cpp PPP/pppMain.cpp
    9191
    9292SOURCES       += serial/qextserialbase.cpp serial/qextserialport.cpp
Note: See TracChangeset for help on using the changeset viewer.