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

I have a problem within my app. I'm trying to find the user's location to the best preciseness in order to determine their zip-code. Currently I have a button that, when pressed, starts a method named locateMe.

-(IBAction)locateMe; {
self.locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];

Then I've implemented didUpdateToLocation:

-(void)locationManager:(CLLocationManager *)manager 
       didUpdateToLocation:(CLLocation *)newLocation
       fromLocation:(CLLocation *)oldLocation; { 

       NSLog(@"Found location! %f,%f",newLocation.coordinate.latitude,newLocation.coordinate.longitude);
 }

I had previously done much more complicated stuff in didUpdateToLocation but as I tested some things I realized that the first location it found was not precise in the least. So, I put the NSLog call in there and it gave me an output similar to below...

Found location! 39.594093,-98.614834
Found location! 39.601372,-98.592171
Found location! 39.601372,-98.592171
Found location! 39.611444,-98.538196
Found location! 39.611444,-98.538196

As you can see, it first gives me a value which is not correct, which was causing problems within my app because it wasn't giving the correct location.

So, here's my question. Is there any way I can wait for the location manager to finish finding the most precise location?

Thanks in advance!

EDIT: I'm wanting something like this:

if (newLocation.horizontalAccuracy <= locationManager.desiredAccuracy) {
}

But it never gets called!

share|improve this question

5 Answers

up vote 3 down vote accepted

Core Location often call didUpdateToLocation with location detected durning previous session. So you can just skip first location that it send to you. And if you're calculating user speed based on this data you should to be aware of that behavior. Pedestrians at 100mph is usual in that case. :)

If you're submitting comments or photos with geo coordinates - start receiving geo coordinates when user did enter to write a comment screen. while he will type a message - detected location become pretty accurate.

share|improve this answer
Now that you mention it, I'm thinking I should just start receiving the location as soon as the settings view opens (that's where I'm grabbing my location). – sudo rm -rf Dec 27 '10 at 21:49
Agreed. If you will start detecting location too early - it will drain device battery. So I recommend detect location only when it really necessary. – Evgen Bodunov Dec 27 '10 at 22:42
Thanks for your help. How can I discard the first location that it gives? Would I use a counter? – sudo rm -rf Jan 4 '11 at 16:03
If you didn't perform calculations based on location events - you just use latest location. Else you should store all received locations and then filter them. Anyway it's depends on your requirements. May be counter will be enough. We're finished speedometer with route recording and there was more complicated filtration and processing. – Evgen Bodunov Jan 4 '11 at 20:03

I don't see how you expect this to work. There's no guarantee that you will ever obtain a location with a specific level of accuracy. You're assuming that you will eventually get a location that has the reported accuracy you desire and that won't necessarily happen. LocationManager will send you a sequence of location updates which are generally, but certainly not always, increasingly accurate. Unfortunately you can't demand that the device receive a signal strong enough for it to give you a position of arbitrary accuracy and there's no way the device can predict the future to say "this is the most accurate position I'm going to get".

You might try storing all the locations reported over some time interval or until the reported accuracy seems to stabilize and accept that after several seconds you're probably not going to get a significantly more accurate position. You could then use the last reported position, or the most accurate, or a weighted center point of all of them, or whatever you think makes sense.

Given that you say this is going to be used to perform a reverse geocoding to get a zipcode I have to wonder why this is a concern. Even the most granular position is probably going to hit the user's current zipcode and even the most accurate will never be exactly right in every case so you'll want to allow users to correct it anyway if this is visible to your users.

share|improve this answer
+1 I think this is the best answer. The location manager cannot possibly know when it received the most precise location. – Ole Begemann Jan 3 '11 at 2:15

So you can really see what's happening, try NSLog'ging the horizontalAccuracy property of your newLocation object. You'll see that it's narrowing in on the location with each hit.

That means you can then TEST for the horizontal accuracy when your location manager gives you an update, and discard those that are too inaccurate for your use.

share|improve this answer
Ah, makes sense. Never knew about that property. :) – sudo rm -rf Dec 27 '10 at 16:31

NSLog() the oldLocation property, I think it should (or shouldn't?) be nil. and you can hide the userLocation if something failed:

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error {
    mapView.showsUserLocation = NO;
}

//EDIT: the desiredAccuracy says that the didUpdateToLocation only gets called if you move that far away from the old position. If you set the desiredAccuracy to 100m it will only get called when the user moves 100m away from his old position.

share|improve this answer
When it's first started, the oldLocation is nil. After one level down (in preciseness), it become non-nil. – sudo rm -rf Dec 27 '10 at 16:38
yes thats what I mean. You can check if it's nil and don't execute the code you would normally do. – relikd Dec 27 '10 at 16:44
But even when it's non-nil it still isn't the level of preciseness that I need. – sudo rm -rf Dec 27 '10 at 16:44

Save off the launch (or wake) time of your application, and discard any results from location manager that are older than the time your app was launched. CLLocation has a date stamp on it.

share|improve this answer
Thanks for your answer. I'm not sure you understand quite what I mean. I don't start the location manager until a settings view is loaded. I want to wait until the location is more precise, then grab the location data. That was my question. – sudo rm -rf Dec 28 '10 at 18:30
Right, but you can still store app launch time and not use any location dated before that - or in your case you could store the date the location manager was started, it would amount to the same thing. – Kendall Helmstetter Gelner Dec 28 '10 at 20:17
This could get a little tricky if they start the app and then exit it (that is, it enters the background). At least this is my use case with the Maps application (start, pause, open, pause). Considering that I'm in my car, the resulting location can be quite far away. But as a sort of all-else-has-failed solution, it's not a bad one. – freshfunk Feb 24 '11 at 23:41
You can use the willResumeFromBackground notification to reset that launch datestamp. Accept no date older than your resume, and basically kick the location manager once after that date reset is done - you are going to get at least one fresh location update if you stop and restart the location manager. – Kendall Helmstetter Gelner Mar 3 '11 at 3:20

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.