oxiproj-engine 0.1.0

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 params;
mod pipeline;
mod pj;
mod registry;
mod setup;

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