Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
598ee17
First commit of the `splice` module
ladsantos Feb 28, 2023
fb4b4f2
Merge branch 'spacetelescope:master' into dev_ldsantos
ladsantos Feb 28, 2023
0c7da4b
Added documentation for the `splice` module
ladsantos Mar 1, 2023
fe21f19
Merge branch 'dev_ldsantos' of https://github.com/ladsantos/stistools…
ladsantos Mar 1, 2023
637460b
Merge branch 'spacetelescope:master' into dev_ldsantos
ladsantos Mar 1, 2023
bece227
Updated the test suite for `splice`
ladsantos Mar 2, 2023
0bd3287
Small correction in the docs of `splice`
ladsantos Mar 2, 2023
19f9ba7
Renamed some functions in the `splice` module to be consistent with t…
ladsantos Mar 2, 2023
1dcdbe4
More small corrections to the docs of `splice`
ladsantos Mar 2, 2023
925b033
Corrected docstrings, added note about ULLYSES, implemented new weigh…
ladsantos Mar 31, 2023
353a7ac
Changed how the DQ flags are dealt with in interpolated pixels
ladsantos Apr 6, 2023
507634e
Changed how the wavelength grid of the merged section is calculated
ladsantos Apr 25, 2023
613353b
Corrected bug that occurred when there is a unique section with only …
ladsantos Apr 28, 2023
d4112bd
Fixed bug that occurred when there are zero fluxes in spectrum
ladsantos May 1, 2023
5a4bf9c
Fixed bug that occurred when raising error about weighting mode
ladsantos Jan 31, 2024
a427b8d
Merge branch 'spacetelescope:master' into dev_ldsantos
ladsantos Jan 31, 2024
e8c1b50
Merge branch 'dev_ldsantos' of https://github.com/ladsantos/stistools…
ladsantos Jan 31, 2024
bfe6bd5
Added a new feature to set an order-edge truncation when merging over…
ladsantos May 24, 2024
604bf60
Merge branch 'dev_ldsantos' of https://github.com/ladsantos/stistools…
ladsantos May 24, 2024
a2f5407
Small bug corrections suggested by S. Lockwood on Aug 15, 2024
ladsantos Feb 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ for getting started.
ocrreject
radialvel
r_util
splice
sshift
stisnoise
tastis
Expand Down
11 changes: 11 additions & 0 deletions doc/source/splice.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.. _splice:

**************************
splice
**************************

.. currentmodule:: stistools.splice

.. automodule:: stistools.splice
:members:
:undoc-members:
1 change: 1 addition & 0 deletions stistools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from . import x1d
from . import x2d
from . import mktrace
from . import splice
from . import sshift
from . import stisnoise
from . import wx2d
Expand Down
Loading