Skip to content

Commit

Permalink
Merge pull request #127 from deshima-dev/astropenguin/issue126
Browse files Browse the repository at this point in the history
Fix qlook module
  • Loading branch information
astropenguin authored Nov 9, 2023
2 parents 8c24ea0 + 469fc46 commit 10c671f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ message: "If you use this software, please cite it as below."

title: "de:code"
abstract: "DESHIMA code for data analysis"
version: 2.7.0
date-released: 2023-11-08
version: 2.7.1
date-released: 2023-11-09
license: "MIT"
doi: "10.5281/zenodo.3384216"
url: "https://github.com/deshima-dev/decode"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ DESHIMA code for data analysis
## Installation

```shell
pip install decode==2.7.0
pip install decode==2.7.1
```
2 changes: 1 addition & 1 deletion decode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"qlook",
"select",
]
__version__ = "2.7.0"
__version__ = "2.7.1"


# submodules
Expand Down
6 changes: 3 additions & 3 deletions decode/qlook.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def contmap(
exclude=exclude_mkid_ids,
)
da_on = select.by(da, "state", include="SCAN")
da_off = select.by(da, "state", exclude="TRAN")
da_off = select.by(da, "state", exclude="SCAN")

# subtract temporal baseline
da_base = (
Expand Down Expand Up @@ -176,7 +176,7 @@ def skydip(
exclude=exclude_mkid_ids,
)
da_on = select.by(da, "state", include="SCAN")
da_off = select.by(da, "state", exclude="GRAD")
da_off = select.by(da, "state", exclude="SCAN")

# plotting
weight = da_off.std("time") ** -2
Expand Down Expand Up @@ -242,7 +242,7 @@ def zscan(
exclude=exclude_mkid_ids,
)
da_on = select.by(da, "state", include="ON")
da_off = select.by(da, "state", exclude="GRAD")
da_off = select.by(da, "state", exclude="ON")

# plotting
weight = da_off.std("time") ** -2
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 = "decode"
version = "2.7.0"
version = "2.7.1"
description = "DESHIMA code for data analysis"
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
keywords = [
Expand Down

0 comments on commit 10c671f

Please sign in to comment.