Changeset 10075 in ntrip


Ignore:
Timestamp:
May 23, 2023, 1:16:35 PM (11 months ago)
Author:
stuerze
Message:

minor changes within cmbPlot script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/scripts/cmbPlot.pl

    r10034 r10075  
    182182                                     timeaxis => 'x',
    183183                                     xtics    => { labelfmt => '%H:%M', rotate => '-270' },
    184                                      legend => { position => "outside right", },
     184                                     legend => { position => "outside below", },
    185185                                     grid   => 'on',
    186186    );
     
    234234        timeaxis => 'x',
    235235        xtics    => { labelfmt => '%H:%M', rotate => '-270', },
    236         legend => { position => "outside right", },
     236        legend => { position => "outside below", },
    237237        grid   => 'on',
    238238    );
     
    289289                timeaxis => 'x',
    290290                xtics    => { labelfmt => '%H:%M', rotate => '-270' },
    291                 legend => { position => "outside right", },
     291                legend   => { position => "outside below", },
    292292                grid   => 'on',
    293293            );
     
    342342        timeaxis => 'x',
    343343        xtics    => { labelfmt => '%H:%M', rotate => '-270' },
    344         legend => { position => "outside right", },
     344        legend => { position => "outside below", },
    345345        grid   => 'on',
    346346    );
    347 
    348347    # SATELLITE
    349348    foreach my $key_ac ( sort keys %{ $OFFSET_AC{$key_sys} } ) {
     
    355354                                                    style   => " linespoints ",
    356355        );
    357 
    358356        push ( @datasets, $dataset );
    359357    }
     
    369367    $png->image( $pdf->image_png($pngName), $x, $y, $width, $height );
    370368}
    371 
    372369######### RES #####################
    373370print "Plot RES ...\n";
     
    384381    $yrange = 0.1;
    385382}
    386 
    387383# AC
    388384foreach my $key_ac ( sort keys %RES ) {    #print "$key_ac \n";
    389                                            #SYSTEM
     385    #SYSTEM
    390386    foreach my $key_sys ( sort keys %{ $RES{$key_ac} } ) {
    391387        my @datasets;                      # init datasets
     
    400396                                         timeaxis => 'x',
    401397                                         xtics    => { labelfmt => '%H:%M', rotate => '-270', },
    402                                          legend => { position => "outside right", },
    403                                          grid   => 'on',
     398                                         legend   => { position => "outside below", },
     399                                         grid     => 'on',
    404400        );
    405 
    406401        # SATELLITE
    407402        foreach my $key_sat ( sort keys %{ $RES{$key_ac}{$key_sys} } ) {
     
    431426$pdf->save();
    432427$pdf->end();
    433 #system ("rm $inputDir/*png");
     428system ("rm $inputDir/*png");
    434429system("evince $inputDir/$pdf_name&");
    435430
Note: See TracChangeset for help on using the changeset viewer.