Changeset 4357 in ntrip
- Timestamp:
- Jun 24, 2012, 6:57:09 PM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/graphwin.h
r4356 r4357 38 38 t_colorMap() : QwtLinearColorMap(Qt::darkBlue, Qt::yellow) { 39 39 addColorStop(0.05, Qt::blue); 40 //addColorStop(0.30, Qt::cyan);41 //addColorStop(0.60, Qt::green);42 addColorStop( 9.98, Qt::red);40 addColorStop(0.30, Qt::cyan); 41 addColorStop(0.60, Qt::green); 42 addColorStop(0.98, Qt::red); 43 43 } 44 44 }; -
trunk/BNC/src/rinex/reqcanalyze.cpp
r4356 r4357 51 51 using namespace std; 52 52 53 const double SLIPTRESH = 5.0; // cycle-slip threshold (meters) 54 53 55 // Constructor 54 56 //////////////////////////////////////////////////////////////////////////// … … 103 105 } 104 106 } 105 106 qDebug() << maxMP; 107 if (maxMP > SLIPTRESH) { 108 } 109 107 110 108 111 QwtInterval scaleInterval(0.0, maxMP); … … 265 268 266 269 const int LENGTH = 10; // number of epochs in one chunk 267 const double SLIP = 5.0; // cycle-slip threshold268 270 269 271 int numEpo = satStat.anaObs.size(); … … 288 290 double diff1 = anaObs->_MP1 - satStat.anaObs[iEpo-1]->_MP1; 289 291 double diff2 = anaObs->_MP2 - satStat.anaObs[iEpo-1]->_MP2; 290 if (fabs(diff1) > SLIP || fabs(diff2) > SLIP) {292 if (fabs(diff1) > SLIPTRESH || fabs(diff2) > SLIPTRESH) { 291 293 slipFlag = true; 292 294 break;
Note:
See TracChangeset
for help on using the changeset viewer.