tauqeet-js 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +73 -0
- package/dist/index.cjs +1105 -0
- package/dist/index.d.cts +227 -0
- package/dist/index.d.ts +227 -0
- package/dist/index.js +1062 -0
- package/package.json +51 -0
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core mathematical utilities for astronomical calculations.
|
|
3
|
+
* Precision-focused, degree-based trigonometric functions.
|
|
4
|
+
*/
|
|
5
|
+
declare const DTR: number;
|
|
6
|
+
declare const RTD: number;
|
|
7
|
+
/**
|
|
8
|
+
* Sine of an angle in degrees.
|
|
9
|
+
*/
|
|
10
|
+
declare function sind(x: number): number;
|
|
11
|
+
/**
|
|
12
|
+
* Cosine of an angle in degrees.
|
|
13
|
+
*/
|
|
14
|
+
declare function cosd(x: number): number;
|
|
15
|
+
/**
|
|
16
|
+
* Tangent of an angle in degrees.
|
|
17
|
+
*/
|
|
18
|
+
declare function tand(x: number): number;
|
|
19
|
+
/**
|
|
20
|
+
* Inverse sine returning angle in degrees.
|
|
21
|
+
*/
|
|
22
|
+
declare function asind(x: number): number;
|
|
23
|
+
/**
|
|
24
|
+
* Inverse cosine returning angle in degrees.
|
|
25
|
+
*/
|
|
26
|
+
declare function acosd(x: number): number;
|
|
27
|
+
/**
|
|
28
|
+
* Inverse tangent (2-argument) returning angle in degrees.
|
|
29
|
+
*/
|
|
30
|
+
declare function atan2d(y: number, x: number): number;
|
|
31
|
+
/**
|
|
32
|
+
* Normalizes an angle to the range [0, 360).
|
|
33
|
+
*/
|
|
34
|
+
declare function norm360(x: number): number;
|
|
35
|
+
/**
|
|
36
|
+
* Normalizes an angle to the range [0, 24) for time-based degrees.
|
|
37
|
+
*/
|
|
38
|
+
declare function norm24(x: number): number;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Time and Calendar utilities for astronomical calculations.
|
|
42
|
+
*/
|
|
43
|
+
/**
|
|
44
|
+
* Calculates the Julian Date for a given Gregorian date and time.
|
|
45
|
+
* Based on Meeus, Astronomical Algorithms, Chapter 7.
|
|
46
|
+
*/
|
|
47
|
+
declare function getJulianDate(date: Date): number;
|
|
48
|
+
/**
|
|
49
|
+
* Julian centuries since J2000.0.
|
|
50
|
+
*/
|
|
51
|
+
declare function getJulianCenturies(jd: number): number;
|
|
52
|
+
/**
|
|
53
|
+
* Julian millennia since J2000.0.
|
|
54
|
+
*/
|
|
55
|
+
declare function getJulianMillennia(jc: number): number;
|
|
56
|
+
/**
|
|
57
|
+
* Approximate Delta T (TT - UT) in seconds.
|
|
58
|
+
* Reference: Espenak and Meeus (2006).
|
|
59
|
+
*/
|
|
60
|
+
declare function getDeltaT(year: number): number;
|
|
61
|
+
|
|
62
|
+
interface NutationResult {
|
|
63
|
+
deltaPsi: number;
|
|
64
|
+
deltaEps: number;
|
|
65
|
+
eps0: number;
|
|
66
|
+
eps: number;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
interface SolarResult {
|
|
70
|
+
RA: number;
|
|
71
|
+
DEC: number;
|
|
72
|
+
GHA: number;
|
|
73
|
+
SHA: number;
|
|
74
|
+
SD: number;
|
|
75
|
+
HP: number;
|
|
76
|
+
EOT: number;
|
|
77
|
+
distance: number;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
interface MoonResult {
|
|
81
|
+
RA: number;
|
|
82
|
+
DEC: number;
|
|
83
|
+
GHA: number;
|
|
84
|
+
SHA: number;
|
|
85
|
+
SD: number;
|
|
86
|
+
HP: number;
|
|
87
|
+
illumination: number;
|
|
88
|
+
isWaxing: boolean;
|
|
89
|
+
distance: number;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
interface PolarisResult {
|
|
93
|
+
GHA: number;
|
|
94
|
+
SHA: number;
|
|
95
|
+
DEC: number;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* The Astronomy module provides high-precision calculations for celestial bodies.
|
|
100
|
+
* It strictly follows the algorithms in script.js (Meeus based).
|
|
101
|
+
*/
|
|
102
|
+
declare class Astronomy {
|
|
103
|
+
private _jd;
|
|
104
|
+
private _jde;
|
|
105
|
+
private _t;
|
|
106
|
+
private _te;
|
|
107
|
+
private _tau;
|
|
108
|
+
private _nutation;
|
|
109
|
+
private _solar?;
|
|
110
|
+
private _moon?;
|
|
111
|
+
private _polaris?;
|
|
112
|
+
constructor(date?: Date, deltaT?: number);
|
|
113
|
+
get jd(): number;
|
|
114
|
+
get jde(): number;
|
|
115
|
+
get t(): number;
|
|
116
|
+
get te(): number;
|
|
117
|
+
get tau(): number;
|
|
118
|
+
get nutation(): NutationResult;
|
|
119
|
+
get sun(): SolarResult;
|
|
120
|
+
get moon(): MoonResult;
|
|
121
|
+
get polaris(): PolarisResult;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
type index$2_Astronomy = Astronomy;
|
|
125
|
+
declare const index$2_Astronomy: typeof Astronomy;
|
|
126
|
+
declare namespace index$2 {
|
|
127
|
+
export { index$2_Astronomy as Astronomy };
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Types and interfaces for Islamic Prayer calculations.
|
|
132
|
+
*/
|
|
133
|
+
interface Coordinates {
|
|
134
|
+
latitude: number;
|
|
135
|
+
longitude: number;
|
|
136
|
+
elevation?: number;
|
|
137
|
+
}
|
|
138
|
+
type CalculationMethod = 'MWL' | 'ISNA' | 'Egypt' | 'Makkah' | 'Karachi' | 'Tehran' | 'Jafari';
|
|
139
|
+
interface MethodParams {
|
|
140
|
+
fajrAngle: number;
|
|
141
|
+
ishaAngle?: number;
|
|
142
|
+
ishaInterval?: number;
|
|
143
|
+
maghribAngle?: number;
|
|
144
|
+
maghribInterval?: number;
|
|
145
|
+
}
|
|
146
|
+
declare const PRESETS: Record<CalculationMethod, MethodParams>;
|
|
147
|
+
interface PrayerTimesResult {
|
|
148
|
+
fajr: Date;
|
|
149
|
+
sunrise: Date;
|
|
150
|
+
dhahwaKubra: Date;
|
|
151
|
+
dhuhr: Date;
|
|
152
|
+
asr: Date;
|
|
153
|
+
maghrib: Date;
|
|
154
|
+
isha: Date;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
declare class PrayerEngine {
|
|
158
|
+
private coords;
|
|
159
|
+
private method;
|
|
160
|
+
constructor(coords: Coordinates, method?: CalculationMethod);
|
|
161
|
+
calculate(date: Date, asrFactor?: number): PrayerTimesResult;
|
|
162
|
+
private getSolarAt;
|
|
163
|
+
private calculateTransit;
|
|
164
|
+
/**
|
|
165
|
+
* Successive Approximation loop for target Zenith angle.
|
|
166
|
+
* Stops when refinement is < 1 second.
|
|
167
|
+
*/
|
|
168
|
+
private solveIteratively;
|
|
169
|
+
/**
|
|
170
|
+
* Successive Approximation for Sunrise/Maghrib.
|
|
171
|
+
* Formula: 90 + 34' (Refraction) + SD - HP
|
|
172
|
+
*/
|
|
173
|
+
private solvePhenomenonIteratively;
|
|
174
|
+
private solveAsrIteratively;
|
|
175
|
+
private toDate;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* High-level configuration for the library.
|
|
180
|
+
*/
|
|
181
|
+
interface PrayerConfig {
|
|
182
|
+
date?: Date;
|
|
183
|
+
location: Coordinates;
|
|
184
|
+
method?: CalculationMethod;
|
|
185
|
+
madhab?: 'Shafi' | 'Hanafi';
|
|
186
|
+
elevation?: number;
|
|
187
|
+
elevationUnit?: 'm' | 'ft';
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* Calculates prayer times. Supports both a config object or positional arguments for extreme simplicity.
|
|
191
|
+
*
|
|
192
|
+
* positional: getPrayerTimes(lat, lng, method?, madhab?, date?, elevation?)
|
|
193
|
+
* object: getPrayerTimes({ location: { lat, lng }, method: 'Karachi' })
|
|
194
|
+
*/
|
|
195
|
+
declare function getPrayerTimes(arg1: PrayerConfig | number, arg2?: number, arg3?: CalculationMethod, arg4?: 'Hanafi' | 'Shafi' | number, // Madhab or Asr Factor
|
|
196
|
+
arg5?: Date, arg6?: number): PrayerTimesResult;
|
|
197
|
+
|
|
198
|
+
type index$1_CalculationMethod = CalculationMethod;
|
|
199
|
+
type index$1_Coordinates = Coordinates;
|
|
200
|
+
type index$1_MethodParams = MethodParams;
|
|
201
|
+
declare const index$1_PRESETS: typeof PRESETS;
|
|
202
|
+
type index$1_PrayerConfig = PrayerConfig;
|
|
203
|
+
type index$1_PrayerEngine = PrayerEngine;
|
|
204
|
+
declare const index$1_PrayerEngine: typeof PrayerEngine;
|
|
205
|
+
type index$1_PrayerTimesResult = PrayerTimesResult;
|
|
206
|
+
declare const index$1_getPrayerTimes: typeof getPrayerTimes;
|
|
207
|
+
declare namespace index$1 {
|
|
208
|
+
export { type index$1_CalculationMethod as CalculationMethod, type index$1_Coordinates as Coordinates, type index$1_MethodParams as MethodParams, index$1_PRESETS as PRESETS, type index$1_PrayerConfig as PrayerConfig, index$1_PrayerEngine as PrayerEngine, type index$1_PrayerTimesResult as PrayerTimesResult, index$1_getPrayerTimes as getPrayerTimes };
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
interface QiblaResult {
|
|
212
|
+
bearing: number;
|
|
213
|
+
rhumbLine: number;
|
|
214
|
+
distance: number;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Calculates the direction to the Kaaba (Qibla) from a given coordinate.
|
|
218
|
+
*/
|
|
219
|
+
declare function calculateQibla(coords: Coordinates): QiblaResult;
|
|
220
|
+
|
|
221
|
+
type index_QiblaResult = QiblaResult;
|
|
222
|
+
declare const index_calculateQibla: typeof calculateQibla;
|
|
223
|
+
declare namespace index {
|
|
224
|
+
export { type index_QiblaResult as QiblaResult, index_calculateQibla as calculateQibla };
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export { index$2 as Astronomy, Astronomy as AstronomyClass, type CalculationMethod, type Coordinates, DTR, PRESETS, type PrayerConfig, PrayerEngine, index$1 as PrayerTimes, type PrayerTimesResult, index as Qibla, RTD, acosd, asind, atan2d, getPrayerTimes as calculate, calculateQibla, cosd, getDeltaT, getJulianCenturies, getJulianDate, getJulianMillennia, getPrayerTimes, norm24, norm360, sind, tand };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core mathematical utilities for astronomical calculations.
|
|
3
|
+
* Precision-focused, degree-based trigonometric functions.
|
|
4
|
+
*/
|
|
5
|
+
declare const DTR: number;
|
|
6
|
+
declare const RTD: number;
|
|
7
|
+
/**
|
|
8
|
+
* Sine of an angle in degrees.
|
|
9
|
+
*/
|
|
10
|
+
declare function sind(x: number): number;
|
|
11
|
+
/**
|
|
12
|
+
* Cosine of an angle in degrees.
|
|
13
|
+
*/
|
|
14
|
+
declare function cosd(x: number): number;
|
|
15
|
+
/**
|
|
16
|
+
* Tangent of an angle in degrees.
|
|
17
|
+
*/
|
|
18
|
+
declare function tand(x: number): number;
|
|
19
|
+
/**
|
|
20
|
+
* Inverse sine returning angle in degrees.
|
|
21
|
+
*/
|
|
22
|
+
declare function asind(x: number): number;
|
|
23
|
+
/**
|
|
24
|
+
* Inverse cosine returning angle in degrees.
|
|
25
|
+
*/
|
|
26
|
+
declare function acosd(x: number): number;
|
|
27
|
+
/**
|
|
28
|
+
* Inverse tangent (2-argument) returning angle in degrees.
|
|
29
|
+
*/
|
|
30
|
+
declare function atan2d(y: number, x: number): number;
|
|
31
|
+
/**
|
|
32
|
+
* Normalizes an angle to the range [0, 360).
|
|
33
|
+
*/
|
|
34
|
+
declare function norm360(x: number): number;
|
|
35
|
+
/**
|
|
36
|
+
* Normalizes an angle to the range [0, 24) for time-based degrees.
|
|
37
|
+
*/
|
|
38
|
+
declare function norm24(x: number): number;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Time and Calendar utilities for astronomical calculations.
|
|
42
|
+
*/
|
|
43
|
+
/**
|
|
44
|
+
* Calculates the Julian Date for a given Gregorian date and time.
|
|
45
|
+
* Based on Meeus, Astronomical Algorithms, Chapter 7.
|
|
46
|
+
*/
|
|
47
|
+
declare function getJulianDate(date: Date): number;
|
|
48
|
+
/**
|
|
49
|
+
* Julian centuries since J2000.0.
|
|
50
|
+
*/
|
|
51
|
+
declare function getJulianCenturies(jd: number): number;
|
|
52
|
+
/**
|
|
53
|
+
* Julian millennia since J2000.0.
|
|
54
|
+
*/
|
|
55
|
+
declare function getJulianMillennia(jc: number): number;
|
|
56
|
+
/**
|
|
57
|
+
* Approximate Delta T (TT - UT) in seconds.
|
|
58
|
+
* Reference: Espenak and Meeus (2006).
|
|
59
|
+
*/
|
|
60
|
+
declare function getDeltaT(year: number): number;
|
|
61
|
+
|
|
62
|
+
interface NutationResult {
|
|
63
|
+
deltaPsi: number;
|
|
64
|
+
deltaEps: number;
|
|
65
|
+
eps0: number;
|
|
66
|
+
eps: number;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
interface SolarResult {
|
|
70
|
+
RA: number;
|
|
71
|
+
DEC: number;
|
|
72
|
+
GHA: number;
|
|
73
|
+
SHA: number;
|
|
74
|
+
SD: number;
|
|
75
|
+
HP: number;
|
|
76
|
+
EOT: number;
|
|
77
|
+
distance: number;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
interface MoonResult {
|
|
81
|
+
RA: number;
|
|
82
|
+
DEC: number;
|
|
83
|
+
GHA: number;
|
|
84
|
+
SHA: number;
|
|
85
|
+
SD: number;
|
|
86
|
+
HP: number;
|
|
87
|
+
illumination: number;
|
|
88
|
+
isWaxing: boolean;
|
|
89
|
+
distance: number;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
interface PolarisResult {
|
|
93
|
+
GHA: number;
|
|
94
|
+
SHA: number;
|
|
95
|
+
DEC: number;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* The Astronomy module provides high-precision calculations for celestial bodies.
|
|
100
|
+
* It strictly follows the algorithms in script.js (Meeus based).
|
|
101
|
+
*/
|
|
102
|
+
declare class Astronomy {
|
|
103
|
+
private _jd;
|
|
104
|
+
private _jde;
|
|
105
|
+
private _t;
|
|
106
|
+
private _te;
|
|
107
|
+
private _tau;
|
|
108
|
+
private _nutation;
|
|
109
|
+
private _solar?;
|
|
110
|
+
private _moon?;
|
|
111
|
+
private _polaris?;
|
|
112
|
+
constructor(date?: Date, deltaT?: number);
|
|
113
|
+
get jd(): number;
|
|
114
|
+
get jde(): number;
|
|
115
|
+
get t(): number;
|
|
116
|
+
get te(): number;
|
|
117
|
+
get tau(): number;
|
|
118
|
+
get nutation(): NutationResult;
|
|
119
|
+
get sun(): SolarResult;
|
|
120
|
+
get moon(): MoonResult;
|
|
121
|
+
get polaris(): PolarisResult;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
type index$2_Astronomy = Astronomy;
|
|
125
|
+
declare const index$2_Astronomy: typeof Astronomy;
|
|
126
|
+
declare namespace index$2 {
|
|
127
|
+
export { index$2_Astronomy as Astronomy };
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Types and interfaces for Islamic Prayer calculations.
|
|
132
|
+
*/
|
|
133
|
+
interface Coordinates {
|
|
134
|
+
latitude: number;
|
|
135
|
+
longitude: number;
|
|
136
|
+
elevation?: number;
|
|
137
|
+
}
|
|
138
|
+
type CalculationMethod = 'MWL' | 'ISNA' | 'Egypt' | 'Makkah' | 'Karachi' | 'Tehran' | 'Jafari';
|
|
139
|
+
interface MethodParams {
|
|
140
|
+
fajrAngle: number;
|
|
141
|
+
ishaAngle?: number;
|
|
142
|
+
ishaInterval?: number;
|
|
143
|
+
maghribAngle?: number;
|
|
144
|
+
maghribInterval?: number;
|
|
145
|
+
}
|
|
146
|
+
declare const PRESETS: Record<CalculationMethod, MethodParams>;
|
|
147
|
+
interface PrayerTimesResult {
|
|
148
|
+
fajr: Date;
|
|
149
|
+
sunrise: Date;
|
|
150
|
+
dhahwaKubra: Date;
|
|
151
|
+
dhuhr: Date;
|
|
152
|
+
asr: Date;
|
|
153
|
+
maghrib: Date;
|
|
154
|
+
isha: Date;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
declare class PrayerEngine {
|
|
158
|
+
private coords;
|
|
159
|
+
private method;
|
|
160
|
+
constructor(coords: Coordinates, method?: CalculationMethod);
|
|
161
|
+
calculate(date: Date, asrFactor?: number): PrayerTimesResult;
|
|
162
|
+
private getSolarAt;
|
|
163
|
+
private calculateTransit;
|
|
164
|
+
/**
|
|
165
|
+
* Successive Approximation loop for target Zenith angle.
|
|
166
|
+
* Stops when refinement is < 1 second.
|
|
167
|
+
*/
|
|
168
|
+
private solveIteratively;
|
|
169
|
+
/**
|
|
170
|
+
* Successive Approximation for Sunrise/Maghrib.
|
|
171
|
+
* Formula: 90 + 34' (Refraction) + SD - HP
|
|
172
|
+
*/
|
|
173
|
+
private solvePhenomenonIteratively;
|
|
174
|
+
private solveAsrIteratively;
|
|
175
|
+
private toDate;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* High-level configuration for the library.
|
|
180
|
+
*/
|
|
181
|
+
interface PrayerConfig {
|
|
182
|
+
date?: Date;
|
|
183
|
+
location: Coordinates;
|
|
184
|
+
method?: CalculationMethod;
|
|
185
|
+
madhab?: 'Shafi' | 'Hanafi';
|
|
186
|
+
elevation?: number;
|
|
187
|
+
elevationUnit?: 'm' | 'ft';
|
|
188
|
+
}
|
|
189
|
+
/**
|
|
190
|
+
* Calculates prayer times. Supports both a config object or positional arguments for extreme simplicity.
|
|
191
|
+
*
|
|
192
|
+
* positional: getPrayerTimes(lat, lng, method?, madhab?, date?, elevation?)
|
|
193
|
+
* object: getPrayerTimes({ location: { lat, lng }, method: 'Karachi' })
|
|
194
|
+
*/
|
|
195
|
+
declare function getPrayerTimes(arg1: PrayerConfig | number, arg2?: number, arg3?: CalculationMethod, arg4?: 'Hanafi' | 'Shafi' | number, // Madhab or Asr Factor
|
|
196
|
+
arg5?: Date, arg6?: number): PrayerTimesResult;
|
|
197
|
+
|
|
198
|
+
type index$1_CalculationMethod = CalculationMethod;
|
|
199
|
+
type index$1_Coordinates = Coordinates;
|
|
200
|
+
type index$1_MethodParams = MethodParams;
|
|
201
|
+
declare const index$1_PRESETS: typeof PRESETS;
|
|
202
|
+
type index$1_PrayerConfig = PrayerConfig;
|
|
203
|
+
type index$1_PrayerEngine = PrayerEngine;
|
|
204
|
+
declare const index$1_PrayerEngine: typeof PrayerEngine;
|
|
205
|
+
type index$1_PrayerTimesResult = PrayerTimesResult;
|
|
206
|
+
declare const index$1_getPrayerTimes: typeof getPrayerTimes;
|
|
207
|
+
declare namespace index$1 {
|
|
208
|
+
export { type index$1_CalculationMethod as CalculationMethod, type index$1_Coordinates as Coordinates, type index$1_MethodParams as MethodParams, index$1_PRESETS as PRESETS, type index$1_PrayerConfig as PrayerConfig, index$1_PrayerEngine as PrayerEngine, type index$1_PrayerTimesResult as PrayerTimesResult, index$1_getPrayerTimes as getPrayerTimes };
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
interface QiblaResult {
|
|
212
|
+
bearing: number;
|
|
213
|
+
rhumbLine: number;
|
|
214
|
+
distance: number;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Calculates the direction to the Kaaba (Qibla) from a given coordinate.
|
|
218
|
+
*/
|
|
219
|
+
declare function calculateQibla(coords: Coordinates): QiblaResult;
|
|
220
|
+
|
|
221
|
+
type index_QiblaResult = QiblaResult;
|
|
222
|
+
declare const index_calculateQibla: typeof calculateQibla;
|
|
223
|
+
declare namespace index {
|
|
224
|
+
export { type index_QiblaResult as QiblaResult, index_calculateQibla as calculateQibla };
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
export { index$2 as Astronomy, Astronomy as AstronomyClass, type CalculationMethod, type Coordinates, DTR, PRESETS, type PrayerConfig, PrayerEngine, index$1 as PrayerTimes, type PrayerTimesResult, index as Qibla, RTD, acosd, asind, atan2d, getPrayerTimes as calculate, calculateQibla, cosd, getDeltaT, getJulianCenturies, getJulianDate, getJulianMillennia, getPrayerTimes, norm24, norm360, sind, tand };
|