IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16751


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

Need to resolve URI for tempfile().

File:
1 edited

Legend:

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

    r16738 r16751  
    131131
    132132# Get list of filenames
    133 my ($imageFile,  $imageName)  = tempfile( caturi($outroot, "$tess_id.$skycell_id.wrp$warp_id.image.list.XXXX"),  UNLINK => !$save_temps);
    134 my ($maskFile,   $maskName)   = tempfile( caturi($outroot, "$tess_id.$skycell_id.wrp$warp_id.mask.list.XXXX"),   UNLINK => !$save_temps);
    135 my ($weightFile, $weightName) = tempfile( caturi($outroot, "$tess_id.$skycell_id.wrp$warp_id.weight.list.XXXX"), UNLINK => !$save_temps);
    136 my ($astromFile, $astromName) = tempfile( caturi($outroot, "$tess_id.$skycell_id.wrp$warp_id.astrom.list.XXXX"), UNLINK => !$save_temps);
     133my $outrootResolved = $ipprc->file_resolve( $outroot );
     134my ($imageFile,  $imageName)  = tempfile( caturi($outrootResolved, "$tess_id.$skycell_id.wrp$warp_id.image.list.XXXX"),  UNLINK => !$save_temps);
     135my ($maskFile,   $maskName)   = tempfile( caturi($outrootResolved, "$tess_id.$skycell_id.wrp$warp_id.mask.list.XXXX"),   UNLINK => !$save_temps);
     136my ($weightFile, $weightName) = tempfile( caturi($outrootResolved, "$tess_id.$skycell_id.wrp$warp_id.weight.list.XXXX"), UNLINK => !$save_temps);
     137my ($astromFile, $astromName) = tempfile( caturi($outrootResolved, "$tess_id.$skycell_id.wrp$warp_id.astrom.list.XXXX"), UNLINK => !$save_temps);
    137138
    138139foreach my $imfile (@$imfiles) {
Note: See TracChangeset for help on using the changeset viewer.