Update OSRM Date Preprocessing Pipeline

Hamza 2026-03-30 10:03:43 +02:00
parent aab7763835
commit 05913efe51
2 changed files with 12 additions and 1 deletions

@ -0,0 +1,12 @@
The Data Preprocessing Pipeline transorms raw OpenStreetMap (OSM) data into optimized routing graphs that can be efficiently queried by OSRM's routing engine.
# Data Preprocessing Pipeline Overview
The pipeline supports two algorithmic approaches:
**Contraction Hierarchies (CH):** Uses **`osrm-extract`**, **`osrm-contract`** for graph contraction.
**Multi-Level Dijkstra (MLD):** Uses **`osrm-extract`**, **`osrm-partition`** followed by **`osrm-customize`**
For our case we're using **Contraction Hierarchies**, So we extract `*.osm` by executing these commands:
```
```

@ -1 +0,0 @@
TODO