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


Ignore:
Timestamp:
Feb 9, 2010, 5:09:49 PM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncmodel.cpp

    r2286 r2287  
    5454
    5555const unsigned MINOBS           =    4;
    56 const double   MINELE           = 10.0 * M_PI / 180.0;
     56const double   MINELE_GPS       = 10.0 * M_PI / 180.0;
     57const double   MINELE_GLO       = 10.0 * M_PI / 180.0;
    5758const double   MAXRES_CODE_GPS  = 10.0;
    5859const double   MAXRES_PHASE_GPS = 0.10;
     
    6162const double   sig_crd_p        =  100.0;
    6263const double   sig_clk_0        = 1000.0;
    63 const double   sig_trp_0        =    0.05;
     64const double   sig_trp_0        =    0.01;
    6465const double   sig_trp_p        =    1e-7;
    6566const double   sig_amb_0_GPS    =  100.0;
     
    279280    satData->azSat  = atan2(neu[1], neu[0]);
    280281
    281     if (satData->eleSat < MINELE) {
     282    if (satData->eleSat < MINELE_GPS) {
    282283      delete satData;
    283284      iGPS.remove();
     
    303304    satData->azSat  = atan2(neu[1], neu[0]);
    304305
    305     if (satData->eleSat < MINELE) {
     306    if (satData->eleSat < MINELE_GLO) {
    306307      delete satData;
    307308      iGlo.remove();
Note: See TracChangeset for help on using the changeset viewer.