diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2016-01-02 08:16:15 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2016-01-02 08:16:15 +0100 |
commit | dbee7a1e0c8626559dee47dfda6dcbc6edc0a5ca (patch) | |
tree | 7bedb853ab94b1dbd032848bf1cabdd5da3eeaed /src | |
parent | typo (diff) | |
download | solar-python-dbee7a1e0c8626559dee47dfda6dcbc6edc0a5ca.tar.gz solar-python-dbee7a1e0c8626559dee47dfda6dcbc6edc0a5ca.tar.bz2 solar-python-dbee7a1e0c8626559dee47dfda6dcbc6edc0a5ca.tar.xz |
m doc
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/solar_python.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/solar_python.py b/src/solar_python.py index a1f1b66..0c380be 100644 --- a/src/solar_python.py +++ b/src/solar_python.py @@ -428,8 +428,8 @@ def solar_elevation_from_time(t, latitude, longitude): the equator, negative for southwards @param longitude:float The longitude in degrees eastwards from Greenwich, negative for westwards - @return :float The Sun's apparent at the specified time - as seen from the specified position, + @return :float The Sun's apparent elevation at the specified + time as seen from the specified position, measured in radians ''' rc = julian_centuries_to_julian_day(t) @@ -450,8 +450,8 @@ def solar_elevation(latitude, longitude, t = None): Greenwich, negative for westwards @param t:float? The time in Julian Centuries, `None` for the current time - @return :float The Sun's apparent at the specified time - as seen from the specified position, + @return :float The Sun's apparent elevation at the specified + time as seen from the specified position, measured in degrees ''' rc = julian_centuries() if t is None else t |