Android GPS:如何从NMEA获取正在使用的卫星号码?

时间:2015-02-05 21:08:18

标签: android gps nmea

我用android获得了NMEA字符串。但我不知道如何才能获得正在使用的卫星号?

1 个答案:

答案 0 :(得分:2)

您需要从您的nmea字符串中读取GGA字段。它为您提供正在跟踪的卫星数量

GGA - 提供3D位置和准确度数据的基本修复数据,

$GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47

其中:

     GGA          Global Positioning System Fix Data
     123519       Fix taken at 12:35:19 UTC
     4807.038,N   Latitude 48 deg 07.038' N
     01131.000,E  Longitude 11 deg 31.000' E
     1            Fix quality: 0 = invalid
                               1 = GPS fix (SPS)
                               2 = DGPS fix
                               3 = PPS fix
                   4 = Real Time Kinematic
                   5 = Float RTK
                               6 = estimated (dead reckoning) (2.3 feature)
                   7 = Manual input mode
                   8 = Simulation mode
     08           Number of satellites being tracked <-- this is what you want
     0.9          Horizontal dilution of position
     545.4,M      Altitude, Meters, above mean sea level
     46.9,M       Height of geoid (mean sea level) above WGS84
                      ellipsoid
     (empty field) time in seconds since last DGPS update
     (empty field) DGPS station ID number
     *47          the checksum data, always begins with *

然后您可以使用String::split()方法来读取被跟踪的卫星数量。