Skip to content

Commit aa22772

Browse files
authored
#50 Merge pull request from deshima-dev/astropenguin/issue49
Release v0.8.0
2 parents 87ed82b + 83f8b8b commit aa22772

6 files changed

Lines changed: 102 additions & 258 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
20+
python: ["3.9", "3.10", "3.11", "3.12"]
2121
steps:
2222
- uses: actions/checkout@v3
2323
- uses: actions/setup-python@v4

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ message: "If you use this software, please cite it as below."
33

44
title: "dems"
55
abstract: "DESHIMA measurement set by DataArray"
6-
version: 0.7.0
7-
date-released: 2023-10-29
6+
version: 0.8.0
7+
date-released: 2023-11-07
88
license: "MIT"
99
doi: "10.5281/zenodo.8151950"
1010
url: "https://github.com/deshima-dev/dems"

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ da = MS.new(
4040
| | name | Name | DEMS name | - | "DEMS" | str | - | - |
4141
| Dimensions | time | Dimension | Start time in UTC | - | 1970-01-01T00:00:00.000000000 | numpy.ndarray | (time,) | datetime64[ns] |
4242
| | chan | Dimension | Channel ID | - | 0 | numpy.ndarray | (chan,) | int64 |
43-
| Labels | beam | Coordinate | Beam label | - | "" | numpy.ndarray | (time,) | str |
44-
| | scan | Coordinate | Scan label | - | "" | numpy.ndarray | (time,) | str |
45-
| | state | Coordinate | State label | - | "" | numpy.ndarray | (time,) | str |
43+
| Labels | beam | Coordinate | Beam label | - | "" | numpy.ndarray | (time,) | str (<U16) |
44+
| | scan | Coordinate | Scan label | - | "" | numpy.ndarray | (time,) | str (<U16) |
45+
| | state | Coordinate | State label | - | "" | numpy.ndarray | (time,) | str (<U16) |
4646
| Telescope pointing | lon | Coordinate | Sky longitude | deg | 0.0 | numpy.ndarray | (time,) | float64 |
4747
| | lat | Coordinate | Sky latitude | deg | 0.0 | numpy.ndarray | (time,) | float64 |
4848
| | lon_origin | Coordinate | Reference sky longitude | deg | 0.0 | numpy.ndarray | (time,) | float64 |
4949
| | lat_origin | Coordinate | Reference sky latitude | deg | 0.0 | numpy.ndarray | (time,) | float64 |
50-
| | frame | Coordinate | Sky coordinate frame | - | "altaz" | numpy.ndarray | () | str |
50+
| | frame | Coordinate | Sky coordinate frame | - | "altaz" | numpy.ndarray | () | str (<U16) |
5151
| Weather information | temperature | Coordinate | Ground atmospheric temperature | K | 0.0 | numpy.ndarray | (time,) | float64 |
5252
| | pressure | Coordinate | Ground atmospheric pressure | Pa | 0.0 | numpy.ndarray | (time,) | float64 |
5353
| | humidity | Coordinate | Ground relative humidity | 1 | 0.0 | numpy.ndarray | (time,) | float64 |
@@ -77,11 +77,11 @@ da = MS.new(
7777
| | aste_misti_lon | Coordinate | [ASTE] MiSTI sky longitude | deg | 0.0 | numpy.ndarray | (time,) | float64 |
7878
| | aste_misti_lat | Coordinate | [ASTE] MiSTI sky latitude | deg | 0.0 | numpy.ndarray | (time,) | float64 |
7979
| | aste_misti_pwv | Coordinate | [ASTE] MiSTI measured PWV | mm | 0.0 | numpy.ndarray | (time,) | float64 |
80-
| | aste_misti_frame | Coordinate | [ASTE] MiSTI sky coordinate frame | - | "altaz" | numpy.ndarray | () | str |
80+
| | aste_misti_frame | Coordinate | [ASTE] MiSTI sky coordinate frame | - | "altaz" | numpy.ndarray | () | str (<U16) |
8181
| DESHIMA 2.0 specific | d2_mkid_id | Coordinate | [DESHIMA 2.0] MKID ID | - | 0 | numpy.ndarray | (chan,) | int64 |
82-
| | d2_mkid_type | Coordinate | [DESHIMA 2.0] MKID type | - | "" | numpy.ndarray | (chan,) | str |
82+
| | d2_mkid_type | Coordinate | [DESHIMA 2.0] MKID type | - | "" | numpy.ndarray | (chan,) | str (<U16) |
8383
| | d2_mkid_frequency | Coordinate | [DESHIMA 2.0] MKID center frequency | Hz | 0.0 | numpy.ndarray | (chan,) | float64 |
8484
| | d2_roomchopper_isblocking | Coordinate | [DESHIMA 2.0] Whether room chopper is blocking sensor | - | False | numpy.ndarray | (time,) | bool |
8585
| | d2_skychopper_isblocking | Coordinate | [DESHIMA 2.0] Whether sky chopper is blocking sensor | - | False | numpy.ndarray | (time,) | bool |
86-
| | d2_dems_version | Attribute | [DESHIMA 2.0] DEMS version | - | "0.7.0" | str | - | - |
86+
| | d2_dems_version | Attribute | [DESHIMA 2.0] DEMS version | - | "0.8.0" | str | - | - |
8787
| | d2_demerge_version | Attribute | [DESHIMA 2.0] demerge version | - | "2.0.0" | str | - | - |

dems/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__all__ = ["d1", "d2"]
2-
__version__ = "0.7.0"
2+
__version__ = "0.8.0"
33

44

55
# submodules

0 commit comments

Comments
 (0)