Changeset 6430 in ntrip


Ignore:
Timestamp:
Dec 25, 2014, 10:20:34 AM (9 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r6411 r6430  
    10731073  _sp3CompFileChooser->setMaximumWidth(15*ww);
    10741074
     1075  _sp3CompExclude = new QLineEdit(settings.value("sp3CompExclude").toString());
     1076  _sp3CompExclude->setMinimumWidth(15*ww);
     1077  _sp3CompExclude->setMaximumWidth(15*ww);
     1078
    10751079  _sp3CompLogLineEdit = new QLineEdit(settings.value("sp3CompOutLogFile").toString());
    10761080  _sp3CompLogLineEdit->setWhatsThis(tr("Specify the full path to a logfile."));
     
    10831087  sp3CompLayout->addWidget(new QLabel("Input SP3 files (full path)"),  ir, 0, Qt::AlignLeft);
    10841088  sp3CompLayout->addWidget(_sp3CompFileChooser,                        ir, 1, Qt::AlignRight);
     1089  ++ir;
     1090  sp3CompLayout->addWidget(new QLabel("Exclude Satellites"),           ir, 0, Qt::AlignLeft);
     1091  sp3CompLayout->addWidget(_sp3CompExclude,                            ir, 1, Qt::AlignRight);
    10851092  ++ir;
    10861093  sp3CompLayout->addWidget(new QLabel("Log File"),                     ir, 0, Qt::AlignLeft);
     
    16831690// SP3 Comparison
    16841691  settings.setValue("sp3CompFile",       _sp3CompFileChooser->fileName());
     1692  settings.setValue("sp3CompExclude",    _sp3CompExclude->text());
    16851693  settings.setValue("sp3CompOutLogFile", _sp3CompLogLineEdit->text());
    16861694// Combine Corrections
  • trunk/BNC/src/bncwindow.h

    r6411 r6430  
    152152
    153153    qtFileChooser* _sp3CompFileChooser;
     154    QLineEdit*     _sp3CompExclude;
    154155    QLineEdit*     _sp3CompLogLineEdit;
    155156
  • trunk/BNC/src/orbComp/sp3Comp.cpp

    r6429 r6430  
    7272
    7373  //// beg test
    74   // _excludeSats.insert(t_prn('R', 7));
    75   // _excludeSats.insert(t_prn('R', 8));
     74  _excludeSats.insert(t_prn('R',  2));
     75  _excludeSats.insert(t_prn('R',  3));
     76  _excludeSats.insert(t_prn('R',  4));
     77  _excludeSats.insert(t_prn('R',  5));
     78  _excludeSats.insert(t_prn('R',  6));
     79  _excludeSats.insert(t_prn('R',  7));
     80  _excludeSats.insert(t_prn('R',  9));
     81  _excludeSats.insert(t_prn('R', 10));
     82  _excludeSats.insert(t_prn('R', 11));
     83  _excludeSats.insert(t_prn('R', 12));
     84  _excludeSats.insert(t_prn('R', 13));
     85  _excludeSats.insert(t_prn('R', 14));
     86  _excludeSats.insert(t_prn('R', 15));
     87  _excludeSats.insert(t_prn('R', 16));
     88  _excludeSats.insert(t_prn('R', 17));
     89  _excludeSats.insert(t_prn('R', 18));
     90  _excludeSats.insert(t_prn('R', 19));
     91  _excludeSats.insert(t_prn('R', 20));
     92  _excludeSats.insert(t_prn('R', 21));
     93  _excludeSats.insert(t_prn('R', 22));
     94  _excludeSats.insert(t_prn('R', 23));
     95  _excludeSats.insert(t_prn('R', 24));
    7696  //// end test
    7797}
Note: See TracChangeset for help on using the changeset viewer.