2012-05-14 10 views
5

Estoy tratando de recuperar el # de satélites utilizados en la reparación de GPS. He implementado dos métodos diferentes, como se muestra a continuación:Recuperando # de satélites usados ​​en gps fix de Android

package ti.utils; 

import android.app.Activity; 
import android.content.Context; 
import android.location.GpsSatellite; 
import android.location.GpsStatus; 
import android.location.Location; 
import android.location.LocationListener; 
import android.location.LocationManager; 
import android.os.Bundle; 

public class Gps { 

    private static final int TWO_MINUTES = 1000 * 60 * 2; 
    private static Location Location; 
    public static int Satellites = -1; 

    public static void StartTracking(Activity activity) 
    { 
     final LocationManager locationManager = (LocationManager) activity.getSystemService(Context.LOCATION_SERVICE); 

     //listen for gps status changes. 
     GpsStatus.Listener gpsStatusListener = new GpsStatus.Listener() { 
      public void onGpsStatusChanged(int event) { 
       Log("In onGpsStatusChanged event: " + event); 
       if (event == GpsStatus.GPS_EVENT_SATELLITE_STATUS || event == GpsStatus.GPS_EVENT_FIRST_FIX) { 
        GpsStatus status = locationManager.getGpsStatus(null); 
        Iterable<GpsSatellite> sats = status.getSatellites(); 
        // Check number of satellites in list to determine fix state 
        Satellites = 0; 
        for (GpsSatellite sat : sats) { 
         //if(sat.usedInFix()) 
         Satellites++; 
        } 
        Log("Setting Satellites from GpsStatusListener: " + Satellites); 
       } 
      } 
     }; 
     locationManager.addGpsStatusListener(gpsStatusListener); 

     //listen for location changes. 
     LocationListener locationListener = new LocationListener() { 
      public void onLocationChanged(Location location) { 
       // Called when a new location is found by the network location provider. 
       try 
       { 
        Log("Location changed! Speed = " + location.getSpeed() + " & Satellites = " + location.getExtras().getInt("satellites")); 
        boolean isBetter = isBetterLocation(location, Location); 
        if(isBetter) 
        { 
         Log("Set to new location"); 
         Location = location; 
         Satellites = location.getExtras().getInt("satellites"); 
         Log("Setting Satellites from LocationListener: " + Satellites); 
        } 
       } 
       catch(Exception exc) 
       { 
        Log(exc.getMessage()); 
       } 
      } 
      public void onStatusChanged(String provider, int status, Bundle extras) {} 
      public void onProviderEnabled(String provider) {} 
      public void onProviderDisabled(String provider) {} 
     }; 
     locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener); 
    } 

    /** 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 static 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.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 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 static boolean isSameProvider(String provider1, String provider2) { 
     if (provider1 == null) { 
      return provider2 == null; 
     } 
     return provider1.equals(provider2); 
    } 

    private static void Log(String message) { 
     if(message != null && message.length() > 0) { 
      //android.util.Log.i(LCAT, message); 
      org.appcelerator.kroll.common.Log.i("SygicModule", message); 
     } 
    } 

} 

Ninguno de los eventos de escucha (onGpsStatusChanged & onLocationChanged) jamás fuego, aunque tenga habilitado para GPS autónomo en mi teléfono. Tengo el conjunto de permisos ACCESS_FINE_LOCATION:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 

He descargado una aplicación de 3 ª parte llamada Estado del GPS y fue capaz de mostrar correctamente el # de los satélites, así que sé que no es un problema con mi Droid X2.

¿Alguna idea?

Respuesta

3
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, locationListener); 

Debe ser

locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener); 
+0

Esto ayudó a algunos con el segundo enfoque, ahora se desencadena el evento onLocationChanged, sin embargo, siempre tiene 0 satélites en la ubicación.getExtras(). GetInt ("satélites") – Justin

+0

Esto terminó funcionando ... Pensé que estaba probando dos métodos separados, ¡pero resulta que necesitaba ambos para que funcionara! – Justin

+0

Me alegro de que funcione;) – techiServices

0

Si no puede obtener la numebr de los satélites a través GPS_EVENT_SATELLITE_STATUS entonces se podría tiene su actividad implementar NmeaListener.

Si implementa NmeaListener, tendrá que analizar la cadena de mensaje recibida en en NmeaReceived para extraer el número de satélites. Los formatos NMEA se describen here. A continuación, es posible que desee hacer una búsqueda en Google de "Java" + "Analizador NMEA"

+0

Me resulta difícil creer que tengo que analizar manualmente a través de datos NMEA para recuperar el número de satélites. El primer método también está manejando el evento GPS_EVENT_FIRST_FIX, este debería ser disparado. Además, no mencionó el segundo método, que debería activarse en el cambio de ubicación ... – Justin

+0

Hmm, estoy bastante seguro de que cuando mi teléfono ejecutaba Gingerbread, siempre devolvía 0 satélites. Ahora su ICS en ejecución SÍ, veo el número de satélites en GPS_EVENT_SATELLITE_STATUS. Editaré mi respuesta. – NickT

+0

Mi Sony Ericsson Xperia Pro ejecutando Gingerbread 2.3.4 devuelve 0 satélites también. El análisis de los datos NMEA tampoco ayuda (también de 0 calidad), y está basado en http://stackoverflow.com/questions/587441/roll-your-own-nmea-parser-or-use-an-open-source- gps-parser parece que NMEA no es confiable y tendré que buscar el formato binario específico del dispositivo GPS. – Piovezan

6

Aquí está el código que terminó funcionando.

package ti.utils; 

import android.app.Activity; 
import android.content.Context; 
import android.location.GpsSatellite; 
import android.location.GpsStatus; 
import android.location.Location; 
import android.location.LocationListener; 
import android.location.LocationManager; 
import android.os.Bundle; 

public class Gps { 

    private static final int TWO_MINUTES = 1000 * 60 * 2; 
    private static Location Location; 
    public static int Satellites = -1; 

    public static void StartTracking(Activity activity) 
    { 
     final LocationManager locationManager = (LocationManager) activity.getSystemService(Context.LOCATION_SERVICE); 

     //listen for gps status changes. 
     GpsStatus.Listener gpsStatusListener = new GpsStatus.Listener() { 
      @Override 
      public void onGpsStatusChanged(int event) { 
       Log("In onGpsStatusChanged event: " + event); 
       if (event == GpsStatus.GPS_EVENT_SATELLITE_STATUS || event == GpsStatus.GPS_EVENT_FIRST_FIX) { 
        GpsStatus status = locationManager.getGpsStatus(null); 
        Iterable<GpsSatellite> sats = status.getSatellites(); 
        // Check number of satellites in list to determine fix state 
        Satellites = 0; 
        for (GpsSatellite sat : sats) { 
         //if(sat.usedInFix()) 
         Satellites++; 
        } 
        Log("Setting Satellites from GpsStatusListener: " + Satellites); 
       } 
      } 
     }; 
     locationManager.addGpsStatusListener(gpsStatusListener); 

     //listen for location changes. 
     LocationListener locationListener = new LocationListener() { 
      @Override 
      public void onLocationChanged(Location location) { 
       // Called when a new location is found by the network location provider. 
       /*try 
       { 
        Log("Location changed! Speed = " + location.getSpeed() + " & Satellites = " + location.getExtras().getInt("satellites")); 
        boolean isBetter = isBetterLocation(location, Location); 
        if(isBetter) 
        { 
         Log("Set to new location"); 
         Location = location; 
         Satellites = location.getExtras().getInt("satellites"); 
         Log("Setting Satellites from LocationListener: " + Satellites); 
        } 
       } 
       catch(Exception exc) 
       { 
        Log(exc.getMessage()); 
       }*/ 
      } 
      public void onStatusChanged(String provider, int status, Bundle extras) {} 
      public void onProviderEnabled(String provider) {} 
      public void onProviderDisabled(String provider) {} 
     }; 
     locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener); 
    } 

    /** 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 static 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.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 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 static boolean isSameProvider(String provider1, String provider2) { 
     if (provider1 == null) { 
      return provider2 == null; 
     } 
     return provider1.equals(provider2); 
    } 

    private static void Log(String message) { 
     if(message != null && message.length() > 0) { 
      //android.util.Log.i(LCAT, message); 
      org.appcelerator.kroll.common.Log.i("UtilsModule", message); 
     } 
    } 

} 
+1

¿Por qué tiene la declaración 'if (sat.usedInFix())' comentada? Descomentaré esa línea si quieres que tu recuento sea de los satélites realmente usados ​​en la corrección más reciente. –

0

Lo tengo trabajando teniendo el siguiente código. locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new LocationUpdateHandler()); int nSatellites = location.getExtras().getInt("satellites", -1);

nSatellites resultó ser> 0 una vez que empecé a recibir FIX (onLocationChanged devoluciones de llamada).

Cuestiones relacionadas