Show HN: I built a transit travel time map
255 points| ng-henry | 2 years ago |map.henryn.xyz
The backend is written in Rust. It parses public GTFS data from transit agencies and performs a simple heuristics-based BFS on the bus lines to calculate how long to reach all points in a city.
The frontend uses React and Mapbox GL to render each individual road segment based on how long it takes to reach.
This project was a great excuse to learn Rust, deployments, and mapping. The source code is here if you are interested: http://github.com/econaxis/time2reach
[+] [-] baq|2 years ago|reply
https://en.wikipedia.org/wiki/Isochrone_map
[+] [-] cridenour|2 years ago|reply
[+] [-] throwaway22032|2 years ago|reply
I made one of these in the past when looking for places to live in London. The ultimate conclusion was that you could have inexpensive, short travel time, or nice/safe, choose two.
I gave up after realising that the market signals worked - if ignoring Central London it'd pretty much just be "more expensive = nicer"
[+] [-] nashashmi|2 years ago|reply
[+] [-] dopidopHN|2 years ago|reply
[+] [-] bkor|2 years ago|reply
It has some minor limitations to select the time (has to one of the predefined options). That can be worked around by changing the URL parameter.
It can also map out multiple locations and see the overlap.
It's fairly useful to see where you want to live while taking e.g. the office location into account. It gave me more options than I thought I had, partly because I didn't think about small towns with a train station.
[+] [-] ng-henry|2 years ago|reply
There's also https://www.chronotrains.com which was another inspiration when building this project too.
[+] [-] timvdalen|2 years ago|reply
[+] [-] vipshek|2 years ago|reply
I do think there are a number of things you could do to improve the UX here. Hope this doesn't come across as too harsh, but here are some suggestions...
1. Double-click to set origin makes sense, but hover to set a destination is a bit weird, for two reasons: a. There's no way to "lock" a destination by clicking, so I can't pick a route I want to see and fix my view on it. The UI feels jittery as a result. b. In some cases (I'm looking at NYC), loading the route to the hovered destination hangs for several seconds. I don't know if this is just an issue because your server is overloaded, but it's a weird state to be in.
I'd consider: 1) adding a loading state when the route to the destination is being computed, 2) enable clicking a point to lock viewing that route, 3) maybe disabling the hover interaction entirely, though if it were performant, it would be pretty nice to have.
2. The "arrival time" concept is a slightly odd. I'd prefer to just see the amount of time it'll take to get to a destination, rather than an arrival time based on a particular starting time. I don't think anyone's going to use this to plan a specific route at a specific time; instead, they'll use it to explore locations of interest, and explore how long it'll take to get to various destinations. I see you show the trip duration in the bottom-left, but having it be an arrow pointing to a gradient spectrum is much harder to parse than just saying "27 minutes".
3. The fade effect on the side panel is a bit weird. It does draw more attention to the map, but the side panel is still occluding my view, and having it faded just makes the text very hard to read. I'd consider making it un-faded, but adding some way to collapse it.
[+] [-] ng-henry|2 years ago|reply
1. Yes I think "locking" makes sense. The entire action of viewing the paths to different destinations still needs to be polished up, especially for the mobile version as well. When I tried it before posting to HN it was instant (30ms) but now it seems to be extra laggy because the CPU is maxed. I just upgraded the server from 4 -> 16 cpus, so let's hope that does something haha.
2. 100%
3. Agree as well. I chose the easiest solution when developing (and I also develop on a large monitor so it's harder to notice the occlusion), but adding a hide toggle would certainly have been better.
[+] [-] midoridensha|2 years ago|reply
There's nothing odd about it. Your arrival time entirely depends on the train schedule, and you can only arrive at your destination at certain discrete times because of this.
>I don't think anyone's going to use this to plan a specific route at a specific time;
I use Google Maps to do this exact thing all the time. I need to be at a certain place at a certain time, so I set the place and arrival time and have it plot a route and show me all the available options.
[+] [-] LorenPechtel|2 years ago|reply
[+] [-] guessmyname|2 years ago|reply
If anyone has lived or at least visited places like Tokyo, Japan or Shanghai, China, you probably understand what I am referring to.
[+] [-] samstave|2 years ago|reply
This will make their requests for more money/raises/etc seem absolutely insane when you compare what these countries/cities/agencies do WRT to transporting millions of people efficiently every single day - and not to mention just how clean such systems are.
When you go through stations in HK - you see well-uniformed cleaning folks all over the place.
[+] [-] giovannibonetti|2 years ago|reply
In general, population density in East Asia is far higher than in the US.
[+] [-] charlieyu1|2 years ago|reply
Today I'm stuck on a tram for an hour and the tram company did not even tell us what happened or when would we be unstuck.
[+] [-] ghaff|2 years ago|reply
[+] [-] nashashmi|2 years ago|reply
[+] [-] postmortembees|2 years ago|reply
[+] [-] ZeWaka|2 years ago|reply
[+] [-] ComputerGuru|2 years ago|reply
(I initially thought they were just bookmarks/shortcuts to some good demos then I realized they influenced the traffic sources checkbox at the bottom so they had to determine what the map showed rather than merely index it.)
[+] [-] ng-henry|2 years ago|reply
[+] [-] arafalov|2 years ago|reply
Like, if I want to buy something big from Walmart or Costco (to keep to generic shop names) and it does not matter if I am on a train/metro/subway for 10 minutes or 20 minutes, but it totally does matter number of transport switches of bus->subway) and walking is really bad.
So, it would make sense to go to a very distant shop, but that is right opposite the direct train.
Does anything like this exist (for any city really)? The algorithm must be quite similar, but with different graph steps weighted differently depending on method of movement.
[+] [-] ng-henry|2 years ago|reply
For example, when choosing the best route, it penalizes every transfer by 120 seconds [1]. Therefore, a route that takes 2 minutes longer is equivalent to one transfer.
It'd be cool to have a tool where you can dynamically change these settings, and maybe even have different transfer penalties depending on if you're transferring inside a station vs walking outside.
[1]: https://github.com/econaxis/time2reach/blob/main/src/formatt...
[+] [-] o10449366|2 years ago|reply
For example, there are many parts of Brooklyn where no transit lines are directly connected and you have to go into Manhattan first, meaning if you took the train it would take 1+ hours, versus bus (30 minutes) or biking (15 minutes).
[+] [-] jwestbury|2 years ago|reply
Edit: Though, CityMapper doesn't actually provide a travel time map, alas.
[+] [-] throwaway737248|2 years ago|reply
[+] [-] ikawe|2 years ago|reply
I work on some of the rust libraries you've used. If you'd like to ask questions about rust+geo or do a show & tell, consider joining us in the georust discord: https://discord.com/invite/Fp2aape
I'm also always interested to hear new people's experience building real things with our libraries. What were the hangups?
[+] [-] KronisLV|2 years ago|reply
I've actually briefly looked into it before, but I've no idea why vector maps in particular are so bad, yet everyone still praises them a lot vs regular tiled raster maps: https://www.youtube.com/watch?v=A-IRtBGO9rM
Not to detract from the cool thing you've made, don't mind my musings.
[+] [-] forrestthewoods|2 years ago|reply
https://www.forrestthewoods.com/blog/visualizing_commute_tim...
AFAICT the only reliable source of commute and transit times is Google Maps. To be useful it requires real traffic data. Unfortunately Google jacked up the prices way too high to be useful.
My dream is a service for building isochrone maps with full support for walking/biking/transit/driving.
[+] [-] ackfoobar|2 years ago|reply
https://app.traveltime.com/search/0-lat=43.64399&0-lng=-79.3...
[+] [-] midoridensha|2 years ago|reply
[+] [-] gravypod|2 years ago|reply
1. Percent cancellations of lines (past 30d, past 1 year)
2. Average & deviation of delay (past 30d, past 1 year)
I think these factors could be used to identify unreliable lines. For example, looking at my commute line, it seems like I could get into the city in 50ish minutes but I know most of the times I get on the train from door to door it has been recently very unreliable with the most recent times being ~1hr min door to door.
We also have a lot of problems with cancellations on my way home.
[+] [-] jablongo|2 years ago|reply
[+] [-] eddy162|2 years ago|reply
[+] [-] dabreegster|2 years ago|reply
https://github.com/a-b-street/abstreet/pull/1075
[+] [-] ShakataGaNai|2 years ago|reply
[+] [-] TheBigRoomXXL|2 years ago|reply
[+] [-] ng-henry|2 years ago|reply
[+] [-] IG_Semmelweiss|2 years ago|reply
Then i enabled all Font and Cosmetic Filtering to ON on uBlock, and the website worked.
One of the few sites that requires Cosmetics / Fonts enabled to work right.
[+] [-] jedberg|2 years ago|reply
[+] [-] nestorD|2 years ago|reply
[+] [-] CalRobert|2 years ago|reply
People interested in this might also enjoy: https://www.mapnificent.net/
Or if you're in Ireland: gaffologist.com (disclaimer - I made this and it only focuses on rail)