Changeset 9924 in ntrip for trunk


Ignore:
Timestamp:
Nov 30, 2022, 11:35:43 AM (17 months ago)
Author:
stuerze
Message:

temp changes for test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncephuser.cpp

    r9852 r9924  
    190190    return;
    191191  }
     192  cout << "\n" << eph->prn().toString().c_str() << " ";
    192193
    193194  // Check whether the epoch is too far away the current time
     
    195196  if (realTime) {
    196197    if (outDatedBcep(eph)) {
    197       eph->setCheckState(t_eph::outdated);
     198      eph->setCheckState(t_eph::outdated); cout << " Outdated ";
    198199      return;
    199200    }
     
    203204  // -------------------
    204205  if (eph->isUnhealthy()) {
    205     eph->setCheckState(t_eph::unhealthy);
     206    eph->setCheckState(t_eph::unhealthy);cout << " Unhealthy ";
    206207    return;
    207208  }
     
    212213  ColumnVector vv(3);
    213214  if (eph->getCrd(eph->TOC(), xc, vv, false) != success) {
    214     eph->setCheckState(t_eph::bad);
     215    eph->setCheckState(t_eph::bad); cout << "eph->getCrd() != success: bad ";
    215216    return;
    216217  }
     
    220221  const double MAXDIST = 6.e7;
    221222  if (rr < MINDIST || rr > MAXDIST || std::isnan(rr)) {
    222     eph->setCheckState(t_eph::bad);
     223    eph->setCheckState(t_eph::bad); cout << " eph MIN/MAXDIST: bad ";
    223224    return;
    224225  }
     
    243244    ColumnVector vvL(3);
    244245    if (ephL->getCrd(eph->TOC(), xcL, vvL, false) != success) {
    245       eph->setCheckState(t_eph::bad);
     246      eph->setCheckState(t_eph::bad); cout << " ephL->getCrd()  != success: bad " ;
    246247      return;
    247248    }
Note: See TracChangeset for help on using the changeset viewer.