Changeset 9830 in ntrip


Ignore:
Timestamp:
Sep 19, 2022, 11:55:50 AM (19 months ago)
Author:
stuerze
Message:

minor changes within plot scripts

Location:
trunk/BNC/scripts
Files:
1 added
2 edited

Legend:

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

    r9692 r9830  
    195195                                                    timefmt  => '%Y-%m-%dT%H:%M:%S',                    # '%H:%M:%S',
    196196                                                    linetype => $colour,
    197                                                     style    => " lines ",
     197                                                    style    => " linespoints ",
    198198        );
    199199        push ( @datasets, $dataset );
     
    212212
    213213######### CLOCK FULL #####################
    214 print "Plot CLOCK FULL ...\n";
     214print "Plot FULL CLOCK ...\n";
    215215$page = $pdf->page();
    216216$page->mediabox('A4');
     
    247247                                                    timefmt  => '%Y-%m-%dT%H:%M:%S',                    # '%H:%M:%S',
    248248                                                    linetype => $colour,
    249                                                     style    => " lines ",
     249                                                    style    => " linespoints ",
    250250        );
    251251        push ( @datasets, $dataset );
     
    302302                                            timefmt  => '%Y-%m-%dT%H:%M:%S',                               # '%H:%M:%S',
    303303                                            linetype => $colour,
    304                                             style    => " lines ",
     304                                            style    => " linespoints ",
    305305                );
    306306                push ( @datasets, $dataset );
     
    353353                                                    title   => "$key_ac",
    354354                                                    timefmt => '%Y-%m-%dT%H:%M:%S',                    # '%H:%M:%S',
    355                                                     style   => " lines ",
     355                                                    style   => " linespoints ",
    356356        );
    357357
     
    382382$yrange = 4.0;
    383383if ( $plotType eq "KF" ) {
    384     $yrange = 0.06;
     384    $yrange = 0.1;
    385385}
    386386
     
    412412                                                   title    => "$key_sat",
    413413                                                   timefmt  => '%Y-%m-%dT%H:%M:%S',                        # '%H:%M:%S',
    414 
    415                                                    style    => " lines ",
     414                                                   style    => " linespoints ",
    416415            );
    417416            push ( @datasets, $dataset );
  • trunk/BNC/scripts/pppPlot.pl

    r9597 r9830  
    163163                                              title   => "Displacements N, RMS + -$str_rms_n m",
    164164                                              timefmt => '%s',
    165                                               style   => "dots",
     165                                              style   => "linespoints",
    166166    );
    167167    my $dataE = Chart::Gnuplot::DataSet->new(
     
    170170                                              title   => "Displacements E, RMS + -$str_rms_e m",
    171171                                              timefmt => '%s',
    172                                               style   => "dots",
     172                                              style   => "linespoints",
    173173    );
    174174    my $dataU = Chart::Gnuplot::DataSet->new(
     
    177177                                              title   => "Displacements U, RMS + -$str_rms_u m",
    178178                                              timefmt => '%s',
    179                                               style   => "dots",
     179                                              style   => "linespoints",
    180180    );
    181181    my @datasets = ( $dataN, $dataE, $dataU );
     
    199199                                                    title   => "Tropospheric Delay, RMS + -$str_rms_trp m",
    200200                                                    timefmt => '%s',
    201                                                     style   => "dots",
     201                                                    style   => "linespoints",
    202202        );
    203203        $chartTRP->plot2d($dataTRP);
     
    229229                                                     title   => "Receiver clock",
    230230                                                     timefmt => '%s',
    231                                                      style   => "dots",
     231                                                     style   => "linespoints",
    232232            );
    233233            $chartCLK->plot2d($dataset);
     
    259259                                                     title   => "GPS Receiver clock",
    260260                                                     timefmt => '%s',
    261                                                      style   => "dots",
     261                                                     style   => "linespoints",
    262262            );
    263263            $chartCLK->plot2d($dataset);
     
    289289                                                     title   => "GLONASS Receiver clock",
    290290                                                     timefmt => '%s',
    291                                                      style   => "dots",
     291                                                     style   => "linespoints",
    292292            );
    293293            $chartCLK->plot2d($dataset);
     
    319319                                                     title   => "Galileo Receiver clock",
    320320                                                     timefmt => '%s',
    321                                                      style   => "dots",
     321                                                     style   => "linespoints",
    322322            );
    323323            $chartCLK->plot2d($dataset);
     
    350350                                                     title   => "BDS Receiver clock",
    351351                                                     timefmt => '%s',
    352                                                      style   => "dots",
     352                                                     style   => "linespoints",
    353353            );
    354354            $chartCLK->plot2d($dataset);
     
    382382                                                         title   => "Offset GPS - GLONASS",
    383383                                                         timefmt => '%s',
    384                                                          style   => "dots",
     384                                                         style   => "linespoints",
    385385                );
    386386                $chartOGR->plot2d($dataset);    #system ("display $pngName&");
     
    415415                                                         title   => "Offset GPS - Galileo",
    416416                                                         timefmt => '%s',
    417                                                          style   => "dots",
     417                                                         style   => "linespoints",
    418418                );
    419419                $chartOGE->plot2d($dataset);    #system ("display $pngName&");
     
    448448                                                         title   => "Offset GPS - BDS",
    449449                                                         timefmt => '%s',
    450                                                          style   => "dots",
     450                                                         style   => "linespoints",
    451451                );
    452452                $chartOGC->plot2d($dataset);    #system ("display $pngName&");
     
    497497                    timefmt => '%s',
    498498
    499                     #style   => "dots",
    500                     style => "dots",
     499                    #style   => "linespoints",
     500                    style => "linespoints",
    501501                );
    502502                push ( @datasets, $dataset );
     
    572572                        title => "$key_sat",
    573573                        timefmt => '%s',
    574                         style   => "dots",
    575 
    576                         #style   => "dots",
     574                        style   => "linespoints",
     575
     576                        #style   => "linespoints",
    577577                    );
    578578                    push ( @datasets_amb, $dataset_amb );
     
    585585                        timefmt => '%s',
    586586
    587                         #style   => "dots",
    588                         style => "dots",
     587                        #style   => "linespoints",
     588                        style => "linespoints",
    589589                    );
    590590                    push ( @datasets_epo, $dataset_epo );
     
    667667                        timefmt => '%s',
    668668
    669                         #style   => "dots",
    670                         style => "dots",
     669                        #style   => "linespoints",
     670                        style => "linespoints",
    671671                    );
    672672                    push ( @datasets, $dataset );
     
    715715                        timefmt => '%s',
    716716
    717                         #style   => " dots ",
    718                         style => "dots",
     717                        #style   => " linespoints ",
     718                        style => "linespoints",
    719719                    );
    720720                    push ( @datasets, $dataset );
     
    765765                                                    title   => "$key_sys",
    766766                                                    timefmt => '%s',
    767                                                     style   => "dots",
     767                                                    style   => "linespoints",
    768768                      );
    769769                    push ( @datasets, $dataset );
Note: See TracChangeset for help on using the changeset viewer.