views:

92

answers:

1

Question is as simple as the title: How to measure GPS signal strength?

+2  A: 

Are you sure you mean signal strength vs. accuracy? What good is the signal strength? Since the GPS position is determined via many satellites, you don't have "one" signal strength.

So assuming that you really mean signal strength, you can get the GpsStatus via LocationManager.getGpsStatus(), and that gives you a list of satellites via getSatellites()', and each one of those has a signal-to-noise ratio (getSnr()).

Assuming you mean accuracy, try Location.getAccuracy().

EboMike
Take a look into this article Enhancing the Code to Measure GPS Signal Strength Read more: http://www.brighthub.com/electronics/gps/articles/42995.aspx#ixzz0xV3QAuOh Is that possible on Android?
Pentium10