Changeset 10385 in ntrip for trunk/BNC/scripts


Ignore:
Timestamp:
Mar 12, 2024, 10:29:47 AM (9 months ago)
Author:
stuerze
Message:

changes regarding PPP

Location:
trunk/BNC/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/scripts/Bnc.pm

    r10383 r10385  
    589589        }
    590590        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 );
    592592            push ( @OFF_GLO,       $hlp[2] + $hlp[3] );
    593593        }
    594594        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 );
    596596            push ( @OFF_GAL,       $hlp[2] + $hlp[3] );
    597597        }
    598598        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 );
    600600            push ( @OFF_BDS,       $hlp[2] + $hlp[3] );
    601601        }
     
    624624    if ( $nof_epochs != scalar @TRP )                            { LOGDIE "number of epochs and TRP not equal\n" }
    625625    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" }
    629629
    630630    if ( !$station ) { WARN "could not grep stationname from file: $file\n" }
  • trunk/BNC/scripts/pppPlot.pl

    r10383 r10385  
    257257
    258258                $dataset = Chart::Gnuplot::DataSet->new(
    259                                                          xdata   => $EPOCH_OFF_GLO,
     259                                                         #xdata   => $EPOCH_OFF_GLO,
     260                                                         xdata   => $EPOCH,
    260261                                                         ydata   => $file->{'OFF_GLO'},
    261262                                                         title   => "Receiver Offset GLONASS",
     
    290291
    291292                $dataset = Chart::Gnuplot::DataSet->new(
    292                                                          xdata   => $EPOCH_OFF_GAL,
     293                                                         #xdata   => $EPOCH_OFF_GAL,
     294                                                         xdata   => $EPOCH,
    293295                                                         ydata   => $file->{'OFF_GAL'},
    294296                                                         title   => "Receiver Offset Galileo",
     
    323325
    324326                $dataset = Chart::Gnuplot::DataSet->new(
    325                                                          xdata   => $EPOCH_OFF_BDS,
     327                                                         #xdata   => $EPOCH_OFF_BDS,
     328                                                         xdata   => $EPOCH,
    326329                                                         ydata   => $file->{'OFF_BDS'},
    327330                                                         title   => "Receiver Offset Beidou",
Note: See TracChangeset for help on using the changeset viewer.