Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
c655124
Reflect change in fare...ft file name & path
ddorinson Mar 22, 2017
2b42f81
Fix table formatting
lmz Apr 13, 2017
af7f971
Replace fare_class, fare_rules_ft, misc cleanup
ddorinson May 20, 2017
3ea6fde
Add link to fare_rules.md file
ddorinson May 20, 2017
b9a643f
More cleanup to match v.0.3.0
ddorinson May 20, 2017
6505736
Cleanup table formatting and code fragments
ddorinson May 20, 2017
a167e0d
Final set of changes to match v.0.3.0 spec
ddorinson May 20, 2017
13358c4
Fixed wiki URL
ddorinson May 20, 2017
20883f5
Add file link; fix typos
ddorinson May 20, 2017
1414662
Fix table formatting
ddorinson May 20, 2017
f4751ea
Fix table formatting, layout
ddorinson May 20, 2017
e91737b
Fix table formatting, layout
ddorinson May 20, 2017
54ebc3d
One more layout fix
ddorinson May 20, 2017
736232a
Fix table formatting, layout
ddorinson May 20, 2017
10349ad
Merge pull request #39 from ddorinson/patch-1
e-lo May 22, 2017
122c0e7
Update vehicles_ft.md
sdrewc Jun 5, 2017
5ca49bc
Create vehicles_ft.md
sdrewc Jun 9, 2017
54e779c
Merge pull request #1 from sdrewc/sdrewc-patch-1
sdrewc Jun 9, 2017
b934130
accel, decel, max_speed
sdrewc Jun 9, 2017
e55703c
minor formatting changes
sdrewc Jun 9, 2017
2b8675d
Create vehicles_ft.md
sdrewc Jun 13, 2017
1b32a0d
Create vehicles_ft.md
sdrewc Jun 14, 2017
cf438ca
Add percent_using_farebox and formatting fixes
sdrewc Jun 14, 2017
0572d65
Add percent_using_farebox
sdrewc Jun 14, 2017
f094137
add max_speed, accel and decel back in.
sdrewc Jun 14, 2017
2f8f2ea
Add number_loading_areas
sdrewc Jun 14, 2017
fd8f743
Add TCQSM parameter text
sdrewc Jun 14, 2017
7388d47
Add TCQSM parameter text
sdrewc Jun 14, 2017
eb8c75e
Add TCQSM parameter text and dwell_formula
sdrewc Jun 14, 2017
c99732c
Add TCQSM parameter text
sdrewc Jun 14, 2017
7bf329e
Merge branch 'master' into sdrewc-patch-1
sdrewc Jun 14, 2017
1836221
Merge pull request #2 from sdrewc/sdrewc-patch-1
sdrewc Jun 14, 2017
6efc5ae
Merge branch 'queued' into master
e-lo Jun 15, 2017
2525738
Merge remote-tracking branch 'upstream/master'
sdrewc Sep 15, 2017
96cff46
Add route_stats_ft.txt to hold route-level statistics for a date and …
sdrewc Sep 15, 2017
86908e2
Add more statistics
sdrewc Sep 15, 2017
f346ee6
Add fields to upstream files to support calculating statistics in rou…
sdrewc Sep 15, 2017
e3f976b
Fix formatting
sdrewc Sep 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Replace fare_class, fare_rules_ft, misc cleanup
  • Loading branch information
ddorinson authored May 20, 2017
commit af7f971ed22b7e66cec7111fe7ce2dbcabcd5134
32 changes: 16 additions & 16 deletions files/fare_attributes_ft.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@ Examples of how to specify various fare schemes can be found in the [fares page]
* Field names MUST NOT contain tabs, carriage returns or new lines.


Note: The one-to-one relationship between `route_id` and `fare_id in` `fare_rules.txt` precludes
Note: The one-to-one relationship between `route_id` and `fare_id` in [`fare_rules.txt`](../fares_rules.md) precludes
the ability to represent fares that vary by time of day for the same route,
e.g. peak/off-peak. Our work around is to use `fare_id`, `start_time` and `end_time` in
`fare_rules_ft.txt` to return `fare_class`, which is then used in `fare_attributes_ft.txt`
[`fare_periods_ft.txt`](../fare_periods_ft.md) to return `fare_period`, which is then used in [`fare_attributes_ft.txt`](../fare_attributes_ft.md)
to return the correct fare.

Thus `fare_attributes_ft.txt` substitutes (rather than augments) for `fare_attributes.txt`.
Thus [`fare_attributes_ft.txt`](../fare_attributes_ft.md) substitutes (rather than augments) for [`fare_attributes.txt`](../fare_attributes.md).

File MUST contain the following attributes:

Required Attributes | Description
---------- | -------------
`fare_period` | Contains an ID that uniquely identifies the fare period. The `fare_period` is dataset unique.
`price` | Float fare price in the unit specified by `currency_type`
`currency_type` | Defines the currency used to pay the fare in [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) alphabetical currency codes
`payment_method` | When the fare must be paid:
- | 0 - on board
- | 1 - before boarding
`transfers` | Number of transfers permitted on this fare:
- | 0 - none
- | 1 - one
- | 2 - two
- | (empty): If this field is empty, unlimited transfers are permitted
| Required Attributes | Description
| ---------- | -------------
| `fare_period` | Contains an ID that uniquely identifies the fare period. The `fare_period` is dataset unique.
| `price` | Float fare price in the unit specified by `currency_type`
| `currency_type` | Defines the currency used to pay the fare in [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) alphabetical currency codes
| `payment_method` | When the fare must be paid:
| | 0 - on board
| | 1 - before boarding
|`transfers` | Number of transfers permitted on this fare:
| | 0 - none
| | 1 - one
| | 2 - two
| | (empty): If this field is empty, unlimited transfers are permitted

File MAY contain the following attributes:

Expand Down