Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions docs/tutorials/tutorial1_basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24724,7 +24724,7 @@
"This is flagging bad quality data with a mask which combines the SPOC quality flags and the `tess_asteroids` lightcurve quality flags. By default it masks the following bits:\n",
"\n",
"- For SPOC, it masks bits [1, 2, 3, 4, 5, 6, 8, 10, 13, 15] as recommended in the [TESS Archive Manual](https://outerspace.stsci.edu/spaces/TESS/pages/14563420/2.0+-+Data+Product+Overview).\n",
"- For `tess_asteroids`, it masks bits [2, 4, 10] as defined by `_create_lc_quality()`. This corresponds to cadences with at least one non-science pixel inside the mask, at least one saturated pixel inside the mask or a pixel with a negative raw flux (i.e. before background correction).\n",
"- For `tess_asteroids`, it masks bits [2, 4, 10, 14] as defined by `_create_lc_quality()`. This corresponds to cadences with at least one non-science pixel inside the mask, at least one saturated pixel inside the mask or at least one pixel with a negative raw flux (i.e. before background correction) inside the mask, or cadences which are in the region of non-science data during sector 3.\n",
"\n",
"In the above example, there is no bad quality data when using the default mask. The bits to mask can be updated independently for SPOC, the aperture lightcurve and the PSF lightcurve:"
]
Expand Down Expand Up @@ -83531,7 +83531,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.18"
"version": "3.10.14"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tess-asteroids"
version = "1.5.0"
version = "1.5.1"
description = "Create TPFs and LCs for solar system asteroids observed by NASA's TESS mission."
license = "MIT"
authors = ["Amy Tuson <amy.l.tuson@nasa.gov>",
Expand Down
6 changes: 3 additions & 3 deletions src/tess_asteroids/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
# (https://outerspace.stsci.edu/display/TESS/2.0+-+Data+Product+Overview)
default_bad_spoc_bits = [1, 2, 3, 4, 5, 6, 8, 10, 13, 15]
# Default bad bits for LC quality masking: at least one pixel inside mask is non-science, saturated
# or negative raw flux.
default_bad_lc_bits = [2, 4, 10]
# or negative raw flux, or cadence is in region of non-science data during sector 3.
default_bad_lc_bits = [2, 4, 10, 14]

__version__ = "1.5.0"
__version__ = "1.5.1"
__all__ = ["MovingTPF"]

from .movingtpf import MovingTPF # noqa: E402
Loading
Loading