summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-06-05 03:47:43 +0200
committerMattias Andrée <maandree@operamail.com>2014-06-05 03:47:43 +0200
commita4d8af2573452ee5bda6ad9ce405aded23736b9e (patch)
tree53916d509064b301325f94ee7f24f17db5209a5e /src
parentadd solstice prediction (diff)
downloadblueshift-a4d8af2573452ee5bda6ad9ce405aded23736b9e.tar.gz
blueshift-a4d8af2573452ee5bda6ad9ce405aded23736b9e.tar.bz2
blueshift-a4d8af2573452ee5bda6ad9ce405aded23736b9e.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/solar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/solar.py b/src/solar.py
index 028330c..ef74c08 100644
--- a/src/solar.py
+++ b/src/solar.py
@@ -515,7 +515,7 @@ def past_equinox(t = None):
# TODO document
def future_past_solstice(delta, t = None):
- e = 0.0001
+ e = 0.00001
fun = lambda t : (solar_declination(t - e) - solar_declination(t + e)) / 2
return solar_prediction(delta, 0, fun, t = t)