-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated configs and created cmd for running travel time calculator
- Loading branch information
1 parent
d5f0608
commit b8ed161
Showing
3 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
time_period: MD | ||
time_threshold: 45 | ||
infinity: 999 | ||
outfile: report\walkMgrasWithin45Min_MD.csv | ||
|
||
transit_skim_matrices: # If set to True, replace values of zero with the number set as infinity | ||
WALK_MIX_FIRSTWAIT__{}: False | ||
WALK_MIX_XFERWALK__{}: False | ||
WALK_MIX_XFERWAIT__{}: False | ||
WALK_MIX_TOTALIVTT__{}: True | ||
|
||
traffic_skim_matrices: # If set to True, replace values of zero with the number set as infinity | ||
HOV3_M_DIST__{}: False | ||
HOV3_M_TIME__{}: False | ||
SOV_NT_L_TIME__{}: False | ||
|
||
active_skim_files: | ||
walk_time: maz_maz_walk.csv | ||
bike_time: maz_maz_bike.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
ECHO ON | ||
|
||
set PROJECT_DRIVE=%1 | ||
set PROJECT_DIRECTORY=%2 | ||
|
||
%PROJECT_DRIVE% | ||
cd /d %PROJECT_DIRECTORY% | ||
|
||
SET ANACONDA3_DIR=%CONDA_PREFIX% | ||
|
||
SET PATH=%ANACONDA3_DIR%\Library\bin;%PATH% | ||
SET PATH=%ANACONDA3_DIR%\Scripts;%ANACONDA3_DIR%\bin;%PATH% | ||
|
||
:: setup paths to Python application, Conda script, etc. | ||
SET CONDA3_ACT=%ANACONDA3_DIR%\Scripts\activate.bat | ||
|
||
SET CONDA3_DEA=%ANACONDA3_DIR%\Scripts\deactivate.bat | ||
|
||
SET CONDA3=%ANACONDA3_DIR%\Scripts\conda.exe | ||
|
||
SET PYTHON3=%ANACONDA3_DIR%\envs\asim_baydag\python.exe | ||
|
||
ECHO Activate asim_baydag.... | ||
CD /d %ANACONDA3_DIR%\Scripts | ||
CALL %CONDA3_ACT% asim_baydag | ||
|
||
set MKL_NUM_THREADS=1 | ||
set MKL=1 | ||
|
||
cd /d %PROJECT_DIRECTORY% | ||
|
||
%PYTHON3% python/TravelTimeReporter.py %PROJECT_DIRECTORY% %PROJECT_DIRECTORY%/python/AMTravelTimeReporterConfigs.yaml | ||
%PYTHON3% python/TravelTimeReporter.py %PROJECT_DIRECTORY% %PROJECT_DIRECTORY%/python/MDTravelTimeReporterConfigs.yaml |