Skip to content

Commit

Permalink
Fixed error in DR5 estimatd end of data collection time.
Browse files Browse the repository at this point in the history
  • Loading branch information
agabrown committed Dec 15, 2024
1 parent 0d63c36 commit 9b919d5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.2.2 (Dec 2024)

* Fixed error in DR5 estimatd end of data collection time.

## 3.2.1 (Dec 2024)

* Version change to fix automated PyPI publication.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pygaia"
description = "Gaia science performance simulation toolkit"
version = "3.2.1"
version = "3.2.2"
authors = [{ name = "Anthony G.A. Brown", email = "brown@strw.leidenuniv.nl" }]
readme = "README.md"
requires-python = ">=3.6"
Expand Down
8 changes: 4 additions & 4 deletions src/pygaia/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"tcb": Time("2020-01-20T22:01:30.250520158", scale="tcb"),
},
"dr5": {
"obmt": 353907908175187136,
"tcb": Time("2025-01-15T06:30:00", scale="tcb"),
"obmt": 353931400866777600,
"tcb": Time("2025-01-15T06:31:32.690919588", scale="tcb"),
},
}

Expand Down Expand Up @@ -142,11 +142,11 @@ def gaiadr_timespan(release=_default_release, epsl=True, absolute=True):
Returns
-------
start, end : tuple
Start and end times in as astropy.time.Time instances, or in Julian days refered to J2010.0
Start and end times as astropy.time.Time instances, or in Julian days refered to J2010.0
Notes
-----
The end time for DR5 is an estimate.
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.
"""
_check_release(release)
if epsl:
Expand Down

0 comments on commit 9b919d5

Please sign in to comment.