elicit_proj 0.11.1

Elicitation-enabled proj shadow crate — MCP tools for coordinate reference system and projection descriptors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `elicit_proj` — MCP workflow tools for the [`proj`] coordinate transformation library.
//!
//! Provides a serializable [`ProjTransform`] snapshot wrapper around [`proj::Proj`] and MCP
//! workflow tools for creating transforms, converting coordinates, projecting geometries, and
//! transforming bounding boxes.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

mod error;
mod transform;
pub mod workflow;

pub use error::{ProjResult, ProjTransformError, ProjTransformErrorKind};
pub use transform::{ProjSpec, ProjTransform};
pub use workflow::{ProjCreated, ProjTransformPlugin};