2018-03-13 18:04:21 +03:00
|
|
|
# TODO
|
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
## Map editor
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- common UI problems
|
|
|
|
- cycle selection crashes, fix ><
|
|
|
|
- press 1 or 2 in stop sign mode, layer toggling shouldnt happen
|
|
|
|
- textbox overlaps and is impossible to read
|
2018-04-18 03:26:41 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- traffic signal editor
|
|
|
|
- button to reset intersection to original cycles
|
|
|
|
- turns can belong to multiple cycles; the colors become slightly meaningless
|
|
|
|
- support left turn yield
|
2018-04-18 03:26:41 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- stop sign editor
|
|
|
|
- cant have no stop signs for two roads whose center line crosses
|
|
|
|
- infer default policy
|
|
|
|
- draw as red octogon with thin white trim, off to the right side of the road
|
2018-04-11 03:38:26 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- better visualization
|
|
|
|
- why are some icons in the intersection?
|
|
|
|
- draw detailed turns better, like https://i.ytimg.com/vi/NH6R3RH_ZDY/maxresdefault.jpg
|
2018-04-11 03:38:26 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
## Driving model
|
2018-04-11 03:38:26 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- try to simplify straw_model step (less phases?)
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- make cars pathfind to their destination
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- better visualization
|
|
|
|
- draw moving / blocked colors (gradually more red as they wait longer)
|
|
|
|
- draw stop buffer in front/behind of cars
|
|
|
|
- draw cars in intersections, even when slightly zoomed out
|
|
|
|
- draw cars in slightly different colors, to distinguish them better
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- start implementing a second AORTAish driving model
|
|
|
|
|
|
|
|
- reversible sim
|
|
|
|
|
|
|
|
## Map model
|
2018-03-13 18:04:21 +03:00
|
|
|
|
|
|
|
- more data
|
2018-04-22 18:08:06 +03:00
|
|
|
- parse shp, get traffic signals in the right places
|
2018-03-13 18:04:21 +03:00
|
|
|
- do need to mouseover shapefile things and see full data
|
2018-04-22 18:08:06 +03:00
|
|
|
- grab number of phases from traffic signal shp
|
|
|
|
- look for current stop sign priorities
|
|
|
|
- https://gis-kingcounty.opendata.arcgis.com/datasets/traffic-signs--sign-point/
|
|
|
|
|
|
|
|
- driving lanes
|
|
|
|
- parking
|
|
|
|
- sidewalks
|
|
|
|
- bike lanes
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
## Code cleanup
|
2018-03-13 18:04:21 +03:00
|
|
|
|
2018-04-22 18:08:06 +03:00
|
|
|
- clean up code
|
|
|
|
- master Map struct
|
|
|
|
- line type / ditch vec2d / settle on types
|
2018-03-13 18:04:21 +03:00
|
|
|
|
|
|
|
- add/plan tests
|
2018-04-22 18:08:06 +03:00
|
|
|
- document pieces that're stabilizing
|
2018-03-13 18:04:21 +03:00
|
|
|
- run clippy everywhere
|
2018-04-22 18:08:06 +03:00
|
|
|
- presubmit script
|
|
|
|
- also enforce consistent style (import order, extern crate only in mod.rs or lib.rs, derive order)
|
2018-03-13 18:04:21 +03:00
|
|
|
- extract common crates
|
|
|
|
- ask about mut vs returning new version of self (and what that requires of all the contained stuff)
|
2018-04-11 03:38:26 +03:00
|
|
|
- https://stackoverflow.com/questions/28385339/mutable-self-while-reading-from-owner-object
|
2018-04-22 18:08:06 +03:00
|
|
|
|
|
|
|
## Example use cases
|
|
|
|
|
|
|
|
- montlake/520 turn restrictions with pedestrian scramble
|
|
|
|
- close interior neighborhoods to most cars (except for src/dst), see how traffic restricted to arterials would work
|
|
|
|
- create a bike network with minimal hills, dedicated roads, minimal crossings
|