determining your location using ONLY wifi signals?

后端 未结 7 392
独厮守ぢ
独厮守ぢ 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:58

    Discarding the first 2 answers, where they need to use GPS and A-GPS in the first and a known WiFi network in the second, my answer is:

    it sounds easy, but you need to do some homework first, a Survey.

    • you will need to measure up and create a oval shape (in a paper) with points and percentages of all wifi routers in the camp.
    • when, lets imagine that you compile 2 routers information, you are ready to go.
    • get the current wifi points and signal strengths from the user laptop/device and query the database using those values.
    • give the user their current location.

    Example:

    • in the campus bar you measured that to be in that place you need to have around 55% strength of the signal provided from WiFi Router 1 and 25% of the WiFi Router 2.

    To use all this in C#, you should start in this Code Project article to get the signal strengths. Then is just use those returned values with your data that you measured before when doing the first survey.

    Hope it helps :) At least, that was what I would do in order to approach this problem.

    0 讨论(0)
提交回复
热议问题