0

Can we determine the exact distance of the Beacon from the iOS App using these properties below.

  1. Proximity
  2. accuracy
  3. rssi

If so, How can we achieve it?

Thanks,

Srivathsava K
  • 437
  • 2
  • 5
  • 15
  • 1
    Have you tried reading the Docs and running the example applications? – AnthonyLambert Apr 09 '14 at 09:11
  • 1
    How should you be able to determine *exact* distance without trigonometry... all the above won't be sufficient to give exact distance, the values will always be ambiguous. – Volker Apr 09 '14 at 09:13
  • Hope these post will help [link](http://stackoverflow.com/questions/20416218/understanding-ibeacon-distancing) – user2071152 Apr 09 '14 at 09:17
  • @Volker - the value will be ambiguous with trigonometry, too, though having more measurements may improve things. – Chris Stratton Apr 10 '14 at 15:41

2 Answers2

1

accuracy is an estimation of the distance (in meter) between your device and the beacon. It isn't really reliable. As a matter of fact determining an exact distance would require taking into account all things creating interferences or attenuating the signal which isn't possible.

Jerome Diaz
  • 1,746
  • 8
  • 15
0

Accuracy is reliable within 1 meter,but the value may fluctuate.With increasing distance error increases.

You can calculate the distance by rssi in the actual environment.

Rajat
  • 1,043
  • 12
  • 23