Skip to content

Commit 9b919d5

Browse files
committed
Fixed error in DR5 estimatd end of data collection time.
1 parent 0d63c36 commit 9b919d5

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.2.2 (Dec 2024)
2+
3+
* Fixed error in DR5 estimatd end of data collection time.
4+
15
## 3.2.1 (Dec 2024)
26

37
* Version change to fix automated PyPI publication.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "pygaia"
77
description = "Gaia science performance simulation toolkit"
8-
version = "3.2.1"
8+
version = "3.2.2"
99
authors = [{ name = "Anthony G.A. Brown", email = "[email protected]" }]
1010
readme = "README.md"
1111
requires-python = ">=3.6"

src/pygaia/utils.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
"tcb": Time("2020-01-20T22:01:30.250520158", scale="tcb"),
3939
},
4040
"dr5": {
41-
"obmt": 353907908175187136,
42-
"tcb": Time("2025-01-15T06:30:00", scale="tcb"),
41+
"obmt": 353931400866777600,
42+
"tcb": Time("2025-01-15T06:31:32.690919588", scale="tcb"),
4343
},
4444
}
4545

@@ -142,11 +142,11 @@ def gaiadr_timespan(release=_default_release, epsl=True, absolute=True):
142142
Returns
143143
-------
144144
start, end : tuple
145-
Start and end times in as astropy.time.Time instances, or in Julian days refered to J2010.0
145+
Start and end times as astropy.time.Time instances, or in Julian days refered to J2010.0
146146
147147
Notes
148148
-----
149-
The end time for DR5 is an estimate.
149+
The end time for DR5 is an estimate. The definitive time will be know after the end of observations, which is planned for 2025-01-15.
150150
"""
151151
_check_release(release)
152152
if epsl:

0 commit comments

Comments
 (0)