ios - 为什么我有时会从 CLLocationManager 获得不准确的纬度和经度值?
<p><pre><code>locationManager = [ init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
locationManager.distanceFilter = kCLDistanceFilterNone;
if ()
{
;
}
;
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
if(newLocation.horizontalAccuracy<0)
{
;
}
else
{
NSTimeInterval interval = ;
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
;
}
}
}
</code></pre>
<p>我使用此代码,但有时无法获得准确的位置,因为它给出的距离当前位置超过 1 公里
我想要准确的位置</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>当您第一次请求位置更新时,您可能会获得上次 GPS 处于事件状态时的“陈旧”位置。 (我见过几公里外的陈旧位置读数。)前几个位置的准确性也往往很差。</p>
<p>您应该检查您获得的位置上的日期戳,并拒绝任何超过 1 秒的历史,并拒绝那些准确度读数大于您所需准确度的人。</p>
<h2>编辑:</h2>
<p>您的 <code>didUpdateToLocation</code> 方法没有意义。</p>
<p>当你调用<code>startUpdatingLocation</code>时,你会随着位置的变化而得到位置更新,直到你调用<code>stopUpdatingLocation</code></p>
<p>没有理由在 <code>didUpdateToLocation</code> 方法中调用 <code>startUpdatingLocation</code>,因为位置已经在更新。事实上,它可能会把事情搞砸。不要那样做。</p>
<p>在伪代码中,你想做的是这样的:</p>
<pre><code>- (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.
}
</code></pre>
<p>当您不做任何事情返回时,随着 GPS 稳定下来,您将获得更多位置更新。</p>
<p>我以 500 作为可接受的最大准确度读数为例。那将是 0.5 公里,这是一个很大的错误。较小的数字(例如 100 或 50)会产生更好的结果,但需要更长的时间。</p></p>
<p style="font-size: 20px;">关于ios - 为什么我有时会从 CLLocationManager 获得不准确的纬度和经度值?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/41142971/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/41142971/
</a>
</p>
页:
[1]