determining your location using ONLY wifi signals?

后端 未结 7 422
独厮守ぢ
独厮守ぢ 2020-12-28 11:11

i will be working on a project that tries to determine your position using the wifi signal strength from a few access points. i was wondering if anyone knew of any similiar

7条回答
  •  粉色の甜心
    2020-12-28 11:50

    We did this on a project already determining distance from Access Points, but without the signal triangulation (already covered on other answers here).

    I do have a recommendation from the "man, I wish I didn't have to go back and do this" department - it would be to spend extra time on 2 areas:

    1. An easy and repeatable method of calibration using Multiple Data Points. For example, the dropoff from being "very close" to "kinda close" will be a lot more than "really far away" to "really really far" away. It's not going to be a linear slope.
    2. Data Smoothing. As you move, the signal strength will vary unproportionally to your movement (due to obstacles in the path). It will make your results much more accurate if you take a rolling average of the last 5-10 samples of the signal strength rather than just taking the last sample.

提交回复
热议问题