GTFS 和多条路线
我正在使用 GTFS 格式。我有一个担忧,例如考虑一个稍微复杂的网络,其中用户想要从源“A”前往目的地“B”,但实际上不存在从 A 到 B 的直接路线。但我们可以从 A 通过站点 C 到达 B。我看不到 GTFS 中提到的方式来知道在我们的示例中存在到达 B 的某些路线(A->c->B)。我在这里错过了什么吗?或者除了实现我们自己的算法之外没有办法做到这一点?或者某些第三方已经在 java 中实现了该算法(我相信有人做到了;))。
提前致谢。
干杯 斯里拉姆。
PS:由于我无法创建新标签,因此我有 Transport,java 标签(不是 gtfs 或类似的东西)
I am working with GTFS format.I have a concern for example consider a little complex network where a user want to travel from a source 'A' to Destination 'B' and actually there exist no direct route from A to B.But we can reach B from A thru a stop C. i cant see a way mentioned in GTFS to know that there exist some route to reach B in our example(A->c->B). Do i miss something here? or there is no way to do that but to implement our own algo? or is some third party already implemented the algo in java (i believe someone did it ;) ).
Thanks in advance.
Cheers
Sriram.
PS:As i am unable to create new tags hence i have the transport,java tag (not gtfs or something similar to that)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GTFS 并不能帮助识别跨不同路线的路径,这必须在飞行中完成。
Well GTFS does not help in identifying paths across different routes and this has to be done on fly.
正如 Sriram 4.5 年前的回答所指出的那样,GTFS 并不试图表示通过交通网络的所有可能路径。 OpenTripPlanner 是一个开源项目,试图在一般情况下解决此问题:http://www.opentripplanner.org/ 。 OTP 使用 GTFS 作为其主要调度输入。
As Sriram's answer from 4.5 years ago notes, GTFS does not attempt to represent all possible paths through a transit network. OpenTripPlanner is an open-source project that tries to solve this problem in the general case: http://www.opentripplanner.org/. OTP uses GTFS as its primary schedule input.