The re-routing layer for autonomous driving.
When an accident, a closure or fresh congestion appears, your vehicle should not stall to recompute the whole route. We absorb the change as a tiny update and hand back the new route in milliseconds, on board, beside your own planner. The route is solved, not guessed: the mathematics brings order to chaos, so a re-plan of around 100 stops lands in about 1 ms. You keep your map.
Where it fits
A routing companion that runs next to your autonomy stack, it does not replace your perception, control or HD map.
What it does
What it does
Event-aware re-route
A reported closure, crash or jam becomes a cost change on a handful of road segments. We re-route by updating only those, not the whole map, up to 302x faster online or off.
Runs on board
Light enough for the vehicle's own compute, so re-routing keeps working with no connection, and your route data never leaves the car.
You keep your map
Bring your own road graph or HD map. We are the speed layer on top of it, not a map-data provider, important for licensing in regulated markets.
Fleet & V2X ready
Feed events from one vehicle, the cloud or roadside units; re-route every affected vehicle in the fleet at once.
Who it is for
The API
REST over HTTPS, or link the engine as an on-board library. Same endpoints as the live service, so you can send a route and a fresh incident and time the re-route yourself.
/v1/av/route endpoint is deliberately fail-closed outside the mapped autonomous operational design domain. If your origin/destination is not in the current permitted ODD, the API returns 422 with a clear message; that is the safe beta behaviour, not a production autonomy claim.# Plan the route on your road graph POST /v1/route { "from": [-26.10,28.05], "to": [-26.20,27.86] } # An event appears, re-route by sending only what changed POST /v1/reroute { "from": [...], "to": [...], "prev_geometry": [...], "incident_index": 42 } # → returns the new route + the minimal delta (only the changed points)
| Capability | Status | Notes |
|---|---|---|
| Route planning on your graph / HD map | ● Live | Bring your own map; we route on it. |
| Millisecond event re-route (minimal delta) | ● Live | The core advantage for fast vehicles. |
| On-board / edge deployment | ● Live | Runs offline on the vehicle's compute. |
| Live-event & V2X ingestion | ◆ Rolling out | Closures, incidents, congestion as cost updates. |
| Functional-safety integration package | ◆ Partner | Delivered with your safety case (see scope below). |
The re-routing layer for autonomous driving.
When an accident, a closure or fresh congestion appears, your vehicle should not stall to recompute the whole route. We absorb the change as a tiny update and hand back the new route in milliseconds, on board, beside your own planner. Their AI guesses, ours is solved. You keep your map.



