X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fsatellite.pl;fp=cmd%2Fshow%2Fsatellite.pl;h=0e4ec5806f1c5314cf0a62c67ecbd8f9a80f10a9;hb=bd112338bcd942b903af05dd76a01dca2cc9c026;hp=a6c07448c421c4de1d4ffbafeb15c48dceaee830;hpb=9cac31473878fc88778cb13d843fa77c5fd33d65;p=spider.git diff --git a/cmd/show/satellite.pl b/cmd/show/satellite.pl index a6c07448..0e4ec580 100644 --- a/cmd/show/satellite.pl +++ b/cmd/show/satellite.pl @@ -17,7 +17,11 @@ my $step = shift @f; # tracking table resolution in minutes # default hours and step size $numhours = 3 unless $numhours && $numhours =~ /^\d+$/; +$numhours = 3 if $numhours < 0; +$numhours = 24 if $numhours > 24; $step = 5 unless $step && $step =~ /^\d+$/; +$step = 5 if $step < 0; +$step = 30 if $step > 30; # get nearest lat and long (I can see we will need the altitude here soon as well :-) my $lat = $self->user->lat;