为什么我有时会从CLLocationManager获取不准确的纬度和经度值?

时间:2016-12-14 12:42:38

标签: ios objective-c cllocationmanager

locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
locationManager.distanceFilter = kCLDistanceFilterNone;


if ([self.locationManager respondsToSelector:@selector(requestAlwaysAuthorization)])
{
    [self.locationManager requestAlwaysAuthorization];

}
[locationManager startUpdatingLocation];

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

    if(newLocation.horizontalAccuracy<0)
    {
        [locationManager startUpdatingLocation];
    }
    else
    {
        NSTimeInterval interval = [newLocation.timestamp timeIntervalSinceNow];

        if(abs(interval)<15)
        {
//Here i am doing my code but i get location which is far from my current location last time maximum distance i got from the current location was near about 3000 meter

            [locationManager stopUpdatingLocation];
        }
    }
}

我使用此代码,但在距离当前位置超过1公里的某个时间内,位置不准确 我想要准确的位置

1 个答案:

答案 0 :(得分:3)

当您第一次询问位置更新时,您可能会从上次GPS处于活动状态时获得“陈旧”位置。 (我已经看到了几公里外的陈旧位置读数。)第一个fiew位置也往往精度不高。

您应该检查所获得的位置上的日期标记,并拒绝任何超过1秒的日期标记,并拒绝那些精确读数大于您所需精确度的人。

编辑:

您的didUpdateToLocation方法没有意义。

当您致电startUpdatingLocation时,您会在位置发生变化时获得位置更新,直到您致电stopUpdatingLocation

没有理由在startUpdatingLocation方法中调用didUpdateToLocation,因为该位置已在更新中。事实上它可能搞砸了。不要那样做。

在伪代码中,你想要做的是这样的:

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
  if the time of the update is > 5 seconds old, return.

  if horizontalAccuracy < 0 || horizontalAccuracy > 500, return. 

  stop updating location.

  do whatever you want to do with the location.
}

当您没有做任何事情的情况下返回时,随着GPS安定下来,您将获得更多位置更新。

我以500作为最大可接受精度读数作为例子。那将是0.5公里,这是一个很大的错误。较小的数字(如100或50)会产生更好的结果,但需要更长时间。