Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How could I get and use the number of satellites before starting location tracking?

For example I want to start location tracking only when there are min X satellites in use.

share|improve this question
Are you sure this is what you want to do? Why do you need a minimum number of satellites? Just because you have X satellites doesn't guarantee you accurate results. If you're trying to conserve battery, checking for active satellites until you find the requisite number is probably more draining than just registering a location listener and letting it do its thing – Falmarri Aug 23 '10 at 20:57
It's in the specs of the software I am creating. Suppose I register the location listener, do I get how many satellites have been used? – Pentium10 Aug 23 '10 at 21:03

1 Answer

See the answer I gave you to your other question - http://stackoverflow.com/questions/3551697/how-to-measure-gps-signal-strength-on-android/3551743#3551743.

Basically, LocationManager.getGpsStatus().getSatellites().

And again, personally I don't think that going on this level is a good idea for a location-based app, unless you specifically need to do something with the satellite data.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.