fix subway csv path, tiger python

Signed-off-by: zyphlar <zyphlar@gmail.com>
This commit is contained in:
zyphlar
2025-10-25 18:25:21 -07:00
parent 2391e1c4e3
commit 362dae7925
2 changed files with 8 additions and 1 deletions

View File

@@ -30,7 +30,10 @@ export DUMP="$SUBWAYS_VALIDATOR_PATH"
export GEOJSON="$SUBWAYS_VALIDATOR_PATH"
export DUMP_CITY_LIST="$SUBWAYS_VALIDATOR_PATH/cities.txt"
"$SUBWAYS_REPO_PATH/scripts/process_subways.sh" 2>&1 | tee "$SUBWAYS_LOG"
# cd to subways repo so relative paths work in the script
pushd "$SUBWAYS_REPO_PATH"
./scripts/process_subways.sh 2>&1 | tee "$SUBWAYS_LOG"
popd
# Make render.html available for map visualization on the web
cp -r "$SUBWAYS_REPO_PATH"/render/* "$SUBWAYS_VALIDATOR_PATH/"