IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 34905


Ignore:
Timestamp:
Jan 10, 2013, 2:13:10 PM (14 years ago)
Author:
bills
Message:

add --glat_min and --glat_max

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/queuessky.lap

    r34863 r34905  
    1818
    1919
    20 my ($ramin, $ramax, $decmin, $decmax, $absglatmin, $go);
     20my ($ramin, $ramax, $decmin, $decmax, $absglatmin, $glatmin, $glatmax, $go);
    2121my $combos = 5;
    2222my $verbose = 0;
     
    2727    'dec_min=s'          =>  \$decmin,
    2828    'dec_max=s'          =>  \$decmax,
     29    'glat_min=s'         =>  \$glatmin,
     30    'glat_max=s'         =>  \$glatmax,
    2931#    'absglatmin=s'      =>  \$absglatmin,  # not yet
    3032    'nfilters=s'        =>  \$combos,
     
    5759$command .= " -dec_max $decmax" if defined $decmax;
    5860
    59 # XXX TODO: implement absglatmin
     61# XXX TODO: implement absglatmin in staticskytool and use that
     62$command .= " -glat_min $glatmin" if defined $glatmin;
     63$command .= " -glat_max $glatmax" if defined $glatmax;
    6064
    6165foreach my $filter_combo (@$filter_combos) {
     
    7276    }
    7377}
    74 
    75 
    7678
    7779exit 0;
Note: See TracChangeset for help on using the changeset viewer.