O problema:
Obter a localização atual do usuário dentro de um limite o mais rápido possível e, ao mesmo tempo, economizar bateria.
Por que o problema é um problema:
Primeiro, o Android tem dois provedores; rede e GPS. Às vezes a rede é melhor e às vezes o GPS é melhor.
Por "melhor", quero dizer velocidade versus precisão.
Estou disposto a sacrificar alguns metros de precisão se conseguir obter a localização quase instantaneamente e sem ligar o GPS.
Em segundo lugar, se você solicitar atualizações para alterações no local, nada será enviado se o local atual estiver estável.
O Google tem um exemplo de como determinar a "melhor" localização aqui: http://developer.android.com/guide/topics/location/obtaining-user-location.html#BestEstimate
Mas acho que não é tão bom quanto deveria /poderia ser.
Estou meio confuso por que o google não possui uma API normalizada para localização, o desenvolvedor não precisa se preocupar com a localização, você deve especificar o que deseja e o telefone deve escolher.
Com o que preciso de ajuda:
Preciso encontrar uma boa maneira de determinar o "melhor" local, talvez com alguma heurística ou talvez através de uma biblioteca de terceiros.
Isso não significa determinar o melhor provedor!
Provavelmente vou usar todos os provedores e escolher o melhor deles.
Antecedentes da aplicação:
O aplicativo coletará a localização do usuário em um intervalo fixo (digamos a cada 10 minutos ou mais) e a enviará para um servidor.
O aplicativo deve economizar o máximo possível de bateria e o local deve ter uma precisão de X (50-100?) Metros.
O objetivo é mais tarde poder traçar o caminho do usuário durante o dia em um mapa, para que eu precise de precisão suficiente para isso.
Outros:
Na sua opinião, quais são os valores razoáveis das precisões aceitas e desejadas?
Eu tenho usado 100m como aceito e 30m como desejado, isso é pedir muito?
Gostaria de poder traçar o caminho do usuário em um mapa posteriormente.
100m para o desejado e 500m para o aceito são melhores?
Além disso, no momento, eu tenho o GPS ligado por no máximo 60 segundos por atualização de local. Isso é muito curto para obter um local se você estiver em um ambiente fechado com uma precisão de talvez 200 m?
Este é o meu código atual, qualquer comentário é apreciado (além da falta de verificação de erros, que é o 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);
}