Changeset 10385 in ntrip for trunk/BNC/scripts
- Timestamp:
- Mar 12, 2024, 10:29:47 AM (9 months ago)
- Location:
- trunk/BNC/scripts
- Files:
-
- 2 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",
Note:
See TracChangeset
for help on using the changeset viewer.