mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
25 lines
1.1 KiB
Bash
Executable File
25 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# This script imports scenarios an actdev site that's already been imported.
|
|
# It's run manually once per site.
|
|
|
|
set -e
|
|
|
|
CITY=$1
|
|
if [ "$CITY" == "" ]; then
|
|
echo Missing args;
|
|
exit 1;
|
|
fi
|
|
SITE=`echo $CITY | sed -r 's/_/-/g'`
|
|
|
|
rm -fv *.json
|
|
wget https://raw.githubusercontent.com/cyipt/actdev/main/data-small/$SITE/scenario_base.json
|
|
wget https://raw.githubusercontent.com/cyipt/actdev/main/data-small/$SITE/scenario_go_active.json
|
|
|
|
cargo run --release --bin import_traffic -- --map=data/system/gb/$CITY/maps/center.bin --input=scenario_base.json --skip_problems
|
|
cargo run --release --bin import_traffic -- --map=data/system/gb/$CITY/maps/center.bin --input=scenario_go_active.json --skip_problems
|
|
rm -fv *.json
|
|
cargo run --release --bin augment_scenario -- --input=data/system/gb/$CITY/scenarios/center/base.bin --add_return_trips --add_lunch_trips
|
|
cargo run --release --bin augment_scenario -- --input=data/system/gb/$CITY/scenarios/center/go_active.bin --add_return_trips --add_lunch_trips
|
|
# Generate the background traffic from OD data, and mix it in with the two actdev scenarios
|
|
./import.sh --scenario --city=gb/$CITY
|