Skip to content

Commit

Permalink
Non-div dt steps during transit time search
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanLoh committed Oct 27, 2023
1 parent 62f0246 commit 9313d44
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions bin/nenupy_vcr_coordinates
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ class NenuFAR_Target(object):
if elevation.isscalar:
elevation = np.array([elevation.value]) * elevation.unit

largeDt = TimeDelta(3600, format='sec')
mediumDt = TimeDelta(600, format='sec')
smallDt = TimeDelta(60, format='sec')
largeDt = TimeDelta(3601, format='sec')
mediumDt = TimeDelta(599, format='sec')
smallDt = TimeDelta(59, format='sec')

# Broad search
times = self._timeRange(
Expand Down Expand Up @@ -299,9 +299,9 @@ class NenuFAR_Target(object):
raise TypeError(
'duration should be an astropy.TimeDelta instance.'
)
extDuration = TimeDelta(3600, format='sec')
largeDt = TimeDelta(1800, format='sec')
mediumDt = TimeDelta(60, format='sec')
extDuration = TimeDelta(3601, format='sec')
largeDt = TimeDelta(1799, format='sec')
mediumDt = TimeDelta(59, format='sec')
smallDt = TimeDelta(1, format='sec')

# Broad search
Expand Down
2 changes: 1 addition & 1 deletion nenupy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__copyright__ = "Copyright 2023, nenupy"
__credits__ = ["Alan Loh"]
__license__ = "MIT"
__version__ = "2.4.5"
__version__ = "2.4.6"
__maintainer__ = "Alan Loh"
__email__ = "alan.loh@obspm.fr"

Expand Down

0 comments on commit 9313d44

Please sign in to comment.