mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-19 04:12:12 +03:00
641c908051
* add turn_on_red config option which is false for nyc
* when making stages, don't add movements that don't share a stage with a protected movement
* Fix a renamed DirectedRoadID field from
cb3693bd7a
and the new turn_on_red field
in the test crate
* Update all map config files with the new option
for x in importer/config/*/*/cfg.json; do
cat $x | jq '.map_config += {turn_on_red: true}' > tmp
mv -f tmp $x
done
(And then undoing NYC)
* turn on red banned on all non-us maps
* regenerate all maps
Co-authored-by: Marcel Dejean <marcel@dejean.nyc>
Co-authored-by: Dustin Carlino <dabreegster@gmail.com>
19 lines
547 B
JSON
19 lines
547 B
JSON
{
|
|
"osm_url": "https://download.geofabrik.de/europe/great-britain/england/merseyside-latest.osm.pbf",
|
|
"map_config": {
|
|
"driving_side": "Left",
|
|
"bikes_can_use_bus_lanes": true,
|
|
"inferred_sidewalks": true,
|
|
"street_parking_spot_length": 80000,
|
|
"turn_on_red": false
|
|
},
|
|
"onstreet_parking": "JustOSM",
|
|
"public_offstreet_parking": "None",
|
|
"private_offstreet_parking": {
|
|
"FixedPerBldg": 3
|
|
},
|
|
"include_railroads": true,
|
|
"extra_buildings": "data/input/gb/halsnead/procgen_houses.json",
|
|
"filter_crosswalks": false
|
|
}
|