IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16742


Ignore:
Timestamp:
Feb 28, 2008, 4:03:50 PM (18 years ago)
Author:
Paul Price
Message:

No need for workdir.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/warp_overlap.pl

    r16729 r16742  
    3838my $ipprc = PS::IPP::Config->new(); # IPP configuration
    3939
    40 my ($warp_id, $camera, $tess_id, $dbname, $workdir, $verbose, $no_update, $no_op);
     40my ($warp_id, $camera, $tess_id, $dbname, $verbose, $no_update, $no_op);
    4141GetOptions(
    4242    'warp_id|i=s'       => \$warp_id, # Warp identifier
     
    4444    'tess_id=s'         => \$tess_id, # Tessellation identifier
    4545    'dbname|d=s'        => \$dbname, # Database name
    46     'workdir|w=s'       => \$workdir, # Working directory, for output files
    4746    'verbose'           => \$verbose,   # Print to stdout
    4847    'no-update'         => \$no_update, # Don't update the database?
     
    5251pod2usage( -msg => "Unknown option: @ARGV", -exitval => 2 ) if @ARGV;
    5352pod2usage(
    54     -msg => "Required options: --warp_id --camera --tess_id --workdir",
     53    -msg => "Required options: --warp_id --camera --tess_id",
    5554    -exitval => 3,
    5655) unless defined $warp_id
    5756    and defined $camera
    58     and defined $tess_id
    59     and defined $workdir;
     57    and defined $tess_id;
    6058
    6159$ipprc->define_camera($camera);
Note: See TracChangeset for help on using the changeset viewer.