---
name: ellmos-ai/reiseroute
source: https://app.decimal.ai/s/ellmos-ai-reiseroute@1/SKILL.md
source_sha256: 58706b81acbf
---

<img src="banner.png" width="100%" alt="reiseroute banner">

> **Deutsch** — Offizielle Deutsch-Version / Documento Oficial en Deutsch.


# Travel Route (Deutsch)

**Route planning via OSRM (Open Source Routing Machine)**

---

## Übersicht & Zweck

Plans routes between two locations (names or coordinates) via the public
OSRM service (`router.project-osrm.org`). Returns distance, travel time and
mode of transport. No API key, no account required.

---

## Triggers

| Phrase | Action |
|---|---|
| "Plan the route from Berlin to Hamburg" | Car route, geocode place names |
| "How long does the drive from Munich to Vienna take by car?" | Car route + time |
| "Cycle route from Potsdam to Berlin" | Bicycle mode |
| "Walk from Kreuzberg to Mitte, Berlin" | Pedestrian mode |
| "Route from 52.52,13.41 to 53.55,9.99" | Direct coordinates |

---

## Workflow & Vorgehen

1. **Extract start and destination** from the user input.
2. **Detect mode:** car (default), bicycle, foot.
3. **Geocode:** place names → coordinates via Nominatim.
4. **Query OSRM:** returns distance (km) + duration (formatted).
5. **Output result:** concise text summary.

---

## CLI

```bash
# Car route between two places (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Berlin" "Hamburg"

# Bicycle (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Potsdam" "Berlin" --modus fahrrad

# On foot (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Kreuzberg, Berlin" "Mitte, Berlin" --modus fuss

# Coordinates directly (lat,lon) (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "52.5200,13.4050" "53.5500,9.9937"

# JSON output (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py "Munich" "Vienna" --json

# Help (Deutsch)
PYTHONDONTWRITEBYTECODE=1 python reiseroute_core.py --help
```

---

## Modes

| Mode | Alias | OSRM profile |
|---|---|---|
| auto (default) | car, pkw, fahren | driving |
| fahrrad | bike, rad, radfahren | cycling |
| fuss | foot, laufen, gehen, zu fuss | foot |

---

## Store

No persistent store. Routes are not saved.

---

## Attitude

- Always name start and destination before calculating.
- Clarify if a place is ambiguous (e.g. "Vienna" = Austria or a city of the same name?).
- Note: OSRM provides the fastest route without real-time traffic.
- Issue a note for very long pedestrian routes (> 20 km).

---

## Privacy

Requests go to `nominatim.openstreetmap.org` (geocoding) and
`router.project-osrm.org` (routing). No login, no API key,
no persistent data storage.

---

## Related Resources

- `location-suche` — POI search (also uses Nominatim)
- `wetter` — weather at the destination

---

## Änderungsprotokoll

| Version | Date | Change |
|---|---|---|
| 1.0.0 | 2026-06-22 | Created from BACH routing_service.py v1.0; geocoding integrated |