Changeset 6430 in ntrip
- Timestamp:
- Dec 25, 2014, 10:20:34 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r6411 r6430 1073 1073 _sp3CompFileChooser->setMaximumWidth(15*ww); 1074 1074 1075 _sp3CompExclude = new QLineEdit(settings.value("sp3CompExclude").toString()); 1076 _sp3CompExclude->setMinimumWidth(15*ww); 1077 _sp3CompExclude->setMaximumWidth(15*ww); 1078 1075 1079 _sp3CompLogLineEdit = new QLineEdit(settings.value("sp3CompOutLogFile").toString()); 1076 1080 _sp3CompLogLineEdit->setWhatsThis(tr("Specify the full path to a logfile.")); … … 1083 1087 sp3CompLayout->addWidget(new QLabel("Input SP3 files (full path)"), ir, 0, Qt::AlignLeft); 1084 1088 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); 1085 1092 ++ir; 1086 1093 sp3CompLayout->addWidget(new QLabel("Log File"), ir, 0, Qt::AlignLeft); … … 1683 1690 // SP3 Comparison 1684 1691 settings.setValue("sp3CompFile", _sp3CompFileChooser->fileName()); 1692 settings.setValue("sp3CompExclude", _sp3CompExclude->text()); 1685 1693 settings.setValue("sp3CompOutLogFile", _sp3CompLogLineEdit->text()); 1686 1694 // Combine Corrections -
trunk/BNC/src/bncwindow.h
r6411 r6430 152 152 153 153 qtFileChooser* _sp3CompFileChooser; 154 QLineEdit* _sp3CompExclude; 154 155 QLineEdit* _sp3CompLogLineEdit; 155 156 -
trunk/BNC/src/orbComp/sp3Comp.cpp
r6429 r6430 72 72 73 73 //// 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)); 76 96 //// end test 77 97 }
Note:
See TracChangeset
for help on using the changeset viewer.