-
Notifications
You must be signed in to change notification settings - Fork 183
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
GTFS-Fares v2 base implementation #286
Conversation
I don't like that the amount + currency are moved to the rules. This makes no sense to me, IMHO it's a step back from fare_attributes. Until now basically 1 fare attribute represented (more or less) 1 ticket type. It also enabled us to add additional fields to the fare_attributes (i.e: ticket_image_url, so we can see how a bus ticket looks like as opposed to a tram ticket, or we could even have profiles, by adding :student_price, pensioner_price. Or in certain cases buses for tourists accept either local currency or USD or EUR but basically they have a price in these currencies (not moving with the currency rate)) All these features are gone if we want to move to the 2 new files (which either forbids the use of the old fare_attributes.txt or if we accept Paul's suggestion then it's not used any more if the consumer does read the new files) What I suggest instead is to keep fare_attributes.txt (or if it's too complicated technically then add a new file) where we can "aggregate" these things, and instead of having (amount, currency) in each line of fare_leg_rules, fare_transfer_rules we could have fare_id. |
I just wanted to note that thanks to the great work by @mcplanner @drewda @jewel1965 and the enthusiasm to publish this data by many many transit providers in California.... Over 70 GTFS Datasets in CA now publish Fares v2 and we are on our way to having dozens more (maybe all?) by the end of the year. We are looking forward to the full adoption of this PR so that we can move forward on firmed ground w.r.t. tooling and data publication. |
Just wanted to give kudos to the Interline team for helping Metropolitan Transportation Commission of the San Francisco Bay Area to build the GTFS-Fares v2 as part of our Regional GTFS feed. The Regional GTFS feed has allowed us to create discounted fares for interagency transfers alongside Pathways data that facilitates navigation between services offered by multiple agencies at a transit station/hub. Thanks to Drew, Ian, and Ruth for their dedication to this work. The team will continue to deliver more exciting stuff as our work continues. |
The base of Fares v2 is built on defining cost for individual legs of travel (with exhaustive characteristics for zones, distance, networks, rider categories, etc) using This approach was taken to allow for granularity that was hard to model in the historical
Something like this would be possible using
Rider categories are possible in Fares v2 using
How do you handle multi-currency tickets? AFAIK this is not inherit in the official
I've changed all files to "optional" (details to be clarified). I think it would be ok to provide both "v1" and "v2", but the files do work independently of each other. It would be up to the consumer to choose which implementation they want to represent.
I'm interested in seeing a model built on |
Are there any other discussions or clarification questions? Or should this be staged to a vote? |
I still would like to know if the following separate cases are supported;
|
This scenario seems a bit nuanced. Can you please provide the link to the fare policy so I can do a thorough review? So far I understand the following:
Is this a correct interpretation?
Distance based fares are done using
This is a very basic illustrative example. If you can provide it, I'd love to see the actual fare policy to work through the modelling scenarios in detail alongside all the features in the complete proposal to see how we can model it (http://bit.ly/gtfs-fares). |
rider categories in the proposal have 1 huge disadvantage: as opposed to any real world fare system I know of it is based on an assumption that different rider categories will have different rules. I don't know any place in the world like that. In other words: implementing the proposed rider categories would mean that if you have C rider categories and R rules, then you would need to copy each rule C times, and end up with C*R lines. This is unnecessary in my opinion as from what I have seen it's much easier: keep the R rules, and reference the A fare_attributes, and in each of the A fares you can have a different price for the C rider categories. Usually R >> A >> C and you end up with R+A lines (in the rules + attributes files) with an additional C columns in the attributes file. The same is the problem with your workaround regarding the multiple currencies. Instead of having additional pairs of columns in fare_attributes (ie: amount1:3, currency1:EUR, amount2:4, currency2:USD) you would need to duplicate the rules. Both of the above examples (by having the amount+currency in the rules) have 2 things I don't like: 1. duplicating the rules makes data unnecessarily bigger, 2. implementations become more complicated. How do you "compare the rules" to decide which one renders the cheapest price?
We do use a very complex (partially based on ideas from Fares v2 + additional fetures we needed) fare system. But we kept the "fare" as being an entity defined in 1 line of the fare_attributes.txt very close to the official definition. We "removed"* some fields that make no sense being there and moved them to our enhanced rules (payment_method, transfers, transfer_duration). On the other hand we added a new field: fare_type which is an enum: {Normal, TransferFee, AdditionalFee and we also have a special value: ContinuePreviousFare - not sure if it makes sense outside of our implementation though} And our fare calculator does it's thing, and filters out all the rules, and through them the fares as probably most of the other fare calculators do, but at the end we have the filtered list with multiple fares. So we don't just chose the cheapest fare, but we have 2 groups: {Normal, Continue} => chose the cheapest, and throw away the rest, {TransferFee, AdditionalFee} => add all these to the "wallet" (to the total price of the journey). Example of TransferFee: Sudney: you get a -$2 discount in certain cases of transfers, AdditionalFee: Sydney: if you board or alight at the airpor tyou pay an additional $14 fee. All our rules have a required fare_id that is a foreign key to fare_attributes. The proposed changes in this PR make it very hard to import the new V2 files to our existing system because of this. The best I could do is to enumerate the different amounts in the 2 new rules files, and create a virtual fare_id for each. But then instead of fixing a not-too-good V1 fare system we created a V2 that might be a bit better here and there but lacks in other places. *) removed means: that we still import these fields if there's an official GTFS for the fares, but when there isn't such then we build our own version that has the aforementioned fields not as a property of the fare but of the rule. The problem with all the things we do in-house is that we're both the producer and the consumer so I'm not sure if everything will make sense to others (though I'm pretty sure that we do have some things that could easily benefit to many others and are easily implemented - at least in terms of adding new optional fields to existing files) or whether it constitutes the requirements that proposed changes should have at least 1 producer and 1 consumer :) |
@scmcca Your "interpretation" or example is probably correct for many agencies, but there are some more tricky ones that you couldn't do that way: |
Hello everyone, we have addressed all the in-scope items from this message and it seems that we are set to reopen the vote. @scmcca as the advocate of this proposal can you please do that? We are hoping to get this passed this time as fares is an important aspect of trip planning. Transit riders need accurate information on how much their trips will cost and what other pricing options are out there. This will enable them to make better decisions on how and when they travel to do what they need to do - whether it is work, school, shopping, healthcare, leisure, or anything else. I also wanted to thank everyone who contributed to making the base implementation of GTFS-Fares v2 a robust extension. A special thanks to the data consumers and producers who have piloted the deployment of this extension, without that, we could not have been able to reach this point in development and open the vote. On behalf of MobilityData, I am very excited to see how this will unfold! |
Hi everyone, with the proposal updated, and the conversations slowing down - we are opening the vote! This vote is for the base implementation of GTFS-Fares v2 as outlined in this pull request. There are at least three producers:
And at least one consumer: Voting ends on 2022-05-16 at 23:59:59 UTC. |
+1 Transit app. Thanks again to everyone working to make sure this specification provides a stable base for displaying fare information. We look forward to seeing the benefits that this will bring to transit riders worldwide. |
+1 from Interline Thanks to the organizations and individuals involved in refining this PR. This will serve well as both a base core of functionality and as a foundation for additions to be formalized in future PRs. |
+1 from MTC Appreciate the engagement and hard work by everyone involved. I am looking forward to taking it beyond the base implementation. |
10, 17: Didn't we agree that fare_product_id is NOT part of the primary key (of fare_leg_rules.txt, fare_transfer_rules.txt) but we're allowing the same fare_product_id in multiple lines of fare_products.txt? Or did I misunderstand this? 26: transfer_count: "Non zero integer"? Like -3 ;) This is confusing IMHO. Maybe change it to "Positive integer or -1 or empty" (though it's ugly)... |
@flocsy this is a bit too last minute since the files have been changed and the vote opened. For points 10, 17 - this was the outcome of the discussion → Link. One of the reasons why For point 26: The type is Non-zero integer, and the field definition outlines the Valid Options as:
Hence a value of -3 is forbidden. More discussions on fares are very important - and we encourage that at MobilityData - however, we are at a point where the industry needs standardized fares to enable transit riders to better plan their trips. With that in mind, I urge everyone to focus on what we have in the base implementation, and get it approved since it works. Afterwards, the community can continue conversations on how to improve and expand the specification. |
+1 from Trillium Thanks to everyone for your rigorous work in getting Fares v2 to this milestone. We look forward to both the base implementation's continued refinement and the eventual integration of the extension's other components (we are particularly excited about the ability to apply fares to |
+1 from Ito World Like many here, we look forward to this forming a foundation for further enrichment of the capability of GTFS to represent real-world fares |
+1 from Maryland Transit Administration. Still looking good and still excited at the prospect of riders finally having easy access to all this info! |
+1 from IBI Group Thanks for all the hard work and emphasis on community involvement in the amendment process. IBI Group is excited to see improvement to the modelling of fares in GTFS and the resulting benefits for customer information. |
+1 from LA Metro Thanks for all the hard work everyone has put into this! |
+1 from @cal-itp Big thanks to everyone involved with this and notably to the Mobility Data team for all of their facilitation efforts. |
The voting period ended on 2022-05-16 at 23:59:59 UTC. With 9 votes in favour and no votes against, the vote to extend GTFS with the base implementation of GTFS-Fares v2 passes! The votes came from:
It is great to see this pull request come to a close, and we are excited to see what is next for GTFS-Fares v2. We encourage you to continue the conversations on the future of this extension by opening GitHub issues as well as Pull Requests. On our end, to keep momentum on the fares project, we are dedicating a workshop session at our International Mobility Data Summit in Montreal to discuss GTFS-Fares, and we look forward to seeing you there! |
When the initial Fares v2 base implementation was added to the official spec (#286), it also included some changes for Fares v1. Specifically, `fare_rules.txt` was now marked as conditionally required if `fare_attributes.txt` is present. I believe this change was a mistake and should be reverted.
[Original message from 2021-10-14 below]
Update as of 2022-04-19:
As previously mentioned, MobilityData wants to drive this proposal and here is a summary of what has been done so far as well as the next steps.
These issues are listed below:
In scope items:
Below is the list of in-scope items that we will work on:
fare_leg_rules.txt
andfare_transfer_rules.txt
(from @flocsy’s comment 10, 17)fare_products.fare_product_id
(from [@drewda](https://github.com/drewda)’s comment)Timeline:
We are planning an accelerated timeline to address those items since we believe we are very close to consensus
Week of Apr 11:
fare_products.fare_product_id
(here) and to discuss wording changes (here)Week of Apr 18:
Week of Apr 25:
Week of May 2:
May 9:
Update as of 2022-01-31:
Hello everyone,
As previously mentioned, MobilityData wants to drive this proposal and here is a summary of what has been done so far as well as the next steps.
These issues are listed below:
Primary Keys for fare_leg_rules.txt and fare_transfer_rules.txt Primary Keys for fare_leg_rules.txt and fare_transfer_rules.txt #304: All fields in
fare_leg_rules.txt
andfare_transfer_rules.txt
were initially marked as Primary Keys, this is not optimal as it results in high computational load for lookups. A group of stakeholders proposed a smaller subset of these fields to define Primary Keys.is_symmetrical in fare_leg_rules.txt and fare_transfer_rules.txt is_symmetrical in fare_leg_rules.txt and fare_transfer_rules.txt #305: Currently, two entries in
fare_leg_rules.txt
and infare_transfer_rules.txt
can be identical except for values in theis_symmetrical
field. This leads to conflicting information on whether the fare is symmetrical or not.Improvements to fare_transfer_rules.txt Improvements to fare_transfer_rules.txt #306: The specification does not define how transfers from one
fare_leg_group
to anotherfare_leg_group
if those leg groups are not listed as a pair infare_transfer_rules.txt
. Also, incorrect fare information might be displayed sincefare_transfer_type
is forbidden if the amount field is not defined.Changes to fare_transfer_rules.fare_transfer_type Changes to fare_transfer_rules.fare_transfer_type #307: Some stakeholders mentioned that the wording of the enumerations in
fare_transfer_rules.fare_transfer_type
is not very intuitive. Additionally, the current enumerations infare_transfer_rules.fare_transfer_type
may not cover all the industry use cases.MobilityData is piloting a new process to drive this proposal and all your feedback is welcomed!
We plan to follow these steps:
### Original message posted by @scmcca on 2021-10-14:
Hi Everyone, we (MobilityData) wanted to draw some attention to the base implementation of GTFS-Fares v2.
As discussed in #252, GTFS-Fares v2 is a proposal that models simple and complex fare structures in GTFS where the current files
fare_attributes.txt
andfare_rules.txt
lack.This PR presents the adoptable fields of GTFS-Fares v2, where at least 1 producer and 1 consumer have implementation. As documented here, Interline, Maryland DOT, and Cal-ITP (for 50+ agencies) have produced subsets of GTFS-Fares v2, with Transit app consuming.
Posted as separate commits to ease comprehension, the features in this PR include:
The complete suite of features in GTFS-Fares v2 include:
The #gtfs-fares Slack channel has been a great resource and community for debugging, building documentation, and working through problems. I highly recommend anyone interested to join.
For other questions/concerns, don’t hesitate to reach out to specifications@mobilitydata.org.
Looking forward to feedback and contribution on this proposal. Thanks!