2012-05-14 30 views
5

से जीपीएस फिक्स में इस्तेमाल उपग्रहों में से # को पुनर्प्राप्त करना मैं जीपीएस फिक्स में इस्तेमाल किए गए उपग्रहों के # को पुनर्प्राप्त करने का प्रयास कर रहा हूं। जैसा कि नीचे दिखाया मैं दो अलग अलग तरीकों को लागू किया है,:एंड्रॉइड

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); 
     } 
    } 

} 

श्रोता की घटनाओं की न तो (onGpsStatusChanged & onLocationChanged) कभी आग, भले ही मैं स्टैंडअलोन जीपीएस मेरे फोन पर सक्षम है। मैं ACCESS_FINE_LOCATION अनुमति सेट है:

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

मैं जीपीएस स्थिति नामक एक 3 पार्टी एप्लिकेशन डाउनलोड किया और इसे सही ढंग उपग्रहों की # प्रदर्शित करने में सक्षम था, इसलिए मैं जानता हूँ कि यह मेरे Droid X2 के साथ कोई समस्या नहीं है।

कोई विचार?

उत्तर

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

होना चाहिए

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

इससे दूसरे दृष्टिकोण के साथ कुछ लोगों की मदद मिली, अब ऑनलाक्शन चेंजेड ईवेंट निकाल दिया गया है, हालांकि इसमें हमेशा 0 उपग्रह हैं .getExtras()। GetInt ("उपग्रह") – Justin

+0

यह काम खत्म हो गया ... मैंने सोचा कि मैं था दो अलग-अलग तरीकों की कोशिश कर रहा है, लेकिन यह पता चला कि मुझे काम करने के लिए दोनों की जरूरत है! – Justin

+0

खुशी है कि आप इसे काम कर रहे हैं;) – techiServices

0

आप GPS_EVENT_SATELLITE_STATUS के माध्यम से उपग्रहों की numebr नहीं मिल सकता है तो आप अपनी गतिविधि को लागू NmeaListener हो सकता था।

यदि आप NmeaListener को लागू करते हैं तो आपको उपग्रहों की संख्या निकालने के लिए पर प्राप्त संदेश स्ट्रिंग को पर पार्स करना होगा। एनएमईए प्रारूपों का वर्णन here है। फिर आप "जावा" + "एनएमईए पार्सर" के लिए Google खोज करना चाहेंगे

+0

मुझे यह विश्वास करना मुश्किल लगता है कि मुझे # उपग्रहों को पुनर्प्राप्त करने के लिए मैन्युअल रूप से एनएमईए डेटा के माध्यम से विश्लेषण करना होगा। पहली विधि GPS_EVENT_FIRST_FIX ईवेंट को भी संभालने वाली है, इसे निकाल दिया जाना चाहिए। इसके अलावा, आपने दूसरी विधि का उल्लेख नहीं किया है, जिसे स्थान परिवर्तन पर निकाल दिया जाना चाहिए ... – Justin

+0

हम्म, मैं काफी हद तक निश्चित हूं कि जब मेरा फोन जिंजरब्रेड चलाता है, तो यह हमेशा 0 उपग्रह लौटाता है। अब इसकी चल रही आईसीएस मैं GPS_EVENT_SATELLITE_STATUS में संख्या उपग्रहों को देखता हूं। मैं अपना जवाब संपादित करूंगा। – NickT

+0

मेरा सोनी एरिक्सन एक्सपीरिया प्रो जिंजरब्रेड चल रहा है 2.3.4 रिटर्न 0 उपग्रह भी। एनएमईए डेटा को पार्स करने से या तो (0 गुणवत्ता भी) में मदद नहीं मिलती है, और http://stackoverflow.com/questions/587441/roll-your-own-nmea-parser-or-use-an-open-source- जीपीएस-पार्सर ऐसा लगता है कि एनएमईए अविश्वसनीय है और मुझे जीपीएस डिवाइस के विशिष्ट बाइनरी प्रारूप के लिए जाना होगा। – Piovezan

6

यहां कोड समाप्त हो गया है।

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

आपके पास बयान क्यों है 'if (sat.usedInFix()) ने टिप्पणी की? यदि आप चाहते हैं कि आपकी गिनती वास्तव में सबसे हालिया फ़िक्स में उपयोग की जाने वाली उपग्रहों की हो, तो मैं उस पंक्ति को अन-टिप्पणी करूंगा। –

0

मुझे कोड में निम्नलिखित करके काम मिल गया। locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new LocationUpdateHandler()); int nSatellites = location.getExtras().getInt("satellites", -1);

nSatellites एक बार मैं ठीक (onLocationChanged कॉलबैक) मिलने लगे होने के लिए> 0 मिला था।