Skip to content

Commit

Permalink
#64 Merge pull request from deshima-dev/astropenguin/issue63
Browse files Browse the repository at this point in the history
Update ASTE-specific observation information
  • Loading branch information
astropenguin authored Jul 17, 2024
2 parents 809db55 + e3a2ab0 commit fb07b42
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ message: "If you use this software, please cite it as below."

title: "dems"
abstract: "DESHIMA measurement set by DataArray"
version: 2024.7.1
version: 2024.7.2
date-released: 2024-07-17
license: "MIT"
doi: "10.5281/zenodo.8151950"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ DESHIMA measurement set by DataArray
## Installation

```shell
pip install dems==2024.7.1
pip install dems==2024.7.2
```

## Usage
Expand Down Expand Up @@ -71,7 +71,7 @@ da = MS.new(
| | aste_obs_group | Attribute | [ASTE] Observation group | - | "" | str | - | - |
| | aste_obs_id | Attribute | [ASTE] Observation ID | - | "" | str | - | - |
| | aste_obs_project | Attribute | [ASTE] Observation project | - | "" | str | - | - |
| | aste_obs_table | Attribute | [ASTE] Observation table (= observation) | - | "" | str | - | - |
| | aste_obs_file | Attribute | [ASTE] Observation instruction (= observation) | - | "" | str | - | - |
| | aste_obs_user | Attribute | [ASTE] Observer (= observer) | - | "" | str | - | - |
| | aste_subref_x | Coordinate | [ASTE] Subreflector offset of X axis | mm | 0.0 | numpy.ndarray | (time,) | float64 |
| | aste_subref_y | Coordinate | [ASTE] Subreflector offset of Y axis | mm | 0.0 | numpy.ndarray | (time,) | float64 |
Expand Down
2 changes: 1 addition & 1 deletion dems/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__all__ = ["d1", "d2"]
__version__ = "2024.7.1"
__version__ = "2024.7.2"


# submodules
Expand Down
4 changes: 2 additions & 2 deletions dems/d2.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ class MS(AsDataArray):
aste_obs_group: Attr[str] = ""
aste_obs_id: Attr[str] = ""
aste_obs_project: Attr[str] = ""
aste_obs_table: Attr[str] = ""
aste_obs_file: Attr[str] = ""
aste_obs_user: Attr[str] = ""
aste_subref_x: Coordof[AsteSubrefX] = 0.0
aste_subref_y: Coordof[AsteSubrefY] = 0.0
Expand Down Expand Up @@ -451,7 +451,7 @@ class Cube(AsDataArray):
aste_obs_group: Attr[str] = ""
aste_obs_id: Attr[str] = ""
aste_obs_project: Attr[str] = ""
aste_obs_table: Attr[str] = ""
aste_obs_file: Attr[str] = ""
aste_obs_user: Attr[str] = ""
# DESHIMA 2.0 specific
d2_mkid_id: Coordof[D2MkidId] = 0
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 = "dems"
version = "2024.7.1"
version = "2024.7.2"
description = "DESHIMA measurement set by DataArray"
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
license = "MIT"
Expand Down

0 comments on commit fb07b42

Please sign in to comment.