Android 的距离函数

发布于 2024-10-31 13:06:59 字数 194 浏览 1 评论 0原文

我只是想开发使用 GPS 的基于位置的应用程序。所以我只是在网上冲浪,我发现了用于计算纬度和经度的球面余弦定律。但是当我尝试复制这个函数时,我遇到了一些错误。看来android不支持sqlite3_context。那么我该如何解决它呢?

在此处输入图像描述

I just wanted to develop location based app which is using GPS. So i just surfing on the internet and i found spherical law of cosines for calculating the latitude and longitude. But while i tried to copy this function, i was stuck with some errors. seem android doesn't support sqlite3_context. so how could i fix it out ?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

未蓝澄海的烟 2024-11-07 13:06:59

这是因为您已经复制了 C 代码,并将其粘贴到 Android 中,当然 Android 使用的是 Java。虽然我确信代码翻译成 Java 后会很相似,但您必须翻译。特别是像 sqlite_context 这样的结构在 Java 中不存在。但我确信有一些像“SQLiteContext”这样的 Android 类具有类似的 API。

This is because you have copied C code, and are pasting it into Android, which of course uses Java. While I'm sure the code will be similar when translated to Java, you must translate. In particular structs like sqlite_context don't exist in Java. But I'm sure there's some Android class like "SQLiteContext" that has a similar API.

优雅的叶子 2024-11-07 13:06:59

如果您有两个位置对象,您可以使用 distanceTo

Location loc1, loc2;
int distanceMeters = loc1.distanceTo(loc2);

if you have two locations object you could use distanceTo

Location loc1, loc2;
int distanceMeters = loc1.distanceTo(loc2);
尐籹人 2024-11-07 13:06:59

作为 Ste 的答案的补充:

如果您的点存储在数据库中,则计算距离的唯一方法是从数据库中读取所有点,创建位置的对象并计算距离。

PS
如果您只想获得大概距离,有一些解决方法:
获取下 N 个最近的地理点

As addition to Ste's Answers:

if your points are stored in Database, the only way to compute distance to read them all from DB, to create Location's objects and to compute distance.

P.s.
If you are only interested to get aproximated distance there are some workarounds:
Get next N nearest Geo-Points

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