Changeset 10385 in ntrip
- Timestamp:
- Mar 12, 2024, 10:29:47 AM (8 months ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/scripts/Bnc.pm
r10383 r10385 589 589 } 590 590 elsif ( $ln =~ /\bOFF_GLO\b/ ) { # 2015-08... OFF_GLO 52.6806 -3.8042 +- 9.0077 591 push ( @EPOCH_OFF_GLO, $epochSec );591 # push ( @EPOCH_OFF_GLO, $epochSec ); 592 592 push ( @OFF_GLO, $hlp[2] + $hlp[3] ); 593 593 } 594 594 elsif ( $ln =~ /\bOFF_GAL\b/ ) { # 2015-08... OFF_GAL 52.6806 -3.8042 +- 9.0077 595 push ( @EPOCH_OFF_GAL, $epochSec );595 # push ( @EPOCH_OFF_GAL, $epochSec ); 596 596 push ( @OFF_GAL, $hlp[2] + $hlp[3] ); 597 597 } 598 598 elsif ( $ln =~ /\bOFF_BDS\b/ ) { # 2015-08... OFF_BDS 52.6806 -3.8042 +- 9.0077 599 push ( @EPOCH_OFF_BDS, $epochSec );599 # push ( @EPOCH_OFF_BDS, $epochSec ); 600 600 push ( @OFF_BDS, $hlp[2] + $hlp[3] ); 601 601 } … … 624 624 if ( $nof_epochs != scalar @TRP ) { LOGDIE "number of epochs and TRP not equal\n" } 625 625 if ( @CLK && scalar @EPOCH_CLK != scalar @CLK ) { LOGDIE "number of epochs and CLK not equal\n" } 626 if ( @OFF_GLO && scalar @EPOCH_OFF_GLO != scalar @OFF_GLO ) { LOGDIE "number of epochs and OFF_GLO not equal\n" }627 if ( @OFF_GAL && scalar @EPOCH_OFF_GAL != scalar @OFF_GAL ) { LOGDIE "number of epochs and OFF_GAL not equal\n" }628 if ( @OFF_BDS && scalar @EPOCH_OFF_BDS != scalar @OFF_BDS ) { LOGDIE "number of epochs and OFF_BDS not equal\n" }626 # if ( @OFF_GLO && scalar @EPOCH_OFF_GLO != scalar @OFF_GLO ) { LOGDIE "number of epochs and OFF_GLO not equal\n" } 627 # if ( @OFF_GAL && scalar @EPOCH_OFF_GAL != scalar @OFF_GAL ) { LOGDIE "number of epochs and OFF_GAL not equal\n" } 628 # if ( @OFF_BDS && scalar @EPOCH_OFF_BDS != scalar @OFF_BDS ) { LOGDIE "number of epochs and OFF_BDS not equal\n" } 629 629 630 630 if ( !$station ) { WARN "could not grep stationname from file: $file\n" } -
trunk/BNC/scripts/pppPlot.pl
r10383 r10385 257 257 258 258 $dataset = Chart::Gnuplot::DataSet->new( 259 xdata => $EPOCH_OFF_GLO, 259 #xdata => $EPOCH_OFF_GLO, 260 xdata => $EPOCH, 260 261 ydata => $file->{'OFF_GLO'}, 261 262 title => "Receiver Offset GLONASS", … … 290 291 291 292 $dataset = Chart::Gnuplot::DataSet->new( 292 xdata => $EPOCH_OFF_GAL, 293 #xdata => $EPOCH_OFF_GAL, 294 xdata => $EPOCH, 293 295 ydata => $file->{'OFF_GAL'}, 294 296 title => "Receiver Offset Galileo", … … 323 325 324 326 $dataset = Chart::Gnuplot::DataSet->new( 325 xdata => $EPOCH_OFF_BDS, 327 #xdata => $EPOCH_OFF_BDS, 328 xdata => $EPOCH, 326 329 ydata => $file->{'OFF_BDS'}, 327 330 title => "Receiver Offset Beidou", -
trunk/BNC/src/PPP/pppFilter.cpp
r10384 r10385 100 100 } 101 101 } 102 LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num << endl; 102 LOG << epoTimeStr << " SATNUM " << sys << ' ' << right << setw(2) << num; 103 if (num < OPT->_minObs) { 104 LOG << " < OPT->_minObs " << right << setw(2) << OPT->_minObs << endl; 105 continue; 106 } 107 LOG << endl; 103 108 if (processSystem(OPT->LCs(sys), obsVector, epoch->pseudoObsIono()) != success) { 104 109 LOG << "t_pppFilter::processSystem() != success: " << sys << endl; … … 347 352 348 353 // Check Pre-Fit Residuals 349 / /-----------------------354 /* ----------------------- 350 355 else { 351 356 ColumnVector AA(params.size()); … … 362 367 resetAmb(obs->prn(), obsVector, tLC); 363 368 } 364 } 369 }*/ 365 370 } 366 371 }
Note:
See TracChangeset
for help on using the changeset viewer.