
Setup a fare structure to calculate the monetary costs of trips
Source:R/fare_structure.R
setup_fare_structure.RdCreates a basic fare structure that describes how transit fares should be
calculated in travel_time_matrix(), expanded_travel_time_matrix(),
accessibility() and pareto_frontier(). This fare structure can be
manually edited and adjusted to the existing rules in your study area, as
long as they stick to some basic premises. Please see the fare-structure vignette for more information.
Usage
setup_fare_structure(
r5r_network,
r5r_core = deprecated(),
base_fare,
by = "MODE",
debug_path = NULL,
debug_info = NULL
)Arguments
- r5r_network
A routable transport network created with
build_network().- r5r_core
The
r5r_coreargument is deprecated as of r5r v2.3.0. Please use ther5r_networkargument instead.- base_fare
A numeric. A base value used to populate the fare structure.
- by
A string. Describes how
fare_types (a classification we created to assign fares to different routes) are distributed among routes. Possible values areMODE,AGENCYandGENERIC.MODEis used when the mode is what determines the price of a route (e.g. if all the buses of a given city cost $5).AGENCYis used when the agency that operates each route is what determines its price (i.e. when two different routes/modes operated by a single agency cost the same; note that you can also useAGENCY_NAME, if the agency_ids listed in your GTFS cannot be easily interpreted).GENERICis used when all the routes cost the same. Please note that this classification can later be edited to better suit your needs (when, for example, two types of buses cost the same, but one offers discounts after riding the subway and the other one doesn't), but this parameter may save you some work.- debug_path
Either a path to a
.csvfile orNULL. WhenNULL(the default), fare debugging capabilities are disabled - i.e. there's no way to check if the fare calculation is correct. When a path is provided,r5rsaves different itineraries and their respective fares to the specified file. How each itinerary is described is controlled bydebug_info.- debug_info
Either a string (when
debug_pathis a path) orNULL(the default). Doesn't have any effect ifdebug_pathisNULL. When a string, accepts the valuesMODE,ROUTEandMODE_ROUTE. These values dictates how itinerary information is written to the output. Let's suppose we have an itinerary composed by two transit legs: first a subway leg whose route_id is 001, and then a bus legs whose route_id is 007. Ifdebug_infoisMODE, then this itinerary will be described asSUBWAY|BUS. IfROUTE, as001|007. IfMODE_ROUTE, asSUBWAY 001|BUS 007. Please note that the final debug information will contain not only the itineraries that were in fact used in the itineraries returned intravel_time_matrix(),accessibility()andpareto_frontier(), but all the itineraries thatR5checked when calculating the routes. This imposes a performance penalty when tracking debug information (but has the positive effect of returning a larger sample of itineraries, which might help finding some implementation issues on the fare structure).
See also
Other fare structure:
read_fare_structure(),
write_fare_structure()
Examples
library(r5r)
data_path <- system.file("extdata/poa", package = "r5r")
r5r_network <- build_network(data_path)
#> ℹ Using cached network from
#> /home/runner/work/_temp/Library/r5r/extdata/poa/network.dat.
fare_structure <- setup_fare_structure(r5r_network, base_fare = 5)
# to debug fare calculation
fare_structure <- setup_fare_structure(
r5r_network,
base_fare = 5,
debug_path = "fare_debug.csv",
debug_info = "MODE"
)
fare_structure$debug_settings
#> $output_file
#> [1] "fare_debug.csv"
#>
#> $trip_info
#> [1] "MODE"
#>
# debugging can be manually turned off by setting output_file to ""
fare_structure$debug_settings <- ""