Felix Gündling

Results 110 comments of Felix Gündling

The GBFS module requires the OSRM foot routing profile to be enabled. Disabling the GBFS module is the right thing to do in this case. I think it makes sense...

If you do not list the `gbfs` module, it's disabled. As shown in the example above.

I can't find something like a real standard / RFC on JSON logging. Which format would you prefer? There's a lot of content about JSON logging out there but everybody...

Makes sense. Being compatible to bunyan and/or pino would have the benefit of being able to use their pretty-print tools. Sounds great! :rocket:

It seems like you are neither passing configuration parameters nor do you have the `config.ini` file. I wrote a small setup script for you: ```sh #!/bin/sh MOTIS_URL=https://github.com/motis-project/motis/releases/latest/download/motis-linux-amd64.tar.bz2 SCHEDULE_URL=https://opentransportdata.swiss/dataset/55b617c1-7241-4254-b243-0352d5523f6f/resource/54262e6d-04df-4d7d-bdb2-b6d173a49d0a/download/4_tu_ch_oev_sammlung_ch__2021_20211208_201836.zip OSM_URL=https://download.geofabrik.de/europe/switzerland-latest.osm.pbf #...

MOTIS can load GTFS and handles GTFS-RT in real-time. Do you have an URL for your feeds? We run MOTIS detached either via `docker compose` (see [here](https://motis-project.de/release/2021/09/11/motis-tools-release.html) or via SystemD...

We switched to `docker compose` for all our MOTIS instances. But here are the systemd unit files. They belong to `/etc/systemd/system`. `motis.service` ```ini [Unit] Description=Motis After=network.target [Service] Restart=always RestartSec=15 TimeoutStartSec=300...

I adapted the script for the Poznan data: ```bash #!/bin/sh MOTIS_URL=https://github.com/motis-project/motis/releases/latest/download/motis-linux-amd64.tar.bz2 SCHEDULE_URL=https://www.ztm.poznan.pl/pl/dla-deweloperow/getGTFSFile/?file=20211214_20211217.zip OSM_URL=https://download.bbbike.org/osm/bbbike/Poznan/Poznan.osm.pbf # Create folder. mkdir -p motis-poznan/data/gtfs mkdir -p motis-poznan/data/gtfs-rt cd motis-poznan # Download and unpack MOTIS. wget...

The GTFS-RT feed does only contain coordinate updates for the vehicles: ```js { id: "9115" trip_update { trip { trip_id: "1_12179^D" schedule_relationship: SCHEDULED route_id: "901" } stop_time_update { stop_sequence: 0...

Always happy to join forces! :sunglasses: But I'm not exactly sure what you're proposing. Feel free to reach out to me `[email protected]`.