oxiproj-engine 0.1.1

Proj-string parser, operation dispatch, and transformation pipelines for OxiProj.
Documentation
#![forbid(unsafe_code)]
//! `oxiproj-engine` — Proj-string parser, operation dispatch, and transformation pipelines.
//!
//! Part of [OxiProj](https://github.com/cool-japan/oxiproj), the COOLJAPAN Pure-Rust
//! port of PROJ. See the workspace blueprint `oxiproj.md` for the full design.
mod context;
mod create;
mod distortion;
mod params;
mod pipeline;
mod pipeline_opt;
mod pj;
mod registry;
mod setup;

pub use context::{Context, TmercAlgo};
pub use create::{create, create_with_ctx, trans, trans_array};
pub use distortion::{DistortionRaster, TissotCell, TissotMethod};
pub use params::{parse, ParamList, ParamView};
pub use pipeline::Pipeline;
pub use pj::Pj;
pub use setup::setup_ellipsoid;