-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improving process of updating OD map tableau data
- create script to run multiple batch files sequentially - edit TraceDApaths.bat to take in OD lists as arguments
- Loading branch information
1 parent
7370534
commit f231a34
Showing
2 changed files
with
29 additions
and
4 deletions.
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
27 changes: 23 additions & 4 deletions
27
utilities/NextGenFwys/public_engagement/UpdateMapDataForNewOD.bat
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 |
---|---|---|
@@ -1,13 +1,32 @@ | ||
:: update paths based on mapped drives on respective modeling server | ||
|
||
set ORIGIN_LIST=1,2,3,4,5 | ||
set DESTINATION_LIST=10,20,30,40,50 | ||
|
||
@echo off | ||
|
||
:: saved on \\model3-a\Model3A-Share | ||
X: | ||
cd X:\Projects\2035_TM152_NGF_NP10_Path1a_02 | ||
Set PATH=%PATH%;C:\Program Files\Citilabs\CubeVoyager;C:\Program Files\Citilabs\VoyagerFileAPI | ||
call X:\travel-model-one-master\utilities\NextGenFwys\public_engagement\TraceDApaths.bat %ORIGIN_LIST% %DESTINATION_LIST% | ||
|
||
:: saved on \\model3-a\Model3A-Share | ||
X: | ||
cd X:\Projects\2035_TM152_NGF_NP10_Path1a_02 | ||
Set PATH=%PATH%;C:\Program Files\Citilabs\CubeVoyager;C:\Program Files\Citilabs\VoyagerFileAPI | ||
X:\travel-model-one-master\utilities\NextGenFwys\public_engagement\TraceTransitPaths.bat | ||
call X:\travel-model-one-master\utilities\NextGenFwys\public_engagement\TraceTransitPaths.bat | ||
|
||
cd Y:\Projects\2035_TM152_NGF_NP10_Path4_02 | ||
::saved on \\MODEL2-C\Model2C-Share | ||
Z: | ||
cd Z:\Projects\2035_TM152_NGF_NP10_Path4_02 | ||
Set PATH=%PATH%;C:\Program Files\Citilabs\CubeVoyager;C:\Program Files\Citilabs\VoyagerFileAPI | ||
X:\travel-model-one-master\utilities\NextGenFwys\public_engagement\TraceTransitPaths.bat | ||
call X:\travel-model-one-master\utilities\NextGenFwys\public_engagement\TraceTransitPaths.bat | ||
|
||
:: saved on \\MODEL2-D\Model2D-Share | ||
F: | ||
cd F:\Projects\2035_TM152_NGF_NP10 | ||
Set PATH=%PATH%;C:\Program Files\Citilabs\CubeVoyager;C:\Program Files\Citilabs\VoyagerFileAPI | ||
X:\travel-model-one-master\utilities\NextGenFwys\public_engagement\TraceTransitPaths.bat | ||
call X:\travel-model-one-master\utilities\NextGenFwys\public_engagement\TraceTransitPaths.bat | ||
|
||
pause |