Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a set of walk times between nodes, is it possible to produce a map which is the best guess of the terrain?

The terrain is assumed to be 2D, and nodes are either walkable or not walkable. The speed of walking is constant between all nodes. Only about 1 in 20 nodes (in the grid model) will have arrival sensors.

Motivation:

I have a set of data which tells me when people arrive at certain points in a building, but I do not have any positioning system. I would like an illustration of what the floor plan looks like.

Further complications:

  1. Can this be extended to 3D maps (e.g. different floors).

  2. Can this be extended to consider edges that have different walk speeds?

Example Resulting Floorplan:

sample floor plan

Edit: Java/Python not important, they happen to be the languages I am currently using.

share|improve this question
3  
Are the paths between nodes straight lines? If not, consider the degenerate case where I leave Node A, walk in a circle in the hallway for thirty minutes, and arrive at Node B, five feet away from my beginning position. The only information you can derive from this event is that Node A and B are less than thirty minutes apart. – Kevin Jan 4 at 13:43
Is the java/python bit important here, or are you more interested in the algorithm? – Richard Jan 4 at 13:47
Any additional information? For instance, a country or city might improve an estimate of average walking speed or provide some insight into building design. Is there any way to determine if someone stopped while moving between nodes, say at their office? – Richard Jan 4 at 13:50
Is there an example layout of the nodes / the sort of ideal floorplan you'd wish to extract from this? – Marcus Stuhr Jan 4 at 13:54
1  
Sure it's doable. You can always guess every possible grid layout with vertices removed and verify that they satisfy the constraints you are given. So it is in NP. Do you want a polynomial time (feasible) algorithm? – Pål GD Jan 4 at 14:54
show 13 more comments

closed as not a real question by Wooble, Rostyslav Dzinko, Dante is not a Geek, Lars Kotthoff, Ragunath Jawahar Jan 4 at 18:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I'm going to go ahead and say yes to this question.

Given that you know the position of the nodes and the walk times between the nodes. Even if the walk times are not consistent I am pretty sure you would be able to use this to best guess the terrain. You could use a Bayesian Network although it is an NP-hard problem.

You would give paths a confidence level based upon a guess of average walk times. You will also need to know the probabilities of it being a faster or slower time and the possible routes for different sets of times. With this information you can then plot the most probable routes for the given time.

You will not know the average walk time accurately so you will feedback your updated plot of the terrain to try and make this figure more accurate.

Using these confidence levels from a combination of all of the nodes available it would seem possible to plot at least the most popular routes around the building and ascertain where obstacles might exist.

The more nodes you have and the more walk information you obtain the more accurate the final map will be but also the more computationally costly it will be as well.

I'm not sure how usable the finished result will be but yes by all means you can best guess it.

share|improve this answer

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