mappers 0.3.2

Pure Rust geographical projections library
Documentation
mod internals;
mod projections;

#[test]
fn azimuthal_equidistant() {
    projections::azimuthal_equidistant::test_points_with_proj();
}

#[test]
fn lambert_conformal_conic() {
    projections::lambert_conformal_conic::test_points_with_proj();
}

#[test]
fn lcc_single_par() {
    projections::lcc_single_par::test_points_with_proj();
}

#[test]
fn modified_azimuthal_equidistant() {
    projections::modified_azimuthal_equidistant::test_points_with_proj();
}