blueintegral / WaitOrWalk

The information you really want when waiting at the bus stop: is it quicker to wait or to walk? Only works for Georgia Tech right now.
9 stars 3 forks source link

Improve walking time calculations #12

Closed Tanner closed 11 years ago

Tanner commented 11 years ago

From what I read in the generate_distance_matrix.py the walking times are using the same route that the buses make when they are driving around campus.

This makes walking times very unrealistic if the bus stops are across campus (e.g. 8thhemp and ferstcher).

I propose that the walking code should take this into account.

The implementation should be pretty simple (A*), but the tedious part is finding all the points for all sidewalks on Tech. There was a website someone posted on /r/gatech that did exactly this (walking route finding at Tech), but I can't find it. If we used those points, it would make lives easier.

Pros:

Cons:

blueintegral commented 11 years ago

Actually, Google takes care of finding the shortest path that it deems walkable (ie, is on sidewalks). Here's a path it calculated for driving from Klaus to the Student Center: http://goo.gl/maps/WNDW1 And here's the path it uses when changing the transportation mode to walking: http://goo.gl/maps/FW3o2

Tanner commented 11 years ago

Ah, you're right. I forgot about that. Disregard.