The following software packages display or manipulate the relatively simple class of FITS data files that containing 2-dimensional images, often of celestial objects in the night sky. It should be noted that FITS is a very general data format that is used for many different types of astronomical data sets, so these packages are not necessarily capable of reading every type of FITS file. Developers of new image display programs should be aware of the special requirements for effectively displaying FITS images.Being listed on this site does not imply an endorsement by NASA or the U.S. Government. FITS Software FILTERS All Format Converters (10) Image Viewers (30) Utility Programs (8) Apply Title Description GAIA An image display and analysis tool from the U.K. Starlink Project. It is a derivative of the ESO SkyCat tool. http://astro.dur.ac.uk/~pdraper/gaia/gaia.html fv A FITS file viewer and editor that supports FITS images and FITS tables. http://heasarc.gsfc.nasa.gov/docs/software/ftools/fv/ FITSview A FITS image viewer from the National Radio Astronomy Observatory (NRAO). https://www.nrao.edu/software/fitsview/ FITS Liberator Created by the National Science Foundation (NSF) NOIRLab (National Optical-Infrared Astronomy Research Laboratory), FITS Liberator lets users view, manipulate, and export FITS files to standard image formats. https://noirlab.edu/public/products/fitsliberator/ SAOImageDS9 An image display and visualization tool for astronomical data, created by the Smithsonian Astrophysical Observatory (SAO). It can save FITS images into other image formats. https://sites.google.com/cfa.harvard.edu/saoimageds9 Clearsky Viewer A javascript library for viewing a FITS image. Features include multiple regions of interest, stats, contrast, magnifying glass and more. https://www.clearskyinstitute.com/fits/ Carta FITS Viewer An image visualizing tool designed for professional researchers to support very large files (GB to TB size) from ALMA (Atacama Large Millimeter/submillimeter Array), VLA (Very Large Array), and SKA (Square Kilometre Array) pathfinders. Supports FITS, CASA, and HDF5 data formats. https://www.cartavis.org/ Avis FITS Viewer A FITS viewer for Windows. Only reads 8 and 16 bit FITS images. Converts to RAW, TIF, TGA, BMP, and JPEG formats. https://www.msbsoftware.it/avis/ Astro-FLEX Astro-Fits Lite EXplorer is a simple widget for examining FITS files. https://www.chickadeeridgeobservatory.com/software.html AstroImageJ An open-source platform for modeling and plotting astronomical image data based upon the ImageJ Java library. https://astroimagej.com/ Pagination « First First page ‹ Previous Previous page 1 2 3 4 5 Next › Next page Last » Last page SHOWING 10 OF 44 Notes Regarding the Display of FITS ImagesAn application intended to render a FITS image for viewing by a user has significantly more responsibility than an application intended to handle other standard image formats (e.g., JPEG or GIF images). FITS data arrays contain elements which typically represent the values of a physical quantity at some coordinate location. Consequently, they need not contain any pixel rendering information in the form of transfer functions, and there is no mechanism for color look-up tables. An application should provide this functionality, either statically using a more or less sophisticated algorithm, or interactively allowing a user various degrees of choice. (See also: a short introduction to astronomical image processing).Furthermore, the elements in a FITS data array may be integers or floating point numbers. The dynamic range of the data array values may exceed that of the display medium and the eye, and their distribution may be highly nonuniform. Logarithmic, square-root, and quadratic transfer functions along with histogram equalization techniques have proved helpful for rendering FITS data arrays. Some elements of the array may have values which indicate that their data are undefined or invalid; these should be rendered distinctly.The data array in a FITS image must have a dimensionality between 1 and 999, the boundaries inclusive, indicated by the NAXIS keyword. The extent of any coordinate axis in a FITS data array may, however, consist of only a single element. Hence an algorithm designed to render two-dimensional images will be capable of displaying a three- or four-dimensional FITS array when one or two of the axes consist of a single pixel.Three-dimensional data arrays (NAXIS = 3 with multiple elements along each) are of special interest. Inspection of the World Coordinate System (WCS) keywords in an image with NAXIS = 3 or more may indicate that one of the axes is temporal. Writers of viewer applications should consider presenting such an image in a fashion akin to that used for an animated GIF. Even in the absence of WCS indication of a temporal axis this time-lapse display technique can be effective, and application writers should consider offering it for all three-dimensional arrays.A FITS image with NAXIS=1 is a one-dimensional entity such as a spectrum or a time series. Writers of applications intended to handle these one-dimensional FITS images should consider presenting such an image as a graphical plot rather than as a two-dimensional picture with a single row.