Changeset 6920 in ntrip
- Timestamp:
- Jun 18, 2015, 5:36:23 PM (9 years ago)
- Location:
- trunk/BNC/src/PPP_SSR_I
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP_SSR_I/pppClient.cpp
r6882 r6920 265 265 const t_ephGlo* ephGlo = dynamic_cast<const t_ephGlo*>(eph); 266 266 const t_ephGal* ephGal = dynamic_cast<const t_ephGal*>(eph); 267 const t_ephBDS* ephBDS = dynamic_cast<const t_ephBDS*>(eph); 267 268 if (ephGPS) { 268 _ephUser->putNewEph(new t_ephGPS(*ephGPS), false);269 _ephUser->putNewEph(new t_ephGPS(*ephGPS), true); 269 270 } 270 271 else if (ephGlo) { 271 _ephUser->putNewEph(new t_ephGlo(*ephGlo), false);272 _ephUser->putNewEph(new t_ephGlo(*ephGlo), true); 272 273 } 273 274 else if (ephGal) { 274 _ephUser->putNewEph(new t_ephGal(*ephGal), false); 275 } 275 _ephUser->putNewEph(new t_ephGal(*ephGal), true); 276 } 277 else if (ephBDS) { 278 _ephUser->putNewEph(new t_ephBDS(*ephBDS), true); 279 } 276 280 } 277 281 -
trunk/BNC/src/PPP_SSR_I/pppFilter.cpp
r6875 r6920 611 611 else if (par->type == t_pppParam::AMB_L3) { 612 612 ++par->numEpo; 613 LOG << "\n amb " << par->prn. toAscii().data() << " = "613 LOG << "\n amb " << par->prn.mid(0,3).toAscii().data() << " = " 614 614 << setw(10) << setprecision(3) << par->xx 615 615 << " +- " << setw(6) << setprecision(3) … … 619 619 else if (par->type == t_pppParam::TROPO) { 620 620 double aprTrp = delay_saast(M_PI/2.0); 621 LOG << "\n trp = " << par->prn. toAscii().data()621 LOG << "\n trp = " << par->prn.mid(0,3).toAscii().data() 622 622 << setw(7) << setprecision(3) << aprTrp << " " 623 623 << setw(6) << setprecision(3) << showpos << par->xx << noshowpos … … 895 895 if (satData->obsIndex != 0) { 896 896 str << _time.timestr(1) 897 << " RES " << satData->prn. toAscii().data()897 << " RES " << satData->prn.mid(0,3).toAscii().data() 898 898 << (iPhase ? " L3 " : " P3 ") 899 899 << setw(9) << setprecision(4) << vv(satData->obsIndex) << endl;
Note:
See TracChangeset
for help on using the changeset viewer.