問題:
ユーザーの現在位置をできるだけ早くしきい値内に収めると同時に、バッテリーを節約します。
問題が問題である理由:
まず、androidには2つのプロバイダーがあります。ネットワークとGPS。時々ネットワークはよりよいですそして時々GPSはよりよいです。
「より良い」とは、速度と精度の比率を意味します。
GPSをオンにすることなくほぼ瞬時に位置を取得できる場合は、数メートルの精度を犠牲にしてもかまいません。
次に、現在地が安定している場合、場所の変更の更新をリクエストしても何も送信されません。
グーグルはここに「最高の」場所を決定する例を持っています:http : //developer.android.com/guide/topics/location/obtaining-user-location.html#BestEstimate
しかし、私はそれが必要なほど良い場所ではないと思います/になり得る。
なぜGoogleが位置情報の正規化されたAPIを持っていないのか、ちょっと混乱しています。開発者は位置情報の場所を気にする必要はありません。必要なものを指定するだけで、電話があなたのために選択するはずです。
助けが必要なもの:
ヒューリスティックな方法やサードパーティのライブラリを使用して、「最適な」場所を特定するための良い方法を見つける必要があります。
これは、最高のプロバイダーを決定することを意味しません!
私はおそらくすべてのプロバイダーを使用して、それらのベストを選びます。
アプリの背景:
アプリはユーザーの現在地を一定の間隔(10分ごとなど)で収集し、サーバーに送信します。
アプリは可能な限り多くのバッテリーを節約する必要があり、場所はX(50-100?)メートルの精度である必要があります。
目標は、後で日中のユーザーの経路を地図上にプロットできるようにすることです。そのため、十分な精度が必要です。
その他:
望ましい精度と許容される精度の妥当な値は何だと思いますか?
私は100mを受け入れ、30mを必要に応じて使用していますが、これで十分でしょうか?
ユーザーのパスを後で地図上にプロットできるようにしたいのですが。
100mは希望よりも500mはより良いですか?
また、現在、位置情報の更新ごとに最大60秒間GPSをオンにしていますが、屋内にいる場合、おそらく200mの精度で位置を取得するには短すぎますか?
これは私の現在のコードです。フィードバックはありがたいです(TODOであるエラーチェックの欠如は別として)。
protected void runTask() {
final LocationManager locationManager = (LocationManager) context
.getSystemService(Context.LOCATION_SERVICE);
updateBestLocation(locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER));
updateBestLocation(locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER));
if (getLocationQuality(bestLocation) != LocationQuality.GOOD) {
Looper.prepare();
setLooper(Looper.myLooper());
// Define a listener that responds to location updates
LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location location) {
updateBestLocation(location);
if (getLocationQuality(bestLocation) != LocationQuality.GOOD)
return;
// We're done
Looper l = getLooper();
if (l != null) l.quit();
}
public void onProviderEnabled(String provider) {}
public void onProviderDisabled(String provider) {}
public void onStatusChanged(String provider, int status,
Bundle extras) {
// TODO Auto-generated method stub
Log.i("LocationCollector", "Fail");
Looper l = getLooper();
if (l != null) l.quit();
}
};
// Register the listener with the Location Manager to receive
// location updates
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER, 1000, 1, locationListener,
Looper.myLooper());
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER, 1000, 1,
locationListener, Looper.myLooper());
Timer t = new Timer();
t.schedule(new TimerTask() {
@Override
public void run() {
Looper l = getLooper();
if (l != null) l.quit();
// Log.i("LocationCollector",
// "Stopping collector due to timeout");
}
}, MAX_POLLING_TIME);
Looper.loop();
t.cancel();
locationManager.removeUpdates(locationListener);
setLooper(null);
}
if (getLocationQuality(bestLocation) != LocationQuality.BAD)
sendUpdate(locationToString(bestLocation));
else Log.w("LocationCollector", "Failed to get a location");
}
private enum LocationQuality {
BAD, ACCEPTED, GOOD;
public String toString() {
if (this == GOOD) return "Good";
else if (this == ACCEPTED) return "Accepted";
else return "Bad";
}
}
private LocationQuality getLocationQuality(Location location) {
if (location == null) return LocationQuality.BAD;
if (!location.hasAccuracy()) return LocationQuality.BAD;
long currentTime = System.currentTimeMillis();
if (currentTime - location.getTime() < MAX_AGE
&& location.getAccuracy() <= GOOD_ACCURACY)
return LocationQuality.GOOD;
if (location.getAccuracy() <= ACCEPTED_ACCURACY)
return LocationQuality.ACCEPTED;
return LocationQuality.BAD;
}
private synchronized void updateBestLocation(Location location) {
bestLocation = getBestLocation(location, bestLocation);
}
// Pretty much an unmodified version of googles example
protected Location getBestLocation(Location location,
Location currentBestLocation) {
if (currentBestLocation == null) {
// A new location is always better than no location
return location;
}
if (location == null) return currentBestLocation;
// Check whether the new location fix is newer or older
long timeDelta = location.getTime() - currentBestLocation.getTime();
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 location;
// If the new location is more than two minutes older, it must be
// worse
} else if (isSignificantlyOlder) {
return currentBestLocation;
}
// 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 location;
} else if (isNewer && !isLessAccurate) {
return location;
} else if (isNewer && !isSignificantlyLessAccurate
&& isFromSameProvider) {
return location;
}
return bestLocation;
}
/** Checks whether two providers are the same */
private boolean isSameProvider(String provider1, String provider2) {
if (provider1 == null) {
return provider2 == null;
}
return provider1.equals(provider2);
}