Mercurial > emacs
annotate lisp/calendar/lunar.el @ 93111:f84051049637
* intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
(set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
work on current_buffer only instead (that was already the case
for some of the code anyway).
* buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
(temp_set_point, temp_set_point_both): Use EMACS_INT.
(SET_PT, SET_PT_BOTH): Adjust.
* intervals.h (set_point, temp_set_point, set_point_both)
(temp_set_point_both): Remove redundant declarations.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 20 Mar 2008 18:38:34 +0000 |
parents | 1e2a7548f004 |
children | aae9e21d056e |
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 | |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
13 ;; GNU Emacs is free software; you can redistribute it and/or modify |
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 |
78216
93e11478c954
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
77279
diff
changeset
|
15 ;; the Free Software Foundation; either version 3, or (at your option) |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6334
diff
changeset
|
16 ;; 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 |
14169 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
957 | 27 |
28 ;;; Commentary: | |
29 | |
30 ;; This collection of functions implements lunar phases for calendar.el and | |
31 ;; diary.el. | |
32 | |
33 ;; 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
|
34 ;; 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
|
35 ;; Willmann-Bell, Inc., 1991. |
957 | 36 ;; |
37 ;; WARNING: The calculations will be accurate only to within a few minutes. | |
38 | |
39 ;; The author would be delighted to have an astronomically more sophisticated | |
40 ;; person rewrite the code for the lunar calculations in this file! | |
41 | |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
14272
diff
changeset
|
42 ;; Technical details of all the calendrical calculations can be found in |
61148
7f7db25577d9
Update reference to "Calendrical Calculations" book; there's a new edition.
Paul Eggert <eggert@twinsun.com>
parents:
52401
diff
changeset
|
43 ;; ``Calendrical Calculations: The Millennium Edition'' by Edward M. Reingold |
7f7db25577d9
Update reference to "Calendrical Calculations" book; there's a new edition.
Paul Eggert <eggert@twinsun.com>
parents:
52401
diff
changeset
|
44 ;; and Nachum Dershowitz, Cambridge University Press (2001). |
20462
d179de7ad92e
Add reference to new Calendrical Calculations book.
Paul Eggert <eggert@twinsun.com>
parents:
14272
diff
changeset
|
45 |
957 | 46 ;;; Code: |
47 | |
48 (if (fboundp 'atan) | |
49 (require 'lisp-float-type) | |
38422
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
20462
diff
changeset
|
50 (error "Lunar calculations impossible since floating point is unavailable")) |
957 | 51 |
52 (require 'solar) | |
53 | |
54 (defun lunar-phase (index) | |
55 "Local date and time of lunar phase INDEX. | |
56 Integer below INDEX/4 gives the lunation number, counting from Jan 1, 1900; | |
57 remainder mod 4 gives the phase: 0 new moon, 1 first quarter, 2 full moon, | |
58 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
|
59 (let* ((phase (mod index 4)) |
957 | 60 (index (/ index 4.0)) |
61 (time (/ index 1236.85)) | |
62 (date (+ (calendar-absolute-from-gregorian '(1 0.5 1900)) | |
63 0.75933 | |
64 (* 29.53058868 index) | |
65 (* 0.0001178 time time) | |
66 (* -0.000000155 time time time) | |
67 (* 0.00033 | |
68 (solar-sin-degrees (+ 166.56 | |
69 (* 132.87 time) | |
70 (* -0.009173 time time)))))) | |
4520 | 71 (sun-anomaly (mod |
957 | 72 (+ 359.2242 |
73 (* 29.105356 index) | |
74 (* -0.0000333 time time) | |
75 (* -0.00000347 time time time)) | |
76 360.0)) | |
4520 | 77 (moon-anomaly (mod |
957 | 78 (+ 306.0253 |
79 (* 385.81691806 index) | |
80 (* 0.0107306 time time) | |
81 (* 0.00001236 time time time)) | |
82 360.0)) | |
4520 | 83 (moon-lat (mod |
957 | 84 (+ 21.2964 |
85 (* 390.67050646 index) | |
86 (* -0.0016528 time time) | |
87 (* -0.00000239 time time time)) | |
88 360.0)) | |
89 (adjustment | |
90 (if (memq phase '(0 2)) | |
91 (+ (* (- 0.1734 (* 0.000393 time)) | |
92 (solar-sin-degrees sun-anomaly)) | |
93 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly))) | |
94 (* -0.4068 (solar-sin-degrees moon-anomaly)) | |
95 (* 0.0161 (solar-sin-degrees (* 2 moon-anomaly))) | |
96 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly))) | |
97 (* 0.0104 (solar-sin-degrees (* 2 moon-lat))) | |
98 (* -0.0051 (solar-sin-degrees (+ sun-anomaly moon-anomaly))) | |
99 (* -0.0074 (solar-sin-degrees (- sun-anomaly moon-anomaly))) | |
100 (* 0.0004 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly))) | |
101 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly))) | |
102 (* -0.0006 (solar-sin-degrees | |
103 (+ (* 2 moon-lat) moon-anomaly))) | |
104 (* 0.0010 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly))) | |
105 (* 0.0005 (solar-sin-degrees | |
106 (+ (* 2 moon-anomaly) sun-anomaly)))) | |
107 (+ (* (- 0.1721 (* 0.0004 time)) | |
108 (solar-sin-degrees sun-anomaly)) | |
109 (* 0.0021 (solar-sin-degrees (* 2 sun-anomaly))) | |
110 (* -0.6280 (solar-sin-degrees moon-anomaly)) | |
111 (* 0.0089 (solar-sin-degrees (* 2 moon-anomaly))) | |
112 (* -0.0004 (solar-sin-degrees (* 3 moon-anomaly))) | |
113 (* 0.0079 (solar-sin-degrees (* 2 moon-lat))) | |
114 (* -0.0119 (solar-sin-degrees (+ sun-anomaly moon-anomaly))) | |
115 (* -0.0047 (solar-sin-degrees (- sun-anomaly moon-anomaly))) | |
116 (* 0.0003 (solar-sin-degrees (+ (* 2 moon-lat) sun-anomaly))) | |
117 (* -0.0004 (solar-sin-degrees (- (* 2 moon-lat) sun-anomaly))) | |
118 (* -0.0006 (solar-sin-degrees (+ (* 2 moon-lat) moon-anomaly))) | |
119 (* 0.0021 (solar-sin-degrees (- (* 2 moon-lat) moon-anomaly))) | |
120 (* 0.0003 (solar-sin-degrees | |
121 (+ (* 2 moon-anomaly) sun-anomaly))) | |
122 (* 0.0004 (solar-sin-degrees | |
123 (- sun-anomaly (* 2 moon-anomaly)))) | |
124 (* -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
|
125 (+ (* 2 sun-anomaly) moon-anomaly)))))) |
957 | 126 (adj (+ 0.0028 |
127 (* -0.0004 (solar-cosine-degrees | |
128 sun-anomaly)) | |
129 (* 0.0003 (solar-cosine-degrees | |
130 moon-anomaly)))) | |
131 (adjustment (cond ((= phase 1) (+ adjustment adj)) | |
132 ((= phase 2) (- adjustment adj)) | |
133 (t adjustment))) | |
134 (date (+ date adjustment)) | |
92860 | 135 (date (+ date (/ (- calendar-time-zone |
136 (solar-ephemeris-correction | |
3871
a9f9a058567f
* lunar.el (lunar-phase): Use time conversion from solar.el
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
137 (extract-calendar-year |
a9f9a058567f
* lunar.el (lunar-phase): Use time conversion from solar.el
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
138 (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
|
139 (truncate date))))) |
92860 | 140 60.0 24.0))) |
957 | 141 (time (* 24 (- date (truncate date)))) |
92860 | 142 (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
|
143 (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
|
144 (list (car adj) (apply 'solar-time-string (cdr adj)) phase))) |
957 | 145 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
146 (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
|
147 "List of lunar phases for three months starting with Gregorian MONTH, YEAR." |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
148 (let ((end-month month) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
149 (end-year year) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
150 (start-month month) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
151 (start-year year)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
152 (increment-calendar-month end-month end-year 3) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
153 (increment-calendar-month start-month start-year -1) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
154 (let* ((end-date (list (list end-month 1 end-year))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
155 (start-date (list (list start-month |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
156 (calendar-last-day-of-month |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
157 start-month start-year) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
158 start-year))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
159 (index (* 4 |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
160 (truncate |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
161 (* 12.3685 |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
162 (+ year |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
163 ( / (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
|
164 366.0) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
165 -1900))))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
166 (new-moon (lunar-phase index)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
167 (list)) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
168 (while (calendar-date-compare new-moon end-date) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
169 (if (calendar-date-compare start-date new-moon) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
170 (setq list (append list (list new-moon)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
171 (setq index (1+ index) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
172 new-moon (lunar-phase index))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
173 list))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
174 |
957 | 175 (defun lunar-phase-name (phase) |
176 "Name of lunar PHASE. | |
177 0 = new moon, 1 = first quarter, 2 = full moon, 3 = last quarter." | |
178 (cond ((= 0 phase) "New Moon") | |
179 ((= 1 phase) "First Quarter Moon") | |
180 ((= 2 phase) "Full Moon") | |
181 ((= 3 phase) "Last Quarter Moon"))) | |
182 | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
183 (defvar displayed-month) ; from generate-calendar |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
184 (defvar displayed-year) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
185 |
92840
0880a434a38e
Add calendar-specific autoload cookies.
Glenn Morris <rgm@gnu.org>
parents:
92638
diff
changeset
|
186 ;;;###cal-autoload |
957 | 187 (defun calendar-phases-of-moon () |
188 "Create a buffer with the lunar phases for the current calendar window." | |
189 (interactive) | |
190 (message "Computing phases of the moon...") | |
191 (let ((m1 displayed-month) | |
192 (y1 displayed-year) | |
193 (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
|
194 (y2 displayed-year)) |
957 | 195 (increment-calendar-month m1 y1 -1) |
196 (increment-calendar-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
|
197 (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
|
198 (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
|
199 (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
|
200 (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
|
201 (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
|
202 (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
|
203 (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
|
204 (insert |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
205 (mapconcat |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
206 (lambda (x) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
207 (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
|
208 (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
|
209 (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
|
210 (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
|
211 ": " |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
212 (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
|
213 " " |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
214 time))) |
1e2a7548f004
(calendar-phases-of-moon): Use calendar-in-read-only-buffer to replace
Glenn Morris <rgm@gnu.org>
parents:
92924
diff
changeset
|
215 (lunar-phase-list m1 y1) "\n"))) |
957 | 216 (message "Computing phases of the moon...done"))) |
217 | |
218 ;;;###autoload | |
219 (defun phases-of-moon (&optional arg) | |
220 "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
|
221 If called with an optional prefix argument ARG, prompts for month and year. |
957 | 222 This function is suitable for execution in a .emacs file." |
223 (interactive "P") | |
224 (save-excursion | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
225 (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
|
226 (calendar-current-date))) |
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
|
227 (displayed-month (extract-calendar-month date)) |
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
|
228 (displayed-year (extract-calendar-year date))) |
957 | 229 (calendar-phases-of-moon)))) |
230 | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
231 (defvar date) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
232 |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
233 ;; To be called from list-sexp-diary-entries, where DATE is bound. |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
234 |
92840
0880a434a38e
Add calendar-specific autoload cookies.
Glenn Morris <rgm@gnu.org>
parents:
92638
diff
changeset
|
235 ;;;###diary-autoload |
46618
6edefbc65dc4
(diary-phases-of-moon): Add optional MARK
Richard M. Stallman <rms@gnu.org>
parents:
38422
diff
changeset
|
236 (defun diary-phases-of-moon (&optional mark) |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
237 "Moon phases diary entry. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46618
diff
changeset
|
238 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
|
239 use when highlighting the day in the calendar." |
957 | 240 (let* ((index (* 4 |
241 (truncate | |
242 (* 12.3685 | |
243 (+ (extract-calendar-year date) | |
244 ( / (calendar-day-number date) | |
245 366.0) | |
246 -1900))))) | |
247 (phase (lunar-phase index))) | |
248 (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
|
249 (setq index (1+ index) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
250 phase (lunar-phase index))) |
957 | 251 (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
|
252 (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
|
253 (cadr phase)))))) |
957 | 254 |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
255 ;; 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
|
256 ;; 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
|
257 (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
|
258 "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
|
259 (let* ((T (/ k 1236.85)) |
92860 | 260 (T2 (* T T)) |
261 (T3 (* T T T)) | |
262 (T4 (* T2 T2)) | |
263 (JDE (+ 2451550.09765 | |
264 (* 29.530588853 k) | |
265 (* 0.0001337 T2) | |
266 (* -0.000000150 T3) | |
267 (* 0.00000000073 T4))) | |
268 (E (- 1 (* 0.002516 T) (* 0.0000074 T2))) | |
269 (sun-anomaly (+ 2.5534 | |
270 (* 29.10535669 k) | |
271 (* -0.0000218 T2) | |
272 (* -0.00000011 T3))) | |
273 (moon-anomaly (+ 201.5643 | |
274 (* 385.81693528 k) | |
275 (* 0.0107438 T2) | |
276 (* 0.00001239 T3) | |
277 (* -0.000000058 T4))) | |
278 (moon-argument (+ 160.7108 | |
279 (* 390.67050274 k) | |
280 (* -0.0016341 T2) | |
281 (* -0.00000227 T3) | |
282 (* 0.000000011 T4))) | |
283 (omega (+ 124.7746 | |
284 (* -1.56375580 k) | |
285 (* 0.0020691 T2) | |
286 (* 0.00000215 T3))) | |
287 (A1 (+ 299.77 (* 0.107408 k) (* -0.009173 T2))) | |
288 (A2 (+ 251.88 (* 0.016321 k))) | |
289 (A3 (+ 251.83 (* 26.641886 k))) | |
290 (A4 (+ 349.42 (* 36.412478 k))) | |
291 (A5 (+ 84.66 (* 18.206239 k))) | |
292 (A6 (+ 141.74 (* 53.303771 k))) | |
293 (A7 (+ 207.14 (* 2.453732 k))) | |
294 (A8 (+ 154.84 (* 7.306860 k))) | |
295 (A9 (+ 34.52 (* 27.261239 k))) | |
296 (A10 (+ 207.19 (* 0.121824 k))) | |
297 (A11 (+ 291.34 (* 1.844379 k))) | |
298 (A12 (+ 161.72 (* 24.198154 k))) | |
299 (A13 (+ 239.56 (* 25.513099 k))) | |
300 (A14 (+ 331.55 (* 3.592518 k))) | |
301 (correction | |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
302 (+ (* -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
|
303 (* 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
|
304 (* 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
|
305 (* 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
|
306 (* 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
|
307 (* -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
|
308 (* 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
|
309 (* -0.00111 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
310 (- moon-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
311 (* -0.00057 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
312 (+ moon-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
313 (* 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
|
314 (+ (* 2 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
315 (* -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
|
316 (* 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
|
317 (+ sun-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.00038 E (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
319 (- sun-anomaly (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
320 (* -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
|
321 (- (* 2 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
322 (* -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
|
323 (* -0.00007 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
324 (+ moon-anomaly (* 2 sun-anomaly)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
325 (* 0.00004 (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) (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
327 (* 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
|
328 (* 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
|
329 (* -2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
330 (* 0.00003 (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.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
|
333 (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
334 (* 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
|
335 (* -2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
336 (* -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
|
337 (* 2 moon-argument)))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
338 (* -0.00002 (solar-sin-degrees |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
339 (+ (* 3 moon-anomaly) sun-anomaly))) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
340 (* 0.00002 (solar-sin-degrees (* 4 moon-anomaly))))) |
92860 | 341 (additional |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
342 (+ (* 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
|
343 (* 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
|
344 (* 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
|
345 (* 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
|
346 (* 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
|
347 (* 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
|
348 (* 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
|
349 (* 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
|
350 (* 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
|
351 (* 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
|
352 (* 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
|
353 (* 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
|
354 (* 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
|
355 (* 0.000023 (solar-sin-degrees A14)))) |
92860 | 356 (newJDE (+ JDE correction additional))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
357 (+ newJDE |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
358 (- (solar-ephemeris-correction |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
359 (extract-calendar-year |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
360 (calendar-gregorian-from-absolute |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
361 (floor (calendar-absolute-from-astro newJDE)))))) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
362 (/ 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
|
363 |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
364 (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
|
365 "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
|
366 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
|
367 |
76479
1b859d8eb581
(lunar-new-moon-on-or-after): Doc fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
75346
diff
changeset
|
368 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
|
369 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
|
370 `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
|
371 `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
|
372 `calendar-time-zone'." |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
373 (let* ((date (calendar-gregorian-from-absolute |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
374 (floor (calendar-absolute-from-astro d)))) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
375 (year (+ (extract-calendar-year date) |
92860 | 376 (/ (calendar-day-number date) 365.25))) |
377 (k (floor (* (- year 2000.0) 12.3685))) | |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
378 (date (lunar-new-moon-time k))) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
379 (while (< date d) |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
380 (setq k (1+ k) |
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
381 date (lunar-new-moon-time k))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
382 (let* ((a-date (calendar-absolute-from-astro date)) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
383 (time (* 24 (- a-date (truncate a-date)))) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
384 (date (calendar-gregorian-from-absolute (truncate a-date))) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
385 (adj (dst-adjust-time date time))) |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
386 (calendar-astro-from-absolute |
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
387 (+ (calendar-absolute-from-gregorian (car adj)) |
92924
31862b15d5bb
(date, displayed-month, displayed-year): Move declarations where needed.
Glenn Morris <rgm@gnu.org>
parents:
92860
diff
changeset
|
388 (/ (cadr adj) 24.0)))))) |
13044
9155a9ab5de9
Added code to support Chinese calendar.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
9748
diff
changeset
|
389 |
957 | 390 (provide 'lunar) |
391 | |
92597 | 392 ;; arch-tag: 72f0b8a4-7bcc-4a1b-b67a-ff53c4a1d222 |
957 | 393 ;;; lunar.el ends here |