Differs

Facilities for diffing two FITS files. Includes objects for diffing entire FITS files, individual HDUs, FITS headers, or just FITS data.

Used to implement the fitsdiff program.

FITSDiff

class astropy.io.fits.FITSDiff(a, b, ignore_keywords=[], ignore_comments=[], ignore_fields=[], numdiffs=10, tolerance=0.0, ignore_blanks=True, ignore_blank_cards=True) [edit on github]

Bases: astropy.io.fits.diff._BaseDiff

Diff two FITS files by filename, or two HDUList objects.

FITSDiff objects have the following diff attributes:

  • diff_hdu_count: If the FITS files being compared have different numbers of HDUs, this contains a 2-tuple of the number of HDUs in each file.
  • diff_hdus: If any HDUs with the same index are different, this contains a list of 2-tuples of the HDU index and the HDUDiff object representing the differences between the two HDUs.
classmethod fromdiff(other, a, b) [edit on github]

Returns a new Diff object of a specfic subclass from an existing diff object, passing on the values for any arguments they share in common (such as ignore_keywords).

For example:

>>> fd = FITSDiff('a.fits', 'b.fits', ignore_keywords=['*'])
>>> hd = HeaderDiff.fromdiff(fd, header_a, header_b)
>>> hd.ignore_keywords
['*']
identical

True if all the diff_* attributes on this diff instance are empty, implying that no differences were found.

Any subclass of _BaseDiff must have at least one diff_* attribute, which contains a non-empty value if and only if some difference was found between the two objects being compared.

report(fileobj=None, indent=0) [edit on github]

Generates a text report on the differences (if any) between two objects, and either returns it as a string or writes it to a file-like object.

Parameters :

fileobj : file-like object or None (optional)

If None, this method returns the report as a string. Otherwise it returns None and writes the report to the given file-like object (which must have a .write() method at a minimum).

indent : int

The number of 4 space tabs to indent the report.

Returns :

report : str or None

HDUDiff

class astropy.io.fits.HDUDiff(a, b, ignore_keywords=[], ignore_comments=[], ignore_fields=[], numdiffs=10, tolerance=0.0, ignore_blanks=True, ignore_blank_cards=True) [edit on github]

Bases: astropy.io.fits.diff._BaseDiff

Diff two HDU objects, including their headers and their data (but only if both HDUs contain the same type of data (image, table, or unknown).

HDUDiff objects have the following diff attributes:

  • diff_extnames: If the two HDUs have different EXTNAME values, this contains a 2-tuple of the different extension names.
  • diff_extvers: If the two HDUS have different EXTVER values, this contains a 2-tuple of the different extension versions.
  • diff_extension_types: If the two HDUs have different XTENSION values, this contains a 2-tuple of the different extension types.
  • diff_headers: Contains a HeaderDiff object for the headers of the two HDUs. This will always contain an object–it may be determined whether the headers are different through diff_headers.identical.
  • diff_data: Contains either a ImageDataDiff, TableDataDiff, or RawDataDiff as appropriate for the data in the HDUs, and only if the two HDUs have non-empty data of the same type (RawDataDiff is used for HDUs containing non-empty data of an indeterminate type).
classmethod fromdiff(other, a, b) [edit on github]

Returns a new Diff object of a specfic subclass from an existing diff object, passing on the values for any arguments they share in common (such as ignore_keywords).

For example:

>>> fd = FITSDiff('a.fits', 'b.fits', ignore_keywords=['*'])
>>> hd = HeaderDiff.fromdiff(fd, header_a, header_b)
>>> hd.ignore_keywords
['*']
identical

True if all the diff_* attributes on this diff instance are empty, implying that no differences were found.

Any subclass of _BaseDiff must have at least one diff_* attribute, which contains a non-empty value if and only if some difference was found between the two objects being compared.

report(fileobj=None, indent=0) [edit on github]

Generates a text report on the differences (if any) between two objects, and either returns it as a string or writes it to a file-like object.

Parameters :

fileobj : file-like object or None (optional)

If None, this method returns the report as a string. Otherwise it returns None and writes the report to the given file-like object (which must have a .write() method at a minimum).

indent : int

The number of 4 space tabs to indent the report.

Returns :

report : str or None

HeaderDiff

class astropy.io.fits.HeaderDiff(a, b, ignore_keywords=[], ignore_comments=[], tolerance=0.0, ignore_blanks=True, ignore_blank_cards=True) [edit on github]

Bases: astropy.io.fits.diff._BaseDiff

Diff two Header objects.

HeaderDiff objects have the following diff attributes:

  • diff_keyword_count: If the two headers contain a different number of keywords, this contains a 2-tuple of the keyword count for each header.

  • diff_keywords: If either header contains one or more keywords that don’t appear at all in the other header, this contains a 2-tuple consisting of a list of the keywords only appearing in header a, and a list of the keywords only appearing in header b.

  • diff_duplicate_keywords: If a keyword appears in both headers at least once, but contains a different number of duplicates (for example, a different number of HISTORY cards in each header), an item is added to this dict with the keyword as the key, and a 2-tuple of the different counts of that keyword as the value. For example:

    {'HISTORY': (20, 19)}
    

    means that header a contains 20 HISTORY cards, while header b contains only 19 HISTORY cards.

  • diff_keyword_values: If any of the common keyword between the two headers have different values, they appear in this dict. It has a structure similar to diff_duplicate_keywords, with the keyword as the key, and a 2-tuple of the different values as the value. For example:

    {'NAXIS': (2, 3)}
    

    means that the NAXIS keyword has a value of 2 in header a, and a value of 3 in header b. This excludes any keywords matched by the ignore_keywords list.

  • diff_keyword_comments: Like diff_keyword_values, but contains differences between keyword comments.

HeaderDiff objects also have a common_keywords attribute that lists all keywords that appear in both headers.

classmethod fromdiff(other, a, b) [edit on github]

Returns a new Diff object of a specfic subclass from an existing diff object, passing on the values for any arguments they share in common (such as ignore_keywords).

For example:

>>> fd = FITSDiff('a.fits', 'b.fits', ignore_keywords=['*'])
>>> hd = HeaderDiff.fromdiff(fd, header_a, header_b)
>>> hd.ignore_keywords
['*']
identical

True if all the diff_* attributes on this diff instance are empty, implying that no differences were found.

Any subclass of _BaseDiff must have at least one diff_* attribute, which contains a non-empty value if and only if some difference was found between the two objects being compared.

report(fileobj=None, indent=0) [edit on github]

Generates a text report on the differences (if any) between two objects, and either returns it as a string or writes it to a file-like object.

Parameters :

fileobj : file-like object or None (optional)

If None, this method returns the report as a string. Otherwise it returns None and writes the report to the given file-like object (which must have a .write() method at a minimum).

indent : int

The number of 4 space tabs to indent the report.

Returns :

report : str or None

ImageDataDiff

class astropy.io.fits.ImageDataDiff(a, b, numdiffs=10, tolerance=0.0) [edit on github]

Bases: astropy.io.fits.diff._BaseDiff

Diff two image data arrays (really any array from a PRIMARY HDU or an IMAGE extension HDU, though the data unit is assumed to be “pixels”).

ImageDataDiff objects have the following diff attributes:

  • diff_dimensions: If the two arrays contain either a different number of dimensions or different sizes in any dimension, this contains a 2-tuple of the shapes of each array. Currently no further comparison is performed on images that don’t have the exact same dimensions.

  • diff_pixels: If the two images contain any different pixels, this contains a list of 2-tuples of the array index where the difference was found, and another 2-tuple containing the different values. For example, if the pixel at (0, 0) contains different values this would look like:

    [(0, 0), (1.1, 2.2)]
    

    where 1.1 and 2.2 are the values of that pixel in each array. This array only contains up to self.numdiffs differences, for storage efficiency.

  • diff_total: The total number of different pixels found between the arrays. Although diff_pixels does not necessarily contain all the different pixel values, this can be used to get a count of the total number of differences found.

  • diff_ratio: Contains the ratio of diff_total to the total number of pixels in the arrays.

classmethod fromdiff(other, a, b) [edit on github]

Returns a new Diff object of a specfic subclass from an existing diff object, passing on the values for any arguments they share in common (such as ignore_keywords).

For example:

>>> fd = FITSDiff('a.fits', 'b.fits', ignore_keywords=['*'])
>>> hd = HeaderDiff.fromdiff(fd, header_a, header_b)
>>> hd.ignore_keywords
['*']
identical

True if all the diff_* attributes on this diff instance are empty, implying that no differences were found.

Any subclass of _BaseDiff must have at least one diff_* attribute, which contains a non-empty value if and only if some difference was found between the two objects being compared.

report(fileobj=None, indent=0) [edit on github]

Generates a text report on the differences (if any) between two objects, and either returns it as a string or writes it to a file-like object.

Parameters :

fileobj : file-like object or None (optional)

If None, this method returns the report as a string. Otherwise it returns None and writes the report to the given file-like object (which must have a .write() method at a minimum).

indent : int

The number of 4 space tabs to indent the report.

Returns :

report : str or None

RawDataDiff

class astropy.io.fits.RawDataDiff(a, b, numdiffs=10) [edit on github]

Bases: astropy.io.fits.diff.ImageDataDiff

RawDataDiff is just a special case of ImageDataDiff where the images are one-dimensional, and the data is treated as a 1-dimensional array of bytes instead of pixel values. This is used to compare the data of two non-standard extension HDUs that were not recognized as containing image or table data.

ImageDataDiff objects have the following diff attributes:

  • diff_dimensions: Same as the diff_dimensions attribute of ImageDataDiff objects. Though the “dimension” of each array is just an integer representing the number of bytes in the data.
  • diff_bytes: Like the diff_pixels attribute of ImageDataDiff objects, but renamed to reflect the minor semantic difference that these are raw bytes and not pixel values. Also the indices are integers instead of tuples.
  • diff_total and diff_ratio: Same as ImageDataDiff.
classmethod fromdiff(other, a, b) [edit on github]

Returns a new Diff object of a specfic subclass from an existing diff object, passing on the values for any arguments they share in common (such as ignore_keywords).

For example:

>>> fd = FITSDiff('a.fits', 'b.fits', ignore_keywords=['*'])
>>> hd = HeaderDiff.fromdiff(fd, header_a, header_b)
>>> hd.ignore_keywords
['*']
identical

True if all the diff_* attributes on this diff instance are empty, implying that no differences were found.

Any subclass of _BaseDiff must have at least one diff_* attribute, which contains a non-empty value if and only if some difference was found between the two objects being compared.

report(fileobj=None, indent=0) [edit on github]

Generates a text report on the differences (if any) between two objects, and either returns it as a string or writes it to a file-like object.

Parameters :

fileobj : file-like object or None (optional)

If None, this method returns the report as a string. Otherwise it returns None and writes the report to the given file-like object (which must have a .write() method at a minimum).

indent : int

The number of 4 space tabs to indent the report.

Returns :

report : str or None

TableDataDiff

class astropy.io.fits.TableDataDiff(a, b, ignore_fields=[], numdiffs=10, tolerance=0.0) [edit on github]

Bases: astropy.io.fits.diff._BaseDiff

Diff two table data arrays. It doesn’t matter whether the data originally came from a binary or ASCII table–the data should be passed in as a recarray.

TableDataDiff objects have the following diff attributes:

  • diff_column_count: If the tables being compared have different numbers of columns, this contains a 2-tuple of the column count in each table. Even if the tables have different column counts, an attempt is still made to compare any columns they have in common.

  • diff_columns: If either table contains columns unique to that table, either in name or format, this contains a 2-tuple of lists. The first element is a list of columns (these are full Column objects) that appear only in table a. The second element is a list of tables that appear only in table b. This only lists columns with different column definitions, and has nothing to do with the data in those columns.

  • diff_column_names: This is like diff_columns, but lists only the names of columns unique to either table, rather than the full Column objects.

  • diff_column_attributes: Lists columns that are in both tables but have different secondard attributes, such as TUNIT or TDISP. The format is a list of 2-tuples: The first a tuple of the column name and the attribute, the second a tuple of the different values.

  • diff_values: TableDataDiff compares the data in each table on a column-by-column basis. If any different data is found, it is added to this list. The format of this list is similar to the diff_pixels attribute on ImageDataDiff objects, though the “index” consists of a (column_name, row) tuple. For example:

    [('TARGET', 0), ('NGC1001', 'NGC1002')]
    

    shows that the tables contain different values in the 0-th row of the ‘TARGET’ column.

  • diff_total and diff_ratio: Same as ImageDataDiff.

TableDataDiff objects also have a common_columns attribute that lists the Column objects for columns that are identical in both tables, and a common_column_names attribute which contains a set of the names of those columns.

classmethod fromdiff(other, a, b) [edit on github]

Returns a new Diff object of a specfic subclass from an existing diff object, passing on the values for any arguments they share in common (such as ignore_keywords).

For example:

>>> fd = FITSDiff('a.fits', 'b.fits', ignore_keywords=['*'])
>>> hd = HeaderDiff.fromdiff(fd, header_a, header_b)
>>> hd.ignore_keywords
['*']
identical

True if all the diff_* attributes on this diff instance are empty, implying that no differences were found.

Any subclass of _BaseDiff must have at least one diff_* attribute, which contains a non-empty value if and only if some difference was found between the two objects being compared.

report(fileobj=None, indent=0) [edit on github]

Generates a text report on the differences (if any) between two objects, and either returns it as a string or writes it to a file-like object.

Parameters :

fileobj : file-like object or None (optional)

If None, this method returns the report as a string. Otherwise it returns None and writes the report to the given file-like object (which must have a .write() method at a minimum).

indent : int

The number of 4 space tabs to indent the report.

Returns :

report : str or None