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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
.. Astropy documentation master file, created by
sphinx-quickstart on Tue Jul 26 02:59:34 2011.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
:tocdepth: 2
.. the "raw" directive below is used to hide the title in favor of just the logo being visible
.. raw:: html
<style media="screen" type="text/css">
h1 { display:none; }
</style>
##################################
Astropy Core Package Documentation
##################################
.. |logo_svg| image:: _static/astropy_banner.svg
.. |logo_png| image:: _static/astropy_banner_96.png
.. raw:: html
<img src="_images/astropy_banner.svg" onerror="this.src='_images/astropy_banner_96.png'; this.onerror=null;" width="485"/>
.. only:: latex
.. image:: _static/astropy_logo.pdf
Welcome to the Astropy documentation! Astropy is a community-driven
package intended to contain much of the core functionality and some common
tools needed for performing astronomy and astrophysics with Python.
.. _user-docs:
******************
User Documentation
******************
.. only:: html
:doc:`whatsnew/1.3`
-------------------
.. only:: latex
.. toctree::
:maxdepth: 1
whatsnew/1.0
**Astropy at a glance**
.. toctree::
:maxdepth: 1
overview
install
getting_started
Example gallery <generated/examples/index>
**Core data structures and transformations**
.. toctree::
:maxdepth: 1
constants/index
units/index
nddata/index
table/index
time/index
coordinates/index
wcs/index
modeling/index
analytic_functions/index
**Connecting up: Files and I/O**
.. toctree::
:maxdepth: 1
io/unified
io/fits/index
io/ascii/index
io/votable/index
io/misc
vo/index
**Astronomy computations and utilities**
.. toctree::
:maxdepth: 1
cosmology/index
convolution/index
visualization/index
stats/index
**Nuts and bolts of Astropy**
.. toctree::
:maxdepth: 1
config/index
io/registry
logging
warnings
utils/index
testhelpers
**Astropy project details**
.. toctree::
:maxdepth: 1
stability
whatsnew/index
known_issues
credits
license
.. _getting_help:
************
Getting help
************
If you want to get help or discuss issues with other Astropy users, you can sign
up for the `astropy mailing list`_. Alternatively, the `astropy-dev mailing
list`_ is where you should go to discuss more technical aspects of Astropy with
the developers. You can also email the astropy developers privately at
`feedback@astropy.org`_...but remember that questions you ask
publicly serve as resources for other users!
.. _reporting_issues:
****************
Reporting Issues
****************
If you have found a bug in Astropy please report it. The preferred way is to
create a new issue on the Astropy `GitHub issue page
<http://github.com/astropy/astropy/issues>`_; that requires `creating a free
account <https://github.com>`_ on GitHub if you do not have one.
If you prefer not to create a GitHub account, please report the issue to either
the `astropy mailing list`_, the `astropy-dev mailing list`_ or sending a
private email to the astropy core developers at
`feedback@astropy.org <mailto:feedback@astropy.org>`_.
Please include an example that demonstrates the issue that will allow the
developers to reproduce and fix the problem. You may be asked to also provide
information about your operating system and a full Python stack trace; the
Astropy developers will walk you through obtaining a stack trace if it is
necessary.
For astropy-helpers
-------------------
As of Astropy v0.4, Astropy and many affiliated packages use a package of
utilities called astropy-helpers during building and installation. If you have
any build/installation issue--particularly if you're getting a traceback
mentioning the ``astropy_helpers`` or ``ah_bootstrap`` modules--please send a
report to the `astropy-helpers issue tracker
<https://github.com/astropy/astropy-helpers/issues>`_. If you're not sure,
however, it's fine to report via the main Astropy issue tracker or one of the
other avenues described above.
************
Contributing
************
The Astropy project is made both by and for its users, so we highly encourage
contributions at all levels. This spans the gamut from sending an email
mentioning a typo in the documentation or requesting a new feature all the way
to developing a major new package.
The full range of ways to be part of the Astropy project are described at
`Contribute to Astropy <http://www.astropy.org/contribute.html>`_. To get
started contributing code or documentation (no git or GitHub experience
necessary):
.. toctree::
:maxdepth: 1
development/workflow/get_devel_version
development/workflow/development_workflow
.. _developer-docs:
***********************
Developer Documentation
***********************
The developer documentation contains instructions for how to contribute to
Astropy or affiliated packages, as well as coding, documentation, and
testing guidelines. For the guiding vision of this process and the project
as a whole, see :doc:`development/vision`.
There are additional tools of use for developers in the
`astropy/astropy-tools repository
<http://github.com/astropy/astropy-tools>`__.
.. toctree::
:maxdepth: 1
development/workflow/development_workflow
development/codeguide
development/docguide
development/testguide
development/scripts
development/building
development/ccython
development/releasing
development/workflow/maintainer_workflow
development/affiliated-packages
changelog
******************
Indices and Tables
******************
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
.. _astropy mailing list: http://mail.scipy.org/mailman/listinfo/astropy
.. _feedback@astropy.org: mailto:feedback@astropy.org
|