gistools/proj/mod.rs
1/// Common functions for all projections
2pub mod common;
3/// Convert tools
4pub mod convert;
5/// Geodesic tools
6pub mod geodesic;
7// /// Generated EPSG codes
8// pub mod generated;
9/// Projection internal tooling
10pub mod internal;
11/// Projection Parsing tools
12pub mod parse;
13/// Projection tools
14pub mod project;
15/// Transformation tools
16pub mod transform;
17
18pub use common::*;
19pub use convert::*;
20// pub use generated::*;
21pub use geodesic::*;
22pub use internal::*;
23pub use parse::*;
24pub use project::*;
25pub use transform::*;
26
27// TODO:
28// - [ ] Migrate away from early converting to radians? Maybe instead always be degrees then when
29// pulling the ProjValue we also .to_radians(). The problem is user input is always degrees