Skip to content Skip to sidebar Skip to footer

How To Track Position Of An Android Device In A Building?

I want to develop an application in which I need to know the position of my device within a building (the room in which the device currently is). GPS is not working in the building

Solution 1:

There is no general solution. In case you can place WiFi hotspots/repeaters in the building (preferably in every room), you can triangulate the position from the WiFi signal strengths. But that's also not straightforward, because of different signal losses through the walls and floors. You'll need to survey the building and make a signal strength map in advance and then, based on the signals you receive, look up your location on the map.

Motion sensors are also not precise enough and compass, if you are inside a steel construction, is inaccurate, too.

Solution 2:

You can try using the Network to locate the user. If the signal is strong enough, it should return a decent location fix, though not as accurate as GPS

Solution 3:

Unfortunately there is no easy solution. Network location is out of the question, since it is not precise enough to show buildings, not even mentioning rooms. The only way I could think of for this to work is to use external sensors in building and somehow connect them with the device.

Post a Comment for "How To Track Position Of An Android Device In A Building?"