-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a location is "on" a node, do we have to create a location entry? #12
Comments
Recommend, "yes", so that gtfs_stop_id always maps to a location. It is rare to have a transit stop that is actually in the middle of an intersection (although that might be a reasonable approximation for a low resolution network) |
In practice, this is how most GTFS networks AND model networks represent stops. Requiring transit stops to be in a location table presents an added layer of complexity for simplified networks. I suggest we discuss various options here and their implications at our next meeting. |
A location association with a stop id should ideally only be used if it represents something greater - i.e. a transfer hub, a shelter polygon etc. Otherwise, it would only result in data duplication as e-lo points out. A stop in GTFS = Node because there is no underlying road network in it. However, if we consider an underlying road network, these stop locations will seldom align with an intersection. In case of TDM networks, the mid-block stop is on a dummy/shape node. If the motivation behind using location is to represent mid-block stops without using dummy nodes, then the stop table could be augmented as follows (last three attributes would be appended to the stop table): STOPNO | NODENO | ISONLINK | FROMNODENO | LINKNO | RELPOS ISONLINK = (bool) | FROMNODENO, LINKNO, RELPOS populated only populated if ISONLINK = 1) X, Y is inherited from NODENO |
My (personal) suggested design goals are:
@joshchea 's suggestion is efficient, but breaks 3 which I think is important (for now) |
For example: If I have a gtfs_stop_id that is at an intersection. Do I have to create a location entry in addition to the node?
The text was updated successfully, but these errors were encountered: