IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 18, 2010, 11:58:49 AM (16 years ago)
Author:
watersc1
Message:

Many calls are failing because of quality values that I didn't expect. Now tests for quality != 0 to avoid this issue.

File:
1 edited

Legend:

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

    r28381 r28403  
    8181        my $state      = $imfile->{data_state};
    8282        my $projection_cell = $skycell_id;
    83         if ($quality == 8007 or $state ne 'full') {
     83        if ($quality != 0 or $state ne 'full') {
    8484            next;
    8585        }
     
    178178        my $state      = $imfile->{data_state};
    179179        my $projection_cell = $skycell_id;
    180         if ($quality == 8007 or $quality == 1010 or $state ne 'full') {
     180        if ($quality != 0 or $state ne 'full') {
    181181            next;
    182182        }
     
    276276        my $fault      = $imfile->{fault};
    277277        my $projection_cell = $skycell_id;
    278         if ($quality == 8007 or $state ne 'full') {
     278        if ($quality != 0 or $state ne 'full') {
    279279            next;
    280280        }
Note: See TracChangeset for help on using the changeset viewer.