Giter Site home page Giter Site logo

wifilocator's Introduction

wifilocator

This project is an investigation for finding the location (x,y,z coordinates) of a wifi signal source based on RSS (Relative Signal Strength) measured at different locations.

Model

Some formulas from the literature: $RSSI = -10n log10(d) + A$ $RSS = P * log( d / d0 ) + A$ But note that d vs. d/d0 is like changing units, do we care?

Simplifying: $RSS = c1 * log( d / c2 ) + c3$ $(RSS-c3)/c1 = log( d / c2 )$ $d = c2 * e^{(RSS-c3)/c1}$

So we have a formula to calculate distance based on RSS measurement. We can also calulate distance based on the xyz location of the source.

Therefore, we seek to minimize the MSE (Mean Squared Error): $sum( ( d_{rss} - d_{xyz} )^2 )$ Alternatively the L1 norm, or huber, or other loss function: $sum( huber( d_{rss} - d_{xyz} ) )$

Sample Data

The directory "data" contains sample measurement using a Macbook Air and TP-Link AC1750 wifi router.

Here is a Desmos graph of the distance formula with parameters. It is useful to try with the found values of c1, c2, c3. (Remember that RSS is always negative, and large negative RSS correspond to large distances.) https://www.desmos.com/calculator/eubsa5dfvu

wifilocator's People

Contributors

ericjster avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.