Changeset 5715 in ntrip


Ignore:
Timestamp:
Jul 31, 2014, 12:02:10 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
2 edited

Legend:

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

    r5713 r5715  
    2929  double       _sigmaL1;
    3030  double       _corrWaitTime;
     31  std::vector<t_lc::type> _lcGPS;
     32  std::vector<t_lc::type> _lcGLONASS;
     33  std::vector<t_lc::type> _lcGalileo;
    3134
    3235  ColumnVector _xyzAprRover;
     
    3538  std::string  _antNameRover; 
    3639  int          _minobs;
    37   bool         _useGlonass;
    3840  double       _minEle;
    3941  double       _maxResC1;
  • trunk/BNC/src/PPP/pppMain.cpp

    r5714 r5715  
    117117    opt->_corrWaitTime = settings.value("PPP/corrWaitTime").toDouble();
    118118
     119    if      (settings.value("PPP/lcGPS").toString() == "P3") {
     120      opt->_lcGPS.push_back(t_lc::cIF);
     121    }
     122    else if (settings.value("PPP/lcGPS").toString() == "L3") {
     123      opt->_lcGPS.push_back(t_lc::lIF);
     124    }
     125    else if (settings.value("PPP/lcGPS").toString() == "P3&L3") {
     126      opt->_lcGPS.push_back(t_lc::cIF);
     127      opt->_lcGPS.push_back(t_lc::lIF);
     128    }
     129
     130    if      (settings.value("PPP/lcGLONASS").toString() == "P3") {
     131      opt->_lcGLONASS.push_back(t_lc::cIF);
     132    }
     133    else if (settings.value("PPP/lcGLONASS").toString() == "L3") {
     134      opt->_lcGLONASS.push_back(t_lc::lIF);
     135    }
     136    else if (settings.value("PPP/lcGLONASS").toString() == "P3&L3") {
     137      opt->_lcGLONASS.push_back(t_lc::cIF);
     138      opt->_lcGLONASS.push_back(t_lc::lIF);
     139    }
     140
     141    if      (settings.value("PPP/lcGalileo").toString() == "P3") {
     142      opt->_lcGalileo.push_back(t_lc::cIF);
     143    }
     144    else if (settings.value("PPP/lcGalileo").toString() == "L3") {
     145      opt->_lcGalileo.push_back(t_lc::lIF);
     146    }
     147    else if (settings.value("PPP/lcGalileo").toString() == "P3&L3") {
     148      opt->_lcGalileo.push_back(t_lc::cIF);
     149      opt->_lcGalileo.push_back(t_lc::lIF);
     150    }
     151
    119152    _options << opt;
    120153  }
Note: See TracChangeset for help on using the changeset viewer.