More documentation fixes for rise/set, altitude.

This commit is contained in:
Don Cross
2022-11-27 13:56:51 -05:00
parent e12d2e88c6
commit 5087e4df28
26 changed files with 66 additions and 66 deletions

View File

@@ -2886,11 +2886,11 @@ passing in the `peak` value returned from the previous call.
<a name="SearchHourAngle"></a>
### SearchHourAngle(body, observer, hourAngle, startTime, direction=1)
**Searches for the time when a celestial body reaches a specified hour angle as seen by an observer on the Earth.**
**Searches for the time when the center of a body reaches a specified hour angle as seen by an observer on the Earth.**
The *hour angle* of a celestial body indicates its position in the sky with respect
to the Earth's rotation. The hour angle depends on the location of the observer on the Earth.
The hour angle is 0 when the body reaches its highest angle above the horizon in a given day.
The hour angle is 0 when the body's center reaches its highest angle above the horizon in a given day.
The hour angle increases by 1 unit for every sidereal hour that passes after that point, up
to 24 sidereal hours when it reaches the highest point again. So the hour angle indicates
the number of hours that have passed since the most recent time that the body has culminated,

View File

@@ -6505,11 +6505,11 @@ class HourAngleEvent:
return 'HourAngleEvent({}, {})'.format(repr(self.time), repr(self.hor))
def SearchHourAngle(body, observer, hourAngle, startTime, direction = +1):
"""Searches for the time when a celestial body reaches a specified hour angle as seen by an observer on the Earth.
"""Searches for the time when the center of a body reaches a specified hour angle as seen by an observer on the Earth.
The *hour angle* of a celestial body indicates its position in the sky with respect
to the Earth's rotation. The hour angle depends on the location of the observer on the Earth.
The hour angle is 0 when the body reaches its highest angle above the horizon in a given day.
The hour angle is 0 when the body's center reaches its highest angle above the horizon in a given day.
The hour angle increases by 1 unit for every sidereal hour that passes after that point, up
to 24 sidereal hours when it reaches the highest point again. So the hour angle indicates
the number of hours that have passed since the most recent time that the body has culminated,