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
// 📃 ./src/libs/consts.rs
/// 📚 【 POL】: Średni promień Ziemi w metrach (model sferyczny R1).
/// 📚 【 ENG】: Mean Earth radius in meters (spherical model R1).
pub const EARTH_MEAN_RADIUS_METERS: f64 = 6_371_000.0;
/// 📚 【 POL】: Przyśpieszenie ziemskie (standardowe) w m/s².
/// 📚 【 ENG】: Standard Earth gravity in m/s².
pub const G_ACCELERATION: f64 = 9.80665;
/// 📚 【 POL】: Tryb promienia używany w obliczeniach łukowych i konwersjach DMS.
/// 📚 【 ENG】: Radius mode used in arc calculations and DMS conversions.