hrdf_routing_engine/
lib.rs

1mod app;
2mod debug;
3mod isochrone;
4mod routing;
5mod service;
6mod utils;
7
8#[cfg(feature = "hectare")]
9pub use app::run_surface_per_ha;
10pub use app::{run_average, run_comparison, run_optimal, run_simple, run_worst};
11pub use debug::run_debug;
12pub use isochrone::externals::{ExcludedPolygons, LAKES_GEOJSON_URLS};
13pub use isochrone::{IsochroneArgs, IsochroneDisplayMode};
14#[cfg(feature = "hectare")]
15pub use isochrone::{IsochroneHectareArgs, externals::HectareData};
16pub use routing::{Route, plan_journey, plan_shortest_journey};
17pub use service::run_service;