Mercurial > emacs
annotate lisp/calendar/lunar.el @ 100863:3a8c5cfdc32e
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 03 Jan 2009 15:09:27 +0000 |
parents | 1faf76b676bf |
children | a9dc0e7c3f2b |
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, |
79703 | 4 ;; 2006, 2007, 2008 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 |
47 (defun lunar-phase (index) | |
48 "Local date and time of lunar phase INDEX. | |
49 Integer below INDEX/4 gives the lunation number, counting from Jan 1, 1900; | |
50 remainder mod 4 gives the phase: 0 new moon, 1 first quarter, 2 full moon, | |
51 3 last quarter." | |
7760
4edcac57a8f2
(calendar-mod): Remove; it was equivalent to `mod'. All callers changed.
Paul Eggert <eggert@twinsun.com>
parents:
6736
diff
changeset
|
52 (let* ((phase (mod index 4)) |
957 | 53 (index (/ index 4.0)) |
54 (time (/ index 1236.85)) | |
55 (date (+ (calendar-absolute-from-gregorian '(1 0.5 1900)) | |
56 0.75933 | |
57 (* 29.53058868 index) | |
58 (* 0.0001178 time time) | |
59 (* -0.000000155 time time time) | |
60 (* 0.00033 | |
61 (solar-sin-degrees (+ 166.56 | |
62 (* 132.87 time) | |
63 (* -0.009173 time time)))))) | |
4520 | 64 (sun-anomaly (mod |
957 | 65 (+ 359.2242 |
66 (* 29.105356 index) | |
67 (* -0.0000333 time time) | |
68 (* -0.00000347 time time time)) | |
69 360.0)) | |
4520 | 70 (moon-anomaly (mod |
957 | 71 (+ 306.0253 |
72 (* 385.81691806 index) | |
73 (* 0.0107306 time time) | |
74 (* 0.00001236 time time time)) | |
75 360.0)) | |
4520 | 76 (moon-lat (mod |
957 | 77 (+ 21.2964 |
78 (* 390.67050646 index) | |
79 (* -0.0016528 time time) | |
80 (* -0.00000239 time time time)) | |
81 360.0)) | |
82 (adjustment | |
83 (if (memq phase '(0 2)) | |
84 (+ (* (- 0.1734 (* 0.000393 time)) | |
85 (solar-sin-degrees sun-anomaly)) | |
86 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly))) | |
87 (* -0.4068 (solar-sin-degrees moon-anomaly)) | |
88 (* 0.0161 (solar-sin-degrees (* 2 moon-anomaly))) | |
89 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly))) | |
90 (* 0.0104 (solar-sin-degrees (* 2 moon-lat))) | |
91 (* -0.0051 (solar-sin-degrees (+ sun-anomaly moon-anomaly))) | |
92 (* -0.0074 (solar-sin-degrees (- sun-anomaly moon-anomaly))) | |
93 (* 0.0004 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly))) | |
94 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly))) | |
95 (* -0.0006 (solar-sin-degrees | |
96 (+ (* 2 moon-lat) moon-anomaly))) | |
97 (* 0.0010 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly))) | |
98 (* 0.0005 (solar-sin-degrees | |
99 (+ (* 2 moon-anomaly) sun-anomaly)))) | |
100 (+ (* (- 0.1721 (* 0.0004 time)) | |
101 (solar-sin-degrees sun-anomaly)) | |
102 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly))) | |
103 (* -0.6280 (solar-sin-degrees moon-anomaly)) | |
104 (* 0.0089 (solar-sin-degrees (* 2 moon-anomaly))) | |
105 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly))) | |
106 (* 0.0079 (solar-sin-degrees (* 2 moon-lat))) | |
107 (* -0.0119 (solar-sin-degrees (+ sun-anomaly moon-anomaly))) | |
108 (* -0.0047 (solar-sin-degrees (- sun-anomaly moon-anomaly))) | |
109 (* 0.0003 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly))) | |
110 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly))) | |
111 (* -0.0006 (solar-sin-degrees (+ (* 2 moon-lat) moon-anomaly))) | |
112 (* 0.0021 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly))) | |
113 (* 0.0003 (solar-sin-degrees | |
114 (+ (* 2 moon-anomaly) sun-anomaly))) | |
115 (* 0.0004 (solar-sin-degrees | |
116 (- sun-anomaly (* 2 moon-anomaly)))) | |
117 (* -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
|
118 (+ (* 2 sun-anomaly) moon-anomaly)))))) |
957 | 119 (adj (+ 0.0028 |
120 (* -0.0004 (solar-cosine-degrees | |
121 sun-anomaly)) | |
122 (* 0.0003 (solar-cosine-degrees | |
123 moon-anomaly)))) | |
124 (adjustment (cond ((= phase 1) (+ adjustment adj)) | |
125 ((= phase 2) (- adjustment adj)) | |
126 (t adjustment))) | |
127 (date (+ date adjustment)) | |
92860 | 128 (date (+ date (/ (- calendar-time-zone |
129 (solar-ephemeris-correction | |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
130 (calendar-extract-year |
3871
a9f9a058567f
* lunar.el (lunar-phase): Use time conversion from solar.el
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
131 (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
|
132 (truncate date))))) |
92860 | 133 60.0 24.0))) |
957 | 134 (time (* 24 (- date (truncate date)))) |
92860 | 135 (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
|
136 (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
|
137 (list (car adj) (apply 'solar-time-string (cdr adj)) phase))) |
957 | 138 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
139 (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
|
140 "List of lunar phases for three months starting with Gregorian MONTH, YEAR." |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
141 (let* ((end-month month) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
142 (end-year year) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
143 (start-month month) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
144 (start-year year) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
145 (end-date (progn |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
146 (calendar-increment-month end-month end-year 3) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
147 (list (list end-month 1 end-year)))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
148 (start-date (progn |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
149 (calendar-increment-month start-month start-year -1) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
150 (list (list start-month |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
151 (calendar-last-day-of-month |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
152 start-month start-year) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
153 start-year)))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
154 (index (* 4 (truncate |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
155 (* 12.3685 |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
156 (+ year |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
157 ( / (calendar-day-number (list month 1 year)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
158 366.0) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
159 -1900))))) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
160 (new-moon (lunar-phase index)) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
161 list) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
162 (while (calendar-date-compare new-moon end-date) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
163 (if (calendar-date-compare start-date new-moon) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
164 (setq list (append list (list new-moon)))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
165 (setq index (1+ index) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
166 new-moon (lunar-phase index))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
167 list)) |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
168 |
957 | 169 (defun lunar-phase-name (phase) |
170 "Name of lunar PHASE. | |
171 0 = new moon, 1 = first quarter, 2 = full moon, 3 = last quarter." | |
172 (cond ((= 0 phase) "New Moon") | |
173 ((= 1 phase) "First Quarter Moon") | |
174 ((= 2 phase) "Full Moon") | |
175 ((= 3 phase) "Last Quarter Moon"))) | |
176 | |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
177 (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
|
178 (defvar displayed-year) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
179 |
92840
0880a434a38e
Add calendar-specific autoload cookies.
Glenn Morris <rgm@gnu.org>
parents:
92638
diff
changeset
|
180 ;;;###cal-autoload |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
181 (defun calendar-lunar-phases () |
957 | 182 "Create a buffer with the lunar phases for the current calendar window." |
183 (interactive) | |
184 (message "Computing phases of the moon...") | |
185 (let ((m1 displayed-month) | |
186 (y1 displayed-year) | |
187 (m2 displayed-month) | |
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
|
188 (y2 displayed-year)) |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
189 (calendar-increment-month m1 y1 -1) |
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
190 (calendar-increment-month m2 y2 1) |
93023
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
191 (calendar-in-read-only-buffer lunar-phases-buffer |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
192 (calendar-set-mode-line |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
193 (if (= y1 y2) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
194 (format "Phases of the Moon from %s to %s, %d%%-" |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
195 (calendar-month-name m1) (calendar-month-name m2) y2) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
196 (format "Phases of the Moon from %s, %d to %s, %d%%-" |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
197 (calendar-month-name m1) y1 (calendar-month-name m2) y2))) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
198 (insert |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
199 (mapconcat |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
200 (lambda (x) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
201 (let ((date (car x)) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
202 (time (cadr x)) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
203 (phase (nth 2 x))) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
204 (concat (calendar-date-string date) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
205 ": " |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
206 (lunar-phase-name phase) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
207 " " |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
208 time))) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
209 (lunar-phase-list m1 y1) "\n"))) |
957 | 210 (message "Computing phases of the moon...done"))) |
211 | |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
212 ;;;###cal-autoload |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
213 (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
|
214 '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
|
215 |
957 | 216 ;;;###autoload |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
217 (defun lunar-phases (&optional arg) |
957 | 218 "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
|
219 If called with an optional prefix argument ARG, prompts for month and year. |
957 | 220 This function is suitable for execution in a .emacs file." |
221 (interactive "P") | |
222 (save-excursion | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
223 (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
|
224 (calendar-current-date))) |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
225 (displayed-month (calendar-extract-month date)) |
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
226 (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
|
227 (calendar-lunar-phases)))) |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
228 |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
229 ;;;###autoload |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
230 (define-obsolete-function-alias 'phases-of-moon 'lunar-phases "23.1") |
957 | 231 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
232 (defvar date) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
233 |
93786 | 234 ;; 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
|
235 |
92840
0880a434a38e
Add calendar-specific autoload cookies.
Glenn Morris <rgm@gnu.org>
parents:
92638
diff
changeset
|
236 ;;;###diary-autoload |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
237 (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
|
238 "Moon phases diary entry. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46618
diff
changeset
|
239 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
|
240 use when highlighting the day in the calendar." |
957 | 241 (let* ((index (* 4 |
242 (truncate | |
243 (* 12.3685 | |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
244 (+ (calendar-extract-year date) |
957 | 245 ( / (calendar-day-number date) |
246 366.0) | |
247 -1900))))) | |
248 (phase (lunar-phase index))) | |
249 (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
|
250 (setq index (1+ index) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
251 phase (lunar-phase index))) |
957 | 252 (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
|
253 (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
|
254 (cadr phase)))))) |
957 | 255 |
96349
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
256 ;;;###diary-autoload |
1faf76b676bf
(calendar-lunar-phases): Rename from calendar-phases-of-moon. Keep
Glenn Morris <rgm@gnu.org>
parents:
94653
diff
changeset
|
257 (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
|
258 '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
|
259 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
260 ;; 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
|
261 ;; 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
|
262 (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
|
263 "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
|
264 (let* ((T (/ k 1236.85)) |
92860 | 265 (T2 (* T T)) |
266 (T3 (* T T T)) | |
267 (T4 (* T2 T2)) | |
268 (JDE (+ 2451550.09765 | |
269 (* 29.530588853 k) | |
270 (* 0.0001337 T2) | |
271 (* -0.000000150 T3) | |
272 (* 0.00000000073 T4))) | |
273 (E (- 1 (* 0.002516 T) (* 0.0000074 T2))) | |
274 (sun-anomaly (+ 2.5534 | |
275 (* 29.10535669 k) | |
276 (* -0.0000218 T2) | |
277 (* -0.00000011 T3))) | |
278 (moon-anomaly (+ 201.5643 | |
279 (* 385.81693528 k) | |
280 (* 0.0107438 T2) | |
281 (* 0.00001239 T3) | |
282 (* -0.000000058 T4))) | |
283 (moon-argument (+ 160.7108 | |
284 (* 390.67050274 k) | |
285 (* -0.0016341 T2) | |
286 (* -0.00000227 T3) | |
287 (* 0.000000011 T4))) | |
288 (omega (+ 124.7746 | |
289 (* -1.56375580 k) | |
290 (* 0.0020691 T2) | |
291 (* 0.00000215 T3))) | |
292 (A1 (+ 299.77 (* 0.107408 k) (* -0.009173 T2))) | |
293 (A2 (+ 251.88 (* 0.016321 k))) | |
294 (A3 (+ 251.83 (* 26.641886 k))) | |
295 (A4 (+ 349.42 (* 36.412478 k))) | |
296 (A5 (+ 84.66 (* 18.206239 k))) | |
297 (A6 (+ 141.74 (* 53.303771 k))) | |
298 (A7 (+ 207.14 (* 2.453732 k))) | |
299 (A8 (+ 154.84 (* 7.306860 k))) | |
300 (A9 (+ 34.52 (* 27.261239 k))) | |
301 (A10 (+ 207.19 (* 0.121824 k))) | |
302 (A11 (+ 291.34 (* 1.844379 k))) | |
303 (A12 (+ 161.72 (* 24.198154 k))) | |
304 (A13 (+ 239.56 (* 25.513099 k))) | |
305 (A14 (+ 331.55 (* 3.592518 k))) | |
306 (correction | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
307 (+ (* -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
|
308 (* 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
|
309 (* 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
|
310 (* 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
|
311 (* 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
|
312 (* -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
|
313 (* 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
|
314 (* -0.00111 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
315 (- moon-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
316 (* -0.00057 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
317 (+ moon-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
318 (* 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
|
319 (+ (* 2 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
320 (* -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
|
321 (* 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
|
322 (+ sun-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
323 (* 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
|
324 (- sun-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
325 (* -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
|
326 (- (* 2 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
327 (* -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
|
328 (* -0.00007 (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 sun-anomaly)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
330 (* 0.00004 (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) (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
332 (* 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
|
333 (* 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
|
334 (* -2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
335 (* 0.00003 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
336 (+ (* 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
|
337 (* -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
|
338 (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
339 (* 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
|
340 (* -2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
341 (* -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
|
342 (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
343 (* -0.00002 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
344 (+ (* 3 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
345 (* 0.00002 (solar-sin-degrees (* 4 moon-anomaly))))) |
92860 | 346 (additional |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
347 (+ (* 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
|
348 (* 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
|
349 (* 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
|
350 (* 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
|
351 (* 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
|
352 (* 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
|
353 (* 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
|
354 (* 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
|
355 (* 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
|
356 (* 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
|
357 (* 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
|
358 (* 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
|
359 (* 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
|
360 (* 0.000023 (solar-sin-degrees A14)))) |
92860 | 361 (newJDE (+ JDE correction additional))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
362 (+ newJDE |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
363 (- (solar-ephemeris-correction |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
364 (calendar-extract-year |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
365 (calendar-gregorian-from-absolute |
93640
ce3f8a4ae315
Update for cal-julian name changes.
Glenn Morris <rgm@gnu.org>
parents:
93489
diff
changeset
|
366 (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
|
367 (/ 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
|
368 |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
369 (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
|
370 "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
|
371 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
|
372 |
76479
1b859d8eb581
(lunar-new-moon-on-or-after): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
75346
diff
changeset
|
373 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
|
374 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
|
375 `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
|
376 `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
|
377 `calendar-time-zone'." |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
378 (let* ((date (calendar-gregorian-from-absolute |
93640
ce3f8a4ae315
Update for cal-julian name changes.
Glenn Morris <rgm@gnu.org>
parents:
93489
diff
changeset
|
379 (floor (calendar-astro-to-absolute d)))) |
93809
3ff2b47de8f2
Update for calendar.el name changes.
Glenn Morris <rgm@gnu.org>
parents:
93786
diff
changeset
|
380 (year (+ (calendar-extract-year date) |
92860 | 381 (/ (calendar-day-number date) 365.25))) |
382 (k (floor (* (- year 2000.0) 12.3685))) | |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
383 (date (lunar-new-moon-time k)) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
384 (a-date (progn |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
385 (while (< date d) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
386 (setq k (1+ k) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
387 date (lunar-new-moon-time k))) |
93640
ce3f8a4ae315
Update for cal-julian name changes.
Glenn Morris <rgm@gnu.org>
parents:
93489
diff
changeset
|
388 (calendar-astro-to-absolute date))) |
93489
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
389 (time (* 24 (- a-date (truncate a-date)))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
390 (date (calendar-gregorian-from-absolute (truncate a-date))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
391 (adj (dst-adjust-time date time))) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
392 (calendar-astro-from-absolute |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
393 (+ (calendar-absolute-from-gregorian (car adj)) |
5ec32e91c513
(Commentary): Point to calendar.el.
Glenn Morris <rgm@gnu.org>
parents:
93229
diff
changeset
|
394 (/ (cadr adj) 24.0))))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
395 |
957 | 396 (provide 'lunar) |
397 | |
92597 | 398 ;; arch-tag: 72f0b8a4-7bcc-4a1b-b67a-ff53c4a1d222 |
957 | 399 ;;; lunar.el ends here |