Mercurial > emacs
annotate lisp/calendar/lunar.el @ 106009:e6af95c4c862
Use gcc-generated dependency files if we can (GNU Make and gcc required).
* Makefile.in: If AUTO_DEPEND is defined, make gcc generate
dependency files in deps/. Include those files into Makefile.
* config.in: Generated (AUTO_DEPEND).
* configure.in: --enable-autodepend is new. Check for GNU Make
and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
gcc and GNU make to generate dependencies.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Sat, 14 Nov 2009 15:17:38 +0000 |
parents | 8c67d84c0faa |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
38422
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
20462
diff
changeset
|
1 ;;; lunar.el --- calendar functions for phases of the moon |
957 | 2 |
68721 | 3 ;; Copyright (C) 1992, 1993, 1995, 1997, 2001, 2002, 2003, 2004, 2005, |
100908 | 4 ;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
957 | 5 |
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu> | |
67465
a55ee709ec8d
Update copyright pending Emacs 22.
Glenn Morris <rgm@gnu.org>
parents:
65145
diff
changeset
|
7 ;; Maintainer: Glenn Morris <rgm@gnu.org> |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
957
diff
changeset
|
8 ;; Keywords: calendar |
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
957
diff
changeset
|
9 ;; Human-Keywords: moon, lunar phases, calendar, diary |
957 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93809
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
14 ;; it under the terms of the GNU General Public License as published by |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93809
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93809
diff
changeset
|
16 ;; (at your option) any later version. |
957 | 17 |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
18 ;; GNU Emacs is distributed in the hope that it will be useful, |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
21 ;; GNU General Public License for more details. |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
22 |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
23 ;; You should have received a copy of the GNU General Public License |
94653
e49abd957e81
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93809
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
957 | 25 |
26 ;;; Commentary: | |
27 | |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
28 ;; See calendar.el. |
957 | 29 |
30 ;; Based on ``Astronomical Formulae for Calculators,'' 3rd ed., by Jean Meeus, | |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
31 ;; Willmann-Bell, Inc., 1985 and ``Astronomical Algorithms'' by Jean Meeus, |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
32 ;; Willmann-Bell, Inc., 1991. |
957 | 33 ;; |
34 ;; WARNING: The calculations will be accurate only to within a few minutes. | |
35 | |
36 ;; The author would be delighted to have an astronomically more sophisticated | |
37 ;; person rewrite the code for the lunar calculations in this file! | |
38 | |
39 ;;; Code: | |
40 | |
93229 | 41 (require 'calendar) |
957 | 42 (require 'solar) |
93229 | 43 (require 'cal-dst) |
93640
ce3f8a4ae315
Update for cal-julian name changes.
Glenn Morris <rgm@gnu.org>
parents:
93489
diff
changeset
|
44 ;; calendar-astro-to-absolute and v versa are cal-autoloads. |
93229 | 45 ;;;(require 'cal-julian) |
957 | 46 |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
47 (defcustom lunar-phase-names |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
48 '("New Moon" "First Quarter Moon" "Full Moon" "Last Quarter Moon") |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
49 "List of names for the lunar phases." |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
50 :type '(list |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
51 (string :tag "New Moon") |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
52 (string :tag "First Quarter Moon") |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
53 (string :tag "Full Moon") |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
54 (string :tag "Last Quarter Moon")) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
55 :group 'calendar |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
56 :version "23.2") |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
57 |
957 | 58 (defun lunar-phase (index) |
59 "Local date and time of lunar phase INDEX. | |
60 Integer below INDEX/4 gives the lunation number, counting from Jan 1, 1900; | |
61 remainder mod 4 gives the phase: 0 new moon, 1 first quarter, 2 full moon, | |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
62 3 last quarter. Returns a list (DATE TIME PHASE)." |
7760
4edcac57a8f2
(calendar-mod): Remove; it was equivalent to `mod'. All callers changed.
Paul Eggert <eggert@twinsun.com>
parents:
6736
diff
changeset
|
63 (let* ((phase (mod index 4)) |
957 | 64 (index (/ index 4.0)) |
65 (time (/ index 1236.85)) | |
66 (date (+ (calendar-absolute-from-gregorian '(1 0.5 1900)) | |
67 0.75933 | |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
68 (* 29.53058868 index) ; FIXME 29.530588853? |
957 | 69 (* 0.0001178 time time) |
70 (* -0.000000155 time time time) | |
71 (* 0.00033 | |
72 (solar-sin-degrees (+ 166.56 | |
73 (* 132.87 time) | |
74 (* -0.009173 time time)))))) | |
4520 | 75 (sun-anomaly (mod |
957 | 76 (+ 359.2242 |
77 (* 29.105356 index) | |
78 (* -0.0000333 time time) | |
79 (* -0.00000347 time time time)) | |
80 360.0)) | |
4520 | 81 (moon-anomaly (mod |
957 | 82 (+ 306.0253 |
83 (* 385.81691806 index) | |
84 (* 0.0107306 time time) | |
85 (* 0.00001236 time time time)) | |
86 360.0)) | |
4520 | 87 (moon-lat (mod |
957 | 88 (+ 21.2964 |
89 (* 390.67050646 index) | |
90 (* -0.0016528 time time) | |
91 (* -0.00000239 time time time)) | |
92 360.0)) | |
93 (adjustment | |
94 (if (memq phase '(0 2)) | |
95 (+ (* (- 0.1734 (* 0.000393 time)) | |
96 (solar-sin-degrees sun-anomaly)) | |
97 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly))) | |
98 (* -0.4068 (solar-sin-degrees moon-anomaly)) | |
99 (* 0.0161 (solar-sin-degrees (* 2 moon-anomaly))) | |
100 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly))) | |
101 (* 0.0104 (solar-sin-degrees (* 2 moon-lat))) | |
102 (* -0.0051 (solar-sin-degrees (+ sun-anomaly moon-anomaly))) | |
103 (* -0.0074 (solar-sin-degrees (- sun-anomaly moon-anomaly))) | |
104 (* 0.0004 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly))) | |
105 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly))) | |
106 (* -0.0006 (solar-sin-degrees | |
107 (+ (* 2 moon-lat) moon-anomaly))) | |
108 (* 0.0010 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly))) | |
109 (* 0.0005 (solar-sin-degrees | |
110 (+ (* 2 moon-anomaly) sun-anomaly)))) | |
111 (+ (* (- 0.1721 (* 0.0004 time)) | |
112 (solar-sin-degrees sun-anomaly)) | |
113 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly))) | |
114 (* -0.6280 (solar-sin-degrees moon-anomaly)) | |
115 (* 0.0089 (solar-sin-degrees (* 2 moon-anomaly))) | |
116 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly))) | |
117 (* 0.0079 (solar-sin-degrees (* 2 moon-lat))) | |
118 (* -0.0119 (solar-sin-degrees (+ sun-anomaly moon-anomaly))) | |
119 (* -0.0047 (solar-sin-degrees (- sun-anomaly moon-anomaly))) | |
120 (* 0.0003 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly))) | |
121 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly))) | |
122 (* -0.0006 (solar-sin-degrees (+ (* 2 moon-lat) moon-anomaly))) | |
123 (* 0.0021 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly))) | |
124 (* 0.0003 (solar-sin-degrees | |
125 (+ (* 2 moon-anomaly) sun-anomaly))) | |
126 (* 0.0004 (solar-sin-degrees | |
127 (- sun-anomaly (* 2 moon-anomaly)))) | |
128 (* -0.0003 (solar-sin-degrees | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
129 (+ (* 2 sun-anomaly) moon-anomaly)))))) |
957 | 130 (adj (+ 0.0028 |
131 (* -0.0004 (solar-cosine-degrees | |
132 sun-anomaly)) | |
133 (* 0.0003 (solar-cosine-degrees | |
134 moon-anomaly)))) | |
135 (adjustment (cond ((= phase 1) (+ adjustment adj)) | |
136 ((= phase 2) (- adjustment adj)) | |
137 (t adjustment))) | |
138 (date (+ date adjustment)) | |
92860 | 139 (date (+ date (/ (- calendar-time-zone |
140 (solar-ephemeris-correction | |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
141 (calendar-extract-year |
3871
a9f9a058567f
* lunar.el (lunar-phase): Use time conversion from solar.el
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
142 (calendar-gregorian-from-absolute |
5213
e080f780f381
(lunar-phase): Add calendar-time-zone to solar ephemeris correction.
Paul Eggert <eggert@twinsun.com>
parents:
4520
diff
changeset
|
143 (truncate date))))) |
92860 | 144 60.0 24.0))) |
957 | 145 (time (* 24 (- date (truncate date)))) |
92860 | 146 (date (calendar-gregorian-from-absolute (truncate date))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
147 (adj (dst-adjust-time date time))) |
7777
c48a233494e1
(lunar-phase): Revised to use the rewritten and new fcns.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7760
diff
changeset
|
148 (list (car adj) (apply 'solar-time-string (cdr adj)) phase))) |
957 | 149 |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
150 (defconst lunar-cycles-per-year 12.3685 ; 365.25/29.530588853 |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
151 "Mean number of lunar cycles per 365.25 day year.") |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
152 |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
153 ;; FIXME new-moon index; use in lunar-phase-list implies always below. |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
154 (defun lunar-index (date) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
155 "Return the lunar index for Gregorian date DATE. |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
156 This is 4 times the approximate number of new moons since 1 Jan 1900. |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
157 The factor of 4 allows (mod INDEX 4) to represent the four quarters." |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
158 (* 4 (truncate |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
159 (* lunar-cycles-per-year |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
160 ;; Years since 1900, as a real. |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
161 (+ (calendar-extract-year date) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
162 (/ (calendar-day-number date) 366.0) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
163 -1900))))) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
164 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
165 (defun lunar-phase-list (month year) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
166 "List of lunar phases for three months starting with Gregorian MONTH, YEAR." |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
167 (let* ((index (lunar-index (list month 1 year))) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
168 (new-moon (lunar-phase index)) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
169 (end-date (let ((end-month month) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
170 (end-year year)) |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
171 (calendar-increment-month end-month end-year 3) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
172 (list (list end-month 1 end-year)))) |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
173 ;; Alternative for start-date: |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
174 ;;; (calendar-gregorian-from-absolute |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
175 ;;; (1- (calendar-absolute-from-gregorian (list month 1 year)))) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
176 (start-date (progn |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
177 (calendar-increment-month month year -1) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
178 (list (list month |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
179 (calendar-last-day-of-month month year) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
180 year)))) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
181 list) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
182 (while (calendar-date-compare new-moon end-date) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
183 (if (calendar-date-compare start-date new-moon) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
184 (setq list (append list (list new-moon)))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
185 (setq index (1+ index) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
186 new-moon (lunar-phase index))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
187 list)) |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
188 |
957 | 189 (defun lunar-phase-name (phase) |
190 "Name of lunar PHASE. | |
191 0 = new moon, 1 = first quarter, 2 = full moon, 3 = last quarter." | |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
192 (nth phase lunar-phase-names)) |
957 | 193 |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
194 (defvar displayed-month) ; from calendar-generate |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
195 (defvar displayed-year) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
196 |
92840
0880a434a38e
Add calendar-specific autoload cookies.
Glenn Morris <rgm@gnu.org>
parents:
92638
diff
changeset
|
197 ;;;###cal-autoload |
101084
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
198 (defun calendar-lunar-phases (&optional event) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
199 "Create a buffer with the lunar phases for the current calendar window. |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
200 If EVENT is non-nil, it's an event indicating the buffer position to |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
201 use instead of point." |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
202 (interactive (list last-nonmenu-event)) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
203 ;; If called from a menu, with the calendar window not selected. |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
204 (with-current-buffer |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
205 (if event (window-buffer (posn-window (event-start event))) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
206 (current-buffer)) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
207 (message "Computing phases of the moon...") |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
208 (let ((m1 displayed-month) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
209 (y1 displayed-year) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
210 (m2 displayed-month) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
211 (y2 displayed-year)) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
212 (calendar-increment-month m1 y1 -1) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
213 (calendar-increment-month m2 y2 1) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
214 (calendar-in-read-only-buffer lunar-phases-buffer |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
215 (calendar-set-mode-line |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
216 (if (= y1 y2) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
217 (format "Phases of the Moon from %s to %s, %d%%-" |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
218 (calendar-month-name m1) (calendar-month-name m2) y2) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
219 (format "Phases of the Moon from %s, %d to %s, %d%%-" |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
220 (calendar-month-name m1) y1 (calendar-month-name m2) y2))) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
221 (insert |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
222 (mapconcat |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
223 (lambda (x) |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
224 (format "%s: %s %s" (calendar-date-string (car x)) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
225 (lunar-phase-name (nth 2 x)) |
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
226 (cadr x))) |
101084
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
227 (lunar-phase-list m1 y1) "\n"))) |
38710cc3b8b5
(calendar-lunar-phases): Add event handling, for when called from
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
228 (message "Computing phases of the moon...done")))) |
957 | 229 |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
230 ;;;###cal-autoload |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
231 (define-obsolete-function-alias 'calendar-phases-of-moon |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
232 'calendar-lunar-phases "23.1") |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
233 |
957 | 234 ;;;###autoload |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
235 (defun lunar-phases (&optional arg) |
957 | 236 "Display the quarters of the moon for last month, this month, and next month. |
92638
8feda75f862e
(phases-of-moon, lunar-new-moon-on-or-after): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
92597
diff
changeset
|
237 If called with an optional prefix argument ARG, prompts for month and year. |
957 | 238 This function is suitable for execution in a .emacs file." |
239 (interactive "P") | |
240 (save-excursion | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
241 (let* ((date (if arg (calendar-read-date t) |
9713
d62e29b1d7a2
Give lunar phases buffer a symbolic name; use new form of calendar-read-date.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7777
diff
changeset
|
242 (calendar-current-date))) |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
243 (displayed-month (calendar-extract-month date)) |
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
244 (displayed-year (calendar-extract-year date))) |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
245 (calendar-lunar-phases)))) |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
246 |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
247 ;;;###autoload |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
248 (define-obsolete-function-alias 'phases-of-moon 'lunar-phases "23.1") |
957 | 249 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
250 (defvar date) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
251 |
93786 | 252 ;; To be called from diary-list-sexp-entries, where DATE is bound. |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
253 |
92840
0880a434a38e
Add calendar-specific autoload cookies.
Glenn Morris <rgm@gnu.org>
parents:
92638
diff
changeset
|
254 ;;;###diary-autoload |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
255 (defun diary-lunar-phases (&optional mark) |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
256 "Moon phases diary entry. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46618
diff
changeset
|
257 An optional parameter MARK specifies a face or single-character string to |
46618
6edefbc65dc4
(diary-phases-of-moon): Add optional MARK
Richard M. Stallman <rms@gnu.org>
parents:
38422
diff
changeset
|
258 use when highlighting the day in the calendar." |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
259 (let* ((index (lunar-index date)) |
957 | 260 (phase (lunar-phase index))) |
261 (while (calendar-date-compare phase (list date)) | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
262 (setq index (1+ index) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
263 phase (lunar-phase index))) |
957 | 264 (if (calendar-date-equal (car phase) date) |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
265 (cons mark (concat (lunar-phase-name (nth 2 phase)) " " |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
266 (cadr phase)))))) |
957 | 267 |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
268 ;;;###diary-autoload |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
269 (define-obsolete-function-alias 'diary-phases-of-moon |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
270 'diary-lunar-phases "23.1") |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
271 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
272 ;; For the Chinese calendar the calculations for the new moon need to be more |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
273 ;; accurate than those above, so we use more terms in the approximation. |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
274 (defun lunar-new-moon-time (k) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
275 "Astronomical (Julian) day number of K th new moon." |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
276 (let* ((T (/ k 1236.85)) |
92860 | 277 (T2 (* T T)) |
278 (T3 (* T T T)) | |
279 (T4 (* T2 T2)) | |
280 (JDE (+ 2451550.09765 | |
281 (* 29.530588853 k) | |
282 (* 0.0001337 T2) | |
283 (* -0.000000150 T3) | |
284 (* 0.00000000073 T4))) | |
285 (E (- 1 (* 0.002516 T) (* 0.0000074 T2))) | |
286 (sun-anomaly (+ 2.5534 | |
287 (* 29.10535669 k) | |
288 (* -0.0000218 T2) | |
289 (* -0.00000011 T3))) | |
290 (moon-anomaly (+ 201.5643 | |
291 (* 385.81693528 k) | |
292 (* 0.0107438 T2) | |
293 (* 0.00001239 T3) | |
294 (* -0.000000058 T4))) | |
295 (moon-argument (+ 160.7108 | |
296 (* 390.67050274 k) | |
297 (* -0.0016341 T2) | |
298 (* -0.00000227 T3) | |
299 (* 0.000000011 T4))) | |
300 (omega (+ 124.7746 | |
301 (* -1.56375580 k) | |
302 (* 0.0020691 T2) | |
303 (* 0.00000215 T3))) | |
304 (A1 (+ 299.77 (* 0.107408 k) (* -0.009173 T2))) | |
305 (A2 (+ 251.88 (* 0.016321 k))) | |
306 (A3 (+ 251.83 (* 26.641886 k))) | |
307 (A4 (+ 349.42 (* 36.412478 k))) | |
308 (A5 (+ 84.66 (* 18.206239 k))) | |
309 (A6 (+ 141.74 (* 53.303771 k))) | |
310 (A7 (+ 207.14 (* 2.453732 k))) | |
311 (A8 (+ 154.84 (* 7.306860 k))) | |
312 (A9 (+ 34.52 (* 27.261239 k))) | |
313 (A10 (+ 207.19 (* 0.121824 k))) | |
314 (A11 (+ 291.34 (* 1.844379 k))) | |
315 (A12 (+ 161.72 (* 24.198154 k))) | |
316 (A13 (+ 239.56 (* 25.513099 k))) | |
317 (A14 (+ 331.55 (* 3.592518 k))) | |
318 (correction | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
319 (+ (* -0.40720 (solar-sin-degrees moon-anomaly)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
320 (* 0.17241 E (solar-sin-degrees sun-anomaly)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
321 (* 0.01608 (solar-sin-degrees (* 2 moon-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
322 (* 0.01039 (solar-sin-degrees (* 2 moon-argument))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
323 (* 0.00739 E (solar-sin-degrees (- moon-anomaly sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
324 (* -0.00514 E (solar-sin-degrees (+ moon-anomaly sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
325 (* 0.00208 E E (solar-sin-degrees (* 2 sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
326 (* -0.00111 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
327 (- moon-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
328 (* -0.00057 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
329 (+ moon-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
330 (* 0.00056 E (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
331 (+ (* 2 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
332 (* -0.00042 (solar-sin-degrees (* 3 moon-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
333 (* 0.00042 E (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
334 (+ sun-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
335 (* 0.00038 E (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
336 (- sun-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
337 (* -0.00024 E (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
338 (- (* 2 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
339 (* -0.00017 (solar-sin-degrees omega)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
340 (* -0.00007 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
341 (+ moon-anomaly (* 2 sun-anomaly)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
342 (* 0.00004 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
343 (- (* 2 moon-anomaly) (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
344 (* 0.00004 (solar-sin-degrees (* 3 sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
345 (* 0.00003 (solar-sin-degrees (+ moon-anomaly sun-anomaly |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
346 (* -2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
347 (* 0.00003 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
348 (+ (* 2 moon-anomaly) (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
349 (* -0.00003 (solar-sin-degrees (+ moon-anomaly sun-anomaly |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
350 (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
351 (* 0.00003 (solar-sin-degrees (- moon-anomaly sun-anomaly |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
352 (* -2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
353 (* -0.00002 (solar-sin-degrees (- moon-anomaly sun-anomaly |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
354 (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
355 (* -0.00002 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
356 (+ (* 3 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
357 (* 0.00002 (solar-sin-degrees (* 4 moon-anomaly))))) |
92860 | 358 (additional |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
359 (+ (* 0.000325 (solar-sin-degrees A1)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
360 (* 0.000165 (solar-sin-degrees A2)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
361 (* 0.000164 (solar-sin-degrees A3)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
362 (* 0.000126 (solar-sin-degrees A4)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
363 (* 0.000110 (solar-sin-degrees A5)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
364 (* 0.000062 (solar-sin-degrees A6)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
365 (* 0.000060 (solar-sin-degrees A7)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
366 (* 0.000056 (solar-sin-degrees A8)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
367 (* 0.000047 (solar-sin-degrees A9)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
368 (* 0.000042 (solar-sin-degrees A10)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
369 (* 0.000040 (solar-sin-degrees A11)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
370 (* 0.000037 (solar-sin-degrees A12)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
371 (* 0.000035 (solar-sin-degrees A13)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
372 (* 0.000023 (solar-sin-degrees A14)))) |
92860 | 373 (newJDE (+ JDE correction additional))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
374 (+ newJDE |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
375 (- (solar-ephemeris-correction |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
376 (calendar-extract-year |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
377 (calendar-gregorian-from-absolute |
93640
ce3f8a4ae315
Update for cal-julian name changes.
Glenn Morris <rgm@gnu.org>
parents:
93489
diff
changeset
|
378 (floor (calendar-astro-to-absolute newJDE)))))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
379 (/ calendar-time-zone 60.0 24.0)))) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
380 |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
381 (defun lunar-new-moon-on-or-after (d) |
92638
8feda75f862e
(phases-of-moon, lunar-new-moon-on-or-after): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
92597
diff
changeset
|
382 "Julian day number of first new moon on or after Julian day number D. |
8feda75f862e
(phases-of-moon, lunar-new-moon-on-or-after): Doc fixes.
Glenn Morris <rgm@gnu.org>
parents:
92597
diff
changeset
|
383 The fractional part is the time of day. |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
384 |
76479
1b859d8eb581
(lunar-new-moon-on-or-after): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
75346
diff
changeset
|
385 The date and time are local time, including any daylight saving rules, |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
386 as governed by the values of `calendar-daylight-savings-starts', |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
387 `calendar-daylight-savings-starts-time', `calendar-daylight-savings-ends', |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
388 `calendar-daylight-savings-ends-time', `calendar-daylight-time-offset', and |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
389 `calendar-time-zone'." |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
390 (let* ((date (calendar-gregorian-from-absolute |
93640
ce3f8a4ae315
Update for cal-julian name changes.
Glenn Morris <rgm@gnu.org>
parents:
93489
diff
changeset
|
391 (floor (calendar-astro-to-absolute d)))) |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
392 (year (+ (calendar-extract-year date) |
92860 | 393 (/ (calendar-day-number date) 365.25))) |
104547
8c67d84c0faa
(lunar-phase-names): New option.
Glenn Morris <rgm@gnu.org>
parents:
101084
diff
changeset
|
394 (k (floor (* (- year 2000.0) lunar-cycles-per-year))) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
395 (date (lunar-new-moon-time k)) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
396 (a-date (progn |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
397 (while (< date d) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
398 (setq k (1+ k) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
399 date (lunar-new-moon-time k))) |
93640
ce3f8a4ae315
Update for cal-julian name changes.
Glenn Morris <rgm@gnu.org>
parents:
93489
diff
changeset
|
400 (calendar-astro-to-absolute date))) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
401 (time (* 24 (- a-date (truncate a-date)))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
402 (date (calendar-gregorian-from-absolute (truncate a-date))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
403 (adj (dst-adjust-time date time))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
404 (calendar-astro-from-absolute |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
405 (+ (calendar-absolute-from-gregorian (car adj)) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
406 (/ (cadr adj) 24.0))))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
407 |
957 | 408 (provide 'lunar) |
409 | |
92597 | 410 ;; arch-tag: 72f0b8a4-7bcc-4a1b-b67a-ff53c4a1d222 |
957 | 411 ;;; lunar.el ends here |