-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from IPAC-SW/docs
Update Sphinx
- Loading branch information
Showing
24 changed files
with
234 additions
and
114 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,10 +1,20 @@ | ||
API | ||
=== | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
constants | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
core | ||
interface | ||
conversion | ||
flux | ||
population | ||
interface | ||
observatory | ||
population | ||
propagation | ||
spice | ||
time | ||
vector |
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,6 @@ | ||
constants | ||
========= | ||
|
||
.. automodule:: neospy.constants | ||
:members: | ||
:inherited-members: |
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,6 @@ | ||
conversion | ||
========== | ||
|
||
.. automodule:: neospy.conversion | ||
:members: | ||
:inherited-members: |
This file was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
Flux | ||
flux | ||
==== | ||
|
||
shape | ||
|
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,21 @@ | ||
observatories | ||
============= | ||
|
||
|
||
NEOS | ||
---- | ||
.. automodule:: neospy.neos | ||
:members: | ||
:inherited-members: | ||
|
||
WISE | ||
---- | ||
.. automodule:: neospy.wise | ||
:members: | ||
:inherited-members: | ||
|
||
ZTF | ||
--- | ||
.. automodule:: neospy.ztf | ||
:members: | ||
:inherited-members: |
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,6 @@ | ||
propagation | ||
=========== | ||
|
||
.. automodule:: neospy.propagation | ||
:members: | ||
:inherited-members: |
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,6 @@ | ||
spice | ||
===== | ||
|
||
.. automodule:: neospy.spice | ||
:members: | ||
:inherited-members: |
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,7 @@ | ||
Time | ||
==== | ||
|
||
.. automodule:: neospy.time | ||
:members: | ||
:inherited-members: | ||
|
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,6 @@ | ||
core | ||
==== | ||
|
||
.. automodule:: neospy.vector | ||
:members: Vector | ||
:inherited-members: |
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
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,24 +1,24 @@ | ||
from __future__ import annotations | ||
import numpy as np | ||
|
||
# Effective wavelength of the NC1 and NC2 bands in nm. | ||
BANDS: list[float] = [4700.0, 8000.0] | ||
"""Effective wavelength of the NC1 and NC2 bands in nm.""" | ||
|
||
FOV_WIDTH: float = 7.10 | ||
"""Expected effective field of view width in degrees""" | ||
|
||
FOV_HEIGHT: float = 1.68 | ||
"""Expected effective field of view height in degrees""" | ||
|
||
# Zero point magnitude for nc1 and nc2 | ||
ZERO_MAGS: list[float] = [170.662, 64.13] | ||
"""Zero point magnitude for nc1 and nc2""" | ||
|
||
COLOR_CORR = np.array( | ||
[ # Tbb nc1 nc2 | ||
[200.0, 1.50001, 1.17925], | ||
[220.0, 1.38320, 1.10277], | ||
[240.0, 1.29964, 1.05175], | ||
[260.0, 1.23789, 1.01713], | ||
[280.0, 1.19106, 0.99348], | ||
[300.0, 1.15477, 0.97740], | ||
[400.0, 1.05708, 0.95284], | ||
[500.0, 1.01897, 0.96149], | ||
] | ||
) | ||
COLOR_CORR = [ | ||
# Tbb nc1 nc2 | ||
[200.0, 1.50001, 1.17925], | ||
[220.0, 1.38320, 1.10277], | ||
[240.0, 1.29964, 1.05175], | ||
[260.0, 1.23789, 1.01713], | ||
[280.0, 1.19106, 0.99348], | ||
[300.0, 1.15477, 0.97740], | ||
[400.0, 1.05708, 0.95284], | ||
[500.0, 1.01897, 0.96149], | ||
] | ||
"""Expected color correction required for black body sources""" |
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
Oops, something went wrong.