forked from eclipse-sumo/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restoring gzipped files when under test and using collate_script to e…
…nsure comparability by texttest. refs eclipse-sumo#21, eclipse-sumo#7713
- Loading branch information
Showing
6 changed files
with
86 additions
and
69 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
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,6 +1,6 @@ | ||
#!/bin/bash | ||
python "$SUMO_HOME/tools/ptlines2flows.py" -n osm.net.xml -e 900 -p 600 --random-begin --seed 42 --ptstops osm_stops.add.xml --ptlines osm_ptlines.xml -o osm_pt.rou.xml --ignore-errors --vtype-prefix pt_ --stopinfos-file stopinfos.xml --routes-file vehroutes.xml --trips-file trips.trips.xml --min-stops 0 --extend-to-fringe --verbose | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml --fringe-factor 1 --insertion-density 4 -o osm.pedestrian.trips.xml -r osm.pedestrian.rou.xml -e 900 --vehicle-class pedestrian --prefix ped --persontrips --trip-attributes "modes=\"public\"" --additional-files osm_stops.add.xml,osm_pt.rou.xml --persontrip.walk-opposite-factor 0.8 | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml --fringe-factor 2 --insertion-density 2 -o osm.bicycle.trips.xml -r osm.bicycle.rou.xml -e 900 --trip-attributes "departLane=\"best\"" --fringe-start-attributes "departSpeed=\"max\"" --validate --remove-loops --vehicle-class bicycle --vclass bicycle --prefix bike --max-distance 8000 | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml --fringe-factor 5 --insertion-density 6 -o osm.passenger.trips.xml -r osm.passenger.rou.xml -e 900 --trip-attributes "departLane=\"best\"" --fringe-start-attributes "departSpeed=\"max\"" --validate --remove-loops --vehicle-class passenger --vclass passenger --prefix veh --min-distance 300 --min-distance.fringe 0 --allow-fringe.min-length 1000 --lanes | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml --fringe-factor 40 --insertion-density 1 -o osm.ship.trips.xml -r osm.ship.rou.xml -e 900 --vehicle-class ship --vclass ship --prefix ship --fringe-start-attributes "departSpeed=\"max\"" --validate | ||
python "$SUMO_HOME/tools/ptlines2flows.py" -n osm.net.xml.gz -e 900 -p 600 --random-begin --seed 42 --ptstops osm_stops.add.xml --ptlines osm_ptlines.xml -o osm_pt.rou.xml --ignore-errors --vtype-prefix pt_ --stopinfos-file stopinfos.xml --routes-file vehroutes.xml --trips-file trips.trips.xml --min-stops 0 --extend-to-fringe --verbose | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml.gz --fringe-factor 1 --insertion-density 4 -o osm.pedestrian.trips.xml -r osm.pedestrian.rou.xml -e 900 --vehicle-class pedestrian --prefix ped --persontrips --trip-attributes "modes=\"public\"" --additional-files osm_stops.add.xml,osm_pt.rou.xml --persontrip.walk-opposite-factor 0.8 | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml.gz --fringe-factor 2 --insertion-density 2 -o osm.bicycle.trips.xml -r osm.bicycle.rou.xml -e 900 --trip-attributes "departLane=\"best\"" --fringe-start-attributes "departSpeed=\"max\"" --validate --remove-loops --vehicle-class bicycle --vclass bicycle --prefix bike --max-distance 8000 | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml.gz --fringe-factor 5 --insertion-density 6 -o osm.passenger.trips.xml -r osm.passenger.rou.xml -e 900 --trip-attributes "departLane=\"best\"" --fringe-start-attributes "departSpeed=\"max\"" --validate --remove-loops --vehicle-class passenger --vclass passenger --prefix veh --min-distance 300 --min-distance.fringe 0 --allow-fringe.min-length 1000 --lanes | ||
python "$SUMO_HOME/tools/randomTrips.py" -n osm.net.xml.gz --fringe-factor 40 --insertion-density 1 -o osm.ship.trips.xml -r osm.ship.rou.xml -e 900 --vehicle-class ship --vclass ship --prefix ship --fringe-start-attributes "departSpeed=\"max\"" --validate |
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
Oops, something went wrong.