Skip to content

Commit

Permalink
Version 0.130_02
Browse files Browse the repository at this point in the history
Set version to 0.130_02. Update Changes file for changes since v00.130_01.
  • Loading branch information
trwyant committed Mar 4, 2024
1 parent 83ce21f commit ca3e9f8
Show file tree
Hide file tree
Showing 26 changed files with 34 additions and 25 deletions.
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.130_02 2024-03-03 T. R. Wyant
Cemtralize POSIX::strftime calls to ::Utils::my_strftime

Refurbish some of the eg/* scripts which have not kept track with
API changes of various sorts.

Correct bug in ::TLE->__make_tle_epoch(). The fractional part was
wrong for negative epochs.

0.130_01 2024-03-01 T. R. Wyant
Update canned magnitude table for Heavens Above changes.

Expand Down
2 changes: 1 addition & 1 deletion eg/almanac
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use Getopt::Long 2.33;
use Pod::Usage;
use Time::Local;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

Getopt::Long::Configure( 'pass_through' ); # Numbers may be negative.

Expand Down
2 changes: 1 addition & 1 deletion eg/azimuth
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use Astro::Coord::ECI;
use Astro::Coord::ECI::Sun;
use Astro::Coord::ECI::Utils qw{ deg2rad rad2deg };

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my $time = time;

Expand Down
2 changes: 1 addition & 1 deletion eg/closest
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use Date::Manip;
use Getopt::Long 2.33;
use Pod::Usage;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my %opt;

Expand Down
2 changes: 1 addition & 1 deletion eg/convert_tle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Astro::Coord::ECI::TLE;
use Getopt::Long 2.33;
use Pod::Usage;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my %opt;

Expand Down
2 changes: 1 addition & 1 deletion eg/maidenhead
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Astro::Coord::ECI::Utils qw{ deg2rad rad2deg };
use Getopt::Long 2.33 qw{ :config auto_version };
use Pod::Usage;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my %opt = (
precision => $Astro::Coord::ECI::DEFAULT_MAIDENHEAD_PRECISION,
Expand Down
2 changes: 1 addition & 1 deletion eg/passes
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use Getopt::Long 2.32;
use Pod::Usage;
use Time::Local;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

# Map -want-events values to TLE event codes.
my %wanted_event_map = (
Expand Down
2 changes: 1 addition & 1 deletion eg/solstice
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use Astro::Coord::ECI::Utils qw{ PI };
use Getopt::Long 2.33 qw{ :config auto_version };
use Pod::Usage;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my %opt;

Expand Down
2 changes: 1 addition & 1 deletion eg/usno-seasons
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use LWP::UserAgent;
use Pod::Usage;
use Time::Local;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

local $Astro::Coord::ECI::Sun::Singleton = 0;

Expand Down
2 changes: 1 addition & 1 deletion eg/xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use Getopt::Long 2.33;
use Pod::Usage;
use XML::Writer;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my %opt = (
latitude => 52.069858, # Degrees north of Equator
Expand Down
2 changes: 1 addition & 1 deletion inc/Astro/Coord/ECI/TLE/Period.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Astro::Coord::ECI::TLE;
use Carp;

our @ISA = qw{ Astro::Coord::ECI::TLE };
our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my $pkg = __PACKAGE__;

Expand Down
2 changes: 1 addition & 1 deletion inc/My/Module/Recommend/All.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ our @ISA = qw{ My::Module::Recommend::Any };
use Carp;
use Exporter qw{ import };

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

our @EXPORT_OK = qw{ __all };

Expand Down
2 changes: 1 addition & 1 deletion inc/My/Module/Recommend/Any.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use warnings;
use Carp;
use Exporter qw{ import };

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

our @EXPORT_OK = qw{ __any };

Expand Down
2 changes: 1 addition & 1 deletion inc/My/Module/Sun.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use base qw{ Astro::Coord::ECI::Sun };

use Carp;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

1;

Expand Down
2 changes: 1 addition & 1 deletion inc/My/Module/Test.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use 5.006002;
use strict;
use warnings;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use Exporter qw{ import };

Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ package Astro::Coord::ECI;
use strict;
use warnings;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use Astro::Coord::ECI::Utils qw{ @CARP_NOT :mainstream };
use Carp;
Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI/Mixin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use Astro::Coord::ECI::Utils qw{ __default_station
use Exporter ();
use POSIX qw{ floor };

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

our @EXPORT_OK = qw{
almanac almanac_hash
Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI/Moon.pm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ package Astro::Coord::ECI::Moon;
use strict;
use warnings;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use base qw{Astro::Coord::ECI};

Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI/Star.pm
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ package Astro::Coord::ECI::Star;
use strict;
use warnings;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use base qw{Astro::Coord::ECI};

Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI/Sun.pm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ package Astro::Coord::ECI::Sun;
use strict;
use warnings;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use base qw{Astro::Coord::ECI};

Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI/TLE.pm
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ package Astro::Coord::ECI::TLE;
use strict;
use warnings;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use base qw{ Astro::Coord::ECI Exporter };

Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI/TLE/Set.pm
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ our @CARP_NOT = qw{
Astro::Coord::ECI
};

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use constant ERR_NOCURRENT => <<eod;
Error - Can not call %s because there is no current member. Be
Expand Down
2 changes: 1 addition & 1 deletion lib/Astro/Coord/ECI/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ package Astro::Coord::ECI::Utils;
use strict;
use warnings;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';
our @ISA = qw{Exporter};

use Carp;
Expand Down
2 changes: 1 addition & 1 deletion script/satpass
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ $clipboard_unavailable = $IO::Clipboard::clipboard_unavailable;
# Initialization
#

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use constant LINFMT => <<eod;
%s %s %8.4f %9.4f %7.1f %-4s %s
Expand Down
2 changes: 1 addition & 1 deletion tools/heavens-above-mag
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use LWP::UserAgent;
use Pod::Usage;
use YAML 1.25 qw{ Dump Load };

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

use constant REF_CODE => sub {};
use constant VISUAL_URL => 'https://celestrak.org/SpaceTrack/query/visual.txt';
Expand Down
2 changes: 1 addition & 1 deletion tools/visual
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use HTTP::Date;
use LWP::UserAgent;
use Pod::Usage;

our $VERSION = '0.130_01';
our $VERSION = '0.130_02';

my %opt;

Expand Down

0 comments on commit ca3e9f8

Please sign in to comment.