Change DXUser->get* to DXUser::get*
[spider.git] / cmd / show / sun.pl
1 #!/usr/bin/perl
2 #
3 # show sunrise and sunset times for each callsign or prefix entered
4 #
5 # 1999/11/9 Steve Franke K9AN
6 # 2000/10/27 fixed bug involving degree to radian conversion.
7 # 2001/09/15 accept prefix/call and number of days from today (+ or -).
8 #            e.g. sh/moon 2 w0 w9      shows rise/set 2 days hence for w0, w9
9 #                 sh/moon w0 w9 2      same thing
10 #            az and el are shown only when day offset is zero (i.e. today).
11
12 my ($self, $line) = @_;
13 my @f = split /\s+/, $line;
14
15 my @out;
16 my $f;
17 my $l;
18 my $n_offset;
19 my @list;
20
21 while ($f = shift @f){
22         if(!$n_offset){
23                 ($n_offset) = $f =~ /^([-+]?\d+)$/;
24                 next if $n_offset;
25         }
26         push @list, $f;
27 }
28 $n_offset = 0 unless defined $n_offset;
29 $n_offset = 0 if $n_offset > 365;  # can request moon rise/set up to 1 year ago or from now...
30 $n_offset = 0 if $n_offset < -365;
31
32 my ($lat, $lon);              # lats and longs in radians
33 my ($sec, $min, $hr, $day, $month, $yr) = (gmtime($main::systime+$n_offset*24*60*60))[0,1,2,3,4,5];
34
35 $month++;
36 $yr += 1900;
37
38 my @in;
39
40 if (@list) {
41         foreach $l (@list) {
42                 my $user = DXUser::get_current(uc $l);
43                 if ($user && $user->lat && $user->long) {
44                         push @in, [$user->qth, $user->lat, -$user->long, uc $l ];
45                 } else {
46                         # prefixes --->
47                         my @ans = Prefix::extract($l);
48                         next if !@ans;
49                         my $pre = shift @ans;
50                         my $a;
51                         foreach $a (@ans) {
52                                 $lat = $a->{lat};
53                                 $lon = -$a->{long};
54                                 push @in, [ $a->name, $lat, $lon, $pre ];
55                         }
56                 }
57         }
58 } else {
59         if ($self->user->lat && $self->user->long) {
60                 push @in, [$self->user->qth, $self->user->lat, -$self->user->long, $self->call ];
61         } else {
62                 push @in, [$main::myqth, $main::mylatitude, -$main::mylongitude, $main::mycall ];
63         }
64 }
65
66 if( !$n_offset ) {
67         push @out, $self->msg('sun_with_azel');
68 } else {
69         push @out, $self->msg('sun');
70 }
71
72 foreach $l (@in) {
73         my ($dawn, $rise, $set, $dusk, $az, $dec )=Sun::rise_set($yr,$month,$day,$hr,$min,$l->[1],$l->[2],0);
74                 
75         $l->[3] =~ s{(-\d+|/\w+)$}{};
76         if( !$n_offset ) {
77         push @out,sprintf("%-6.6s %-30.30s %02d/%02d/%4d %s %s %6.1f %6.1f", $l->[3], $l->[0], $day, $month, $yr, $rise, $set, $az, $dec);
78         } else {
79         push @out,sprintf("%-6.6s %-30.30s %02d/%02d/%4d %s %s", $l->[3], $l->[0], $day, $month, $yr, $rise, $set);
80         }
81 }
82
83
84 return (1, @out);