aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2016-01-02 08:16:15 +0100
committerMattias Andrée <maandree@member.fsf.org>2016-01-02 08:16:15 +0100
commitdbee7a1e0c8626559dee47dfda6dcbc6edc0a5ca (patch)
tree7bedb853ab94b1dbd032848bf1cabdd5da3eeaed
parenttypo (diff)
downloadsolar-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>
-rw-r--r--src/solar_python.py8
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