X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fconvkeps.pl;h=9fda8e820dcaa6f0b36a2f64f606594ec6610af8;hb=2a44647e3c42fb1c532412f6d4dc90481e248ba9;hp=4c05d05a04d2b49d6970fcd3e350d40ad85d4a96;hpb=a6d0720c825ae5d7233025c96e0f04ac48d5b811;p=spider.git diff --git a/perl/convkeps.pl b/perl/convkeps.pl index 4c05d05a..9fda8e82 100755 --- a/perl/convkeps.pl +++ b/perl/convkeps.pl @@ -59,6 +59,16 @@ my $state = 0; my $name; my $ref; my $line; +my $count = 0; + +my %lookup = ( + 'AO-5' => 'AO-05', + 'AO-6' => 'AO-06', + 'AO-7' => 'AO-07', + 'AO-8' => 'AO-08', + +); + my $f = \*STDIN; while (@ARGV) { @@ -79,21 +89,26 @@ while (@ARGV) { while (<$f>) { ++$line; +# print; chomp; + last if m{^-}; + s/^\s+//; - s/\s+$//; + s/[\s\r]+$//; next unless $_; last if m{^/EX}i; - last if m{^-}; - if ($state == 0 && /^TO ALL/) { + if ($state == 0 && /^Decode/i) { $state = 1; } elsif ($state == 1) { - last if m{^/EX/i}; + last if m{^-}; + next if m{^To\s+all}i; - if (/^\w+/) { - s/\s/-/g; - $name = $_; + if (/^([- \w]+)(?:\s+\[[-+\w]\])?$/) { + my $n = uc $1; + $n =~ s/\s/-/g; + $name = $lookup{$n}; + $name ||= $n; $ref = $keps{$name} = {}; $state = 2; } @@ -112,7 +127,7 @@ while (<$f>) { $state = 3; } else { - print "out of order on line $line\n"; + #print "out of order on line $line\n"; undef $ref; delete $keps{$name}; $state = 1; @@ -127,8 +142,9 @@ while (<$f>) { $ref->{argperigee} = $peri - 0; $ref->{raan} = $raan - 0; $ref->{orbit} = $orbit - 0; + $count++; } else { - print "out of order on line $line\n"; + #print "out of order on line $line\n"; delete $keps{$name}; } undef $ref; @@ -136,16 +152,21 @@ while (<$f>) { } } -my $dd = new Data::Dumper([\%keps], [qw(*keps)]); -$dd->Indent(1); -$dd->Quotekeys(0); -open(OUT, ">$fn") or die "$fn $!"; -print OUT "#\n# this file is automatically produced by convkeps.pl\n#\n"; -print OUT "# Last update: ", scalar gmtime, "\n#\n"; -print OUT "\npackage Sun;\n\n"; -print OUT $dd->Dumpxs; -print OUT "1;\n"; -close(OUT); +if ($count) { + my $dd = new Data::Dumper([\%keps], [qw(*keps)]); + $dd->Indent(1); + $dd->Quotekeys(0); + open(OUT, ">$fn") or die "$fn $!"; + print OUT "#\n# this file is automatically produced by convkeps.pl\n#\n"; + print OUT "# Last update: ", scalar gmtime, "\n#\n"; + print OUT "\npackage Sun;\n\n"; + print OUT $dd->Dumpxs; + print OUT "1;\n"; + close(OUT); +} + +print "$count keps converted\n"; +exit($count ? 0 : -1); # convert (+/-)00000-0 to (+/-).00000e-0