-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathPrayerTimes.cpp
353 lines (304 loc) · 9.35 KB
/
PrayerTimes.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/*
*/
#include "Arduino.h"
#include "PrayerTimes.h"
double latitude;
double longitude;
double timezone;
double julian_date;
MethodConfig method_params[CalculationMethodsCount];
CalculationMethod calc_method; // caculation method
JuristicMethod asr_juristic; // Juristic method for Asr
AdjustingMethod adjust_high_lats; // adjusting method for higher latitudes
double dhuhr_minutes; // minutes after mid-day for Dhuhr
/* ---------------------- Trigonometric Functions ----------------------- */
/* degree sin */
static double dsin(double d)
{
return sin(deg2rad(d));
}
/* degree cos */
static double dcos(double d)
{
return cos(deg2rad(d));
}
/* degree tan */
static double dtan(double d)
{
return tan(deg2rad(d));
}
/* degree arcsin */
static double darcsin(double x)
{
return rad2deg(asin(x));
}
/* degree arccos */
static double darccos(double x)
{
return rad2deg(acos(x));
}
/* degree arctan */
static double darctan(double x)
{
return rad2deg(atan(x));
}
/* degree arctan2 */
static double darctan2(double y, double x)
{
return rad2deg(atan2(y, x));
}
/* degree arccot */
static double darccot(double x)
{
return rad2deg(atan(1.0 / x));
}
/* degree to radian */
static double deg2rad(double d)
{
return d * M_PI / 180.0;
}
/* radian to degree */
static double rad2deg(double r)
{
return r * 180.0 / M_PI;
}
/* range reduce angle in degrees. */
static double fix_angle(double a)
{
a = a - 360.0 * floor(a / 360.0);
a = a < 0.0 ? a + 360.0 : a;
return a;
}
/* range reduce hours to 0..23 */
static double fix_hour(double a)
{
a = a - 24.0 * floor(a / 24.0);
a = a < 0.0 ? a + 24.0 : a;
return a;
}
/* ------------------------------------------------------------------------------------------------- */
/* calculate julian date from a calendar date */
double get_julian_date(int year, int month, int day)
{
if (month <= 2)
{
year -= 1;
month += 12;
}
double a = floor(year / 100.0);
double b = 2 - a + floor(a / 4.0);
return floor(365.25 * (year + 4716)) + floor(30.6001 * (month + 1)) + day + b - 1524.5;
}
/* compute prayer times at given julian date */
void compute_day_times(double times[])
{
double default_times[] = { 5, 6, 12, 13, 18, 18, 18 }; // default times
for (int i = 0; i < TimesCount; ++i)
times[i] = default_times[i];
for (int i = 0; i < NUM_ITERATIONS; ++i)
compute_times(times);
adjust_times(times);
}
/* compute declination angle of sun and equation of time */
DoublePair sun_position(double jd)
{
double d = jd - 2451545.0;
double g = fix_angle(357.529 + 0.98560028 * d);
double q = fix_angle(280.459 + 0.98564736 * d);
double l = fix_angle(q + 1.915 * dsin(g) + 0.020 * dsin(2 * g));
// double r = 1.00014 - 0.01671 * dcos(g) - 0.00014 * dcos(2 * g);
double e = 23.439 - 0.00000036 * d;
double dd = darcsin(dsin(e) * dsin(l));
double ra = darctan2(dcos(e) * dsin(l), dcos(l)) / 15.0;
ra = fix_hour(ra);
double eq_t = q / 15.0 - ra;
DoublePair dp={dd, eq_t};
return dp;
}
/* set the juristic method for Asr */
void set_asr_method(JuristicMethod method_id)
{
asr_juristic = method_id;
}
/* set adjusting method for higher latitudes */
void set_high_lats_adjust_method(AdjustingMethod method_id)
{
adjust_high_lats = method_id;
}
/* compute declination angle of sun */
double sun_declination(double jd)
{
return sun_position(jd).first;
}
/* compute equation of time */
double equation_of_time(double jd)
{
return sun_position(jd).second;
}
/* compute mid-day (Dhuhr, Zawal) time */
double compute_mid_day(double _t)
{
double t = equation_of_time(julian_date + _t);
double z = fix_hour(12 - t);
return z;
}
/* compute time for a given angle G */
double compute_time(double g, double t)
{
double d = sun_declination(julian_date + t);
double z = compute_mid_day(t);
double v = 1.0 / 15.0 * darccos((-dsin(g) - dsin(d) * dsin(latitude)) / (dcos(d) * dcos(latitude)));
return z + (g > 90.0 ? - v : v);
}
/* compute prayer times at given julian date */
/* compute the time of Asr */
double compute_asr(int step, double t) // Shafii: step=1, Hanafi: step=2
{
double d = sun_declination(julian_date + t);
double g = -darccot(step + dtan(fabs(latitude - d)));
return compute_time(g, t);
}
void compute_times(double times[])
{
day_portion(times);
times[Fajr] = compute_time(180.0 - method_params[calc_method].fajr_angle, times[Fajr]);
times[Sunrise] = compute_time(180.0 - 0.833, times[Sunrise]);
times[Dhuhr] = compute_mid_day(times[Dhuhr]);
times[Asr] = compute_asr(1 + asr_juristic, times[Asr]);
times[Sunset] = compute_time(0.833, times[Sunset]);
times[Maghrib] = compute_time(method_params[calc_method].maghrib_value, times[Maghrib]);
times[Isha] = compute_time(method_params[calc_method].isha_value, times[Isha]);
}
/* compute the difference between two times */
static double time_diff(double time1, double time2)
{
return fix_hour(time2 - time1);
}
static String int_to_string(int num)
{
return String(num);
}
/* add a leading 0 if necessary */
static String two_digits_format(int num)
{
char tmp[16];
tmp[0] = '\0';
sprintf(tmp, "%2.2d", num);
return String(tmp);
}
/* the night portion used for adjusting times in higher latitudes */
double night_portion(double angle)
{
switch (adjust_high_lats)
{
case AngleBased:
return angle / 60.0;
case MidNight:
return 1.0 / 2.0;
case OneSeventh:
return 1.0 / 7.0;
default:
// Just to return something!
// In original library nothing was returned
// Maybe I should throw an exception
// It must be impossible to reach here
return 0;
}
}
/* adjust Fajr, Isha and Maghrib for locations in higher latitudes */
void adjust_high_lat_times(double times[])
{
double night_time = time_diff(times[Sunset], times[Sunrise]); // sunset to sunrise
// Adjust Fajr
double fajr_diff = night_portion(method_params[calc_method].fajr_angle) * night_time;
if (isnan(times[Fajr]) || time_diff(times[Fajr], times[Sunrise]) > fajr_diff)
times[Fajr] = times[Sunrise] - fajr_diff;
// Adjust Isha
double isha_angle = method_params[calc_method].isha_is_minutes ? 18.0 : method_params[calc_method].isha_value;
double isha_diff = night_portion(isha_angle) * night_time;
if (isnan(times[Isha]) || time_diff(times[Sunset], times[Isha]) > isha_diff)
times[Isha] = times[Sunset] + isha_diff;
// Adjust Maghrib
double maghrib_angle = method_params[calc_method].maghrib_is_minutes ? 4.0 : method_params[calc_method].maghrib_value;
double maghrib_diff = night_portion(maghrib_angle) * night_time;
if (isnan(times[Maghrib]) || time_diff(times[Sunset], times[Maghrib]) > maghrib_diff)
times[Maghrib] = times[Sunset] + maghrib_diff;
}
/* adjust times in a prayer time array */
void adjust_times(double times[])
{
for (int i = 0; i < TimesCount; ++i)
times[i] += timezone - longitude / 15.0;
times[Dhuhr] += dhuhr_minutes / 60.0; // Dhuhr
if (method_params[calc_method].maghrib_is_minutes) // Maghrib
times[Maghrib] = times[Sunset] + method_params[calc_method].maghrib_value / 60.0;
if (method_params[calc_method].isha_is_minutes) // Isha
times[Isha] = times[Maghrib] + method_params[calc_method].isha_value / 60.0;
if (adjust_high_lats != None)
adjust_high_lat_times(times);
}
/* convert hours to day portions */
void day_portion(double times[])
{
for (int i = 0; i < TimesCount; ++i)
times[i] /= 24.0;
}
/* return prayer times for a given date */
void get_prayer_times(int year, int month, int day, double _latitude, double _longitude, double _timezone, double times[])
{
latitude = _latitude;
longitude = _longitude;
timezone = _timezone;
julian_date = get_julian_date(year, month, day) - longitude / (double) (15 * 24);
compute_day_times(times);
}
void set_calc_method(CalculationMethod method_id)
{
calc_method = method_id;
}
/* set the angle for calculating Fajr */
void set_fajr_angle(double angle)
{
method_params[Custom].fajr_angle = angle;
calc_method = Custom;
}
/* set the angle for calculating Maghrib */
void set_maghrib_angle(double angle)
{
method_params[Custom].maghrib_is_minutes = false;
method_params[Custom].maghrib_value = angle;
calc_method = Custom;
}
/* set the angle for calculating Isha */
void set_isha_angle(double angle)
{
method_params[Custom].isha_is_minutes = false;
method_params[Custom].isha_value = angle;
calc_method = Custom;
}
/* set the minutes after mid-day for calculating Dhuhr */
void set_dhuhr_minutes(double minutes)
{
dhuhr_minutes = minutes;
}
/* set the minutes after Sunset for calculating Maghrib */
void set_maghrib_minutes(double minutes)
{
method_params[Custom].maghrib_is_minutes = true;
method_params[Custom].maghrib_value = minutes;
calc_method = Custom;
}
/* set the minutes after Maghrib for calculating Isha */
void set_isha_minutes(double minutes)
{
method_params[Custom].isha_is_minutes = true;
method_params[Custom].isha_value = minutes;
calc_method = Custom;
}
/* get hours and minutes parts of a float time */
void get_float_time_parts(double time, int& hours, int& minutes)
{
time = fix_hour(time + 0.5 / 60); // add 0.5 minutes to round
hours = floor(time);
minutes = floor((time - hours) * 60);
}