-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Faes
committed
Dec 2, 2024
1 parent
1d74adc
commit 5b754e0
Showing
15 changed files
with
126 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Versioning | ||
========================================= | ||
Legacy versions | ||
------------------ | ||
For *numpy < 2*, use *pyhdust < 1.6*. | ||
|
||
|
||
Version 1.6.0 | ||
-------------- | ||
**pyhdust** 1.6.0 was tested with the following modules: | ||
|
||
.. code:: | ||
astropy 7.0.0 | ||
emcee 3.1.6 | ||
ipython 8.29.0 | ||
matplotlib 3.9.2 | ||
numpy 2.1.3 | ||
packaging 24.2 | ||
pandas 2.2.3 | ||
pip 24.2 | ||
pyhdust 1.6.0 | ||
python-dateutil 2.9.0.post0 | ||
scipy 1.14.1 | ||
setuptools 75.1.0 | ||
six 1.16.0 | ||
Sphinx 8.1.3 | ||
sphinx-rtd-theme 3.0.2 | ||
wget 3.2 | ||
wheel 0.44.0 | ||
xmltodict 0.14.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
except ImportError: | ||
_warn.warn("# matplotlib and/or scipy module not installed!!") | ||
|
||
__version__ = "1.5.12-1" | ||
__version__ = "1.6.0" | ||
__release__ = "Stable" | ||
__author__ = "Daniel Moser" | ||
__email__ = "[email protected]" | ||
|
@@ -2366,7 +2366,7 @@ def obs_ver(hmin, hnas, hmax, hpoe): | |
else: | ||
if debug: | ||
print(hmin, hnas, hmax, hpoe) | ||
hnas = hpoe = _np.NaN | ||
hnas = hpoe = _np.nan | ||
return (hnas, hpoe) | ||
|
||
# equinocio set 2011 (djsol) | ||
|
@@ -2495,8 +2495,8 @@ def obs_ver(hmin, hnas, hmax, hpoe): | |
if dt > 12: | ||
dt = dt - 24 | ||
if dt < 3 / 4.0: | ||
hnas = _np.NaN | ||
hpoe = _np.NaN | ||
hnas = _np.nan | ||
hpoe = _np.nan | ||
|
||
# procura posicao nas efemerides (pef) | ||
if _os.path.exists("{0}refs/obs_ef.txt".format(hdtpath())): | ||
|
@@ -2550,8 +2550,8 @@ def obs_ver(hmin, hnas, hmax, hpoe): | |
fase_inc = ((djnas - T0) % per) / per | ||
fase_fim = ((djpoe - T0) % per) / per | ||
else: | ||
fase_inc = _np.NaN | ||
fase_fim = _np.NaN | ||
fase_inc = _np.nan | ||
fase_fim = _np.nan | ||
|
||
# tempos locais | ||
hlmin = hnas - hz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.