Index: trunk/BNC/scripts/cmbPlot.pl
===================================================================
--- trunk/BNC/scripts/cmbPlot.pl	(revision 9747)
+++ trunk/BNC/scripts/cmbPlot.pl	(revision 9830)
@@ -195,5 +195,5 @@
                                                     timefmt  => '%Y-%m-%dT%H:%M:%S',                    # '%H:%M:%S',
                                                     linetype => $colour,
-                                                    style    => " lines ",
+                                                    style    => " linespoints ",
         );
         push ( @datasets, $dataset );
@@ -212,5 +212,5 @@
 
 ######### CLOCK FULL #####################
-print "Plot CLOCK FULL ...\n";
+print "Plot FULL CLOCK ...\n";
 $page = $pdf->page();
 $page->mediabox('A4');
@@ -247,5 +247,5 @@
                                                     timefmt  => '%Y-%m-%dT%H:%M:%S',                    # '%H:%M:%S',
                                                     linetype => $colour,
-                                                    style    => " lines ",
+                                                    style    => " linespoints ",
         );
         push ( @datasets, $dataset );
@@ -302,5 +302,5 @@
                                             timefmt  => '%Y-%m-%dT%H:%M:%S',                               # '%H:%M:%S',
                                             linetype => $colour,
-                                            style    => " lines ",
+                                            style    => " linespoints ",
                 );
                 push ( @datasets, $dataset );
@@ -353,5 +353,5 @@
                                                     title   => "$key_ac",
                                                     timefmt => '%Y-%m-%dT%H:%M:%S',                    # '%H:%M:%S',
-                                                    style   => " lines ",
+                                                    style   => " linespoints ",
         );
 
@@ -382,5 +382,5 @@
 $yrange = 4.0;
 if ( $plotType eq "KF" ) {
-    $yrange = 0.06;
+    $yrange = 0.1;
 }
 
@@ -412,6 +412,5 @@
                                                    title    => "$key_sat",
                                                    timefmt  => '%Y-%m-%dT%H:%M:%S',                        # '%H:%M:%S',
-
-                                                   style    => " lines ",
+                                                   style    => " linespoints ",
             );
             push ( @datasets, $dataset );
Index: trunk/BNC/scripts/compareSP3Plot.pl
===================================================================
--- trunk/BNC/scripts/compareSP3Plot.pl	(revision 9830)
+++ trunk/BNC/scripts/compareSP3Plot.pl	(revision 9830)
@@ -0,0 +1,312 @@
+#!/usr/bin/env perl
+# ========================================================================
+# cmbPlot.pl
+# ========================================================================
+#
+# Purpose: Script using gnuplot to plot BNC's SP3 Comparison Results
+#
+# Comment: stored values:
+# To compare satellite clocks provided by the two files, BNC first converts
+# coordinate differences dX,dY,dZ into along track, out-of-plane, and radial
+# components.
+# It then corrects the clock differences for the radial components of
+# coordinate differences. RMS values of clock differences are
+# finally calculated after introducing
+# - at first one offset 'per epoch for all satellites' and
+# - secondly one offset 'per satellite for all epochs'.
+# ========================================================================
+# Uses
+use strict;
+use warnings;
+use Getopt::Long;
+use Chart::Gnuplot;
+use Data::Dumper qw(Dumper);
+use diagnostics;
+use File::Basename;
+use Date::Manip;
+use lib $ENV{'BKG_PERL_LIB'};
+use Misc::Gps_Date;
+use List::MoreUtils qw( minmax );
+use experimental 'smartmatch';
+
+# -----------------------------------------------------------------------------
+# required to create a pdf
+# -----------------------------------------------------------------------------
+use PDF::API2;
+use constant {mm   => 25.4 / 72, inch => 1 / 72,pt   => 1,
+};# There are 72 postscript points in an inch and there are 25.4 millimeters in an inch.
+# -----------------------------------------------------------------------------
+# Options
+# -----------------------------------------------------------------------------
+# init options
+my $help      = 0;
+my @plotTypes = ();
+my @logFiles  = ();
+# read options from command line
+GetOptions(
+    'help'        => \$help,
+    'plotTypes=s' => \@plotTypes,
+    'logFiles=s'  => \@logFiles,
+);
+help() if $help;
+@plotTypes = qw(NEU) unless (@plotTypes);# Default values
+@plotTypes = map {uc} split ( /[, ]/, join ( ',', @plotTypes ) );# Reformat options
+@logFiles  = split ( /[, ]/, join ( ',', @logFiles ) );
+unless (@logFiles) {
+    print "ERROR: logfiles missing\n";
+    exit;
+}
+print "       plotTpes: @plotTypes\n       logfiles: @logFiles\n\n";
+# -----------------------------------------------------------------------------
+# generate data sets for gnuplot
+# -----------------------------------------------------------------------------
+my $old_epochSec = 0;
+my $epochSec = 0;
+my $epochDiff = 0;
+# for pdf generation
+my ($png, $page, $headline, $headline_text);
+my $y0 = 190/mm;
+my ($x, $y, $width, $height) = (40/mm, $y0, 130/mm, 70/mm);
+my $dy = $height+7/mm;
+# file by file ..
+foreach my $file (@logFiles) {
+    my (%COMPARISON);
+    my (@array);
+    my ($sys, $sat, $epo, $mjd, $radial, $along, $out, $drange, $clk, $clkRed);
+    # -----------------------------------------------------------------------------
+    # create pdf for plot results
+    # -----------------------------------------------------------------------------
+    my($inputFilename, $inputDir, $inputSuffix) = fileparse($file, '\..*');
+    my $pdf_name = sprintf("%s.pdf", $inputFilename);
+    my $pdf = PDF::API2->new(-file => "$inputDir$pdf_name");
+    my $font1 = $pdf->corefont('Helvetica-Bold');
+    # -----------------------------------------------------------------------------
+    # read file and save data
+    # -----------------------------------------------------------------------------
+    open ( INPUT, "<$file" ) || die $!;
+    print "Parse logfile $file ...\n";
+    while (<INPUT>) {#56985.000000 G01  0.0160 -0.0242  0.0961     0.0082 -0.0077     1
+        if ( $_ !~ /^!/) { #print "$_\n";
+            @array = split(/\s+/, $_);
+            $mjd = $array[0];
+            $epo  = gps_date("-mjd","$mjd","-o %Y-%m-%d_%H:%M:%S");
+            $sys = substr $array[1], 0, 1;
+            $sat    = $array[1];#print "$sat\n";
+            $radial = $array[2];#print "$radial\n";
+            $along  = $array[3];#print "$along\n";
+            $out    = $array[4];#print "$out\n";
+            $clk    = $array[5];#print "$clk\n";
+            $clkRed = $array[6];#print "$clkRed\n";
+            if ($clk !~ /^\.$/) {
+              push @{$COMPARISON{$sys}{$sat}{EPOCH }}, $epo;
+              push @{$COMPARISON{$sys}{$sat}{RADIAL}}, $radial;
+              push @{$COMPARISON{$sys}{$sat}{ALONG }}, $along;
+              push @{$COMPARISON{$sys}{$sat}{OUT   }}, $out;
+              push @{$COMPARISON{$sys}{$sat}{CLK   }}, $clk;
+              push @{$COMPARISON{$sys}{$sat}{CLKRED}}, $clkRed;
+            }
+        }
+    }
+    close INPUT;
+
+    # -----------------------------------------------------------------------------
+    # plot several data sets
+    # -----------------------------------------------------------------------------
+    ######### RAO #####################
+    if ("ALL" ~~ @plotTypes ) {
+        print "Plot RADIAL, ALONG TRACK and OUT OF PLANE COMPONENTS ...\n";
+        my $yrange = .6;
+        $page = $pdf->page(); $page->mediabox('A4');
+        $headline = sprintf("Orbit Differences in radial, along-track and out-of-plane component (%s)", $inputFilename);
+        $headline_text = $page->text;
+        $headline_text->font($font1, 11/pt);
+        $headline_text->translate(15/mm, 280/mm);
+        $headline_text->text($headline);
+        $y = $y0+$dy;
+        #SYSTEM
+        foreach my $key_sys (sort keys %COMPARISON) {
+            print "    for $key_sys\n";
+            my (@datasets_r, @datasets_a, @datasets_o); # init datasets
+            my $pngName_r   = sprintf ("%s_RADIAL_%s.png", $inputFilename, $key_sys);
+            my $pngName_a   = sprintf ("%s_ALONG_%s.png", $inputFilename, $key_sys);
+            my $pngName_o   = sprintf ("%s_OUT_%s.png", $inputFilename, $key_sys);
+            my $chart_r = Chart::Gnuplot->new(
+                          output => $pngName_r, terminal => 'png', title => "Radial component",
+                          ylabel => "Orbit Difference [m]", yrange => ["-$yrange", "$yrange"],
+                          xlabel => "Time [h]", timeaxis => 'x', xtics => {labelfmt => '%H:%M', rotate => '-270',},
+                          legend => { position => "outside right",},
+                          grid => 'on',);
+            my $chart_a = Chart::Gnuplot->new(
+                          output => $pngName_a, terminal => 'png', title => "Along track component",
+                          ylabel => "Orbit Difference [m]", yrange => ["-$yrange", "$yrange"],
+                          xlabel => "Time [h]", timeaxis => 'x', xtics => {labelfmt => '%H:%M', rotate => '-270',},
+                          legend => { position => "outside right",},
+                          grid => 'on',);
+            my $chart_o = Chart::Gnuplot->new(
+                          output => $pngName_o, terminal => 'png', title => "Out of plane component",
+                          ylabel => "Orbit Difference [m]", yrange => ["-$yrange", "$yrange"],
+                          xlabel => "Time [h]", timeaxis => 'x', xtics => {labelfmt => '%H:%M', rotate => '-270',},
+                          legend => { position => "outside right",},
+                          grid => 'on',);
+            #SATELLITE
+            foreach my $key_sat (sort keys %{$COMPARISON{$key_sys}}) {
+                my $colour = sprintf("%d", (substr $key_sat, -2)+1);
+                #RADIAL
+                my $dataset_r = Chart::Gnuplot::DataSet->new(
+                                xdata => \@{$COMPARISON{$key_sys}{$key_sat}{EPOCH}},
+                                ydata => \@{$COMPARISON{$key_sys}{$key_sat}{RADIAL}},
+                                title => "$key_sat",
+                                timefmt => '%Y-%m-%d_%H:%M:%S',
+                                linetype => $colour,
+                                #style => " linespoints ",);
+                                style => " lines ",);
+                push (@datasets_r, $dataset_r);
+                # ALONG TRACK
+                my $dataset_a = Chart::Gnuplot::DataSet->new(
+                                xdata => \@{$COMPARISON{$key_sys}{$key_sat}{EPOCH}},
+                                ydata => \@{$COMPARISON{$key_sys}{$key_sat}{ALONG}},
+                                title => "$key_sat",
+                                timefmt => '%Y-%m-%d_%H:%M:%S',
+                                linetype => $colour,
+                                style => " lines ",);
+                push (@datasets_a, $dataset_a);
+                # OUT OF PLANE
+                my $dataset_o = Chart::Gnuplot::DataSet->new(
+                                xdata => \@{$COMPARISON{$key_sys}{$key_sat}{EPOCH}},
+                                ydata => \@{$COMPARISON{$key_sys}{$key_sat}{OUT}},
+                                title => "$key_sat",
+                                timefmt => '%Y-%m-%d_%H:%M:%S',
+                                linetype => $colour,
+                                style => " lines",);
+                push (@datasets_o, $dataset_o);
+            }
+            $chart_r->plot2d(@datasets_r);
+            $chart_a->plot2d(@datasets_a);
+            $chart_o->plot2d(@datasets_o);
+            # RADIAL
+            $y = $y - $dy;
+            if($y < 30/mm) {
+                $page = $pdf->page(); $page->mediabox('A4');
+                $y = $y0;
+            }
+            $png = $page->gfx(); die("Unable to find image file: $!") unless -e $pngName_r;
+            $png->image($pdf->image_png($pngName_r), $x, $y, $width, $height);
+            # ALONG
+            $y = $y - $dy;
+            if($y < 30/mm) {
+                $page = $pdf->page(); $page->mediabox('A4');
+                $y = $y0;
+            }
+            $png = $page->gfx(); die("Unable to find image file: $!") unless -e $pngName_a;
+            $png->image($pdf->image_png($pngName_a), $x, $y, $width, $height);
+            # OUT
+            $y = $y - $dy;
+            if($y < 30/mm) {
+                $page = $pdf->page(); $page->mediabox('A4');
+                $y = $y0;
+            }
+            $png = $page->gfx(); die("Unable to find image file: $!") unless -e $pngName_o;
+            $png->image($pdf->image_png($pngName_o), $x, $y, $width, $height);
+        }
+    }
+    ######## CLK / CLKRED #####################
+    if (("ALL" ~~ @plotTypes ) || ("CLK" ~~ @plotTypes)) {
+    	print "Plot CLOCK and CLOCK REDUCED BY RADIAL COMPONENT ...\n";
+        my $yrange = 10.0;
+        $page = $pdf->page(); $page->mediabox('A4');
+        $headline = sprintf("Clock residuals and reduced clock residuals(%s)", $inputFilename);
+        $headline_text = $page->text;
+        $headline_text->font($font1, 11/pt);
+        $headline_text->translate(15/mm, 280/mm);
+        $headline_text->text($headline);
+        $y = $y0+$dy;
+        #SYSTEM
+        foreach my $key_sys (sort keys %COMPARISON) {
+        	print "    for $key_sys\n";
+            my (@datasets_c, @datasets_r); # init datasets
+            my $pngName_c  = sprintf ("%s_CLK_%s.png", $inputFilename, $key_sys);
+            my $pngName_r  = sprintf ("%s_CLKRED_%s.png", $inputFilename, $key_sys);
+            my $chart_c = Chart::Gnuplot->new(
+                          output => $pngName_c, terminal => 'png',title => "Clock only",
+                          ylabel => "Clock Residuals [m]",# yrange => ["-$yrange", "$yrange"],
+                          xlabel => "Time [h]", timeaxis => 'x', xtics => {labelfmt => '%H:%M', rotate => '-270',},
+                          legend => { position => "outside right",},
+                          grid => 'on',);
+            my $chart_r = Chart::Gnuplot->new(
+                          output => $pngName_r, terminal => 'png',title => "Clock minus radial component",
+                          ylabel => "Clock Residuals [m]", #yrange => ["-$yrange", "$yrange"],
+                          xlabel => "Time [h]", timeaxis => 'x', xtics => {labelfmt => '%H:%M', rotate => '-270',},
+                          legend => { position => "outside right",},
+                          grid => 'on',);
+            #SATELLITE
+            foreach my $key_sat (sort keys %{$COMPARISON{$key_sys}}) {
+                my $colour = sprintf("%d", (substr $key_sat, -2)+1);
+                # CLK
+                my $dataset_c = Chart::Gnuplot::DataSet->new(
+                                xdata => \@{$COMPARISON{$key_sys}{$key_sat}{EPOCH}},
+                                ydata => \@{$COMPARISON{$key_sys}{$key_sat}{CLK}},
+                                title => "$key_sat",
+                                timefmt => '%Y-%m-%d_%H:%M:%S',
+                                linetype => $colour,
+                                style => " lines ",);
+                push (@datasets_c, $dataset_c);
+                my ( $min, $max ) = minmax @{$COMPARISON{$key_sys}{$key_sat}{CLK}};
+                if ($max > 1.0) {print "$key_sat: max clk = $max\n"};
+                # CLKRED
+                my $dataset_r = Chart::Gnuplot::DataSet->new(
+                                xdata => \@{$COMPARISON{$key_sys}{$key_sat}{EPOCH}},
+                                ydata => \@{$COMPARISON{$key_sys}{$key_sat}{CLKRED}},
+                                title => "$key_sat",
+                                timefmt => '%Y-%m-%d_%H:%M:%S',
+                                linetype => $colour,
+                                style => " lines ",);
+                push (@datasets_r, $dataset_r);
+            }
+            $chart_c->plot2d(@datasets_c);
+            $chart_r->plot2d(@datasets_r);
+            # CLK
+            $y = $y - $dy;
+            if($y < 30/mm) {
+                $page = $pdf->page(); $page->mediabox('A4');
+                $y = $y0;
+            }
+            $png = $page->gfx(); die("Unable to find image file: $!") unless -e $pngName_c;
+            $png->image($pdf->image_png($pngName_c), $x, $y, $width, $height);
+            # CLKRED
+            $y = $y - $dy;
+            if($y < 30/mm) {
+                $page = $pdf->page(); $page->mediabox('A4');
+                $y = $y0;
+            }
+            $png = $page->gfx(); die("Unable to find image file: $!") unless -e $pngName_r;
+            $png->image($pdf->image_png($pngName_r), $x, $y, $width, $height);
+        }
+    }
+    $pdf->save();
+    $pdf->end();
+    system("rm *png");
+    #system("okular $inputDir/$pdf_name&");
+}
+
+
+#foreach my $t(@array) {print"$t \n ";}
+#print Dumper \%AMB;
+#########################################
+sub help {
+     print <<EOI_HILFE;
+CALL:
+      compareSp3Plot.pl [paramter]
+
+PARAMETER:
+
+      --plotTypes     possible: ALL => RAO and CLOCK; CLK => CLOCK and CLOCKRED
+      --logFiles      comma separated list of BNC's combination logfiles
+      --help          show help contents
+
+DESCRIPTION:
+
+      Script to pplot BNC's PPP logfiles
+
+EOI_HILFE
+exit;
+}
Index: trunk/BNC/scripts/pppPlot.pl
===================================================================
--- trunk/BNC/scripts/pppPlot.pl	(revision 9747)
+++ trunk/BNC/scripts/pppPlot.pl	(revision 9830)
@@ -163,5 +163,5 @@
                                               title   => "Displacements N, RMS + -$str_rms_n m",
                                               timefmt => '%s',
-                                              style   => "dots",
+                                              style   => "linespoints",
     );
     my $dataE = Chart::Gnuplot::DataSet->new(
@@ -170,5 +170,5 @@
                                               title   => "Displacements E, RMS + -$str_rms_e m",
                                               timefmt => '%s',
-                                              style   => "dots",
+                                              style   => "linespoints",
     );
     my $dataU = Chart::Gnuplot::DataSet->new(
@@ -177,5 +177,5 @@
                                               title   => "Displacements U, RMS + -$str_rms_u m",
                                               timefmt => '%s',
-                                              style   => "dots",
+                                              style   => "linespoints",
     );
     my @datasets = ( $dataN, $dataE, $dataU );
@@ -199,5 +199,5 @@
                                                     title   => "Tropospheric Delay, RMS + -$str_rms_trp m",
                                                     timefmt => '%s',
-                                                    style   => "dots",
+                                                    style   => "linespoints",
         );
         $chartTRP->plot2d($dataTRP);
@@ -229,5 +229,5 @@
                                                      title   => "Receiver clock",
                                                      timefmt => '%s',
-                                                     style   => "dots",
+                                                     style   => "linespoints",
             );
             $chartCLK->plot2d($dataset);
@@ -259,5 +259,5 @@
                                                      title   => "GPS Receiver clock",
                                                      timefmt => '%s',
-                                                     style   => "dots",
+                                                     style   => "linespoints",
             );
             $chartCLK->plot2d($dataset);
@@ -289,5 +289,5 @@
                                                      title   => "GLONASS Receiver clock",
                                                      timefmt => '%s',
-                                                     style   => "dots",
+                                                     style   => "linespoints",
             );
             $chartCLK->plot2d($dataset);
@@ -319,5 +319,5 @@
                                                      title   => "Galileo Receiver clock",
                                                      timefmt => '%s',
-                                                     style   => "dots",
+                                                     style   => "linespoints",
             );
             $chartCLK->plot2d($dataset);
@@ -350,5 +350,5 @@
                                                      title   => "BDS Receiver clock",
                                                      timefmt => '%s',
-                                                     style   => "dots",
+                                                     style   => "linespoints",
             );
             $chartCLK->plot2d($dataset);
@@ -382,5 +382,5 @@
                                                          title   => "Offset GPS - GLONASS",
                                                          timefmt => '%s',
-                                                         style   => "dots",
+                                                         style   => "linespoints",
                 );
                 $chartOGR->plot2d($dataset);    #system ("display $pngName&");
@@ -415,5 +415,5 @@
                                                          title   => "Offset GPS - Galileo",
                                                          timefmt => '%s',
-                                                         style   => "dots",
+                                                         style   => "linespoints",
                 );
                 $chartOGE->plot2d($dataset);    #system ("display $pngName&");
@@ -448,5 +448,5 @@
                                                          title   => "Offset GPS - BDS",
                                                          timefmt => '%s',
-                                                         style   => "dots",
+                                                         style   => "linespoints",
                 );
                 $chartOGC->plot2d($dataset);    #system ("display $pngName&");
@@ -497,6 +497,6 @@
                     timefmt => '%s',
 
-                    #style   => "dots",
-                    style => "dots",
+                    #style   => "linespoints",
+                    style => "linespoints",
                 );
                 push ( @datasets, $dataset );
@@ -572,7 +572,7 @@
                         title => "$key_sat",
                         timefmt => '%s',
-                        style   => "dots",
-
-                        #style   => "dots",
+                        style   => "linespoints",
+
+                        #style   => "linespoints",
                     );
                     push ( @datasets_amb, $dataset_amb );
@@ -585,6 +585,6 @@
                         timefmt => '%s',
 
-                        #style   => "dots",
-                        style => "dots",
+                        #style   => "linespoints",
+                        style => "linespoints",
                     );
                     push ( @datasets_epo, $dataset_epo );
@@ -667,6 +667,6 @@
                         timefmt => '%s',
 
-                        #style   => "dots",
-                        style => "dots",
+                        #style   => "linespoints",
+                        style => "linespoints",
                     );
                     push ( @datasets, $dataset );
@@ -715,6 +715,6 @@
                         timefmt => '%s',
 
-                        #style   => " dots ",
-                        style => "dots",
+                        #style   => " linespoints ",
+                        style => "linespoints",
                     );
                     push ( @datasets, $dataset );
@@ -765,5 +765,5 @@
                                                     title   => "$key_sys",
                                                     timefmt => '%s',
-                                                    style   => "dots",
+                                                    style   => "linespoints",
                       );
                     push ( @datasets, $dataset );
