Skip to content

v0.7: GTFS-RT Update from HTTP(S) Timer and Apple Silicon Support

Compare
Choose a tag to compare
@felixguendling felixguendling released this 27 Feb 15:48
· 440 commits to master since this release
81110b7

MOTIS can now read config values from environment variables!

Translation from the config keys / command line flags from motis --help:

  • prepend MOTIS_
  • all-caps
  • replace . by _.

The config value ris.input can now take URLs (+ Authorization HTTP(S) header) or file system paths:

Single timetable:

[import]
input=schedule:/input/gtfs-nl
input=osm:path_to_osm

[ris]
input=http://gtfs.ovapi.nl/nl/tripUpdates.pb

# ...

Multi-timetable:

[import]
input=schedule-nl:/input/gtfs-nl
input=schedule-swiss:/input/gtfs-swiss
input=osm:path_to_osm

[ris]
input=nl|http://gtfs.ovapi.nl/nl/tripUpdates.pb
input=swiss|https://api.opentransportdata.swiss/gtfsrt2020|my_auth_key

# ...

What's Changed

Full Changelog: v0.6.3...v0.7