Citi Bike Trip Planner
The official Citi Bike app tells you where bikes are. It doesn’t tell you whether your trip will actually work: whether the station near you will still have a bike by the time you walk there, or whether the dock near your destination will have room when you arrive. Planning a real door-to-door trip meant checking the map, guessing, and sometimes walking to an empty rack or a full dock anyway. That was the gap.
I built a cross-platform trip planner on top of Citi Bike’s live station feed that does the reasoning a rider would do by hand: given a start and end point, it evaluates several nearby stations at each end, accounts for the walk to get there, the ride, and the walk from the dock, and picks the pair that’s fastest and least likely to leave you stranded, penalizing candidates low on bikes or docks rather than just picking the closest. It supports an optional stop with drag-to-reorder, and speaks turn-by-turn directions out loud so you can ride with your phone in your pocket.
The harder problem was making voice nav trustworthy hands-free. It runs as a background location task so it keeps talking with the screen off, picks the best installed on-device voice (falling back to a pre-cached cloud voice), and decides when to reroute by reasoning about lateral offset from the route line and heading over time, rather than distance from the nearest point, so it doesn’t false-positive on GPS noise or a rider legitimately on a parallel street.
The live map (station colors, bike-type filter, saved home/work) runs identically on iOS, Android, and web from one codebase. Currently in TestFlight beta.