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:
Can this be extended to 3D maps (e.g. different floors).
Can this be extended to consider edges that have different walk speeds?
Example Resulting Floorplan:

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