mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-25 07:25:47 +03:00
Woops, the study_areas directory was being picked up as a city.
And clarify the Seattle-only focus on the front page.
This commit is contained in:
parent
a14133368e
commit
3f9a895896
@ -1,9 +1,10 @@
|
||||
# A/B Street
|
||||
|
||||
Ever been stuck in traffic on a bus, wondering why is there legal street parking
|
||||
instead of a dedicated 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.
|
||||
Ever been stuck in traffic on a bus, wondering why is there legal street
|
||||
parking instead of a dedicated 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. It works anywhere in the world, thanks to
|
||||
[OpenStreetMap](https://www.openstreetmap.org/about).
|
||||
|
||||
- Play on
|
||||
[Windows](https://github.com/a-b-street/abstreet/releases/download/v0.2.29/abstreet_windows_v0_2_29.zip),
|
||||
|
@ -113,7 +113,7 @@ impl MapName {
|
||||
pub fn list_all_cities() -> Vec<String> {
|
||||
let mut cities = Vec::new();
|
||||
for city in list_all_objects(path("system")) {
|
||||
if city == "assets" || city == "proposals" {
|
||||
if city == "assets" || city == "proposals" || city == "study_areas" {
|
||||
continue;
|
||||
}
|
||||
cities.push(city);
|
||||
|
Loading…
Reference in New Issue
Block a user