Changeset 5576 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Nov 25, 2013, 5:47:57 PM (11 years ago)
- Location:
- trunk/BNC/src/RTCM3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp
r5563 r5576 82 82 memset(&_co, 0, sizeof(_co)); 83 83 memset(&_bias, 0, sizeof(_bias)); 84 85 _providerID[0] = -1; 86 _providerID[1] = -1; 87 _providerID[2] = -1; 84 88 } 85 89 … … 220 224 } 221 225 226 checkProviderID(); 227 222 228 QStringList asciiLines = corrsToASCIIlines(GPSweek, _GPSweeks, 223 229 _co, &_bias); … … 309 315 " %8.3f %8.3f %8.3f %8.3f" 310 316 " %10.5f %10.5f %10.5f %10.5f" 311 " %10.5f" 312 " %5d %2d %2d", 317 " %10.5f", 313 318 co.Sat[ii].IOD, 314 319 co.Sat[ii].Clock.DeltaA0, … … 320 325 co.Sat[ii].Orbit.DotDeltaAlongTrack, 321 326 co.Sat[ii].Orbit.DotDeltaCrossTrack, 322 co.Sat[ii].Clock.DeltaA2, 323 co.SSRProviderID, co.SSRSolutionID, co.SSRIOD); 327 co.Sat[ii].Clock.DeltaA2); 324 328 retLines << linePart+line; 325 329 } … … 332 336 line.sprintf(" %3d" 333 337 " %8.3f %8.3f %8.3f" 334 " %10.5f %10.5f %10.5f" 335 " %5d %2d %2d", 338 " %10.5f %10.5f %10.5f", 336 339 co.Sat[ii].IOD, 337 340 co.Sat[ii].Orbit.DeltaRadial, … … 340 343 co.Sat[ii].Orbit.DotDeltaRadial, 341 344 co.Sat[ii].Orbit.DotDeltaAlongTrack, 342 co.Sat[ii].Orbit.DotDeltaCrossTrack, 343 co.SSRProviderID, co.SSRSolutionID, co.SSRIOD); 345 co.Sat[ii].Orbit.DotDeltaCrossTrack); 344 346 retLines << linePart+line; 345 347 } … … 416 418 return retLines; 417 419 } 420 421 // 422 //////////////////////////////////////////////////////////////////////////// 423 void RTCM3coDecoder::checkProviderID() { 424 425 if (_co.SSRProviderID == 0 && _co.SSRSolutionID == 0 && _co.SSRIOD == 0) { 426 return; 427 } 428 429 int newProviderID[3]; 430 newProviderID[0] = _co.SSRProviderID; 431 newProviderID[1] = _co.SSRSolutionID; 432 newProviderID[2] = _co.SSRIOD; 433 434 bool alreadySet = false; 435 bool different = false; 436 437 for (unsigned ii = 0; ii < 3; ii++) { 438 if (_providerID[ii] != -1) { 439 alreadySet = true; 440 } 441 if (_providerID[ii] != newProviderID[ii]) { 442 different = true; 443 } 444 _providerID[ii] = newProviderID[ii]; 445 } 446 447 if (alreadySet && different) { 448 emit newMessage("RTCM3coDecoder: Provider Changed\n", true); 449 } 450 } -
trunk/BNC/src/RTCM3/RTCM3coDecoder.h
r5120 r5576 55 55 private: 56 56 void printLine(const QString& line, int GPSweek, double GPSweeks); 57 void checkProviderID(); 57 58 std::ofstream* _out; 58 59 QString _staID; … … 63 64 ClockOrbit _co; 64 65 Bias _bias; 66 int _providerID[3]; 65 67 }; 66 68
Note:
See TracChangeset
for help on using the changeset viewer.