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