2018-03-13 18:04:21 +03:00
|
|
|
# A/B Street
|
|
|
|
|
2019-04-17 02:06:45 +03:00
|
|
|
Ever been on a bus stuck in traffic, wondering why there are cars parked on the
|
|
|
|
road instead of a bus lane? A/B Street is a game exploring how small changes to
|
|
|
|
a city affect the movement of drivers, cyclists, transit users, and pedestrians.
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2019-06-25 23:01:32 +03:00
|
|
|
[Play A/B Street on Windows, Mac, Linux](docs/INSTRUCTIONS.md)
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2019-10-10 01:27:25 +03:00
|
|
|
Removing dedicated left-turn phases from a traffic signal:
|
2019-06-27 16:46:55 +03:00
|
|
|
|
|
|
|
![fix_traffic_signal](docs/videos/fix_traffic_signal.gif)
|
|
|
|
|
|
|
|
Watching overall traffic patterns and zooming into a few slow areas:
|
|
|
|
|
|
|
|
![exploring_traffic](docs/videos/exploring_traffic.gif)
|
2019-04-19 19:46:28 +03:00
|
|
|
|
2019-09-22 23:16:32 +03:00
|
|
|
## Documentation for developers
|
2019-07-09 09:16:31 +03:00
|
|
|
|
2019-09-22 23:16:32 +03:00
|
|
|
- [Developer onboarding](docs/onboarding.md)
|
2019-07-09 09:16:31 +03:00
|
|
|
- [Map model](docs/articles/map/article.md)
|
|
|
|
- [Traffic simulation](docs/articles/trafficsim/article.md)
|
|
|
|
- [Rust implementation notes](docs/articles/rust/article.md)
|
2019-07-14 16:16:50 +03:00
|
|
|
- [Running A/B Street in a new city](docs/new_city.md)
|
2019-07-09 09:16:31 +03:00
|
|
|
- [Features (outdated)](docs/articles/features/article.md)
|
2019-10-19 00:50:05 +03:00
|
|
|
- [Current milestones](docs/project/milestones.md)
|
2019-10-05 02:07:07 +03:00
|
|
|
- Presentations (nice pictures, but may not be easy to follow without me
|
2019-10-07 23:19:45 +03:00
|
|
|
speaking ;) )
|
|
|
|
- [Traffic sim and current challenges](https://docs.google.com/presentation/d/1PJRFoXmJAyenkqHIwo48zxqu1LSH6pc7XKSzhyC1raw/edit?usp=sharing)
|
|
|
|
- [Map construction](https://docs.google.com/presentation/d/1cF7qFtjAzkXL_r62CjxBvgQnLvuQ9I2WTE2iX_5tMCY/edit?usp=sharing)
|
2019-06-25 23:01:32 +03:00
|
|
|
|
2019-07-09 09:16:31 +03:00
|
|
|
## Features
|
2019-06-25 23:01:32 +03:00
|
|
|
|
|
|
|
- The map
|
|
|
|
- A detailed rendering of Seattle from OpenStreetMap and King County GIS data,
|
|
|
|
including sidewalks, on-street parking, bike lanes, bus-only lanes, turn
|
|
|
|
lanes, buildings, and bus stops.
|
|
|
|
- Intersections governed by stop signs and traffic signals, with default
|
|
|
|
signal timings heuristically inferred. Hand-tuned geometry to reasonably
|
|
|
|
model Seattle's strangest intersections.
|
2019-10-08 04:04:31 +03:00
|
|
|
- You can adjust lane types, stop signs, and traffic signals, and reverse
|
|
|
|
lanes.
|
2019-06-25 23:01:32 +03:00
|
|
|
- The traffic
|
|
|
|
- Individual cars, buses, bikes, and pedestrians move through the map.
|
|
|
|
- Most trips are multi-modal -- for example, a pedestrian exits a building,
|
|
|
|
walks a few blocks over to their parked car, drives somewhere, looks for
|
|
|
|
parking, and walks to their final destination.
|
|
|
|
- A realistic set of trips -- how many people go from building 1 to building 2
|
|
|
|
at some time using some form of transport -- comes from
|
|
|
|
[PSRC's Soundcast](https://www.psrc.org/activity-based-travel-model-soundcast)
|
|
|
|
model.
|
|
|
|
- The gameplay
|
|
|
|
- Start in sandbox mode, exploring the map, watching traffic patterns,
|
|
|
|
following individual agents, looking for problems.
|
|
|
|
- Jump to edit mode, where you can convert some on-street parking to bus lanes
|
|
|
|
and adjust traffic signals to try to fix some problem.
|
|
|
|
- Try your change in A/B test mode, running two traffic simulations
|
|
|
|
side-by-side. Explore how individual agents finish their trips faster or
|
|
|
|
slower, and compare aggregate results about different groups of traffic.
|
|
|
|
|
|
|
|
## Project mission
|
|
|
|
|
|
|
|
If you fix some traffic problem while playing A/B Street, my ultimate goal is
|
|
|
|
for your changes to become a real proposal for adjusting Seattle's
|
|
|
|
infrastructure. A/B Street is of course a game, using a simplified approach to
|
|
|
|
traffic modeling, so city governments still have to evaluate proposals using
|
|
|
|
their existing methods. A/B Street is intended as a conversation starter and
|
|
|
|
tool to communicate ideas with interactive visualizations.
|
|
|
|
|
|
|
|
Why not leave city planning to professionals? People are local experts on the
|
|
|
|
small slice of the city they interact with daily -- the one left turn lane that
|
|
|
|
always backs up or a certain set of poorly timed walk signals.
|
|
|
|
[Laura Adler](http://www.govtech.com/data/SimCities-Can-City-Planning-Mistakes-Be-Avoided-Through-Data-Driven-Simulations.html)
|
|
|
|
writes:
|
|
|
|
|
|
|
|
> "Only with simple, accessible simulation programs can citizens become active
|
|
|
|
> generators of their own urban visions, not just passive recipients of options
|
|
|
|
> laid out by government officials."
|
|
|
|
|
|
|
|
Existing urban planning software is either proprietary or hard to use. A/B
|
2019-07-06 21:25:10 +03:00
|
|
|
Street strives to set the accessibility bar high, by being a fun, engaging game.
|
2019-06-25 23:01:32 +03:00
|
|
|
|
2019-11-24 18:21:21 +03:00
|
|
|
## Credits
|
|
|
|
|
|
|
|
- Created by Dustin Carlino (<dabreegster@gmail.com>)
|
|
|
|
- Software engineering
|
|
|
|
- Lightning-fast pathfinding thanks to
|
|
|
|
[fast_paths](https://github.com/easbar/fast_paths) by Andreas Barth
|
|
|
|
(<easbar.mail@posteo.net>)
|
|
|
|
- And some
|
|
|
|
[contributors](https://github.com/dabreegster/abstreet/graphs/contributors)
|
|
|
|
found via [Democracy Lab](https://www.democracylab.org/)
|
|
|
|
- Design
|
|
|
|
- Logo by [Ryan Pierson](https://www.ryandpierson.com/)
|
|
|
|
- UX design by [Yuwen Li](https://www.yuwen-li.com/)
|
|
|
|
- Art direction with help from [Starcat Games](http://starcatgames.com/)
|
|
|
|
- Data
|
|
|
|
- Special thanks to all [OpenStreetMap](https://www.openstreetmap.org/about)
|
|
|
|
contributors!
|
|
|
|
- [King County GIS](https://www.kingcounty.gov/services/gis.aspx)
|
|
|
|
- [Seattle Open Data](https://data.seattle.gov/)
|
|
|
|
- [Puget Sound Regional Council](https://www.psrc.org/)
|
|
|
|
- Sounding boards
|
|
|
|
- [CUGOS](https://cugos.org/)
|
|
|
|
- [Julian Michael](http://julianmichael.org/)
|
|
|
|
|
2019-04-19 19:46:28 +03:00
|
|
|
## Contributing
|
|
|
|
|
2019-11-24 18:21:21 +03:00
|
|
|
Help always needed! If you want to bring this to your city or if you're skilled
|
|
|
|
in graphic or user experience, traffic simulation, data visualization, or
|
2019-06-25 23:01:32 +03:00
|
|
|
civic/government outreach, please contact Dustin Carlino at
|
2019-09-16 20:16:56 +03:00
|
|
|
<dabreegster@gmail.com> or post at
|
|
|
|
[r/abstreet](https://www.reddit.com/r/abstreet/). I also welcome any
|
|
|
|
contributions on [Patreon](https://www.patreon.com/abstreet).
|