【问题标题】:How to get Accurate Current location in android?如何在android中获得准确的当前位置?
【发布时间】:2016-05-27 14:22:35
【问题描述】:

我尝试过getLastKnownLocation(),但我发现它有时无法提供准确的位置,并且它正在获取错误的位置,否则很好。

谁能帮帮我? 我是android studio的初学者

这是我下面的 GPS 跟踪器代码....

if (isGPSEnabled)
{
    locationManager.requestLocationUpdates(
            LocationManager.GPS_PROVIDER,
            MIN_TIME_BW_UPDATES,
            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);

    Log.d("GPS Enabled", "GPS Enabled");

    if (locationManager != null)
    {
        location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
        updateGPSCoordinates();
    }
}
} else if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
        LocationManager.NETWORK_PROVIDER,
        MIN_TIME_BW_UPDATES,
        MIN_DISTANCE_CHANGE_FOR_UPDATES, this);

Log.d("Network", "Network");

if (locationManager != null)
{
    location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
    updateGPSCoordinates();
}
}

// ...

@Override
public void onLocationChanged(Location location) 
{ 
this.location = location;
updateGPSCoordinates();
}

【问题讨论】:

  • “位置错误”是什么意思? GPS 不是 100% 准确,并且有一些错误。 GPS是室内还是室外也很重要。
  • 这几周我做了很多测试,我注意到准确性在很大程度上取决于手机的品牌。有些人比其他人更好地构建了 GPS 芯片......此外,Lollipop OS 存在一些问题,如下所述:code.google.com/p/android/issues/detail?id=81140
  • 位置错误意味着有时它显示的是以前获取的位置而不是更新的位置。你有任何想法来获取更新的位置(不是 LastKnownLocation)。
  • @TDG 位置错误意味着它显示不同的州地址,我正在使用一些应用程序,它们至少对城市是准确的。

标签: java android gps latitude-longitude


【解决方案1】:

Android 开发者documentation 上有一个非常有用的页面,希望对您有所帮助。出于我的目的,我不得不稍微调整一下,但主要思想保持不变:

您可能认为最近的位置修复是最 准确的。但是,由于位置定位的准确性各不相同,因此 最近的修复并不总是最好的。你应该包括逻辑 根据几个标准选择位置修复。标准也 因应用程序和领域的用例而异 测试。

private static final long TWO_MINUTES = TimeUnit.MINUTES.toNanos(2);

/** Determines whether one Location reading is better than the current Location fix
  * @param location  The new Location that you want to evaluate
  * @param currentBestLocation  The current Location fix, to which you want to compare the new one
  */
protected boolean isBetterLocation(Location location, Location currentBestLocation) {
    if (currentBestLocation == null) {
        // A new location is always better than no location
        return true;
    }

    // Check whether the new location fix is newer or older
    long timeDelta = location.getElapsedRealtimeNanos() - currentBestLocation.getElapsedRealtimeNanos();
    boolean isSignificantlyNewer = timeDelta > TWO_MINUTES;
    boolean isSignificantlyOlder = timeDelta < -TWO_MINUTES;
    boolean isNewer = timeDelta > 0;

    // If it's been more than two minutes since the current location, use the new location
    // because the user has likely moved
    if (isSignificantlyNewer) {
        return true;
    // If the new location is more than two minutes older, it must be worse
    } else if (isSignificantlyOlder) {
        return false;
    }

    // Check whether the new location fix is more or less accurate
    int accuracyDelta = (int) (location.getAccuracy() - currentBestLocation.getAccuracy());
    boolean isLessAccurate = accuracyDelta > 0;
    boolean isMoreAccurate = accuracyDelta < 0;
    boolean isSignificantlyLessAccurate = accuracyDelta > 200;

    // Check if the old and new location are from the same provider
    boolean isFromSameProvider = isSameProvider(location.getProvider(),
            currentBestLocation.getProvider());

    // Determine location quality using a combination of timeliness and accuracy
    if (isMoreAccurate) {
        return true;
    } else if (isNewer && !isLessAccurate) {
        return true;
    } else if (isNewer && !isSignificantlyLessAccurate && isFromSameProvider) {
        return true;
    }
    return false;
}

/** Checks whether two providers are the same */
private boolean isSameProvider(String provider1, String provider2) {
    if (provider1 == null) {
      return provider2 == null;
    }
    return provider1.equals(provider2);
}

【讨论】:

  • 好吧,我不会只是将 float 转换为 int。如果使用 int 真的有意义,我会四舍五入。您的“isSignificantlyLessAccurate”处理对我来说没有任何意义。我不知道为什么我应该关心提供者。谷歌已经这样做并相应地设置了准确度参数。准确性和时间戳是我关心的值。一个新的位置并不总是比没有位置好。如果它太旧或太不准确,它就无法使用,我更喜欢不使用任何位置。
  • 我不使用 getElapsedRealtimeNanos() 因为我不关心设备的“自系统启动以来的实时性”。我使用 UTC 时间戳。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2013-01-16
  • 1970-01-01
  • 2013-08-03
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多