Index: trunk/BNC/src/bncwindow.cpp
===================================================================
--- trunk/BNC/src/bncwindow.cpp	(revision 6429)
+++ trunk/BNC/src/bncwindow.cpp	(revision 6430)
@@ -1073,4 +1073,8 @@
   _sp3CompFileChooser->setMaximumWidth(15*ww);
 
+  _sp3CompExclude = new QLineEdit(settings.value("sp3CompExclude").toString());
+  _sp3CompExclude->setMinimumWidth(15*ww);
+  _sp3CompExclude->setMaximumWidth(15*ww);
+
   _sp3CompLogLineEdit = new QLineEdit(settings.value("sp3CompOutLogFile").toString());
   _sp3CompLogLineEdit->setWhatsThis(tr("Specify the full path to a logfile."));
@@ -1083,4 +1087,7 @@
   sp3CompLayout->addWidget(new QLabel("Input SP3 files (full path)"),  ir, 0, Qt::AlignLeft);
   sp3CompLayout->addWidget(_sp3CompFileChooser,                        ir, 1, Qt::AlignRight);
+  ++ir;
+  sp3CompLayout->addWidget(new QLabel("Exclude Satellites"),           ir, 0, Qt::AlignLeft);
+  sp3CompLayout->addWidget(_sp3CompExclude,                            ir, 1, Qt::AlignRight);
   ++ir;
   sp3CompLayout->addWidget(new QLabel("Log File"),                     ir, 0, Qt::AlignLeft);
@@ -1683,4 +1690,5 @@
 // SP3 Comparison
   settings.setValue("sp3CompFile",       _sp3CompFileChooser->fileName());
+  settings.setValue("sp3CompExclude",    _sp3CompExclude->text());
   settings.setValue("sp3CompOutLogFile", _sp3CompLogLineEdit->text());
 // Combine Corrections
Index: trunk/BNC/src/bncwindow.h
===================================================================
--- trunk/BNC/src/bncwindow.h	(revision 6429)
+++ trunk/BNC/src/bncwindow.h	(revision 6430)
@@ -152,4 +152,5 @@
 
     qtFileChooser* _sp3CompFileChooser;
+    QLineEdit*     _sp3CompExclude;
     QLineEdit*     _sp3CompLogLineEdit;
 
Index: trunk/BNC/src/orbComp/sp3Comp.cpp
===================================================================
--- trunk/BNC/src/orbComp/sp3Comp.cpp	(revision 6429)
+++ trunk/BNC/src/orbComp/sp3Comp.cpp	(revision 6430)
@@ -72,6 +72,26 @@
 
   //// beg test
-  // _excludeSats.insert(t_prn('R', 7));
-  // _excludeSats.insert(t_prn('R', 8));
+  _excludeSats.insert(t_prn('R',  2));
+  _excludeSats.insert(t_prn('R',  3));
+  _excludeSats.insert(t_prn('R',  4));
+  _excludeSats.insert(t_prn('R',  5));
+  _excludeSats.insert(t_prn('R',  6));
+  _excludeSats.insert(t_prn('R',  7));
+  _excludeSats.insert(t_prn('R',  9));
+  _excludeSats.insert(t_prn('R', 10));
+  _excludeSats.insert(t_prn('R', 11));
+  _excludeSats.insert(t_prn('R', 12));
+  _excludeSats.insert(t_prn('R', 13));
+  _excludeSats.insert(t_prn('R', 14));
+  _excludeSats.insert(t_prn('R', 15));
+  _excludeSats.insert(t_prn('R', 16));
+  _excludeSats.insert(t_prn('R', 17));
+  _excludeSats.insert(t_prn('R', 18));
+  _excludeSats.insert(t_prn('R', 19));
+  _excludeSats.insert(t_prn('R', 20));
+  _excludeSats.insert(t_prn('R', 21));
+  _excludeSats.insert(t_prn('R', 22));
+  _excludeSats.insert(t_prn('R', 23));
+  _excludeSats.insert(t_prn('R', 24));
   //// end test
 }
