Skip to content

Commit

Permalink
Merge pull request #256 from SANDAG/ttr_45min
Browse files Browse the repository at this point in the history
Increase travel time reporter threshold to 45 minutes
  • Loading branch information
bhargavasana authored Nov 21, 2024
2 parents 4e57650 + 942aefa commit abe294e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/main/python/AMTravelTimeReporterConfigs.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
time_period: AM
time_threshold: 30
time_threshold: 45
infinity: 999
outfile: report\walkMgrasWithin30Min_AM.csv
outfile: report\walkMgrasWithin45Min_AM.csv

transit_skim_matrices: # If set to True, replace values of zero with the number set as infinity
WALK_LOC_XFERWALK__{}: False
Expand All @@ -21,4 +21,4 @@ traffic_skim_matrices: # If set to True, replace values of zero with the number

active_skim_files:
maz_walk_time: maz_maz_walk.csv
maz_bike_time: maz_maz_bike.csv
maz_bike_time: maz_maz_bike.csv
6 changes: 3 additions & 3 deletions src/main/python/MDTravelTimeReporterConfigs.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
time_period: MD
time_threshold: 30
time_threshold: 45
infinity: 999
outfile: report\walkMgrasWithin30Min_MD.csv
outfile: report\walkMgrasWithin45Min_MD.csv

transit_skim_matrices: # If set to True, replace values of zero with the number set as infinity
WALK_LOC_XFERWALK__{}: False
Expand All @@ -21,4 +21,4 @@ traffic_skim_matrices: # If set to True, replace values of zero with the number

active_skim_files:
maz_walk_time: maz_maz_walk.csv
maz_bike_time: maz_maz_bike.csv
maz_bike_time: maz_maz_bike.csv
4 changes: 2 additions & 2 deletions src/main/python/datalake_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,8 @@ def write_to_datalake(output_path, models, exclude, env):
os.path.abspath(os.path.join(output_path, '..', 'input', 'zone_term.csv')),
os.path.abspath(os.path.join(output_path, '..', 'input', 'trlink.csv')),
os.path.join(output_path, 'bikeMgraLogsum.csv'),
os.path.join(report_path, 'walkMgrasWithin30Min_AM.csv'),
os.path.join(report_path, 'walkMgrasWithin30Min_MD.csv')
os.path.join(report_path, 'walkMgrasWithin45Min_AM.csv'),
os.path.join(report_path, 'walkMgrasWithin45Min_MD.csv')
]
for file in other_files:
try:
Expand Down

0 comments on commit abe294e

Please sign in to comment.