routee-compass 0.19.2

The RouteE-Compass energy-aware routing engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module provides the helpers for map matching.
//! The map matching logic itself is now integrated into `CompassApp`.

mod map_matching_app_error;
mod map_matching_request;
mod map_matching_response;

#[cfg(test)]
mod map_matching_tests;

pub use map_matching_app_error::MapMatchingAppError;
pub use map_matching_request::{MapMatchingRequest, TracePoint};
pub use map_matching_response::{MapMatchingResponse, MatchedEdgeResponse, PointMatchResponse};