Skip to main content

pfaedle-routing

pfaedle — map-matching preciso para feeds GTFS. Genera shapes de alta calidad a partir de datos de tránsito.

Zur Installation springen

Quellinformationen

Repository
Ntizar/NtizarBrainMasterMind
Letzte Quellaktivität
16. Juli 2026 um 08:02
Erkannte Sprache von SKILL.md
Spanisch
Sterne
2
Forks
0

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
pfaedle-routing
description
pfaedle — map-matching preciso para feeds GTFS. Genera shapes de alta calidad a partir de datos de tránsito.
# pfaedle — Map-Matching para GTFS ## Qué hace [pfaedle](https://github.com/ad-freiburg/pfaedle) es un motor de map-matching de alta precisión para feeds de transporte público. Genera shapes de ruta de alta calidad a partir de datos GPS de vehículos, ideal para corregir shapes GTFS incorrectos o incompletos. ## Instalación ```bash # pfaedle es una herramienta C++ que se compila desde fuente git clone https://github.com/ad-freiburg/pfaedle.git cd pfaedle mkdir build && cd build cmake .. make -j$(nproc) sudo make install ``` ## Uso básico ```bash # Map-match tracks GPS a una ruta GTFS pfaedle --gtfs feed.zip --tracks tracks.csv --output matched.zip # Validar shapes existentes pfaedle --gtfs feed.zip --validate-shapes ``` ## Integración con pipelines GTFS ```python # Ejemplo de integración con node-gtfs o gtfstidy # 1. Validar con gtfstidy # 2. Corregir shapes con pfaedle # 3. Exportar resultado ``` ## Pitfalls - Requiere datos GPS de alta calidad (frecuencia ≥ 1 Hz) - Necesita un archivo OSM del área de interés para el map-matching - El rendimiento depende del tamaño del área y la cantidad de tracks - Compatible con Linux principalmente ## Referencias - Repo: https://github.com/ad-freiburg/pfaedle - Relacionado: `gtfs-tidy`, `node-gtfs`, `graphhopper-routing`, `valhalla-routing` - Paper: "pfaedle: Precise Map-Matching for Public Transit Feeds" (Freiburg University)
Auf GitHub ansehen