如何在 Android 手机上捕捉海拔高度?
我希望能够在我的 Android 应用程序中捕获海拔高度。我知道我可以使用 GPS 定位我所在的位置,但是有什么方法可以使用传感器组合大致推算出手机离地面的高度吗?如果不是,我能得到的最接近的估计是多少?
I want to be able to capture altitude in my Android app. I know I can use GPS for where I am, but is there any way I can derive roughly how high the phone is off the ground using a combination of sensors? If not, what is the closest estimation I can get?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果手机有气压传感器,您可以使用 SensorManager.getAltitude 根据压力读数获取海拔高度。此方法还需要海平面的当前压力,该压力可以从当地机场数据(通过 Web 服务)获得,也可以使用 SensorManager.PRESSURE_STANDARD_ATMOSPHERE 进行近似。
有关更多信息,请参阅:
Android:如何使用 SensorManager.getAltitude(浮点 p0,浮点 p)?
If the phone has a barometric pressure sensor, you can use SensorManager.getAltitude to get the altitude based on a pressure reading. This method also requires the current pressure at sea level, which can either be obtained from local airport data (via a web service) or approximated with SensorManager.PRESSURE_STANDARD_ATMOSPHERE.
For more, see:
Android: How to use SensorManager.getAltitude(float p0, float p)?