Replies: 3 comments 2 replies
-
|
We're interested to have something like Loom directly inside MOTIS (e.g. as additional tile layer). MOTIS merging of GTFS feeds is quite simple at the moment:
For your goals, probably only the first one is needed. I'm not opposed to add a few more endpoints to MOTIS (including functionalities you mention). However, I don't think that MOTIS is the only tool that can accomplish this. Adding a prefixing logic to a tool that loads GTFS into a Postgres database could probably do the same. And there, each of your endpoints would be a simple SQL query instead of hundrets of lines of C++ code. |
Beta Was this translation helpful? Give feedback.
-
|
Ah I see. Yes that makes sense. Maybe I'll write a small server at some point. So you'd argue for the structural queries that do not require routing it would be more beneficial to just do static queries to a database. I guess the only downside is then that you'd have to run the ingestion pipeline twice. (in case you want to use the structural data in an application and not just for generating nice graphics.) |
Beta Was this translation helpful? Give feedback.
-
|
Checkout https://codeberg.org/cartes/serveur We're producing transport maps and stop hours APIs that can be seen here : https://cartes.app/?style=transports#7.43/48.255/-3.119 We're using node-GTFS : a local DB filled with GTFS and easy to query (despite not as quick as Motis, far from it). |
Beta Was this translation helpful? Give feedback.




Uh oh!
There was an error while loading. Please reload this page.
-
Hey,
I just learned about motis in the context of the Transitous project. I think it is really cool what is happening there and the task of compiling and handling all that data is really huge. That is why it think it could be very profitable to extend motis to support some non routing tasks.
Namely I have in mind/looking for the following use cases:
The idea behind this is that i would like to do some analysis on transport networks and also visualize them, maybe using https://github.com/ad-freiburg/loom
Or using the data to automatically generate speed maps for certain types of transport like shown in https://marcochitti.substack.com/p/getting-bus-priority-right-lessons
Why do I think it should be part of Motis?
Because Motis seems to be already a place where multiple GTFS streams are combined and so it seems logical to start these queries here as otherwise one would have to build a complete stack again to answer the above questions. It might not be part of the core question that motis is trying to answer, but i still think it would be the right place to add this.
Furthermore, especially in urban networks it is often hard to get useful transit diagrams from official sources. Sometimes they do not exist at all, or sometimes when they exist they might leave out regional busses or trains, because the map is just provided by one operator. When this kind of automation would work, then this would also be a benefit to everyday users.
Beta Was this translation helpful? Give feedback.
All reactions