Add car journey route generator

This commit is contained in:
Edward Betts 2026-07-09 10:11:47 +01:00
parent 1e9169b740
commit b7d95f26ec
3 changed files with 1115 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/usr/bin/python3
import os
import sys
SCRIPT_PATH = os.path.realpath(__file__)
SCRIPT_DIR = os.path.dirname(SCRIPT_PATH)
REPO_ROOT = os.path.dirname(SCRIPT_DIR)
if REPO_ROOT not in sys.path:
sys.path.insert(0, REPO_ROOT)
from agenda.car_journey_yaml import main
if __name__ == "__main__":
raise SystemExit(main())