mapproj/pseudocyl/
mod.rs

1//! Module containing all implemented pseudocylindrical projections
2//! (each projection is in its own sub-module).
3//!
4//! > Pseudocylindricals projections are like cylindrical projection except that
5//! > the parallels of latitude are projected at diminishing lengths towards the
6//! > polar regions in order to reduce lateral distorsion there.
7//! > (Calabretta and Greisen).
8
9pub mod ait;
10pub mod mol;
11pub mod par;
12pub mod sfl;