Index: trunk/BNC/bncmodel.cpp
===================================================================
--- trunk/BNC/bncmodel.cpp	(revision 2286)
+++ trunk/BNC/bncmodel.cpp	(revision 2287)
@@ -54,5 +54,6 @@
 
 const unsigned MINOBS           =    4;
-const double   MINELE           = 10.0 * M_PI / 180.0;
+const double   MINELE_GPS       = 10.0 * M_PI / 180.0;
+const double   MINELE_GLO       = 10.0 * M_PI / 180.0;
 const double   MAXRES_CODE_GPS  = 10.0;
 const double   MAXRES_PHASE_GPS = 0.10;
@@ -61,5 +62,5 @@
 const double   sig_crd_p        =  100.0;
 const double   sig_clk_0        = 1000.0;
-const double   sig_trp_0        =    0.05;
+const double   sig_trp_0        =    0.01;
 const double   sig_trp_p        =    1e-7;
 const double   sig_amb_0_GPS    =  100.0;
@@ -279,5 +280,5 @@
     satData->azSat  = atan2(neu[1], neu[0]);
 
-    if (satData->eleSat < MINELE) {
+    if (satData->eleSat < MINELE_GPS) {
       delete satData;
       iGPS.remove();
@@ -303,5 +304,5 @@
     satData->azSat  = atan2(neu[1], neu[0]);
 
-    if (satData->eleSat < MINELE) {
+    if (satData->eleSat < MINELE_GLO) {
       delete satData;
       iGlo.remove();
