获取 GPS 修复卫星的数量?
我得到了 GPS_Location:
double lo=gps_loc.getLongitude();
double la=gps_loc.getLatitude();
我得到了 Horizontal_Accuracy:
int horiAcc=(int)(gps_loc.getAccuracy());
我得到了 HDOP:
int hd= (int) (horiAcc/5);
但我无法得到卫星的数量。
如何获取 GPS 定位中已使用的卫星数量?
I got the GPS_Location:
double lo=gps_loc.getLongitude();
double la=gps_loc.getLatitude();
I got the Horizontal_Accuracy:
int horiAcc=(int)(gps_loc.getAccuracy());
I got the HDOP:
int hd= (int) (horiAcc/5);
But I can't got the number of satellites.
How can I get the number of satellites have been used in my GPS localisation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 GpsStatus 类
它有一个名为 getMaxSatellites() 的方法,
如果您需要进一步查看 GPS 卫星数据,您可以使用 getSatellites() 迭代卫星列表,
请参阅:
http://developer.android.com/reference/android /location/GpsStatus.html#getMaxSatellites%28%29
Look at the GpsStatus Class
it has a method called getMaxSatellites()
if you need further looking into the GPS Satellite Data you can iterate over the List of Satellites with getSatellites()
see:
http://developer.android.com/reference/android/location/GpsStatus.html#getMaxSatellites%28%29