获取 GPS 修复卫星的数量?

发布于 2024-12-03 17:54:32 字数 345 浏览 2 评论 0原文

我得到了 GPS_Location:

double lo=gps_loc.getLongitude();
double la=gps_loc.getLatitude();

我得到了 Horizo​​ntal_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

触ぅ动初心 2024-12-10 17:54:32

查看 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文