This file is indexed.

/usr/lib/python/astrometry/util/fits2fits.py is in astrometry.net 0.46-0ubuntu2.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#! /usr/bin/env python
import os
import sys
import re
import logging

if __name__ == '__main__':
    # According to the python sys.path documentation, the directory containing
    # the main script appears as sys.path[0].
    utildir = sys.path[0]
    assert(os.path.basename(utildir) == 'util')
    andir = os.path.dirname(utildir)
    #assert(os.path.basename(andir) == 'astrometry')
    rootdir = os.path.dirname(andir)
    # Here we put the "astrometry" and "astrometry/.." directories at the front
    # of the path: astrometry to pick up pyfits, and .. to pick up astrometry itself.
    sys.path.insert(1, andir)
    sys.path.insert(2, rootdir)
    import pyfits

import pyfits
from astrometry.util.fits import pyfits_writeto

def fits2fits(infile, outfile, verbose=False, fix_idr=False):
    """
    Returns: error string, or None on success.
    """
    if fix_idr:
        from astrometry.util.fix_sdss_idr import fix_sdss_idr

    # Read input file.
    fitsin = pyfits.open(infile)
    # Print out info about input file.
    if verbose:
        fitsin.info()

    for i, hdu in enumerate(fitsin):
        if fix_idr:
            hdu = fitsin[i] = fix_sdss_idr(hdu)
        # verify() fails when a keywords contains invalid characters,
        # so go through the primary header and fix them by converting invalid
        # characters to '_'
        hdr = hdu.header
        logging.info('Header has %i cards' % len(hdr))
        # allowed characters (FITS standard section 5.1.2.1)
        pat = re.compile(r'[^A-Z0-9_\-]')

        newcards = []
        for c in hdr.ascard:
            k = c.keyword
            # new keyword:
            knew = pat.sub('_', k)
            if k != knew:
                logging.debug('Replacing illegal keyword %s by %s' % (k, knew))
                # it seems pyfits is not clever enough to notice this...
                if len(knew) > 8:
                    knew = 'HIERARCH ' + knew
            newcards.append(pyfits.Card(keyword=knew, value=c.value,
                                        comment=c.comment))
        hdu.header = pyfits.Header(newcards)
            
        # Fix input header
        hdu.verify('fix')

        # UGH!  Work around stupid pyfits handling of scaled data...
        # (it fails to round-trip scaled data correctly!)
        bzero = hdr.get('BZERO', None)
        bscale = hdr.get('BSCALE', None)
        if (bzero is not None and bscale is not None
            and (bzero != 0. or bscale != 1.)):
            logging.debug('Scaling to bzero=%g, bscale=%g' % (bzero, bscale))
            hdu.scale('int16', '', bscale, bzero)

    # Describe output file we're about to write...
    if verbose:
        print 'Outputting:'
        fitsin.info()

    try:
        pyfits_writeto(fitsin, outfile, output_verify='warn')
    except pyfits.VerifyError, ve:
        return ('Verification of output file failed: your FITS file is probably too broken to automatically fix.' +
                '  Error message is:' + str(ve))
    fitsin.close()
    return None

def main():
    from optparse import OptionParser
    parser = OptionParser()
    parser.add_option('-v', '--verbose',
                      action='store_true', dest='verbose',
                      help='be chatty')
    parser.add_option('-s', '--fix-sdss',
                      action='store_true', dest='fix_idr',
                      help='fix SDSS idR files')
    (options, args) = parser.parse_args()

    if len(args) != 2:
        print 'Usage: fits2fits.py [--verbose] input.fits output.fits'
        return -1

    logformat = '%(message)s'
    if options.verbose:
        logging.basicConfig(level=logging.DEBUG, format=logformat)
    else:
        logging.basicConfig(level=logging.INFO, format=logformat)
    logging.raiseExceptions = False

    infn = args[0]
    outfn = args[1]
    errmsg = fits2fits(infn, outfn, fix_idr=options.fix_idr,
                       verbose=options.verbose)
    if errmsg is not None:
        print 'fits2fits.py failed:', errmsg
        return -1
    return 0

if __name__ == '__main__':
    sys.exit(main())