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
|
*******************
APLpy documentation
*******************
`APLpy <http://aplpy.github.io>`_ (the Astronomical Plotting Library in Python -
pronounced *apple pie*) is a Python package module aimed at producing
publication-quality plots of astronomical imaging data, and has been around
since 2009.
Since APLpy 2.0, APLpy relies on Astropy's `WCSAxes
<http://docs.astropy.org/en/stable/visualization/wcsaxes/index.html>`_ package
to draw the coordinate axes and grids, which in turn uses `Matplotlib
<https://matplotlib.org>`_ to do the rendering. This is a big change compared to
previous versions of APLpy, which handled the drawing of the coordinate axes and
grids directly. For information about backward-compatibility, see the
`Backward-compatibility notes`_.
Note that APLpy 2.x is only compatible with Python 3.5 and later.
If you use APLpy for a publication, please consider citing it as described in
the `CITATION <https://github.com/aplpy/aplpy/blob/master/CITATION>`__ file.
Should you use APLpy?
=====================
The `WCSAxes`_ package in Astropy can be used without APLpy to produce plots of
astronomical images. It provides a programmatic interface that is conceptually
very close to Matplotlib, and can be used to make plots that are more complex
than what APLpy has historically been able to do. If you want to be able to
control the appearance of your plots in detail, including for example adding
overlay coordinate systems, or if you simply want a programmatic interface that
is consistent with Matplotlib, then we recommend you use `WCSAxes`_ directly. If
you have a FITS file and just want to make it into a plot in a couple of lines,
then APLpy is the package for you.
Installing APLpy
================
You can install APLpy with pip using::
pip install aplpy
If you prefer to use conda, you can install APLpy with::
conda install -c astropy aplpy
Using APLpy
===========
APLpy includes a :class:`~aplpy.FITSFigure` class that provides a simple
interface to make plots and provides easy methods for overlaying shapes, beams,
adding colorbars, and overplotting regions.
.. toctree::
:maxdepth: 1
fitsfigure/quickstart.rst
fitsfigure/quick_reference.rst
fitsfigure/arbitrary_coordinate_systems.rst
fitsfigure/slicing.rst
fitsfigure/howto_noninteractive.rst
fitsfigure/howto_avm.rst
fitsfigure/howto_subplot.rst
rgb
.. _backcompat:
Backward-compatibility notes
============================
APLpy continues to include a :class:`~aplpy.FITSFigure` class that provides a
simpler interface and deals with the reading of FITS files and constructing WCS
objects. This class uses `WCSAxes`_ behind the scenes, but provides easy methods
for overlaying shapes, beams, adding colorbars, and overplotting regions. The
interface of this class is intended to be backward-compatible with existing
scripts that used APLpy 1.0 and earlier. If you run into issues with old
scripts, please report the issues in the `issue tracker
<https://github.com/aplpy/aplpy/issues>`_.
Note however that if you have made adjustments to figures in the past using private
attributes (e.g. ``fig._ax1``), these will no longer work and this cannot be
fixed in APLpy 2.x.
In any case, if you have issues with APLpy 2.x and want to continue using APLpy
1.x, you can always restrict the version of APLpy when installing it using
e.g.::
pip install "aplpy<2"
or::
conda install "aplpy<2"
If critical bugs are found in the 1.x releases and can easily be fixed, we may
release new 1.x versions.
.. _api:
Reference/API
=============
.. automodapi:: aplpy
:no-main-docstr:
:no-heading:
:no-inheritance-diagram:
:inherited-members:
|