diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-06-05 03:47:43 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-06-05 03:47:43 +0200 |
commit | a4d8af2573452ee5bda6ad9ce405aded23736b9e (patch) | |
tree | 53916d509064b301325f94ee7f24f17db5209a5e | |
parent | add solstice prediction (diff) | |
download | blueshift-a4d8af2573452ee5bda6ad9ce405aded23736b9e.tar.gz blueshift-a4d8af2573452ee5bda6ad9ce405aded23736b9e.tar.bz2 blueshift-a4d8af2573452ee5bda6ad9ce405aded23736b9e.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/solar.py | 2 |
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) |