How do I determine where I can get to from the city (say New York) for 2 hours (can change) by car?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 2 down vote accepted

First create a graph :

  • each edge is a road
  • each vertex is a city

Second Give a weight to each road = weight is the time from one city to another using this edge considering traffic etc...

Use Dijkstra's algorithm for example to calculate the min distance between 2 cities

Finally chose all the one with a weight less than 2 hours

link|improve this answer
feedback

I found Google Distance Matrix API. It's kind of what should be )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.