-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
115 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
################################ | ||
Extinguish or De-extinguish Data | ||
################################ | ||
|
||
To be added |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
##################### | ||
Fit Extinction Curves | ||
##################### | ||
|
||
To be added. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.. automodapi:: dust_extinction.dust_extinction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,79 @@ | ||
Documentation | ||
============= | ||
############################ | ||
Interstellar Dust Extinction | ||
############################ | ||
|
||
``dust_extinction`` is a python package to provide interstellar dust extinction | ||
curves. | ||
|
||
While there are other python packages that provide some of the extinction | ||
curves contained here, the explicit motivation for this package is to provide | ||
extinction curves to those using them to model/correct their data and those | ||
studying extinction curves directly to better undertand interstellar dust. | ||
|
||
This package is developed in the astropy affiliated package template and uses | ||
the astropy.modeling framework. | ||
|
||
Installation | ||
============ | ||
|
||
To be added | ||
|
||
User Documenation | ||
================= | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
Flavors of Models <dust_extinction/model_flavors.rst> | ||
Extinguish or de-extinguish data <dust_extinction/extinguish.rst> | ||
Fit measured extinction curves <dust_extinction/fit_extinction.rst> | ||
|
||
|
||
Reporting Issues | ||
================ | ||
|
||
If you have found a bug in ``dust_extinction`` please report it by creating a | ||
new issue on the ``dust_extinction`` `GitHub issue tracker | ||
<https://github.com/karllark/dust_extinction/issues>`_. | ||
|
||
This is an affiliated package for the AstroPy package. The documentation for | ||
this package is here: | ||
Please include an example that demonstrates the issue sufficiently so that | ||
the developers can reproduce and fix the problem. You may also be asked to | ||
provide information about your operating system and a full Python | ||
stack trace. The developers will walk you through obtaining a stack | ||
trace if it is necessary. | ||
|
||
Contributing | ||
============ | ||
|
||
Like the `Astropy`_ project, ``dust_extinction`` is made both by and for its | ||
users. We accept contributions at all levels, spanning the gamut from | ||
fixing a typo in the documentation to developing a major new feature. | ||
We welcome contributors who will abide by the `Python Software | ||
Foundation Code of Conduct | ||
<https://www.python.org/psf/codeofconduct/>`_. | ||
|
||
``dust_extinction`` follows the same workflow and coding guidelines as | ||
`Astropy`_. The following pages will help you get started with | ||
contributing fixes, code, or documentation (no git or GitHub | ||
experience necessary): | ||
|
||
* `How to make a code contribution <http://astropy.readthedocs.io/en/stable/development/workflow/development_workflow.html>`_ | ||
|
||
* `Coding Guidelines <http://docs.astropy.io/en/latest/development/codeguide.html>`_ | ||
|
||
* `Try the development version <http://astropy.readthedocs.io/en/stable/development/workflow/get_devel_version.html>`_ | ||
|
||
* `Developer Documentation <http://docs.astropy.org/en/latest/#developer-documentation>`_ | ||
|
||
|
||
For the complete list of contributors please see the `dust_extinction | ||
contributors page on Github | ||
<https://github.com/karllark/dust_extinction/graphs/contributors>`_. | ||
|
||
Reference API | ||
============= | ||
.. toctree:: | ||
:maxdepth: 2 | ||
:maxdepth: 1 | ||
|
||
dust_extinction/index.rst | ||
dust_extinction/reference_api.rst | ||
|
||
.. note:: The layout of this directory is simply a suggestion. To follow | ||
traditional practice, do *not* edit this page, but instead place | ||
all documentation for the affiliated package inside ``packagename/``. | ||
The traditional practice was intended to allow the affiliated | ||
package to eventually be merged into the main astropy package. | ||
You can follow this practice or choose your own layout. |