Changeset 7989 in ntrip for branches


Ignore:
Timestamp:
Jul 26, 2016, 2:20:23 PM (8 years ago)
Author:
stuerze
Message:

reset of coordinate parameter is added to consider gaps

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/PPP/pppParlist.cpp

    r7626 r7989  
    215215    }
    216216
    217     else if (par->type() == t_pppParam::amb) {
    218       if (par->lastObsTime().valid() && (epoTime - par->lastObsTime() > 120.0)) {
     217    else if (par->type() == t_pppParam::amb ||
     218             par->type() == t_pppParam::crdX ||
     219             par->type() == t_pppParam::crdY ||
     220             par->type() == t_pppParam::crdZ) {
     221      if (par->lastObsTime().valid() && (epoTime - par->lastObsTime() > 60.0)) {
    219222        remove = true;
    220223      }
    221224    }
    222    /*
    223     * TODO; check this condition because it is the same as in line 217 and therefore always false
    224     else if (par->type() == t_pppParam::amb) {
    225       if (par->lastObsTime().valid() && (epoTime - par->lastObsTime() > 3600.0)) {
    226         remove = true;
    227       }
    228     }*/
    229225
    230226    if (remove) {
Note: See TracChangeset for help on using the changeset viewer.