Changeset 2473 in ntrip for trunk/BNC/bncmodel.cpp


Ignore:
Timestamp:
May 7, 2010, 4:20:41 PM (14 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r2467 r2473  
    6666const double   sig_amb_0_GPS    =  100.0;
    6767const double   sig_amb_0_GLO    = 1000.0;
    68 const double   sig_P3           =    5.0; // was 20.0, GW
     68//const double   sig_P3           =    20.0;
    6969const double   sig_L3_GPS       =    0.02;
    7070const double   sig_L3_GLO       =    0.02;
     
    7979  index_old = 0;
    8080  xx        = 0.0;
     81
    8182}
    8283
     
    530531t_irc bncModel::update(t_epoData* epoData) {
    531532
     533  bncSettings settings;
     534  double sig_P3;
     535  sig_P3 = 5.0;
     536  if ( Qt::CheckState(settings.value("pppUsePhase").toInt()) == Qt::Checked ) {
     537    sig_P3 = settings.value("pppSigC").toDouble();
     538    if (sig_P3 < 0.3 || sig_P3 > 50.0) {
     539      sig_P3 = 5.0;
     540    }
     541  }
     542
    532543  _log.clear(); 
    533544
     
    730741  // NEU Output
    731742  // ----------
    732   bncSettings settings;
    733743  if (settings.value("pppOrigin").toString() == "X Y Z") {
    734744    double xyzRef[3];
Note: See TracChangeset for help on using the changeset viewer.