
    IR-e                     0    d Z ddlmZ ddlT ddlmZ d ZdS )a.  World Coordinate System (WCS) transformations in FITS files.

.. _wcslib: https://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/index.html
.. _distortion paper: https://www.atnf.csiro.au/people/mcalabre/WCS/dcs_20040422.pdf
.. _SIP: https://irsa.ipac.caltech.edu/data/SPITZER/docs/files/spitzer/shupeADASS.pdf
.. _FITS WCS standard: https://fits.gsfc.nasa.gov/fits_wcs.html

`astropy.wcs` contains utilities for managing World Coordinate System
(WCS) transformations in FITS files.  These transformations map the
pixel locations in an image to their real-world units, such as their
position on the sky sphere.

It performs three separate classes of WCS transformations:

- Core WCS, as defined in the `FITS WCS standard`_, based on Mark
  Calabretta's `wcslib`_.  See `~astropy.wcs.Wcsprm`.
- Simple Imaging Polynomial (`SIP`_) convention.  See
  `~astropy.wcs.Sip`.
- table lookup distortions as defined in WCS `distortion paper`_.  See
  `~astropy.wcs.DistortionLookupTable`.

Each of these transformations can be used independently or together in
a standard pipeline.
   )utils)*)InvalidTabularParametersErrorc                  z    ddl } | j                            | j                            t                    d          S )z7
    Get the path to astropy.wcs's C header files.
        Ninclude)ospathjoindirname__file__)r	   s    4lib/python3.11/site-packages/astropy/wcs/__init__.pyget_includer       s1     III7<<119===    N)__doc__ r   wcsr   r    r   r   <module>r      sZ    2           . . . . . .> > > > >r   