geodesy/math/mod.rs
1//! Miscellaneous math functions for general use
2
3/// Free functions used in more than one module of the crate.
4pub mod ancillary;
5pub use ancillary::gudermannian;
6
7/// Free functions for handling and converting between
8/// different representations of angles.
9pub mod angular;
10
11/// Computations involving the Jacobian matrix for investigation
12/// of the geometrical properties of map projections.
13pub mod jacobian;
14
15/// Fourier- and Taylor series
16pub mod series;
17pub use series::fourier;
18pub use series::taylor;
19
20pub use series::taylor::fourier_coefficients;
21pub use series::FourierCoefficients;
22pub use series::PolynomialCoefficients;